cadenya 0.26.0 → 0.28.0

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 (68) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +12 -1
  3. package/resources/agents/agents.d.mts +10 -0
  4. package/resources/agents/agents.d.mts.map +1 -1
  5. package/resources/agents/agents.d.ts +10 -0
  6. package/resources/agents/agents.d.ts.map +1 -1
  7. package/resources/agents/agents.js.map +1 -1
  8. package/resources/agents/agents.mjs.map +1 -1
  9. package/resources/agents/variations.d.mts +10 -0
  10. package/resources/agents/variations.d.mts.map +1 -1
  11. package/resources/agents/variations.d.ts +10 -0
  12. package/resources/agents/variations.d.ts.map +1 -1
  13. package/resources/api-keys.d.mts +20 -0
  14. package/resources/api-keys.d.mts.map +1 -1
  15. package/resources/api-keys.d.ts +20 -0
  16. package/resources/api-keys.d.ts.map +1 -1
  17. package/resources/document-namespaces.d.mts +16 -0
  18. package/resources/document-namespaces.d.mts.map +1 -1
  19. package/resources/document-namespaces.d.ts +16 -0
  20. package/resources/document-namespaces.d.ts.map +1 -1
  21. package/resources/documents.d.mts +4 -0
  22. package/resources/documents.d.mts.map +1 -1
  23. package/resources/documents.d.ts +4 -0
  24. package/resources/documents.d.ts.map +1 -1
  25. package/resources/objectives/objectives.d.mts +66 -12
  26. package/resources/objectives/objectives.d.mts.map +1 -1
  27. package/resources/objectives/objectives.d.ts +66 -12
  28. package/resources/objectives/objectives.d.ts.map +1 -1
  29. package/resources/objectives/objectives.js.map +1 -1
  30. package/resources/objectives/objectives.mjs.map +1 -1
  31. package/resources/objectives/tool-calls.d.mts +20 -0
  32. package/resources/objectives/tool-calls.d.mts.map +1 -1
  33. package/resources/objectives/tool-calls.d.ts +20 -0
  34. package/resources/objectives/tool-calls.d.ts.map +1 -1
  35. package/resources/tool-sets/tool-sets.d.mts +33 -0
  36. package/resources/tool-sets/tool-sets.d.mts.map +1 -1
  37. package/resources/tool-sets/tool-sets.d.ts +33 -0
  38. package/resources/tool-sets/tool-sets.d.ts.map +1 -1
  39. package/resources/tool-sets/tool-sets.js.map +1 -1
  40. package/resources/tool-sets/tool-sets.mjs.map +1 -1
  41. package/resources/tool-sets/tools.d.mts +23 -0
  42. package/resources/tool-sets/tools.d.mts.map +1 -1
  43. package/resources/tool-sets/tools.d.ts +23 -0
  44. package/resources/tool-sets/tools.d.ts.map +1 -1
  45. package/resources/workspace-secrets.d.mts +10 -0
  46. package/resources/workspace-secrets.d.mts.map +1 -1
  47. package/resources/workspace-secrets.d.ts +10 -0
  48. package/resources/workspace-secrets.d.ts.map +1 -1
  49. package/resources/workspaces.d.mts +4 -0
  50. package/resources/workspaces.d.mts.map +1 -1
  51. package/resources/workspaces.d.ts +4 -0
  52. package/resources/workspaces.d.ts.map +1 -1
  53. package/src/resources/agents/agents.ts +12 -0
  54. package/src/resources/agents/variations.ts +12 -0
  55. package/src/resources/api-keys.ts +24 -0
  56. package/src/resources/document-namespaces.ts +21 -1
  57. package/src/resources/documents.ts +5 -0
  58. package/src/resources/objectives/objectives.ts +78 -13
  59. package/src/resources/objectives/tool-calls.ts +25 -1
  60. package/src/resources/tool-sets/tool-sets.ts +40 -0
  61. package/src/resources/tool-sets/tools.ts +28 -0
  62. package/src/resources/workspace-secrets.ts +12 -0
  63. package/src/resources/workspaces.ts +5 -0
  64. package/src/version.ts +1 -1
  65. package/version.d.mts +1 -1
  66. package/version.d.ts +1 -1
  67. package/version.js +1 -1
  68. package/version.mjs +1 -1
@@ -75,6 +75,13 @@ export interface WorkspaceSecret {
75
75
  }
76
76
 
77
77
  export interface WorkspaceSecretInfo {
78
+ /**
79
+ * Profile represents a human user at the account level. Profiles are
80
+ * account-scoped resources that can be associated with multiple workspaces through
81
+ * the Actor model. Authentication for profiles is handled via SSO/OAuth (WorkOS).
82
+ */
83
+ createdBy?: Shared.Profile;
84
+
78
85
  lastUsedAt?: string;
79
86
  }
80
87
 
@@ -110,6 +117,11 @@ export interface WorkspaceSecretUpdateParams {
110
117
  }
111
118
 
112
119
  export interface WorkspaceSecretListParams extends CursorPaginationParams {
120
+ /**
121
+ * When set to true you may use more of your alloted API rate-limit
122
+ */
123
+ includeInfo?: boolean;
124
+
113
125
  /**
114
126
  * Filter expression (query param: prefix)
115
127
  */
@@ -61,6 +61,11 @@ export interface WorkspaceCreateParams {
61
61
  }
62
62
 
63
63
  export interface WorkspaceListParams extends CursorPaginationParams {
64
+ /**
65
+ * When set to true you may use more of your alloted API rate-limit
66
+ */
67
+ includeInfo?: boolean;
68
+
64
69
  /**
65
70
  * Sort order for results (asc or desc by creation time)
66
71
  */
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.26.0'; // x-release-please-version
1
+ export const VERSION = '0.28.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.26.0";
1
+ export declare const VERSION = "0.28.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.26.0";
1
+ export declare const VERSION = "0.28.0";
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.26.0'; // x-release-please-version
4
+ exports.VERSION = '0.28.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.26.0'; // x-release-please-version
1
+ export const VERSION = '0.28.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map