@orq-ai/node 4.2.0-rc.55 → 4.2.0-rc.57
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 +232 -232
- package/bin/mcp-server.js.map +44 -44
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- 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/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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/createidentity.js +2 -2
- 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/getevals.js +28 -28
- 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/listidentities.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/retrieveidentity.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/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/updateidentity.js +2 -2
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- 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/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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/createidentity.ts +2 -2
- 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/getevals.ts +28 -28
- 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/listidentities.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/retrieveidentity.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/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/updateidentity.ts +2 -2
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -155,7 +155,7 @@ export const ConversationWithMessagesResponse$inboundSchema: z.ZodType<
|
|
|
155
155
|
z.ZodTypeDef,
|
|
156
156
|
unknown
|
|
157
157
|
> = z.object({
|
|
158
|
-
_id: z.string().default("
|
|
158
|
+
_id: z.string().default("conv_01kfj3rrmq80zsvp268ad1vxte"),
|
|
159
159
|
kind: ConversationWithMessagesResponseKind$inboundSchema,
|
|
160
160
|
displayName: z.string(),
|
|
161
161
|
createdAt: z.number(),
|
|
@@ -189,7 +189,7 @@ export const ConversationWithMessagesResponse$outboundSchema: z.ZodType<
|
|
|
189
189
|
z.ZodTypeDef,
|
|
190
190
|
ConversationWithMessagesResponse
|
|
191
191
|
> = z.object({
|
|
192
|
-
id: z.string().default("
|
|
192
|
+
id: z.string().default("conv_01kfj3rrmq80zsvp268ad1vxte"),
|
|
193
193
|
kind: ConversationWithMessagesResponseKind$outboundSchema,
|
|
194
194
|
displayName: z.string(),
|
|
195
195
|
createdAt: z.number(),
|
|
@@ -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_01kfj3rraaay0nfrc2bzw5jtnx"),
|
|
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_01kfj3rraaay0nfrc2bzw5jtnx"),
|
|
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_01kfj3rra3c0assd3c120070c7"),
|
|
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_01kfj3rra3c0assd3c120070c7"),
|
|
69
69
|
metadata: z.record(z.any()).optional(),
|
|
70
70
|
kind: z.literal("reasoning"),
|
|
71
71
|
reasoning: z.string(),
|
|
@@ -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
|
-
"2026-01-
|
|
170
|
+
"2026-01-22T05:45:08.395Z",
|
|
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("2026-01-
|
|
210
|
+
updated: z.date().default(() => new Date("2026-01-22T05:45:08.395Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -270,7 +270,7 @@ export const CreateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
270
270
|
z.ZodTypeDef,
|
|
271
271
|
unknown
|
|
272
272
|
> = z.object({
|
|
273
|
-
_id: z.string().default("
|
|
273
|
+
_id: z.string().default("conv_01kfj3rrmmffxhzfy065fbrpzc"),
|
|
274
274
|
kind: CreateConversationKind$inboundSchema,
|
|
275
275
|
displayName: z.string(),
|
|
276
276
|
createdAt: z.number(),
|
|
@@ -302,7 +302,7 @@ export const CreateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
302
302
|
z.ZodTypeDef,
|
|
303
303
|
CreateConversationResponseBody
|
|
304
304
|
> = z.object({
|
|
305
|
-
id: z.string().default("
|
|
305
|
+
id: z.string().default("conv_01kfj3rrmmffxhzfy065fbrpzc"),
|
|
306
306
|
kind: CreateConversationKind$outboundSchema,
|
|
307
307
|
displayName: z.string(),
|
|
308
308
|
createdAt: z.number(),
|
|
@@ -337,7 +337,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
337
337
|
z.ZodTypeDef,
|
|
338
338
|
unknown
|
|
339
339
|
> = z.object({
|
|
340
|
-
_id: z.string().default("
|
|
340
|
+
_id: z.string().default("reasoning_01kfj3rrnazvf6meffb6je94e6"),
|
|
341
341
|
metadata: z.record(z.any()).optional(),
|
|
342
342
|
kind: PartKind$inboundSchema,
|
|
343
343
|
reasoning: z.string(),
|
|
@@ -362,7 +362,7 @@ export const PartReasoningPart$outboundSchema: z.ZodType<
|
|
|
362
362
|
z.ZodTypeDef,
|
|
363
363
|
PartReasoningPart
|
|
364
364
|
> = z.object({
|
|
365
|
-
id: z.string().default("
|
|
365
|
+
id: z.string().default("reasoning_01kfj3rrnazvf6meffb6je94e6"),
|
|
366
366
|
metadata: z.record(z.any()).optional(),
|
|
367
367
|
kind: PartKind$outboundSchema,
|
|
368
368
|
reasoning: z.string(),
|
|
@@ -510,7 +510,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
510
510
|
z.ZodTypeDef,
|
|
511
511
|
unknown
|
|
512
512
|
> = z.object({
|
|
513
|
-
_id: z.string().default("
|
|
513
|
+
_id: z.string().default("reasoning_01kfj3rrn31fx1e1dj2jamt70z"),
|
|
514
514
|
metadata: z.record(z.any()).optional(),
|
|
515
515
|
kind: DeltaKind$inboundSchema,
|
|
516
516
|
reasoning: z.string(),
|
|
@@ -535,7 +535,7 @@ export const ReasoningPart$outboundSchema: z.ZodType<
|
|
|
535
535
|
z.ZodTypeDef,
|
|
536
536
|
ReasoningPart
|
|
537
537
|
> = z.object({
|
|
538
|
-
id: z.string().default("
|
|
538
|
+
id: z.string().default("reasoning_01kfj3rrn31fx1e1dj2jamt70z"),
|
|
539
539
|
metadata: z.record(z.any()).optional(),
|
|
540
540
|
kind: DeltaKind$outboundSchema,
|
|
541
541
|
reasoning: 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
|
-
"2026-01-
|
|
190
|
+
"2026-01-22T05:45:08.395Z",
|
|
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("2026-01-
|
|
229
|
+
updated: z.date().default(() => new Date("2026-01-22T05:45:08.395Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -3616,7 +3616,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
3616
3616
|
),
|
|
3617
3617
|
reviewed_by_id: z.string(),
|
|
3618
3618
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3619
|
-
"2026-01-
|
|
3619
|
+
"2026-01-22T05:45:22.258Z",
|
|
3620
3620
|
).transform(v => new Date(v)),
|
|
3621
3621
|
type: z.literal("string_array"),
|
|
3622
3622
|
values: z.array(z.string()),
|
|
@@ -3653,7 +3653,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
3653
3653
|
"orq",
|
|
3654
3654
|
),
|
|
3655
3655
|
reviewedById: z.string(),
|
|
3656
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3656
|
+
reviewedAt: z.date().default(() => new Date("2026-01-22T05:45:22.258Z"))
|
|
3657
3657
|
.transform(v => v.toISOString()),
|
|
3658
3658
|
type: z.literal("string_array"),
|
|
3659
3659
|
values: z.array(z.string()),
|
|
@@ -3709,7 +3709,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
3709
3709
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
3710
3710
|
reviewed_by_id: z.string(),
|
|
3711
3711
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3712
|
-
"2026-01-
|
|
3712
|
+
"2026-01-22T05:45:22.257Z",
|
|
3713
3713
|
).transform(v => new Date(v)),
|
|
3714
3714
|
type: z.literal("number"),
|
|
3715
3715
|
value: z.number(),
|
|
@@ -3744,7 +3744,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
3744
3744
|
humanReviewId: z.string(),
|
|
3745
3745
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
3746
3746
|
reviewedById: z.string(),
|
|
3747
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3747
|
+
reviewedAt: z.date().default(() => new Date("2026-01-22T05:45:22.257Z"))
|
|
3748
3748
|
.transform(v => v.toISOString()),
|
|
3749
3749
|
type: z.literal("number"),
|
|
3750
3750
|
value: z.number(),
|
|
@@ -3800,7 +3800,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
3800
3800
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
3801
3801
|
reviewed_by_id: z.string(),
|
|
3802
3802
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3803
|
-
"2026-01-
|
|
3803
|
+
"2026-01-22T05:45:22.257Z",
|
|
3804
3804
|
).transform(v => new Date(v)),
|
|
3805
3805
|
type: z.literal("string"),
|
|
3806
3806
|
value: z.string(),
|
|
@@ -3835,7 +3835,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
3835
3835
|
humanReviewId: z.string(),
|
|
3836
3836
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
3837
3837
|
reviewedById: z.string(),
|
|
3838
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3838
|
+
reviewedAt: z.date().default(() => new Date("2026-01-22T05:45:22.257Z"))
|
|
3839
3839
|
.transform(v => v.toISOString()),
|
|
3840
3840
|
type: z.literal("string"),
|
|
3841
3841
|
value: z.string(),
|
|
@@ -3940,7 +3940,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3940
3940
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3941
3941
|
.optional(),
|
|
3942
3942
|
updated: z.string().datetime({ offset: true }).default(
|
|
3943
|
-
"2026-01-
|
|
3943
|
+
"2026-01-22T05:45:08.395Z",
|
|
3944
3944
|
).transform(v => new Date(v)),
|
|
3945
3945
|
}).transform((v) => {
|
|
3946
3946
|
return remap$(v, {
|
|
@@ -4018,7 +4018,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
4018
4018
|
createdById: z.string().optional(),
|
|
4019
4019
|
updatedById: z.string().optional(),
|
|
4020
4020
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4021
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4021
|
+
updated: z.date().default(() => new Date("2026-01-22T05:45:08.395Z"))
|
|
4022
4022
|
.transform(v => v.toISOString()),
|
|
4023
4023
|
}).transform((v) => {
|
|
4024
4024
|
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("01KFJ3RSEMX5GJ6DZG87TVA014"),
|
|
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("01KFJ3RSEMX5GJ6DZG87TVA014"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2124,8 +2124,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2124
2124
|
> = z.object({
|
|
2125
2125
|
_id: z.string(),
|
|
2126
2126
|
description: z.string(),
|
|
2127
|
-
created: z.string().default("2026-01-
|
|
2128
|
-
updated: z.string().default("2026-01-
|
|
2127
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2128
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2129
2129
|
guardrail_config: z.union([
|
|
2130
2130
|
z.lazy(() =>
|
|
2131
2131
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2166,8 +2166,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
> = z.object({
|
|
2167
2167
|
id: z.string(),
|
|
2168
2168
|
description: z.string(),
|
|
2169
|
-
created: z.string().default("2026-01-
|
|
2170
|
-
updated: z.string().default("2026-01-
|
|
2169
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2170
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2171
2171
|
guardrailConfig: z.union([
|
|
2172
2172
|
z.lazy(() =>
|
|
2173
2173
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2426,8 +2426,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2426
2426
|
.object({
|
|
2427
2427
|
_id: z.string(),
|
|
2428
2428
|
description: z.string(),
|
|
2429
|
-
created: z.string().default("2026-01-
|
|
2430
|
-
updated: z.string().default("2026-01-
|
|
2429
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2430
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2431
2431
|
guardrail_config: z.union([
|
|
2432
2432
|
z.lazy(() =>
|
|
2433
2433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2471,8 +2471,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2471
2471
|
> = z.object({
|
|
2472
2472
|
id: z.string(),
|
|
2473
2473
|
description: z.string(),
|
|
2474
|
-
created: z.string().default("2026-01-
|
|
2475
|
-
updated: z.string().default("2026-01-
|
|
2474
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2475
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
2476
2476
|
guardrailConfig: z.union([
|
|
2477
2477
|
z.lazy(() =>
|
|
2478
2478
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -3980,8 +3980,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3980
3980
|
> = z.object({
|
|
3981
3981
|
_id: z.string(),
|
|
3982
3982
|
description: z.string(),
|
|
3983
|
-
created: z.string().default("2026-01-
|
|
3984
|
-
updated: z.string().default("2026-01-
|
|
3983
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
3984
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
3985
3985
|
guardrail_config: z.union([
|
|
3986
3986
|
z.lazy(() =>
|
|
3987
3987
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4088,8 +4088,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4088
4088
|
> = z.object({
|
|
4089
4089
|
id: z.string(),
|
|
4090
4090
|
description: z.string(),
|
|
4091
|
-
created: z.string().default("2026-01-
|
|
4092
|
-
updated: z.string().default("2026-01-
|
|
4091
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4092
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4093
4093
|
guardrailConfig: z.union([
|
|
4094
4094
|
z.lazy(() =>
|
|
4095
4095
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4384,8 +4384,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4384
4384
|
> = z.object({
|
|
4385
4385
|
_id: z.string(),
|
|
4386
4386
|
description: z.string(),
|
|
4387
|
-
created: z.string().default("2026-01-
|
|
4388
|
-
updated: z.string().default("2026-01-
|
|
4387
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4388
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4389
4389
|
guardrail_config: z.union([
|
|
4390
4390
|
z.lazy(() =>
|
|
4391
4391
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4426,8 +4426,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4426
4426
|
> = z.object({
|
|
4427
4427
|
id: z.string(),
|
|
4428
4428
|
description: z.string(),
|
|
4429
|
-
created: z.string().default("2026-01-
|
|
4430
|
-
updated: z.string().default("2026-01-
|
|
4429
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4430
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4431
4431
|
guardrailConfig: z.union([
|
|
4432
4432
|
z.lazy(() =>
|
|
4433
4433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4688,8 +4688,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4688
4688
|
> = z.object({
|
|
4689
4689
|
_id: z.string(),
|
|
4690
4690
|
description: z.string(),
|
|
4691
|
-
created: z.string().default("2026-01-
|
|
4692
|
-
updated: z.string().default("2026-01-
|
|
4691
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4692
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4693
4693
|
guardrail_config: z.union([
|
|
4694
4694
|
z.lazy(() =>
|
|
4695
4695
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4736,8 +4736,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4736
4736
|
> = z.object({
|
|
4737
4737
|
id: z.string(),
|
|
4738
4738
|
description: z.string(),
|
|
4739
|
-
created: z.string().default("2026-01-
|
|
4740
|
-
updated: z.string().default("2026-01-
|
|
4739
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4740
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4741
4741
|
guardrailConfig: z.union([
|
|
4742
4742
|
z.lazy(() =>
|
|
4743
4743
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4974,8 +4974,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4974
4974
|
> = z.object({
|
|
4975
4975
|
_id: z.string(),
|
|
4976
4976
|
description: z.string(),
|
|
4977
|
-
created: z.string().default("2026-01-
|
|
4978
|
-
updated: z.string().default("2026-01-
|
|
4977
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4978
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
4979
4979
|
guardrail_config: z.union([
|
|
4980
4980
|
z.lazy(() =>
|
|
4981
4981
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5014,8 +5014,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5014
5014
|
> = z.object({
|
|
5015
5015
|
id: z.string(),
|
|
5016
5016
|
description: z.string(),
|
|
5017
|
-
created: z.string().default("2026-01-
|
|
5018
|
-
updated: z.string().default("2026-01-
|
|
5017
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5018
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5019
5019
|
guardrailConfig: z.union([
|
|
5020
5020
|
z.lazy(() =>
|
|
5021
5021
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5248,8 +5248,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5248
5248
|
> = z.object({
|
|
5249
5249
|
_id: z.string(),
|
|
5250
5250
|
description: z.string(),
|
|
5251
|
-
created: z.string().default("2026-01-
|
|
5252
|
-
updated: z.string().default("2026-01-
|
|
5251
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5252
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5253
5253
|
guardrail_config: z.union([
|
|
5254
5254
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5255
5255
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5288,8 +5288,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5288
5288
|
> = z.object({
|
|
5289
5289
|
id: z.string(),
|
|
5290
5290
|
description: z.string(),
|
|
5291
|
-
created: z.string().default("2026-01-
|
|
5292
|
-
updated: z.string().default("2026-01-
|
|
5291
|
+
created: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5292
|
+
updated: z.string().default("2026-01-22T05:45:10.836Z"),
|
|
5293
5293
|
guardrailConfig: z.union([
|
|
5294
5294
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5295
5295
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -167,7 +167,7 @@ export const CreateIdentityResponseBody$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
|
-
"2026-01-
|
|
170
|
+
"2026-01-22T05:45:08.395Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateIdentityResponseBody$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("2026-01-
|
|
210
|
+
updated: z.date().default(() => new Date("2026-01-22T05:45:08.395Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -2462,7 +2462,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2462
2462
|
z.ZodTypeDef,
|
|
2463
2463
|
unknown
|
|
2464
2464
|
> = z.object({
|
|
2465
|
-
_id: z.string().default("
|
|
2465
|
+
_id: z.string().default("tool_01KFJ3RSAHCMTFSZFWS5MRSQ04"),
|
|
2466
2466
|
path: z.string(),
|
|
2467
2467
|
key: z.string(),
|
|
2468
2468
|
display_name: z.string().optional(),
|
|
@@ -2516,7 +2516,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2516
2516
|
z.ZodTypeDef,
|
|
2517
2517
|
ResponseBodyCodeExecutionTool
|
|
2518
2518
|
> = z.object({
|
|
2519
|
-
id: z.string().default("
|
|
2519
|
+
id: z.string().default("tool_01KFJ3RSAHCMTFSZFWS5MRSQ04"),
|
|
2520
2520
|
path: z.string(),
|
|
2521
2521
|
key: z.string(),
|
|
2522
2522
|
displayName: z.string().optional(),
|
|
@@ -2682,7 +2682,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2682
2682
|
z.ZodTypeDef,
|
|
2683
2683
|
unknown
|
|
2684
2684
|
> = z.object({
|
|
2685
|
-
id: z.string().default("
|
|
2685
|
+
id: z.string().default("01KFJ3RSAGR16CHS92H5JDDYRD"),
|
|
2686
2686
|
name: z.string(),
|
|
2687
2687
|
description: z.string().optional(),
|
|
2688
2688
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2701,7 +2701,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
z.ZodTypeDef,
|
|
2702
2702
|
ResponseBodyTools
|
|
2703
2703
|
> = z.object({
|
|
2704
|
-
id: z.string().default("
|
|
2704
|
+
id: z.string().default("01KFJ3RSAGR16CHS92H5JDDYRD"),
|
|
2705
2705
|
name: z.string(),
|
|
2706
2706
|
description: z.string().optional(),
|
|
2707
2707
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2796,7 +2796,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2796
2796
|
z.ZodTypeDef,
|
|
2797
2797
|
unknown
|
|
2798
2798
|
> = z.object({
|
|
2799
|
-
_id: z.string().default("
|
|
2799
|
+
_id: z.string().default("tool_01KFJ3RSAEFA93P299PHKXRRQK"),
|
|
2800
2800
|
path: z.string(),
|
|
2801
2801
|
key: z.string(),
|
|
2802
2802
|
display_name: z.string().optional(),
|
|
@@ -2849,7 +2849,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
2849
2849
|
z.ZodTypeDef,
|
|
2850
2850
|
ResponseBodyMCPTool
|
|
2851
2851
|
> = z.object({
|
|
2852
|
-
id: z.string().default("
|
|
2852
|
+
id: z.string().default("tool_01KFJ3RSAEFA93P299PHKXRRQK"),
|
|
2853
2853
|
path: z.string(),
|
|
2854
2854
|
key: z.string(),
|
|
2855
2855
|
displayName: z.string().optional(),
|
|
@@ -3200,7 +3200,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3200
3200
|
z.ZodTypeDef,
|
|
3201
3201
|
unknown
|
|
3202
3202
|
> = z.object({
|
|
3203
|
-
_id: z.string().default("
|
|
3203
|
+
_id: z.string().default("tool_01KFJ3RSA8Y877RG157H1AX6G6"),
|
|
3204
3204
|
path: z.string(),
|
|
3205
3205
|
key: z.string(),
|
|
3206
3206
|
display_name: z.string().optional(),
|
|
@@ -3251,7 +3251,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3251
3251
|
z.ZodTypeDef,
|
|
3252
3252
|
ResponseBodyHTTPTool
|
|
3253
3253
|
> = z.object({
|
|
3254
|
-
id: z.string().default("
|
|
3254
|
+
id: z.string().default("tool_01KFJ3RSA8Y877RG157H1AX6G6"),
|
|
3255
3255
|
path: z.string(),
|
|
3256
3256
|
key: z.string(),
|
|
3257
3257
|
displayName: z.string().optional(),
|
|
@@ -3416,7 +3416,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3416
3416
|
z.ZodTypeDef,
|
|
3417
3417
|
unknown
|
|
3418
3418
|
> = z.object({
|
|
3419
|
-
_id: z.string().default("
|
|
3419
|
+
_id: z.string().default("tool_01KFJ3RSA1330KVKK09HAG8BN1"),
|
|
3420
3420
|
path: z.string(),
|
|
3421
3421
|
key: z.string(),
|
|
3422
3422
|
display_name: z.string().optional(),
|
|
@@ -3468,7 +3468,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3468
3468
|
z.ZodTypeDef,
|
|
3469
3469
|
ResponseBodyJSONSchemaTool
|
|
3470
3470
|
> = z.object({
|
|
3471
|
-
id: z.string().default("
|
|
3471
|
+
id: z.string().default("tool_01KFJ3RSA1330KVKK09HAG8BN1"),
|
|
3472
3472
|
path: z.string(),
|
|
3473
3473
|
key: z.string(),
|
|
3474
3474
|
displayName: z.string().optional(),
|
|
@@ -3649,7 +3649,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3649
3649
|
z.ZodTypeDef,
|
|
3650
3650
|
unknown
|
|
3651
3651
|
> = z.object({
|
|
3652
|
-
_id: z.string().default("
|
|
3652
|
+
_id: z.string().default("tool_01KFJ3RS9WC9DZPMS8VKE4AQVG"),
|
|
3653
3653
|
path: z.string(),
|
|
3654
3654
|
key: z.string(),
|
|
3655
3655
|
display_name: z.string().optional(),
|
|
@@ -3700,7 +3700,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
3700
3700
|
z.ZodTypeDef,
|
|
3701
3701
|
ResponseBodyFunctionTool
|
|
3702
3702
|
> = z.object({
|
|
3703
|
-
id: z.string().default("
|
|
3703
|
+
id: z.string().default("tool_01KFJ3RS9WC9DZPMS8VKE4AQVG"),
|
|
3704
3704
|
path: z.string(),
|
|
3705
3705
|
key: z.string(),
|
|
3706
3706
|
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
|
-
"2026-01-
|
|
122
|
+
"2026-01-22T05:45:11.893Z",
|
|
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("2026-01-
|
|
155
|
+
created: z.date().default(() => new Date("2026-01-22T05:45:11.893Z"))
|
|
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
|
-
"2026-01-
|
|
160
|
+
"2026-01-22T05:45:11.893Z",
|
|
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("2026-01-
|
|
193
|
+
created: z.date().default(() => new Date("2026-01-22T05:45:11.893Z"))
|
|
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
|
-
"2026-01-
|
|
199
|
+
"2026-01-22T05:45:11.893Z",
|
|
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("2026-01-
|
|
232
|
+
created: z.date().default(() => new Date("2026-01-22T05:45:11.893Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
|
|
|
251
251
|
z.ZodTypeDef,
|
|
252
252
|
unknown
|
|
253
253
|
> = z.object({
|
|
254
|
-
_id: z.string().default("
|
|
254
|
+
_id: z.string().default("conv_01kfj3rrmpn0kq3v6ykr8zf2jw"),
|
|
255
255
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
256
256
|
displayName: z.string(),
|
|
257
257
|
createdAt: z.number(),
|
|
@@ -283,7 +283,7 @@ export const GenerateConversationNameResponseBody$outboundSchema: z.ZodType<
|
|
|
283
283
|
z.ZodTypeDef,
|
|
284
284
|
GenerateConversationNameResponseBody
|
|
285
285
|
> = z.object({
|
|
286
|
-
id: z.string().default("
|
|
286
|
+
id: z.string().default("conv_01kfj3rrmpn0kq3v6ykr8zf2jw"),
|
|
287
287
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
288
288
|
displayName: z.string(),
|
|
289
289
|
createdAt: z.number(),
|