Skip to content

Commit 4d66528

Browse files
committedMay 5, 2024
fix start_cursor request type (issue:makenotion#498)
1 parent 7950edc commit 4d66528

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed
 

‎src/Client.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default class Client {
166166
const url = new URL(`${this.#prefixUrl}${path}`)
167167
if (query) {
168168
for (const [key, value] of Object.entries(query)) {
169-
if (value !== undefined) {
169+
if (value !== undefined && value !== null) {
170170
if (Array.isArray(value)) {
171171
value.forEach(val =>
172172
url.searchParams.append(key, decodeURIComponent(val))
@@ -615,6 +615,8 @@ export default class Client {
615615
* Type aliases to support the generic request interface.
616616
*/
617617
type Method = "get" | "post" | "patch" | "delete"
618-
type QueryParams = Record<string, string | number | string[]> | URLSearchParams
618+
type QueryParams =
619+
| Record<string, string | number | string[] | null>
620+
| URLSearchParams
619621

620622
type WithAuth<P> = P & { auth?: string }

‎src/api-endpoints.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -9956,7 +9956,7 @@ export const getUser = {
99569956
} as const
99579957

99589958
type ListUsersQueryParameters = {
9959-
start_cursor?: string
9959+
start_cursor?: string | null
99609960
page_size?: number
99619961
}
99629962

@@ -10521,7 +10521,7 @@ type GetPagePropertyPathParameters = {
1052110521
}
1052210522

1052310523
type GetPagePropertyQueryParameters = {
10524-
start_cursor?: string
10524+
start_cursor?: string | null
1052510525
page_size?: number
1052610526
}
1052710527

@@ -10848,7 +10848,7 @@ type ListBlockChildrenPathParameters = {
1084810848
}
1084910849

1085010850
type ListBlockChildrenQueryParameters = {
10851-
start_cursor?: string
10851+
start_cursor?: string | null
1085210852
page_size?: number
1085310853
}
1085410854

@@ -11215,7 +11215,7 @@ type QueryDatabaseBodyParameters = {
1121511215
| PropertyFilter
1121611216
| TimestampCreatedTimeFilter
1121711217
| TimestampLastEditedTimeFilter
11218-
start_cursor?: string
11218+
start_cursor?: string | null
1121911219
page_size?: number
1122011220
archived?: boolean
1122111221
in_trash?: boolean
@@ -11256,7 +11256,7 @@ export const queryDatabase = {
1125611256
} as const
1125711257

1125811258
type ListDatabasesQueryParameters = {
11259-
start_cursor?: string
11259+
start_cursor?: string | null
1126011260
page_size?: number
1126111261
}
1126211262

@@ -11475,7 +11475,7 @@ type SearchBodyParameters = {
1147511475
direction: "ascending" | "descending"
1147611476
}
1147711477
query?: string
11478-
start_cursor?: string
11478+
start_cursor?: string | null
1147911479
page_size?: number
1148011480
filter?: { property: "object"; value: "page" | "database" }
1148111481
}
@@ -11527,7 +11527,7 @@ export const createComment = {
1152711527

1152811528
type ListCommentsQueryParameters = {
1152911529
block_id: IdRequest
11530-
start_cursor?: string
11530+
start_cursor?: string | null
1153111531
page_size?: number
1153211532
}
1153311533

0 commit comments

Comments
 (0)