@composio/client 0.1.0-alpha.37 → 0.1.0-alpha.39

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 (57) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/internal/to-file.d.mts +1 -1
  3. package/internal/to-file.d.ts +1 -1
  4. package/internal/to-file.js +1 -1
  5. package/internal/to-file.mjs +1 -1
  6. package/package.json +1 -1
  7. package/resources/auth-configs.d.mts +7 -1
  8. package/resources/auth-configs.d.mts.map +1 -1
  9. package/resources/auth-configs.d.ts +7 -1
  10. package/resources/auth-configs.d.ts.map +1 -1
  11. package/resources/connected-accounts.d.mts +10 -0
  12. package/resources/connected-accounts.d.mts.map +1 -1
  13. package/resources/connected-accounts.d.ts +10 -0
  14. package/resources/connected-accounts.d.ts.map +1 -1
  15. package/resources/files.d.mts +1 -1
  16. package/resources/files.d.ts +1 -1
  17. package/resources/link.d.mts +1571 -0
  18. package/resources/link.d.mts.map +1 -1
  19. package/resources/link.d.ts +1571 -0
  20. package/resources/link.d.ts.map +1 -1
  21. package/resources/tool-router.d.mts +14 -4
  22. package/resources/tool-router.d.mts.map +1 -1
  23. package/resources/tool-router.d.ts +14 -4
  24. package/resources/tool-router.d.ts.map +1 -1
  25. package/resources/tool-router.js +8 -2
  26. package/resources/tool-router.js.map +1 -1
  27. package/resources/tool-router.mjs +8 -2
  28. package/resources/tool-router.mjs.map +1 -1
  29. package/resources/toolkits.d.mts +5 -1
  30. package/resources/toolkits.d.mts.map +1 -1
  31. package/resources/toolkits.d.ts +5 -1
  32. package/resources/toolkits.d.ts.map +1 -1
  33. package/resources/tools.d.mts +15 -5
  34. package/resources/tools.d.mts.map +1 -1
  35. package/resources/tools.d.ts +15 -5
  36. package/resources/tools.d.ts.map +1 -1
  37. package/resources/trigger-instances/trigger-instances.d.mts +1 -1
  38. package/resources/trigger-instances/trigger-instances.d.ts +1 -1
  39. package/resources/triggers-types.d.mts +18 -2
  40. package/resources/triggers-types.d.mts.map +1 -1
  41. package/resources/triggers-types.d.ts +18 -2
  42. package/resources/triggers-types.d.ts.map +1 -1
  43. package/src/internal/to-file.ts +1 -1
  44. package/src/resources/auth-configs.ts +5 -1
  45. package/src/resources/connected-accounts.ts +12 -0
  46. package/src/resources/files.ts +1 -1
  47. package/src/resources/link.ts +3025 -0
  48. package/src/resources/tool-router.ts +15 -4
  49. package/src/resources/toolkits.ts +6 -1
  50. package/src/resources/tools.ts +17 -5
  51. package/src/resources/trigger-instances/trigger-instances.ts +1 -1
  52. package/src/resources/triggers-types.ts +19 -2
  53. package/src/version.ts +1 -1
  54. package/version.d.mts +1 -1
  55. package/version.d.ts +1 -1
  56. package/version.js +1 -1
  57. package/version.mjs +1 -1
@@ -147,7 +147,7 @@ export interface FileListParams {
147
147
  */
148
148
  cursor?: string;
149
149
  /**
150
- * Number of items per page
150
+ * Number of items per page, max allowed is 1000
151
151
  */
152
152
  limit?: number | null;
153
153
  /**
@@ -147,7 +147,7 @@ export interface FileListParams {
147
147
  */
148
148
  cursor?: string;
149
149
  /**
150
- * Number of items per page
150
+ * Number of items per page, max allowed is 1000
151
151
  */
152
152
  limit?: number | null;
153
153
  /**