@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
@@ -39,7 +39,7 @@ export type ListAgentsObject = ClosedEnum<typeof ListAgentsObject>;
39
39
  /**
40
40
  * 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.
41
41
  */
42
- export declare const ListAgentsDataStatus: {
42
+ export declare const ListAgentsStatus: {
43
43
  readonly Live: "live";
44
44
  readonly Draft: "draft";
45
45
  readonly Pending: "pending";
@@ -48,8 +48,8 @@ export declare const ListAgentsDataStatus: {
48
48
  /**
49
49
  * 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.
50
50
  */
51
- export type ListAgentsDataStatus = ClosedEnum<typeof ListAgentsDataStatus>;
52
- export type ListAgentsDataTeamOfAgents = {
51
+ export type ListAgentsStatus = ClosedEnum<typeof ListAgentsStatus>;
52
+ export type ListAgentsTeamOfAgents = {
53
53
  /**
54
54
  * The unique key of the agent within the workspace
55
55
  */
@@ -59,161 +59,36 @@ export type ListAgentsDataTeamOfAgents = {
59
59
  */
60
60
  role?: string | undefined;
61
61
  };
62
- export type ListAgentsDataMetrics = {
62
+ export type ListAgentsMetrics = {
63
63
  totalCost: number;
64
64
  };
65
- export type ListAgentsDataKnowledgeBases = {
65
+ export type ListAgentsKnowledgeBases = {
66
66
  /**
67
67
  * Unique identifier of the knowledge base to search
68
68
  */
69
69
  knowledgeId: string;
70
70
  };
71
- export declare const ListAgentsDataSource: {
71
+ export declare const ListAgentsSource: {
72
72
  readonly Internal: "internal";
73
73
  readonly External: "external";
74
74
  readonly Experiment: "experiment";
75
75
  };
76
- export type ListAgentsDataSource = ClosedEnum<typeof ListAgentsDataSource>;
77
- export type DataHeaders = {
78
- /**
79
- * 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.
80
- */
81
- value: string;
82
- encrypted: boolean;
83
- };
76
+ export type ListAgentsSource = ClosedEnum<typeof ListAgentsSource>;
84
77
  /**
85
- * A2A configuration with agent endpoint and authentication. External agents manage their own model/settings.
78
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
86
79
  */
87
- export type DataA2AAgentConfiguration = {
88
- /**
89
- * The A2A agent endpoint URL (e.g., https://example.com/agent/a2a)
90
- */
91
- agentUrl: string;
92
- /**
93
- * Optional explicit URL to fetch agent card. Defaults to {agent_url}/card if not provided
94
- */
95
- cardUrl?: string | undefined;
96
- /**
97
- * 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.
98
- */
99
- headers?: {
100
- [k: string]: DataHeaders;
101
- } | undefined;
102
- /**
103
- * Cached agent card from discovery. Refreshed periodically.
104
- */
105
- cachedCard?: any | undefined;
106
- };
107
- export type Data2 = {
108
- id: string;
109
- /**
110
- * Unique identifier for the agent within the workspace
111
- */
112
- key: string;
113
- displayName?: string | undefined;
114
- createdById?: string | null | undefined;
115
- updatedById?: string | null | undefined;
116
- created?: string | undefined;
117
- updated?: string | undefined;
118
- /**
119
- * 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.
120
- */
121
- status: ListAgentsDataStatus;
122
- versionHash?: string | undefined;
123
- /**
124
- * Entity storage path in the format: `project/folder/subfolder/...`
125
- *
126
- * @remarks
127
- *
128
- * The first element identifies the project, followed by nested folders (auto-created as needed).
129
- *
130
- * With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
131
- */
132
- path: string;
133
- /**
134
- * Array of memory store identifiers. Accepts both memory store IDs and keys.
135
- */
136
- memoryStores?: Array<string> | undefined;
137
- /**
138
- * The agents that are accessible to this orchestrator. The main agent can hand off to these agents to perform tasks.
139
- */
140
- teamOfAgents?: Array<ListAgentsDataTeamOfAgents> | undefined;
141
- metrics?: ListAgentsDataMetrics | undefined;
142
- /**
143
- * Extracted variables from agent instructions
144
- */
145
- variables?: {
146
- [k: string]: any;
147
- } | undefined;
148
- /**
149
- * Agent knowledge bases reference
150
- */
151
- knowledgeBases?: Array<ListAgentsDataKnowledgeBases> | undefined;
152
- source?: ListAgentsDataSource | undefined;
153
- /**
154
- * External A2A-compliant agent
155
- */
156
- type: "a2a";
157
- /**
158
- * Role fetched from agent card name or user-provided
159
- */
160
- role: string;
161
- /**
162
- * Description fetched from agent card or user-provided
163
- */
164
- description: string;
165
- systemPrompt?: string | undefined;
166
- /**
167
- * Instructions from agent card description or user-provided
168
- */
169
- instructions: string;
170
- /**
171
- * A2A configuration with agent endpoint and authentication. External agents manage their own model/settings.
172
- */
173
- a2a: DataA2AAgentConfiguration;
174
- };
175
- /**
176
- * 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.
177
- */
178
- export declare const DataStatus: {
179
- readonly Live: "live";
180
- readonly Draft: "draft";
181
- readonly Pending: "pending";
182
- readonly Published: "published";
80
+ export declare const ListAgentsType: {
81
+ readonly Internal: "internal";
82
+ readonly A2a: "a2a";
183
83
  };
184
84
  /**
185
- * 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.
85
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
186
86
  */
187
- export type DataStatus = ClosedEnum<typeof DataStatus>;
188
- export type DataTeamOfAgents = {
189
- /**
190
- * The unique key of the agent within the workspace
191
- */
192
- key: string;
193
- /**
194
- * 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.
195
- */
196
- role?: string | undefined;
197
- };
198
- export type DataMetrics = {
199
- totalCost: number;
200
- };
201
- export type DataKnowledgeBases = {
202
- /**
203
- * Unique identifier of the knowledge base to search
204
- */
205
- knowledgeId: string;
206
- };
207
- export declare const DataSource: {
208
- readonly Internal: "internal";
209
- readonly External: "external";
210
- readonly Experiment: "experiment";
211
- };
212
- export type DataSource = ClosedEnum<typeof DataSource>;
87
+ export type ListAgentsType = ClosedEnum<typeof ListAgentsType>;
213
88
  /**
214
89
  * 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.
215
90
  */
216
- export declare const DataToolApprovalRequired: {
91
+ export declare const ListAgentsToolApprovalRequired: {
217
92
  readonly All: "all";
218
93
  readonly RespectTool: "respect_tool";
219
94
  readonly None: "none";
@@ -221,8 +96,8 @@ export declare const DataToolApprovalRequired: {
221
96
  /**
222
97
  * 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.
223
98
  */
224
- export type DataToolApprovalRequired = ClosedEnum<typeof DataToolApprovalRequired>;
225
- export type DataConditions = {
99
+ export type ListAgentsToolApprovalRequired = ClosedEnum<typeof ListAgentsToolApprovalRequired>;
100
+ export type ListAgentsConditions = {
226
101
  /**
227
102
  * The argument of the tool call to evaluate
228
103
  */
@@ -236,7 +111,7 @@ export type DataConditions = {
236
111
  */
237
112
  value: string;
238
113
  };
239
- export type DataTools = {
114
+ export type ListAgentsTools = {
240
115
  /**
241
116
  * The id of the resource
242
117
  */
@@ -256,7 +131,7 @@ export type DataTools = {
256
131
  * Nested tool ID for MCP tools (identifies specific tool within MCP server)
257
132
  */
258
133
  toolId?: string | undefined;
259
- conditions?: Array<DataConditions> | undefined;
134
+ conditions?: Array<ListAgentsConditions> | undefined;
260
135
  /**
261
136
  * Tool execution timeout in seconds (default: 2 minutes, max: 10 minutes)
262
137
  */
@@ -265,15 +140,15 @@ export type DataTools = {
265
140
  /**
266
141
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
267
142
  */
268
- export declare const DataExecuteOn: {
143
+ export declare const ListAgentsExecuteOn: {
269
144
  readonly Input: "input";
270
145
  readonly Output: "output";
271
146
  };
272
147
  /**
273
148
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
274
149
  */
275
- export type DataExecuteOn = ClosedEnum<typeof DataExecuteOn>;
276
- export type DataEvaluators = {
150
+ export type ListAgentsExecuteOn = ClosedEnum<typeof ListAgentsExecuteOn>;
151
+ export type ListAgentsEvaluators = {
277
152
  /**
278
153
  * Unique key or identifier of the evaluator
279
154
  */
@@ -285,20 +160,20 @@ export type DataEvaluators = {
285
160
  /**
286
161
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
287
162
  */
288
- executeOn: DataExecuteOn;
163
+ executeOn: ListAgentsExecuteOn;
289
164
  };
290
165
  /**
291
166
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
292
167
  */
293
- export declare const ListAgentsDataExecuteOn: {
168
+ export declare const ListAgentsAgentsExecuteOn: {
294
169
  readonly Input: "input";
295
170
  readonly Output: "output";
296
171
  };
297
172
  /**
298
173
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
299
174
  */
300
- export type ListAgentsDataExecuteOn = ClosedEnum<typeof ListAgentsDataExecuteOn>;
301
- export type DataGuardrails = {
175
+ export type ListAgentsAgentsExecuteOn = ClosedEnum<typeof ListAgentsAgentsExecuteOn>;
176
+ export type ListAgentsGuardrails = {
302
177
  /**
303
178
  * Unique key or identifier of the evaluator
304
179
  */
@@ -310,9 +185,9 @@ export type DataGuardrails = {
310
185
  /**
311
186
  * Determines whether the evaluator runs on the agent input (user message) or output (agent response).
312
187
  */
313
- executeOn: ListAgentsDataExecuteOn;
188
+ executeOn: ListAgentsAgentsExecuteOn;
314
189
  };
315
- export type DataSettings = {
190
+ export type ListAgentsSettings = {
316
191
  /**
317
192
  * Maximum iterations(llm calls) before the agent will stop executing.
318
193
  */
@@ -328,16 +203,16 @@ export type DataSettings = {
328
203
  /**
329
204
  * 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.
330
205
  */
331
- toolApprovalRequired: DataToolApprovalRequired;
332
- tools?: Array<DataTools> | undefined;
206
+ toolApprovalRequired: ListAgentsToolApprovalRequired;
207
+ tools?: Array<ListAgentsTools> | undefined;
333
208
  /**
334
209
  * Configuration for an evaluator applied to the agent
335
210
  */
336
- evaluators?: Array<DataEvaluators> | undefined;
211
+ evaluators?: Array<ListAgentsEvaluators> | undefined;
337
212
  /**
338
213
  * Configuration for a guardrail applied to the agent
339
214
  */
340
- guardrails?: Array<DataGuardrails> | undefined;
215
+ guardrails?: Array<ListAgentsGuardrails> | undefined;
341
216
  };
342
217
  export type ListAgentsResponseFormatJsonSchema = {
343
218
  /**
@@ -385,7 +260,7 @@ export type ListAgentsResponseFormatText = {
385
260
  /**
386
261
  * An object specifying the format that the model must output
387
262
  */
388
- export type DataResponseFormat = ListAgentsResponseFormatText | ListAgentsResponseFormatJSONObject | ListAgentsResponseFormatAgentsJSONSchema;
263
+ export type ListAgentsResponseFormat = ListAgentsResponseFormatText | ListAgentsResponseFormatJSONObject | ListAgentsResponseFormatAgentsJSONSchema;
389
264
  /**
390
265
  * 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.
391
266
  *
@@ -398,7 +273,7 @@ export type DataResponseFormat = ListAgentsResponseFormatText | ListAgentsRespon
398
273
  *
399
274
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
400
275
  */
401
- export declare const DataReasoningEffort: {
276
+ export declare const ListAgentsReasoningEffort: {
402
277
  readonly None: "none";
403
278
  readonly Minimal: "minimal";
404
279
  readonly Low: "low";
@@ -418,12 +293,12 @@ export declare const DataReasoningEffort: {
418
293
  *
419
294
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
420
295
  */
421
- export type DataReasoningEffort = ClosedEnum<typeof DataReasoningEffort>;
296
+ export type ListAgentsReasoningEffort = ClosedEnum<typeof ListAgentsReasoningEffort>;
422
297
  /**
423
298
  * Up to 4 sequences where the API will stop generating further tokens.
424
299
  */
425
- export type DataStop = string | Array<string>;
426
- export type DataThinking = components.ThinkingConfigDisabledSchema | components.ThinkingConfigEnabledSchema;
300
+ export type ListAgentsStop = string | Array<string>;
301
+ export type ListAgentsThinking = components.ThinkingConfigDisabledSchema | components.ThinkingConfigEnabledSchema;
427
302
  /**
428
303
  * The type of the tool. Currently, only function is supported.
429
304
  */
@@ -456,12 +331,12 @@ export type ListAgentsToolChoice1 = ClosedEnum<typeof ListAgentsToolChoice1>;
456
331
  /**
457
332
  * Controls which (if any) tool is called by the model.
458
333
  */
459
- export type DataToolChoice = ListAgentsToolChoice2 | ListAgentsToolChoice1;
460
- export declare const DataModalities: {
334
+ export type ListAgentsToolChoice = ListAgentsToolChoice2 | ListAgentsToolChoice1;
335
+ export declare const ListAgentsModalities: {
461
336
  readonly Text: "text";
462
337
  readonly Audio: "audio";
463
338
  };
464
- export type DataModalities = ClosedEnum<typeof DataModalities>;
339
+ export type ListAgentsModalities = ClosedEnum<typeof ListAgentsModalities>;
465
340
  /**
466
341
  * The key of the guardrail.
467
342
  */
@@ -474,44 +349,44 @@ export declare const ListAgentsId1: {
474
349
  * The key of the guardrail.
475
350
  */
476
351
  export type ListAgentsId1 = ClosedEnum<typeof ListAgentsId1>;
477
- export type DataId = ListAgentsId1 | string;
352
+ export type ListAgentsId = ListAgentsId1 | string;
478
353
  /**
479
354
  * Determines whether the guardrail runs on the input (user message) or output (model response).
480
355
  */
481
- export declare const ListAgentsDataAgentsExecuteOn: {
356
+ export declare const ListAgentsAgentsResponseExecuteOn: {
482
357
  readonly Input: "input";
483
358
  readonly Output: "output";
484
359
  };
485
360
  /**
486
361
  * Determines whether the guardrail runs on the input (user message) or output (model response).
487
362
  */
488
- export type ListAgentsDataAgentsExecuteOn = ClosedEnum<typeof ListAgentsDataAgentsExecuteOn>;
489
- export type ListAgentsDataGuardrails = {
363
+ export type ListAgentsAgentsResponseExecuteOn = ClosedEnum<typeof ListAgentsAgentsResponseExecuteOn>;
364
+ export type ListAgentsAgentsGuardrails = {
490
365
  id: ListAgentsId1 | string;
491
366
  /**
492
367
  * Determines whether the guardrail runs on the input (user message) or output (model response).
493
368
  */
494
- executeOn: ListAgentsDataAgentsExecuteOn;
369
+ executeOn: ListAgentsAgentsResponseExecuteOn;
495
370
  };
496
- export type DataFallbacks = {
371
+ export type ListAgentsFallbacks = {
497
372
  /**
498
373
  * Fallback model identifier
499
374
  */
500
375
  model: string;
501
376
  };
502
- export declare const ListAgentsDataAgentsResponseType: {
377
+ export declare const ListAgentsAgentsType: {
503
378
  readonly ExactMatch: "exact_match";
504
379
  };
505
- export type ListAgentsDataAgentsResponseType = ClosedEnum<typeof ListAgentsDataAgentsResponseType>;
380
+ export type ListAgentsAgentsType = ClosedEnum<typeof ListAgentsAgentsType>;
506
381
  /**
507
382
  * Cache configuration for the request.
508
383
  */
509
- export type DataCache = {
384
+ export type ListAgentsCache = {
510
385
  /**
511
386
  * Time to live for cached responses in seconds. Maximum 259200 seconds (3 days).
512
387
  */
513
388
  ttl: number;
514
- type: ListAgentsDataAgentsResponseType;
389
+ type: ListAgentsAgentsType;
515
390
  };
516
391
  export declare const ListAgentsLoadBalancerType: {
517
392
  readonly WeightBased: "weight_based";
@@ -534,11 +409,11 @@ export type ListAgentsLoadBalancer1 = {
534
409
  /**
535
410
  * Load balancer configuration for the request.
536
411
  */
537
- export type DataLoadBalancer = ListAgentsLoadBalancer1;
412
+ export type ListAgentsLoadBalancer = ListAgentsLoadBalancer1;
538
413
  /**
539
414
  * 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.
540
415
  */
541
- export type DataTimeout = {
416
+ export type ListAgentsTimeout = {
542
417
  /**
543
418
  * Timeout value in milliseconds
544
419
  */
@@ -547,7 +422,7 @@ export type DataTimeout = {
547
422
  /**
548
423
  * 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.
549
424
  */
550
- export type DataParameters = {
425
+ export type ListAgentsParameters = {
551
426
  /**
552
427
  * The name to display on the trace. If not specified, the default system name will be used.
553
428
  */
@@ -588,7 +463,7 @@ export type DataParameters = {
588
463
  *
589
464
  * Any of "none", "minimal", "low", "medium", "high", "xhigh".
590
465
  */
591
- reasoningEffort?: DataReasoningEffort | undefined;
466
+ reasoningEffort?: ListAgentsReasoningEffort | undefined;
592
467
  /**
593
468
  * Adjusts response verbosity. Lower levels yield shorter answers.
594
469
  */
@@ -625,19 +500,19 @@ export type DataParameters = {
625
500
  /**
626
501
  * 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"].
627
502
  */
628
- modalities?: Array<DataModalities> | null | undefined;
503
+ modalities?: Array<ListAgentsModalities> | null | undefined;
629
504
  /**
630
505
  * A list of guardrails to apply to the request.
631
506
  */
632
- guardrails?: Array<ListAgentsDataGuardrails> | undefined;
507
+ guardrails?: Array<ListAgentsAgentsGuardrails> | undefined;
633
508
  /**
634
509
  * Array of fallback models to use if primary model fails
635
510
  */
636
- fallbacks?: Array<DataFallbacks> | undefined;
511
+ fallbacks?: Array<ListAgentsFallbacks> | undefined;
637
512
  /**
638
513
  * Cache configuration for the request.
639
514
  */
640
- cache?: DataCache | undefined;
515
+ cache?: ListAgentsCache | undefined;
641
516
  /**
642
517
  * Load balancer configuration for the request.
643
518
  */
@@ -645,12 +520,12 @@ export type DataParameters = {
645
520
  /**
646
521
  * 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.
647
522
  */
648
- timeout?: DataTimeout | undefined;
523
+ timeout?: ListAgentsTimeout | undefined;
649
524
  };
650
525
  /**
651
526
  * 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).
652
527
  */
653
- export type DataRetry = {
528
+ export type ListAgentsRetry = {
654
529
  /**
655
530
  * Number of retry attempts (1-5)
656
531
  */
@@ -1001,8 +876,8 @@ export type ListAgentsFallbackModelConfiguration2 = {
1001
876
  /**
1002
877
  * 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.
1003
878
  */
1004
- export type DataFallbackModelConfiguration = ListAgentsFallbackModelConfiguration2 | string;
1005
- export type DataModel = {
879
+ export type ListAgentsFallbackModelConfiguration = ListAgentsFallbackModelConfiguration2 | string;
880
+ export type ListAgentsModel = {
1006
881
  /**
1007
882
  * The database ID of the primary model
1008
883
  */
@@ -1014,17 +889,47 @@ export type DataModel = {
1014
889
  /**
1015
890
  * 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.
1016
891
  */
1017
- parameters?: DataParameters | undefined;
892
+ parameters?: ListAgentsParameters | undefined;
1018
893
  /**
1019
894
  * 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).
1020
895
  */
1021
- retry?: DataRetry | undefined;
896
+ retry?: ListAgentsRetry | undefined;
1022
897
  /**
1023
898
  * Optional array of fallback models (string IDs or config objects) that will be used automatically in order if the primary model fails
1024
899
  */
1025
900
  fallbackModels?: Array<ListAgentsFallbackModelConfiguration2 | string> | null | undefined;
1026
901
  };
1027
- export type Data1 = {
902
+ export type ListAgentsHeaders = {
903
+ /**
904
+ * 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.
905
+ */
906
+ value: string;
907
+ encrypted: boolean;
908
+ };
909
+ /**
910
+ * A2A configuration with agent endpoint and authentication. Only present for A2A agents.
911
+ */
912
+ export type ListAgentsA2AAgentConfiguration = {
913
+ /**
914
+ * The A2A agent endpoint URL (e.g., https://example.com/agent/a2a)
915
+ */
916
+ agentUrl: string;
917
+ /**
918
+ * Optional explicit URL to fetch agent card. Defaults to {agent_url}/card if not provided
919
+ */
920
+ cardUrl?: string | undefined;
921
+ /**
922
+ * 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.
923
+ */
924
+ headers?: {
925
+ [k: string]: ListAgentsHeaders;
926
+ } | undefined;
927
+ /**
928
+ * Cached agent card from discovery. Refreshed periodically.
929
+ */
930
+ cachedCard?: any | undefined;
931
+ };
932
+ export type ListAgentsData = {
1028
933
  id: string;
1029
934
  /**
1030
935
  * Unique identifier for the agent within the workspace
@@ -1038,7 +943,7 @@ export type Data1 = {
1038
943
  /**
1039
944
  * 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.
1040
945
  */
1041
- status: DataStatus;
946
+ status: ListAgentsStatus;
1042
947
  versionHash?: string | undefined;
1043
948
  /**
1044
949
  * Entity storage path in the format: `project/folder/subfolder/...`
@@ -1057,8 +962,8 @@ export type Data1 = {
1057
962
  /**
1058
963
  * The agents that are accessible to this orchestrator. The main agent can hand off to these agents to perform tasks.
1059
964
  */
1060
- teamOfAgents?: Array<DataTeamOfAgents> | undefined;
1061
- metrics?: DataMetrics | undefined;
965
+ teamOfAgents?: Array<ListAgentsTeamOfAgents> | undefined;
966
+ metrics?: ListAgentsMetrics | undefined;
1062
967
  /**
1063
968
  * Extracted variables from agent instructions
1064
969
  */
@@ -1068,26 +973,29 @@ export type Data1 = {
1068
973
  /**
1069
974
  * Agent knowledge bases reference
1070
975
  */
1071
- knowledgeBases?: Array<DataKnowledgeBases> | undefined;
1072
- source?: DataSource | undefined;
976
+ knowledgeBases?: Array<ListAgentsKnowledgeBases> | undefined;
977
+ source?: ListAgentsSource | undefined;
1073
978
  /**
1074
- * Orquesta-managed agent
979
+ * Agent type: internal (Orquesta-managed) or a2a (external A2A-compliant)
1075
980
  */
1076
- type: "internal";
981
+ type: ListAgentsType;
1077
982
  role: string;
1078
983
  description: string;
1079
984
  systemPrompt?: string | undefined;
1080
985
  instructions: string;
1081
- settings?: DataSettings | undefined;
1082
- model: DataModel;
986
+ settings?: ListAgentsSettings | undefined;
987
+ model: ListAgentsModel;
988
+ /**
989
+ * A2A configuration with agent endpoint and authentication. Only present for A2A agents.
990
+ */
991
+ a2a?: ListAgentsA2AAgentConfiguration | undefined;
1083
992
  };
1084
- export type ListAgentsData = Data1 | Data2;
1085
993
  /**
1086
994
  * Successfully retrieved the list of agents. Returns a paginated response containing agent manifests with complete configurations, including primary and fallback models, tools, knowledge bases, and execution settings.
1087
995
  */
1088
996
  export type ListAgentsResponseBody = {
1089
997
  object: ListAgentsObject;
1090
- data: Array<Data1 | Data2>;
998
+ data: Array<ListAgentsData>;
1091
999
  hasMore: boolean;
1092
1000
  };
1093
1001
  /** @internal */
@@ -1105,61 +1013,41 @@ export declare function listAgentsRequestToJSON(listAgentsRequest: ListAgentsReq
1105
1013
  /** @internal */
1106
1014
  export declare const ListAgentsObject$inboundSchema: z.ZodNativeEnum<typeof ListAgentsObject>;
1107
1015
  /** @internal */
1108
- export declare const ListAgentsDataStatus$inboundSchema: z.ZodNativeEnum<typeof ListAgentsDataStatus>;
1109
- /** @internal */
1110
- export declare const ListAgentsDataTeamOfAgents$inboundSchema: z.ZodType<ListAgentsDataTeamOfAgents, z.ZodTypeDef, unknown>;
1111
- export declare function listAgentsDataTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<ListAgentsDataTeamOfAgents, SDKValidationError>;
1112
- /** @internal */
1113
- export declare const ListAgentsDataMetrics$inboundSchema: z.ZodType<ListAgentsDataMetrics, z.ZodTypeDef, unknown>;
1114
- export declare function listAgentsDataMetricsFromJSON(jsonString: string): SafeParseResult<ListAgentsDataMetrics, SDKValidationError>;
1115
- /** @internal */
1116
- export declare const ListAgentsDataKnowledgeBases$inboundSchema: z.ZodType<ListAgentsDataKnowledgeBases, z.ZodTypeDef, unknown>;
1117
- export declare function listAgentsDataKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<ListAgentsDataKnowledgeBases, SDKValidationError>;
1118
- /** @internal */
1119
- export declare const ListAgentsDataSource$inboundSchema: z.ZodNativeEnum<typeof ListAgentsDataSource>;
1016
+ export declare const ListAgentsStatus$inboundSchema: z.ZodNativeEnum<typeof ListAgentsStatus>;
1120
1017
  /** @internal */
1121
- export declare const DataHeaders$inboundSchema: z.ZodType<DataHeaders, z.ZodTypeDef, unknown>;
1122
- export declare function dataHeadersFromJSON(jsonString: string): SafeParseResult<DataHeaders, SDKValidationError>;
1018
+ export declare const ListAgentsTeamOfAgents$inboundSchema: z.ZodType<ListAgentsTeamOfAgents, z.ZodTypeDef, unknown>;
1019
+ export declare function listAgentsTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<ListAgentsTeamOfAgents, SDKValidationError>;
1123
1020
  /** @internal */
1124
- export declare const DataA2AAgentConfiguration$inboundSchema: z.ZodType<DataA2AAgentConfiguration, z.ZodTypeDef, unknown>;
1125
- export declare function dataA2AAgentConfigurationFromJSON(jsonString: string): SafeParseResult<DataA2AAgentConfiguration, SDKValidationError>;
1021
+ export declare const ListAgentsMetrics$inboundSchema: z.ZodType<ListAgentsMetrics, z.ZodTypeDef, unknown>;
1022
+ export declare function listAgentsMetricsFromJSON(jsonString: string): SafeParseResult<ListAgentsMetrics, SDKValidationError>;
1126
1023
  /** @internal */
1127
- export declare const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown>;
1128
- export declare function data2FromJSON(jsonString: string): SafeParseResult<Data2, SDKValidationError>;
1024
+ export declare const ListAgentsKnowledgeBases$inboundSchema: z.ZodType<ListAgentsKnowledgeBases, z.ZodTypeDef, unknown>;
1025
+ export declare function listAgentsKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<ListAgentsKnowledgeBases, SDKValidationError>;
1129
1026
  /** @internal */
1130
- export declare const DataStatus$inboundSchema: z.ZodNativeEnum<typeof DataStatus>;
1027
+ export declare const ListAgentsSource$inboundSchema: z.ZodNativeEnum<typeof ListAgentsSource>;
1131
1028
  /** @internal */
1132
- export declare const DataTeamOfAgents$inboundSchema: z.ZodType<DataTeamOfAgents, z.ZodTypeDef, unknown>;
1133
- export declare function dataTeamOfAgentsFromJSON(jsonString: string): SafeParseResult<DataTeamOfAgents, SDKValidationError>;
1029
+ export declare const ListAgentsType$inboundSchema: z.ZodNativeEnum<typeof ListAgentsType>;
1134
1030
  /** @internal */
1135
- export declare const DataMetrics$inboundSchema: z.ZodType<DataMetrics, z.ZodTypeDef, unknown>;
1136
- export declare function dataMetricsFromJSON(jsonString: string): SafeParseResult<DataMetrics, SDKValidationError>;
1031
+ export declare const ListAgentsToolApprovalRequired$inboundSchema: z.ZodNativeEnum<typeof ListAgentsToolApprovalRequired>;
1137
1032
  /** @internal */
1138
- export declare const DataKnowledgeBases$inboundSchema: z.ZodType<DataKnowledgeBases, z.ZodTypeDef, unknown>;
1139
- export declare function dataKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<DataKnowledgeBases, SDKValidationError>;
1033
+ export declare const ListAgentsConditions$inboundSchema: z.ZodType<ListAgentsConditions, z.ZodTypeDef, unknown>;
1034
+ export declare function listAgentsConditionsFromJSON(jsonString: string): SafeParseResult<ListAgentsConditions, SDKValidationError>;
1140
1035
  /** @internal */
1141
- export declare const DataSource$inboundSchema: z.ZodNativeEnum<typeof DataSource>;
1036
+ export declare const ListAgentsTools$inboundSchema: z.ZodType<ListAgentsTools, z.ZodTypeDef, unknown>;
1037
+ export declare function listAgentsToolsFromJSON(jsonString: string): SafeParseResult<ListAgentsTools, SDKValidationError>;
1142
1038
  /** @internal */
1143
- export declare const DataToolApprovalRequired$inboundSchema: z.ZodNativeEnum<typeof DataToolApprovalRequired>;
1039
+ export declare const ListAgentsExecuteOn$inboundSchema: z.ZodNativeEnum<typeof ListAgentsExecuteOn>;
1144
1040
  /** @internal */
1145
- export declare const DataConditions$inboundSchema: z.ZodType<DataConditions, z.ZodTypeDef, unknown>;
1146
- export declare function dataConditionsFromJSON(jsonString: string): SafeParseResult<DataConditions, SDKValidationError>;
1041
+ export declare const ListAgentsEvaluators$inboundSchema: z.ZodType<ListAgentsEvaluators, z.ZodTypeDef, unknown>;
1042
+ export declare function listAgentsEvaluatorsFromJSON(jsonString: string): SafeParseResult<ListAgentsEvaluators, SDKValidationError>;
1147
1043
  /** @internal */
1148
- export declare const DataTools$inboundSchema: z.ZodType<DataTools, z.ZodTypeDef, unknown>;
1149
- export declare function dataToolsFromJSON(jsonString: string): SafeParseResult<DataTools, SDKValidationError>;
1044
+ export declare const ListAgentsAgentsExecuteOn$inboundSchema: z.ZodNativeEnum<typeof ListAgentsAgentsExecuteOn>;
1150
1045
  /** @internal */
1151
- export declare const DataExecuteOn$inboundSchema: z.ZodNativeEnum<typeof DataExecuteOn>;
1046
+ export declare const ListAgentsGuardrails$inboundSchema: z.ZodType<ListAgentsGuardrails, z.ZodTypeDef, unknown>;
1047
+ export declare function listAgentsGuardrailsFromJSON(jsonString: string): SafeParseResult<ListAgentsGuardrails, SDKValidationError>;
1152
1048
  /** @internal */
1153
- export declare const DataEvaluators$inboundSchema: z.ZodType<DataEvaluators, z.ZodTypeDef, unknown>;
1154
- export declare function dataEvaluatorsFromJSON(jsonString: string): SafeParseResult<DataEvaluators, SDKValidationError>;
1155
- /** @internal */
1156
- export declare const ListAgentsDataExecuteOn$inboundSchema: z.ZodNativeEnum<typeof ListAgentsDataExecuteOn>;
1157
- /** @internal */
1158
- export declare const DataGuardrails$inboundSchema: z.ZodType<DataGuardrails, z.ZodTypeDef, unknown>;
1159
- export declare function dataGuardrailsFromJSON(jsonString: string): SafeParseResult<DataGuardrails, SDKValidationError>;
1160
- /** @internal */
1161
- export declare const DataSettings$inboundSchema: z.ZodType<DataSettings, z.ZodTypeDef, unknown>;
1162
- export declare function dataSettingsFromJSON(jsonString: string): SafeParseResult<DataSettings, SDKValidationError>;
1049
+ export declare const ListAgentsSettings$inboundSchema: z.ZodType<ListAgentsSettings, z.ZodTypeDef, unknown>;
1050
+ export declare function listAgentsSettingsFromJSON(jsonString: string): SafeParseResult<ListAgentsSettings, SDKValidationError>;
1163
1051
  /** @internal */
1164
1052
  export declare const ListAgentsResponseFormatJsonSchema$inboundSchema: z.ZodType<ListAgentsResponseFormatJsonSchema, z.ZodTypeDef, unknown>;
1165
1053
  export declare function listAgentsResponseFormatJsonSchemaFromJSON(jsonString: string): SafeParseResult<ListAgentsResponseFormatJsonSchema, SDKValidationError>;
@@ -1173,16 +1061,16 @@ export declare function listAgentsResponseFormatJSONObjectFromJSON(jsonString: s
1173
1061
  export declare const ListAgentsResponseFormatText$inboundSchema: z.ZodType<ListAgentsResponseFormatText, z.ZodTypeDef, unknown>;
1174
1062
  export declare function listAgentsResponseFormatTextFromJSON(jsonString: string): SafeParseResult<ListAgentsResponseFormatText, SDKValidationError>;
1175
1063
  /** @internal */
1176
- export declare const DataResponseFormat$inboundSchema: z.ZodType<DataResponseFormat, z.ZodTypeDef, unknown>;
1177
- export declare function dataResponseFormatFromJSON(jsonString: string): SafeParseResult<DataResponseFormat, SDKValidationError>;
1064
+ export declare const ListAgentsResponseFormat$inboundSchema: z.ZodType<ListAgentsResponseFormat, z.ZodTypeDef, unknown>;
1065
+ export declare function listAgentsResponseFormatFromJSON(jsonString: string): SafeParseResult<ListAgentsResponseFormat, SDKValidationError>;
1178
1066
  /** @internal */
1179
- export declare const DataReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof DataReasoningEffort>;
1067
+ export declare const ListAgentsReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof ListAgentsReasoningEffort>;
1180
1068
  /** @internal */
1181
- export declare const DataStop$inboundSchema: z.ZodType<DataStop, z.ZodTypeDef, unknown>;
1182
- export declare function dataStopFromJSON(jsonString: string): SafeParseResult<DataStop, SDKValidationError>;
1069
+ export declare const ListAgentsStop$inboundSchema: z.ZodType<ListAgentsStop, z.ZodTypeDef, unknown>;
1070
+ export declare function listAgentsStopFromJSON(jsonString: string): SafeParseResult<ListAgentsStop, SDKValidationError>;
1183
1071
  /** @internal */
1184
- export declare const DataThinking$inboundSchema: z.ZodType<DataThinking, z.ZodTypeDef, unknown>;
1185
- export declare function dataThinkingFromJSON(jsonString: string): SafeParseResult<DataThinking, SDKValidationError>;
1072
+ export declare const ListAgentsThinking$inboundSchema: z.ZodType<ListAgentsThinking, z.ZodTypeDef, unknown>;
1073
+ export declare function listAgentsThinkingFromJSON(jsonString: string): SafeParseResult<ListAgentsThinking, SDKValidationError>;
1186
1074
  /** @internal */
1187
1075
  export declare const ListAgentsToolChoiceType$inboundSchema: z.ZodNativeEnum<typeof ListAgentsToolChoiceType>;
1188
1076
  /** @internal */
@@ -1194,28 +1082,28 @@ export declare function listAgentsToolChoice2FromJSON(jsonString: string): SafeP
1194
1082
  /** @internal */
1195
1083
  export declare const ListAgentsToolChoice1$inboundSchema: z.ZodNativeEnum<typeof ListAgentsToolChoice1>;
1196
1084
  /** @internal */
1197
- export declare const DataToolChoice$inboundSchema: z.ZodType<DataToolChoice, z.ZodTypeDef, unknown>;
1198
- export declare function dataToolChoiceFromJSON(jsonString: string): SafeParseResult<DataToolChoice, SDKValidationError>;
1085
+ export declare const ListAgentsToolChoice$inboundSchema: z.ZodType<ListAgentsToolChoice, z.ZodTypeDef, unknown>;
1086
+ export declare function listAgentsToolChoiceFromJSON(jsonString: string): SafeParseResult<ListAgentsToolChoice, SDKValidationError>;
1199
1087
  /** @internal */
1200
- export declare const DataModalities$inboundSchema: z.ZodNativeEnum<typeof DataModalities>;
1088
+ export declare const ListAgentsModalities$inboundSchema: z.ZodNativeEnum<typeof ListAgentsModalities>;
1201
1089
  /** @internal */
1202
1090
  export declare const ListAgentsId1$inboundSchema: z.ZodNativeEnum<typeof ListAgentsId1>;
1203
1091
  /** @internal */
1204
- export declare const DataId$inboundSchema: z.ZodType<DataId, z.ZodTypeDef, unknown>;
1205
- export declare function dataIdFromJSON(jsonString: string): SafeParseResult<DataId, SDKValidationError>;
1092
+ export declare const ListAgentsId$inboundSchema: z.ZodType<ListAgentsId, z.ZodTypeDef, unknown>;
1093
+ export declare function listAgentsIdFromJSON(jsonString: string): SafeParseResult<ListAgentsId, SDKValidationError>;
1206
1094
  /** @internal */
1207
- export declare const ListAgentsDataAgentsExecuteOn$inboundSchema: z.ZodNativeEnum<typeof ListAgentsDataAgentsExecuteOn>;
1095
+ export declare const ListAgentsAgentsResponseExecuteOn$inboundSchema: z.ZodNativeEnum<typeof ListAgentsAgentsResponseExecuteOn>;
1208
1096
  /** @internal */
1209
- export declare const ListAgentsDataGuardrails$inboundSchema: z.ZodType<ListAgentsDataGuardrails, z.ZodTypeDef, unknown>;
1210
- export declare function listAgentsDataGuardrailsFromJSON(jsonString: string): SafeParseResult<ListAgentsDataGuardrails, SDKValidationError>;
1097
+ export declare const ListAgentsAgentsGuardrails$inboundSchema: z.ZodType<ListAgentsAgentsGuardrails, z.ZodTypeDef, unknown>;
1098
+ export declare function listAgentsAgentsGuardrailsFromJSON(jsonString: string): SafeParseResult<ListAgentsAgentsGuardrails, SDKValidationError>;
1211
1099
  /** @internal */
1212
- export declare const DataFallbacks$inboundSchema: z.ZodType<DataFallbacks, z.ZodTypeDef, unknown>;
1213
- export declare function dataFallbacksFromJSON(jsonString: string): SafeParseResult<DataFallbacks, SDKValidationError>;
1100
+ export declare const ListAgentsFallbacks$inboundSchema: z.ZodType<ListAgentsFallbacks, z.ZodTypeDef, unknown>;
1101
+ export declare function listAgentsFallbacksFromJSON(jsonString: string): SafeParseResult<ListAgentsFallbacks, SDKValidationError>;
1214
1102
  /** @internal */
1215
- export declare const ListAgentsDataAgentsResponseType$inboundSchema: z.ZodNativeEnum<typeof ListAgentsDataAgentsResponseType>;
1103
+ export declare const ListAgentsAgentsType$inboundSchema: z.ZodNativeEnum<typeof ListAgentsAgentsType>;
1216
1104
  /** @internal */
1217
- export declare const DataCache$inboundSchema: z.ZodType<DataCache, z.ZodTypeDef, unknown>;
1218
- export declare function dataCacheFromJSON(jsonString: string): SafeParseResult<DataCache, SDKValidationError>;
1105
+ export declare const ListAgentsCache$inboundSchema: z.ZodType<ListAgentsCache, z.ZodTypeDef, unknown>;
1106
+ export declare function listAgentsCacheFromJSON(jsonString: string): SafeParseResult<ListAgentsCache, SDKValidationError>;
1219
1107
  /** @internal */
1220
1108
  export declare const ListAgentsLoadBalancerType$inboundSchema: z.ZodNativeEnum<typeof ListAgentsLoadBalancerType>;
1221
1109
  /** @internal */
@@ -1225,17 +1113,17 @@ export declare function listAgentsLoadBalancerModelsFromJSON(jsonString: string)
1225
1113
  export declare const ListAgentsLoadBalancer1$inboundSchema: z.ZodType<ListAgentsLoadBalancer1, z.ZodTypeDef, unknown>;
1226
1114
  export declare function listAgentsLoadBalancer1FromJSON(jsonString: string): SafeParseResult<ListAgentsLoadBalancer1, SDKValidationError>;
1227
1115
  /** @internal */
1228
- export declare const DataLoadBalancer$inboundSchema: z.ZodType<DataLoadBalancer, z.ZodTypeDef, unknown>;
1229
- export declare function dataLoadBalancerFromJSON(jsonString: string): SafeParseResult<DataLoadBalancer, SDKValidationError>;
1116
+ export declare const ListAgentsLoadBalancer$inboundSchema: z.ZodType<ListAgentsLoadBalancer, z.ZodTypeDef, unknown>;
1117
+ export declare function listAgentsLoadBalancerFromJSON(jsonString: string): SafeParseResult<ListAgentsLoadBalancer, SDKValidationError>;
1230
1118
  /** @internal */
1231
- export declare const DataTimeout$inboundSchema: z.ZodType<DataTimeout, z.ZodTypeDef, unknown>;
1232
- export declare function dataTimeoutFromJSON(jsonString: string): SafeParseResult<DataTimeout, SDKValidationError>;
1119
+ export declare const ListAgentsTimeout$inboundSchema: z.ZodType<ListAgentsTimeout, z.ZodTypeDef, unknown>;
1120
+ export declare function listAgentsTimeoutFromJSON(jsonString: string): SafeParseResult<ListAgentsTimeout, SDKValidationError>;
1233
1121
  /** @internal */
1234
- export declare const DataParameters$inboundSchema: z.ZodType<DataParameters, z.ZodTypeDef, unknown>;
1235
- export declare function dataParametersFromJSON(jsonString: string): SafeParseResult<DataParameters, SDKValidationError>;
1122
+ export declare const ListAgentsParameters$inboundSchema: z.ZodType<ListAgentsParameters, z.ZodTypeDef, unknown>;
1123
+ export declare function listAgentsParametersFromJSON(jsonString: string): SafeParseResult<ListAgentsParameters, SDKValidationError>;
1236
1124
  /** @internal */
1237
- export declare const DataRetry$inboundSchema: z.ZodType<DataRetry, z.ZodTypeDef, unknown>;
1238
- export declare function dataRetryFromJSON(jsonString: string): SafeParseResult<DataRetry, SDKValidationError>;
1125
+ export declare const ListAgentsRetry$inboundSchema: z.ZodType<ListAgentsRetry, z.ZodTypeDef, unknown>;
1126
+ export declare function listAgentsRetryFromJSON(jsonString: string): SafeParseResult<ListAgentsRetry, SDKValidationError>;
1239
1127
  /** @internal */
1240
1128
  export declare const ListAgentsResponseFormatAgentsResponseJsonSchema$inboundSchema: z.ZodType<ListAgentsResponseFormatAgentsResponseJsonSchema, z.ZodTypeDef, unknown>;
1241
1129
  export declare function listAgentsResponseFormatAgentsResponseJsonSchemaFromJSON(jsonString: string): SafeParseResult<ListAgentsResponseFormatAgentsResponseJsonSchema, SDKValidationError>;
@@ -1316,14 +1204,17 @@ export declare function listAgentsFallbackModelConfigurationRetryFromJSON(jsonSt
1316
1204
  export declare const ListAgentsFallbackModelConfiguration2$inboundSchema: z.ZodType<ListAgentsFallbackModelConfiguration2, z.ZodTypeDef, unknown>;
1317
1205
  export declare function listAgentsFallbackModelConfiguration2FromJSON(jsonString: string): SafeParseResult<ListAgentsFallbackModelConfiguration2, SDKValidationError>;
1318
1206
  /** @internal */
1319
- export declare const DataFallbackModelConfiguration$inboundSchema: z.ZodType<DataFallbackModelConfiguration, z.ZodTypeDef, unknown>;
1320
- export declare function dataFallbackModelConfigurationFromJSON(jsonString: string): SafeParseResult<DataFallbackModelConfiguration, SDKValidationError>;
1207
+ export declare const ListAgentsFallbackModelConfiguration$inboundSchema: z.ZodType<ListAgentsFallbackModelConfiguration, z.ZodTypeDef, unknown>;
1208
+ export declare function listAgentsFallbackModelConfigurationFromJSON(jsonString: string): SafeParseResult<ListAgentsFallbackModelConfiguration, SDKValidationError>;
1209
+ /** @internal */
1210
+ export declare const ListAgentsModel$inboundSchema: z.ZodType<ListAgentsModel, z.ZodTypeDef, unknown>;
1211
+ export declare function listAgentsModelFromJSON(jsonString: string): SafeParseResult<ListAgentsModel, SDKValidationError>;
1321
1212
  /** @internal */
1322
- export declare const DataModel$inboundSchema: z.ZodType<DataModel, z.ZodTypeDef, unknown>;
1323
- export declare function dataModelFromJSON(jsonString: string): SafeParseResult<DataModel, SDKValidationError>;
1213
+ export declare const ListAgentsHeaders$inboundSchema: z.ZodType<ListAgentsHeaders, z.ZodTypeDef, unknown>;
1214
+ export declare function listAgentsHeadersFromJSON(jsonString: string): SafeParseResult<ListAgentsHeaders, SDKValidationError>;
1324
1215
  /** @internal */
1325
- export declare const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown>;
1326
- export declare function data1FromJSON(jsonString: string): SafeParseResult<Data1, SDKValidationError>;
1216
+ export declare const ListAgentsA2AAgentConfiguration$inboundSchema: z.ZodType<ListAgentsA2AAgentConfiguration, z.ZodTypeDef, unknown>;
1217
+ export declare function listAgentsA2AAgentConfigurationFromJSON(jsonString: string): SafeParseResult<ListAgentsA2AAgentConfiguration, SDKValidationError>;
1327
1218
  /** @internal */
1328
1219
  export declare const ListAgentsData$inboundSchema: z.ZodType<ListAgentsData, z.ZodTypeDef, unknown>;
1329
1220
  export declare function listAgentsDataFromJSON(jsonString: string): SafeParseResult<ListAgentsData, SDKValidationError>;