@orq-ai/node 4.2.9 → 4.2.11
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/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/lib/config.js.map +1 -1
- package/models/components/conversationresponse.js +1 -1
- package/models/components/conversationwithmessagesresponse.js +1 -1
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createconversation.js +1 -1
- package/models/operations/createconversationresponse.js +2 -2
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +14 -14
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +1 -1
- package/models/operations/filelist.js +1 -1
- package/models/operations/fileupload.js +1 -1
- package/models/operations/generateconversationname.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +14 -14
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updateconversation.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +14 -14
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- 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/funcs/routerAudioTranscriptionsCreate.ts +31 -0
- package/packages/orq-rc/src/funcs/routerAudioTranslationsCreate.ts +31 -0
- package/packages/orq-rc/src/funcs/routerImagesEditsCreate.ts +38 -0
- package/packages/orq-rc/src/funcs/routerImagesVariationsCreate.ts +38 -0
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationresponse.ts +1 -1
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +1 -1
- package/packages/orq-rc/src/models/components/partdoneevent.ts +1 -1
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +22 -0
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +6 -0
- package/packages/orq-rc/src/models/operations/createcompletion.ts +432 -97
- package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
- package/packages/orq-rc/src/models/operations/createconversation.ts +1 -1
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createembedding.ts +383 -53
- package/packages/orq-rc/src/models/operations/createeval.ts +14 -14
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createimage.ts +382 -45
- package/packages/orq-rc/src/models/operations/createimageedit.ts +406 -73
- package/packages/orq-rc/src/models/operations/createimagevariation.ts +428 -78
- package/packages/orq-rc/src/models/operations/createprompt.ts +11 -0
- package/packages/orq-rc/src/models/operations/creatererank.ts +369 -54
- package/packages/orq-rc/src/models/operations/createspeech.ts +333 -61
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/createtranscription.ts +312 -15
- package/packages/orq-rc/src/models/operations/createtranslation.ts +307 -15
- package/packages/orq-rc/src/models/operations/fileget.ts +1 -1
- package/packages/orq-rc/src/models/operations/filelist.ts +1 -1
- package/packages/orq-rc/src/models/operations/fileupload.ts +1 -1
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +1 -1
- package/packages/orq-rc/src/models/operations/getallprompts.ts +5 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +14 -14
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +5 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +5 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -0
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +5 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +10 -0
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +13 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +13 -1
- package/packages/orq-rc/src/models/operations/updateagent.ts +22 -0
- package/packages/orq-rc/src/models/operations/updateconversation.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +14 -14
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +11 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/src/lib/config.ts +3 -3
- package/src/models/components/conversationresponse.ts +1 -1
- package/src/models/components/conversationwithmessagesresponse.ts +1 -1
- package/src/models/components/partdoneevent.ts +1 -1
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createconversation.ts +1 -1
- package/src/models/operations/createconversationresponse.ts +2 -2
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +14 -14
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +1 -1
- package/src/models/operations/filelist.ts +1 -1
- package/src/models/operations/fileupload.ts +1 -1
- package/src/models/operations/generateconversationname.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +14 -14
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updateconversation.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +14 -14
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -673,6 +673,10 @@ export type UpdatePromptPromptInput = {
|
|
|
673
673
|
* Model ID used to generate the response, like `openai/gpt-4o` or `anthropic/claude-3-5-sonnet-20241022`. For private models, use format: `{workspaceKey}@{provider}/{model}`. The full list of models can be found at https://docs.orq.ai/docs/ai-gateway-supported-models. Only chat models are supported.
|
|
674
674
|
*/
|
|
675
675
|
model?: string | null | undefined;
|
|
676
|
+
/**
|
|
677
|
+
* The name to display on the trace. If not specified, the default system name will be used.
|
|
678
|
+
*/
|
|
679
|
+
name?: string | undefined;
|
|
676
680
|
/**
|
|
677
681
|
* Parameters for audio output. Required when audio output is requested with modalities: ["audio"]. Learn more.
|
|
678
682
|
*/
|
|
@@ -2056,6 +2060,10 @@ export type UpdatePromptPromptsResponseMessages =
|
|
|
2056
2060
|
* Prompt configuration with model and messages. Use this instead of prompt_config.
|
|
2057
2061
|
*/
|
|
2058
2062
|
export type UpdatePromptPromptField = {
|
|
2063
|
+
/**
|
|
2064
|
+
* The name to display on the trace. If not specified, the default system name will be used.
|
|
2065
|
+
*/
|
|
2066
|
+
name?: string | undefined;
|
|
2059
2067
|
/**
|
|
2060
2068
|
* Parameters for audio output. Required when audio output is requested with modalities: ["audio"]. Learn more.
|
|
2061
2069
|
*/
|
|
@@ -3466,6 +3474,7 @@ export type UpdatePromptPromptInput$Outbound = {
|
|
|
3466
3474
|
>
|
|
3467
3475
|
| undefined;
|
|
3468
3476
|
model?: string | null | undefined;
|
|
3477
|
+
name?: string | undefined;
|
|
3469
3478
|
audio?: UpdatePromptAudio$Outbound | null | undefined;
|
|
3470
3479
|
frequency_penalty?: number | null | undefined;
|
|
3471
3480
|
max_tokens?: number | null | undefined;
|
|
@@ -3517,6 +3526,7 @@ export const UpdatePromptPromptInput$outboundSchema: z.ZodType<
|
|
|
3517
3526
|
]),
|
|
3518
3527
|
).optional(),
|
|
3519
3528
|
model: z.nullable(z.string()).optional(),
|
|
3529
|
+
name: z.string().optional(),
|
|
3520
3530
|
audio: z.nullable(z.lazy(() => UpdatePromptAudio$outboundSchema)).optional(),
|
|
3521
3531
|
frequencyPenalty: z.nullable(z.number()).optional(),
|
|
3522
3532
|
maxTokens: z.nullable(z.number().int()).optional(),
|
|
@@ -5299,6 +5309,7 @@ export const UpdatePromptPromptField$inboundSchema: z.ZodType<
|
|
|
5299
5309
|
z.ZodTypeDef,
|
|
5300
5310
|
unknown
|
|
5301
5311
|
> = z.object({
|
|
5312
|
+
name: z.string().optional(),
|
|
5302
5313
|
audio: z.nullable(z.lazy(() => UpdatePromptPromptsAudio$inboundSchema))
|
|
5303
5314
|
.optional(),
|
|
5304
5315
|
frequency_penalty: z.nullable(z.number()).optional(),
|
|
@@ -1402,7 +1402,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1402
1402
|
z.ZodTypeDef,
|
|
1403
1403
|
RequestBodyTools
|
|
1404
1404
|
> = z.object({
|
|
1405
|
-
id: z.string().default("
|
|
1405
|
+
id: z.string().default("01KFX4XN203WNFZPCMJ982KHYM"),
|
|
1406
1406
|
name: z.string(),
|
|
1407
1407
|
description: z.string().optional(),
|
|
1408
1408
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2080,7 +2080,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2080
2080
|
z.ZodTypeDef,
|
|
2081
2081
|
unknown
|
|
2082
2082
|
> = z.object({
|
|
2083
|
-
_id: z.string().default("
|
|
2083
|
+
_id: z.string().default("tool_01KFX4XN1VCRZBZFMXGG6SK2W7"),
|
|
2084
2084
|
path: z.string(),
|
|
2085
2085
|
key: z.string(),
|
|
2086
2086
|
display_name: z.string().optional(),
|
|
@@ -2185,7 +2185,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2185
2185
|
z.ZodTypeDef,
|
|
2186
2186
|
unknown
|
|
2187
2187
|
> = z.object({
|
|
2188
|
-
id: z.string().default("
|
|
2188
|
+
id: z.string().default("01KFX4XN1T68NSRR10W7D58E3V"),
|
|
2189
2189
|
name: z.string(),
|
|
2190
2190
|
description: z.string().optional(),
|
|
2191
2191
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2241,7 +2241,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2241
2241
|
z.ZodTypeDef,
|
|
2242
2242
|
unknown
|
|
2243
2243
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2244
|
+
_id: z.string().default("tool_01KFX4XN1S7FDCSE0R4RDHEX8Z"),
|
|
2245
2245
|
path: z.string(),
|
|
2246
2246
|
key: z.string(),
|
|
2247
2247
|
display_name: z.string().optional(),
|
|
@@ -2432,7 +2432,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2432
2432
|
z.ZodTypeDef,
|
|
2433
2433
|
unknown
|
|
2434
2434
|
> = z.object({
|
|
2435
|
-
_id: z.string().default("
|
|
2435
|
+
_id: z.string().default("tool_01KFX4XN1QM2FS2QXDXHSZ1VXP"),
|
|
2436
2436
|
path: z.string(),
|
|
2437
2437
|
key: z.string(),
|
|
2438
2438
|
display_name: z.string().optional(),
|
|
@@ -2529,7 +2529,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
z.ZodTypeDef,
|
|
2530
2530
|
unknown
|
|
2531
2531
|
> = z.object({
|
|
2532
|
-
_id: z.string().default("
|
|
2532
|
+
_id: z.string().default("tool_01KFX4XN1P2G1SEH8NDVFQ3SXF"),
|
|
2533
2533
|
path: z.string(),
|
|
2534
2534
|
key: z.string(),
|
|
2535
2535
|
display_name: z.string().optional(),
|
|
@@ -2634,7 +2634,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2634
2634
|
z.ZodTypeDef,
|
|
2635
2635
|
unknown
|
|
2636
2636
|
> = z.object({
|
|
2637
|
-
_id: z.string().default("
|
|
2637
|
+
_id: z.string().default("tool_01KFX4XN1MAB8E0PE7SD82TNKC"),
|
|
2638
2638
|
path: z.string(),
|
|
2639
2639
|
key: z.string(),
|
|
2640
2640
|
display_name: 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.2.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.2.
|
|
71
|
+
sdkVersion: "4.2.11",
|
|
72
|
+
genVersion: "2.801.0",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.2.11 2.801.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -107,7 +107,7 @@ export const ConversationResponse$inboundSchema: z.ZodType<
|
|
|
107
107
|
z.ZodTypeDef,
|
|
108
108
|
unknown
|
|
109
109
|
> = z.object({
|
|
110
|
-
_id: z.string().default("
|
|
110
|
+
_id: z.string().default("conv_01kfz7zgj9f36m15584hz8g828"),
|
|
111
111
|
kind: ConversationResponseKind$inboundSchema,
|
|
112
112
|
displayName: z.string(),
|
|
113
113
|
createdAt: z.number(),
|
|
@@ -122,7 +122,7 @@ export const ConversationWithMessagesResponse$inboundSchema: z.ZodType<
|
|
|
122
122
|
z.ZodTypeDef,
|
|
123
123
|
unknown
|
|
124
124
|
> = z.object({
|
|
125
|
-
_id: z.string().default("
|
|
125
|
+
_id: z.string().default("conv_01kfz7zgjfd23dsa9jqwk7pyf1"),
|
|
126
126
|
kind: ConversationWithMessagesResponseKind$inboundSchema,
|
|
127
127
|
displayName: z.string(),
|
|
128
128
|
createdAt: z.number(),
|
|
@@ -76,7 +76,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
76
76
|
z.ZodTypeDef,
|
|
77
77
|
unknown
|
|
78
78
|
> = z.object({
|
|
79
|
-
_id: z.string().default("
|
|
79
|
+
_id: z.string().default("reasoning_01kfz7zg93gmw2j0ye3zb90yz5"),
|
|
80
80
|
metadata: z.record(z.any()).optional(),
|
|
81
81
|
kind: PartKind$inboundSchema,
|
|
82
82
|
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_01kfz7zg8weevqqjkdeyhgzh02"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
134
134
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
135
135
|
.optional(),
|
|
136
136
|
updated: z.string().datetime({ offset: true }).default(
|
|
137
|
-
"2026-01-
|
|
137
|
+
"2026-01-27T08:08:52.242Z",
|
|
138
138
|
).transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const CreateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
z.ZodTypeDef,
|
|
202
202
|
unknown
|
|
203
203
|
> = z.object({
|
|
204
|
-
_id: z.string().default("
|
|
204
|
+
_id: z.string().default("conv_01kfz7zgjc256sz2th1fhvy7qt"),
|
|
205
205
|
kind: CreateConversationKind$inboundSchema,
|
|
206
206
|
displayName: z.string(),
|
|
207
207
|
createdAt: z.number(),
|
|
@@ -280,7 +280,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
280
280
|
z.ZodTypeDef,
|
|
281
281
|
unknown
|
|
282
282
|
> = z.object({
|
|
283
|
-
_id: z.string().default("
|
|
283
|
+
_id: z.string().default("reasoning_01kfz7zgkae48zpmj9at3fgkm2"),
|
|
284
284
|
metadata: z.record(z.any()).optional(),
|
|
285
285
|
kind: PartKind$inboundSchema,
|
|
286
286
|
reasoning: z.string(),
|
|
@@ -366,7 +366,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
366
366
|
z.ZodTypeDef,
|
|
367
367
|
unknown
|
|
368
368
|
> = z.object({
|
|
369
|
-
_id: z.string().default("
|
|
369
|
+
_id: z.string().default("reasoning_01kfz7zgk4eg2xd9eaet0fpfz7"),
|
|
370
370
|
metadata: z.record(z.any()).optional(),
|
|
371
371
|
kind: DeltaKind$inboundSchema,
|
|
372
372
|
reasoning: z.string(),
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-01-
|
|
141
|
+
"2026-01-27T08:08:52.242Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2353,7 +2353,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2353
2353
|
),
|
|
2354
2354
|
reviewed_by_id: z.string(),
|
|
2355
2355
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2356
|
-
"2026-01-
|
|
2356
|
+
"2026-01-27T08:09:05.023Z",
|
|
2357
2357
|
).transform(v => new Date(v)),
|
|
2358
2358
|
type: z.literal("string_array"),
|
|
2359
2359
|
values: z.array(z.string()),
|
|
@@ -2398,7 +2398,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2398
2398
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2399
2399
|
reviewed_by_id: z.string(),
|
|
2400
2400
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2401
|
-
"2026-01-
|
|
2401
|
+
"2026-01-27T08:09:05.023Z",
|
|
2402
2402
|
).transform(v => new Date(v)),
|
|
2403
2403
|
type: z.literal("number"),
|
|
2404
2404
|
value: z.number(),
|
|
@@ -2443,7 +2443,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2443
2443
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2444
2444
|
reviewed_by_id: z.string(),
|
|
2445
2445
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2446
|
-
"2026-01-
|
|
2446
|
+
"2026-01-27T08:09:05.022Z",
|
|
2447
2447
|
).transform(v => new Date(v)),
|
|
2448
2448
|
type: z.literal("string"),
|
|
2449
2449
|
value: z.string(),
|
|
@@ -2526,7 +2526,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2526
2526
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2527
2527
|
.optional(),
|
|
2528
2528
|
updated: z.string().datetime({ offset: true }).default(
|
|
2529
|
-
"2026-01-
|
|
2529
|
+
"2026-01-27T08:08:52.242Z",
|
|
2530
2530
|
).transform(v => new Date(v)),
|
|
2531
2531
|
}).transform((v) => {
|
|
2532
2532
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KFZ7ZH4RA36E8MDQ4VKWP5YZ"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -1569,8 +1569,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1569
1569
|
> = z.object({
|
|
1570
1570
|
_id: z.string(),
|
|
1571
1571
|
description: z.string(),
|
|
1572
|
-
created: z.string().default("2026-01-
|
|
1573
|
-
updated: z.string().default("2026-01-
|
|
1572
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1573
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1574
1574
|
guardrail_config: z.union([
|
|
1575
1575
|
z.lazy(() =>
|
|
1576
1576
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -1712,8 +1712,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
1712
1712
|
.object({
|
|
1713
1713
|
_id: z.string(),
|
|
1714
1714
|
description: z.string(),
|
|
1715
|
-
created: z.string().default("2026-01-
|
|
1716
|
-
updated: z.string().default("2026-01-
|
|
1715
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1716
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1717
1717
|
guardrail_config: z.union([
|
|
1718
1718
|
z.lazy(() =>
|
|
1719
1719
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2491,8 +2491,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
2491
2491
|
> = z.object({
|
|
2492
2492
|
_id: z.string(),
|
|
2493
2493
|
description: z.string(),
|
|
2494
|
-
created: z.string().default("2026-01-
|
|
2495
|
-
updated: z.string().default("2026-01-
|
|
2494
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2495
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2496
2496
|
guardrail_config: z.union([
|
|
2497
2497
|
z.lazy(() =>
|
|
2498
2498
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -2668,8 +2668,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2668
2668
|
> = z.object({
|
|
2669
2669
|
_id: z.string(),
|
|
2670
2670
|
description: z.string(),
|
|
2671
|
-
created: z.string().default("2026-01-
|
|
2672
|
-
updated: z.string().default("2026-01-
|
|
2671
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2672
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2673
2673
|
guardrail_config: z.union([
|
|
2674
2674
|
z.lazy(() =>
|
|
2675
2675
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -2813,8 +2813,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2813
2813
|
> = z.object({
|
|
2814
2814
|
_id: z.string(),
|
|
2815
2815
|
description: z.string(),
|
|
2816
|
-
created: z.string().default("2026-01-
|
|
2817
|
-
updated: z.string().default("2026-01-
|
|
2816
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2817
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2818
2818
|
guardrail_config: z.union([
|
|
2819
2819
|
z.lazy(() =>
|
|
2820
2820
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -2947,8 +2947,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
2947
2947
|
> = z.object({
|
|
2948
2948
|
_id: z.string(),
|
|
2949
2949
|
description: z.string(),
|
|
2950
|
-
created: z.string().default("2026-01-
|
|
2951
|
-
updated: z.string().default("2026-01-
|
|
2950
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2951
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2952
2952
|
guardrail_config: z.union([
|
|
2953
2953
|
z.lazy(() =>
|
|
2954
2954
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -3075,8 +3075,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3075
3075
|
> = z.object({
|
|
3076
3076
|
_id: z.string(),
|
|
3077
3077
|
description: z.string(),
|
|
3078
|
-
created: z.string().default("2026-01-
|
|
3079
|
-
updated: z.string().default("2026-01-
|
|
3078
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3079
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3080
3080
|
guardrail_config: z.union([
|
|
3081
3081
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3082
3082
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -139,7 +139,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
139
139
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
140
140
|
.optional(),
|
|
141
141
|
updated: z.string().datetime({ offset: true }).default(
|
|
142
|
-
"2026-01-
|
|
142
|
+
"2026-01-27T08:08:52.242Z",
|
|
143
143
|
).transform(v => new Date(v)),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return remap$(v, {
|
|
@@ -1899,7 +1899,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1899
1899
|
z.ZodTypeDef,
|
|
1900
1900
|
unknown
|
|
1901
1901
|
> = z.object({
|
|
1902
|
-
_id: z.string().default("
|
|
1902
|
+
_id: z.string().default("tool_01KFZ7ZH089KXM3WC2Q9EKC37X"),
|
|
1903
1903
|
path: z.string(),
|
|
1904
1904
|
key: z.string(),
|
|
1905
1905
|
display_name: z.string().optional(),
|
|
@@ -1998,7 +1998,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1998
1998
|
z.ZodTypeDef,
|
|
1999
1999
|
unknown
|
|
2000
2000
|
> = z.object({
|
|
2001
|
-
id: z.string().default("
|
|
2001
|
+
id: z.string().default("01KFZ7ZH07VXV8FBP2G4W43DET"),
|
|
2002
2002
|
name: z.string(),
|
|
2003
2003
|
description: z.string().optional(),
|
|
2004
2004
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2052,7 +2052,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2052
2052
|
z.ZodTypeDef,
|
|
2053
2053
|
unknown
|
|
2054
2054
|
> = z.object({
|
|
2055
|
-
_id: z.string().default("
|
|
2055
|
+
_id: z.string().default("tool_01KFZ7ZH04V4WE4GA4PV4ZQ7AA"),
|
|
2056
2056
|
path: z.string(),
|
|
2057
2057
|
key: z.string(),
|
|
2058
2058
|
display_name: z.string().optional(),
|
|
@@ -2240,7 +2240,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2240
2240
|
z.ZodTypeDef,
|
|
2241
2241
|
unknown
|
|
2242
2242
|
> = z.object({
|
|
2243
|
-
_id: z.string().default("
|
|
2243
|
+
_id: z.string().default("tool_01KFZ7ZH01FWZCWRKFSAVRBF7D"),
|
|
2244
2244
|
path: z.string(),
|
|
2245
2245
|
key: z.string(),
|
|
2246
2246
|
display_name: z.string().optional(),
|
|
@@ -2335,7 +2335,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2335
2335
|
z.ZodTypeDef,
|
|
2336
2336
|
unknown
|
|
2337
2337
|
> = z.object({
|
|
2338
|
-
_id: z.string().default("
|
|
2338
|
+
_id: z.string().default("tool_01KFZ7ZGZZ2XRHC5BCS3PT00SQ"),
|
|
2339
2339
|
path: z.string(),
|
|
2340
2340
|
key: z.string(),
|
|
2341
2341
|
display_name: z.string().optional(),
|
|
@@ -2438,7 +2438,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2438
2438
|
z.ZodTypeDef,
|
|
2439
2439
|
unknown
|
|
2440
2440
|
> = z.object({
|
|
2441
|
-
_id: z.string().default("
|
|
2441
|
+
_id: z.string().default("tool_01KFZ7ZGZX2T16VA2RNX0H8YXH"),
|
|
2442
2442
|
path: z.string(),
|
|
2443
2443
|
key: z.string(),
|
|
2444
2444
|
display_name: z.string().optional(),
|
|
@@ -94,7 +94,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
94
94
|
file_name: z.string(),
|
|
95
95
|
workspace_id: z.string(),
|
|
96
96
|
created: z.string().datetime({ offset: true }).default(
|
|
97
|
-
"2026-01-
|
|
97
|
+
"2026-01-27T08:08:55.349Z",
|
|
98
98
|
).transform(v => new Date(v)),
|
|
99
99
|
}).transform((v) => {
|
|
100
100
|
return remap$(v, {
|
|
@@ -125,7 +125,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
125
125
|
file_name: z.string(),
|
|
126
126
|
workspace_id: z.string(),
|
|
127
127
|
created: z.string().datetime({ offset: true }).default(
|
|
128
|
-
"2026-01-
|
|
128
|
+
"2026-01-27T08:08:55.349Z",
|
|
129
129
|
).transform(v => new Date(v)),
|
|
130
130
|
}).transform((v) => {
|
|
131
131
|
return remap$(v, {
|
|
@@ -148,7 +148,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
148
148
|
file_name: z.string(),
|
|
149
149
|
workspace_id: z.string(),
|
|
150
150
|
created: z.string().datetime({ offset: true }).default(
|
|
151
|
-
"2026-01-
|
|
151
|
+
"2026-01-27T08:08:55.349Z",
|
|
152
152
|
).transform(v => new Date(v)),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
|
|
|
180
180
|
z.ZodTypeDef,
|
|
181
181
|
unknown
|
|
182
182
|
> = z.object({
|
|
183
|
-
_id: z.string().default("
|
|
183
|
+
_id: z.string().default("conv_01kfz7zgjdvh1efg02bfe9dana"),
|
|
184
184
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
185
185
|
displayName: z.string(),
|
|
186
186
|
createdAt: z.number(),
|
|
@@ -768,7 +768,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
768
768
|
z.ZodTypeDef,
|
|
769
769
|
unknown
|
|
770
770
|
> = z.object({
|
|
771
|
-
_id: z.string().default("
|
|
771
|
+
_id: z.string().default("tool_01KFZ7ZGZC7JQ0B5R75728HVV2"),
|
|
772
772
|
path: z.string(),
|
|
773
773
|
key: z.string(),
|
|
774
774
|
display_name: z.string().optional(),
|
|
@@ -867,7 +867,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
867
867
|
z.ZodTypeDef,
|
|
868
868
|
unknown
|
|
869
869
|
> = z.object({
|
|
870
|
-
id: z.string().default("
|
|
870
|
+
id: z.string().default("01KFZ7ZGZB10Q7KHJEHM2S86PH"),
|
|
871
871
|
name: z.string(),
|
|
872
872
|
description: z.string().optional(),
|
|
873
873
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -918,7 +918,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
918
918
|
z.ZodTypeDef,
|
|
919
919
|
unknown
|
|
920
920
|
> = z.object({
|
|
921
|
-
_id: z.string().default("
|
|
921
|
+
_id: z.string().default("tool_01KFZ7ZGZ9FP12EYZ0Z6MR6N5J"),
|
|
922
922
|
path: z.string(),
|
|
923
923
|
key: z.string(),
|
|
924
924
|
display_name: z.string().optional(),
|
|
@@ -1105,7 +1105,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1105
1105
|
z.ZodTypeDef,
|
|
1106
1106
|
unknown
|
|
1107
1107
|
> = z.object({
|
|
1108
|
-
_id: z.string().default("
|
|
1108
|
+
_id: z.string().default("tool_01KFZ7ZGZ6N8K9VEB65C6R9C1X"),
|
|
1109
1109
|
path: z.string(),
|
|
1110
1110
|
key: z.string(),
|
|
1111
1111
|
display_name: z.string().optional(),
|
|
@@ -1200,7 +1200,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1200
1200
|
z.ZodTypeDef,
|
|
1201
1201
|
unknown
|
|
1202
1202
|
> = z.object({
|
|
1203
|
-
_id: z.string().default("
|
|
1203
|
+
_id: z.string().default("tool_01KFZ7ZGZ317FH4QMW86EKB8N5"),
|
|
1204
1204
|
path: z.string(),
|
|
1205
1205
|
key: z.string(),
|
|
1206
1206
|
display_name: z.string().optional(),
|
|
@@ -1304,7 +1304,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1304
1304
|
z.ZodTypeDef,
|
|
1305
1305
|
unknown
|
|
1306
1306
|
> = z.object({
|
|
1307
|
-
_id: z.string().default("
|
|
1307
|
+
_id: z.string().default("tool_01KFZ7ZGZ1WNKSFP7KG5D0FP4P"),
|
|
1308
1308
|
path: z.string(),
|
|
1309
1309
|
key: z.string(),
|
|
1310
1310
|
display_name: z.string().optional(),
|
|
@@ -759,8 +759,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
759
759
|
> = z.object({
|
|
760
760
|
_id: z.string(),
|
|
761
761
|
description: z.string(),
|
|
762
|
-
created: z.string().default("2026-01-
|
|
763
|
-
updated: z.string().default("2026-01-
|
|
762
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
763
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
764
764
|
guardrail_config: z.union([
|
|
765
765
|
z.lazy(() =>
|
|
766
766
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -901,8 +901,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
901
901
|
> = z.object({
|
|
902
902
|
_id: z.string(),
|
|
903
903
|
description: z.string(),
|
|
904
|
-
created: z.string().default("2026-01-
|
|
905
|
-
updated: z.string().default("2026-01-
|
|
904
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
905
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
906
906
|
guardrail_config: z.union([
|
|
907
907
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
908
908
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1702,8 +1702,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
1702
1702
|
> = z.object({
|
|
1703
1703
|
_id: z.string(),
|
|
1704
1704
|
description: z.string(),
|
|
1705
|
-
created: z.string().default("2026-01-
|
|
1706
|
-
updated: z.string().default("2026-01-
|
|
1705
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1706
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1707
1707
|
guardrail_config: z.union([
|
|
1708
1708
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1709
1709
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1851,8 +1851,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
1851
1851
|
> = z.object({
|
|
1852
1852
|
_id: z.string(),
|
|
1853
1853
|
description: z.string(),
|
|
1854
|
-
created: z.string().default("2026-01-
|
|
1855
|
-
updated: z.string().default("2026-01-
|
|
1854
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1855
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1856
1856
|
guardrail_config: z.union([
|
|
1857
1857
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1858
1858
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1967,8 +1967,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
1967
1967
|
> = z.object({
|
|
1968
1968
|
_id: z.string(),
|
|
1969
1969
|
description: z.string(),
|
|
1970
|
-
created: z.string().default("2026-01-
|
|
1971
|
-
updated: z.string().default("2026-01-
|
|
1970
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1971
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1972
1972
|
guardrail_config: z.union([
|
|
1973
1973
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1974
1974
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -2102,8 +2102,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2102
2102
|
> = z.object({
|
|
2103
2103
|
_id: z.string(),
|
|
2104
2104
|
description: z.string(),
|
|
2105
|
-
created: z.string().default("2026-01-
|
|
2106
|
-
updated: z.string().default("2026-01-
|
|
2105
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2106
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2107
2107
|
guardrail_config: z.union([
|
|
2108
2108
|
z.lazy(() =>
|
|
2109
2109
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -2241,8 +2241,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
2241
2241
|
z.object({
|
|
2242
2242
|
_id: z.string(),
|
|
2243
2243
|
description: z.string(),
|
|
2244
|
-
created: z.string().default("2026-01-
|
|
2245
|
-
updated: z.string().default("2026-01-
|
|
2244
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2245
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2246
2246
|
guardrail_config: z.union([
|
|
2247
2247
|
z.lazy(() =>
|
|
2248
2248
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -1270,7 +1270,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1270
1270
|
),
|
|
1271
1271
|
reviewed_by_id: z.string(),
|
|
1272
1272
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1273
|
-
"2026-01-
|
|
1273
|
+
"2026-01-27T08:09:05.005Z",
|
|
1274
1274
|
).transform(v => new Date(v)),
|
|
1275
1275
|
type: z.literal("string_array"),
|
|
1276
1276
|
values: z.array(z.string()),
|
|
@@ -1320,7 +1320,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
1320
1320
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1321
1321
|
reviewed_by_id: z.string(),
|
|
1322
1322
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1323
|
-
"2026-01-
|
|
1323
|
+
"2026-01-27T08:09:04.996Z",
|
|
1324
1324
|
).transform(v => new Date(v)),
|
|
1325
1325
|
type: z.literal("number"),
|
|
1326
1326
|
value: z.number(),
|
|
@@ -1369,7 +1369,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
1369
1369
|
.default("orq"),
|
|
1370
1370
|
reviewed_by_id: z.string(),
|
|
1371
1371
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1372
|
-
"2026-01-
|
|
1372
|
+
"2026-01-27T08:09:04.996Z",
|
|
1373
1373
|
).transform(v => new Date(v)),
|
|
1374
1374
|
type: z.literal("string"),
|
|
1375
1375
|
value: z.string(),
|
|
@@ -1448,7 +1448,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
1448
1448
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1449
1449
|
.optional(),
|
|
1450
1450
|
updated: z.string().datetime({ offset: true }).default(
|
|
1451
|
-
"2026-01-
|
|
1451
|
+
"2026-01-27T08:08:52.242Z",
|
|
1452
1452
|
).transform(v => new Date(v)),
|
|
1453
1453
|
}).transform((v) => {
|
|
1454
1454
|
return remap$(v, {
|
|
@@ -156,7 +156,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
156
156
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
157
157
|
.optional(),
|
|
158
158
|
updated: z.string().datetime({ offset: true }).default(
|
|
159
|
-
"2026-01-
|
|
159
|
+
"2026-01-27T08:08:52.242Z",
|
|
160
160
|
).transform(v => new Date(v)),
|
|
161
161
|
}).transform((v) => {
|
|
162
162
|
return remap$(v, {
|
|
@@ -176,7 +176,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
176
176
|
z.ZodTypeDef,
|
|
177
177
|
unknown
|
|
178
178
|
> = z.object({
|
|
179
|
-
_id: z.string().default("
|
|
179
|
+
_id: z.string().default("01KFZ7ZH4NKDQGPQ86TJJ9HN96"),
|
|
180
180
|
display_name: z.string(),
|
|
181
181
|
description: z.string().optional(),
|
|
182
182
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -227,7 +227,7 @@ export const ListIdentitiesData$inboundSchema: z.ZodType<
|
|
|
227
227
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
228
228
|
.optional(),
|
|
229
229
|
updated: z.string().datetime({ offset: true }).default(
|
|
230
|
-
"2026-01-
|
|
230
|
+
"2026-01-27T08:08:52.242Z",
|
|
231
231
|
).transform(v => new Date(v)),
|
|
232
232
|
metrics: z.lazy(() => ListIdentitiesMetrics$inboundSchema),
|
|
233
233
|
}).transform((v) => {
|