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.
- package/CHANGELOG.md +21 -0
- package/package.json +12 -1
- package/resources/agents/agents.d.mts +10 -0
- package/resources/agents/agents.d.mts.map +1 -1
- package/resources/agents/agents.d.ts +10 -0
- package/resources/agents/agents.d.ts.map +1 -1
- package/resources/agents/agents.js.map +1 -1
- package/resources/agents/agents.mjs.map +1 -1
- package/resources/agents/variations.d.mts +10 -0
- package/resources/agents/variations.d.mts.map +1 -1
- package/resources/agents/variations.d.ts +10 -0
- package/resources/agents/variations.d.ts.map +1 -1
- package/resources/api-keys.d.mts +20 -0
- package/resources/api-keys.d.mts.map +1 -1
- package/resources/api-keys.d.ts +20 -0
- package/resources/api-keys.d.ts.map +1 -1
- package/resources/document-namespaces.d.mts +16 -0
- package/resources/document-namespaces.d.mts.map +1 -1
- package/resources/document-namespaces.d.ts +16 -0
- package/resources/document-namespaces.d.ts.map +1 -1
- package/resources/documents.d.mts +4 -0
- package/resources/documents.d.mts.map +1 -1
- package/resources/documents.d.ts +4 -0
- package/resources/documents.d.ts.map +1 -1
- package/resources/objectives/objectives.d.mts +66 -12
- package/resources/objectives/objectives.d.mts.map +1 -1
- package/resources/objectives/objectives.d.ts +66 -12
- package/resources/objectives/objectives.d.ts.map +1 -1
- package/resources/objectives/objectives.js.map +1 -1
- package/resources/objectives/objectives.mjs.map +1 -1
- package/resources/objectives/tool-calls.d.mts +20 -0
- package/resources/objectives/tool-calls.d.mts.map +1 -1
- package/resources/objectives/tool-calls.d.ts +20 -0
- package/resources/objectives/tool-calls.d.ts.map +1 -1
- package/resources/tool-sets/tool-sets.d.mts +33 -0
- package/resources/tool-sets/tool-sets.d.mts.map +1 -1
- package/resources/tool-sets/tool-sets.d.ts +33 -0
- package/resources/tool-sets/tool-sets.d.ts.map +1 -1
- package/resources/tool-sets/tool-sets.js.map +1 -1
- package/resources/tool-sets/tool-sets.mjs.map +1 -1
- package/resources/tool-sets/tools.d.mts +23 -0
- package/resources/tool-sets/tools.d.mts.map +1 -1
- package/resources/tool-sets/tools.d.ts +23 -0
- package/resources/tool-sets/tools.d.ts.map +1 -1
- package/resources/workspace-secrets.d.mts +10 -0
- package/resources/workspace-secrets.d.mts.map +1 -1
- package/resources/workspace-secrets.d.ts +10 -0
- package/resources/workspace-secrets.d.ts.map +1 -1
- package/resources/workspaces.d.mts +4 -0
- package/resources/workspaces.d.mts.map +1 -1
- package/resources/workspaces.d.ts +4 -0
- package/resources/workspaces.d.ts.map +1 -1
- package/src/resources/agents/agents.ts +12 -0
- package/src/resources/agents/variations.ts +12 -0
- package/src/resources/api-keys.ts +24 -0
- package/src/resources/document-namespaces.ts +21 -1
- package/src/resources/documents.ts +5 -0
- package/src/resources/objectives/objectives.ts +78 -13
- package/src/resources/objectives/tool-calls.ts +25 -1
- package/src/resources/tool-sets/tool-sets.ts +40 -0
- package/src/resources/tool-sets/tools.ts +28 -0
- package/src/resources/workspace-secrets.ts +12 -0
- package/src/resources/workspaces.ts +5 -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
|
@@ -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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "0.28.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.28.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|