@cadenya/cadenya 0.61.0 → 0.63.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 +28 -0
- package/client.d.mts +13 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +13 -0
- package/client.d.ts.map +1 -1
- package/client.js +24 -0
- package/client.js.map +1 -1
- package/client.mjs +24 -0
- package/client.mjs.map +1 -1
- package/internal/types.d.mts +6 -6
- package/internal/types.d.mts.map +1 -1
- package/internal/types.d.ts +6 -6
- package/internal/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/resources/bulk-workspace-resources/bulk-workspace-resources.d.mts +288 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.d.mts.map +1 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.d.ts +288 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.d.ts.map +1 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.js +51 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.js.map +1 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.mjs +46 -0
- package/resources/bulk-workspace-resources/bulk-workspace-resources.mjs.map +1 -0
- package/resources/bulk-workspace-resources/index.d.mts +3 -0
- package/resources/bulk-workspace-resources/index.d.mts.map +1 -0
- package/resources/bulk-workspace-resources/index.d.ts +3 -0
- package/resources/bulk-workspace-resources/index.d.ts.map +1 -0
- package/resources/bulk-workspace-resources/index.js +9 -0
- package/resources/bulk-workspace-resources/index.js.map +1 -0
- package/resources/bulk-workspace-resources/index.mjs +4 -0
- package/resources/bulk-workspace-resources/index.mjs.map +1 -0
- package/resources/bulk-workspace-resources/results.d.mts +638 -0
- package/resources/bulk-workspace-resources/results.d.mts.map +1 -0
- package/resources/bulk-workspace-resources/results.d.ts +638 -0
- package/resources/bulk-workspace-resources/results.d.ts.map +1 -0
- package/resources/bulk-workspace-resources/results.js +27 -0
- package/resources/bulk-workspace-resources/results.js.map +1 -0
- package/resources/bulk-workspace-resources/results.mjs +23 -0
- package/resources/bulk-workspace-resources/results.mjs.map +1 -0
- package/resources/bulk-workspace-resources.d.mts +2 -0
- package/resources/bulk-workspace-resources.d.mts.map +1 -0
- package/resources/bulk-workspace-resources.d.ts +2 -0
- package/resources/bulk-workspace-resources.d.ts.map +1 -0
- package/resources/bulk-workspace-resources.js +6 -0
- package/resources/bulk-workspace-resources.js.map +1 -0
- package/resources/bulk-workspace-resources.mjs +3 -0
- package/resources/bulk-workspace-resources.mjs.map +1 -0
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/src/client.ts +63 -0
- package/src/internal/types.ts +6 -8
- package/src/resources/bulk-workspace-resources/bulk-workspace-resources.ts +409 -0
- package/src/resources/bulk-workspace-resources/index.ts +37 -0
- package/src/resources/bulk-workspace-resources/results.ts +821 -0
- package/src/resources/bulk-workspace-resources.ts +3 -0
- package/src/resources/index.ts +19 -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/src/resources/index.ts
CHANGED
|
@@ -30,6 +30,25 @@ export {
|
|
|
30
30
|
type AgentListParams,
|
|
31
31
|
type AgentsCursorPagination,
|
|
32
32
|
} from './agents/agents';
|
|
33
|
+
export {
|
|
34
|
+
BulkWorkspaceResources,
|
|
35
|
+
type AgentEntry,
|
|
36
|
+
type AgentScheduleEntry,
|
|
37
|
+
type AgentVariationEntry,
|
|
38
|
+
type BulkWorkspaceApply,
|
|
39
|
+
type BulkWorkspaceApplyData,
|
|
40
|
+
type BulkWorkspaceApplyInfo,
|
|
41
|
+
type BulkWorkspaceApplyStatus,
|
|
42
|
+
type MemoryEntryItem,
|
|
43
|
+
type MemoryLayerEntry,
|
|
44
|
+
type ToolEntry,
|
|
45
|
+
type ToolSetEntry,
|
|
46
|
+
type VariationAssignmentEntry,
|
|
47
|
+
type VariationMemoryLayerEntry,
|
|
48
|
+
type BulkWorkspaceResourceListParams,
|
|
49
|
+
type BulkWorkspaceResourceApplyParams,
|
|
50
|
+
type BulkWorkspaceAppliesCursorPagination,
|
|
51
|
+
} from './bulk-workspace-resources/bulk-workspace-resources';
|
|
33
52
|
export {
|
|
34
53
|
MemoryLayers,
|
|
35
54
|
type MemoryLayer,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.63.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.63.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.63.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.63.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|