@orq-ai/node 4.3.14 → 4.3.16
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 +2 -2
- package/lib/config.js +2 -2
- 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/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/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/createeval.ts +1699 -657
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- 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/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +1017 -505
- package/packages/orq-rc/src/models/operations/invokeeval.ts +124 -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/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 +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- 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 +1092 -329
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/src/lib/config.ts +2 -2
- 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
|
@@ -182,12 +182,42 @@ export type InvokeEvalResponseBodyEvalsResponse200ApplicationJson7Value =
|
|
|
182
182
|
|
|
183
183
|
export type OriginalValue = number | boolean | string;
|
|
184
184
|
|
|
185
|
+
export type InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue =
|
|
186
|
+
| number
|
|
187
|
+
| boolean
|
|
188
|
+
| string;
|
|
189
|
+
|
|
190
|
+
export type Votes = {
|
|
191
|
+
model: string;
|
|
192
|
+
replacement: boolean;
|
|
193
|
+
success: boolean;
|
|
194
|
+
value?: number | boolean | string | undefined;
|
|
195
|
+
explanation?: string | undefined;
|
|
196
|
+
error?: string | undefined;
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
export type Stats = {
|
|
200
|
+
mean: number;
|
|
201
|
+
std: number;
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
export type ResponseBodyJury = {
|
|
205
|
+
judgesConfigured: number;
|
|
206
|
+
judgesSucceeded: number;
|
|
207
|
+
judgesFailed: number;
|
|
208
|
+
replacementsUsed: number;
|
|
209
|
+
tie: boolean;
|
|
210
|
+
votes: Array<Votes>;
|
|
211
|
+
stats?: Stats | undefined;
|
|
212
|
+
};
|
|
213
|
+
|
|
185
214
|
export type InvokeEvalResponseBodyEvalsResponseValue = {
|
|
186
215
|
workflowRunId: string;
|
|
187
216
|
value: number | boolean | string | null;
|
|
188
217
|
explanation?: string | null | undefined;
|
|
189
218
|
originalValue?: number | boolean | string | null | undefined;
|
|
190
219
|
originalExplanation?: string | null | undefined;
|
|
220
|
+
jury?: ResponseBodyJury | undefined;
|
|
191
221
|
};
|
|
192
222
|
|
|
193
223
|
export type InvokeEvalResponseBodyLLM = {
|
|
@@ -723,6 +753,99 @@ export function originalValueFromJSON(
|
|
|
723
753
|
);
|
|
724
754
|
}
|
|
725
755
|
|
|
756
|
+
/** @internal */
|
|
757
|
+
export const InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue$inboundSchema:
|
|
758
|
+
z.ZodType<
|
|
759
|
+
InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue,
|
|
760
|
+
z.ZodTypeDef,
|
|
761
|
+
unknown
|
|
762
|
+
> = z.union([z.number(), z.boolean(), z.string()]);
|
|
763
|
+
|
|
764
|
+
export function invokeEvalResponseBodyEvalsResponse200ApplicationJSON7ValueValueFromJSON(
|
|
765
|
+
jsonString: string,
|
|
766
|
+
): SafeParseResult<
|
|
767
|
+
InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue,
|
|
768
|
+
SDKValidationError
|
|
769
|
+
> {
|
|
770
|
+
return safeParse(
|
|
771
|
+
jsonString,
|
|
772
|
+
(x) =>
|
|
773
|
+
InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue$inboundSchema
|
|
774
|
+
.parse(JSON.parse(x)),
|
|
775
|
+
`Failed to parse 'InvokeEvalResponseBodyEvalsResponse200ApplicationJson7ValueValue' from JSON`,
|
|
776
|
+
);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
/** @internal */
|
|
780
|
+
export const Votes$inboundSchema: z.ZodType<Votes, z.ZodTypeDef, unknown> = z
|
|
781
|
+
.object({
|
|
782
|
+
model: z.string(),
|
|
783
|
+
replacement: z.boolean(),
|
|
784
|
+
success: z.boolean(),
|
|
785
|
+
value: z.union([z.number(), z.boolean(), z.string()]).optional(),
|
|
786
|
+
explanation: z.string().optional(),
|
|
787
|
+
error: z.string().optional(),
|
|
788
|
+
});
|
|
789
|
+
|
|
790
|
+
export function votesFromJSON(
|
|
791
|
+
jsonString: string,
|
|
792
|
+
): SafeParseResult<Votes, SDKValidationError> {
|
|
793
|
+
return safeParse(
|
|
794
|
+
jsonString,
|
|
795
|
+
(x) => Votes$inboundSchema.parse(JSON.parse(x)),
|
|
796
|
+
`Failed to parse 'Votes' from JSON`,
|
|
797
|
+
);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
/** @internal */
|
|
801
|
+
export const Stats$inboundSchema: z.ZodType<Stats, z.ZodTypeDef, unknown> = z
|
|
802
|
+
.object({
|
|
803
|
+
mean: z.number(),
|
|
804
|
+
std: z.number(),
|
|
805
|
+
});
|
|
806
|
+
|
|
807
|
+
export function statsFromJSON(
|
|
808
|
+
jsonString: string,
|
|
809
|
+
): SafeParseResult<Stats, SDKValidationError> {
|
|
810
|
+
return safeParse(
|
|
811
|
+
jsonString,
|
|
812
|
+
(x) => Stats$inboundSchema.parse(JSON.parse(x)),
|
|
813
|
+
`Failed to parse 'Stats' from JSON`,
|
|
814
|
+
);
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
/** @internal */
|
|
818
|
+
export const ResponseBodyJury$inboundSchema: z.ZodType<
|
|
819
|
+
ResponseBodyJury,
|
|
820
|
+
z.ZodTypeDef,
|
|
821
|
+
unknown
|
|
822
|
+
> = z.object({
|
|
823
|
+
judges_configured: z.number().int(),
|
|
824
|
+
judges_succeeded: z.number().int(),
|
|
825
|
+
judges_failed: z.number().int(),
|
|
826
|
+
replacements_used: z.number().int(),
|
|
827
|
+
tie: z.boolean(),
|
|
828
|
+
votes: z.array(z.lazy(() => Votes$inboundSchema)),
|
|
829
|
+
stats: z.lazy(() => Stats$inboundSchema).optional(),
|
|
830
|
+
}).transform((v) => {
|
|
831
|
+
return remap$(v, {
|
|
832
|
+
"judges_configured": "judgesConfigured",
|
|
833
|
+
"judges_succeeded": "judgesSucceeded",
|
|
834
|
+
"judges_failed": "judgesFailed",
|
|
835
|
+
"replacements_used": "replacementsUsed",
|
|
836
|
+
});
|
|
837
|
+
});
|
|
838
|
+
|
|
839
|
+
export function responseBodyJuryFromJSON(
|
|
840
|
+
jsonString: string,
|
|
841
|
+
): SafeParseResult<ResponseBodyJury, SDKValidationError> {
|
|
842
|
+
return safeParse(
|
|
843
|
+
jsonString,
|
|
844
|
+
(x) => ResponseBodyJury$inboundSchema.parse(JSON.parse(x)),
|
|
845
|
+
`Failed to parse 'ResponseBodyJury' from JSON`,
|
|
846
|
+
);
|
|
847
|
+
}
|
|
848
|
+
|
|
726
849
|
/** @internal */
|
|
727
850
|
export const InvokeEvalResponseBodyEvalsResponseValue$inboundSchema: z.ZodType<
|
|
728
851
|
InvokeEvalResponseBodyEvalsResponseValue,
|
|
@@ -735,6 +858,7 @@ export const InvokeEvalResponseBodyEvalsResponseValue$inboundSchema: z.ZodType<
|
|
|
735
858
|
original_value: z.nullable(z.union([z.number(), z.boolean(), z.string()]))
|
|
736
859
|
.optional(),
|
|
737
860
|
original_explanation: z.nullable(z.string()).optional(),
|
|
861
|
+
jury: z.lazy(() => ResponseBodyJury$inboundSchema).optional(),
|
|
738
862
|
}).transform((v) => {
|
|
739
863
|
return remap$(v, {
|
|
740
864
|
"workflow_run_id": "workflowRunId",
|
|
@@ -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-02-
|
|
1273
|
+
"2026-02-20T22:08:21.996Z",
|
|
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-02-
|
|
1323
|
+
"2026-02-20T22:08:21.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-02-
|
|
1372
|
+
"2026-02-20T22:08:21.995Z",
|
|
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-02-
|
|
1451
|
+
"2026-02-20T22:08:06.719Z",
|
|
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-02-
|
|
159
|
+
"2026-02-20T22:08:06.719Z",
|
|
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("01KHYHHHVT268B8JGEH0SYZ7DP"),
|
|
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-02-
|
|
230
|
+
"2026-02-20T22:08:06.719Z",
|
|
231
231
|
).transform(v => new Date(v)),
|
|
232
232
|
metrics: z.lazy(() => ListIdentitiesMetrics$inboundSchema),
|
|
233
233
|
}).transform((v) => {
|
|
@@ -1207,7 +1207,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
1207
1207
|
.default("orq"),
|
|
1208
1208
|
reviewed_by_id: z.string(),
|
|
1209
1209
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1210
|
-
"2026-02-
|
|
1210
|
+
"2026-02-20T22:08:22.014Z",
|
|
1211
1211
|
).transform(v => new Date(v)),
|
|
1212
1212
|
type: z.literal("string_array"),
|
|
1213
1213
|
values: z.array(z.string()),
|
|
@@ -1255,7 +1255,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
1255
1255
|
),
|
|
1256
1256
|
reviewed_by_id: z.string(),
|
|
1257
1257
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1258
|
-
"2026-02-
|
|
1258
|
+
"2026-02-20T22:08:22.013Z",
|
|
1259
1259
|
).transform(v => new Date(v)),
|
|
1260
1260
|
type: z.literal("number"),
|
|
1261
1261
|
value: z.number(),
|
|
@@ -1300,7 +1300,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
1300
1300
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
1301
1301
|
reviewed_by_id: z.string(),
|
|
1302
1302
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1303
|
-
"2026-02-
|
|
1303
|
+
"2026-02-20T22:08:22.013Z",
|
|
1304
1304
|
).transform(v => new Date(v)),
|
|
1305
1305
|
type: z.literal("string"),
|
|
1306
1306
|
value: z.string(),
|
|
@@ -1377,7 +1377,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1377
1377
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1378
1378
|
.optional(),
|
|
1379
1379
|
updated: z.string().datetime({ offset: true }).default(
|
|
1380
|
-
"2026-02-
|
|
1380
|
+
"2026-02-20T22:08:06.719Z",
|
|
1381
1381
|
).transform(v => new Date(v)),
|
|
1382
1382
|
}).transform((v) => {
|
|
1383
1383
|
return remap$(v, {
|
|
@@ -126,7 +126,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
126
126
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
127
127
|
.optional(),
|
|
128
128
|
updated: z.string().datetime({ offset: true }).default(
|
|
129
|
-
"2026-02-
|
|
129
|
+
"2026-02-20T22:08:06.719Z",
|
|
130
130
|
).transform(v => new Date(v)),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return remap$(v, {
|
|
@@ -118,7 +118,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
118
118
|
z.ZodTypeDef,
|
|
119
119
|
unknown
|
|
120
120
|
> = z.object({
|
|
121
|
-
_id: z.string().default("
|
|
121
|
+
_id: z.string().default("01KHYHHHVWDH25WGASECCZRD8C"),
|
|
122
122
|
display_name: z.string(),
|
|
123
123
|
description: z.string().optional(),
|
|
124
124
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -95,7 +95,7 @@ export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
95
95
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
96
96
|
.optional(),
|
|
97
97
|
updated: z.string().datetime({ offset: true }).default(
|
|
98
|
-
"2026-02-
|
|
98
|
+
"2026-02-20T22:08:06.719Z",
|
|
99
99
|
).transform(v => new Date(v)),
|
|
100
100
|
}).transform((v) => {
|
|
101
101
|
return remap$(v, {
|
|
@@ -754,7 +754,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
754
754
|
z.ZodTypeDef,
|
|
755
755
|
unknown
|
|
756
756
|
> = z.object({
|
|
757
|
-
_id: z.string().default("
|
|
757
|
+
_id: z.string().default("tool_01KHYHHHR8ZNFPWEBT5D010Z3K"),
|
|
758
758
|
path: z.string(),
|
|
759
759
|
key: z.string(),
|
|
760
760
|
display_name: z.string().optional(),
|
|
@@ -862,7 +862,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
862
862
|
z.ZodTypeDef,
|
|
863
863
|
unknown
|
|
864
864
|
> = z.object({
|
|
865
|
-
id: z.string().default("
|
|
865
|
+
id: z.string().default("01KHYHHHR7N8GE5WZ2SPXZE2ED"),
|
|
866
866
|
name: z.string(),
|
|
867
867
|
description: z.string().optional(),
|
|
868
868
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -918,7 +918,7 @@ export const RetrieveToolResponseBodyMCPTool$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_01KHYHHHR6ZBJVJ85PMGPAFED1"),
|
|
922
922
|
path: z.string(),
|
|
923
923
|
key: z.string(),
|
|
924
924
|
display_name: z.string().optional(),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
unknown
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
_id: z.string().default("
|
|
1114
|
+
_id: z.string().default("tool_01KHYHHHR5QWXYNK807G6R6V0X"),
|
|
1115
1115
|
path: z.string(),
|
|
1116
1116
|
key: z.string(),
|
|
1117
1117
|
display_name: z.string().optional(),
|
|
@@ -1209,7 +1209,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1209
1209
|
z.ZodTypeDef,
|
|
1210
1210
|
unknown
|
|
1211
1211
|
> = z.object({
|
|
1212
|
-
_id: z.string().default("
|
|
1212
|
+
_id: z.string().default("tool_01KHYHHHR3NY5JV5FK71VDY4PF"),
|
|
1213
1213
|
path: z.string(),
|
|
1214
1214
|
key: z.string(),
|
|
1215
1215
|
display_name: z.string().optional(),
|
|
@@ -1317,7 +1317,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
1317
1317
|
z.ZodTypeDef,
|
|
1318
1318
|
unknown
|
|
1319
1319
|
> = z.object({
|
|
1320
|
-
_id: z.string().default("
|
|
1320
|
+
_id: z.string().default("tool_01KHYHHHR1RCWK6CZBJ6TT0437"),
|
|
1321
1321
|
path: z.string(),
|
|
1322
1322
|
key: z.string(),
|
|
1323
1323
|
display_name: z.string().optional(),
|
|
@@ -4031,7 +4031,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4031
4031
|
z.ZodTypeDef,
|
|
4032
4032
|
Tools
|
|
4033
4033
|
> = z.object({
|
|
4034
|
-
id: z.string().default("
|
|
4034
|
+
id: z.string().default("01KHYHHH36B2JWK7ZTNB47K7HE"),
|
|
4035
4035
|
name: z.string(),
|
|
4036
4036
|
description: z.string().optional(),
|
|
4037
4037
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4103,7 +4103,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4103
4103
|
z.ZodTypeDef,
|
|
4104
4104
|
AgentToolInputRunTools
|
|
4105
4105
|
> = z.object({
|
|
4106
|
-
id: z.string().default("
|
|
4106
|
+
id: z.string().default("01KHYHHH65TAK8K7PM5V3S1BPX"),
|
|
4107
4107
|
name: z.string(),
|
|
4108
4108
|
description: z.string().optional(),
|
|
4109
4109
|
schema: z.lazy(() =>
|
|
@@ -226,7 +226,7 @@ export const UpdateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
226
226
|
z.ZodTypeDef,
|
|
227
227
|
unknown
|
|
228
228
|
> = z.object({
|
|
229
|
-
_id: z.string().default("
|
|
229
|
+
_id: z.string().default("conv_01khyhhh8q2zmatfr7bgxc3bcx"),
|
|
230
230
|
kind: UpdateConversationKind$inboundSchema,
|
|
231
231
|
displayName: z.string(),
|
|
232
232
|
createdAt: z.number(),
|
|
@@ -2358,7 +2358,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
2358
2358
|
.default("orq"),
|
|
2359
2359
|
reviewed_by_id: z.string(),
|
|
2360
2360
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2361
|
-
"2026-02-
|
|
2361
|
+
"2026-02-20T22:08:22.083Z",
|
|
2362
2362
|
).transform(v => new Date(v)),
|
|
2363
2363
|
type: z.literal("string_array"),
|
|
2364
2364
|
values: z.array(z.string()),
|
|
@@ -2404,7 +2404,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
2404
2404
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
2405
2405
|
reviewed_by_id: z.string(),
|
|
2406
2406
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2407
|
-
"2026-02-
|
|
2407
|
+
"2026-02-20T22:08:22.080Z",
|
|
2408
2408
|
).transform(v => new Date(v)),
|
|
2409
2409
|
type: z.literal("number"),
|
|
2410
2410
|
value: z.number(),
|
|
@@ -2449,7 +2449,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2449
2449
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2450
2450
|
reviewed_by_id: z.string(),
|
|
2451
2451
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2452
|
-
"2026-02-
|
|
2452
|
+
"2026-02-20T22:08:22.080Z",
|
|
2453
2453
|
).transform(v => new Date(v)),
|
|
2454
2454
|
type: z.literal("string"),
|
|
2455
2455
|
value: z.string(),
|
|
@@ -2530,7 +2530,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2530
2530
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2531
2531
|
.optional(),
|
|
2532
2532
|
updated: z.string().datetime({ offset: true }).default(
|
|
2533
|
-
"2026-02-
|
|
2533
|
+
"2026-02-20T22:08:06.719Z",
|
|
2534
2534
|
).transform(v => new Date(v)),
|
|
2535
2535
|
}).transform((v) => {
|
|
2536
2536
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2026-02-
|
|
185
|
+
"2026-02-20T22:08:06.719Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
152
152
|
z.ZodTypeDef,
|
|
153
153
|
unknown
|
|
154
154
|
> = z.object({
|
|
155
|
-
_id: z.string().default("
|
|
155
|
+
_id: z.string().default("01KHYHHHW1SQDQW5GX5YDE1W9W"),
|
|
156
156
|
display_name: z.string(),
|
|
157
157
|
description: z.string().optional(),
|
|
158
158
|
status: UpdateDatasourceStatus$inboundSchema,
|