@orq-ai/node 4.2.0-rc.61 → 4.2.0-rc.63
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/listcontacts.js +1 -1
- 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/retrievecontact.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/updatecontact.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/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/listcontacts.ts +1 -1
- 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/retrievecontact.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/updatecontact.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
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
39
39
|
export declare const SDK_METADATA: {
|
|
40
40
|
readonly language: "typescript";
|
|
41
41
|
readonly openapiDocVersion: "2.0";
|
|
42
|
-
readonly sdkVersion: "4.2.0-rc.
|
|
42
|
+
readonly sdkVersion: "4.2.0-rc.63";
|
|
43
43
|
readonly genVersion: "2.798.0";
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 4.2.0-rc.63 2.798.0 2.0 @orq-ai/node";
|
|
45
45
|
};
|
|
46
46
|
//# 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.2.0-rc.
|
|
31
|
+
sdkVersion: "4.2.0-rc.63",
|
|
32
32
|
genVersion: "2.798.0",
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.63 2.798.0 2.0 @orq-ai/node",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
|
@@ -61,7 +61,7 @@ function metadataFromJSON(jsonString) {
|
|
|
61
61
|
}
|
|
62
62
|
/** @internal */
|
|
63
63
|
exports.ConversationResponse$inboundSchema = z.object({
|
|
64
|
-
_id: z.string().default("
|
|
64
|
+
_id: z.string().default("conv_01kfjyqga21m9x4f0b89f01x7n"),
|
|
65
65
|
kind: exports.ConversationResponseKind$inboundSchema,
|
|
66
66
|
displayName: z.string(),
|
|
67
67
|
createdAt: z.number(),
|
|
@@ -62,7 +62,7 @@ function conversationWithMessagesResponseMetadataFromJSON(jsonString) {
|
|
|
62
62
|
}
|
|
63
63
|
/** @internal */
|
|
64
64
|
exports.ConversationWithMessagesResponse$inboundSchema = z.object({
|
|
65
|
-
_id: z.string().default("
|
|
65
|
+
_id: z.string().default("conv_01kfjyqga6qd4jp5h5jkr9ngey"),
|
|
66
66
|
kind: exports.ConversationWithMessagesResponseKind$inboundSchema,
|
|
67
67
|
displayName: z.string(),
|
|
68
68
|
createdAt: z.number(),
|
|
@@ -54,7 +54,7 @@ exports.PartKind$inboundSchema = z
|
|
|
54
54
|
.nativeEnum(exports.PartKind);
|
|
55
55
|
/** @internal */
|
|
56
56
|
exports.PartReasoningPart$inboundSchema = z.object({
|
|
57
|
-
_id: z.string().default("
|
|
57
|
+
_id: z.string().default("reasoning_01kfjyqfx0crp20nzynp9495sh"),
|
|
58
58
|
metadata: z.record(z.any()).optional(),
|
|
59
59
|
kind: exports.PartKind$inboundSchema,
|
|
60
60
|
reasoning: z.string(),
|
|
@@ -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_01kfjyqfwch3byq6rjqwssejv7"),
|
|
47
47
|
metadata: z.record(z.any()).optional(),
|
|
48
48
|
kind: z.literal("reasoning"),
|
|
49
49
|
reasoning: z.string(),
|
|
@@ -72,7 +72,7 @@ exports.CreateContactResponseBody$inboundSchema = z.object({
|
|
|
72
72
|
metadata: z.record(z.any()).optional(),
|
|
73
73
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
74
74
|
.optional(),
|
|
75
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
75
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
76
76
|
}).transform((v) => {
|
|
77
77
|
return (0, primitives_js_1.remap)(v, {
|
|
78
78
|
"_id": "id",
|
|
@@ -81,7 +81,7 @@ function createConversationConversationsMetadataFromJSON(jsonString) {
|
|
|
81
81
|
}
|
|
82
82
|
/** @internal */
|
|
83
83
|
exports.CreateConversationResponseBody$inboundSchema = z.object({
|
|
84
|
-
_id: z.string().default("
|
|
84
|
+
_id: z.string().default("conv_01kfjyqga4p2zc9rsrz6tsxzf3"),
|
|
85
85
|
kind: exports.CreateConversationKind$inboundSchema,
|
|
86
86
|
displayName: z.string(),
|
|
87
87
|
createdAt: z.number(),
|
|
@@ -103,7 +103,7 @@ exports.PartKind$inboundSchema = z
|
|
|
103
103
|
.nativeEnum(exports.PartKind);
|
|
104
104
|
/** @internal */
|
|
105
105
|
exports.PartReasoningPart$inboundSchema = z.object({
|
|
106
|
-
_id: z.string().default("
|
|
106
|
+
_id: z.string().default("reasoning_01kfjyqgaqv92pwt4k4mq4w52a"),
|
|
107
107
|
metadata: z.record(z.any()).optional(),
|
|
108
108
|
kind: exports.PartKind$inboundSchema,
|
|
109
109
|
reasoning: z.string(),
|
|
@@ -140,7 +140,7 @@ exports.DeltaKind$inboundSchema = z
|
|
|
140
140
|
.nativeEnum(exports.DeltaKind);
|
|
141
141
|
/** @internal */
|
|
142
142
|
exports.ReasoningPart$inboundSchema = z.object({
|
|
143
|
-
_id: z.string().default("
|
|
143
|
+
_id: z.string().default("reasoning_01kfjyqgakpw5z6q90v7svh3rb"),
|
|
144
144
|
metadata: z.record(z.any()).optional(),
|
|
145
145
|
kind: exports.DeltaKind$inboundSchema,
|
|
146
146
|
reasoning: z.string(),
|
|
@@ -79,7 +79,7 @@ exports.CreateDatasetResponseBody$inboundSchema = z.object({
|
|
|
79
79
|
updated_by_id: 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-01-
|
|
82
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
83
83
|
}).transform((v) => {
|
|
84
84
|
return (0, primitives_js_1.remap)(v, {
|
|
85
85
|
"_id": "id",
|
|
@@ -740,7 +740,7 @@ exports.Evaluations3$inboundSchema = z.object({
|
|
|
740
740
|
human_review_id: z.string(),
|
|
741
741
|
source: exports.CreateDatasetItemEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
742
742
|
reviewed_by_id: z.string(),
|
|
743
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
743
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.096Z").transform(v => new Date(v)),
|
|
744
744
|
type: z.literal("string_array"),
|
|
745
745
|
values: z.array(z.string()),
|
|
746
746
|
}).transform((v) => {
|
|
@@ -765,7 +765,7 @@ exports.Evaluations2$inboundSchema = z.object({
|
|
|
765
765
|
human_review_id: z.string(),
|
|
766
766
|
source: exports.CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
767
767
|
reviewed_by_id: z.string(),
|
|
768
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
768
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.095Z").transform(v => new Date(v)),
|
|
769
769
|
type: z.literal("number"),
|
|
770
770
|
value: z.number(),
|
|
771
771
|
}).transform((v) => {
|
|
@@ -790,7 +790,7 @@ exports.Evaluations1$inboundSchema = z.object({
|
|
|
790
790
|
human_review_id: z.string(),
|
|
791
791
|
source: exports.EvaluationsSource$inboundSchema.default("orq"),
|
|
792
792
|
reviewed_by_id: z.string(),
|
|
793
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
793
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.095Z").transform(v => new Date(v)),
|
|
794
794
|
type: z.literal("string"),
|
|
795
795
|
value: z.string(),
|
|
796
796
|
}).transform((v) => {
|
|
@@ -837,7 +837,7 @@ exports.CreateDatasetItemResponseBody$inboundSchema = z.object({
|
|
|
837
837
|
updated_by_id: z.string().optional(),
|
|
838
838
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
839
839
|
.optional(),
|
|
840
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
840
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
841
841
|
}).transform((v) => {
|
|
842
842
|
return (0, primitives_js_1.remap)(v, {
|
|
843
843
|
"_id": "id",
|
|
@@ -158,7 +158,7 @@ function createDatasourceRequestToJSON(createDatasourceRequest) {
|
|
|
158
158
|
exports.CreateDatasourceStatus$inboundSchema = z.nativeEnum(exports.CreateDatasourceStatus);
|
|
159
159
|
/** @internal */
|
|
160
160
|
exports.CreateDatasourceResponseBody$inboundSchema = z.object({
|
|
161
|
-
_id: z.string().default("
|
|
161
|
+
_id: z.string().default("01KFJYQGREH929J0ZBBR5EDQGX"),
|
|
162
162
|
display_name: z.string(),
|
|
163
163
|
description: z.string().optional(),
|
|
164
164
|
status: exports.CreateDatasourceStatus$inboundSchema,
|
|
@@ -569,8 +569,8 @@ function createEvalResponseBodyEvalsResponse200ApplicationJSON7GuardrailConfigFr
|
|
|
569
569
|
exports.Typescript$inboundSchema = z.object({
|
|
570
570
|
_id: z.string(),
|
|
571
571
|
description: z.string(),
|
|
572
|
-
created: z.string().default("2026-01-
|
|
573
|
-
updated: z.string().default("2026-01-
|
|
572
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
573
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
574
574
|
guardrail_config: z.union([
|
|
575
575
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
576
576
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
@@ -637,8 +637,8 @@ exports.Ragas$inboundSchema = z
|
|
|
637
637
|
.object({
|
|
638
638
|
_id: z.string(),
|
|
639
639
|
description: z.string(),
|
|
640
|
-
created: z.string().default("2026-01-
|
|
641
|
-
updated: z.string().default("2026-01-
|
|
640
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
641
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
642
642
|
guardrail_config: z.union([
|
|
643
643
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
644
644
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
@@ -986,8 +986,8 @@ function functionParamsFromJSON(jsonString) {
|
|
|
986
986
|
exports.CreateEvalResponseBodyFunction$inboundSchema = z.object({
|
|
987
987
|
_id: z.string(),
|
|
988
988
|
description: z.string(),
|
|
989
|
-
created: z.string().default("2026-01-
|
|
990
|
-
updated: z.string().default("2026-01-
|
|
989
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
990
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
991
991
|
guardrail_config: z.union([
|
|
992
992
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
993
993
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
@@ -1083,8 +1083,8 @@ function createEvalResponseBodyEvalsResponseGuardrailConfigFromJSON(jsonString)
|
|
|
1083
1083
|
exports.ResponseBodyPython$inboundSchema = z.object({
|
|
1084
1084
|
_id: z.string(),
|
|
1085
1085
|
description: z.string(),
|
|
1086
|
-
created: z.string().default("2026-01-
|
|
1087
|
-
updated: z.string().default("2026-01-
|
|
1086
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1087
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1088
1088
|
guardrail_config: z.union([
|
|
1089
1089
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1090
1090
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -1148,8 +1148,8 @@ exports.ResponseBodyMethod$inboundSchema = z.nativeEnum(exports.ResponseBodyMeth
|
|
|
1148
1148
|
exports.ResponseBodyHTTP$inboundSchema = z.object({
|
|
1149
1149
|
_id: z.string(),
|
|
1150
1150
|
description: z.string(),
|
|
1151
|
-
created: z.string().default("2026-01-
|
|
1152
|
-
updated: z.string().default("2026-01-
|
|
1151
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1152
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1153
1153
|
guardrail_config: z.union([
|
|
1154
1154
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
1155
1155
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -1213,8 +1213,8 @@ function createEvalResponseBodyGuardrailConfigFromJSON(jsonString) {
|
|
|
1213
1213
|
exports.ResponseBodyJSON$inboundSchema = z.object({
|
|
1214
1214
|
_id: z.string(),
|
|
1215
1215
|
description: z.string(),
|
|
1216
|
-
created: z.string().default("2026-01-
|
|
1217
|
-
updated: z.string().default("2026-01-
|
|
1216
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1217
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1218
1218
|
guardrail_config: z.union([
|
|
1219
1219
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1220
1220
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1275,8 +1275,8 @@ function responseBodyGuardrailConfigFromJSON(jsonString) {
|
|
|
1275
1275
|
exports.ResponseBodyLLM$inboundSchema = z.object({
|
|
1276
1276
|
_id: z.string(),
|
|
1277
1277
|
description: z.string(),
|
|
1278
|
-
created: z.string().default("2026-01-
|
|
1279
|
-
updated: z.string().default("2026-01-
|
|
1278
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1279
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1280
1280
|
guardrail_config: z.union([
|
|
1281
1281
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1282
1282
|
z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -72,7 +72,7 @@ exports.CreateIdentityResponseBody$inboundSchema = z.object({
|
|
|
72
72
|
metadata: z.record(z.any()).optional(),
|
|
73
73
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
74
74
|
.optional(),
|
|
75
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
75
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
76
76
|
}).transform((v) => {
|
|
77
77
|
return (0, primitives_js_1.remap)(v, {
|
|
78
78
|
"_id": "id",
|
|
@@ -560,7 +560,7 @@ function responseBodyCodeToolFromJSON(jsonString) {
|
|
|
560
560
|
}
|
|
561
561
|
/** @internal */
|
|
562
562
|
exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
563
|
-
_id: z.string().default("
|
|
563
|
+
_id: z.string().default("tool_01KFJYQGK1ZAPF3B6T89947XSY"),
|
|
564
564
|
path: z.string(),
|
|
565
565
|
key: z.string(),
|
|
566
566
|
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("01KFJYQGK0J9DAZDYPAQ582S6G"),
|
|
618
618
|
name: z.string(),
|
|
619
619
|
description: z.string().optional(),
|
|
620
620
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -641,7 +641,7 @@ function responseBodyMcpFromJSON(jsonString) {
|
|
|
641
641
|
}
|
|
642
642
|
/** @internal */
|
|
643
643
|
exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
644
|
-
_id: z.string().default("
|
|
644
|
+
_id: z.string().default("tool_01KFJYQGJYAT2ADFSSE36M3QSQ"),
|
|
645
645
|
path: z.string(),
|
|
646
646
|
key: z.string(),
|
|
647
647
|
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_01KFJYQGJXRA2VKM48E9SWVPKV"),
|
|
734
734
|
path: z.string(),
|
|
735
735
|
key: z.string(),
|
|
736
736
|
display_name: z.string().optional(),
|
|
@@ -782,7 +782,7 @@ function responseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
782
782
|
}
|
|
783
783
|
/** @internal */
|
|
784
784
|
exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
785
|
-
_id: z.string().default("
|
|
785
|
+
_id: z.string().default("tool_01KFJYQGJWP34A3EE5QJ2PQY7T"),
|
|
786
786
|
path: z.string(),
|
|
787
787
|
key: z.string(),
|
|
788
788
|
display_name: z.string().optional(),
|
|
@@ -837,7 +837,7 @@ function createToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
837
837
|
}
|
|
838
838
|
/** @internal */
|
|
839
839
|
exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
840
|
-
_id: z.string().default("
|
|
840
|
+
_id: z.string().default("tool_01KFJYQGJV92PK3HV9P2X8C8JA"),
|
|
841
841
|
path: z.string(),
|
|
842
842
|
key: z.string(),
|
|
843
843
|
display_name: z.string().optional(),
|
|
@@ -71,7 +71,7 @@ exports.FileGetResponseBody$inboundSchema = z.object({
|
|
|
71
71
|
bytes: z.number(),
|
|
72
72
|
file_name: z.string(),
|
|
73
73
|
workspace_id: z.string(),
|
|
74
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
74
|
+
created: z.string().datetime({ offset: true }).default("2026-01-22T13:36:21.569Z").transform(v => new Date(v)),
|
|
75
75
|
}).transform((v) => {
|
|
76
76
|
return (0, primitives_js_1.remap)(v, {
|
|
77
77
|
"_id": "id",
|
|
@@ -80,7 +80,7 @@ exports.FileListData$inboundSchema = z.object({
|
|
|
80
80
|
bytes: z.number(),
|
|
81
81
|
file_name: z.string(),
|
|
82
82
|
workspace_id: z.string(),
|
|
83
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
83
|
+
created: z.string().datetime({ offset: true }).default("2026-01-22T13:36:21.569Z").transform(v => new Date(v)),
|
|
84
84
|
}).transform((v) => {
|
|
85
85
|
return (0, primitives_js_1.remap)(v, {
|
|
86
86
|
"_id": "id",
|
|
@@ -94,7 +94,7 @@ exports.FileUploadResponseBody$inboundSchema = z.object({
|
|
|
94
94
|
bytes: z.number(),
|
|
95
95
|
file_name: z.string(),
|
|
96
96
|
workspace_id: z.string(),
|
|
97
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
97
|
+
created: z.string().datetime({ offset: true }).default("2026-01-22T13:36:21.569Z").transform(v => new Date(v)),
|
|
98
98
|
}).transform((v) => {
|
|
99
99
|
return (0, primitives_js_1.remap)(v, {
|
|
100
100
|
"_id": "id",
|
|
@@ -83,7 +83,7 @@ function generateConversationNameMetadataFromJSON(jsonString) {
|
|
|
83
83
|
}
|
|
84
84
|
/** @internal */
|
|
85
85
|
exports.GenerateConversationNameResponseBody$inboundSchema = z.object({
|
|
86
|
-
_id: z.string().default("
|
|
86
|
+
_id: z.string().default("conv_01kfjyqga50wrsqqwj340gkqc5"),
|
|
87
87
|
kind: exports.GenerateConversationNameKind$inboundSchema,
|
|
88
88
|
displayName: z.string(),
|
|
89
89
|
createdAt: z.number(),
|
|
@@ -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_01KFJYQGJCSN1Z58EYHYT6D0NZ"),
|
|
200
200
|
path: z.string(),
|
|
201
201
|
key: z.string(),
|
|
202
202
|
display_name: z.string().optional(),
|
|
@@ -249,7 +249,7 @@ function getAllToolsDataSchemaFromJSON(jsonString) {
|
|
|
249
249
|
}
|
|
250
250
|
/** @internal */
|
|
251
251
|
exports.DataTools$inboundSchema = z.object({
|
|
252
|
-
id: z.string().default("
|
|
252
|
+
id: z.string().default("01KFJYQGJC589SRS903426Q3MA"),
|
|
253
253
|
name: z.string(),
|
|
254
254
|
description: z.string().optional(),
|
|
255
255
|
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_01KFJYQGJBFXT14NF0QKQFHBBV"),
|
|
280
280
|
path: z.string(),
|
|
281
281
|
key: z.string(),
|
|
282
282
|
display_name: z.string().optional(),
|
|
@@ -364,7 +364,7 @@ function getAllToolsDataHttpFromJSON(jsonString) {
|
|
|
364
364
|
}
|
|
365
365
|
/** @internal */
|
|
366
366
|
exports.DataHTTPTool$inboundSchema = z.object({
|
|
367
|
-
_id: z.string().default("
|
|
367
|
+
_id: z.string().default("tool_01KFJYQGJ9W7K3F8NRJ2H1EJM9"),
|
|
368
368
|
path: z.string(),
|
|
369
369
|
key: z.string(),
|
|
370
370
|
display_name: z.string().optional(),
|
|
@@ -416,7 +416,7 @@ function dataJsonSchemaFromJSON(jsonString) {
|
|
|
416
416
|
}
|
|
417
417
|
/** @internal */
|
|
418
418
|
exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
419
|
-
_id: z.string().default("
|
|
419
|
+
_id: z.string().default("tool_01KFJYQGJ8JVFRN67CXF86ZY51"),
|
|
420
420
|
path: z.string(),
|
|
421
421
|
key: z.string(),
|
|
422
422
|
display_name: z.string().optional(),
|
|
@@ -472,7 +472,7 @@ function getAllToolsDataFunctionFromJSON(jsonString) {
|
|
|
472
472
|
}
|
|
473
473
|
/** @internal */
|
|
474
474
|
exports.DataFunctionTool$inboundSchema = z.object({
|
|
475
|
-
_id: z.string().default("
|
|
475
|
+
_id: z.string().default("tool_01KFJYQGJ7EDZQ9J750J3J2EJQ"),
|
|
476
476
|
path: z.string(),
|
|
477
477
|
key: z.string(),
|
|
478
478
|
display_name: z.string().optional(),
|
|
@@ -244,8 +244,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONGuardrailConfigFromJSON(json
|
|
|
244
244
|
exports.DataTypescript$inboundSchema = z.object({
|
|
245
245
|
_id: z.string(),
|
|
246
246
|
description: z.string(),
|
|
247
|
-
created: z.string().default("2026-01-
|
|
248
|
-
updated: z.string().default("2026-01-
|
|
247
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
248
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
249
249
|
guardrail_config: z.union([
|
|
250
250
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
251
251
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -308,8 +308,8 @@ exports.DataRagasMetric$inboundSchema = z.nativeEnum(exports.DataRagasMetric);
|
|
|
308
308
|
exports.DataRagas$inboundSchema = z.object({
|
|
309
309
|
_id: z.string(),
|
|
310
310
|
description: z.string(),
|
|
311
|
-
created: z.string().default("2026-01-
|
|
312
|
-
updated: z.string().default("2026-01-
|
|
311
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
312
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
313
313
|
guardrail_config: z.union([
|
|
314
314
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
315
315
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -646,8 +646,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
646
646
|
exports.DataFunction$inboundSchema = z.object({
|
|
647
647
|
_id: z.string(),
|
|
648
648
|
description: z.string(),
|
|
649
|
-
created: z.string().default("2026-01-
|
|
650
|
-
updated: z.string().default("2026-01-
|
|
649
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
650
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
651
651
|
guardrail_config: z.union([
|
|
652
652
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
653
653
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -741,8 +741,8 @@ function getEvalsDataEvalsGuardrailConfigFromJSON(jsonString) {
|
|
|
741
741
|
exports.DataPython$inboundSchema = z.object({
|
|
742
742
|
_id: z.string(),
|
|
743
743
|
description: z.string(),
|
|
744
|
-
created: z.string().default("2026-01-
|
|
745
|
-
updated: z.string().default("2026-01-
|
|
744
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
745
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
746
746
|
guardrail_config: z.union([
|
|
747
747
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
748
748
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -805,8 +805,8 @@ exports.DataMethod$inboundSchema = z
|
|
|
805
805
|
exports.DataHTTP$inboundSchema = z.object({
|
|
806
806
|
_id: z.string(),
|
|
807
807
|
description: z.string(),
|
|
808
|
-
created: z.string().default("2026-01-
|
|
809
|
-
updated: z.string().default("2026-01-
|
|
808
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
809
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
810
810
|
guardrail_config: z.union([
|
|
811
811
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
812
812
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -871,8 +871,8 @@ function dataGuardrailConfigFromJSON(jsonString) {
|
|
|
871
871
|
exports.DataJSON$inboundSchema = z.object({
|
|
872
872
|
_id: z.string(),
|
|
873
873
|
description: z.string(),
|
|
874
|
-
created: z.string().default("2026-01-
|
|
875
|
-
updated: z.string().default("2026-01-
|
|
874
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
875
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
876
876
|
guardrail_config: z.union([
|
|
877
877
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
878
878
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
@@ -935,8 +935,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfigF
|
|
|
935
935
|
exports.DataLLM$inboundSchema = z.object({
|
|
936
936
|
_id: z.string(),
|
|
937
937
|
description: z.string(),
|
|
938
|
-
created: z.string().default("2026-01-
|
|
939
|
-
updated: z.string().default("2026-01-
|
|
938
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
939
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
940
940
|
guardrail_config: z.union([
|
|
941
941
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
942
942
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -107,7 +107,7 @@ exports.Data$inboundSchema = z
|
|
|
107
107
|
metadata: z.record(z.any()).optional(),
|
|
108
108
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
109
109
|
.optional(),
|
|
110
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
110
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
111
111
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
112
112
|
}).transform((v) => {
|
|
113
113
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -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-01-
|
|
423
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.073Z").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-01-
|
|
448
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.073Z").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-01-
|
|
474
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.072Z").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-01-
|
|
521
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").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-01-
|
|
90
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").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("01KFJYQGRA1W6A4ZSVM42XVSJP"),
|
|
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-01-
|
|
107
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").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, {
|
|
@@ -60,7 +60,7 @@ exports.RetrieveContactResponseBody$inboundSchema = z.object({
|
|
|
60
60
|
metadata: z.record(z.any()).optional(),
|
|
61
61
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
62
62
|
.optional(),
|
|
63
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
63
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
64
64
|
}).transform((v) => {
|
|
65
65
|
return (0, primitives_js_1.remap)(v, {
|
|
66
66
|
"_id": "id",
|
|
@@ -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-01-
|
|
412
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.080Z").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-01-
|
|
439
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.080Z").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-01-
|
|
465
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-22T13:36:32.079Z").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-01-
|
|
512
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-22T13:36:18.119Z").transform(v => new Date(v)),
|
|
513
513
|
}).transform((v) => {
|
|
514
514
|
return (0, primitives_js_1.remap)(v, {
|
|
515
515
|
"_id": "id",
|