@agent-os-sdk/client 0.9.18 → 0.9.19
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/dist/generated/openapi.d.ts +5 -0
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/modules/catalog.d.ts +10 -5
- package/dist/modules/catalog.d.ts.map +1 -1
- package/dist/modules/catalog.js +28 -3
- package/dist/modules/metaAgent.d.ts +4 -1
- package/dist/modules/metaAgent.d.ts.map +1 -1
- package/dist/modules/metaAgent.js +7 -0
- package/dist/modules/presets.d.ts +1 -1
- package/dist/modules/presets.d.ts.map +1 -1
- package/dist/modules/presets.js +2 -0
- package/dist/modules/tools.d.ts +4 -4
- package/dist/modules/tools.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/generated/openapi.ts +5 -0
- package/src/generated/swagger.json +26 -1
- package/src/modules/catalog.ts +45 -10
- package/src/modules/metaAgent.ts +11 -1
- package/src/modules/presets.ts +3 -1
- package/src/modules/tools.ts +4 -4
|
@@ -8834,6 +8834,9 @@ export interface components {
|
|
|
8834
8834
|
presets: components["schemas"]["NodePresetDto"][] | null;
|
|
8835
8835
|
};
|
|
8836
8836
|
NodeTypeDto: {
|
|
8837
|
+
capability_ref: string | null;
|
|
8838
|
+
capability_version: string | null;
|
|
8839
|
+
execution_binding: string | null;
|
|
8837
8840
|
kind: string | null;
|
|
8838
8841
|
title: string | null;
|
|
8839
8842
|
category: string | null;
|
|
@@ -9280,6 +9283,8 @@ export interface components {
|
|
|
9280
9283
|
created_at?: string;
|
|
9281
9284
|
};
|
|
9282
9285
|
TriggerTemplateDto: {
|
|
9286
|
+
capability_ref: string | null;
|
|
9287
|
+
capability_version: string | null;
|
|
9283
9288
|
slug: string | null;
|
|
9284
9289
|
kind: string | null;
|
|
9285
9290
|
title: string | null;
|