@orq-ai/node 4.7.0-rc.22 → 4.7.0-rc.23
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/README.md +2 -1
- package/funcs/identitiesRetrieve.d.ts +1 -1
- package/funcs/identitiesRetrieve.d.ts.map +1 -1
- package/funcs/identitiesRetrieve.js +6 -2
- package/funcs/identitiesRetrieve.js.map +1 -1
- 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/errors/retrieveidentity.d.ts +27 -0
- package/models/errors/retrieveidentity.d.ts.map +1 -1
- package/models/errors/retrieveidentity.js +30 -1
- package/models/errors/retrieveidentity.js.map +1 -1
- package/models/operations/createcontact.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/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevals.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/getv2humanevalsid.js +6 -6
- 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/patchv2humanevalsetsid.js +2 -2
- package/models/operations/patchv2humanevalsid.js +12 -12
- package/models/operations/postv2agentsa2a.d.ts +4 -4
- package/models/operations/postv2agentsa2a.d.ts.map +1 -1
- package/models/operations/postv2agentsa2a.js +6 -6
- package/models/operations/postv2agentsa2a.js.map +1 -1
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevals.js +12 -12
- 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/retrieveidentity.d.ts +27 -0
- package/models/operations/retrieveidentity.d.ts.map +1 -1
- package/models/operations/retrieveidentity.js +26 -2
- package/models/operations/retrieveidentity.js.map +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/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/src/funcs/identitiesRetrieve.ts +11 -2
- package/src/lib/config.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/errors/retrieveidentity.ts +56 -0
- package/src/models/operations/createcontact.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/createidentity.ts +1 -1
- 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/getv2humanevals.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/getv2humanevalsid.ts +6 -6
- 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/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/patchv2humanevalsid.ts +12 -12
- package/src/models/operations/postv2agentsa2a.ts +17 -14
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevals.ts +12 -12
- 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/retrieveidentity.ts +58 -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/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -76,7 +76,7 @@ function getV2HumanEvalsRequestToJSON(getV2HumanEvalsRequest) {
|
|
|
76
76
|
exports.ResponseBody6$inboundSchema = z.object({
|
|
77
77
|
type: z.literal("text"),
|
|
78
78
|
id: z.string(),
|
|
79
|
-
key: z.string().default("
|
|
79
|
+
key: z.string().default("orq_01kmpye89c"),
|
|
80
80
|
display_name: z.string(),
|
|
81
81
|
description: z.string(),
|
|
82
82
|
domain_id: z.string().optional(),
|
|
@@ -115,7 +115,7 @@ exports.ResponseBody5$inboundSchema = z.object({
|
|
|
115
115
|
type: z.literal("single_select"),
|
|
116
116
|
options: z.array(z.lazy(() => exports.ResponseBodyOptions$inboundSchema)),
|
|
117
117
|
id: z.string(),
|
|
118
|
-
key: z.string().default("
|
|
118
|
+
key: z.string().default("orq_01kmpye89b"),
|
|
119
119
|
display_name: z.string(),
|
|
120
120
|
description: z.string(),
|
|
121
121
|
domain_id: z.string().optional(),
|
|
@@ -154,7 +154,7 @@ exports.ResponseBody4$inboundSchema = z.object({
|
|
|
154
154
|
type: z.literal("multi_select"),
|
|
155
155
|
options: z.array(z.lazy(() => exports.GetV2HumanEvalsResponseBodyOptions$inboundSchema)),
|
|
156
156
|
id: z.string(),
|
|
157
|
-
key: z.string().default("
|
|
157
|
+
key: z.string().default("orq_01kmpye89a"),
|
|
158
158
|
display_name: z.string(),
|
|
159
159
|
description: z.string(),
|
|
160
160
|
domain_id: z.string().optional(),
|
|
@@ -188,7 +188,7 @@ exports.ResponseBody3$inboundSchema = z.object({
|
|
|
188
188
|
type: z.literal("range"),
|
|
189
189
|
config: z.lazy(() => exports.ResponseBodyConfig$inboundSchema),
|
|
190
190
|
id: z.string(),
|
|
191
|
-
key: z.string().default("
|
|
191
|
+
key: z.string().default("orq_01kmpye898"),
|
|
192
192
|
display_name: z.string(),
|
|
193
193
|
description: z.string(),
|
|
194
194
|
domain_id: z.string().optional(),
|
|
@@ -213,7 +213,7 @@ function responseBody3FromJSON(jsonString) {
|
|
|
213
213
|
exports.ResponseBody2$inboundSchema = z.object({
|
|
214
214
|
type: z.literal("correction"),
|
|
215
215
|
id: z.string(),
|
|
216
|
-
key: z.string().default("
|
|
216
|
+
key: z.string().default("orq_01kmpye897"),
|
|
217
217
|
display_name: z.string(),
|
|
218
218
|
description: z.string(),
|
|
219
219
|
domain_id: z.string().optional(),
|
|
@@ -238,7 +238,7 @@ function responseBody2FromJSON(jsonString) {
|
|
|
238
238
|
exports.ResponseBody1$inboundSchema = z.object({
|
|
239
239
|
type: z.literal("boolean"),
|
|
240
240
|
id: z.string(),
|
|
241
|
-
key: z.string().default("
|
|
241
|
+
key: z.string().default("orq_01kmpye896"),
|
|
242
242
|
display_name: z.string(),
|
|
243
243
|
description: z.string(),
|
|
244
244
|
domain_id: z.string().optional(),
|
|
@@ -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-03-
|
|
70
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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-03-
|
|
101
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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-03-
|
|
66
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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-03-
|
|
97
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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) => {
|
|
@@ -72,7 +72,7 @@ function getV2HumanEvalsIdRequestToJSON(getV2HumanEvalsIdRequest) {
|
|
|
72
72
|
exports.GetV2HumanEvalsIdResponseBody6$inboundSchema = z.object({
|
|
73
73
|
type: z.literal("text"),
|
|
74
74
|
id: z.string(),
|
|
75
|
-
key: z.string().default("
|
|
75
|
+
key: z.string().default("orq_01kmpye89j"),
|
|
76
76
|
display_name: z.string(),
|
|
77
77
|
description: z.string(),
|
|
78
78
|
domain_id: z.string().optional(),
|
|
@@ -112,7 +112,7 @@ exports.GetV2HumanEvalsIdResponseBody5$inboundSchema = z.object({
|
|
|
112
112
|
type: z.literal("single_select"),
|
|
113
113
|
options: z.array(z.lazy(() => exports.GetV2HumanEvalsIdResponseBodyResponseOptions$inboundSchema)),
|
|
114
114
|
id: z.string(),
|
|
115
|
-
key: z.string().default("
|
|
115
|
+
key: z.string().default("orq_01kmpye89h"),
|
|
116
116
|
display_name: z.string(),
|
|
117
117
|
description: z.string(),
|
|
118
118
|
domain_id: z.string().optional(),
|
|
@@ -151,7 +151,7 @@ exports.GetV2HumanEvalsIdResponseBody4$inboundSchema = z.object({
|
|
|
151
151
|
type: z.literal("multi_select"),
|
|
152
152
|
options: z.array(z.lazy(() => exports.GetV2HumanEvalsIdResponseBodyOptions$inboundSchema)),
|
|
153
153
|
id: z.string(),
|
|
154
|
-
key: z.string().default("
|
|
154
|
+
key: z.string().default("orq_01kmpye89g"),
|
|
155
155
|
display_name: z.string(),
|
|
156
156
|
description: z.string(),
|
|
157
157
|
domain_id: z.string().optional(),
|
|
@@ -185,7 +185,7 @@ exports.GetV2HumanEvalsIdResponseBody3$inboundSchema = z.object({
|
|
|
185
185
|
type: z.literal("range"),
|
|
186
186
|
config: z.lazy(() => exports.GetV2HumanEvalsIdResponseBodyConfig$inboundSchema),
|
|
187
187
|
id: z.string(),
|
|
188
|
-
key: z.string().default("
|
|
188
|
+
key: z.string().default("orq_01kmpye89f"),
|
|
189
189
|
display_name: z.string(),
|
|
190
190
|
description: z.string(),
|
|
191
191
|
domain_id: z.string().optional(),
|
|
@@ -210,7 +210,7 @@ function getV2HumanEvalsIdResponseBody3FromJSON(jsonString) {
|
|
|
210
210
|
exports.GetV2HumanEvalsIdResponseBody2$inboundSchema = z.object({
|
|
211
211
|
type: z.literal("correction"),
|
|
212
212
|
id: z.string(),
|
|
213
|
-
key: z.string().default("
|
|
213
|
+
key: z.string().default("orq_01kmpye89e"),
|
|
214
214
|
display_name: z.string(),
|
|
215
215
|
description: z.string(),
|
|
216
216
|
domain_id: z.string().optional(),
|
|
@@ -235,7 +235,7 @@ function getV2HumanEvalsIdResponseBody2FromJSON(jsonString) {
|
|
|
235
235
|
exports.GetV2HumanEvalsIdResponseBody1$inboundSchema = z.object({
|
|
236
236
|
type: z.literal("boolean"),
|
|
237
237
|
id: z.string(),
|
|
238
|
-
key: z.string().default("
|
|
238
|
+
key: z.string().default("orq_01kmpye89d"),
|
|
239
239
|
display_name: z.string(),
|
|
240
240
|
description: z.string(),
|
|
241
241
|
domain_id: z.string().optional(),
|
|
@@ -420,7 +420,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
420
420
|
human_review_id: z.string(),
|
|
421
421
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
422
422
|
reviewed_by_id: z.string(),
|
|
423
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
423
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.093Z").transform(v => new Date(v)),
|
|
424
424
|
type: z.literal("string_array"),
|
|
425
425
|
values: z.array(z.string()),
|
|
426
426
|
}).transform((v) => {
|
|
@@ -445,7 +445,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
445
445
|
human_review_id: z.string(),
|
|
446
446
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
447
447
|
reviewed_by_id: z.string(),
|
|
448
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
448
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.093Z").transform(v => new Date(v)),
|
|
449
449
|
type: z.literal("number"),
|
|
450
450
|
value: z.number(),
|
|
451
451
|
}).transform((v) => {
|
|
@@ -471,7 +471,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
471
471
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
472
472
|
.default("orq"),
|
|
473
473
|
reviewed_by_id: z.string(),
|
|
474
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
474
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.093Z").transform(v => new Date(v)),
|
|
475
475
|
type: z.literal("string"),
|
|
476
476
|
value: z.string(),
|
|
477
477
|
}).transform((v) => {
|
|
@@ -518,7 +518,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
518
518
|
updated_by_id: z.string().optional(),
|
|
519
519
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
520
520
|
.optional(),
|
|
521
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
521
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").transform(v => new Date(v)),
|
|
522
522
|
}).transform((v) => {
|
|
523
523
|
return (0, primitives_js_1.remap)(v, {
|
|
524
524
|
"_id": "id",
|
|
@@ -87,7 +87,7 @@ exports.ListDatasetsData$inboundSchema = z.object({
|
|
|
87
87
|
updated_by_id: z.string().optional(),
|
|
88
88
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
89
89
|
.optional(),
|
|
90
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
90
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").transform(v => new Date(v)),
|
|
91
91
|
}).transform((v) => {
|
|
92
92
|
return (0, primitives_js_1.remap)(v, {
|
|
93
93
|
"_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("01KMPYE81QDJPKH51AR4GHHPYH"),
|
|
87
87
|
display_name: z.string(),
|
|
88
88
|
description: z.string().optional(),
|
|
89
89
|
status: exports.ListDatasourcesStatus$inboundSchema,
|
|
@@ -104,7 +104,7 @@ exports.ListIdentitiesData$inboundSchema = z.object({
|
|
|
104
104
|
metadata: z.record(z.any()).optional(),
|
|
105
105
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
106
106
|
.optional(),
|
|
107
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
107
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").transform(v => new Date(v)),
|
|
108
108
|
metrics: z.lazy(() => exports.ListIdentitiesMetrics$inboundSchema),
|
|
109
109
|
}).transform((v) => {
|
|
110
110
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -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-03-
|
|
125
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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-03-
|
|
156
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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) => {
|
|
@@ -85,7 +85,7 @@ exports.PatchV2HumanEvalsIdResponseBodySentiment = {
|
|
|
85
85
|
exports.Six$outboundSchema = z
|
|
86
86
|
.object({
|
|
87
87
|
type: z.literal("text"),
|
|
88
|
-
key: z.string().default("
|
|
88
|
+
key: z.string().default("orq_01kmpye8b8"),
|
|
89
89
|
displayName: z.string(),
|
|
90
90
|
description: z.string(),
|
|
91
91
|
createdById: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ function patchV2HumanEvalsIdRequestBodyOptionsInputToJSON(patchV2HumanEvalsIdReq
|
|
|
119
119
|
exports.RequestBody5$outboundSchema = z.object({
|
|
120
120
|
type: z.literal("single_select"),
|
|
121
121
|
options: z.array(z.lazy(() => exports.PatchV2HumanEvalsIdRequestBodyOptionsInput$outboundSchema)),
|
|
122
|
-
key: z.string().default("
|
|
122
|
+
key: z.string().default("orq_01kmpye8b6"),
|
|
123
123
|
displayName: z.string(),
|
|
124
124
|
description: z.string(),
|
|
125
125
|
createdById: z.string().optional(),
|
|
@@ -153,7 +153,7 @@ function patchV2HumanEvalsIdRequestBodyOptionsToJSON(patchV2HumanEvalsIdRequestB
|
|
|
153
153
|
exports.PatchV2HumanEvalsIdRequestBody4$outboundSchema = z.object({
|
|
154
154
|
type: z.literal("multi_select"),
|
|
155
155
|
options: z.array(z.lazy(() => exports.PatchV2HumanEvalsIdRequestBodyOptions$outboundSchema)),
|
|
156
|
-
key: z.string().default("
|
|
156
|
+
key: z.string().default("orq_01kmpye8b2"),
|
|
157
157
|
displayName: z.string(),
|
|
158
158
|
description: z.string(),
|
|
159
159
|
createdById: z.string().optional(),
|
|
@@ -182,7 +182,7 @@ function requestBodyConfigToJSON(requestBodyConfig) {
|
|
|
182
182
|
exports.PatchV2HumanEvalsIdRequestBody3$outboundSchema = z.object({
|
|
183
183
|
type: z.literal("range"),
|
|
184
184
|
config: z.lazy(() => exports.RequestBodyConfig$outboundSchema),
|
|
185
|
-
key: z.string().default("
|
|
185
|
+
key: z.string().default("orq_01kmpye8b0"),
|
|
186
186
|
displayName: z.string(),
|
|
187
187
|
description: z.string(),
|
|
188
188
|
createdById: z.string().optional(),
|
|
@@ -202,7 +202,7 @@ function patchV2HumanEvalsIdRequestBody3ToJSON(patchV2HumanEvalsIdRequestBody3)
|
|
|
202
202
|
/** @internal */
|
|
203
203
|
exports.PatchV2HumanEvalsIdRequestBody2$outboundSchema = z.object({
|
|
204
204
|
type: z.literal("correction"),
|
|
205
|
-
key: z.string().default("
|
|
205
|
+
key: z.string().default("orq_01kmpye8at"),
|
|
206
206
|
displayName: z.string(),
|
|
207
207
|
description: z.string(),
|
|
208
208
|
createdById: z.string().optional(),
|
|
@@ -222,7 +222,7 @@ function patchV2HumanEvalsIdRequestBody2ToJSON(patchV2HumanEvalsIdRequestBody2)
|
|
|
222
222
|
/** @internal */
|
|
223
223
|
exports.PatchV2HumanEvalsIdRequestBody1$outboundSchema = z.object({
|
|
224
224
|
type: z.literal("boolean"),
|
|
225
|
-
key: z.string().default("
|
|
225
|
+
key: z.string().default("orq_01kmpye8as"),
|
|
226
226
|
displayName: z.string(),
|
|
227
227
|
description: z.string(),
|
|
228
228
|
createdById: z.string().optional(),
|
|
@@ -274,7 +274,7 @@ function patchV2HumanEvalsIdRequestToJSON(patchV2HumanEvalsIdRequest) {
|
|
|
274
274
|
exports.PatchV2HumanEvalsIdResponseBody6$inboundSchema = z.object({
|
|
275
275
|
type: z.literal("text"),
|
|
276
276
|
id: z.string(),
|
|
277
|
-
key: z.string().default("
|
|
277
|
+
key: z.string().default("orq_01kmpye8aq"),
|
|
278
278
|
display_name: z.string(),
|
|
279
279
|
description: z.string(),
|
|
280
280
|
domain_id: z.string().optional(),
|
|
@@ -314,7 +314,7 @@ exports.PatchV2HumanEvalsIdResponseBody5$inboundSchema = z.object({
|
|
|
314
314
|
type: z.literal("single_select"),
|
|
315
315
|
options: z.array(z.lazy(() => exports.PatchV2HumanEvalsIdResponseBodyResponseOptions$inboundSchema)),
|
|
316
316
|
id: z.string(),
|
|
317
|
-
key: z.string().default("
|
|
317
|
+
key: z.string().default("orq_01kmpye8ap"),
|
|
318
318
|
display_name: z.string(),
|
|
319
319
|
description: z.string(),
|
|
320
320
|
domain_id: z.string().optional(),
|
|
@@ -354,7 +354,7 @@ exports.PatchV2HumanEvalsIdResponseBody4$inboundSchema = z.object({
|
|
|
354
354
|
type: z.literal("multi_select"),
|
|
355
355
|
options: z.array(z.lazy(() => exports.PatchV2HumanEvalsIdResponseBodyOptions$inboundSchema)),
|
|
356
356
|
id: z.string(),
|
|
357
|
-
key: z.string().default("
|
|
357
|
+
key: z.string().default("orq_01kmpye8am"),
|
|
358
358
|
display_name: z.string(),
|
|
359
359
|
description: z.string(),
|
|
360
360
|
domain_id: z.string().optional(),
|
|
@@ -388,7 +388,7 @@ exports.PatchV2HumanEvalsIdResponseBody3$inboundSchema = z.object({
|
|
|
388
388
|
type: z.literal("range"),
|
|
389
389
|
config: z.lazy(() => exports.PatchV2HumanEvalsIdResponseBodyConfig$inboundSchema),
|
|
390
390
|
id: z.string(),
|
|
391
|
-
key: z.string().default("
|
|
391
|
+
key: z.string().default("orq_01kmpye8ah"),
|
|
392
392
|
display_name: z.string(),
|
|
393
393
|
description: z.string(),
|
|
394
394
|
domain_id: z.string().optional(),
|
|
@@ -413,7 +413,7 @@ function patchV2HumanEvalsIdResponseBody3FromJSON(jsonString) {
|
|
|
413
413
|
exports.PatchV2HumanEvalsIdResponseBody2$inboundSchema = z.object({
|
|
414
414
|
type: z.literal("correction"),
|
|
415
415
|
id: z.string(),
|
|
416
|
-
key: z.string().default("
|
|
416
|
+
key: z.string().default("orq_01kmpye8ag"),
|
|
417
417
|
display_name: z.string(),
|
|
418
418
|
description: z.string(),
|
|
419
419
|
domain_id: z.string().optional(),
|
|
@@ -438,7 +438,7 @@ function patchV2HumanEvalsIdResponseBody2FromJSON(jsonString) {
|
|
|
438
438
|
exports.PatchV2HumanEvalsIdResponseBody1$inboundSchema = z.object({
|
|
439
439
|
type: z.literal("boolean"),
|
|
440
440
|
id: z.string(),
|
|
441
|
-
key: z.string().default("
|
|
441
|
+
key: z.string().default("orq_01kmpye8ae"),
|
|
442
442
|
display_name: z.string(),
|
|
443
443
|
description: z.string(),
|
|
444
444
|
domain_id: z.string().optional(),
|
|
@@ -46,7 +46,7 @@ export declare const PostV2AgentsA2aType: {
|
|
|
46
46
|
readonly Internal: "internal";
|
|
47
47
|
};
|
|
48
48
|
export type PostV2AgentsA2aType = ClosedEnum<typeof PostV2AgentsA2aType>;
|
|
49
|
-
export type
|
|
49
|
+
export type PostV2AgentsA2aMetrics = {
|
|
50
50
|
totalCost: number;
|
|
51
51
|
};
|
|
52
52
|
export type A2a = {
|
|
@@ -75,7 +75,7 @@ export type PostV2AgentsA2aResponseBody = {
|
|
|
75
75
|
status: string;
|
|
76
76
|
versionHash?: string | undefined;
|
|
77
77
|
path: string;
|
|
78
|
-
metrics:
|
|
78
|
+
metrics: PostV2AgentsA2aMetrics;
|
|
79
79
|
memoryStores: Array<string>;
|
|
80
80
|
teamOfAgents: Array<any>;
|
|
81
81
|
created?: string | undefined;
|
|
@@ -108,8 +108,8 @@ export declare function postV2AgentsA2aRequestBodyToJSON(postV2AgentsA2aRequestB
|
|
|
108
108
|
/** @internal */
|
|
109
109
|
export declare const PostV2AgentsA2aType$inboundSchema: z.ZodNativeEnum<typeof PostV2AgentsA2aType>;
|
|
110
110
|
/** @internal */
|
|
111
|
-
export declare const
|
|
112
|
-
export declare function
|
|
111
|
+
export declare const PostV2AgentsA2aMetrics$inboundSchema: z.ZodType<PostV2AgentsA2aMetrics, z.ZodTypeDef, unknown>;
|
|
112
|
+
export declare function postV2AgentsA2aMetricsFromJSON(jsonString: string): SafeParseResult<PostV2AgentsA2aMetrics, SDKValidationError>;
|
|
113
113
|
/** @internal */
|
|
114
114
|
export declare const A2a$inboundSchema: z.ZodType<A2a, z.ZodTypeDef, unknown>;
|
|
115
115
|
export declare function a2aFromJSON(jsonString: string): SafeParseResult<A2a, SDKValidationError>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postv2agentsa2a.d.ts","sourceRoot":"","sources":["../../src/models/operations/postv2agentsa2a.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,OAAO,GAAG;IACpB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;OAEG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,GAAG,SAAS,CAAC;CAChD,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;CAGtB,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEzE,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"postv2agentsa2a.d.ts","sourceRoot":"","sources":["../../src/models/operations/postv2agentsa2a.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,10 +36,10 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.PostV2AgentsA2aResponseBody$inboundSchema = exports.A2a$inboundSchema = exports.
|
|
39
|
+
exports.PostV2AgentsA2aResponseBody$inboundSchema = exports.A2a$inboundSchema = exports.PostV2AgentsA2aMetrics$inboundSchema = exports.PostV2AgentsA2aType$inboundSchema = exports.PostV2AgentsA2aRequestBody$outboundSchema = exports.Headers$outboundSchema = exports.PostV2AgentsA2aType = void 0;
|
|
40
40
|
exports.headersToJSON = headersToJSON;
|
|
41
41
|
exports.postV2AgentsA2aRequestBodyToJSON = postV2AgentsA2aRequestBodyToJSON;
|
|
42
|
-
exports.
|
|
42
|
+
exports.postV2AgentsA2aMetricsFromJSON = postV2AgentsA2aMetricsFromJSON;
|
|
43
43
|
exports.a2aFromJSON = a2aFromJSON;
|
|
44
44
|
exports.postV2AgentsA2aResponseBodyFromJSON = postV2AgentsA2aResponseBodyFromJSON;
|
|
45
45
|
const z = __importStar(require("zod/v3"));
|
|
@@ -79,15 +79,15 @@ function postV2AgentsA2aRequestBodyToJSON(postV2AgentsA2aRequestBody) {
|
|
|
79
79
|
/** @internal */
|
|
80
80
|
exports.PostV2AgentsA2aType$inboundSchema = z.nativeEnum(exports.PostV2AgentsA2aType);
|
|
81
81
|
/** @internal */
|
|
82
|
-
exports.
|
|
82
|
+
exports.PostV2AgentsA2aMetrics$inboundSchema = z.object({
|
|
83
83
|
total_cost: z.number(),
|
|
84
84
|
}).transform((v) => {
|
|
85
85
|
return (0, primitives_js_1.remap)(v, {
|
|
86
86
|
"total_cost": "totalCost",
|
|
87
87
|
});
|
|
88
88
|
});
|
|
89
|
-
function
|
|
90
|
-
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.
|
|
89
|
+
function postV2AgentsA2aMetricsFromJSON(jsonString) {
|
|
90
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.PostV2AgentsA2aMetrics$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostV2AgentsA2aMetrics' from JSON`);
|
|
91
91
|
}
|
|
92
92
|
/** @internal */
|
|
93
93
|
exports.A2a$inboundSchema = z
|
|
@@ -122,7 +122,7 @@ exports.PostV2AgentsA2aResponseBody$inboundSchema = z.object({
|
|
|
122
122
|
status: z.string(),
|
|
123
123
|
version_hash: z.string().optional(),
|
|
124
124
|
path: z.string(),
|
|
125
|
-
metrics: z.lazy(() => exports.
|
|
125
|
+
metrics: z.lazy(() => exports.PostV2AgentsA2aMetrics$inboundSchema),
|
|
126
126
|
memory_stores: z.array(z.string()),
|
|
127
127
|
team_of_agents: z.array(z.any()),
|
|
128
128
|
created: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"postv2agentsa2a.js","sourceRoot":"","sources":["../../src/models/operations/postv2agentsa2a.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2GH,sCAEC;AAkCD,4EAMC;
|
|
1
|
+
{"version":3,"file":"postv2agentsa2a.js","sourceRoot":"","sources":["../../src/models/operations/postv2agentsa2a.ts"],"names":[],"mappings":"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"}
|
|
@@ -86,7 +86,7 @@ exports.RequestBody3$outboundSchema = z.object({
|
|
|
86
86
|
humanReviewId: z.string(),
|
|
87
87
|
source: exports.PostV2FeedbackEvaluationRequestBodyRequestSource$outboundSchema
|
|
88
88
|
.default("orq"),
|
|
89
|
-
reviewedAt: z.date().default(() => new Date("2026-03-
|
|
89
|
+
reviewedAt: z.date().default(() => new Date("2026-03-27T06:06:55.256Z"))
|
|
90
90
|
.transform(v => v.toISOString()),
|
|
91
91
|
type: z.literal("string_array"),
|
|
92
92
|
values: z.array(z.string()),
|
|
@@ -113,7 +113,7 @@ exports.RequestBody2$outboundSchema = z.object({
|
|
|
113
113
|
evaluationType: exports.RequestBodyEvaluationType$outboundSchema,
|
|
114
114
|
humanReviewId: z.string(),
|
|
115
115
|
source: exports.PostV2FeedbackEvaluationRequestBodySource$outboundSchema.default("orq"),
|
|
116
|
-
reviewedAt: z.date().default(() => new Date("2026-03-
|
|
116
|
+
reviewedAt: z.date().default(() => new Date("2026-03-27T06:06:55.255Z"))
|
|
117
117
|
.transform(v => v.toISOString()),
|
|
118
118
|
type: z.literal("number"),
|
|
119
119
|
value: z.number(),
|
|
@@ -139,7 +139,7 @@ exports.RequestBody1$outboundSchema = z.object({
|
|
|
139
139
|
evaluationType: exports.EvaluationType$outboundSchema,
|
|
140
140
|
humanReviewId: z.string(),
|
|
141
141
|
source: exports.RequestBodySource$outboundSchema.default("orq"),
|
|
142
|
-
reviewedAt: z.date().default(() => new Date("2026-03-
|
|
142
|
+
reviewedAt: z.date().default(() => new Date("2026-03-27T06:06:55.248Z"))
|
|
143
143
|
.transform(v => v.toISOString()),
|
|
144
144
|
type: z.literal("string"),
|
|
145
145
|
value: z.string(),
|
|
@@ -83,7 +83,7 @@ exports.PostV2HumanEvalsResponseBodySentiment = {
|
|
|
83
83
|
/** @internal */
|
|
84
84
|
exports.RequestBody6$outboundSchema = z.object({
|
|
85
85
|
type: z.literal("text"),
|
|
86
|
-
key: z.string().default("
|
|
86
|
+
key: z.string().default("orq_01kmpye8ad"),
|
|
87
87
|
displayName: z.string(),
|
|
88
88
|
description: z.string(),
|
|
89
89
|
projectId: z.string().optional(),
|
|
@@ -112,7 +112,7 @@ function requestBodyOptionsToJSON(requestBodyOptions) {
|
|
|
112
112
|
exports.Five$outboundSchema = z.object({
|
|
113
113
|
type: z.literal("single_select"),
|
|
114
114
|
options: z.array(z.lazy(() => exports.RequestBodyOptions$outboundSchema)),
|
|
115
|
-
key: z.string().default("
|
|
115
|
+
key: z.string().default("orq_01kmpye8ac"),
|
|
116
116
|
displayName: z.string(),
|
|
117
117
|
description: z.string(),
|
|
118
118
|
projectId: z.string().optional(),
|
|
@@ -142,7 +142,7 @@ function optionsToJSON(options) {
|
|
|
142
142
|
exports.RequestBody4$outboundSchema = z.object({
|
|
143
143
|
type: z.literal("multi_select"),
|
|
144
144
|
options: z.array(z.lazy(() => exports.Options$outboundSchema)),
|
|
145
|
-
key: z.string().default("
|
|
145
|
+
key: z.string().default("orq_01kmpye8aa"),
|
|
146
146
|
displayName: z.string(),
|
|
147
147
|
description: z.string(),
|
|
148
148
|
projectId: z.string().optional(),
|
|
@@ -167,7 +167,7 @@ function configToJSON(config) {
|
|
|
167
167
|
exports.PostV2HumanEvalsRequestBody3$outboundSchema = z.object({
|
|
168
168
|
type: z.literal("range"),
|
|
169
169
|
config: z.lazy(() => exports.Config$outboundSchema),
|
|
170
|
-
key: z.string().default("
|
|
170
|
+
key: z.string().default("orq_01kmpye8a8"),
|
|
171
171
|
displayName: z.string(),
|
|
172
172
|
description: z.string(),
|
|
173
173
|
projectId: z.string().optional(),
|
|
@@ -183,7 +183,7 @@ function postV2HumanEvalsRequestBody3ToJSON(postV2HumanEvalsRequestBody3) {
|
|
|
183
183
|
/** @internal */
|
|
184
184
|
exports.PostV2HumanEvalsRequestBody2$outboundSchema = z.object({
|
|
185
185
|
type: z.literal("correction"),
|
|
186
|
-
key: z.string().default("
|
|
186
|
+
key: z.string().default("orq_01kmpye89z"),
|
|
187
187
|
displayName: z.string(),
|
|
188
188
|
description: z.string(),
|
|
189
189
|
projectId: z.string().optional(),
|
|
@@ -199,7 +199,7 @@ function postV2HumanEvalsRequestBody2ToJSON(postV2HumanEvalsRequestBody2) {
|
|
|
199
199
|
/** @internal */
|
|
200
200
|
exports.PostV2HumanEvalsRequestBody1$outboundSchema = z.object({
|
|
201
201
|
type: z.literal("boolean"),
|
|
202
|
-
key: z.string().default("
|
|
202
|
+
key: z.string().default("orq_01kmpye89y"),
|
|
203
203
|
displayName: z.string(),
|
|
204
204
|
description: z.string(),
|
|
205
205
|
projectId: z.string().optional(),
|
|
@@ -228,7 +228,7 @@ function postV2HumanEvalsRequestBodyToJSON(postV2HumanEvalsRequestBody) {
|
|
|
228
228
|
exports.PostV2HumanEvalsResponseBody6$inboundSchema = z.object({
|
|
229
229
|
type: z.literal("text"),
|
|
230
230
|
id: z.string(),
|
|
231
|
-
key: z.string().default("
|
|
231
|
+
key: z.string().default("orq_01kmpye89x"),
|
|
232
232
|
display_name: z.string(),
|
|
233
233
|
description: z.string(),
|
|
234
234
|
domain_id: z.string().optional(),
|
|
@@ -268,7 +268,7 @@ exports.PostV2HumanEvalsResponseBody5$inboundSchema = z.object({
|
|
|
268
268
|
type: z.literal("single_select"),
|
|
269
269
|
options: z.array(z.lazy(() => exports.PostV2HumanEvalsResponseBodyResponseOptions$inboundSchema)),
|
|
270
270
|
id: z.string(),
|
|
271
|
-
key: z.string().default("
|
|
271
|
+
key: z.string().default("orq_01kmpye89t"),
|
|
272
272
|
display_name: z.string(),
|
|
273
273
|
description: z.string(),
|
|
274
274
|
domain_id: z.string().optional(),
|
|
@@ -307,7 +307,7 @@ exports.PostV2HumanEvalsResponseBody4$inboundSchema = z.object({
|
|
|
307
307
|
type: z.literal("multi_select"),
|
|
308
308
|
options: z.array(z.lazy(() => exports.PostV2HumanEvalsResponseBodyOptions$inboundSchema)),
|
|
309
309
|
id: z.string(),
|
|
310
|
-
key: z.string().default("
|
|
310
|
+
key: z.string().default("orq_01kmpye89r"),
|
|
311
311
|
display_name: z.string(),
|
|
312
312
|
description: z.string(),
|
|
313
313
|
domain_id: z.string().optional(),
|
|
@@ -341,7 +341,7 @@ exports.PostV2HumanEvalsResponseBody3$inboundSchema = z.object({
|
|
|
341
341
|
type: z.literal("range"),
|
|
342
342
|
config: z.lazy(() => exports.PostV2HumanEvalsResponseBodyConfig$inboundSchema),
|
|
343
343
|
id: z.string(),
|
|
344
|
-
key: z.string().default("
|
|
344
|
+
key: z.string().default("orq_01kmpye89p"),
|
|
345
345
|
display_name: z.string(),
|
|
346
346
|
description: z.string(),
|
|
347
347
|
domain_id: z.string().optional(),
|
|
@@ -366,7 +366,7 @@ function postV2HumanEvalsResponseBody3FromJSON(jsonString) {
|
|
|
366
366
|
exports.PostV2HumanEvalsResponseBody2$inboundSchema = z.object({
|
|
367
367
|
type: z.literal("correction"),
|
|
368
368
|
id: z.string(),
|
|
369
|
-
key: z.string().default("
|
|
369
|
+
key: z.string().default("orq_01kmpye89m"),
|
|
370
370
|
display_name: z.string(),
|
|
371
371
|
description: z.string(),
|
|
372
372
|
domain_id: z.string().optional(),
|
|
@@ -391,7 +391,7 @@ function postV2HumanEvalsResponseBody2FromJSON(jsonString) {
|
|
|
391
391
|
exports.PostV2HumanEvalsResponseBody1$inboundSchema = z.object({
|
|
392
392
|
type: z.literal("boolean"),
|
|
393
393
|
id: z.string(),
|
|
394
|
-
key: z.string().default("
|
|
394
|
+
key: z.string().default("orq_01kmpye89k"),
|
|
395
395
|
display_name: z.string(),
|
|
396
396
|
description: z.string(),
|
|
397
397
|
domain_id: z.string().optional(),
|
|
@@ -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-03-
|
|
109
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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-03-
|
|
140
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").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) => {
|
|
@@ -409,7 +409,7 @@ exports.RetrieveDatapointEvaluations3$inboundSchema = z.object({
|
|
|
409
409
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
410
410
|
.default("orq"),
|
|
411
411
|
reviewed_by_id: z.string(),
|
|
412
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
412
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.099Z").transform(v => new Date(v)),
|
|
413
413
|
type: z.literal("string_array"),
|
|
414
414
|
values: z.array(z.string()),
|
|
415
415
|
}).transform((v) => {
|
|
@@ -436,7 +436,7 @@ exports.RetrieveDatapointEvaluations2$inboundSchema = z.object({
|
|
|
436
436
|
human_review_id: z.string(),
|
|
437
437
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
438
438
|
reviewed_by_id: z.string(),
|
|
439
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
439
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.099Z").transform(v => new Date(v)),
|
|
440
440
|
type: z.literal("number"),
|
|
441
441
|
value: z.number(),
|
|
442
442
|
}).transform((v) => {
|
|
@@ -462,7 +462,7 @@ exports.RetrieveDatapointEvaluations1$inboundSchema = z.object({
|
|
|
462
462
|
human_review_id: z.string(),
|
|
463
463
|
source: exports.RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
464
464
|
reviewed_by_id: z.string(),
|
|
465
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
465
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-27T06:06:55.098Z").transform(v => new Date(v)),
|
|
466
466
|
type: z.literal("string"),
|
|
467
467
|
value: z.string(),
|
|
468
468
|
}).transform((v) => {
|
|
@@ -509,7 +509,7 @@ exports.RetrieveDatapointResponseBody$inboundSchema = z.object({
|
|
|
509
509
|
updated_by_id: z.string().optional(),
|
|
510
510
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
511
511
|
.optional(),
|
|
512
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
512
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-27T06:06:37.886Z").transform(v => new Date(v)),
|
|
513
513
|
}).transform((v) => {
|
|
514
514
|
return (0, primitives_js_1.remap)(v, {
|
|
515
515
|
"_id": "id",
|