@notionhq/client 2.2.8 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/package.json +1 -1
- package/build/src/api-endpoints.d.ts +0 -42
- package/build/src/api-endpoints.d.ts.map +1 -1
- package/build/src/api-endpoints.js +1 -8
- package/build/src/api-endpoints.js.map +1 -1
- package/build/src/index.d.ts +1 -1
- package/build/src/index.d.ts.map +1 -1
- package/build/src/index.js +2 -1
- package/build/src/index.js.map +1 -1
- package/package.json +1 -1
package/build/package.json
CHANGED
|
@@ -6926,47 +6926,5 @@ export declare const listComments: {
|
|
|
6926
6926
|
readonly bodyParams: readonly [];
|
|
6927
6927
|
readonly path: () => string;
|
|
6928
6928
|
};
|
|
6929
|
-
type OauthTokenBodyParameters = {
|
|
6930
|
-
grant_type: string;
|
|
6931
|
-
code: string;
|
|
6932
|
-
redirect_uri?: string;
|
|
6933
|
-
external_account?: {
|
|
6934
|
-
key: string;
|
|
6935
|
-
name: string;
|
|
6936
|
-
};
|
|
6937
|
-
};
|
|
6938
|
-
export type OauthTokenParameters = OauthTokenBodyParameters;
|
|
6939
|
-
export type OauthTokenResponse = {
|
|
6940
|
-
access_token: string;
|
|
6941
|
-
token_type: "bearer";
|
|
6942
|
-
bot_id: string;
|
|
6943
|
-
workspace_icon: string | null;
|
|
6944
|
-
workspace_name: string | null;
|
|
6945
|
-
workspace_id: string;
|
|
6946
|
-
owner: {
|
|
6947
|
-
type: "user";
|
|
6948
|
-
user: {
|
|
6949
|
-
type: "person";
|
|
6950
|
-
person: {
|
|
6951
|
-
email: string;
|
|
6952
|
-
};
|
|
6953
|
-
name: string | null;
|
|
6954
|
-
avatar_url: string | null;
|
|
6955
|
-
id: IdRequest;
|
|
6956
|
-
object: "user";
|
|
6957
|
-
} | PartialUserObjectResponse;
|
|
6958
|
-
} | {
|
|
6959
|
-
type: "workspace";
|
|
6960
|
-
workspace: true;
|
|
6961
|
-
};
|
|
6962
|
-
duplicated_template_id: string | null;
|
|
6963
|
-
};
|
|
6964
|
-
export declare const oauthToken: {
|
|
6965
|
-
readonly method: "post";
|
|
6966
|
-
readonly pathParams: readonly [];
|
|
6967
|
-
readonly queryParams: readonly [];
|
|
6968
|
-
readonly bodyParams: readonly ["grant_type", "code", "redirect_uri", "external_account"];
|
|
6969
|
-
readonly path: () => string;
|
|
6970
|
-
};
|
|
6971
6929
|
export {};
|
|
6972
6930
|
//# sourceMappingURL=api-endpoints.d.ts.map
|