@orq-ai/node 4.1.0-rc.42 → 4.1.0-rc.43
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/bin/mcp-server.js +227 -227
- package/bin/mcp-server.js.map +43 -43
- package/examples/package-lock.json +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 +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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 +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- 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/retrieveconversation.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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.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 +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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 +12 -12
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- 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/retrieveconversation.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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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 +14 -14
|
@@ -79,7 +79,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
79
79
|
z.ZodTypeDef,
|
|
80
80
|
unknown
|
|
81
81
|
> = z.object({
|
|
82
|
-
_id: z.string().default("
|
|
82
|
+
_id: z.string().default("reasoning_01kchggrgygdhv871k6zx9enfm"),
|
|
83
83
|
metadata: z.record(z.any()).optional(),
|
|
84
84
|
kind: PartKind$inboundSchema,
|
|
85
85
|
reasoning: z.string(),
|
|
@@ -104,7 +104,7 @@ export const PartReasoningPart$outboundSchema: z.ZodType<
|
|
|
104
104
|
z.ZodTypeDef,
|
|
105
105
|
PartReasoningPart
|
|
106
106
|
> = z.object({
|
|
107
|
-
id: z.string().default("
|
|
107
|
+
id: z.string().default("reasoning_01kchggrgygdhv871k6zx9enfm"),
|
|
108
108
|
metadata: z.record(z.any()).optional(),
|
|
109
109
|
kind: PartKind$outboundSchema,
|
|
110
110
|
reasoning: z.string(),
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kchggrgkvkhkf6mrx6gr7n7f"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -65,7 +65,7 @@ export const ReasoningPart$outboundSchema: z.ZodType<
|
|
|
65
65
|
z.ZodTypeDef,
|
|
66
66
|
ReasoningPart
|
|
67
67
|
> = z.object({
|
|
68
|
-
id: z.string().default("
|
|
68
|
+
id: z.string().default("reasoning_01kchggrgkvkhkf6mrx6gr7n7f"),
|
|
69
69
|
metadata: z.record(z.any()).optional(),
|
|
70
70
|
kind: z.literal("reasoning"),
|
|
71
71
|
reasoning: z.string(),
|
|
@@ -489,7 +489,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
489
489
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
490
490
|
.optional(),
|
|
491
491
|
updated: z.string().datetime({ offset: true }).default(
|
|
492
|
-
"2025-12-
|
|
492
|
+
"2025-12-15T17:21:37.883Z",
|
|
493
493
|
).transform(v => new Date(v)),
|
|
494
494
|
}).transform((v) => {
|
|
495
495
|
return remap$(v, {
|
|
@@ -529,7 +529,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
529
529
|
isActive: z.boolean(),
|
|
530
530
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
531
531
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
532
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
532
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.883Z"))
|
|
533
533
|
.transform(v => v.toISOString()),
|
|
534
534
|
}).transform((v) => {
|
|
535
535
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-12-
|
|
170
|
+
"2025-12-15T17:21:37.487Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const CreateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("conv_01kchggrrgbcjdpa5q9vtmjpsj"),
|
|
248
248
|
entityId: z.string(),
|
|
249
249
|
kind: CreateConversationKind$inboundSchema,
|
|
250
250
|
displayName: z.string(),
|
|
@@ -278,7 +278,7 @@ export const CreateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
CreateConversationResponseBody
|
|
280
280
|
> = z.object({
|
|
281
|
-
id: z.string().default("
|
|
281
|
+
id: z.string().default("conv_01kchggrrgbcjdpa5q9vtmjpsj"),
|
|
282
282
|
entityId: z.string(),
|
|
283
283
|
kind: CreateConversationKind$outboundSchema,
|
|
284
284
|
displayName: z.string(),
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-12-
|
|
190
|
+
"2025-12-15T17:21:37.487Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -3612,7 +3612,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
3612
3612
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
3613
3613
|
reviewed_by_id: z.string(),
|
|
3614
3614
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3615
|
-
"2025-12-
|
|
3615
|
+
"2025-12-15T17:21:51.370Z",
|
|
3616
3616
|
).transform(v => new Date(v)),
|
|
3617
3617
|
type: z.literal("string_array"),
|
|
3618
3618
|
values: z.array(z.string()),
|
|
@@ -3647,7 +3647,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
3647
3647
|
humanReviewId: z.string(),
|
|
3648
3648
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
3649
3649
|
reviewedById: z.string(),
|
|
3650
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
3650
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.370Z"))
|
|
3651
3651
|
.transform(v => v.toISOString()),
|
|
3652
3652
|
type: z.literal("string_array"),
|
|
3653
3653
|
values: z.array(z.string()),
|
|
@@ -3703,7 +3703,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
3703
3703
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
3704
3704
|
reviewed_by_id: z.string(),
|
|
3705
3705
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3706
|
-
"2025-12-
|
|
3706
|
+
"2025-12-15T17:21:51.369Z",
|
|
3707
3707
|
).transform(v => new Date(v)),
|
|
3708
3708
|
type: z.literal("number"),
|
|
3709
3709
|
value: z.number(),
|
|
@@ -3738,7 +3738,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
3738
3738
|
humanReviewId: z.string(),
|
|
3739
3739
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
3740
3740
|
reviewedById: z.string(),
|
|
3741
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
3741
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.369Z"))
|
|
3742
3742
|
.transform(v => v.toISOString()),
|
|
3743
3743
|
type: z.literal("number"),
|
|
3744
3744
|
value: z.number(),
|
|
@@ -3792,7 +3792,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
3792
3792
|
source: Source$inboundSchema.default("orq"),
|
|
3793
3793
|
reviewed_by_id: z.string(),
|
|
3794
3794
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3795
|
-
"2025-12-
|
|
3795
|
+
"2025-12-15T17:21:51.368Z",
|
|
3796
3796
|
).transform(v => new Date(v)),
|
|
3797
3797
|
type: z.literal("string"),
|
|
3798
3798
|
value: z.string(),
|
|
@@ -3827,7 +3827,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
3827
3827
|
humanReviewId: z.string(),
|
|
3828
3828
|
source: Source$outboundSchema.default("orq"),
|
|
3829
3829
|
reviewedById: z.string(),
|
|
3830
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
3830
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.368Z"))
|
|
3831
3831
|
.transform(v => v.toISOString()),
|
|
3832
3832
|
type: z.literal("string"),
|
|
3833
3833
|
value: z.string(),
|
|
@@ -3932,7 +3932,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3932
3932
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3933
3933
|
.optional(),
|
|
3934
3934
|
updated: z.string().datetime({ offset: true }).default(
|
|
3935
|
-
"2025-12-
|
|
3935
|
+
"2025-12-15T17:21:37.487Z",
|
|
3936
3936
|
).transform(v => new Date(v)),
|
|
3937
3937
|
}).transform((v) => {
|
|
3938
3938
|
return remap$(v, {
|
|
@@ -4010,7 +4010,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
4010
4010
|
createdById: z.string().optional(),
|
|
4011
4011
|
updatedById: z.string().optional(),
|
|
4012
4012
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4013
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
4013
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
4014
4014
|
.transform(v => v.toISOString()),
|
|
4015
4015
|
}).transform((v) => {
|
|
4016
4016
|
return remap$(v, {
|
|
@@ -576,7 +576,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
576
576
|
z.ZodTypeDef,
|
|
577
577
|
unknown
|
|
578
578
|
> = z.object({
|
|
579
|
-
_id: z.string().default("
|
|
579
|
+
_id: z.string().default("01KCHGGS5BDD2SMB9D04NPEQZJ"),
|
|
580
580
|
display_name: z.string(),
|
|
581
581
|
description: z.string().optional(),
|
|
582
582
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -619,7 +619,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
619
619
|
z.ZodTypeDef,
|
|
620
620
|
CreateDatasourceResponseBody
|
|
621
621
|
> = z.object({
|
|
622
|
-
id: z.string().default("
|
|
622
|
+
id: z.string().default("01KCHGGS5BDD2SMB9D04NPEQZJ"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -1992,8 +1992,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1992
1992
|
> = z.object({
|
|
1993
1993
|
_id: z.string(),
|
|
1994
1994
|
description: z.string(),
|
|
1995
|
-
created: z.string().default("2025-12-
|
|
1996
|
-
updated: z.string().default("2025-12-
|
|
1995
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1996
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1997
1997
|
guardrail_config: z.union([
|
|
1998
1998
|
z.lazy(() =>
|
|
1999
1999
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2034,8 +2034,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2034
2034
|
> = z.object({
|
|
2035
2035
|
id: z.string(),
|
|
2036
2036
|
description: z.string(),
|
|
2037
|
-
created: z.string().default("2025-12-
|
|
2038
|
-
updated: z.string().default("2025-12-
|
|
2037
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2038
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2039
2039
|
guardrailConfig: z.union([
|
|
2040
2040
|
z.lazy(() =>
|
|
2041
2041
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2272,8 +2272,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2272
2272
|
.object({
|
|
2273
2273
|
_id: z.string(),
|
|
2274
2274
|
description: z.string(),
|
|
2275
|
-
created: z.string().default("2025-12-
|
|
2276
|
-
updated: z.string().default("2025-12-
|
|
2275
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2276
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2277
2277
|
guardrail_config: z.union([
|
|
2278
2278
|
z.lazy(() =>
|
|
2279
2279
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2317,8 +2317,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2317
2317
|
> = z.object({
|
|
2318
2318
|
id: z.string(),
|
|
2319
2319
|
description: z.string(),
|
|
2320
|
-
created: z.string().default("2025-12-
|
|
2321
|
-
updated: z.string().default("2025-12-
|
|
2320
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2321
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
2322
2322
|
guardrailConfig: z.union([
|
|
2323
2323
|
z.lazy(() =>
|
|
2324
2324
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -3824,8 +3824,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3824
3824
|
> = z.object({
|
|
3825
3825
|
_id: z.string(),
|
|
3826
3826
|
description: z.string(),
|
|
3827
|
-
created: z.string().default("2025-12-
|
|
3828
|
-
updated: z.string().default("2025-12-
|
|
3827
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
3828
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
3829
3829
|
guardrail_config: z.union([
|
|
3830
3830
|
z.lazy(() =>
|
|
3831
3831
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -3932,8 +3932,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
3932
3932
|
> = z.object({
|
|
3933
3933
|
id: z.string(),
|
|
3934
3934
|
description: z.string(),
|
|
3935
|
-
created: z.string().default("2025-12-
|
|
3936
|
-
updated: z.string().default("2025-12-
|
|
3935
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
3936
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
3937
3937
|
guardrailConfig: z.union([
|
|
3938
3938
|
z.lazy(() =>
|
|
3939
3939
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4206,8 +4206,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4206
4206
|
> = z.object({
|
|
4207
4207
|
_id: z.string(),
|
|
4208
4208
|
description: z.string(),
|
|
4209
|
-
created: z.string().default("2025-12-
|
|
4210
|
-
updated: z.string().default("2025-12-
|
|
4209
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4210
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4211
4211
|
guardrail_config: z.union([
|
|
4212
4212
|
z.lazy(() =>
|
|
4213
4213
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4248,8 +4248,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4248
4248
|
> = z.object({
|
|
4249
4249
|
id: z.string(),
|
|
4250
4250
|
description: z.string(),
|
|
4251
|
-
created: z.string().default("2025-12-
|
|
4252
|
-
updated: z.string().default("2025-12-
|
|
4251
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4252
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4253
4253
|
guardrailConfig: z.union([
|
|
4254
4254
|
z.lazy(() =>
|
|
4255
4255
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4488,8 +4488,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4488
4488
|
> = z.object({
|
|
4489
4489
|
_id: z.string(),
|
|
4490
4490
|
description: z.string(),
|
|
4491
|
-
created: z.string().default("2025-12-
|
|
4492
|
-
updated: z.string().default("2025-12-
|
|
4491
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4492
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4493
4493
|
guardrail_config: z.union([
|
|
4494
4494
|
z.lazy(() =>
|
|
4495
4495
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4536,8 +4536,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4536
4536
|
> = z.object({
|
|
4537
4537
|
id: z.string(),
|
|
4538
4538
|
description: z.string(),
|
|
4539
|
-
created: z.string().default("2025-12-
|
|
4540
|
-
updated: z.string().default("2025-12-
|
|
4539
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4540
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4541
4541
|
guardrailConfig: z.union([
|
|
4542
4542
|
z.lazy(() =>
|
|
4543
4543
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4752,8 +4752,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4752
4752
|
> = z.object({
|
|
4753
4753
|
_id: z.string(),
|
|
4754
4754
|
description: z.string(),
|
|
4755
|
-
created: z.string().default("2025-12-
|
|
4756
|
-
updated: z.string().default("2025-12-
|
|
4755
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4756
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4757
4757
|
guardrail_config: z.union([
|
|
4758
4758
|
z.lazy(() =>
|
|
4759
4759
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -4792,8 +4792,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
4792
4792
|
> = z.object({
|
|
4793
4793
|
id: z.string(),
|
|
4794
4794
|
description: z.string(),
|
|
4795
|
-
created: z.string().default("2025-12-
|
|
4796
|
-
updated: z.string().default("2025-12-
|
|
4795
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4796
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
4797
4797
|
guardrailConfig: z.union([
|
|
4798
4798
|
z.lazy(() =>
|
|
4799
4799
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5004,8 +5004,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5004
5004
|
> = z.object({
|
|
5005
5005
|
_id: z.string(),
|
|
5006
5006
|
description: z.string(),
|
|
5007
|
-
created: z.string().default("2025-12-
|
|
5008
|
-
updated: z.string().default("2025-12-
|
|
5007
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
5008
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
5009
5009
|
guardrail_config: z.union([
|
|
5010
5010
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5011
5011
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5044,8 +5044,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5044
5044
|
> = z.object({
|
|
5045
5045
|
id: z.string(),
|
|
5046
5046
|
description: z.string(),
|
|
5047
|
-
created: z.string().default("2025-12-
|
|
5048
|
-
updated: z.string().default("2025-12-
|
|
5047
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
5048
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
5049
5049
|
guardrailConfig: z.union([
|
|
5050
5050
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5051
5051
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -2458,7 +2458,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2458
2458
|
z.ZodTypeDef,
|
|
2459
2459
|
unknown
|
|
2460
2460
|
> = z.object({
|
|
2461
|
-
_id: z.string().default("
|
|
2461
|
+
_id: z.string().default("tool_01KCHGGS0BQCXJEWR4VB2A359H"),
|
|
2462
2462
|
path: z.string(),
|
|
2463
2463
|
key: z.string(),
|
|
2464
2464
|
display_name: z.string().optional(),
|
|
@@ -2512,7 +2512,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2512
2512
|
z.ZodTypeDef,
|
|
2513
2513
|
ResponseBodyCodeExecutionTool
|
|
2514
2514
|
> = z.object({
|
|
2515
|
-
id: z.string().default("
|
|
2515
|
+
id: z.string().default("tool_01KCHGGS0BQCXJEWR4VB2A359H"),
|
|
2516
2516
|
path: z.string(),
|
|
2517
2517
|
key: z.string(),
|
|
2518
2518
|
displayName: z.string().optional(),
|
|
@@ -2678,7 +2678,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2678
2678
|
z.ZodTypeDef,
|
|
2679
2679
|
unknown
|
|
2680
2680
|
> = z.object({
|
|
2681
|
-
id: z.string().default("
|
|
2681
|
+
id: z.string().default("01KCHGGS0B4VEG85JD3R2NXG8V"),
|
|
2682
2682
|
name: z.string(),
|
|
2683
2683
|
description: z.string().optional(),
|
|
2684
2684
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2697,7 +2697,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2697
2697
|
z.ZodTypeDef,
|
|
2698
2698
|
ResponseBodyTools
|
|
2699
2699
|
> = z.object({
|
|
2700
|
-
id: z.string().default("
|
|
2700
|
+
id: z.string().default("01KCHGGS0B4VEG85JD3R2NXG8V"),
|
|
2701
2701
|
name: z.string(),
|
|
2702
2702
|
description: z.string().optional(),
|
|
2703
2703
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2792,7 +2792,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2792
2792
|
z.ZodTypeDef,
|
|
2793
2793
|
unknown
|
|
2794
2794
|
> = z.object({
|
|
2795
|
-
_id: z.string().default("
|
|
2795
|
+
_id: z.string().default("tool_01KCHGGS0AHPJNKAJJ0SEDZDV6"),
|
|
2796
2796
|
path: z.string(),
|
|
2797
2797
|
key: z.string(),
|
|
2798
2798
|
display_name: z.string().optional(),
|
|
@@ -2845,7 +2845,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
2845
2845
|
z.ZodTypeDef,
|
|
2846
2846
|
ResponseBodyMCPTool
|
|
2847
2847
|
> = z.object({
|
|
2848
|
-
id: z.string().default("
|
|
2848
|
+
id: z.string().default("tool_01KCHGGS0AHPJNKAJJ0SEDZDV6"),
|
|
2849
2849
|
path: z.string(),
|
|
2850
2850
|
key: z.string(),
|
|
2851
2851
|
displayName: z.string().optional(),
|
|
@@ -3196,7 +3196,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3196
3196
|
z.ZodTypeDef,
|
|
3197
3197
|
unknown
|
|
3198
3198
|
> = z.object({
|
|
3199
|
-
_id: z.string().default("
|
|
3199
|
+
_id: z.string().default("tool_01KCHGGS00GTA63HT000QFNQ88"),
|
|
3200
3200
|
path: z.string(),
|
|
3201
3201
|
key: z.string(),
|
|
3202
3202
|
display_name: z.string().optional(),
|
|
@@ -3247,7 +3247,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3247
3247
|
z.ZodTypeDef,
|
|
3248
3248
|
ResponseBodyHTTPTool
|
|
3249
3249
|
> = z.object({
|
|
3250
|
-
id: z.string().default("
|
|
3250
|
+
id: z.string().default("tool_01KCHGGS00GTA63HT000QFNQ88"),
|
|
3251
3251
|
path: z.string(),
|
|
3252
3252
|
key: z.string(),
|
|
3253
3253
|
displayName: z.string().optional(),
|
|
@@ -3412,7 +3412,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3412
3412
|
z.ZodTypeDef,
|
|
3413
3413
|
unknown
|
|
3414
3414
|
> = z.object({
|
|
3415
|
-
_id: z.string().default("
|
|
3415
|
+
_id: z.string().default("tool_01KCHGGRZY9JRZPQM7HVET1Y9N"),
|
|
3416
3416
|
path: z.string(),
|
|
3417
3417
|
key: z.string(),
|
|
3418
3418
|
display_name: z.string().optional(),
|
|
@@ -3464,7 +3464,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3464
3464
|
z.ZodTypeDef,
|
|
3465
3465
|
ResponseBodyJSONSchemaTool
|
|
3466
3466
|
> = z.object({
|
|
3467
|
-
id: z.string().default("
|
|
3467
|
+
id: z.string().default("tool_01KCHGGRZY9JRZPQM7HVET1Y9N"),
|
|
3468
3468
|
path: z.string(),
|
|
3469
3469
|
key: z.string(),
|
|
3470
3470
|
displayName: z.string().optional(),
|
|
@@ -3645,7 +3645,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3645
3645
|
z.ZodTypeDef,
|
|
3646
3646
|
unknown
|
|
3647
3647
|
> = z.object({
|
|
3648
|
-
_id: z.string().default("
|
|
3648
|
+
_id: z.string().default("tool_01KCHGGRZVNQBVT84FDDR6SY29"),
|
|
3649
3649
|
path: z.string(),
|
|
3650
3650
|
key: z.string(),
|
|
3651
3651
|
display_name: z.string().optional(),
|
|
@@ -3696,7 +3696,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
3696
3696
|
z.ZodTypeDef,
|
|
3697
3697
|
ResponseBodyFunctionTool
|
|
3698
3698
|
> = z.object({
|
|
3699
|
-
id: z.string().default("
|
|
3699
|
+
id: z.string().default("tool_01KCHGGRZVNQBVT84FDDR6SY29"),
|
|
3700
3700
|
path: z.string(),
|
|
3701
3701
|
key: z.string(),
|
|
3702
3702
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-12-
|
|
122
|
+
"2025-12-15T17:21:40.652Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-12-
|
|
155
|
+
created: z.date().default(() => new Date("2025-12-15T17:21:40.652Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-12-
|
|
160
|
+
"2025-12-15T17:21:40.652Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-12-
|
|
193
|
+
created: z.date().default(() => new Date("2025-12-15T17:21:40.652Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-12-
|
|
199
|
+
"2025-12-15T17:21:40.652Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-12-
|
|
232
|
+
created: z.date().default(() => new Date("2025-12-15T17:21:40.652Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -248,7 +248,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
|
|
|
248
248
|
z.ZodTypeDef,
|
|
249
249
|
unknown
|
|
250
250
|
> = z.object({
|
|
251
|
-
_id: z.string().default("
|
|
251
|
+
_id: z.string().default("conv_01kchggrrhvqzzc9454w07905s"),
|
|
252
252
|
entityId: z.string(),
|
|
253
253
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
254
254
|
displayName: z.string(),
|
|
@@ -282,7 +282,7 @@ export const GenerateConversationNameResponseBody$outboundSchema: z.ZodType<
|
|
|
282
282
|
z.ZodTypeDef,
|
|
283
283
|
GenerateConversationNameResponseBody
|
|
284
284
|
> = z.object({
|
|
285
|
-
id: z.string().default("
|
|
285
|
+
id: z.string().default("conv_01kchggrrhvqzzc9454w07905s"),
|
|
286
286
|
entityId: z.string(),
|
|
287
287
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
288
288
|
displayName: z.string(),
|
|
@@ -863,7 +863,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
863
863
|
z.ZodTypeDef,
|
|
864
864
|
unknown
|
|
865
865
|
> = z.object({
|
|
866
|
-
_id: z.string().default("
|
|
866
|
+
_id: z.string().default("tool_01KCHGGRZ6P2VZ4C9MW17209BG"),
|
|
867
867
|
path: z.string(),
|
|
868
868
|
key: z.string(),
|
|
869
869
|
display_name: z.string().optional(),
|
|
@@ -915,7 +915,7 @@ export const DataCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
915
915
|
z.ZodTypeDef,
|
|
916
916
|
DataCodeExecutionTool
|
|
917
917
|
> = z.object({
|
|
918
|
-
id: z.string().default("
|
|
918
|
+
id: z.string().default("tool_01KCHGGRZ6P2VZ4C9MW17209BG"),
|
|
919
919
|
path: z.string(),
|
|
920
920
|
key: z.string(),
|
|
921
921
|
displayName: z.string().optional(),
|
|
@@ -1074,7 +1074,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1074
1074
|
z.ZodTypeDef,
|
|
1075
1075
|
unknown
|
|
1076
1076
|
> = z.object({
|
|
1077
|
-
id: z.string().default("
|
|
1077
|
+
id: z.string().default("01KCHGGRZ52W0H1FMZYZG9TBFD"),
|
|
1078
1078
|
name: z.string(),
|
|
1079
1079
|
description: z.string().optional(),
|
|
1080
1080
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -1093,7 +1093,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1093
1093
|
z.ZodTypeDef,
|
|
1094
1094
|
DataTools
|
|
1095
1095
|
> = z.object({
|
|
1096
|
-
id: z.string().default("
|
|
1096
|
+
id: z.string().default("01KCHGGRZ52W0H1FMZYZG9TBFD"),
|
|
1097
1097
|
name: z.string(),
|
|
1098
1098
|
description: z.string().optional(),
|
|
1099
1099
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1178,7 +1178,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
1178
1178
|
z.ZodTypeDef,
|
|
1179
1179
|
unknown
|
|
1180
1180
|
> = z.object({
|
|
1181
|
-
_id: z.string().default("
|
|
1181
|
+
_id: z.string().default("tool_01KCHGGRZ4ZTCRAGHJJ5G1XVKE"),
|
|
1182
1182
|
path: z.string(),
|
|
1183
1183
|
key: z.string(),
|
|
1184
1184
|
display_name: z.string().optional(),
|
|
@@ -1229,7 +1229,7 @@ export const DataMCPTool$outboundSchema: z.ZodType<
|
|
|
1229
1229
|
z.ZodTypeDef,
|
|
1230
1230
|
DataMCPTool
|
|
1231
1231
|
> = z.object({
|
|
1232
|
-
id: z.string().default("
|
|
1232
|
+
id: z.string().default("tool_01KCHGGRZ4ZTCRAGHJJ5G1XVKE"),
|
|
1233
1233
|
path: z.string(),
|
|
1234
1234
|
key: z.string(),
|
|
1235
1235
|
displayName: z.string().optional(),
|
|
@@ -1563,7 +1563,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1563
1563
|
z.ZodTypeDef,
|
|
1564
1564
|
unknown
|
|
1565
1565
|
> = z.object({
|
|
1566
|
-
_id: z.string().default("
|
|
1566
|
+
_id: z.string().default("tool_01KCHGGRZ249SHG94KDQ22AWM6"),
|
|
1567
1567
|
path: z.string(),
|
|
1568
1568
|
key: z.string(),
|
|
1569
1569
|
display_name: z.string().optional(),
|
|
@@ -1614,7 +1614,7 @@ export const DataHTTPTool$outboundSchema: z.ZodType<
|
|
|
1614
1614
|
z.ZodTypeDef,
|
|
1615
1615
|
DataHTTPTool
|
|
1616
1616
|
> = z.object({
|
|
1617
|
-
id: z.string().default("
|
|
1617
|
+
id: z.string().default("tool_01KCHGGRZ249SHG94KDQ22AWM6"),
|
|
1618
1618
|
path: z.string(),
|
|
1619
1619
|
key: z.string(),
|
|
1620
1620
|
displayName: z.string().optional(),
|
|
@@ -1767,7 +1767,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1767
1767
|
z.ZodTypeDef,
|
|
1768
1768
|
unknown
|
|
1769
1769
|
> = z.object({
|
|
1770
|
-
_id: z.string().default("
|
|
1770
|
+
_id: z.string().default("tool_01KCHGGRZ0MS4839K4B8JFXHBN"),
|
|
1771
1771
|
path: z.string(),
|
|
1772
1772
|
key: z.string(),
|
|
1773
1773
|
display_name: z.string().optional(),
|
|
@@ -1819,7 +1819,7 @@ export const DataJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1819
1819
|
z.ZodTypeDef,
|
|
1820
1820
|
DataJSONSchemaTool
|
|
1821
1821
|
> = z.object({
|
|
1822
|
-
id: z.string().default("
|
|
1822
|
+
id: z.string().default("tool_01KCHGGRZ0MS4839K4B8JFXHBN"),
|
|
1823
1823
|
path: z.string(),
|
|
1824
1824
|
key: z.string(),
|
|
1825
1825
|
displayName: z.string().optional(),
|
|
@@ -1995,7 +1995,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1995
1995
|
z.ZodTypeDef,
|
|
1996
1996
|
unknown
|
|
1997
1997
|
> = z.object({
|
|
1998
|
-
_id: z.string().default("
|
|
1998
|
+
_id: z.string().default("tool_01KCHGGRYZK4B66E9Z3RD9E9MT"),
|
|
1999
1999
|
path: z.string(),
|
|
2000
2000
|
key: z.string(),
|
|
2001
2001
|
display_name: z.string().optional(),
|
|
@@ -2046,7 +2046,7 @@ export const DataFunctionTool$outboundSchema: z.ZodType<
|
|
|
2046
2046
|
z.ZodTypeDef,
|
|
2047
2047
|
DataFunctionTool
|
|
2048
2048
|
> = z.object({
|
|
2049
|
-
id: z.string().default("
|
|
2049
|
+
id: z.string().default("tool_01KCHGGRYZK4B66E9Z3RD9E9MT"),
|
|
2050
2050
|
path: z.string(),
|
|
2051
2051
|
key: z.string(),
|
|
2052
2052
|
displayName: z.string().optional(),
|
|
@@ -295,7 +295,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
295
295
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
296
296
|
.optional(),
|
|
297
297
|
updated: z.string().datetime({ offset: true }).default(
|
|
298
|
-
"2025-12-
|
|
298
|
+
"2025-12-15T17:21:37.883Z",
|
|
299
299
|
).transform(v => new Date(v)),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -335,7 +335,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
335
335
|
isActive: z.boolean(),
|
|
336
336
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
337
337
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
338
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
338
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.883Z"))
|
|
339
339
|
.transform(v => v.toISOString()),
|
|
340
340
|
}).transform((v) => {
|
|
341
341
|
return remap$(v, {
|