@composio/client 0.1.0-alpha.37 → 0.1.0-alpha.39
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/CHANGELOG.md +45 -0
- package/internal/to-file.d.mts +1 -1
- package/internal/to-file.d.ts +1 -1
- package/internal/to-file.js +1 -1
- package/internal/to-file.mjs +1 -1
- package/package.json +1 -1
- package/resources/auth-configs.d.mts +7 -1
- package/resources/auth-configs.d.mts.map +1 -1
- package/resources/auth-configs.d.ts +7 -1
- package/resources/auth-configs.d.ts.map +1 -1
- package/resources/connected-accounts.d.mts +10 -0
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +10 -0
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/files.d.mts +1 -1
- package/resources/files.d.ts +1 -1
- package/resources/link.d.mts +1571 -0
- package/resources/link.d.mts.map +1 -1
- package/resources/link.d.ts +1571 -0
- package/resources/link.d.ts.map +1 -1
- package/resources/tool-router.d.mts +14 -4
- package/resources/tool-router.d.mts.map +1 -1
- package/resources/tool-router.d.ts +14 -4
- package/resources/tool-router.d.ts.map +1 -1
- package/resources/tool-router.js +8 -2
- package/resources/tool-router.js.map +1 -1
- package/resources/tool-router.mjs +8 -2
- package/resources/tool-router.mjs.map +1 -1
- package/resources/toolkits.d.mts +5 -1
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +5 -1
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +15 -5
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +15 -5
- package/resources/tools.d.ts.map +1 -1
- package/resources/trigger-instances/trigger-instances.d.mts +1 -1
- package/resources/trigger-instances/trigger-instances.d.ts +1 -1
- package/resources/triggers-types.d.mts +18 -2
- package/resources/triggers-types.d.mts.map +1 -1
- package/resources/triggers-types.d.ts +18 -2
- package/resources/triggers-types.d.ts.map +1 -1
- package/src/internal/to-file.ts +1 -1
- package/src/resources/auth-configs.ts +5 -1
- package/src/resources/connected-accounts.ts +12 -0
- package/src/resources/files.ts +1 -1
- package/src/resources/link.ts +3025 -0
- package/src/resources/tool-router.ts +15 -4
- package/src/resources/toolkits.ts +6 -1
- package/src/resources/tools.ts +17 -5
- package/src/resources/trigger-instances/trigger-instances.ts +1 -1
- package/src/resources/triggers-types.ts +19 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -5367,6 +5367,11 @@ export interface ConnectedAccountUpdateStatusResponse {
|
|
|
5367
5367
|
export interface ConnectedAccountCreateParams {
|
|
5368
5368
|
auth_config: ConnectedAccountCreateParams.AuthConfig;
|
|
5369
5369
|
connection: ConnectedAccountCreateParams.Connection;
|
|
5370
|
+
/**
|
|
5371
|
+
* [EXPERIMENTAL] Whether to validate the provided credentials, validates only for
|
|
5372
|
+
* API Key Auth scheme
|
|
5373
|
+
*/
|
|
5374
|
+
validate_credentials?: boolean;
|
|
5370
5375
|
}
|
|
5371
5376
|
export declare namespace ConnectedAccountCreateParams {
|
|
5372
5377
|
interface AuthConfig {
|
|
@@ -7130,6 +7135,11 @@ export interface ConnectedAccountRefreshParams {
|
|
|
7130
7135
|
* Body param:
|
|
7131
7136
|
*/
|
|
7132
7137
|
body_redirect_url?: string;
|
|
7138
|
+
/**
|
|
7139
|
+
* Body param: [EXPERIMENTAL] Whether to validate the provided credentials,
|
|
7140
|
+
* validates only for API Key Auth scheme
|
|
7141
|
+
*/
|
|
7142
|
+
validate_credentials?: boolean;
|
|
7133
7143
|
}
|
|
7134
7144
|
export interface ConnectedAccountUpdateStatusParams {
|
|
7135
7145
|
/**
|