diff --git a/src/api-endpoints.ts b/src/api-endpoints.ts index 0af39b58..a9ea6bb6 100644 --- a/src/api-endpoints.ts +++ b/src/api-endpoints.ts @@ -4688,6 +4688,7 @@ export type PageObjectResponse = { in_trash: boolean url: string public_url: string | null + request_id:string } export type PartialPageObjectResponse = { object: "page"; id: string } @@ -4979,6 +4980,7 @@ export type PartialDatabaseObjectResponse = { object: "database" id: string properties: Record + request_id:string } export type DatabaseObjectResponse = { @@ -5013,6 +5015,7 @@ export type DatabaseObjectResponse = { in_trash: boolean url: string public_url: string | null + request_id:string } export type PartialBlockObjectResponse = { object: "block"; id: string } @@ -11231,6 +11234,7 @@ export type QueryDatabaseResponse = { object: "list" next_cursor: string | null has_more: boolean + request_id:string results: Array< | PageObjectResponse | PartialPageObjectResponse @@ -11582,6 +11586,7 @@ export type OauthTokenResponse = { } | { type: "workspace"; workspace: true } duplicated_template_id: string | null + request_id:string } export const oauthToken = {