@orq-ai/node 4.1.11 → 4.1.12
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 +219 -219
- package/bin/mcp-server.js.map +39 -39
- 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/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/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/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/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/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +9 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- 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/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/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/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/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
|
@@ -3598,7 +3598,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3598
3598
|
.default("orq"),
|
|
3599
3599
|
reviewed_by_id: z.string(),
|
|
3600
3600
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3601
|
-
"2026-01-
|
|
3601
|
+
"2026-01-13T14:59:09.599Z",
|
|
3602
3602
|
).transform(v => new Date(v)),
|
|
3603
3603
|
type: z.literal("string_array"),
|
|
3604
3604
|
values: z.array(z.string()),
|
|
@@ -3635,7 +3635,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3635
3635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3636
3636
|
.default("orq"),
|
|
3637
3637
|
reviewedById: z.string(),
|
|
3638
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3638
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.599Z"))
|
|
3639
3639
|
.transform(v => v.toISOString()),
|
|
3640
3640
|
type: z.literal("string_array"),
|
|
3641
3641
|
values: z.array(z.string()),
|
|
@@ -3698,7 +3698,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
3699
3699
|
reviewed_by_id: z.string(),
|
|
3700
3700
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3701
|
-
"2026-01-
|
|
3701
|
+
"2026-01-13T14:59:09.598Z",
|
|
3702
3702
|
).transform(v => new Date(v)),
|
|
3703
3703
|
type: z.literal("number"),
|
|
3704
3704
|
value: z.number(),
|
|
@@ -3736,7 +3736,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3736
3736
|
"orq",
|
|
3737
3737
|
),
|
|
3738
3738
|
reviewedById: z.string(),
|
|
3739
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3739
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.598Z"))
|
|
3740
3740
|
.transform(v => v.toISOString()),
|
|
3741
3741
|
type: z.literal("number"),
|
|
3742
3742
|
value: z.number(),
|
|
@@ -3798,7 +3798,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3798
3798
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3799
3799
|
reviewed_by_id: z.string(),
|
|
3800
3800
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3801
|
-
"2026-01-
|
|
3801
|
+
"2026-01-13T14:59:09.598Z",
|
|
3802
3802
|
).transform(v => new Date(v)),
|
|
3803
3803
|
type: z.literal("string"),
|
|
3804
3804
|
value: z.string(),
|
|
@@ -3833,7 +3833,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3833
3833
|
humanReviewId: z.string(),
|
|
3834
3834
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3835
3835
|
reviewedById: z.string(),
|
|
3836
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3836
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.598Z"))
|
|
3837
3837
|
.transform(v => v.toISOString()),
|
|
3838
3838
|
type: z.literal("string"),
|
|
3839
3839
|
value: z.string(),
|
|
@@ -3946,7 +3946,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3946
3946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3947
3947
|
.optional(),
|
|
3948
3948
|
updated: z.string().datetime({ offset: true }).default(
|
|
3949
|
-
"2026-01-
|
|
3949
|
+
"2026-01-13T14:58:54.165Z",
|
|
3950
3950
|
).transform(v => new Date(v)),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -4024,7 +4024,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
4024
4024
|
createdById: z.string().optional(),
|
|
4025
4025
|
updatedById: z.string().optional(),
|
|
4026
4026
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4027
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4027
|
+
updated: z.date().default(() => new Date("2026-01-13T14:58:54.165Z"))
|
|
4028
4028
|
.transform(v => v.toISOString()),
|
|
4029
4029
|
}).transform((v) => {
|
|
4030
4030
|
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
|
-
"2026-01-
|
|
259
|
+
"2026-01-13T14:58:54.165Z",
|
|
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("2026-01-
|
|
298
|
+
updated: z.date().default(() => new Date("2026-01-13T14:58:54.165Z"))
|
|
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("01KEVXWB0G4W9TC6GSCVJ16NG5"),
|
|
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("01KEVXWB0G4W9TC6GSCVJ16NG5"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2345,8 +2345,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2345
2345
|
> = z.object({
|
|
2346
2346
|
_id: z.string(),
|
|
2347
2347
|
description: z.string(),
|
|
2348
|
-
created: z.string().default("2026-01-
|
|
2349
|
-
updated: z.string().default("2026-01-
|
|
2348
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2349
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2350
2350
|
guardrail_config: z.union([
|
|
2351
2351
|
z.lazy(() =>
|
|
2352
2352
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2387,8 +2387,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2387
2387
|
> = z.object({
|
|
2388
2388
|
id: z.string(),
|
|
2389
2389
|
description: z.string(),
|
|
2390
|
-
created: z.string().default("2026-01-
|
|
2391
|
-
updated: z.string().default("2026-01-
|
|
2390
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2391
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2392
2392
|
guardrailConfig: z.union([
|
|
2393
2393
|
z.lazy(() =>
|
|
2394
2394
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2656,8 +2656,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2656
2656
|
> = z.object({
|
|
2657
2657
|
_id: z.string(),
|
|
2658
2658
|
description: z.string(),
|
|
2659
|
-
created: z.string().default("2026-01-
|
|
2660
|
-
updated: z.string().default("2026-01-
|
|
2659
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2660
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2661
2661
|
guardrail_config: z.union([
|
|
2662
2662
|
z.lazy(() =>
|
|
2663
2663
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2701,8 +2701,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
> = z.object({
|
|
2702
2702
|
id: z.string(),
|
|
2703
2703
|
description: z.string(),
|
|
2704
|
-
created: z.string().default("2026-01-
|
|
2705
|
-
updated: z.string().default("2026-01-
|
|
2704
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2705
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
2706
2706
|
guardrailConfig: z.union([
|
|
2707
2707
|
z.lazy(() =>
|
|
2708
2708
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4360,8 +4360,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4360
4360
|
> = z.object({
|
|
4361
4361
|
_id: z.string(),
|
|
4362
4362
|
description: z.string(),
|
|
4363
|
-
created: z.string().default("2026-01-
|
|
4364
|
-
updated: z.string().default("2026-01-
|
|
4363
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4364
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4365
4365
|
guardrail_config: z.union([
|
|
4366
4366
|
z.lazy(() =>
|
|
4367
4367
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4468,8 +4468,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4468
4468
|
> = z.object({
|
|
4469
4469
|
id: z.string(),
|
|
4470
4470
|
description: z.string(),
|
|
4471
|
-
created: z.string().default("2026-01-
|
|
4472
|
-
updated: z.string().default("2026-01-
|
|
4471
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4472
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4473
4473
|
guardrailConfig: z.union([
|
|
4474
4474
|
z.lazy(() =>
|
|
4475
4475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4762,8 +4762,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4762
4762
|
> = z.object({
|
|
4763
4763
|
_id: z.string(),
|
|
4764
4764
|
description: z.string(),
|
|
4765
|
-
created: z.string().default("2026-01-
|
|
4766
|
-
updated: z.string().default("2026-01-
|
|
4765
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4766
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4767
4767
|
guardrail_config: z.union([
|
|
4768
4768
|
z.lazy(() =>
|
|
4769
4769
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4804,8 +4804,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
id: z.string(),
|
|
4806
4806
|
description: z.string(),
|
|
4807
|
-
created: z.string().default("2026-01-
|
|
4808
|
-
updated: z.string().default("2026-01-
|
|
4807
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4808
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
4809
4809
|
guardrailConfig: z.union([
|
|
4810
4810
|
z.lazy(() =>
|
|
4811
4811
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -5071,8 +5071,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5071
5071
|
> = z.object({
|
|
5072
5072
|
_id: z.string(),
|
|
5073
5073
|
description: z.string(),
|
|
5074
|
-
created: z.string().default("2026-01-
|
|
5075
|
-
updated: z.string().default("2026-01-
|
|
5074
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5075
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5076
5076
|
guardrail_config: z.union([
|
|
5077
5077
|
z.lazy(() =>
|
|
5078
5078
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -5119,8 +5119,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5119
5119
|
> = z.object({
|
|
5120
5120
|
id: z.string(),
|
|
5121
5121
|
description: z.string(),
|
|
5122
|
-
created: z.string().default("2026-01-
|
|
5123
|
-
updated: z.string().default("2026-01-
|
|
5122
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5123
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5124
5124
|
guardrailConfig: z.union([
|
|
5125
5125
|
z.lazy(() =>
|
|
5126
5126
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -5370,8 +5370,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
5370
5370
|
> = z.object({
|
|
5371
5371
|
_id: z.string(),
|
|
5372
5372
|
description: z.string(),
|
|
5373
|
-
created: z.string().default("2026-01-
|
|
5374
|
-
updated: z.string().default("2026-01-
|
|
5373
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5374
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5375
5375
|
guardrail_config: z.union([
|
|
5376
5376
|
z.lazy(() =>
|
|
5377
5377
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5410,8 +5410,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5410
5410
|
> = z.object({
|
|
5411
5411
|
id: z.string(),
|
|
5412
5412
|
description: z.string(),
|
|
5413
|
-
created: z.string().default("2026-01-
|
|
5414
|
-
updated: z.string().default("2026-01-
|
|
5413
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5414
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5415
5415
|
guardrailConfig: z.union([
|
|
5416
5416
|
z.lazy(() =>
|
|
5417
5417
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5645,8 +5645,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5645
5645
|
> = z.object({
|
|
5646
5646
|
_id: z.string(),
|
|
5647
5647
|
description: z.string(),
|
|
5648
|
-
created: z.string().default("2026-01-
|
|
5649
|
-
updated: z.string().default("2026-01-
|
|
5648
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5649
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5650
5650
|
guardrail_config: z.union([
|
|
5651
5651
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5652
5652
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5685,8 +5685,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5685
5685
|
> = z.object({
|
|
5686
5686
|
id: z.string(),
|
|
5687
5687
|
description: z.string(),
|
|
5688
|
-
created: z.string().default("2026-01-
|
|
5689
|
-
updated: z.string().default("2026-01-
|
|
5688
|
+
created: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5689
|
+
updated: z.string().default("2026-01-13T14:58:56.564Z"),
|
|
5690
5690
|
guardrailConfig: z.union([
|
|
5691
5691
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5692
5692
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -1528,7 +1528,7 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1528
1528
|
z.ZodTypeDef,
|
|
1529
1529
|
unknown
|
|
1530
1530
|
> = z.object({
|
|
1531
|
-
id: z.string().default("
|
|
1531
|
+
id: z.string().default("01KEVXWAW8ETQH2FGSJS5BVXKT"),
|
|
1532
1532
|
name: z.string(),
|
|
1533
1533
|
description: z.string().optional(),
|
|
1534
1534
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
@@ -1547,7 +1547,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1547
1547
|
z.ZodTypeDef,
|
|
1548
1548
|
RequestBodyTools
|
|
1549
1549
|
> = z.object({
|
|
1550
|
-
id: z.string().default("
|
|
1550
|
+
id: z.string().default("01KEVXWAW8ETQH2FGSJS5BVXKT"),
|
|
1551
1551
|
name: z.string(),
|
|
1552
1552
|
description: z.string().optional(),
|
|
1553
1553
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2729,7 +2729,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2729
2729
|
z.ZodTypeDef,
|
|
2730
2730
|
unknown
|
|
2731
2731
|
> = z.object({
|
|
2732
|
-
_id: z.string().default("
|
|
2732
|
+
_id: z.string().default("tool_01KEVXWAVYMG7TZT2XEZD2AAZK"),
|
|
2733
2733
|
path: z.string(),
|
|
2734
2734
|
key: z.string(),
|
|
2735
2735
|
display_name: z.string().optional(),
|
|
@@ -2783,7 +2783,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2783
2783
|
z.ZodTypeDef,
|
|
2784
2784
|
UpdateToolResponseBodyCodeExecutionTool
|
|
2785
2785
|
> = z.object({
|
|
2786
|
-
id: z.string().default("
|
|
2786
|
+
id: z.string().default("tool_01KEVXWAVYMG7TZT2XEZD2AAZK"),
|
|
2787
2787
|
path: z.string(),
|
|
2788
2788
|
key: z.string(),
|
|
2789
2789
|
displayName: z.string().optional(),
|
|
@@ -2958,7 +2958,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2958
2958
|
z.ZodTypeDef,
|
|
2959
2959
|
unknown
|
|
2960
2960
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2961
|
+
id: z.string().default("01KEVXWAVXRWPNT1QWRNDYGBD6"),
|
|
2962
2962
|
name: z.string(),
|
|
2963
2963
|
description: z.string().optional(),
|
|
2964
2964
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2977,7 +2977,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2977
2977
|
z.ZodTypeDef,
|
|
2978
2978
|
UpdateToolResponseBodyTools
|
|
2979
2979
|
> = z.object({
|
|
2980
|
-
id: z.string().default("
|
|
2980
|
+
id: z.string().default("01KEVXWAVXRWPNT1QWRNDYGBD6"),
|
|
2981
2981
|
name: z.string(),
|
|
2982
2982
|
description: z.string().optional(),
|
|
2983
2983
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3078,7 +3078,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
3078
3078
|
z.ZodTypeDef,
|
|
3079
3079
|
unknown
|
|
3080
3080
|
> = z.object({
|
|
3081
|
-
_id: z.string().default("
|
|
3081
|
+
_id: z.string().default("tool_01KEVXWAVW24X59527S4K3MFFM"),
|
|
3082
3082
|
path: z.string(),
|
|
3083
3083
|
key: z.string(),
|
|
3084
3084
|
display_name: z.string().optional(),
|
|
@@ -3131,7 +3131,7 @@ export const UpdateToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
3131
3131
|
z.ZodTypeDef,
|
|
3132
3132
|
UpdateToolResponseBodyMCPTool
|
|
3133
3133
|
> = z.object({
|
|
3134
|
-
id: z.string().default("
|
|
3134
|
+
id: z.string().default("tool_01KEVXWAVW24X59527S4K3MFFM"),
|
|
3135
3135
|
path: z.string(),
|
|
3136
3136
|
key: z.string(),
|
|
3137
3137
|
displayName: z.string().optional(),
|
|
@@ -3499,7 +3499,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3499
3499
|
z.ZodTypeDef,
|
|
3500
3500
|
unknown
|
|
3501
3501
|
> = z.object({
|
|
3502
|
-
_id: z.string().default("
|
|
3502
|
+
_id: z.string().default("tool_01KEVXWAVRVMA3NJD486DG1H98"),
|
|
3503
3503
|
path: z.string(),
|
|
3504
3504
|
key: z.string(),
|
|
3505
3505
|
display_name: z.string().optional(),
|
|
@@ -3552,7 +3552,7 @@ export const UpdateToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3552
3552
|
z.ZodTypeDef,
|
|
3553
3553
|
UpdateToolResponseBodyHTTPTool
|
|
3554
3554
|
> = z.object({
|
|
3555
|
-
id: z.string().default("
|
|
3555
|
+
id: z.string().default("tool_01KEVXWAVRVMA3NJD486DG1H98"),
|
|
3556
3556
|
path: z.string(),
|
|
3557
3557
|
key: z.string(),
|
|
3558
3558
|
displayName: z.string().optional(),
|
|
@@ -3725,7 +3725,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3725
3725
|
z.ZodTypeDef,
|
|
3726
3726
|
unknown
|
|
3727
3727
|
> = z.object({
|
|
3728
|
-
_id: z.string().default("
|
|
3728
|
+
_id: z.string().default("tool_01KEVXWAVFZNGKET8EKE6X3W2Q"),
|
|
3729
3729
|
path: z.string(),
|
|
3730
3730
|
key: z.string(),
|
|
3731
3731
|
display_name: z.string().optional(),
|
|
@@ -3777,7 +3777,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3777
3777
|
z.ZodTypeDef,
|
|
3778
3778
|
UpdateToolResponseBodyJSONSchemaTool
|
|
3779
3779
|
> = z.object({
|
|
3780
|
-
id: z.string().default("
|
|
3780
|
+
id: z.string().default("tool_01KEVXWAVFZNGKET8EKE6X3W2Q"),
|
|
3781
3781
|
path: z.string(),
|
|
3782
3782
|
key: z.string(),
|
|
3783
3783
|
displayName: z.string().optional(),
|
|
@@ -3965,7 +3965,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3965
3965
|
z.ZodTypeDef,
|
|
3966
3966
|
unknown
|
|
3967
3967
|
> = z.object({
|
|
3968
|
-
_id: z.string().default("
|
|
3968
|
+
_id: z.string().default("tool_01KEVXWAVE06S9N0RG6VQQ33V3"),
|
|
3969
3969
|
path: z.string(),
|
|
3970
3970
|
key: z.string(),
|
|
3971
3971
|
display_name: z.string().optional(),
|
|
@@ -4016,7 +4016,7 @@ export const UpdateToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
4016
4016
|
z.ZodTypeDef,
|
|
4017
4017
|
UpdateToolResponseBodyFunctionTool
|
|
4018
4018
|
> = z.object({
|
|
4019
|
-
id: z.string().default("
|
|
4019
|
+
id: z.string().default("tool_01KEVXWAVE06S9N0RG6VQQ33V3"),
|
|
4020
4020
|
path: z.string(),
|
|
4021
4021
|
key: z.string(),
|
|
4022
4022
|
displayName: z.string().optional(),
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "4.1.
|
|
71
|
+
sdkVersion: "4.1.12",
|
|
72
72
|
genVersion: "2.794.1",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.1.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.1.12 2.794.1 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -128,7 +128,7 @@ export const ConversationResponse$inboundSchema: z.ZodType<
|
|
|
128
128
|
z.ZodTypeDef,
|
|
129
129
|
unknown
|
|
130
130
|
> = z.object({
|
|
131
|
-
_id: z.string().default("
|
|
131
|
+
_id: z.string().default("conv_01kewgpxxgbnr6cv0rv0kf5zck"),
|
|
132
132
|
entityId: z.string(),
|
|
133
133
|
kind: ConversationResponseKind$inboundSchema,
|
|
134
134
|
displayName: z.string(),
|
|
@@ -161,7 +161,7 @@ export const ConversationResponse$outboundSchema: z.ZodType<
|
|
|
161
161
|
z.ZodTypeDef,
|
|
162
162
|
ConversationResponse
|
|
163
163
|
> = z.object({
|
|
164
|
-
id: z.string().default("
|
|
164
|
+
id: z.string().default("conv_01kewgpxxgbnr6cv0rv0kf5zck"),
|
|
165
165
|
entityId: z.string(),
|
|
166
166
|
kind: ConversationResponseKind$outboundSchema,
|
|
167
167
|
displayName: z.string(),
|
|
@@ -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_01kewgpxmmw8wg59y98dzrs6wg"),
|
|
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_01kewgpxmmw8wg59y98dzrs6wg"),
|
|
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_01kewgpxm8h7ka9dxnstzw440w"),
|
|
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_01kewgpxm8h7ka9dxnstzw440w"),
|
|
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-13T20:28:00.980Z",
|
|
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-13T20:28:00.980Z"))
|
|
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_01kewgpxxjt98pxa2qbkfyrsvv"),
|
|
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_01kewgpxxjt98pxa2qbkfyrsvv"),
|
|
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
|
-
"2026-01-
|
|
190
|
+
"2026-01-13T20:28:00.980Z",
|
|
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-13T20:28:00.980Z"))
|
|
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
|
-
"2026-01-
|
|
3615
|
+
"2026-01-13T20:28:15.669Z",
|
|
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("2026-01-
|
|
3650
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T20:28:15.669Z"))
|
|
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
|
-
"2026-01-
|
|
3706
|
+
"2026-01-13T20:28:15.668Z",
|
|
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("2026-01-
|
|
3741
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T20:28:15.668Z"))
|
|
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
|
-
"2026-01-
|
|
3795
|
+
"2026-01-13T20:28:15.667Z",
|
|
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("2026-01-
|
|
3830
|
+
reviewedAt: z.date().default(() => new Date("2026-01-13T20:28:15.667Z"))
|
|
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
|
-
"2026-01-
|
|
3935
|
+
"2026-01-13T20:28:00.980Z",
|
|
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("2026-01-
|
|
4013
|
+
updated: z.date().default(() => new Date("2026-01-13T20:28:00.980Z"))
|
|
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("01KEWGPYAQPQYNG9KKT0JYKTBH"),
|
|
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("01KEWGPYAQPQYNG9KKT0JYKTBH"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|