@composio/client 0.1.0-alpha.28 → 0.1.0-alpha.30
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 +38 -0
- package/package.json +1 -5
- 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/cli.d.mts +4 -0
- package/resources/cli.d.mts.map +1 -1
- package/resources/cli.d.ts +4 -0
- package/resources/cli.d.ts.map +1 -1
- package/resources/connected-accounts.d.mts +24 -16
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +24 -16
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/mcp/mcp.d.mts +78 -2
- package/resources/mcp/mcp.d.mts.map +1 -1
- package/resources/mcp/mcp.d.ts +78 -2
- package/resources/mcp/mcp.d.ts.map +1 -1
- package/resources/mcp/mcp.js.map +1 -1
- package/resources/mcp/mcp.mjs.map +1 -1
- package/resources/org/api-key.d.mts +1 -2
- package/resources/org/api-key.d.mts.map +1 -1
- package/resources/org/api-key.d.ts +1 -2
- package/resources/org/api-key.d.ts.map +1 -1
- package/resources/org/api-key.js +1 -2
- package/resources/org/api-key.js.map +1 -1
- package/resources/org/api-key.mjs +1 -2
- package/resources/org/api-key.mjs.map +1 -1
- package/resources/team-members.d.mts +4 -4
- package/resources/team-members.d.mts.map +1 -1
- package/resources/team-members.d.ts +4 -4
- package/resources/team-members.d.ts.map +1 -1
- package/resources/team-members.js +1 -1
- package/resources/team-members.js.map +1 -1
- package/resources/team-members.mjs +1 -1
- package/resources/team-members.mjs.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/cli.ts +5 -0
- package/src/resources/connected-accounts.ts +26 -16
- package/src/resources/mcp/mcp.ts +84 -2
- package/src/resources/org/api-key.ts +1 -2
- package/src/resources/team-members.ts +4 -4
- 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
|
@@ -378,9 +378,9 @@ 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
|
-
scope?: string | Array<string
|
|
383
|
+
scope?: string | Array<string> | null;
|
|
384
384
|
server_location?: string;
|
|
385
385
|
shop?: string;
|
|
386
386
|
site_name?: string;
|
|
@@ -432,9 +432,9 @@ 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
|
-
scope?: string | Array<string
|
|
437
|
+
scope?: string | Array<string> | null;
|
|
438
438
|
server_location?: string;
|
|
439
439
|
shop?: string;
|
|
440
440
|
site_name?: string;
|
|
@@ -1821,9 +1821,9 @@ 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
|
-
scope?: string | Array<string
|
|
1826
|
+
scope?: string | Array<string> | null;
|
|
1827
1827
|
server_location?: string;
|
|
1828
1828
|
shop?: string;
|
|
1829
1829
|
site_name?: string;
|
|
@@ -1875,9 +1875,9 @@ 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
|
-
scope?: string | Array<string
|
|
1880
|
+
scope?: string | Array<string> | null;
|
|
1881
1881
|
server_location?: string;
|
|
1882
1882
|
shop?: string;
|
|
1883
1883
|
site_name?: string;
|
|
@@ -3278,9 +3278,9 @@ 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
|
-
scope?: string | Array<string
|
|
3283
|
+
scope?: string | Array<string> | null;
|
|
3284
3284
|
server_location?: string;
|
|
3285
3285
|
shop?: string;
|
|
3286
3286
|
site_name?: string;
|
|
@@ -3332,9 +3332,9 @@ 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
|
-
scope?: string | Array<string
|
|
3337
|
+
scope?: string | Array<string> | null;
|
|
3338
3338
|
server_location?: string;
|
|
3339
3339
|
shop?: string;
|
|
3340
3340
|
site_name?: string;
|
|
@@ -4729,9 +4729,9 @@ 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
|
-
scope?: string | Array<string
|
|
4734
|
+
scope?: string | Array<string> | null;
|
|
4735
4735
|
server_location?: string;
|
|
4736
4736
|
shop?: string;
|
|
4737
4737
|
site_name?: string;
|
|
@@ -4783,9 +4783,9 @@ 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
|
-
scope?: string | Array<string
|
|
4788
|
+
scope?: string | Array<string> | null;
|
|
4789
4789
|
server_location?: string;
|
|
4790
4790
|
shop?: string;
|
|
4791
4791
|
site_name?: string;
|
|
@@ -5820,6 +5820,10 @@ export interface ConnectedAccountListParams {
|
|
|
5820
5820
|
* The auth config ids of the connected accounts
|
|
5821
5821
|
*/
|
|
5822
5822
|
auth_config_ids?: Array<string> | null;
|
|
5823
|
+
/**
|
|
5824
|
+
* The connected account ids to filter by
|
|
5825
|
+
*/
|
|
5826
|
+
connected_account_ids?: Array<string> | null;
|
|
5823
5827
|
/**
|
|
5824
5828
|
* The cursor to paginate through the connected accounts
|
|
5825
5829
|
*/
|
|
@@ -5836,6 +5840,10 @@ export interface ConnectedAccountListParams {
|
|
|
5836
5840
|
* The order by of the connected accounts
|
|
5837
5841
|
*/
|
|
5838
5842
|
order_by?: 'created_at' | 'updated_at';
|
|
5843
|
+
/**
|
|
5844
|
+
* The order direction of the connected accounts
|
|
5845
|
+
*/
|
|
5846
|
+
order_direction?: 'asc' | 'desc';
|
|
5839
5847
|
/**
|
|
5840
5848
|
* The status of the connected account
|
|
5841
5849
|
*/
|