@composio/client 0.1.0-alpha.55 → 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 +16 -0
- package/package.json +1 -1
- 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/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/session.d.mts +43 -0
- package/resources/tool-router/session.d.mts.map +1 -1
- package/resources/tool-router/session.d.ts +43 -0
- package/resources/tool-router/session.d.ts.map +1 -1
- package/resources/toolkits.d.mts +4 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +4 -0
- package/resources/toolkits.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/src/resources/files.ts +43 -130
- package/src/resources/project/config.ts +6 -0
- package/src/resources/tool-router/session.ts +48 -0
- package/src/resources/toolkits.ts +5 -0
- package/src/resources/trigger-instances/trigger-instances.ts +0 -5
- 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
|
@@ -163,6 +163,12 @@ export interface SessionCreateResponse {
|
|
|
163
163
|
* List of available tools in this session
|
|
164
164
|
*/
|
|
165
165
|
tool_router_tools: Array<string>;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Experimental features including the generated system prompt. Only returned on
|
|
169
|
+
* session creation, not on GET.
|
|
170
|
+
*/
|
|
171
|
+
experimental?: SessionCreateResponse.Experimental;
|
|
166
172
|
}
|
|
167
173
|
|
|
168
174
|
export namespace SessionCreateResponse {
|
|
@@ -314,6 +320,18 @@ export namespace SessionCreateResponse {
|
|
|
314
320
|
*/
|
|
315
321
|
url: string;
|
|
316
322
|
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Experimental features including the generated system prompt. Only returned on
|
|
326
|
+
* session creation, not on GET.
|
|
327
|
+
*/
|
|
328
|
+
export interface Experimental {
|
|
329
|
+
/**
|
|
330
|
+
* The assistive system prompt to inject into your agent for optimal tool router
|
|
331
|
+
* usage
|
|
332
|
+
*/
|
|
333
|
+
assistive_prompt: string;
|
|
334
|
+
}
|
|
317
335
|
}
|
|
318
336
|
|
|
319
337
|
export interface SessionRetrieveResponse {
|
|
@@ -804,6 +822,12 @@ export interface SessionCreateParams {
|
|
|
804
822
|
*/
|
|
805
823
|
connected_accounts?: { [key: string]: string };
|
|
806
824
|
|
|
825
|
+
/**
|
|
826
|
+
* Experimental features - not stable, may be modified or removed in future
|
|
827
|
+
* versions.
|
|
828
|
+
*/
|
|
829
|
+
experimental?: SessionCreateParams.Experimental;
|
|
830
|
+
|
|
807
831
|
/**
|
|
808
832
|
* Configuration for connection management settings
|
|
809
833
|
*/
|
|
@@ -840,6 +864,30 @@ export interface SessionCreateParams {
|
|
|
840
864
|
}
|
|
841
865
|
|
|
842
866
|
export namespace SessionCreateParams {
|
|
867
|
+
/**
|
|
868
|
+
* Experimental features - not stable, may be modified or removed in future
|
|
869
|
+
* versions.
|
|
870
|
+
*/
|
|
871
|
+
export interface Experimental {
|
|
872
|
+
/**
|
|
873
|
+
* Customize assistive prompt generation (e.g., timezone).
|
|
874
|
+
*/
|
|
875
|
+
assistive_prompt_config?: Experimental.AssistivePromptConfig;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
export namespace Experimental {
|
|
879
|
+
/**
|
|
880
|
+
* Customize assistive prompt generation (e.g., timezone).
|
|
881
|
+
*/
|
|
882
|
+
export interface AssistivePromptConfig {
|
|
883
|
+
/**
|
|
884
|
+
* IANA timezone identifier (e.g., 'America/New_York', 'Europe/London'). Used to
|
|
885
|
+
* customize the system prompt with timezone-aware instructions.
|
|
886
|
+
*/
|
|
887
|
+
user_timezone?: string;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
|
|
843
891
|
/**
|
|
844
892
|
* Configuration for connection management settings
|
|
845
893
|
*/
|
|
@@ -103,6 +103,11 @@ export interface ToolkitRetrieveResponse {
|
|
|
103
103
|
* Endpoint to get the current user
|
|
104
104
|
*/
|
|
105
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;
|
|
106
111
|
}
|
|
107
112
|
|
|
108
113
|
export namespace ToolkitRetrieveResponse {
|
|
@@ -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
|
*/
|
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
|