@composio/client 0.1.0-alpha.70 → 0.1.0-alpha.72
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 +22 -0
- package/internal/utils/log.d.mts.map +1 -1
- package/internal/utils/log.d.ts.map +1 -1
- package/internal/utils/log.js +3 -2
- package/internal/utils/log.js.map +1 -1
- package/internal/utils/log.mjs +3 -2
- package/internal/utils/log.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/connected-accounts.d.mts +224 -0
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +224 -0
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/link.d.mts +91 -0
- package/resources/link.d.mts.map +1 -1
- package/resources/link.d.ts +91 -0
- package/resources/link.d.ts.map +1 -1
- package/resources/tool-router/session/session.d.mts +93 -3
- package/resources/tool-router/session/session.d.mts.map +1 -1
- package/resources/tool-router/session/session.d.ts +93 -3
- package/resources/tool-router/session/session.d.ts.map +1 -1
- package/resources/tool-router/session/session.js.map +1 -1
- package/resources/tool-router/session/session.mjs.map +1 -1
- package/resources/toolkits.d.mts +8 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +8 -0
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +9 -3
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +9 -3
- package/resources/tools.d.ts.map +1 -1
- package/resources/triggers-types.d.mts +12 -0
- package/resources/triggers-types.d.mts.map +1 -1
- package/resources/triggers-types.d.ts +12 -0
- package/resources/triggers-types.d.ts.map +1 -1
- package/src/internal/utils/log.ts +2 -1
- package/src/resources/connected-accounts.ts +246 -0
- package/src/resources/link.ts +101 -0
- package/src/resources/tool-router/session/session.ts +106 -3
- package/src/resources/toolkits.ts +16 -0
- package/src/resources/tools.ts +7 -3
- package/src/resources/triggers-types.ts +14 -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
package/src/resources/tools.ts
CHANGED
|
@@ -741,6 +741,8 @@ export namespace ToolExecuteParams {
|
|
|
741
741
|
|
|
742
742
|
extension?: string;
|
|
743
743
|
|
|
744
|
+
extra_token_data?: { [key: string]: unknown };
|
|
745
|
+
|
|
744
746
|
form_api_base_url?: string;
|
|
745
747
|
|
|
746
748
|
id_token?: string;
|
|
@@ -1513,7 +1515,7 @@ export interface ToolProxyParams {
|
|
|
1513
1515
|
* content_type?: "..."}. For binary upload via base64: use {base64: "...",
|
|
1514
1516
|
* content_type?: "..."}.
|
|
1515
1517
|
*/
|
|
1516
|
-
binary_body?: ToolProxyParams.
|
|
1518
|
+
binary_body?: ToolProxyParams.BinaryBodyUnionMember0 | ToolProxyParams.BinaryBodyUnionMember1;
|
|
1517
1519
|
|
|
1518
1520
|
/**
|
|
1519
1521
|
* The request body (for POST, PUT, and PATCH requests)
|
|
@@ -1549,7 +1551,7 @@ export interface ToolProxyParams {
|
|
|
1549
1551
|
}
|
|
1550
1552
|
|
|
1551
1553
|
export namespace ToolProxyParams {
|
|
1552
|
-
export interface
|
|
1554
|
+
export interface BinaryBodyUnionMember0 {
|
|
1553
1555
|
/**
|
|
1554
1556
|
* URL to fetch binary content from
|
|
1555
1557
|
*/
|
|
@@ -1561,7 +1563,7 @@ export namespace ToolProxyParams {
|
|
|
1561
1563
|
content_type?: string;
|
|
1562
1564
|
}
|
|
1563
1565
|
|
|
1564
|
-
export interface
|
|
1566
|
+
export interface BinaryBodyUnionMember1 {
|
|
1565
1567
|
/**
|
|
1566
1568
|
* Base64-encoded binary data
|
|
1567
1569
|
*/
|
|
@@ -1610,6 +1612,8 @@ export namespace ToolProxyParams {
|
|
|
1610
1612
|
|
|
1611
1613
|
extension?: string;
|
|
1612
1614
|
|
|
1615
|
+
extra_token_data?: { [key: string]: unknown };
|
|
1616
|
+
|
|
1613
1617
|
form_api_base_url?: string;
|
|
1614
1618
|
|
|
1615
1619
|
id_token?: string;
|
|
@@ -86,6 +86,13 @@ export interface TriggersTypeRetrieveResponse {
|
|
|
86
86
|
* Version of the trigger type
|
|
87
87
|
*/
|
|
88
88
|
version: string;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* True when the developer must register a Composio-issued webhook URL with the
|
|
92
|
+
* upstream provider (e.g. Slack Event Subscriptions, Notion integration webhooks).
|
|
93
|
+
* See the webhook_endpoint API for the setup.
|
|
94
|
+
*/
|
|
95
|
+
requires_webhook_endpoint_setup?: boolean;
|
|
89
96
|
}
|
|
90
97
|
|
|
91
98
|
export namespace TriggersTypeRetrieveResponse {
|
|
@@ -168,6 +175,13 @@ export namespace TriggersTypeListResponse {
|
|
|
168
175
|
* Version of the trigger type
|
|
169
176
|
*/
|
|
170
177
|
version: string;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* True when the developer must register a Composio-issued webhook URL with the
|
|
181
|
+
* upstream provider (e.g. Slack Event Subscriptions, Notion integration webhooks).
|
|
182
|
+
* See the webhook_endpoint API for the setup.
|
|
183
|
+
*/
|
|
184
|
+
requires_webhook_endpoint_setup?: boolean;
|
|
171
185
|
}
|
|
172
186
|
|
|
173
187
|
export namespace Item {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.72'; // 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.72";
|
|
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.72";
|
|
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.72'; // 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.72'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|