@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +1 -1
  3. package/resources/connected-accounts.d.mts +0 -4
  4. package/resources/connected-accounts.d.mts.map +1 -1
  5. package/resources/connected-accounts.d.ts +0 -4
  6. package/resources/connected-accounts.d.ts.map +1 -1
  7. package/resources/tool-router/index.d.mts +1 -1
  8. package/resources/tool-router/index.d.mts.map +1 -1
  9. package/resources/tool-router/index.d.ts +1 -1
  10. package/resources/tool-router/index.d.ts.map +1 -1
  11. package/resources/tool-router/index.js.map +1 -1
  12. package/resources/tool-router/index.mjs.map +1 -1
  13. package/resources/tool-router/session.d.mts +42 -1
  14. package/resources/tool-router/session.d.mts.map +1 -1
  15. package/resources/tool-router/session.d.ts +42 -1
  16. package/resources/tool-router/session.d.ts.map +1 -1
  17. package/resources/tool-router/session.js +18 -0
  18. package/resources/tool-router/session.js.map +1 -1
  19. package/resources/tool-router/session.mjs +18 -0
  20. package/resources/tool-router/session.mjs.map +1 -1
  21. package/resources/tool-router/tool-router.d.mts +2 -2
  22. package/resources/tool-router/tool-router.d.mts.map +1 -1
  23. package/resources/tool-router/tool-router.d.ts +2 -2
  24. package/resources/tool-router/tool-router.d.ts.map +1 -1
  25. package/resources/tool-router/tool-router.js.map +1 -1
  26. package/resources/tool-router/tool-router.mjs.map +1 -1
  27. package/src/resources/connected-accounts.ts +0 -5
  28. package/src/resources/tool-router/index.ts +2 -0
  29. package/src/resources/tool-router/session.ts +54 -0
  30. package/src/resources/tool-router/tool-router.ts +4 -0
  31. package/src/version.ts +1 -1
  32. package/version.d.mts +1 -1
  33. package/version.d.ts +1 -1
  34. package/version.js +1 -1
  35. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@composio/client",
3
- "version": "0.1.0-alpha.48",
3
+ "version": "0.1.0-alpha.49",
4
4
  "description": "The official TypeScript library for the Composio API",
5
5
  "author": "Composio <tech@composio.dev>",
6
6
  "types": "./index.d.ts",
@@ -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
  */