@orq-ai/node 4.11.0-rc.30 → 4.11.0-rc.31
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/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- 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 +16 -16
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.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/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updatetool.js +7 -7
- package/package.json +5 -5
- package/sdk/feedback.d.ts +1 -4
- package/sdk/feedback.d.ts.map +1 -1
- package/sdk/feedback.js +1 -4
- package/sdk/feedback.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- 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 +16 -16
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- 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/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- 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/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.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 +16 -16
- package/src/models/operations/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +1 -4
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "2.0";
|
|
34
|
-
readonly sdkVersion: "4.11.0-rc.
|
|
34
|
+
readonly sdkVersion: "4.11.0-rc.31";
|
|
35
35
|
readonly genVersion: "2.907.0";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 4.11.0-rc.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 4.11.0-rc.31 2.907.0 2.0 @orq-ai/node";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "2.0",
|
|
31
|
-
sdkVersion: "4.11.0-rc.
|
|
31
|
+
sdkVersion: "4.11.0-rc.31",
|
|
32
32
|
genVersion: "2.907.0",
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.31 2.907.0 2.0 @orq-ai/node",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
|
@@ -43,7 +43,7 @@ const primitives_js_1 = require("../../lib/primitives.js");
|
|
|
43
43
|
const schemas_js_1 = require("../../lib/schemas.js");
|
|
44
44
|
/** @internal */
|
|
45
45
|
exports.ReasoningPart$inboundSchema = z.object({
|
|
46
|
-
_id: z.string().default("
|
|
46
|
+
_id: z.string().default("reasoning_01kvay6tw1t2zysb8qkn4ftbjt"),
|
|
47
47
|
metadata: z.record(z.any()).optional(),
|
|
48
48
|
kind: z.literal("reasoning"),
|
|
49
49
|
reasoning: z.string(),
|
|
@@ -79,7 +79,7 @@ exports.CreateDatasetResponseBody$inboundSchema = z.object({
|
|
|
79
79
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
80
80
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
81
81
|
.optional(),
|
|
82
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
82
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
83
83
|
}).transform((v) => {
|
|
84
84
|
return (0, primitives_js_1.remap)(v, {
|
|
85
85
|
"_id": "id",
|
|
@@ -828,7 +828,7 @@ exports.Evaluations3$inboundSchema = z.object({
|
|
|
828
828
|
parent_annotation_id: z.string().optional(),
|
|
829
829
|
explanation: z.string().optional(),
|
|
830
830
|
reviewed_by_id: z.string(),
|
|
831
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
831
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.350Z").transform(v => new Date(v)),
|
|
832
832
|
type: z.literal("string_array"),
|
|
833
833
|
values: z.array(z.string()),
|
|
834
834
|
}).transform((v) => {
|
|
@@ -875,7 +875,7 @@ exports.Evaluations2$inboundSchema = z.object({
|
|
|
875
875
|
parent_annotation_id: z.string().optional(),
|
|
876
876
|
explanation: z.string().optional(),
|
|
877
877
|
reviewed_by_id: z.string(),
|
|
878
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
878
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.349Z").transform(v => new Date(v)),
|
|
879
879
|
type: z.literal("number"),
|
|
880
880
|
value: z.number(),
|
|
881
881
|
}).transform((v) => {
|
|
@@ -923,7 +923,7 @@ exports.Evaluations1$inboundSchema = z.object({
|
|
|
923
923
|
parent_annotation_id: z.string().optional(),
|
|
924
924
|
explanation: z.string().optional(),
|
|
925
925
|
reviewed_by_id: z.string(),
|
|
926
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
926
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.347Z").transform(v => new Date(v)),
|
|
927
927
|
type: z.literal("string"),
|
|
928
928
|
value: z.string(),
|
|
929
929
|
}).transform((v) => {
|
|
@@ -972,7 +972,7 @@ exports.CreateDatasetItemResponseBody$inboundSchema = z.object({
|
|
|
972
972
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
973
973
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
974
974
|
.optional(),
|
|
975
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
975
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
976
976
|
}).transform((v) => {
|
|
977
977
|
return (0, primitives_js_1.remap)(v, {
|
|
978
978
|
"_id": "id",
|
|
@@ -159,7 +159,7 @@ function createDatasourceRequestToJSON(createDatasourceRequest) {
|
|
|
159
159
|
exports.CreateDatasourceStatus$inboundSchema = z.nativeEnum(exports.CreateDatasourceStatus);
|
|
160
160
|
/** @internal */
|
|
161
161
|
exports.CreateDatasourceResponseBody$inboundSchema = z.object({
|
|
162
|
-
_id: z.string().default("
|
|
162
|
+
_id: z.string().default("01KVAY6VC7XXYJTQS5KHYAXSB3"),
|
|
163
163
|
display_name: z.string(),
|
|
164
164
|
description: z.nullable(z.string()).optional(),
|
|
165
165
|
status: exports.CreateDatasourceStatus$inboundSchema,
|
|
@@ -756,8 +756,8 @@ exports.CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema
|
|
|
756
756
|
exports.Typescript$inboundSchema = z.object({
|
|
757
757
|
_id: z.string(),
|
|
758
758
|
description: z.string(),
|
|
759
|
-
created: z.string().default("2026-06-
|
|
760
|
-
updated: z.string().default("2026-06-
|
|
759
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
760
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
761
761
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
762
762
|
guardrail_config: z.nullable(z.union([
|
|
763
763
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
@@ -845,8 +845,8 @@ exports.Ragas$inboundSchema = z
|
|
|
845
845
|
.object({
|
|
846
846
|
_id: z.string(),
|
|
847
847
|
description: z.string(),
|
|
848
|
-
created: z.string().default("2026-06-
|
|
849
|
-
updated: z.string().default("2026-06-
|
|
848
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
849
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
850
850
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
851
851
|
guardrail_config: z.nullable(z.union([
|
|
852
852
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -1216,8 +1216,8 @@ function functionParamsFromJSON(jsonString) {
|
|
|
1216
1216
|
exports.CreateEvalResponseBodyFunction$inboundSchema = z.object({
|
|
1217
1217
|
_id: z.string(),
|
|
1218
1218
|
description: z.string(),
|
|
1219
|
-
created: z.string().default("2026-06-
|
|
1220
|
-
updated: z.string().default("2026-06-
|
|
1219
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1220
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1221
1221
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1222
1222
|
guardrail_config: z.nullable(z.union([
|
|
1223
1223
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -1332,8 +1332,8 @@ exports.CreateEvalResponseBodyEvalsType$inboundSchema = z.nativeEnum(exports.Cre
|
|
|
1332
1332
|
exports.ResponseBodyPython$inboundSchema = z.object({
|
|
1333
1333
|
_id: z.string(),
|
|
1334
1334
|
description: z.string(),
|
|
1335
|
-
created: z.string().default("2026-06-
|
|
1336
|
-
updated: z.string().default("2026-06-
|
|
1335
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1336
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1337
1337
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1338
1338
|
guardrail_config: z.nullable(z.union([
|
|
1339
1339
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1416,8 +1416,8 @@ exports.CreateEvalResponseBodyMethod$inboundSchema = z.nativeEnum(exports.Create
|
|
|
1416
1416
|
exports.CreateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1417
1417
|
_id: z.string(),
|
|
1418
1418
|
description: z.string(),
|
|
1419
|
-
created: z.string().default("2026-06-
|
|
1420
|
-
updated: z.string().default("2026-06-
|
|
1419
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1420
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1421
1421
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1422
1422
|
guardrail_config: z.nullable(z.union([
|
|
1423
1423
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1501,8 +1501,8 @@ exports.Json$inboundSchema = z
|
|
|
1501
1501
|
.object({
|
|
1502
1502
|
_id: z.string(),
|
|
1503
1503
|
description: z.string(),
|
|
1504
|
-
created: z.string().default("2026-06-
|
|
1505
|
-
updated: z.string().default("2026-06-
|
|
1504
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1505
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1506
1506
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1507
1507
|
guardrail_config: z.nullable(z.union([
|
|
1508
1508
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -1668,8 +1668,8 @@ function createEvalLLMJuryFromJSON(jsonString) {
|
|
|
1668
1668
|
exports.CreateEvalLlm2$inboundSchema = z.object({
|
|
1669
1669
|
_id: z.string(),
|
|
1670
1670
|
description: z.string(),
|
|
1671
|
-
created: z.string().default("2026-06-
|
|
1672
|
-
updated: z.string().default("2026-06-
|
|
1671
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1672
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1673
1673
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1674
1674
|
guardrail_config: z.nullable(z.union([
|
|
1675
1675
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema),
|
|
@@ -1768,8 +1768,8 @@ function createEvalLLMEvalsResponseCategoricalLabelsFromJSON(jsonString) {
|
|
|
1768
1768
|
exports.CreateEvalLlm1$inboundSchema = z.object({
|
|
1769
1769
|
_id: z.string(),
|
|
1770
1770
|
description: z.string(),
|
|
1771
|
-
created: z.string().default("2026-06-
|
|
1772
|
-
updated: z.string().default("2026-06-
|
|
1771
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1772
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1773
1773
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1774
1774
|
guardrail_config: z.nullable(z.union([
|
|
1775
1775
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema),
|
|
@@ -562,7 +562,7 @@ function responseBodyCodeToolFromJSON(jsonString) {
|
|
|
562
562
|
}
|
|
563
563
|
/** @internal */
|
|
564
564
|
exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
565
|
-
_id: z.string().default("
|
|
565
|
+
_id: z.string().default("tool_01KVAY6V7E8G1VRRXX1E5CSCJW"),
|
|
566
566
|
path: z.string(),
|
|
567
567
|
key: z.string(),
|
|
568
568
|
display_name: z.string().optional(),
|
|
@@ -614,7 +614,7 @@ function createToolResponseBodySchemaFromJSON(jsonString) {
|
|
|
614
614
|
}
|
|
615
615
|
/** @internal */
|
|
616
616
|
exports.ResponseBodyTools$inboundSchema = z.object({
|
|
617
|
-
id: z.string().default("
|
|
617
|
+
id: z.string().default("01KVAY6V7CT14V3R4JWC3CNMH9"),
|
|
618
618
|
name: z.string(),
|
|
619
619
|
description: z.string().optional(),
|
|
620
620
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -643,7 +643,7 @@ function responseBodyMcpFromJSON(jsonString) {
|
|
|
643
643
|
}
|
|
644
644
|
/** @internal */
|
|
645
645
|
exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
646
|
-
_id: z.string().default("
|
|
646
|
+
_id: z.string().default("tool_01KVAY6V7BHT5AJBWENK1BD62V"),
|
|
647
647
|
path: z.string(),
|
|
648
648
|
key: z.string(),
|
|
649
649
|
display_name: z.string().optional(),
|
|
@@ -730,7 +730,7 @@ function createToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
730
730
|
}
|
|
731
731
|
/** @internal */
|
|
732
732
|
exports.ResponseBodyHTTPTool$inboundSchema = z.object({
|
|
733
|
-
_id: z.string().default("
|
|
733
|
+
_id: z.string().default("tool_01KVAY6V785DPB35490S3EEHVC"),
|
|
734
734
|
path: z.string(),
|
|
735
735
|
key: z.string(),
|
|
736
736
|
display_name: z.string().optional(),
|
|
@@ -780,7 +780,7 @@ function responseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
780
780
|
}
|
|
781
781
|
/** @internal */
|
|
782
782
|
exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
783
|
-
_id: z.string().default("
|
|
783
|
+
_id: z.string().default("tool_01KVAY6V76SR9V34KM4WB604A6"),
|
|
784
784
|
path: z.string(),
|
|
785
785
|
key: z.string(),
|
|
786
786
|
display_name: z.string().optional(),
|
|
@@ -833,7 +833,7 @@ function createToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
833
833
|
}
|
|
834
834
|
/** @internal */
|
|
835
835
|
exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
836
|
-
_id: z.string().default("
|
|
836
|
+
_id: z.string().default("tool_01KVAY6V7467YGZ2TF2YT6EKYV"),
|
|
837
837
|
path: z.string(),
|
|
838
838
|
key: z.string(),
|
|
839
839
|
display_name: z.string().optional(),
|
|
@@ -196,7 +196,7 @@ function dataCodeToolFromJSON(jsonString) {
|
|
|
196
196
|
}
|
|
197
197
|
/** @internal */
|
|
198
198
|
exports.DataCodeExecutionTool$inboundSchema = z.object({
|
|
199
|
-
_id: z.string().default("
|
|
199
|
+
_id: z.string().default("tool_01KVAY6V6R6AANH7CHNRNCRF9X"),
|
|
200
200
|
path: z.string(),
|
|
201
201
|
key: z.string(),
|
|
202
202
|
display_name: z.string().optional(),
|
|
@@ -247,7 +247,7 @@ function getAllToolsDataSchemaFromJSON(jsonString) {
|
|
|
247
247
|
}
|
|
248
248
|
/** @internal */
|
|
249
249
|
exports.DataTools$inboundSchema = z.object({
|
|
250
|
-
id: z.string().default("
|
|
250
|
+
id: z.string().default("01KVAY6V6QSMJGZ5AJ8QFWKA4D"),
|
|
251
251
|
name: z.string(),
|
|
252
252
|
description: z.string().optional(),
|
|
253
253
|
schema: z.lazy(() => exports.GetAllToolsDataSchema$inboundSchema),
|
|
@@ -276,7 +276,7 @@ function dataMcpFromJSON(jsonString) {
|
|
|
276
276
|
}
|
|
277
277
|
/** @internal */
|
|
278
278
|
exports.DataMCPTool$inboundSchema = z.object({
|
|
279
|
-
_id: z.string().default("
|
|
279
|
+
_id: z.string().default("tool_01KVAY6V6PHJ3E3ZZ3CN6AST24"),
|
|
280
280
|
path: z.string(),
|
|
281
281
|
key: z.string(),
|
|
282
282
|
display_name: z.string().optional(),
|
|
@@ -362,7 +362,7 @@ function getAllToolsDataHttpFromJSON(jsonString) {
|
|
|
362
362
|
}
|
|
363
363
|
/** @internal */
|
|
364
364
|
exports.DataHTTPTool$inboundSchema = z.object({
|
|
365
|
-
_id: z.string().default("
|
|
365
|
+
_id: z.string().default("tool_01KVAY6V6MFTP8E198K7962K15"),
|
|
366
366
|
path: z.string(),
|
|
367
367
|
key: z.string(),
|
|
368
368
|
display_name: z.string().optional(),
|
|
@@ -412,7 +412,7 @@ function dataJsonSchemaFromJSON(jsonString) {
|
|
|
412
412
|
}
|
|
413
413
|
/** @internal */
|
|
414
414
|
exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
415
|
-
_id: z.string().default("
|
|
415
|
+
_id: z.string().default("tool_01KVAY6V6JM2F0M3VG23V2VN22"),
|
|
416
416
|
path: z.string(),
|
|
417
417
|
key: z.string(),
|
|
418
418
|
display_name: z.string().optional(),
|
|
@@ -466,7 +466,7 @@ function getAllToolsDataFunctionFromJSON(jsonString) {
|
|
|
466
466
|
}
|
|
467
467
|
/** @internal */
|
|
468
468
|
exports.DataFunctionTool$inboundSchema = z.object({
|
|
469
|
-
_id: z.string().default("
|
|
469
|
+
_id: z.string().default("tool_01KVAY6V6HY6HWQWDDZJAWMQSE"),
|
|
470
470
|
path: z.string(),
|
|
471
471
|
key: z.string(),
|
|
472
472
|
display_name: z.string().optional(),
|
|
@@ -328,8 +328,8 @@ exports.GetEvalsDataEvalsResponse200Type$inboundSchema = z.nativeEnum(exports.Ge
|
|
|
328
328
|
exports.DataTypescript$inboundSchema = z.object({
|
|
329
329
|
_id: z.string(),
|
|
330
330
|
description: z.string(),
|
|
331
|
-
created: z.string().default("2026-06-
|
|
332
|
-
updated: z.string().default("2026-06-
|
|
331
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
332
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
333
333
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
334
334
|
guardrail_config: z.nullable(z.union([
|
|
335
335
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -412,8 +412,8 @@ exports.DataRagasMetric$inboundSchema = z.nativeEnum(exports.DataRagasMetric);
|
|
|
412
412
|
exports.DataRagas$inboundSchema = z.object({
|
|
413
413
|
_id: z.string(),
|
|
414
414
|
description: z.string(),
|
|
415
|
-
created: z.string().default("2026-06-
|
|
416
|
-
updated: z.string().default("2026-06-
|
|
415
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
416
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
417
417
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
418
418
|
guardrail_config: z.nullable(z.union([
|
|
419
419
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -769,8 +769,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
769
769
|
exports.DataFunction$inboundSchema = z.object({
|
|
770
770
|
_id: z.string(),
|
|
771
771
|
description: z.string(),
|
|
772
|
-
created: z.string().default("2026-06-
|
|
773
|
-
updated: z.string().default("2026-06-
|
|
772
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
773
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
774
774
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
775
775
|
guardrail_config: z.nullable(z.union([
|
|
776
776
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -884,8 +884,8 @@ exports.GetEvalsDataType$inboundSchema = z.nativeEnum(exports.GetEvalsDataType);
|
|
|
884
884
|
exports.DataPython$inboundSchema = z.object({
|
|
885
885
|
_id: z.string(),
|
|
886
886
|
description: z.string(),
|
|
887
|
-
created: z.string().default("2026-06-
|
|
888
|
-
updated: z.string().default("2026-06-
|
|
887
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
888
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
889
889
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
890
890
|
guardrail_config: z.nullable(z.union([
|
|
891
891
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -972,8 +972,8 @@ exports.DataMethod$inboundSchema = z
|
|
|
972
972
|
exports.DataHTTP$inboundSchema = z.object({
|
|
973
973
|
_id: z.string(),
|
|
974
974
|
description: z.string(),
|
|
975
|
-
created: z.string().default("2026-06-
|
|
976
|
-
updated: z.string().default("2026-06-
|
|
975
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
976
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
977
977
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
978
978
|
guardrail_config: z.nullable(z.union([
|
|
979
979
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -1061,8 +1061,8 @@ exports.GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema = z
|
|
|
1061
1061
|
exports.DataJSON$inboundSchema = z.object({
|
|
1062
1062
|
_id: z.string(),
|
|
1063
1063
|
description: z.string(),
|
|
1064
|
-
created: z.string().default("2026-06-
|
|
1065
|
-
updated: z.string().default("2026-06-
|
|
1064
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1065
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1066
1066
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1067
1067
|
guardrail_config: z.nullable(z.union([
|
|
1068
1068
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -1229,8 +1229,8 @@ function getEvalsLLMJuryFromJSON(jsonString) {
|
|
|
1229
1229
|
exports.GetEvalsLlm2$inboundSchema = z.object({
|
|
1230
1230
|
_id: z.string(),
|
|
1231
1231
|
description: z.string(),
|
|
1232
|
-
created: z.string().default("2026-06-
|
|
1233
|
-
updated: z.string().default("2026-06-
|
|
1232
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1233
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1234
1234
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1235
1235
|
guardrail_config: z.nullable(z.union([
|
|
1236
1236
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyData1Boolean$inboundSchema),
|
|
@@ -1329,8 +1329,8 @@ function getEvalsLLMCategoricalLabelsFromJSON(jsonString) {
|
|
|
1329
1329
|
exports.GetEvalsLlm1$inboundSchema = z.object({
|
|
1330
1330
|
_id: z.string(),
|
|
1331
1331
|
description: z.string(),
|
|
1332
|
-
created: z.string().default("2026-06-
|
|
1333
|
-
updated: z.string().default("2026-06-
|
|
1332
|
+
created: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1333
|
+
updated: z.string().default("2026-06-17T14:01:26.990Z"),
|
|
1334
1334
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1335
1335
|
guardrail_config: z.nullable(z.union([
|
|
1336
1336
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
@@ -67,7 +67,7 @@ exports.GetV2HumanEvalSetsResponseBody2$inboundSchema = z.object({
|
|
|
67
67
|
updated_by_id: z.string().optional(),
|
|
68
68
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
69
69
|
.optional(),
|
|
70
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
70
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
71
71
|
filter_type: z.literal("name"),
|
|
72
72
|
filter_value: z.string(),
|
|
73
73
|
}).transform((v) => {
|
|
@@ -98,7 +98,7 @@ exports.GetV2HumanEvalSetsResponseBody1$inboundSchema = z.object({
|
|
|
98
98
|
updated_by_id: z.string().optional(),
|
|
99
99
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
100
100
|
.optional(),
|
|
101
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
101
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
102
102
|
filter_type: z.literal("span_type"),
|
|
103
103
|
filter_values: z.array(z.string()),
|
|
104
104
|
}).transform((v) => {
|
|
@@ -63,7 +63,7 @@ exports.GetV2HumanEvalSetsIdResponseBody2$inboundSchema = z.object({
|
|
|
63
63
|
updated_by_id: z.string().optional(),
|
|
64
64
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
65
65
|
.optional(),
|
|
66
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
66
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
67
67
|
filter_type: z.literal("name"),
|
|
68
68
|
filter_value: z.string(),
|
|
69
69
|
}).transform((v) => {
|
|
@@ -94,7 +94,7 @@ exports.GetV2HumanEvalSetsIdResponseBody1$inboundSchema = z.object({
|
|
|
94
94
|
updated_by_id: z.string().optional(),
|
|
95
95
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
96
96
|
.optional(),
|
|
97
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
97
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
98
98
|
filter_type: z.literal("span_type"),
|
|
99
99
|
filter_values: z.array(z.string()),
|
|
100
100
|
}).transform((v) => {
|
|
@@ -500,7 +500,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
500
500
|
parent_annotation_id: z.string().optional(),
|
|
501
501
|
explanation: z.string().optional(),
|
|
502
502
|
reviewed_by_id: z.string(),
|
|
503
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
503
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.324Z").transform(v => new Date(v)),
|
|
504
504
|
type: z.literal("string_array"),
|
|
505
505
|
values: z.array(z.string()),
|
|
506
506
|
}).transform((v) => {
|
|
@@ -549,7 +549,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
549
549
|
parent_annotation_id: z.string().optional(),
|
|
550
550
|
explanation: z.string().optional(),
|
|
551
551
|
reviewed_by_id: z.string(),
|
|
552
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
552
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.323Z").transform(v => new Date(v)),
|
|
553
553
|
type: z.literal("number"),
|
|
554
554
|
value: z.number(),
|
|
555
555
|
}).transform((v) => {
|
|
@@ -598,7 +598,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
598
598
|
parent_annotation_id: z.string().optional(),
|
|
599
599
|
explanation: z.string().optional(),
|
|
600
600
|
reviewed_by_id: z.string(),
|
|
601
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
601
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.322Z").transform(v => new Date(v)),
|
|
602
602
|
type: z.literal("string"),
|
|
603
603
|
value: z.string(),
|
|
604
604
|
}).transform((v) => {
|
|
@@ -647,7 +647,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
647
647
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
648
648
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
649
649
|
.optional(),
|
|
650
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
650
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
651
651
|
}).transform((v) => {
|
|
652
652
|
return (0, primitives_js_1.remap)(v, {
|
|
653
653
|
"_id": "id",
|
|
@@ -90,7 +90,7 @@ exports.ListDatasetsData$inboundSchema = z.object({
|
|
|
90
90
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
91
91
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
92
92
|
.optional(),
|
|
93
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
93
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
94
94
|
}).transform((v) => {
|
|
95
95
|
return (0, primitives_js_1.remap)(v, {
|
|
96
96
|
"_id": "id",
|
|
@@ -83,7 +83,7 @@ exports.ListDatasourcesObject$inboundSchema = z.nativeEnum(exports.ListDatasourc
|
|
|
83
83
|
exports.ListDatasourcesStatus$inboundSchema = z.nativeEnum(exports.ListDatasourcesStatus);
|
|
84
84
|
/** @internal */
|
|
85
85
|
exports.ListDatasourcesData$inboundSchema = z.object({
|
|
86
|
-
_id: z.string().default("
|
|
86
|
+
_id: z.string().default("01KVAY6VC3GE84CCREE1W2T6J8"),
|
|
87
87
|
display_name: z.string(),
|
|
88
88
|
description: z.nullable(z.string()).optional(),
|
|
89
89
|
status: exports.ListDatasourcesStatus$inboundSchema,
|
|
@@ -122,7 +122,7 @@ exports.PatchV2HumanEvalSetsIdResponseBody2$inboundSchema = z.object({
|
|
|
122
122
|
updated_by_id: z.string().optional(),
|
|
123
123
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
124
124
|
.optional(),
|
|
125
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
125
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
126
126
|
filter_type: z.literal("name"),
|
|
127
127
|
filter_value: z.string(),
|
|
128
128
|
}).transform((v) => {
|
|
@@ -153,7 +153,7 @@ exports.PatchV2HumanEvalSetsIdResponseBody1$inboundSchema = z.object({
|
|
|
153
153
|
updated_by_id: z.string().optional(),
|
|
154
154
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
155
155
|
.optional(),
|
|
156
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
156
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
157
157
|
filter_type: z.literal("span_type"),
|
|
158
158
|
filter_values: z.array(z.string()),
|
|
159
159
|
}).transform((v) => {
|
|
@@ -87,7 +87,7 @@ exports.RequestBody3$outboundSchema = z.object({
|
|
|
87
87
|
source: exports.PostV2FeedbackEvaluationRequestBodyFeedbackSource$outboundSchema
|
|
88
88
|
.default("orq"),
|
|
89
89
|
explanation: z.string().optional(),
|
|
90
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
90
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T14:01:52.549Z"))
|
|
91
91
|
.transform(v => v.toISOString()),
|
|
92
92
|
type: z.literal("string_array"),
|
|
93
93
|
values: z.array(z.string()),
|
|
@@ -115,7 +115,7 @@ exports.PostV2FeedbackEvaluationRequestBody2$outboundSchema = z.object({
|
|
|
115
115
|
humanReviewId: z.string().optional(),
|
|
116
116
|
source: exports.PostV2FeedbackEvaluationRequestBodySource$outboundSchema.default("orq"),
|
|
117
117
|
explanation: z.string().optional(),
|
|
118
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
118
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T14:01:52.548Z"))
|
|
119
119
|
.transform(v => v.toISOString()),
|
|
120
120
|
type: z.literal("number"),
|
|
121
121
|
value: z.number(),
|
|
@@ -142,7 +142,7 @@ exports.PostV2FeedbackEvaluationRequestBody1$outboundSchema = z.object({
|
|
|
142
142
|
humanReviewId: z.string().optional(),
|
|
143
143
|
source: exports.RequestBodySource$outboundSchema.default("orq"),
|
|
144
144
|
explanation: z.string().optional(),
|
|
145
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
145
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T14:01:52.548Z"))
|
|
146
146
|
.transform(v => v.toISOString()),
|
|
147
147
|
type: z.literal("string"),
|
|
148
148
|
value: z.string(),
|
|
@@ -106,7 +106,7 @@ exports.PostV2HumanEvalSetsResponseBody2$inboundSchema = z.object({
|
|
|
106
106
|
updated_by_id: z.string().optional(),
|
|
107
107
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
108
108
|
.optional(),
|
|
109
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
109
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
110
110
|
filter_type: z.literal("name"),
|
|
111
111
|
filter_value: z.string(),
|
|
112
112
|
}).transform((v) => {
|
|
@@ -137,7 +137,7 @@ exports.PostV2HumanEvalSetsResponseBody1$inboundSchema = z.object({
|
|
|
137
137
|
updated_by_id: z.string().optional(),
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
140
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
141
141
|
filter_type: z.literal("span_type"),
|
|
142
142
|
filter_values: z.array(z.string()),
|
|
143
143
|
}).transform((v) => {
|
|
@@ -489,7 +489,7 @@ exports.RetrieveDatapointEvaluations3$inboundSchema = z.object({
|
|
|
489
489
|
parent_annotation_id: z.string().optional(),
|
|
490
490
|
explanation: z.string().optional(),
|
|
491
491
|
reviewed_by_id: z.string(),
|
|
492
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
492
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.336Z").transform(v => new Date(v)),
|
|
493
493
|
type: z.literal("string_array"),
|
|
494
494
|
values: z.array(z.string()),
|
|
495
495
|
}).transform((v) => {
|
|
@@ -541,7 +541,7 @@ exports.RetrieveDatapointEvaluations2$inboundSchema = z.object({
|
|
|
541
541
|
parent_annotation_id: z.string().optional(),
|
|
542
542
|
explanation: z.string().optional(),
|
|
543
543
|
reviewed_by_id: z.string(),
|
|
544
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
544
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.335Z").transform(v => new Date(v)),
|
|
545
545
|
type: z.literal("number"),
|
|
546
546
|
value: z.number(),
|
|
547
547
|
}).transform((v) => {
|
|
@@ -592,7 +592,7 @@ exports.RetrieveDatapointEvaluations1$inboundSchema = z.object({
|
|
|
592
592
|
parent_annotation_id: z.string().optional(),
|
|
593
593
|
explanation: z.string().optional(),
|
|
594
594
|
reviewed_by_id: z.string(),
|
|
595
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-
|
|
595
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-06-17T14:01:52.333Z").transform(v => new Date(v)),
|
|
596
596
|
type: z.literal("string"),
|
|
597
597
|
value: z.string(),
|
|
598
598
|
}).transform((v) => {
|
|
@@ -641,7 +641,7 @@ exports.RetrieveDatapointResponseBody$inboundSchema = z.object({
|
|
|
641
641
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
642
642
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
643
643
|
.optional(),
|
|
644
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
644
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
645
645
|
}).transform((v) => {
|
|
646
646
|
return (0, primitives_js_1.remap)(v, {
|
|
647
647
|
"_id": "id",
|
|
@@ -78,7 +78,7 @@ exports.RetrieveDatasetResponseBody$inboundSchema = z.object({
|
|
|
78
78
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
79
79
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
80
80
|
.optional(),
|
|
81
|
-
updated: z.string().datetime({ offset: true }).default("2026-06-
|
|
81
|
+
updated: z.string().datetime({ offset: true }).default("2026-06-17T14:01:25.519Z").transform(v => new Date(v)),
|
|
82
82
|
}).transform((v) => {
|
|
83
83
|
return (0, primitives_js_1.remap)(v, {
|
|
84
84
|
"_id": "id",
|
|
@@ -66,7 +66,7 @@ function retrieveDatasourceRequestToJSON(retrieveDatasourceRequest) {
|
|
|
66
66
|
exports.RetrieveDatasourceStatus$inboundSchema = z.nativeEnum(exports.RetrieveDatasourceStatus);
|
|
67
67
|
/** @internal */
|
|
68
68
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
69
|
-
_id: z.string().default("
|
|
69
|
+
_id: z.string().default("01KVAY6VC5V6P7QZDNRNTJWVQC"),
|
|
70
70
|
display_name: z.string(),
|
|
71
71
|
description: z.nullable(z.string()).optional(),
|
|
72
72
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|