@composio/client 0.1.0-alpha.48 → 0.1.0-alpha.49
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 +10 -0
- package/package.json +1 -1
- package/resources/connected-accounts.d.mts +0 -4
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +0 -4
- package/resources/connected-accounts.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.map +1 -1
- package/resources/tool-router/session.d.mts +42 -1
- package/resources/tool-router/session.d.mts.map +1 -1
- package/resources/tool-router/session.d.ts +42 -1
- package/resources/tool-router/session.d.ts.map +1 -1
- package/resources/tool-router/session.js +18 -0
- package/resources/tool-router/session.js.map +1 -1
- package/resources/tool-router/session.mjs +18 -0
- package/resources/tool-router/session.mjs.map +1 -1
- package/resources/tool-router/tool-router.d.mts +2 -2
- package/resources/tool-router/tool-router.d.mts.map +1 -1
- package/resources/tool-router/tool-router.d.ts +2 -2
- package/resources/tool-router/tool-router.d.ts.map +1 -1
- package/resources/tool-router/tool-router.js.map +1 -1
- package/resources/tool-router/tool-router.mjs.map +1 -1
- package/src/resources/connected-accounts.ts +0 -5
- package/src/resources/tool-router/index.ts +2 -0
- package/src/resources/tool-router/session.ts +54 -0
- package/src/resources/tool-router/tool-router.ts +4 -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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.49 (2025-12-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.48...v0.1.0-alpha.49](https://github.com/ComposioHQ/composio-base-ts/compare/v0.1.0-alpha.48...v0.1.0-alpha.49)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([36eb387](https://github.com/ComposioHQ/composio-base-ts/commit/36eb387af1fb0cfd7baf72538a751b645824b04d))
|
|
10
|
+
* **api:** api update ([d2327b7](https://github.com/ComposioHQ/composio-base-ts/commit/d2327b73737c1eb958db4425ff1bf70e27a6104c))
|
|
11
|
+
* **api:** manual updates ([f944ddf](https://github.com/ComposioHQ/composio-base-ts/commit/f944ddf09c0d1ba5af1027c41daef384546eecf8))
|
|
12
|
+
|
|
3
13
|
## 0.1.0-alpha.48 (2025-12-10)
|
|
4
14
|
|
|
5
15
|
Full Changelog: [v0.1.0-alpha.47...v0.1.0-alpha.48](https://github.com/ComposioHQ/composio-base-ts/compare/v0.1.0-alpha.47...v0.1.0-alpha.48)
|
package/package.json
CHANGED
|
@@ -8890,10 +8890,6 @@ export interface ConnectedAccountListParams {
|
|
|
8890
8890
|
* The cursor to paginate through the connected accounts
|
|
8891
8891
|
*/
|
|
8892
8892
|
cursor?: string | null;
|
|
8893
|
-
/**
|
|
8894
|
-
* The labels of the connected accounts
|
|
8895
|
-
*/
|
|
8896
|
-
labels?: Array<string> | null;
|
|
8897
8893
|
/**
|
|
8898
8894
|
* The limit of the connected accounts to return
|
|
8899
8895
|
*/
|