@orq-ai/node 3.14.38 → 3.14.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/mcp-server.js +211 -211
- package/bin/mcp-server.js.map +37 -37
- package/docs/sdks/agents/README.md +71 -71
- package/examples/package-lock.json +1 -1
- package/funcs/agentsCreate.js +1 -1
- package/funcs/agentsCreate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +2 -2
- package/mcp-server/server.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/sdk/agents.d.ts +7 -7
- package/sdk/agents.d.ts.map +1 -1
- package/sdk/agents.js +9 -9
- package/sdk/agents.js.map +1 -1
- package/src/funcs/agentsCreate.ts +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +2 -2
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +10 -10
- package/src/sdk/agents.ts +17 -17
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2025-11-
|
|
217
|
+
"2025-11-16T16:11:21.924Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-16T16:11:21.924Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-16T16:11:34.212Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-16T16:11:34.212Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-16T16:11:34.212Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-16T16:11:34.212Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-16T16:11:34.211Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-16T16:11:34.211Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-16T16:11:21.924Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-16T16:11:21.924Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-16T16:11:21.924Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-16T16:11:21.924Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KA6PZ7SWPS81HAAHANSDC04F"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KA6PZ7SWPS81HAAHANSDC04F"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2988
|
> = z.object({
|
|
2989
2989
|
_id: z.string(),
|
|
2990
2990
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2991
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
2992
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
2993
2993
|
guardrail_config: z.union([
|
|
2994
2994
|
z.lazy(() =>
|
|
2995
2995
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3031
|
> = z.object({
|
|
3032
3032
|
id: z.string(),
|
|
3033
3033
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3034
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3035
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3036
3036
|
guardrailConfig: z.union([
|
|
3037
3037
|
z.lazy(() =>
|
|
3038
3038
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3322
|
> = z.object({
|
|
3323
3323
|
_id: z.string(),
|
|
3324
3324
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3325
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3326
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3327
3327
|
guardrail_config: z.union([
|
|
3328
3328
|
z.lazy(() =>
|
|
3329
3329
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3368
|
> = z.object({
|
|
3369
3369
|
id: z.string(),
|
|
3370
3370
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3371
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3372
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
3373
3373
|
guardrailConfig: z.union([
|
|
3374
3374
|
z.lazy(() =>
|
|
3375
3375
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5707
|
> = z.object({
|
|
5708
5708
|
_id: z.string(),
|
|
5709
5709
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5710
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
5711
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
5712
5712
|
guardrail_config: z.union([
|
|
5713
5713
|
z.lazy(() =>
|
|
5714
5714
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
5826
5826
|
guardrailConfig: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6138
|
> = z.object({
|
|
6139
6139
|
_id: z.string(),
|
|
6140
6140
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6141
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6142
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6143
6143
|
guardrail_config: z.union([
|
|
6144
6144
|
z.lazy(() =>
|
|
6145
6145
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6180
|
> = z.object({
|
|
6181
6181
|
id: z.string(),
|
|
6182
6182
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6183
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6184
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6185
6185
|
guardrailConfig: z.union([
|
|
6186
6186
|
z.lazy(() =>
|
|
6187
6187
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6466
|
> = z.object({
|
|
6467
6467
|
_id: z.string(),
|
|
6468
6468
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6469
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6470
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6471
6471
|
guardrail_config: z.union([
|
|
6472
6472
|
z.lazy(() =>
|
|
6473
6473
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6514
6514
|
> = z.object({
|
|
6515
6515
|
id: z.string(),
|
|
6516
6516
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6517
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6784
|
> = z.object({
|
|
6785
6785
|
_id: z.string(),
|
|
6786
6786
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6787
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6788
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6789
6789
|
guardrail_config: z.union([
|
|
6790
6790
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6791
|
z.lazy(() =>
|
|
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6824
|
> = z.object({
|
|
6825
6825
|
id: z.string(),
|
|
6826
6826
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6827
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6828
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
6829
6829
|
guardrailConfig: z.union([
|
|
6830
6830
|
z.lazy(() =>
|
|
6831
6831
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7064
|
> = z.object({
|
|
7065
7065
|
_id: z.string(),
|
|
7066
7066
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7067
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
7068
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
7069
7069
|
guardrail_config: z.union([
|
|
7070
7070
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7071
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7104
|
> = z.object({
|
|
7105
7105
|
id: z.string(),
|
|
7106
7106
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7107
|
+
created: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
7108
|
+
updated: z.string().default("2025-11-16T16:11:24.823Z"),
|
|
7109
7109
|
guardrailConfig: z.union([
|
|
7110
7110
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7111
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2251,7 +2251,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2251
2251
|
z.ZodTypeDef,
|
|
2252
2252
|
unknown
|
|
2253
2253
|
> = z.object({
|
|
2254
|
-
_id: z.string().default("
|
|
2254
|
+
_id: z.string().default("01KA6PZ7P4V5N5QA9X626XYJQW"),
|
|
2255
2255
|
path: z.string(),
|
|
2256
2256
|
key: z.string(),
|
|
2257
2257
|
display_name: z.string().optional(),
|
|
@@ -2305,7 +2305,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2305
2305
|
z.ZodTypeDef,
|
|
2306
2306
|
UpdateToolResponseBody5
|
|
2307
2307
|
> = z.object({
|
|
2308
|
-
id: z.string().default("
|
|
2308
|
+
id: z.string().default("01KA6PZ7P4V5N5QA9X626XYJQW"),
|
|
2309
2309
|
path: z.string(),
|
|
2310
2310
|
key: z.string(),
|
|
2311
2311
|
displayName: z.string().optional(),
|
|
@@ -2563,7 +2563,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
2563
2563
|
z.ZodTypeDef,
|
|
2564
2564
|
unknown
|
|
2565
2565
|
> = z.object({
|
|
2566
|
-
_id: z.string().default("
|
|
2566
|
+
_id: z.string().default("01KA6PZ7P25AKN9ARAS9KCRB3Q"),
|
|
2567
2567
|
path: z.string(),
|
|
2568
2568
|
key: z.string(),
|
|
2569
2569
|
display_name: z.string().optional(),
|
|
@@ -2616,7 +2616,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
2616
2616
|
z.ZodTypeDef,
|
|
2617
2617
|
UpdateToolResponseBody4
|
|
2618
2618
|
> = z.object({
|
|
2619
|
-
id: z.string().default("
|
|
2619
|
+
id: z.string().default("01KA6PZ7P25AKN9ARAS9KCRB3Q"),
|
|
2620
2620
|
path: z.string(),
|
|
2621
2621
|
key: z.string(),
|
|
2622
2622
|
displayName: z.string().optional(),
|
|
@@ -2905,7 +2905,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
2905
2905
|
z.ZodTypeDef,
|
|
2906
2906
|
unknown
|
|
2907
2907
|
> = z.object({
|
|
2908
|
-
_id: z.string().default("
|
|
2908
|
+
_id: z.string().default("01KA6PZ7P0FCA24QQB15YRFEX7"),
|
|
2909
2909
|
path: z.string(),
|
|
2910
2910
|
key: z.string(),
|
|
2911
2911
|
display_name: z.string().optional(),
|
|
@@ -2958,7 +2958,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
2958
2958
|
z.ZodTypeDef,
|
|
2959
2959
|
UpdateToolResponseBody3
|
|
2960
2960
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2961
|
+
id: z.string().default("01KA6PZ7P0FCA24QQB15YRFEX7"),
|
|
2962
2962
|
path: z.string(),
|
|
2963
2963
|
key: z.string(),
|
|
2964
2964
|
displayName: z.string().optional(),
|
|
@@ -3078,7 +3078,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3078
3078
|
z.ZodTypeDef,
|
|
3079
3079
|
unknown
|
|
3080
3080
|
> = z.object({
|
|
3081
|
-
_id: z.string().default("
|
|
3081
|
+
_id: z.string().default("01KA6PZ7NZ0016F6BSGVDBMBRK"),
|
|
3082
3082
|
path: z.string(),
|
|
3083
3083
|
key: z.string(),
|
|
3084
3084
|
display_name: z.string().optional(),
|
|
@@ -3130,7 +3130,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3130
3130
|
z.ZodTypeDef,
|
|
3131
3131
|
UpdateToolResponseBody2
|
|
3132
3132
|
> = z.object({
|
|
3133
|
-
id: z.string().default("
|
|
3133
|
+
id: z.string().default("01KA6PZ7NZ0016F6BSGVDBMBRK"),
|
|
3134
3134
|
path: z.string(),
|
|
3135
3135
|
key: z.string(),
|
|
3136
3136
|
displayName: z.string().optional(),
|
|
@@ -3249,7 +3249,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
3249
3249
|
z.ZodTypeDef,
|
|
3250
3250
|
unknown
|
|
3251
3251
|
> = z.object({
|
|
3252
|
-
_id: z.string().default("
|
|
3252
|
+
_id: z.string().default("01KA6PZ7NXYAK12ATNVVM9SVF9"),
|
|
3253
3253
|
path: z.string(),
|
|
3254
3254
|
key: z.string(),
|
|
3255
3255
|
display_name: z.string().optional(),
|
|
@@ -3300,7 +3300,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
3300
3300
|
z.ZodTypeDef,
|
|
3301
3301
|
UpdateToolResponseBody1
|
|
3302
3302
|
> = z.object({
|
|
3303
|
-
id: z.string().default("
|
|
3303
|
+
id: z.string().default("01KA6PZ7NXYAK12ATNVVM9SVF9"),
|
|
3304
3304
|
path: z.string(),
|
|
3305
3305
|
key: z.string(),
|
|
3306
3306
|
displayName: z.string().optional(),
|
package/src/sdk/agents.ts
CHANGED
|
@@ -55,23 +55,6 @@ export class Agents extends ClientSDK {
|
|
|
55
55
|
));
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
/**
|
|
59
|
-
* List all agents
|
|
60
|
-
*
|
|
61
|
-
* @remarks
|
|
62
|
-
* Retrieves a paginated list of all agents in your workspace. Each agent includes its configuration, primary model, and optional fallback model settings.
|
|
63
|
-
*/
|
|
64
|
-
async list(
|
|
65
|
-
request?: operations.ListAgentsRequest | undefined,
|
|
66
|
-
options?: RequestOptions,
|
|
67
|
-
): Promise<operations.ListAgentsResponseBody> {
|
|
68
|
-
return unwrapAsync(agentsList(
|
|
69
|
-
this,
|
|
70
|
-
request,
|
|
71
|
-
options,
|
|
72
|
-
));
|
|
73
|
-
}
|
|
74
|
-
|
|
75
58
|
/**
|
|
76
59
|
* Delete an agent
|
|
77
60
|
*
|
|
@@ -157,6 +140,23 @@ export class Agents extends ClientSDK {
|
|
|
157
140
|
));
|
|
158
141
|
}
|
|
159
142
|
|
|
143
|
+
/**
|
|
144
|
+
* List all agents
|
|
145
|
+
*
|
|
146
|
+
* @remarks
|
|
147
|
+
* Retrieves a paginated list of all agents in your workspace. Each agent includes its configuration, primary model, and optional fallback model settings.
|
|
148
|
+
*/
|
|
149
|
+
async list(
|
|
150
|
+
request?: operations.ListAgentsRequest | undefined,
|
|
151
|
+
options?: RequestOptions,
|
|
152
|
+
): Promise<operations.ListAgentsResponseBody> {
|
|
153
|
+
return unwrapAsync(agentsList(
|
|
154
|
+
this,
|
|
155
|
+
request,
|
|
156
|
+
options,
|
|
157
|
+
));
|
|
158
|
+
}
|
|
159
|
+
|
|
160
160
|
/**
|
|
161
161
|
* Run an agent
|
|
162
162
|
*
|