@agent-os-sdk/client 0.9.22 → 0.9.23

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.
@@ -1300,7 +1300,59 @@ export interface paths {
1300
1300
  };
1301
1301
  };
1302
1302
  put?: never;
1303
- post?: never;
1303
+ post: {
1304
+ parameters: {
1305
+ query?: never;
1306
+ header?: never;
1307
+ path: {
1308
+ id: string;
1309
+ };
1310
+ cookie?: never;
1311
+ };
1312
+ requestBody?: {
1313
+ content: {
1314
+ "application/json": components["schemas"]["PublishPreviewRequest"];
1315
+ "text/json": components["schemas"]["PublishPreviewRequest"];
1316
+ "application/*+json": components["schemas"]["PublishPreviewRequest"];
1317
+ };
1318
+ };
1319
+ responses: {
1320
+ /** @description OK */
1321
+ 200: {
1322
+ headers: {
1323
+ [name: string]: unknown;
1324
+ };
1325
+ content: {
1326
+ "application/json": components["schemas"]["PublishPreviewResponse"];
1327
+ };
1328
+ };
1329
+ /** @description Bad Request */
1330
+ 400: {
1331
+ headers: {
1332
+ [name: string]: unknown;
1333
+ };
1334
+ content: {
1335
+ "application/json": components["schemas"]["ProblemDetails"];
1336
+ };
1337
+ };
1338
+ /** @description Not Found */
1339
+ 404: {
1340
+ headers: {
1341
+ [name: string]: unknown;
1342
+ };
1343
+ content: {
1344
+ "application/json": components["schemas"]["ProblemDetails"];
1345
+ };
1346
+ };
1347
+ /** @description Service Unavailable */
1348
+ 503: {
1349
+ headers: {
1350
+ [name: string]: unknown;
1351
+ };
1352
+ content?: never;
1353
+ };
1354
+ };
1355
+ };
1304
1356
  delete?: never;
1305
1357
  options?: never;
1306
1358
  head?: never;
@@ -11000,6 +11052,14 @@ export interface components {
11000
11052
  execution_binding?: string | null;
11001
11053
  required_credentials?: string[] | null;
11002
11054
  };
11055
+ PublishPreviewDraftDiff: {
11056
+ added_node_ids?: string[] | null;
11057
+ removed_node_ids?: string[] | null;
11058
+ modified_node_ids?: string[] | null;
11059
+ added_capability_refs?: string[] | null;
11060
+ removed_capability_refs?: string[] | null;
11061
+ binding_keys_impacted?: string[] | null;
11062
+ };
11003
11063
  PublishPreviewIssue: {
11004
11064
  code?: string | null;
11005
11065
  message?: string | null;
@@ -11008,6 +11068,9 @@ export interface components {
11008
11068
  node_id?: string | null;
11009
11069
  hint?: string | null;
11010
11070
  };
11071
+ PublishPreviewRequest: {
11072
+ ir_json?: unknown;
11073
+ };
11011
11074
  PublishPreviewResponse: {
11012
11075
  /** Format: uuid */
11013
11076
  agent_id?: string;
@@ -11016,6 +11079,7 @@ export interface components {
11016
11079
  validation_result?: components["schemas"]["PublishPreviewValidationResult"];
11017
11080
  capabilities?: components["schemas"]["PublishPreviewCapabilityItem"][] | null;
11018
11081
  bindings?: components["schemas"]["PublishPreviewBindingItem"][] | null;
11082
+ draft_diff?: components["schemas"]["PublishPreviewDraftDiff"];
11019
11083
  blockers?: components["schemas"]["PublishPreviewIssue"][] | null;
11020
11084
  warnings?: components["schemas"]["PublishPreviewIssue"][] | null;
11021
11085
  };