@composio/client 0.1.0-alpha.27 → 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 +37 -0
- package/client.d.mts +3 -3
- package/client.d.mts.map +1 -1
- package/client.d.ts +3 -3
- package/client.d.ts.map +1 -1
- package/client.js +12 -9
- package/client.js.map +1 -1
- package/client.mjs +12 -9
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auth-configs.d.mts +81 -21
- package/resources/auth-configs.d.mts.map +1 -1
- package/resources/auth-configs.d.ts +81 -21
- 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/mcp/mcp.d.mts +4 -4
- package/resources/mcp/mcp.d.ts +4 -4
- package/resources/toolkits.d.mts +16 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +16 -0
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +545 -2
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +545 -2
- package/resources/tools.d.ts.map +1 -1
- package/src/client.ts +14 -11
- package/src/resources/auth-configs.ts +95 -24
- package/src/resources/connected-accounts.ts +8 -8
- package/src/resources/mcp/mcp.ts +4 -4
- package/src/resources/toolkits.ts +21 -0
- package/src/resources/tools.ts +981 -3
- 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
|
@@ -378,7 +378,7 @@ export declare namespace ConnectedAccountCreateResponse {
|
|
|
378
378
|
long_redirect_url?: boolean;
|
|
379
379
|
proxy_password?: string;
|
|
380
380
|
proxy_username?: string;
|
|
381
|
-
refresh_token?: string;
|
|
381
|
+
refresh_token?: string | null;
|
|
382
382
|
region?: string;
|
|
383
383
|
scope?: string | Array<string>;
|
|
384
384
|
server_location?: string;
|
|
@@ -432,7 +432,7 @@ export declare namespace ConnectedAccountCreateResponse {
|
|
|
432
432
|
long_redirect_url?: boolean;
|
|
433
433
|
proxy_password?: string;
|
|
434
434
|
proxy_username?: string;
|
|
435
|
-
refresh_token?: string;
|
|
435
|
+
refresh_token?: string | null;
|
|
436
436
|
region?: string;
|
|
437
437
|
scope?: string | Array<string>;
|
|
438
438
|
server_location?: string;
|
|
@@ -1821,7 +1821,7 @@ export declare namespace ConnectedAccountRetrieveResponse {
|
|
|
1821
1821
|
long_redirect_url?: boolean;
|
|
1822
1822
|
proxy_password?: string;
|
|
1823
1823
|
proxy_username?: string;
|
|
1824
|
-
refresh_token?: string;
|
|
1824
|
+
refresh_token?: string | null;
|
|
1825
1825
|
region?: string;
|
|
1826
1826
|
scope?: string | Array<string>;
|
|
1827
1827
|
server_location?: string;
|
|
@@ -1875,7 +1875,7 @@ export declare namespace ConnectedAccountRetrieveResponse {
|
|
|
1875
1875
|
long_redirect_url?: boolean;
|
|
1876
1876
|
proxy_password?: string;
|
|
1877
1877
|
proxy_username?: string;
|
|
1878
|
-
refresh_token?: string;
|
|
1878
|
+
refresh_token?: string | null;
|
|
1879
1879
|
region?: string;
|
|
1880
1880
|
scope?: string | Array<string>;
|
|
1881
1881
|
server_location?: string;
|
|
@@ -3278,7 +3278,7 @@ export declare namespace ConnectedAccountListResponse {
|
|
|
3278
3278
|
long_redirect_url?: boolean;
|
|
3279
3279
|
proxy_password?: string;
|
|
3280
3280
|
proxy_username?: string;
|
|
3281
|
-
refresh_token?: string;
|
|
3281
|
+
refresh_token?: string | null;
|
|
3282
3282
|
region?: string;
|
|
3283
3283
|
scope?: string | Array<string>;
|
|
3284
3284
|
server_location?: string;
|
|
@@ -3332,7 +3332,7 @@ export declare namespace ConnectedAccountListResponse {
|
|
|
3332
3332
|
long_redirect_url?: boolean;
|
|
3333
3333
|
proxy_password?: string;
|
|
3334
3334
|
proxy_username?: string;
|
|
3335
|
-
refresh_token?: string;
|
|
3335
|
+
refresh_token?: string | null;
|
|
3336
3336
|
region?: string;
|
|
3337
3337
|
scope?: string | Array<string>;
|
|
3338
3338
|
server_location?: string;
|
|
@@ -4729,7 +4729,7 @@ export declare namespace ConnectedAccountCreateParams {
|
|
|
4729
4729
|
long_redirect_url?: boolean;
|
|
4730
4730
|
proxy_password?: string;
|
|
4731
4731
|
proxy_username?: string;
|
|
4732
|
-
refresh_token?: string;
|
|
4732
|
+
refresh_token?: string | null;
|
|
4733
4733
|
region?: string;
|
|
4734
4734
|
scope?: string | Array<string>;
|
|
4735
4735
|
server_location?: string;
|
|
@@ -4783,7 +4783,7 @@ export declare namespace ConnectedAccountCreateParams {
|
|
|
4783
4783
|
long_redirect_url?: boolean;
|
|
4784
4784
|
proxy_password?: string;
|
|
4785
4785
|
proxy_username?: string;
|
|
4786
|
-
refresh_token?: string;
|
|
4786
|
+
refresh_token?: string | null;
|
|
4787
4787
|
region?: string;
|
|
4788
4788
|
scope?: string | Array<string>;
|
|
4789
4789
|
server_location?: string;
|