@composio/client 0.1.0-alpha.54 → 0.1.0-alpha.56
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 +31 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auth-configs.d.mts +30 -9
- package/resources/auth-configs.d.mts.map +1 -1
- package/resources/auth-configs.d.ts +30 -9
- package/resources/auth-configs.d.ts.map +1 -1
- package/resources/auth-configs.js +1 -4
- package/resources/auth-configs.js.map +1 -1
- package/resources/auth-configs.mjs +1 -4
- package/resources/auth-configs.mjs.map +1 -1
- package/resources/connected-accounts.d.mts +2 -2
- package/resources/connected-accounts.d.ts +2 -2
- package/resources/files.d.mts +42 -111
- package/resources/files.d.mts.map +1 -1
- package/resources/files.d.ts +42 -111
- package/resources/files.d.ts.map +1 -1
- package/resources/files.js +5 -5
- package/resources/files.mjs +5 -5
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/project/config.d.mts +3 -0
- package/resources/project/config.d.mts.map +1 -1
- package/resources/project/config.d.ts +3 -0
- package/resources/project/config.d.ts.map +1 -1
- package/resources/tool-router/index.d.mts +1 -1
- package/resources/tool-router/index.d.mts.map +1 -1
- package/resources/tool-router/index.d.ts +1 -1
- package/resources/tool-router/index.d.ts.map +1 -1
- package/resources/tool-router/index.js.map +1 -1
- package/resources/tool-router/index.mjs +1 -1
- package/resources/tool-router/index.mjs.map +1 -1
- package/resources/tool-router/session.d.mts +47 -0
- package/resources/tool-router/session.d.mts.map +1 -1
- package/resources/tool-router/session.d.ts +47 -0
- package/resources/tool-router/session.d.ts.map +1 -1
- package/resources/tool-router/tool-router.d.mts +81 -0
- package/resources/tool-router/tool-router.d.mts.map +1 -1
- package/resources/tool-router/tool-router.d.ts +81 -0
- package/resources/tool-router/tool-router.d.ts.map +1 -1
- package/resources/tool-router/tool-router.js +29 -0
- package/resources/tool-router/tool-router.js.map +1 -1
- package/resources/tool-router/tool-router.mjs +29 -0
- package/resources/tool-router/tool-router.mjs.map +1 -1
- package/resources/toolkits.d.mts +12 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +12 -0
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +8 -0
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +8 -0
- package/resources/tools.d.ts.map +1 -1
- package/resources/trigger-instances/trigger-instances.d.mts +0 -4
- package/resources/trigger-instances/trigger-instances.d.mts.map +1 -1
- package/resources/trigger-instances/trigger-instances.d.ts +0 -4
- package/resources/trigger-instances/trigger-instances.d.ts.map +1 -1
- package/resources/trigger-instances/trigger-instances.js.map +1 -1
- package/resources/trigger-instances/trigger-instances.mjs.map +1 -1
- package/resources/triggers-types.d.mts +8 -0
- package/resources/triggers-types.d.mts.map +1 -1
- package/resources/triggers-types.d.ts +8 -0
- package/resources/triggers-types.d.ts.map +1 -1
- package/src/client.ts +10 -2
- package/src/resources/auth-configs.ts +37 -10
- package/src/resources/connected-accounts.ts +2 -2
- package/src/resources/files.ts +43 -130
- package/src/resources/index.ts +5 -1
- package/src/resources/project/config.ts +6 -0
- package/src/resources/tool-router/index.ts +5 -1
- package/src/resources/tool-router/session.ts +53 -0
- package/src/resources/tool-router/tool-router.ts +100 -0
- package/src/resources/toolkits.ts +15 -0
- package/src/resources/tools.ts +10 -0
- package/src/resources/trigger-instances/trigger-instances.ts +0 -5
- package/src/resources/triggers-types.ts +10 -0
- 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
|
@@ -78,6 +78,11 @@ export interface ToolkitRetrieveResponse {
|
|
|
78
78
|
*/
|
|
79
79
|
slug: string;
|
|
80
80
|
|
|
81
|
+
/**
|
|
82
|
+
* Lifecycle status of the toolkit
|
|
83
|
+
*/
|
|
84
|
+
status: string;
|
|
85
|
+
|
|
81
86
|
/**
|
|
82
87
|
* Complete authentication configuration details for each supported auth method
|
|
83
88
|
*/
|
|
@@ -98,6 +103,11 @@ export interface ToolkitRetrieveResponse {
|
|
|
98
103
|
* Endpoint to get the current user
|
|
99
104
|
*/
|
|
100
105
|
get_current_user_endpoint?: string;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* HTTP method to use when calling the get current user endpoint (e.g., GET, POST)
|
|
109
|
+
*/
|
|
110
|
+
get_current_user_endpoint_method?: string;
|
|
101
111
|
}
|
|
102
112
|
|
|
103
113
|
export namespace ToolkitRetrieveResponse {
|
|
@@ -382,6 +392,11 @@ export namespace ToolkitListResponse {
|
|
|
382
392
|
*/
|
|
383
393
|
slug: string;
|
|
384
394
|
|
|
395
|
+
/**
|
|
396
|
+
* Lifecycle status of the toolkit
|
|
397
|
+
*/
|
|
398
|
+
status: string;
|
|
399
|
+
|
|
385
400
|
/**
|
|
386
401
|
* List of authentication methods supported by this toolkit
|
|
387
402
|
*/
|
package/src/resources/tools.ts
CHANGED
|
@@ -161,6 +161,11 @@ export interface ToolRetrieveResponse {
|
|
|
161
161
|
*/
|
|
162
162
|
slug: string;
|
|
163
163
|
|
|
164
|
+
/**
|
|
165
|
+
* Lifecycle status of the tool
|
|
166
|
+
*/
|
|
167
|
+
status: string;
|
|
168
|
+
|
|
164
169
|
/**
|
|
165
170
|
* List of tags associated with the tool for categorization and filtering
|
|
166
171
|
*/
|
|
@@ -287,6 +292,11 @@ export namespace ToolListResponse {
|
|
|
287
292
|
*/
|
|
288
293
|
slug: string;
|
|
289
294
|
|
|
295
|
+
/**
|
|
296
|
+
* Lifecycle status of the tool
|
|
297
|
+
*/
|
|
298
|
+
status: string;
|
|
299
|
+
|
|
290
300
|
/**
|
|
291
301
|
* List of tags associated with the tool for categorization and filtering
|
|
292
302
|
*/
|
|
@@ -224,11 +224,6 @@ export interface TriggerInstanceListActiveParams {
|
|
|
224
224
|
*/
|
|
225
225
|
limit?: number | null;
|
|
226
226
|
|
|
227
|
-
/**
|
|
228
|
-
* Page number for pagination. Starts from 1.
|
|
229
|
-
*/
|
|
230
|
-
page?: number;
|
|
231
|
-
|
|
232
227
|
/**
|
|
233
228
|
* When set to true, includes disabled triggers in the response.
|
|
234
229
|
*/
|
|
@@ -69,6 +69,11 @@ export interface TriggersTypeRetrieveResponse {
|
|
|
69
69
|
*/
|
|
70
70
|
slug: string;
|
|
71
71
|
|
|
72
|
+
/**
|
|
73
|
+
* Lifecycle status of the trigger
|
|
74
|
+
*/
|
|
75
|
+
status: string;
|
|
76
|
+
|
|
72
77
|
/**
|
|
73
78
|
* Information about the toolkit that provides this trigger
|
|
74
79
|
*/
|
|
@@ -151,6 +156,11 @@ export namespace TriggersTypeListResponse {
|
|
|
151
156
|
*/
|
|
152
157
|
slug: string;
|
|
153
158
|
|
|
159
|
+
/**
|
|
160
|
+
* Lifecycle status of the trigger
|
|
161
|
+
*/
|
|
162
|
+
status: string;
|
|
163
|
+
|
|
154
164
|
/**
|
|
155
165
|
* Information about the toolkit that provides this trigger
|
|
156
166
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.56'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.56";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.56";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.56'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.56'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|