@composio/client 0.1.0-alpha.28 → 0.1.0-alpha.29
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 +19 -0
- package/package.json +1 -1
- package/resources/auth-configs.d.mts +5 -1
- package/resources/auth-configs.d.mts.map +1 -1
- package/resources/auth-configs.d.ts +5 -1
- package/resources/auth-configs.d.ts.map +1 -1
- package/resources/connected-accounts.d.mts +8 -8
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +8 -8
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/toolkits.d.mts +11 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +11 -0
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +540 -1
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +540 -1
- package/resources/tools.d.ts.map +1 -1
- package/src/resources/auth-configs.ts +6 -1
- package/src/resources/connected-accounts.ts +8 -8
- package/src/resources/toolkits.ts +15 -0
- package/src/resources/tools.ts +975 -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
|
@@ -690,7 +690,7 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
690
690
|
|
|
691
691
|
proxy_username?: string;
|
|
692
692
|
|
|
693
|
-
refresh_token?: string;
|
|
693
|
+
refresh_token?: string | null;
|
|
694
694
|
|
|
695
695
|
region?: string;
|
|
696
696
|
|
|
@@ -780,7 +780,7 @@ export namespace ConnectedAccountCreateResponse {
|
|
|
780
780
|
|
|
781
781
|
proxy_username?: string;
|
|
782
782
|
|
|
783
|
-
refresh_token?: string;
|
|
783
|
+
refresh_token?: string | null;
|
|
784
784
|
|
|
785
785
|
region?: string;
|
|
786
786
|
|
|
@@ -3381,7 +3381,7 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
3381
3381
|
|
|
3382
3382
|
proxy_username?: string;
|
|
3383
3383
|
|
|
3384
|
-
refresh_token?: string;
|
|
3384
|
+
refresh_token?: string | null;
|
|
3385
3385
|
|
|
3386
3386
|
region?: string;
|
|
3387
3387
|
|
|
@@ -3471,7 +3471,7 @@ export namespace ConnectedAccountRetrieveResponse {
|
|
|
3471
3471
|
|
|
3472
3472
|
proxy_username?: string;
|
|
3473
3473
|
|
|
3474
|
-
refresh_token?: string;
|
|
3474
|
+
refresh_token?: string | null;
|
|
3475
3475
|
|
|
3476
3476
|
region?: string;
|
|
3477
3477
|
|
|
@@ -6092,7 +6092,7 @@ export namespace ConnectedAccountListResponse {
|
|
|
6092
6092
|
|
|
6093
6093
|
proxy_username?: string;
|
|
6094
6094
|
|
|
6095
|
-
refresh_token?: string;
|
|
6095
|
+
refresh_token?: string | null;
|
|
6096
6096
|
|
|
6097
6097
|
region?: string;
|
|
6098
6098
|
|
|
@@ -6182,7 +6182,7 @@ export namespace ConnectedAccountListResponse {
|
|
|
6182
6182
|
|
|
6183
6183
|
proxy_username?: string;
|
|
6184
6184
|
|
|
6185
|
-
refresh_token?: string;
|
|
6185
|
+
refresh_token?: string | null;
|
|
6186
6186
|
|
|
6187
6187
|
region?: string;
|
|
6188
6188
|
|
|
@@ -8787,7 +8787,7 @@ export namespace ConnectedAccountCreateParams {
|
|
|
8787
8787
|
|
|
8788
8788
|
proxy_username?: string;
|
|
8789
8789
|
|
|
8790
|
-
refresh_token?: string;
|
|
8790
|
+
refresh_token?: string | null;
|
|
8791
8791
|
|
|
8792
8792
|
region?: string;
|
|
8793
8793
|
|
|
@@ -8877,7 +8877,7 @@ export namespace ConnectedAccountCreateParams {
|
|
|
8877
8877
|
|
|
8878
8878
|
proxy_username?: string;
|
|
8879
8879
|
|
|
8880
|
-
refresh_token?: string;
|
|
8880
|
+
refresh_token?: string | null;
|
|
8881
8881
|
|
|
8882
8882
|
region?: string;
|
|
8883
8883
|
|
|
@@ -91,10 +91,17 @@ export interface ToolkitRetrieveResponse {
|
|
|
91
91
|
* List of authentication methods that Composio manages for this toolkit
|
|
92
92
|
*/
|
|
93
93
|
composio_managed_auth_schemes?: Array<string>;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Endpoint to get the current user
|
|
97
|
+
*/
|
|
98
|
+
get_current_user_endpoint?: string;
|
|
94
99
|
}
|
|
95
100
|
|
|
96
101
|
export namespace ToolkitRetrieveResponse {
|
|
97
102
|
export interface Deprecated {
|
|
103
|
+
rawProxyInfoByAuthSchemes: Array<{ [key: string]: unknown }>;
|
|
104
|
+
|
|
98
105
|
toolkitId: string;
|
|
99
106
|
|
|
100
107
|
getCurrentUserEndpoint?: string;
|
|
@@ -225,6 +232,8 @@ export namespace ToolkitRetrieveResponse {
|
|
|
225
232
|
type: string;
|
|
226
233
|
|
|
227
234
|
default?: string | null;
|
|
235
|
+
|
|
236
|
+
legacy_template_name?: string;
|
|
228
237
|
}
|
|
229
238
|
|
|
230
239
|
export interface Required {
|
|
@@ -239,6 +248,8 @@ export namespace ToolkitRetrieveResponse {
|
|
|
239
248
|
type: string;
|
|
240
249
|
|
|
241
250
|
default?: string | null;
|
|
251
|
+
|
|
252
|
+
legacy_template_name?: string;
|
|
242
253
|
}
|
|
243
254
|
}
|
|
244
255
|
|
|
@@ -265,6 +276,8 @@ export namespace ToolkitRetrieveResponse {
|
|
|
265
276
|
type: string;
|
|
266
277
|
|
|
267
278
|
default?: string | null;
|
|
279
|
+
|
|
280
|
+
legacy_template_name?: string;
|
|
268
281
|
}
|
|
269
282
|
|
|
270
283
|
export interface Required {
|
|
@@ -279,6 +292,8 @@ export namespace ToolkitRetrieveResponse {
|
|
|
279
292
|
type: string;
|
|
280
293
|
|
|
281
294
|
default?: string | null;
|
|
295
|
+
|
|
296
|
+
legacy_template_name?: string;
|
|
282
297
|
}
|
|
283
298
|
}
|
|
284
299
|
}
|