@orq-ai/node 3.14.25 → 3.14.28
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/bin/mcp-server.js +302 -300
- package/bin/mcp-server.js.map +41 -41
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +4 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +33 -33
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagenttasks.ts +4 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +10 -10
|
@@ -192,7 +192,7 @@ exports.ListBudgetsData$inboundSchema = z.object({
|
|
|
192
192
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$inboundSchema).optional(),
|
|
193
193
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
194
194
|
.optional(),
|
|
195
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
195
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:45.002Z").transform(v => new Date(v)),
|
|
196
196
|
}).transform((v) => {
|
|
197
197
|
return (0, primitives_js_1.remap)(v, {
|
|
198
198
|
"_id": "id",
|
|
@@ -209,7 +209,7 @@ exports.ListBudgetsData$outboundSchema = z.object({
|
|
|
209
209
|
isActive: z.boolean(),
|
|
210
210
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$outboundSchema).optional(),
|
|
211
211
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
212
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
212
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:45.002Z"))
|
|
213
213
|
.transform(v => v.toISOString()),
|
|
214
214
|
}).transform((v) => {
|
|
215
215
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -154,7 +154,7 @@ exports.Data$inboundSchema = z
|
|
|
154
154
|
metadata: z.record(z.any()).optional(),
|
|
155
155
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
156
156
|
.optional(),
|
|
157
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
157
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
158
158
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
159
159
|
}).transform((v) => {
|
|
160
160
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -174,7 +174,7 @@ exports.Data$outboundSchema = z.object({
|
|
|
174
174
|
tags: z.array(z.string()).optional(),
|
|
175
175
|
metadata: z.record(z.any()).optional(),
|
|
176
176
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
177
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
177
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
178
178
|
.transform(v => v.toISOString()),
|
|
179
179
|
metrics: z.lazy(() => exports.ListContactsMetrics$outboundSchema),
|
|
180
180
|
}).transform((v) => {
|
|
@@ -988,7 +988,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
988
988
|
human_review_id: z.string(),
|
|
989
989
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
990
990
|
reviewed_by_id: z.string(),
|
|
991
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
991
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.912Z").transform(v => new Date(v)),
|
|
992
992
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
993
993
|
values: z.array(z.string()),
|
|
994
994
|
}).transform((v) => {
|
|
@@ -1006,7 +1006,7 @@ exports.ListDatasetDatapointsEvaluations3$outboundSchema = z.object({
|
|
|
1006
1006
|
humanReviewId: z.string(),
|
|
1007
1007
|
source: exports.ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
1008
1008
|
reviewedById: z.string(),
|
|
1009
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1009
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.912Z"))
|
|
1010
1010
|
.transform(v => v.toISOString()),
|
|
1011
1011
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
1012
1012
|
values: z.array(z.string()),
|
|
@@ -1044,7 +1044,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
1044
1044
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
1045
1045
|
.default("orq"),
|
|
1046
1046
|
reviewed_by_id: z.string(),
|
|
1047
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1047
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.912Z").transform(v => new Date(v)),
|
|
1048
1048
|
type: exports.ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
1049
1049
|
value: z.number(),
|
|
1050
1050
|
}).transform((v) => {
|
|
@@ -1063,7 +1063,7 @@ exports.ListDatasetDatapointsEvaluations2$outboundSchema = z.object({
|
|
|
1063
1063
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
1064
1064
|
.default("orq"),
|
|
1065
1065
|
reviewedById: z.string(),
|
|
1066
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1066
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.912Z"))
|
|
1067
1067
|
.transform(v => v.toISOString()),
|
|
1068
1068
|
type: exports.ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
1069
1069
|
value: z.number(),
|
|
@@ -1101,7 +1101,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
1101
1101
|
human_review_id: z.string(),
|
|
1102
1102
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
1103
1103
|
reviewed_by_id: z.string(),
|
|
1104
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1104
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.911Z").transform(v => new Date(v)),
|
|
1105
1105
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
1106
1106
|
value: z.string(),
|
|
1107
1107
|
}).transform((v) => {
|
|
@@ -1119,7 +1119,7 @@ exports.ListDatasetDatapointsEvaluations1$outboundSchema = z.object({
|
|
|
1119
1119
|
humanReviewId: z.string(),
|
|
1120
1120
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
1121
1121
|
reviewedById: z.string(),
|
|
1122
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1122
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.911Z"))
|
|
1123
1123
|
.transform(v => v.toISOString()),
|
|
1124
1124
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
1125
1125
|
value: z.string(),
|
|
@@ -1179,7 +1179,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
1179
1179
|
updated_by_id: z.string().optional(),
|
|
1180
1180
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1181
1181
|
.optional(),
|
|
1182
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
1182
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
1183
1183
|
}).transform((v) => {
|
|
1184
1184
|
return (0, primitives_js_1.remap)(v, {
|
|
1185
1185
|
"_id": "id",
|
|
@@ -1214,7 +1214,7 @@ exports.ListDatasetDatapointsData$outboundSchema = z.object({
|
|
|
1214
1214
|
createdById: z.string().optional(),
|
|
1215
1215
|
updatedById: z.string().optional(),
|
|
1216
1216
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1217
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
1217
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
1218
1218
|
.transform(v => v.toISOString()),
|
|
1219
1219
|
}).transform((v) => {
|
|
1220
1220
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -120,7 +120,7 @@ exports.ListDatasetsData$inboundSchema = z.object({
|
|
|
120
120
|
updated_by_id: z.string().optional(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
122
122
|
.optional(),
|
|
123
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
123
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return (0, primitives_js_1.remap)(v, {
|
|
126
126
|
"_id": "id",
|
|
@@ -141,7 +141,7 @@ exports.ListDatasetsData$outboundSchema = z.object({
|
|
|
141
141
|
createdById: z.string().optional(),
|
|
142
142
|
updatedById: z.string().optional(),
|
|
143
143
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
144
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
144
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
145
145
|
.transform(v => v.toISOString()),
|
|
146
146
|
}).transform((v) => {
|
|
147
147
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -114,7 +114,7 @@ exports.ListDatasourcesStatus$inboundSchema = z.nativeEnum(exports.ListDatasourc
|
|
|
114
114
|
exports.ListDatasourcesStatus$outboundSchema = exports.ListDatasourcesStatus$inboundSchema;
|
|
115
115
|
/** @internal */
|
|
116
116
|
exports.ListDatasourcesData$inboundSchema = z.object({
|
|
117
|
-
_id: z.string().default("
|
|
117
|
+
_id: z.string().default("01K9HXVQ8VBKF0AKJC8PQV3D95"),
|
|
118
118
|
display_name: z.string(),
|
|
119
119
|
description: z.string().optional(),
|
|
120
120
|
status: exports.ListDatasourcesStatus$inboundSchema,
|
|
@@ -138,7 +138,7 @@ exports.ListDatasourcesData$inboundSchema = z.object({
|
|
|
138
138
|
});
|
|
139
139
|
/** @internal */
|
|
140
140
|
exports.ListDatasourcesData$outboundSchema = z.object({
|
|
141
|
-
id: z.string().default("
|
|
141
|
+
id: z.string().default("01K9HXVQ8VBKF0AKJC8PQV3D95"),
|
|
142
142
|
displayName: z.string(),
|
|
143
143
|
description: z.string().optional(),
|
|
144
144
|
status: exports.ListDatasourcesStatus$outboundSchema,
|
|
@@ -69,7 +69,7 @@ exports.RetrieveContactResponseBody$inboundSchema = z.object({
|
|
|
69
69
|
metadata: z.record(z.any()).optional(),
|
|
70
70
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
71
71
|
.optional(),
|
|
72
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
72
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
73
73
|
}).transform((v) => {
|
|
74
74
|
return (0, primitives_js_1.remap)(v, {
|
|
75
75
|
"_id": "id",
|
|
@@ -88,7 +88,7 @@ exports.RetrieveContactResponseBody$outboundSchema = z.object({
|
|
|
88
88
|
tags: z.array(z.string()).optional(),
|
|
89
89
|
metadata: z.record(z.any()).optional(),
|
|
90
90
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
91
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
91
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
92
92
|
.transform(v => v.toISOString()),
|
|
93
93
|
}).transform((v) => {
|
|
94
94
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -974,7 +974,7 @@ exports.RetrieveDatapointEvaluations3$inboundSchema = z.object({
|
|
|
974
974
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
975
975
|
.default("orq"),
|
|
976
976
|
reviewed_by_id: z.string(),
|
|
977
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
977
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.930Z").transform(v => new Date(v)),
|
|
978
978
|
type: exports.RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
979
979
|
values: z.array(z.string()),
|
|
980
980
|
}).transform((v) => {
|
|
@@ -993,7 +993,7 @@ exports.RetrieveDatapointEvaluations3$outboundSchema = z.object({
|
|
|
993
993
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
994
994
|
.default("orq"),
|
|
995
995
|
reviewedById: z.string(),
|
|
996
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
996
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.930Z"))
|
|
997
997
|
.transform(v => v.toISOString()),
|
|
998
998
|
type: exports.RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
999
999
|
values: z.array(z.string()),
|
|
@@ -1033,7 +1033,7 @@ exports.RetrieveDatapointEvaluations2$inboundSchema = z.object({
|
|
|
1033
1033
|
human_review_id: z.string(),
|
|
1034
1034
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
1035
1035
|
reviewed_by_id: z.string(),
|
|
1036
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1036
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.929Z").transform(v => new Date(v)),
|
|
1037
1037
|
type: exports.RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
1038
1038
|
value: z.number(),
|
|
1039
1039
|
}).transform((v) => {
|
|
@@ -1051,7 +1051,7 @@ exports.RetrieveDatapointEvaluations2$outboundSchema = z.object({
|
|
|
1051
1051
|
humanReviewId: z.string(),
|
|
1052
1052
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
1053
1053
|
reviewedById: z.string(),
|
|
1054
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1054
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.929Z"))
|
|
1055
1055
|
.transform(v => v.toISOString()),
|
|
1056
1056
|
type: exports.RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
1057
1057
|
value: z.number(),
|
|
@@ -1089,7 +1089,7 @@ exports.RetrieveDatapointEvaluations1$inboundSchema = z.object({
|
|
|
1089
1089
|
human_review_id: z.string(),
|
|
1090
1090
|
source: exports.RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
1091
1091
|
reviewed_by_id: z.string(),
|
|
1092
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1092
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-08T14:27:55.926Z").transform(v => new Date(v)),
|
|
1093
1093
|
type: exports.RetrieveDatapointEvaluationsType$inboundSchema,
|
|
1094
1094
|
value: z.string(),
|
|
1095
1095
|
}).transform((v) => {
|
|
@@ -1107,7 +1107,7 @@ exports.RetrieveDatapointEvaluations1$outboundSchema = z.object({
|
|
|
1107
1107
|
humanReviewId: z.string(),
|
|
1108
1108
|
source: exports.RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
1109
1109
|
reviewedById: z.string(),
|
|
1110
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1110
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T14:27:55.926Z"))
|
|
1111
1111
|
.transform(v => v.toISOString()),
|
|
1112
1112
|
type: exports.RetrieveDatapointEvaluationsType$outboundSchema,
|
|
1113
1113
|
value: z.string(),
|
|
@@ -1167,7 +1167,7 @@ exports.RetrieveDatapointResponseBody$inboundSchema = z.object({
|
|
|
1167
1167
|
updated_by_id: z.string().optional(),
|
|
1168
1168
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1169
1169
|
.optional(),
|
|
1170
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
1170
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
1171
1171
|
}).transform((v) => {
|
|
1172
1172
|
return (0, primitives_js_1.remap)(v, {
|
|
1173
1173
|
"_id": "id",
|
|
@@ -1202,7 +1202,7 @@ exports.RetrieveDatapointResponseBody$outboundSchema = z.object({
|
|
|
1202
1202
|
createdById: z.string().optional(),
|
|
1203
1203
|
updatedById: z.string().optional(),
|
|
1204
1204
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1205
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
1205
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
1206
1206
|
.transform(v => v.toISOString()),
|
|
1207
1207
|
}).transform((v) => {
|
|
1208
1208
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -105,7 +105,7 @@ exports.RetrieveDatasetResponseBody$inboundSchema = z.object({
|
|
|
105
105
|
updated_by_id: z.string().optional(),
|
|
106
106
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
107
107
|
.optional(),
|
|
108
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
108
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-08T14:27:44.679Z").transform(v => new Date(v)),
|
|
109
109
|
}).transform((v) => {
|
|
110
110
|
return (0, primitives_js_1.remap)(v, {
|
|
111
111
|
"_id": "id",
|
|
@@ -126,7 +126,7 @@ exports.RetrieveDatasetResponseBody$outboundSchema = z.object({
|
|
|
126
126
|
createdById: z.string().optional(),
|
|
127
127
|
updatedById: z.string().optional(),
|
|
128
128
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
129
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
129
|
+
updated: z.date().default(() => new Date("2025-11-08T14:27:44.679Z"))
|
|
130
130
|
.transform(v => v.toISOString()),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -83,7 +83,7 @@ exports.RetrieveDatasourceStatus$inboundSchema = z.nativeEnum(exports.RetrieveDa
|
|
|
83
83
|
exports.RetrieveDatasourceStatus$outboundSchema = exports.RetrieveDatasourceStatus$inboundSchema;
|
|
84
84
|
/** @internal */
|
|
85
85
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
86
|
-
_id: z.string().default("
|
|
86
|
+
_id: z.string().default("01K9HXVQ8X65YF3P876M0AN04Q"),
|
|
87
87
|
display_name: z.string(),
|
|
88
88
|
description: z.string().optional(),
|
|
89
89
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -107,7 +107,7 @@ exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
|
107
107
|
});
|
|
108
108
|
/** @internal */
|
|
109
109
|
exports.RetrieveDatasourceResponseBody$outboundSchema = z.object({
|
|
110
|
-
id: z.string().default("
|
|
110
|
+
id: z.string().default("01K9HXVQ8X65YF3P876M0AN04Q"),
|
|
111
111
|
displayName: z.string(),
|
|
112
112
|
description: z.string().optional(),
|
|
113
113
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -219,7 +219,7 @@ function retrieveToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
219
219
|
}
|
|
220
220
|
/** @internal */
|
|
221
221
|
exports.RetrieveToolResponseBody5$inboundSchema = z.object({
|
|
222
|
-
_id: z.string().default("
|
|
222
|
+
_id: z.string().default("01K9HXVQ6B8JCA9RK9YRARMY7X"),
|
|
223
223
|
path: z.string(),
|
|
224
224
|
key: z.string(),
|
|
225
225
|
display_name: z.string().optional(),
|
|
@@ -249,7 +249,7 @@ exports.RetrieveToolResponseBody5$inboundSchema = z.object({
|
|
|
249
249
|
});
|
|
250
250
|
/** @internal */
|
|
251
251
|
exports.RetrieveToolResponseBody5$outboundSchema = z.object({
|
|
252
|
-
id: z.string().default("
|
|
252
|
+
id: z.string().default("01K9HXVQ6B8JCA9RK9YRARMY7X"),
|
|
253
253
|
path: z.string(),
|
|
254
254
|
key: z.string(),
|
|
255
255
|
displayName: z.string().optional(),
|
|
@@ -378,7 +378,7 @@ function retrieveToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
378
378
|
}
|
|
379
379
|
/** @internal */
|
|
380
380
|
exports.RetrieveToolResponseBody4$inboundSchema = z.object({
|
|
381
|
-
_id: z.string().default("
|
|
381
|
+
_id: z.string().default("01K9HXVQ69AB4TAHHJZWTJWA4Q"),
|
|
382
382
|
path: z.string(),
|
|
383
383
|
key: z.string(),
|
|
384
384
|
display_name: z.string().optional(),
|
|
@@ -406,7 +406,7 @@ exports.RetrieveToolResponseBody4$inboundSchema = z.object({
|
|
|
406
406
|
});
|
|
407
407
|
/** @internal */
|
|
408
408
|
exports.RetrieveToolResponseBody4$outboundSchema = z.object({
|
|
409
|
-
id: z.string().default("
|
|
409
|
+
id: z.string().default("01K9HXVQ69AB4TAHHJZWTJWA4Q"),
|
|
410
410
|
path: z.string(),
|
|
411
411
|
key: z.string(),
|
|
412
412
|
displayName: z.string().optional(),
|
|
@@ -534,7 +534,7 @@ function retrieveToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
534
534
|
}
|
|
535
535
|
/** @internal */
|
|
536
536
|
exports.RetrieveToolResponseBody3$inboundSchema = z.object({
|
|
537
|
-
_id: z.string().default("
|
|
537
|
+
_id: z.string().default("01K9HXVQ67459KGASYWV8QW4DP"),
|
|
538
538
|
path: z.string(),
|
|
539
539
|
key: z.string(),
|
|
540
540
|
display_name: z.string().optional(),
|
|
@@ -562,7 +562,7 @@ exports.RetrieveToolResponseBody3$inboundSchema = z.object({
|
|
|
562
562
|
});
|
|
563
563
|
/** @internal */
|
|
564
564
|
exports.RetrieveToolResponseBody3$outboundSchema = z.object({
|
|
565
|
-
id: z.string().default("
|
|
565
|
+
id: z.string().default("01K9HXVQ67459KGASYWV8QW4DP"),
|
|
566
566
|
path: z.string(),
|
|
567
567
|
key: z.string(),
|
|
568
568
|
displayName: z.string().optional(),
|
|
@@ -624,7 +624,7 @@ function retrieveToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
624
624
|
}
|
|
625
625
|
/** @internal */
|
|
626
626
|
exports.RetrieveToolResponseBody2$inboundSchema = z.object({
|
|
627
|
-
_id: z.string().default("
|
|
627
|
+
_id: z.string().default("01K9HXVQ66KA5NCFNH4A6JVBJD"),
|
|
628
628
|
path: z.string(),
|
|
629
629
|
key: z.string(),
|
|
630
630
|
display_name: z.string().optional(),
|
|
@@ -653,7 +653,7 @@ exports.RetrieveToolResponseBody2$inboundSchema = z.object({
|
|
|
653
653
|
});
|
|
654
654
|
/** @internal */
|
|
655
655
|
exports.RetrieveToolResponseBody2$outboundSchema = z.object({
|
|
656
|
-
id: z.string().default("
|
|
656
|
+
id: z.string().default("01K9HXVQ66KA5NCFNH4A6JVBJD"),
|
|
657
657
|
path: z.string(),
|
|
658
658
|
key: z.string(),
|
|
659
659
|
displayName: z.string().optional(),
|
|
@@ -716,7 +716,7 @@ function retrieveToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
716
716
|
}
|
|
717
717
|
/** @internal */
|
|
718
718
|
exports.RetrieveToolResponseBody1$inboundSchema = z.object({
|
|
719
|
-
_id: z.string().default("
|
|
719
|
+
_id: z.string().default("01K9HXVQ65MMZZVPPX378PEM6T"),
|
|
720
720
|
path: z.string(),
|
|
721
721
|
key: z.string(),
|
|
722
722
|
display_name: z.string().optional(),
|
|
@@ -744,7 +744,7 @@ exports.RetrieveToolResponseBody1$inboundSchema = z.object({
|
|
|
744
744
|
});
|
|
745
745
|
/** @internal */
|
|
746
746
|
exports.RetrieveToolResponseBody1$outboundSchema = z.object({
|
|
747
|
-
id: z.string().default("
|
|
747
|
+
id: z.string().default("01K9HXVQ65MMZZVPPX378PEM6T"),
|
|
748
748
|
path: z.string(),
|
|
749
749
|
key: z.string(),
|
|
750
750
|
displayName: z.string().optional(),
|
|
@@ -2074,7 +2074,7 @@ export declare const AgentToolInputRunCurrentDateTool$inboundSchema: z.ZodType<A
|
|
|
2074
2074
|
/** @internal */
|
|
2075
2075
|
export type AgentToolInputRunCurrentDateTool$Outbound = {
|
|
2076
2076
|
type: string;
|
|
2077
|
-
requires_approval
|
|
2077
|
+
requires_approval?: boolean | undefined;
|
|
2078
2078
|
};
|
|
2079
2079
|
/** @internal */
|
|
2080
2080
|
export declare const AgentToolInputRunCurrentDateTool$outboundSchema: z.ZodType<AgentToolInputRunCurrentDateTool$Outbound, z.ZodTypeDef, AgentToolInputRunCurrentDateTool>;
|
|
@@ -2089,7 +2089,7 @@ export declare const AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema: z.Zo
|
|
|
2089
2089
|
/** @internal */
|
|
2090
2090
|
export type AgentToolInputRunQueryKnowledgeBaseTool$Outbound = {
|
|
2091
2091
|
type: string;
|
|
2092
|
-
requires_approval
|
|
2092
|
+
requires_approval?: boolean | undefined;
|
|
2093
2093
|
};
|
|
2094
2094
|
/** @internal */
|
|
2095
2095
|
export declare const AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema: z.ZodType<AgentToolInputRunQueryKnowledgeBaseTool$Outbound, z.ZodTypeDef, AgentToolInputRunQueryKnowledgeBaseTool>;
|
|
@@ -2104,7 +2104,7 @@ export declare const AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
2104
2104
|
/** @internal */
|
|
2105
2105
|
export type AgentToolInputRunRetrieveKnowledgeBasesTool$Outbound = {
|
|
2106
2106
|
type: string;
|
|
2107
|
-
requires_approval
|
|
2107
|
+
requires_approval?: boolean | undefined;
|
|
2108
2108
|
};
|
|
2109
2109
|
/** @internal */
|
|
2110
2110
|
export declare const AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema: z.ZodType<AgentToolInputRunRetrieveKnowledgeBasesTool$Outbound, z.ZodTypeDef, AgentToolInputRunRetrieveKnowledgeBasesTool>;
|
|
@@ -2119,7 +2119,7 @@ export declare const AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema: z.
|
|
|
2119
2119
|
/** @internal */
|
|
2120
2120
|
export type AgentToolInputRunDeleteMemoryDocumentTool$Outbound = {
|
|
2121
2121
|
type: string;
|
|
2122
|
-
requires_approval
|
|
2122
|
+
requires_approval?: boolean | undefined;
|
|
2123
2123
|
};
|
|
2124
2124
|
/** @internal */
|
|
2125
2125
|
export declare const AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema: z.ZodType<AgentToolInputRunDeleteMemoryDocumentTool$Outbound, z.ZodTypeDef, AgentToolInputRunDeleteMemoryDocumentTool>;
|
|
@@ -2134,7 +2134,7 @@ export declare const AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema: z.
|
|
|
2134
2134
|
/** @internal */
|
|
2135
2135
|
export type AgentToolInputRunRetrieveMemoryStoresTool$Outbound = {
|
|
2136
2136
|
type: string;
|
|
2137
|
-
requires_approval
|
|
2137
|
+
requires_approval?: boolean | undefined;
|
|
2138
2138
|
};
|
|
2139
2139
|
/** @internal */
|
|
2140
2140
|
export declare const AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema: z.ZodType<AgentToolInputRunRetrieveMemoryStoresTool$Outbound, z.ZodTypeDef, AgentToolInputRunRetrieveMemoryStoresTool>;
|
|
@@ -2149,7 +2149,7 @@ export declare const AgentToolInputRunWriteMemoryStoreTool$inboundSchema: z.ZodT
|
|
|
2149
2149
|
/** @internal */
|
|
2150
2150
|
export type AgentToolInputRunWriteMemoryStoreTool$Outbound = {
|
|
2151
2151
|
type: string;
|
|
2152
|
-
requires_approval
|
|
2152
|
+
requires_approval?: boolean | undefined;
|
|
2153
2153
|
};
|
|
2154
2154
|
/** @internal */
|
|
2155
2155
|
export declare const AgentToolInputRunWriteMemoryStoreTool$outboundSchema: z.ZodType<AgentToolInputRunWriteMemoryStoreTool$Outbound, z.ZodTypeDef, AgentToolInputRunWriteMemoryStoreTool>;
|
|
@@ -2164,7 +2164,7 @@ export declare const AgentToolInputRunQueryMemoryStoreTool$inboundSchema: z.ZodT
|
|
|
2164
2164
|
/** @internal */
|
|
2165
2165
|
export type AgentToolInputRunQueryMemoryStoreTool$Outbound = {
|
|
2166
2166
|
type: string;
|
|
2167
|
-
requires_approval
|
|
2167
|
+
requires_approval?: boolean | undefined;
|
|
2168
2168
|
};
|
|
2169
2169
|
/** @internal */
|
|
2170
2170
|
export declare const AgentToolInputRunQueryMemoryStoreTool$outboundSchema: z.ZodType<AgentToolInputRunQueryMemoryStoreTool$Outbound, z.ZodTypeDef, AgentToolInputRunQueryMemoryStoreTool>;
|
|
@@ -2179,7 +2179,7 @@ export declare const AgentToolInputRunRetrieveAgentsTool$inboundSchema: z.ZodTyp
|
|
|
2179
2179
|
/** @internal */
|
|
2180
2180
|
export type AgentToolInputRunRetrieveAgentsTool$Outbound = {
|
|
2181
2181
|
type: string;
|
|
2182
|
-
requires_approval
|
|
2182
|
+
requires_approval?: boolean | undefined;
|
|
2183
2183
|
};
|
|
2184
2184
|
/** @internal */
|
|
2185
2185
|
export declare const AgentToolInputRunRetrieveAgentsTool$outboundSchema: z.ZodType<AgentToolInputRunRetrieveAgentsTool$Outbound, z.ZodTypeDef, AgentToolInputRunRetrieveAgentsTool>;
|
|
@@ -2194,7 +2194,7 @@ export declare const AgentToolInputRunCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
2194
2194
|
/** @internal */
|
|
2195
2195
|
export type AgentToolInputRunCallSubAgentTool$Outbound = {
|
|
2196
2196
|
type: string;
|
|
2197
|
-
requires_approval
|
|
2197
|
+
requires_approval?: boolean | undefined;
|
|
2198
2198
|
};
|
|
2199
2199
|
/** @internal */
|
|
2200
2200
|
export declare const AgentToolInputRunCallSubAgentTool$outboundSchema: z.ZodType<AgentToolInputRunCallSubAgentTool$Outbound, z.ZodTypeDef, AgentToolInputRunCallSubAgentTool>;
|
|
@@ -2209,7 +2209,7 @@ export declare const AgentToolInputRunWebScraperTool$inboundSchema: z.ZodType<Ag
|
|
|
2209
2209
|
/** @internal */
|
|
2210
2210
|
export type AgentToolInputRunWebScraperTool$Outbound = {
|
|
2211
2211
|
type: string;
|
|
2212
|
-
requires_approval
|
|
2212
|
+
requires_approval?: boolean | undefined;
|
|
2213
2213
|
};
|
|
2214
2214
|
/** @internal */
|
|
2215
2215
|
export declare const AgentToolInputRunWebScraperTool$outboundSchema: z.ZodType<AgentToolInputRunWebScraperTool$Outbound, z.ZodTypeDef, AgentToolInputRunWebScraperTool>;
|
|
@@ -2224,7 +2224,7 @@ export declare const AgentToolInputRunGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
2224
2224
|
/** @internal */
|
|
2225
2225
|
export type AgentToolInputRunGoogleSearchTool$Outbound = {
|
|
2226
2226
|
type: string;
|
|
2227
|
-
requires_approval
|
|
2227
|
+
requires_approval?: boolean | undefined;
|
|
2228
2228
|
};
|
|
2229
2229
|
/** @internal */
|
|
2230
2230
|
export declare const AgentToolInputRunGoogleSearchTool$outboundSchema: z.ZodType<AgentToolInputRunGoogleSearchTool$Outbound, z.ZodTypeDef, AgentToolInputRunGoogleSearchTool>;
|