@orq-ai/node 4.5.0-rc.40 → 4.5.0-rc.41

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 (103) hide show
  1. package/jsr.json +1 -1
  2. package/lib/config.d.ts +2 -2
  3. package/lib/config.js +2 -2
  4. package/models/components/partdoneevent.js +1 -1
  5. package/models/components/reasoningpart.js +1 -1
  6. package/models/operations/createagentrequest.d.ts +161 -271
  7. package/models/operations/createagentrequest.d.ts.map +1 -1
  8. package/models/operations/createagentrequest.js +162 -256
  9. package/models/operations/createagentrequest.js.map +1 -1
  10. package/models/operations/createcontact.js +1 -1
  11. package/models/operations/createdataset.js +1 -1
  12. package/models/operations/createdatasetitem.js +4 -4
  13. package/models/operations/createdatasource.js +1 -1
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/createidentity.js +1 -1
  16. package/models/operations/createknowledge.d.ts +7 -7
  17. package/models/operations/createknowledge.d.ts.map +1 -1
  18. package/models/operations/createknowledge.js +11 -11
  19. package/models/operations/createknowledge.js.map +1 -1
  20. package/models/operations/createtool.d.ts +39 -39
  21. package/models/operations/createtool.d.ts.map +1 -1
  22. package/models/operations/createtool.js +49 -52
  23. package/models/operations/createtool.js.map +1 -1
  24. package/models/operations/fileget.js +1 -1
  25. package/models/operations/filelist.js +1 -1
  26. package/models/operations/fileupload.js +1 -1
  27. package/models/operations/getalltools.d.ts +39 -39
  28. package/models/operations/getalltools.d.ts.map +1 -1
  29. package/models/operations/getalltools.js +47 -49
  30. package/models/operations/getalltools.js.map +1 -1
  31. package/models/operations/getevals.js +16 -16
  32. package/models/operations/listagents.d.ts +167 -276
  33. package/models/operations/listagents.d.ts.map +1 -1
  34. package/models/operations/listagents.js +172 -266
  35. package/models/operations/listagents.js.map +1 -1
  36. package/models/operations/listdatasetdatapoints.js +4 -4
  37. package/models/operations/listdatasets.js +1 -1
  38. package/models/operations/listdatasources.js +1 -1
  39. package/models/operations/listidentities.js +1 -1
  40. package/models/operations/listknowledgebases.d.ts +8 -8
  41. package/models/operations/listknowledgebases.d.ts.map +1 -1
  42. package/models/operations/listknowledgebases.js +15 -13
  43. package/models/operations/listknowledgebases.js.map +1 -1
  44. package/models/operations/retrieveagentrequest.d.ts +169 -279
  45. package/models/operations/retrieveagentrequest.d.ts.map +1 -1
  46. package/models/operations/retrieveagentrequest.js +173 -270
  47. package/models/operations/retrieveagentrequest.js.map +1 -1
  48. package/models/operations/retrievedatapoint.js +4 -4
  49. package/models/operations/retrievedataset.js +1 -1
  50. package/models/operations/retrievedatasource.js +1 -1
  51. package/models/operations/retrieveidentity.js +1 -1
  52. package/models/operations/retrievetool.js +6 -6
  53. package/models/operations/runagent.js +1 -1
  54. package/models/operations/streamrunagent.js +1 -1
  55. package/models/operations/updateagent.d.ts +169 -279
  56. package/models/operations/updateagent.d.ts.map +1 -1
  57. package/models/operations/updateagent.js +174 -270
  58. package/models/operations/updateagent.js.map +1 -1
  59. package/models/operations/updatedatapoint.js +4 -4
  60. package/models/operations/updatedataset.js +1 -1
  61. package/models/operations/updatedatasource.js +1 -1
  62. package/models/operations/updateeval.js +16 -16
  63. package/models/operations/updateidentity.js +1 -1
  64. package/models/operations/updatetool.js +7 -7
  65. package/package.json +1 -1
  66. package/src/lib/config.ts +2 -2
  67. package/src/models/components/partdoneevent.ts +1 -1
  68. package/src/models/components/reasoningpart.ts +1 -1
  69. package/src/models/operations/createagentrequest.ts +376 -619
  70. package/src/models/operations/createcontact.ts +1 -1
  71. package/src/models/operations/createdataset.ts +1 -1
  72. package/src/models/operations/createdatasetitem.ts +4 -4
  73. package/src/models/operations/createdatasource.ts +1 -1
  74. package/src/models/operations/createeval.ts +16 -16
  75. package/src/models/operations/createidentity.ts +1 -1
  76. package/src/models/operations/createknowledge.ts +17 -19
  77. package/src/models/operations/createtool.ts +91 -103
  78. package/src/models/operations/fileget.ts +1 -1
  79. package/src/models/operations/filelist.ts +1 -1
  80. package/src/models/operations/fileupload.ts +1 -1
  81. package/src/models/operations/getalltools.ts +87 -93
  82. package/src/models/operations/getevals.ts +16 -16
  83. package/src/models/operations/listagents.ts +383 -611
  84. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  85. package/src/models/operations/listdatasets.ts +1 -1
  86. package/src/models/operations/listdatasources.ts +1 -1
  87. package/src/models/operations/listidentities.ts +1 -1
  88. package/src/models/operations/listknowledgebases.ts +64 -72
  89. package/src/models/operations/retrieveagentrequest.ts +489 -884
  90. package/src/models/operations/retrievedatapoint.ts +4 -4
  91. package/src/models/operations/retrievedataset.ts +1 -1
  92. package/src/models/operations/retrievedatasource.ts +1 -1
  93. package/src/models/operations/retrieveidentity.ts +1 -1
  94. package/src/models/operations/retrievetool.ts +6 -6
  95. package/src/models/operations/runagent.ts +1 -1
  96. package/src/models/operations/streamrunagent.ts +1 -1
  97. package/src/models/operations/updateagent.ts +362 -668
  98. package/src/models/operations/updatedatapoint.ts +4 -4
  99. package/src/models/operations/updatedataset.ts +1 -1
  100. package/src/models/operations/updatedatasource.ts +1 -1
  101. package/src/models/operations/updateeval.ts +16 -16
  102. package/src/models/operations/updateidentity.ts +1 -1
  103. package/src/models/operations/updatetool.ts +7 -7
@@ -1236,7 +1236,7 @@ export type UpdateAgentRequest = {
1236
1236
  /**
1237
1237
  * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
1238
1238
  */
1239
- export declare const UpdateAgentResponseBodyAgentsStatus: {
1239
+ export declare const UpdateAgentStatus: {
1240
1240
  readonly Live: "live";
1241
1241
  readonly Draft: "draft";
1242
1242
  readonly Pending: "pending";
@@ -1245,8 +1245,8 @@ export declare const UpdateAgentResponseBodyAgentsStatus: {
1245
1245
  /**
1246
1246
  * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
1247
1247
  */
1248
- export type UpdateAgentResponseBodyAgentsStatus = ClosedEnum<typeof UpdateAgentResponseBodyAgentsStatus>;
1249
- export type UpdateAgentResponseBodyAgentsTeamOfAgents = {
1248
+ export type UpdateAgentStatus = ClosedEnum<typeof UpdateAgentStatus>;
1249
+ export type UpdateAgentAgentsTeamOfAgents = {
1250
1250
  /**
1251
1251
  * The unique key of the agent within the workspace
1252
1252
  */
@@ -1256,162 +1256,36 @@ export type UpdateAgentResponseBodyAgentsTeamOfAgents = {
1256
1256
  */
1257
1257
  role?: string | undefined;
1258
1258
  };
1259
- export type UpdateAgentResponseBodyAgentsMetrics = {
1259
+ export type UpdateAgentMetrics = {
1260
1260
  totalCost: number;
1261
1261
  };
1262
- export type UpdateAgentResponseBodyAgentsKnowledgeBases = {
1262
+ export type UpdateAgentAgentsKnowledgeBases = {
1263
1263
  /**
1264
1264
  * Unique identifier of the knowledge base to search
1265
1265
  */
1266
1266
  knowledgeId: string;
1267
1267
  };
1268
- export declare const UpdateAgentResponseBodyAgentsSource: {
1268
+ export declare const UpdateAgentSource: {
1269
1269
  readonly Internal: "internal";
1270
1270
  readonly External: "external";
1271
1271
  readonly Experiment: "experiment";
1272
1272
  };
1273
- export type UpdateAgentResponseBodyAgentsSource = ClosedEnum<typeof UpdateAgentResponseBodyAgentsSource>;
1274
- export type UpdateAgentResponseBodyHeaders = {
1275
- /**
1276
- * Header value. **Update behavior**: Provide empty string ("") to preserve existing encrypted value without re-entering credentials. Provide new value to rotate. Omit header entirely to remove.
1277
- */
1278
- value: string;
1279
- encrypted: boolean;
1280
- };
1273
+ export type UpdateAgentSource = ClosedEnum<typeof UpdateAgentSource>;
1281
1274
  /**
1282
- * A2A configuration with agent endpoint and authentication. External agents manage their own model/settings.
1275
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
1283
1276
  */
1284
- export type UpdateAgentResponseBodyA2AAgentConfiguration = {
1285
- /**
1286
- * The A2A agent endpoint URL (e.g., https://example.com/agent/a2a)
1287
- */
1288
- agentUrl: string;
1289
- /**
1290
- * Optional explicit URL to fetch agent card. Defaults to {agent_url}/card if not provided
1291
- */
1292
- cardUrl?: string | undefined;
1293
- /**
1294
- * HTTP headers for A2A agent requests with encryption support (max 20 headers). **Update behavior**: Empty string values preserve existing encrypted headers, allowing partial updates without credential re-entry.
1295
- */
1296
- headers?: {
1297
- [k: string]: UpdateAgentResponseBodyHeaders;
1298
- } | undefined;
1299
- /**
1300
- * Cached agent card from discovery. Refreshed periodically.
1301
- */
1302
- cachedCard?: any | undefined;
1303
- };
1304
- export type UpdateAgentResponseBody2 = {
1305
- id: string;
1306
- /**
1307
- * Unique identifier for the agent within the workspace
1308
- */
1309
- key: string;
1310
- displayName?: string | undefined;
1311
- projectId: string;
1312
- createdById?: string | null | undefined;
1313
- updatedById?: string | null | undefined;
1314
- created?: string | undefined;
1315
- updated?: string | undefined;
1316
- /**
1317
- * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
1318
- */
1319
- status: UpdateAgentResponseBodyAgentsStatus;
1320
- versionHash?: string | undefined;
1321
- /**
1322
- * Entity storage path in the format: `project/folder/subfolder/...`
1323
- *
1324
- * @remarks
1325
- *
1326
- * The first element identifies the project, followed by nested folders (auto-created as needed).
1327
- *
1328
- * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
1329
- */
1330
- path: string;
1331
- /**
1332
- * Array of memory store identifiers. Accepts both memory store IDs and keys.
1333
- */
1334
- memoryStores?: Array<string> | undefined;
1335
- /**
1336
- * The agents that are accessible to this orchestrator. The main agent can hand off to these agents to perform tasks.
1337
- */
1338
- teamOfAgents?: Array<UpdateAgentResponseBodyAgentsTeamOfAgents> | undefined;
1339
- metrics?: UpdateAgentResponseBodyAgentsMetrics | undefined;
1340
- /**
1341
- * Extracted variables from agent instructions
1342
- */
1343
- variables?: {
1344
- [k: string]: any;
1345
- } | undefined;
1346
- /**
1347
- * Agent knowledge bases reference
1348
- */
1349
- knowledgeBases?: Array<UpdateAgentResponseBodyAgentsKnowledgeBases> | undefined;
1350
- source?: UpdateAgentResponseBodyAgentsSource | undefined;
1351
- /**
1352
- * External A2A-compliant agent
1353
- */
1354
- type: "a2a";
1355
- /**
1356
- * Role fetched from agent card name or user-provided
1357
- */
1358
- role: string;
1359
- /**
1360
- * Description fetched from agent card or user-provided
1361
- */
1362
- description: string;
1363
- systemPrompt?: string | undefined;
1364
- /**
1365
- * Instructions from agent card description or user-provided
1366
- */
1367
- instructions: string;
1368
- /**
1369
- * A2A configuration with agent endpoint and authentication. External agents manage their own model/settings.
1370
- */
1371
- a2a: UpdateAgentResponseBodyA2AAgentConfiguration;
1372
- };
1373
- /**
1374
- * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
1375
- */
1376
- export declare const UpdateAgentResponseBodyStatus: {
1377
- readonly Live: "live";
1378
- readonly Draft: "draft";
1379
- readonly Pending: "pending";
1380
- readonly Published: "published";
1277
+ export declare const UpdateAgentType: {
1278
+ readonly Internal: "internal";
1279
+ readonly A2a: "a2a";
1381
1280
  };
1382
1281
  /**
1383
- * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
1282
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
1384
1283
  */
1385
- export type UpdateAgentResponseBodyStatus = ClosedEnum<typeof UpdateAgentResponseBodyStatus>;
1386
- export type UpdateAgentResponseBodyTeamOfAgents = {
1387
- /**
1388
- * The unique key of the agent within the workspace
1389
- */
1390
- key: string;
1391
- /**
1392
- * The role of the agent in this context. This is used to give extra information to the leader to help it decide which agent to hand off to.
1393
- */
1394
- role?: string | undefined;
1395
- };
1396
- export type UpdateAgentResponseBodyMetrics = {
1397
- totalCost: number;
1398
- };
1399
- export type UpdateAgentResponseBodyKnowledgeBases = {
1400
- /**
1401
- * Unique identifier of the knowledge base to search
1402
- */
1403
- knowledgeId: string;
1404
- };
1405
- export declare const UpdateAgentResponseBodySource: {
1406
- readonly Internal: "internal";
1407
- readonly External: "external";
1408
- readonly Experiment: "experiment";
1409
- };
1410
- export type UpdateAgentResponseBodySource = ClosedEnum<typeof UpdateAgentResponseBodySource>;
1284
+ export type UpdateAgentType = ClosedEnum<typeof UpdateAgentType>;
1411
1285
  /**
1412
1286
  * If all, the agent will require approval for all tools. If respect_tool, the agent will require approval for tools that have the requires_approval flag set to true. If none, the agent will not require approval for any tools.
1413
1287
  */
1414
- export declare const UpdateAgentResponseBodyToolApprovalRequired: {
1288
+ export declare const UpdateAgentAgentsToolApprovalRequired: {
1415
1289
  readonly All: "all";
1416
1290
  readonly RespectTool: "respect_tool";
1417
1291
  readonly None: "none";
@@ -1419,8 +1293,8 @@ export declare const UpdateAgentResponseBodyToolApprovalRequired: {
1419
1293
  /**
1420
1294
  * If all, the agent will require approval for all tools. If respect_tool, the agent will require approval for tools that have the requires_approval flag set to true. If none, the agent will not require approval for any tools.
1421
1295
  */
1422
- export type UpdateAgentResponseBodyToolApprovalRequired = ClosedEnum<typeof UpdateAgentResponseBodyToolApprovalRequired>;
1423
- export type UpdateAgentResponseBodyConditions = {
1296
+ export type UpdateAgentAgentsToolApprovalRequired = ClosedEnum<typeof UpdateAgentAgentsToolApprovalRequired>;
1297
+ export type UpdateAgentConditions = {
1424
1298
  /**
1425
1299
  * The argument of the tool call to evaluate
1426
1300
  */
@@ -1434,7 +1308,7 @@ export type UpdateAgentResponseBodyConditions = {
1434
1308
  */
1435
1309
  value: string;
1436
1310
  };
1437
- export type UpdateAgentResponseBodyTools = {
1311
+ export type UpdateAgentTools = {
1438
1312
  /**
1439
1313
  * The id of the resource
1440
1314
  */
@@ -1454,7 +1328,7 @@ export type UpdateAgentResponseBodyTools = {
1454
1328
  * Nested tool ID for MCP tools (identifies specific tool within MCP server)
1455
1329
  */
1456
1330
  toolId?: string | undefined;
1457
- conditions?: Array<UpdateAgentResponseBodyConditions> | undefined;
1331
+ conditions?: Array<UpdateAgentConditions> | undefined;
1458
1332
  /**
1459
1333
  * Tool execution timeout in seconds (default: 2 minutes, max: 10 minutes)
1460
1334
  */
@@ -1463,15 +1337,15 @@ export type UpdateAgentResponseBodyTools = {
1463
1337
  /**
1464
1338
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1465
1339
  */
1466
- export declare const UpdateAgentResponseBodyExecuteOn: {
1340
+ export declare const UpdateAgentAgentsResponseExecuteOn: {
1467
1341
  readonly Input: "input";
1468
1342
  readonly Output: "output";
1469
1343
  };
1470
1344
  /**
1471
1345
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1472
1346
  */
1473
- export type UpdateAgentResponseBodyExecuteOn = ClosedEnum<typeof UpdateAgentResponseBodyExecuteOn>;
1474
- export type UpdateAgentResponseBodyEvaluators = {
1347
+ export type UpdateAgentAgentsResponseExecuteOn = ClosedEnum<typeof UpdateAgentAgentsResponseExecuteOn>;
1348
+ export type UpdateAgentAgentsEvaluators = {
1475
1349
  /**
1476
1350
  * Unique key or identifier of the evaluator
1477
1351
  */
@@ -1483,20 +1357,20 @@ export type UpdateAgentResponseBodyEvaluators = {
1483
1357
  /**
1484
1358
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1485
1359
  */
1486
- executeOn: UpdateAgentResponseBodyExecuteOn;
1360
+ executeOn: UpdateAgentAgentsResponseExecuteOn;
1487
1361
  };
1488
1362
  /**
1489
1363
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1490
1364
  */
1491
- export declare const UpdateAgentResponseBodyAgentsExecuteOn: {
1365
+ export declare const UpdateAgentAgentsResponse200ExecuteOn: {
1492
1366
  readonly Input: "input";
1493
1367
  readonly Output: "output";
1494
1368
  };
1495
1369
  /**
1496
1370
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1497
1371
  */
1498
- export type UpdateAgentResponseBodyAgentsExecuteOn = ClosedEnum<typeof UpdateAgentResponseBodyAgentsExecuteOn>;
1499
- export type UpdateAgentResponseBodyGuardrails = {
1372
+ export type UpdateAgentAgentsResponse200ExecuteOn = ClosedEnum<typeof UpdateAgentAgentsResponse200ExecuteOn>;
1373
+ export type UpdateAgentAgentsGuardrails = {
1500
1374
  /**
1501
1375
  * Unique key or identifier of the evaluator
1502
1376
  */
@@ -1508,9 +1382,9 @@ export type UpdateAgentResponseBodyGuardrails = {
1508
1382
  /**
1509
1383
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
1510
1384
  */
1511
- executeOn: UpdateAgentResponseBodyAgentsExecuteOn;
1385
+ executeOn: UpdateAgentAgentsResponse200ExecuteOn;
1512
1386
  };
1513
- export type UpdateAgentResponseBodySettings = {
1387
+ export type UpdateAgentAgentsSettings = {
1514
1388
  /**
1515
1389
  * Maximum iterations(llm calls) before the agent will stop executing.
1516
1390
  */
@@ -1526,16 +1400,16 @@ export type UpdateAgentResponseBodySettings = {
1526
1400
  /**
1527
1401
  * If all, the agent will require approval for all tools. If respect_tool, the agent will require approval for tools that have the requires_approval flag set to true. If none, the agent will not require approval for any tools.
1528
1402
  */
1529
- toolApprovalRequired: UpdateAgentResponseBodyToolApprovalRequired;
1530
- tools?: Array<UpdateAgentResponseBodyTools> | undefined;
1403
+ toolApprovalRequired: UpdateAgentAgentsToolApprovalRequired;
1404
+ tools?: Array<UpdateAgentTools> | undefined;
1531
1405
  /**
1532
1406
  * Configuration for an evaluator applied to the agent
1533
1407
  */
1534
- evaluators?: Array<UpdateAgentResponseBodyEvaluators> | undefined;
1408
+ evaluators?: Array<UpdateAgentAgentsEvaluators> | undefined;
1535
1409
  /**
1536
1410
  * Configuration for a guardrail applied to the agent
1537
1411
  */
1538
- guardrails?: Array<UpdateAgentResponseBodyGuardrails> | undefined;
1412
+ guardrails?: Array<UpdateAgentAgentsGuardrails> | undefined;
1539
1413
  };
1540
1414
  export type UpdateAgentResponseFormatAgentsResponseJsonSchema = {
1541
1415
  /**
@@ -1583,7 +1457,7 @@ export type UpdateAgentResponseFormatAgentsResponseText = {
1583
1457
  /**
1584
1458
  * An object specifying the format that the model must output
1585
1459
  */
1586
- export type UpdateAgentResponseBodyResponseFormat = UpdateAgentResponseFormatAgentsResponseText | UpdateAgentResponseFormatAgentsResponseJSONObject | UpdateAgentResponseFormatAgentsResponse200JSONSchema;
1460
+ export type UpdateAgentResponseFormat = UpdateAgentResponseFormatAgentsResponseText | UpdateAgentResponseFormatAgentsResponseJSONObject | UpdateAgentResponseFormatAgentsResponse200JSONSchema;
1587
1461
  /**
1588
1462
  * Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
1589
1463
  *
@@ -1596,7 +1470,7 @@ export type UpdateAgentResponseBodyResponseFormat = UpdateAgentResponseFormatAge
1596
1470
  *
1597
1471
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
1598
1472
  */
1599
- export declare const UpdateAgentResponseBodyReasoningEffort: {
1473
+ export declare const UpdateAgentReasoningEffort: {
1600
1474
  readonly None: "none";
1601
1475
  readonly Minimal: "minimal";
1602
1476
  readonly Low: "low";
@@ -1616,12 +1490,12 @@ export declare const UpdateAgentResponseBodyReasoningEffort: {
1616
1490
  *
1617
1491
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
1618
1492
  */
1619
- export type UpdateAgentResponseBodyReasoningEffort = ClosedEnum<typeof UpdateAgentResponseBodyReasoningEffort>;
1493
+ export type UpdateAgentReasoningEffort = ClosedEnum<typeof UpdateAgentReasoningEffort>;
1620
1494
  /**
1621
1495
  * Up to 4 sequences where the API will stop generating further tokens.
1622
1496
  */
1623
- export type UpdateAgentResponseBodyStop = string | Array<string>;
1624
- export type UpdateAgentResponseBodyThinking = components.ThinkingConfigDisabledSchema | components.ThinkingConfigEnabledSchema;
1497
+ export type UpdateAgentStop = string | Array<string>;
1498
+ export type UpdateAgentThinking = components.ThinkingConfigDisabledSchema | components.ThinkingConfigEnabledSchema;
1625
1499
  /**
1626
1500
  * The type of the tool. Currently, only function is supported.
1627
1501
  */
@@ -1654,12 +1528,12 @@ export type UpdateAgentToolChoiceAgentsResponse1 = ClosedEnum<typeof UpdateAgent
1654
1528
  /**
1655
1529
  * Controls which (if any) tool is called by the model.
1656
1530
  */
1657
- export type UpdateAgentResponseBodyToolChoice = UpdateAgentToolChoiceAgentsResponse2 | UpdateAgentToolChoiceAgentsResponse1;
1658
- export declare const UpdateAgentResponseBodyModalities: {
1531
+ export type UpdateAgentToolChoice = UpdateAgentToolChoiceAgentsResponse2 | UpdateAgentToolChoiceAgentsResponse1;
1532
+ export declare const UpdateAgentModalities: {
1659
1533
  readonly Text: "text";
1660
1534
  readonly Audio: "audio";
1661
1535
  };
1662
- export type UpdateAgentResponseBodyModalities = ClosedEnum<typeof UpdateAgentResponseBodyModalities>;
1536
+ export type UpdateAgentModalities = ClosedEnum<typeof UpdateAgentModalities>;
1663
1537
  /**
1664
1538
  * The key of the guardrail.
1665
1539
  */
@@ -1672,44 +1546,44 @@ export declare const UpdateAgentIdAgentsResponse1: {
1672
1546
  * The key of the guardrail.
1673
1547
  */
1674
1548
  export type UpdateAgentIdAgentsResponse1 = ClosedEnum<typeof UpdateAgentIdAgentsResponse1>;
1675
- export type UpdateAgentResponseBodyId = UpdateAgentIdAgentsResponse1 | string;
1549
+ export type UpdateAgentId = UpdateAgentIdAgentsResponse1 | string;
1676
1550
  /**
1677
1551
  * Determines whether the guardrail runs on the input (user message) or output (model response).
1678
1552
  */
1679
- export declare const UpdateAgentResponseBodyAgentsResponseExecuteOn: {
1553
+ export declare const UpdateAgentAgentsResponse200ApplicationJSONExecuteOn: {
1680
1554
  readonly Input: "input";
1681
1555
  readonly Output: "output";
1682
1556
  };
1683
1557
  /**
1684
1558
  * Determines whether the guardrail runs on the input (user message) or output (model response).
1685
1559
  */
1686
- export type UpdateAgentResponseBodyAgentsResponseExecuteOn = ClosedEnum<typeof UpdateAgentResponseBodyAgentsResponseExecuteOn>;
1687
- export type UpdateAgentResponseBodyAgentsGuardrails = {
1560
+ export type UpdateAgentAgentsResponse200ApplicationJSONExecuteOn = ClosedEnum<typeof UpdateAgentAgentsResponse200ApplicationJSONExecuteOn>;
1561
+ export type UpdateAgentAgentsResponseGuardrails = {
1688
1562
  id: UpdateAgentIdAgentsResponse1 | string;
1689
1563
  /**
1690
1564
  * Determines whether the guardrail runs on the input (user message) or output (model response).
1691
1565
  */
1692
- executeOn: UpdateAgentResponseBodyAgentsResponseExecuteOn;
1566
+ executeOn: UpdateAgentAgentsResponse200ApplicationJSONExecuteOn;
1693
1567
  };
1694
- export type UpdateAgentResponseBodyFallbacks = {
1568
+ export type UpdateAgentFallbacks = {
1695
1569
  /**
1696
1570
  * Fallback model identifier
1697
1571
  */
1698
1572
  model: string;
1699
1573
  };
1700
- export declare const UpdateAgentResponseBodyAgentsResponseType: {
1574
+ export declare const UpdateAgentAgentsType: {
1701
1575
  readonly ExactMatch: "exact_match";
1702
1576
  };
1703
- export type UpdateAgentResponseBodyAgentsResponseType = ClosedEnum<typeof UpdateAgentResponseBodyAgentsResponseType>;
1577
+ export type UpdateAgentAgentsType = ClosedEnum<typeof UpdateAgentAgentsType>;
1704
1578
  /**
1705
1579
  * Cache configuration for the request.
1706
1580
  */
1707
- export type UpdateAgentResponseBodyCache = {
1581
+ export type UpdateAgentCache = {
1708
1582
  /**
1709
1583
  * Time to live for cached responses in seconds. Maximum 259200 seconds (3 days).
1710
1584
  */
1711
1585
  ttl: number;
1712
- type: UpdateAgentResponseBodyAgentsResponseType;
1586
+ type: UpdateAgentAgentsType;
1713
1587
  };
1714
1588
  export declare const UpdateAgentLoadBalancerAgentsResponseType: {
1715
1589
  readonly WeightBased: "weight_based";
@@ -1732,11 +1606,11 @@ export type UpdateAgentLoadBalancerAgentsResponse1 = {
1732
1606
  /**
1733
1607
  * Load balancer configuration for the request.
1734
1608
  */
1735
- export type UpdateAgentResponseBodyLoadBalancer = UpdateAgentLoadBalancerAgentsResponse1;
1609
+ export type UpdateAgentLoadBalancer = UpdateAgentLoadBalancerAgentsResponse1;
1736
1610
  /**
1737
1611
  * Timeout configuration to apply to the request. If the request exceeds the timeout, it will be retried or fallback to the next model if configured.
1738
1612
  */
1739
- export type UpdateAgentResponseBodyTimeout = {
1613
+ export type UpdateAgentTimeout = {
1740
1614
  /**
1741
1615
  * Timeout value in milliseconds
1742
1616
  */
@@ -1745,7 +1619,7 @@ export type UpdateAgentResponseBodyTimeout = {
1745
1619
  /**
1746
1620
  * Model behavior parameters (snake_case) stored as part of the agent configuration. These become the default parameters used when the agent is executed. Commonly used: temperature (0-1, controls randomness), max_completion_tokens (response length), top_p (nucleus sampling). Advanced: frequency_penalty, presence_penalty, response_format (JSON/structured output), reasoning_effort (for o1/thinking models), seed (reproducibility), stop sequences. Model-specific support varies. Runtime parameters in agent execution requests can override these defaults.
1747
1621
  */
1748
- export type UpdateAgentResponseBodyParameters = {
1622
+ export type UpdateAgentParameters = {
1749
1623
  /**
1750
1624
  * The name to display on the trace. If not specified, the default system name will be used.
1751
1625
  */
@@ -1786,7 +1660,7 @@ export type UpdateAgentResponseBodyParameters = {
1786
1660
  *
1787
1661
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
1788
1662
  */
1789
- reasoningEffort?: UpdateAgentResponseBodyReasoningEffort | undefined;
1663
+ reasoningEffort?: UpdateAgentReasoningEffort | undefined;
1790
1664
  /**
1791
1665
  * Adjusts response verbosity. Lower levels yield shorter answers.
1792
1666
  */
@@ -1823,19 +1697,19 @@ export type UpdateAgentResponseBodyParameters = {
1823
1697
  /**
1824
1698
  * Output types that you would like the model to generate. Most models are capable of generating text, which is the default: ["text"]. The gpt-4o-audio-preview model can also be used to generate audio. To request that this model generate both text and audio responses, you can use: ["text", "audio"].
1825
1699
  */
1826
- modalities?: Array<UpdateAgentResponseBodyModalities> | null | undefined;
1700
+ modalities?: Array<UpdateAgentModalities> | null | undefined;
1827
1701
  /**
1828
1702
  * A list of guardrails to apply to the request.
1829
1703
  */
1830
- guardrails?: Array<UpdateAgentResponseBodyAgentsGuardrails> | undefined;
1704
+ guardrails?: Array<UpdateAgentAgentsResponseGuardrails> | undefined;
1831
1705
  /**
1832
1706
  * Array of fallback models to use if primary model fails
1833
1707
  */
1834
- fallbacks?: Array<UpdateAgentResponseBodyFallbacks> | undefined;
1708
+ fallbacks?: Array<UpdateAgentFallbacks> | undefined;
1835
1709
  /**
1836
1710
  * Cache configuration for the request.
1837
1711
  */
1838
- cache?: UpdateAgentResponseBodyCache | undefined;
1712
+ cache?: UpdateAgentCache | undefined;
1839
1713
  /**
1840
1714
  * Load balancer configuration for the request.
1841
1715
  */
@@ -1843,12 +1717,12 @@ export type UpdateAgentResponseBodyParameters = {
1843
1717
  /**
1844
1718
  * Timeout configuration to apply to the request. If the request exceeds the timeout, it will be retried or fallback to the next model if configured.
1845
1719
  */
1846
- timeout?: UpdateAgentResponseBodyTimeout | undefined;
1720
+ timeout?: UpdateAgentTimeout | undefined;
1847
1721
  };
1848
1722
  /**
1849
1723
  * Retry configuration for model requests. Allows customizing retry count (1-5) and HTTP status codes that trigger retries. Default codes: [429]. Common codes: 500 (internal error), 429 (rate limit), 502/503/504 (gateway errors).
1850
1724
  */
1851
- export type UpdateAgentResponseBodyRetry = {
1725
+ export type UpdateAgentRetry = {
1852
1726
  /**
1853
1727
  * Number of retry attempts (1-5)
1854
1728
  */
@@ -2199,8 +2073,8 @@ export type UpdateAgentFallbackModelConfigurationAgents2 = {
2199
2073
  /**
2200
2074
  * Fallback model for automatic failover when primary model request fails. Supports optional parameter overrides. Can be a simple model ID string or a configuration object with model-specific parameters. Fallbacks are tried in order.
2201
2075
  */
2202
- export type UpdateAgentResponseBodyFallbackModelConfiguration = UpdateAgentFallbackModelConfigurationAgents2 | string;
2203
- export type UpdateAgentResponseBodyModel = {
2076
+ export type UpdateAgentAgentsFallbackModelConfiguration = UpdateAgentFallbackModelConfigurationAgents2 | string;
2077
+ export type UpdateAgentModel = {
2204
2078
  /**
2205
2079
  * The database ID of the primary model
2206
2080
  */
@@ -2212,17 +2086,50 @@ export type UpdateAgentResponseBodyModel = {
2212
2086
  /**
2213
2087
  * Model behavior parameters (snake_case) stored as part of the agent configuration. These become the default parameters used when the agent is executed. Commonly used: temperature (0-1, controls randomness), max_completion_tokens (response length), top_p (nucleus sampling). Advanced: frequency_penalty, presence_penalty, response_format (JSON/structured output), reasoning_effort (for o1/thinking models), seed (reproducibility), stop sequences. Model-specific support varies. Runtime parameters in agent execution requests can override these defaults.
2214
2088
  */
2215
- parameters?: UpdateAgentResponseBodyParameters | undefined;
2089
+ parameters?: UpdateAgentParameters | undefined;
2216
2090
  /**
2217
2091
  * Retry configuration for model requests. Allows customizing retry count (1-5) and HTTP status codes that trigger retries. Default codes: [429]. Common codes: 500 (internal error), 429 (rate limit), 502/503/504 (gateway errors).
2218
2092
  */
2219
- retry?: UpdateAgentResponseBodyRetry | undefined;
2093
+ retry?: UpdateAgentRetry | undefined;
2220
2094
  /**
2221
2095
  * Optional array of fallback models (string IDs or config objects) that will be used automatically in order if the primary model fails
2222
2096
  */
2223
2097
  fallbackModels?: Array<UpdateAgentFallbackModelConfigurationAgents2 | string> | null | undefined;
2224
2098
  };
2225
- export type UpdateAgentResponseBody1 = {
2099
+ export type UpdateAgentAgentsHeaders = {
2100
+ /**
2101
+ * Header value. **Update behavior**: Provide empty string ("") to preserve existing encrypted value without re-entering credentials. Provide new value to rotate. Omit header entirely to remove.
2102
+ */
2103
+ value: string;
2104
+ encrypted: boolean;
2105
+ };
2106
+ /**
2107
+ * A2A configuration with agent endpoint and authentication. Only present for A2A agents.
2108
+ */
2109
+ export type UpdateAgentA2AAgentConfiguration = {
2110
+ /**
2111
+ * The A2A agent endpoint URL (e.g., https://example.com/agent/a2a)
2112
+ */
2113
+ agentUrl: string;
2114
+ /**
2115
+ * Optional explicit URL to fetch agent card. Defaults to {agent_url}/card if not provided
2116
+ */
2117
+ cardUrl?: string | undefined;
2118
+ /**
2119
+ * HTTP headers for A2A agent requests with encryption support (max 20 headers). **Update behavior**: Empty string values preserve existing encrypted headers, allowing partial updates without credential re-entry.
2120
+ */
2121
+ headers?: {
2122
+ [k: string]: UpdateAgentAgentsHeaders;
2123
+ } | undefined;
2124
+ /**
2125
+ * Cached agent card from discovery. Refreshed periodically.
2126
+ */
2127
+ cachedCard?: any | undefined;
2128
+ };
2129
+ /**
2130
+ * Agent configuration successfully updated. Returns the complete updated agent manifest reflecting all changes made.
2131
+ */
2132
+ export type UpdateAgentResponseBody = {
2226
2133
  id: string;
2227
2134
  /**
2228
2135
  * Unique identifier for the agent within the workspace
@@ -2237,7 +2144,7 @@ export type UpdateAgentResponseBody1 = {
2237
2144
  /**
2238
2145
  * The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
2239
2146
  */
2240
- status: UpdateAgentResponseBodyStatus;
2147
+ status: UpdateAgentStatus;
2241
2148
  versionHash?: string | undefined;
2242
2149
  /**
2243
2150
  * Entity storage path in the format: `project/folder/subfolder/...`
@@ -2256,8 +2163,8 @@ export type UpdateAgentResponseBody1 = {
2256
2163
  /**
2257
2164
  * The agents that are accessible to this orchestrator. The main agent can hand off to these agents to perform tasks.
2258
2165
  */
2259
- teamOfAgents?: Array<UpdateAgentResponseBodyTeamOfAgents> | undefined;
2260
- metrics?: UpdateAgentResponseBodyMetrics | undefined;
2166
+ teamOfAgents?: Array<UpdateAgentAgentsTeamOfAgents> | undefined;
2167
+ metrics?: UpdateAgentMetrics | undefined;
2261
2168
  /**
2262
2169
  * Extracted variables from agent instructions
2263
2170
  */
@@ -2267,23 +2174,23 @@ export type UpdateAgentResponseBody1 = {
2267
2174
  /**
2268
2175
  * Agent knowledge bases reference
2269
2176
  */
2270
- knowledgeBases?: Array<UpdateAgentResponseBodyKnowledgeBases> | undefined;
2271
- source?: UpdateAgentResponseBodySource | undefined;
2177
+ knowledgeBases?: Array<UpdateAgentAgentsKnowledgeBases> | undefined;
2178
+ source?: UpdateAgentSource | undefined;
2272
2179
  /**
2273
- * Orquesta-managed agent
2180
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
2274
2181
  */
2275
- type: "internal";
2182
+ type: UpdateAgentType;
2276
2183
  role: string;
2277
2184
  description: string;
2278
2185
  systemPrompt?: string | undefined;
2279
2186
  instructions: string;
2280
- settings?: UpdateAgentResponseBodySettings | undefined;
2281
- model: UpdateAgentResponseBodyModel;
2187
+ settings?: UpdateAgentAgentsSettings | undefined;
2188
+ model: UpdateAgentModel;
2189
+ /**
2190
+ * A2A configuration with agent endpoint and authentication. Only present for A2A agents.
2191
+ */
2192
+ a2a?: UpdateAgentA2AAgentConfiguration | undefined;
2282
2193
  };
2283
- /**
2284
- * Agent configuration successfully updated. Returns the complete updated agent manifest reflecting all changes made.
2285
- */
2286
- export type UpdateAgentResponseBody = UpdateAgentResponseBody1 | UpdateAgentResponseBody2;
2287
2194
  /** @internal */
2288
2195
  export type UpdateAgentResponseFormatAgentsJsonSchema$Outbound = {
2289
2196
  description?: string | undefined;
@@ -2954,61 +2861,41 @@ export type UpdateAgentRequest$Outbound = {
2954
2861
  export declare const UpdateAgentRequest$outboundSchema: z.ZodType<UpdateAgentRequest$Outbound, z.ZodTypeDef, UpdateAgentRequest>;
2955
2862
  export declare function updateAgentRequestToJSON(updateAgentRequest: UpdateAgentRequest): string;
2956
2863
  /** @internal */
2957
- export declare const UpdateAgentResponseBodyAgentsStatus$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyAgentsStatus>;
2958
- /** @internal */
2959
- export declare const UpdateAgentResponseBodyAgentsTeamOfAgents$inboundSchema: z.ZodType<UpdateAgentResponseBodyAgentsTeamOfAgents, z.ZodTypeDef, unknown>;
2960
- export declare function updateAgentResponseBodyAgentsTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyAgentsTeamOfAgents, SDKValidationError>;
2961
- /** @internal */
2962
- export declare const UpdateAgentResponseBodyAgentsMetrics$inboundSchema: z.ZodType<UpdateAgentResponseBodyAgentsMetrics, z.ZodTypeDef, unknown>;
2963
- export declare function updateAgentResponseBodyAgentsMetricsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyAgentsMetrics, SDKValidationError>;
2964
- /** @internal */
2965
- export declare const UpdateAgentResponseBodyAgentsKnowledgeBases$inboundSchema: z.ZodType<UpdateAgentResponseBodyAgentsKnowledgeBases, z.ZodTypeDef, unknown>;
2966
- export declare function updateAgentResponseBodyAgentsKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyAgentsKnowledgeBases, SDKValidationError>;
2967
- /** @internal */
2968
- export declare const UpdateAgentResponseBodyAgentsSource$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyAgentsSource>;
2864
+ export declare const UpdateAgentStatus$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentStatus>;
2969
2865
  /** @internal */
2970
- export declare const UpdateAgentResponseBodyHeaders$inboundSchema: z.ZodType<UpdateAgentResponseBodyHeaders, z.ZodTypeDef, unknown>;
2971
- export declare function updateAgentResponseBodyHeadersFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyHeaders, SDKValidationError>;
2866
+ export declare const UpdateAgentAgentsTeamOfAgents$inboundSchema: z.ZodType<UpdateAgentAgentsTeamOfAgents, z.ZodTypeDef, unknown>;
2867
+ export declare function updateAgentAgentsTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsTeamOfAgents, SDKValidationError>;
2972
2868
  /** @internal */
2973
- export declare const UpdateAgentResponseBodyA2AAgentConfiguration$inboundSchema: z.ZodType<UpdateAgentResponseBodyA2AAgentConfiguration, z.ZodTypeDef, unknown>;
2974
- export declare function updateAgentResponseBodyA2AAgentConfigurationFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyA2AAgentConfiguration, SDKValidationError>;
2869
+ export declare const UpdateAgentMetrics$inboundSchema: z.ZodType<UpdateAgentMetrics, z.ZodTypeDef, unknown>;
2870
+ export declare function updateAgentMetricsFromJSON(jsonString: string): SafeParseResult<UpdateAgentMetrics, SDKValidationError>;
2975
2871
  /** @internal */
2976
- export declare const UpdateAgentResponseBody2$inboundSchema: z.ZodType<UpdateAgentResponseBody2, z.ZodTypeDef, unknown>;
2977
- export declare function updateAgentResponseBody2FromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBody2, SDKValidationError>;
2872
+ export declare const UpdateAgentAgentsKnowledgeBases$inboundSchema: z.ZodType<UpdateAgentAgentsKnowledgeBases, z.ZodTypeDef, unknown>;
2873
+ export declare function updateAgentAgentsKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsKnowledgeBases, SDKValidationError>;
2978
2874
  /** @internal */
2979
- export declare const UpdateAgentResponseBodyStatus$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyStatus>;
2875
+ export declare const UpdateAgentSource$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentSource>;
2980
2876
  /** @internal */
2981
- export declare const UpdateAgentResponseBodyTeamOfAgents$inboundSchema: z.ZodType<UpdateAgentResponseBodyTeamOfAgents, z.ZodTypeDef, unknown>;
2982
- export declare function updateAgentResponseBodyTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyTeamOfAgents, SDKValidationError>;
2877
+ export declare const UpdateAgentType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentType>;
2983
2878
  /** @internal */
2984
- export declare const UpdateAgentResponseBodyMetrics$inboundSchema: z.ZodType<UpdateAgentResponseBodyMetrics, z.ZodTypeDef, unknown>;
2985
- export declare function updateAgentResponseBodyMetricsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyMetrics, SDKValidationError>;
2879
+ export declare const UpdateAgentAgentsToolApprovalRequired$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentsToolApprovalRequired>;
2986
2880
  /** @internal */
2987
- export declare const UpdateAgentResponseBodyKnowledgeBases$inboundSchema: z.ZodType<UpdateAgentResponseBodyKnowledgeBases, z.ZodTypeDef, unknown>;
2988
- export declare function updateAgentResponseBodyKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyKnowledgeBases, SDKValidationError>;
2881
+ export declare const UpdateAgentConditions$inboundSchema: z.ZodType<UpdateAgentConditions, z.ZodTypeDef, unknown>;
2882
+ export declare function updateAgentConditionsFromJSON(jsonString: string): SafeParseResult<UpdateAgentConditions, SDKValidationError>;
2989
2883
  /** @internal */
2990
- export declare const UpdateAgentResponseBodySource$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodySource>;
2884
+ export declare const UpdateAgentTools$inboundSchema: z.ZodType<UpdateAgentTools, z.ZodTypeDef, unknown>;
2885
+ export declare function updateAgentToolsFromJSON(jsonString: string): SafeParseResult<UpdateAgentTools, SDKValidationError>;
2991
2886
  /** @internal */
2992
- export declare const UpdateAgentResponseBodyToolApprovalRequired$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyToolApprovalRequired>;
2887
+ export declare const UpdateAgentAgentsResponseExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentsResponseExecuteOn>;
2993
2888
  /** @internal */
2994
- export declare const UpdateAgentResponseBodyConditions$inboundSchema: z.ZodType<UpdateAgentResponseBodyConditions, z.ZodTypeDef, unknown>;
2995
- export declare function updateAgentResponseBodyConditionsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyConditions, SDKValidationError>;
2889
+ export declare const UpdateAgentAgentsEvaluators$inboundSchema: z.ZodType<UpdateAgentAgentsEvaluators, z.ZodTypeDef, unknown>;
2890
+ export declare function updateAgentAgentsEvaluatorsFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsEvaluators, SDKValidationError>;
2996
2891
  /** @internal */
2997
- export declare const UpdateAgentResponseBodyTools$inboundSchema: z.ZodType<UpdateAgentResponseBodyTools, z.ZodTypeDef, unknown>;
2998
- export declare function updateAgentResponseBodyToolsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyTools, SDKValidationError>;
2892
+ export declare const UpdateAgentAgentsResponse200ExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentsResponse200ExecuteOn>;
2999
2893
  /** @internal */
3000
- export declare const UpdateAgentResponseBodyExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyExecuteOn>;
2894
+ export declare const UpdateAgentAgentsGuardrails$inboundSchema: z.ZodType<UpdateAgentAgentsGuardrails, z.ZodTypeDef, unknown>;
2895
+ export declare function updateAgentAgentsGuardrailsFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsGuardrails, SDKValidationError>;
3001
2896
  /** @internal */
3002
- export declare const UpdateAgentResponseBodyEvaluators$inboundSchema: z.ZodType<UpdateAgentResponseBodyEvaluators, z.ZodTypeDef, unknown>;
3003
- export declare function updateAgentResponseBodyEvaluatorsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyEvaluators, SDKValidationError>;
3004
- /** @internal */
3005
- export declare const UpdateAgentResponseBodyAgentsExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyAgentsExecuteOn>;
3006
- /** @internal */
3007
- export declare const UpdateAgentResponseBodyGuardrails$inboundSchema: z.ZodType<UpdateAgentResponseBodyGuardrails, z.ZodTypeDef, unknown>;
3008
- export declare function updateAgentResponseBodyGuardrailsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyGuardrails, SDKValidationError>;
3009
- /** @internal */
3010
- export declare const UpdateAgentResponseBodySettings$inboundSchema: z.ZodType<UpdateAgentResponseBodySettings, z.ZodTypeDef, unknown>;
3011
- export declare function updateAgentResponseBodySettingsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodySettings, SDKValidationError>;
2897
+ export declare const UpdateAgentAgentsSettings$inboundSchema: z.ZodType<UpdateAgentAgentsSettings, z.ZodTypeDef, unknown>;
2898
+ export declare function updateAgentAgentsSettingsFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsSettings, SDKValidationError>;
3012
2899
  /** @internal */
3013
2900
  export declare const UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema: z.ZodType<UpdateAgentResponseFormatAgentsResponseJsonSchema, z.ZodTypeDef, unknown>;
3014
2901
  export declare function updateAgentResponseFormatAgentsResponseJsonSchemaFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseFormatAgentsResponseJsonSchema, SDKValidationError>;
@@ -3022,16 +2909,16 @@ export declare function updateAgentResponseFormatAgentsResponseJSONObjectFromJSO
3022
2909
  export declare const UpdateAgentResponseFormatAgentsResponseText$inboundSchema: z.ZodType<UpdateAgentResponseFormatAgentsResponseText, z.ZodTypeDef, unknown>;
3023
2910
  export declare function updateAgentResponseFormatAgentsResponseTextFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseFormatAgentsResponseText, SDKValidationError>;
3024
2911
  /** @internal */
3025
- export declare const UpdateAgentResponseBodyResponseFormat$inboundSchema: z.ZodType<UpdateAgentResponseBodyResponseFormat, z.ZodTypeDef, unknown>;
3026
- export declare function updateAgentResponseBodyResponseFormatFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyResponseFormat, SDKValidationError>;
2912
+ export declare const UpdateAgentResponseFormat$inboundSchema: z.ZodType<UpdateAgentResponseFormat, z.ZodTypeDef, unknown>;
2913
+ export declare function updateAgentResponseFormatFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseFormat, SDKValidationError>;
3027
2914
  /** @internal */
3028
- export declare const UpdateAgentResponseBodyReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyReasoningEffort>;
2915
+ export declare const UpdateAgentReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentReasoningEffort>;
3029
2916
  /** @internal */
3030
- export declare const UpdateAgentResponseBodyStop$inboundSchema: z.ZodType<UpdateAgentResponseBodyStop, z.ZodTypeDef, unknown>;
3031
- export declare function updateAgentResponseBodyStopFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyStop, SDKValidationError>;
2917
+ export declare const UpdateAgentStop$inboundSchema: z.ZodType<UpdateAgentStop, z.ZodTypeDef, unknown>;
2918
+ export declare function updateAgentStopFromJSON(jsonString: string): SafeParseResult<UpdateAgentStop, SDKValidationError>;
3032
2919
  /** @internal */
3033
- export declare const UpdateAgentResponseBodyThinking$inboundSchema: z.ZodType<UpdateAgentResponseBodyThinking, z.ZodTypeDef, unknown>;
3034
- export declare function updateAgentResponseBodyThinkingFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyThinking, SDKValidationError>;
2920
+ export declare const UpdateAgentThinking$inboundSchema: z.ZodType<UpdateAgentThinking, z.ZodTypeDef, unknown>;
2921
+ export declare function updateAgentThinkingFromJSON(jsonString: string): SafeParseResult<UpdateAgentThinking, SDKValidationError>;
3035
2922
  /** @internal */
3036
2923
  export declare const UpdateAgentToolChoiceAgentsResponseType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentToolChoiceAgentsResponseType>;
3037
2924
  /** @internal */
@@ -3043,28 +2930,28 @@ export declare function updateAgentToolChoiceAgentsResponse2FromJSON(jsonString:
3043
2930
  /** @internal */
3044
2931
  export declare const UpdateAgentToolChoiceAgentsResponse1$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentToolChoiceAgentsResponse1>;
3045
2932
  /** @internal */
3046
- export declare const UpdateAgentResponseBodyToolChoice$inboundSchema: z.ZodType<UpdateAgentResponseBodyToolChoice, z.ZodTypeDef, unknown>;
3047
- export declare function updateAgentResponseBodyToolChoiceFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyToolChoice, SDKValidationError>;
2933
+ export declare const UpdateAgentToolChoice$inboundSchema: z.ZodType<UpdateAgentToolChoice, z.ZodTypeDef, unknown>;
2934
+ export declare function updateAgentToolChoiceFromJSON(jsonString: string): SafeParseResult<UpdateAgentToolChoice, SDKValidationError>;
3048
2935
  /** @internal */
3049
- export declare const UpdateAgentResponseBodyModalities$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyModalities>;
2936
+ export declare const UpdateAgentModalities$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentModalities>;
3050
2937
  /** @internal */
3051
2938
  export declare const UpdateAgentIdAgentsResponse1$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentIdAgentsResponse1>;
3052
2939
  /** @internal */
3053
- export declare const UpdateAgentResponseBodyId$inboundSchema: z.ZodType<UpdateAgentResponseBodyId, z.ZodTypeDef, unknown>;
3054
- export declare function updateAgentResponseBodyIdFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyId, SDKValidationError>;
2940
+ export declare const UpdateAgentId$inboundSchema: z.ZodType<UpdateAgentId, z.ZodTypeDef, unknown>;
2941
+ export declare function updateAgentIdFromJSON(jsonString: string): SafeParseResult<UpdateAgentId, SDKValidationError>;
3055
2942
  /** @internal */
3056
- export declare const UpdateAgentResponseBodyAgentsResponseExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyAgentsResponseExecuteOn>;
2943
+ export declare const UpdateAgentAgentsResponse200ApplicationJSONExecuteOn$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentsResponse200ApplicationJSONExecuteOn>;
3057
2944
  /** @internal */
3058
- export declare const UpdateAgentResponseBodyAgentsGuardrails$inboundSchema: z.ZodType<UpdateAgentResponseBodyAgentsGuardrails, z.ZodTypeDef, unknown>;
3059
- export declare function updateAgentResponseBodyAgentsGuardrailsFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyAgentsGuardrails, SDKValidationError>;
2945
+ export declare const UpdateAgentAgentsResponseGuardrails$inboundSchema: z.ZodType<UpdateAgentAgentsResponseGuardrails, z.ZodTypeDef, unknown>;
2946
+ export declare function updateAgentAgentsResponseGuardrailsFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsResponseGuardrails, SDKValidationError>;
3060
2947
  /** @internal */
3061
- export declare const UpdateAgentResponseBodyFallbacks$inboundSchema: z.ZodType<UpdateAgentResponseBodyFallbacks, z.ZodTypeDef, unknown>;
3062
- export declare function updateAgentResponseBodyFallbacksFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyFallbacks, SDKValidationError>;
2948
+ export declare const UpdateAgentFallbacks$inboundSchema: z.ZodType<UpdateAgentFallbacks, z.ZodTypeDef, unknown>;
2949
+ export declare function updateAgentFallbacksFromJSON(jsonString: string): SafeParseResult<UpdateAgentFallbacks, SDKValidationError>;
3063
2950
  /** @internal */
3064
- export declare const UpdateAgentResponseBodyAgentsResponseType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentResponseBodyAgentsResponseType>;
2951
+ export declare const UpdateAgentAgentsType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentsType>;
3065
2952
  /** @internal */
3066
- export declare const UpdateAgentResponseBodyCache$inboundSchema: z.ZodType<UpdateAgentResponseBodyCache, z.ZodTypeDef, unknown>;
3067
- export declare function updateAgentResponseBodyCacheFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyCache, SDKValidationError>;
2953
+ export declare const UpdateAgentCache$inboundSchema: z.ZodType<UpdateAgentCache, z.ZodTypeDef, unknown>;
2954
+ export declare function updateAgentCacheFromJSON(jsonString: string): SafeParseResult<UpdateAgentCache, SDKValidationError>;
3068
2955
  /** @internal */
3069
2956
  export declare const UpdateAgentLoadBalancerAgentsResponseType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentLoadBalancerAgentsResponseType>;
3070
2957
  /** @internal */
@@ -3074,17 +2961,17 @@ export declare function updateAgentLoadBalancerAgentsResponseModelsFromJSON(json
3074
2961
  export declare const UpdateAgentLoadBalancerAgentsResponse1$inboundSchema: z.ZodType<UpdateAgentLoadBalancerAgentsResponse1, z.ZodTypeDef, unknown>;
3075
2962
  export declare function updateAgentLoadBalancerAgentsResponse1FromJSON(jsonString: string): SafeParseResult<UpdateAgentLoadBalancerAgentsResponse1, SDKValidationError>;
3076
2963
  /** @internal */
3077
- export declare const UpdateAgentResponseBodyLoadBalancer$inboundSchema: z.ZodType<UpdateAgentResponseBodyLoadBalancer, z.ZodTypeDef, unknown>;
3078
- export declare function updateAgentResponseBodyLoadBalancerFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyLoadBalancer, SDKValidationError>;
2964
+ export declare const UpdateAgentLoadBalancer$inboundSchema: z.ZodType<UpdateAgentLoadBalancer, z.ZodTypeDef, unknown>;
2965
+ export declare function updateAgentLoadBalancerFromJSON(jsonString: string): SafeParseResult<UpdateAgentLoadBalancer, SDKValidationError>;
3079
2966
  /** @internal */
3080
- export declare const UpdateAgentResponseBodyTimeout$inboundSchema: z.ZodType<UpdateAgentResponseBodyTimeout, z.ZodTypeDef, unknown>;
3081
- export declare function updateAgentResponseBodyTimeoutFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyTimeout, SDKValidationError>;
2967
+ export declare const UpdateAgentTimeout$inboundSchema: z.ZodType<UpdateAgentTimeout, z.ZodTypeDef, unknown>;
2968
+ export declare function updateAgentTimeoutFromJSON(jsonString: string): SafeParseResult<UpdateAgentTimeout, SDKValidationError>;
3082
2969
  /** @internal */
3083
- export declare const UpdateAgentResponseBodyParameters$inboundSchema: z.ZodType<UpdateAgentResponseBodyParameters, z.ZodTypeDef, unknown>;
3084
- export declare function updateAgentResponseBodyParametersFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyParameters, SDKValidationError>;
2970
+ export declare const UpdateAgentParameters$inboundSchema: z.ZodType<UpdateAgentParameters, z.ZodTypeDef, unknown>;
2971
+ export declare function updateAgentParametersFromJSON(jsonString: string): SafeParseResult<UpdateAgentParameters, SDKValidationError>;
3085
2972
  /** @internal */
3086
- export declare const UpdateAgentResponseBodyRetry$inboundSchema: z.ZodType<UpdateAgentResponseBodyRetry, z.ZodTypeDef, unknown>;
3087
- export declare function updateAgentResponseBodyRetryFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyRetry, SDKValidationError>;
2973
+ export declare const UpdateAgentRetry$inboundSchema: z.ZodType<UpdateAgentRetry, z.ZodTypeDef, unknown>;
2974
+ export declare function updateAgentRetryFromJSON(jsonString: string): SafeParseResult<UpdateAgentRetry, SDKValidationError>;
3088
2975
  /** @internal */
3089
2976
  export declare const UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema: z.ZodType<UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema, z.ZodTypeDef, unknown>;
3090
2977
  export declare function updateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchemaFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema, SDKValidationError>;
@@ -3165,14 +3052,17 @@ export declare function updateAgentFallbackModelConfigurationAgentsRetryFromJSON
3165
3052
  export declare const UpdateAgentFallbackModelConfigurationAgents2$inboundSchema: z.ZodType<UpdateAgentFallbackModelConfigurationAgents2, z.ZodTypeDef, unknown>;
3166
3053
  export declare function updateAgentFallbackModelConfigurationAgents2FromJSON(jsonString: string): SafeParseResult<UpdateAgentFallbackModelConfigurationAgents2, SDKValidationError>;
3167
3054
  /** @internal */
3168
- export declare const UpdateAgentResponseBodyFallbackModelConfiguration$inboundSchema: z.ZodType<UpdateAgentResponseBodyFallbackModelConfiguration, z.ZodTypeDef, unknown>;
3169
- export declare function updateAgentResponseBodyFallbackModelConfigurationFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyFallbackModelConfiguration, SDKValidationError>;
3055
+ export declare const UpdateAgentAgentsFallbackModelConfiguration$inboundSchema: z.ZodType<UpdateAgentAgentsFallbackModelConfiguration, z.ZodTypeDef, unknown>;
3056
+ export declare function updateAgentAgentsFallbackModelConfigurationFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsFallbackModelConfiguration, SDKValidationError>;
3057
+ /** @internal */
3058
+ export declare const UpdateAgentModel$inboundSchema: z.ZodType<UpdateAgentModel, z.ZodTypeDef, unknown>;
3059
+ export declare function updateAgentModelFromJSON(jsonString: string): SafeParseResult<UpdateAgentModel, SDKValidationError>;
3170
3060
  /** @internal */
3171
- export declare const UpdateAgentResponseBodyModel$inboundSchema: z.ZodType<UpdateAgentResponseBodyModel, z.ZodTypeDef, unknown>;
3172
- export declare function updateAgentResponseBodyModelFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBodyModel, SDKValidationError>;
3061
+ export declare const UpdateAgentAgentsHeaders$inboundSchema: z.ZodType<UpdateAgentAgentsHeaders, z.ZodTypeDef, unknown>;
3062
+ export declare function updateAgentAgentsHeadersFromJSON(jsonString: string): SafeParseResult<UpdateAgentAgentsHeaders, SDKValidationError>;
3173
3063
  /** @internal */
3174
- export declare const UpdateAgentResponseBody1$inboundSchema: z.ZodType<UpdateAgentResponseBody1, z.ZodTypeDef, unknown>;
3175
- export declare function updateAgentResponseBody1FromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBody1, SDKValidationError>;
3064
+ export declare const UpdateAgentA2AAgentConfiguration$inboundSchema: z.ZodType<UpdateAgentA2AAgentConfiguration, z.ZodTypeDef, unknown>;
3065
+ export declare function updateAgentA2AAgentConfigurationFromJSON(jsonString: string): SafeParseResult<UpdateAgentA2AAgentConfiguration, SDKValidationError>;
3176
3066
  /** @internal */
3177
3067
  export declare const UpdateAgentResponseBody$inboundSchema: z.ZodType<UpdateAgentResponseBody, z.ZodTypeDef, unknown>;
3178
3068
  export declare function updateAgentResponseBodyFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseBody, SDKValidationError>;