@orq-ai/node 4.0.0-rc.53 → 4.0.0-rc.54
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 +1 -1
- package/bin/mcp-server.js +215 -219
- package/bin/mcp-server.js.map +38 -38
- package/docs/sdks/memorystores/README.md +3 -4
- package/examples/package-lock.json +1 -1
- package/funcs/memoryStoresCreate.d.ts +1 -2
- package/funcs/memoryStoresCreate.d.ts.map +1 -1
- package/funcs/memoryStoresCreate.js +2 -6
- package/funcs/memoryStoresCreate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +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 +12 -12
- 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 +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- 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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- 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 +14 -14
- package/package.json +1 -1
- package/src/funcs/memoryStoresCreate.ts +2 -11
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- 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 +12 -12
- 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 +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- 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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- 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 +14 -14
package/src/mcp-server/server.ts
CHANGED
|
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
516
516
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
517
517
|
.optional(),
|
|
518
518
|
updated: z.string().datetime({ offset: true }).default(
|
|
519
|
-
"2025-11-20T08:
|
|
519
|
+
"2025-11-20T08:47:59.142Z",
|
|
520
520
|
).transform(v => new Date(v)),
|
|
521
521
|
}).transform((v) => {
|
|
522
522
|
return remap$(v, {
|
|
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
553
553
|
isActive: z.boolean(),
|
|
554
554
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
555
555
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
556
|
-
updated: z.date().default(() => new Date("2025-11-20T08:
|
|
556
|
+
updated: z.date().default(() => new Date("2025-11-20T08:47:59.142Z"))
|
|
557
557
|
.transform(v => v.toISOString()),
|
|
558
558
|
}).transform((v) => {
|
|
559
559
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-20T08:
|
|
170
|
+
"2025-11-20T08:47:58.743Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-20T08:
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-20T08:47:58.743Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-20T08:
|
|
190
|
+
"2025-11-20T08:47:58.743Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-20T08:
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-20T08:47:58.743Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-20T08:
|
|
4932
|
+
"2025-11-20T08:48:12.605Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-20T08:
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.605Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-20T08:
|
|
5032
|
+
"2025-11-20T08:48:12.604Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-20T08:
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.604Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-20T08:
|
|
5130
|
+
"2025-11-20T08:48:12.596Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-20T08:
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.596Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-20T08:
|
|
5270
|
+
"2025-11-20T08:47:58.743Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-20T08:
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-20T08:47:58.743Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01KAG769Q4NGXCTVFQGDXX5KJA"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01KAG769Q4NGXCTVFQGDXX5KJA"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-20T08:
|
|
2760
|
-
updated: z.string().default("2025-11-20T08:
|
|
2759
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-20T08:
|
|
2803
|
-
updated: z.string().default("2025-11-20T08:
|
|
2802
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-20T08:
|
|
3085
|
-
updated: z.string().default("2025-11-20T08:
|
|
3084
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-20T08:
|
|
3131
|
-
updated: z.string().default("2025-11-20T08:
|
|
3130
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5389,8 +5389,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5389
5389
|
> = z.object({
|
|
5390
5390
|
_id: z.string(),
|
|
5391
5391
|
description: z.string(),
|
|
5392
|
-
created: z.string().default("2025-11-20T08:
|
|
5393
|
-
updated: z.string().default("2025-11-20T08:
|
|
5392
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5393
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5394
5394
|
guardrail_config: z.union([
|
|
5395
5395
|
z.lazy(() =>
|
|
5396
5396
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5503,8 +5503,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5503
5503
|
> = z.object({
|
|
5504
5504
|
id: z.string(),
|
|
5505
5505
|
description: z.string(),
|
|
5506
|
-
created: z.string().default("2025-11-20T08:
|
|
5507
|
-
updated: z.string().default("2025-11-20T08:
|
|
5506
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5507
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5508
5508
|
guardrailConfig: z.union([
|
|
5509
5509
|
z.lazy(() =>
|
|
5510
5510
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
_id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-20T08:
|
|
5825
|
-
updated: z.string().default("2025-11-20T08:
|
|
5824
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5826
5826
|
guardrail_config: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5863,8 +5863,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5863
5863
|
> = z.object({
|
|
5864
5864
|
id: z.string(),
|
|
5865
5865
|
description: z.string(),
|
|
5866
|
-
created: z.string().default("2025-11-20T08:
|
|
5867
|
-
updated: z.string().default("2025-11-20T08:
|
|
5866
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5867
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
5868
5868
|
guardrailConfig: z.union([
|
|
5869
5869
|
z.lazy(() =>
|
|
5870
5870
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6144,8 +6144,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6144
6144
|
> = z.object({
|
|
6145
6145
|
_id: z.string(),
|
|
6146
6146
|
description: z.string(),
|
|
6147
|
-
created: z.string().default("2025-11-20T08:
|
|
6148
|
-
updated: z.string().default("2025-11-20T08:
|
|
6147
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6148
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6149
6149
|
guardrail_config: z.union([
|
|
6150
6150
|
z.lazy(() =>
|
|
6151
6151
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6192,8 +6192,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6192
6192
|
> = z.object({
|
|
6193
6193
|
id: z.string(),
|
|
6194
6194
|
description: z.string(),
|
|
6195
|
-
created: z.string().default("2025-11-20T08:
|
|
6196
|
-
updated: z.string().default("2025-11-20T08:
|
|
6195
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6196
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6197
6197
|
guardrailConfig: z.union([
|
|
6198
6198
|
z.lazy(() =>
|
|
6199
6199
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6449,8 +6449,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6449
6449
|
> = z.object({
|
|
6450
6450
|
_id: z.string(),
|
|
6451
6451
|
description: z.string(),
|
|
6452
|
-
created: z.string().default("2025-11-20T08:
|
|
6453
|
-
updated: z.string().default("2025-11-20T08:
|
|
6452
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6453
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6454
6454
|
guardrail_config: z.union([
|
|
6455
6455
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6456
6456
|
z.lazy(() =>
|
|
@@ -6489,8 +6489,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6489
6489
|
> = z.object({
|
|
6490
6490
|
id: z.string(),
|
|
6491
6491
|
description: z.string(),
|
|
6492
|
-
created: z.string().default("2025-11-20T08:
|
|
6493
|
-
updated: z.string().default("2025-11-20T08:
|
|
6492
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6493
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6494
6494
|
guardrailConfig: z.union([
|
|
6495
6495
|
z.lazy(() =>
|
|
6496
6496
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6728,8 +6728,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6728
6728
|
> = z.object({
|
|
6729
6729
|
_id: z.string(),
|
|
6730
6730
|
description: z.string(),
|
|
6731
|
-
created: z.string().default("2025-11-20T08:
|
|
6732
|
-
updated: z.string().default("2025-11-20T08:
|
|
6731
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6732
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6733
6733
|
guardrail_config: z.union([
|
|
6734
6734
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6735
6735
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6768,8 +6768,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6768
6768
|
> = z.object({
|
|
6769
6769
|
id: z.string(),
|
|
6770
6770
|
description: z.string(),
|
|
6771
|
-
created: z.string().default("2025-11-20T08:
|
|
6772
|
-
updated: z.string().default("2025-11-20T08:
|
|
6771
|
+
created: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6772
|
+
updated: z.string().default("2025-11-20T08:48:00.920Z"),
|
|
6773
6773
|
guardrailConfig: z.union([
|
|
6774
6774
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6775
6775
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2571,7 +2571,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2571
2571
|
z.ZodTypeDef,
|
|
2572
2572
|
unknown
|
|
2573
2573
|
> = z.object({
|
|
2574
|
-
_id: z.string().default("
|
|
2574
|
+
_id: z.string().default("tool_01KAG769HHCHZ0ZP2GYFB00B96"),
|
|
2575
2575
|
path: z.string(),
|
|
2576
2576
|
key: z.string(),
|
|
2577
2577
|
display_name: z.string().optional(),
|
|
@@ -2625,7 +2625,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2625
2625
|
z.ZodTypeDef,
|
|
2626
2626
|
ResponseBody5
|
|
2627
2627
|
> = z.object({
|
|
2628
|
-
id: z.string().default("
|
|
2628
|
+
id: z.string().default("tool_01KAG769HHCHZ0ZP2GYFB00B96"),
|
|
2629
2629
|
path: z.string(),
|
|
2630
2630
|
key: z.string(),
|
|
2631
2631
|
displayName: z.string().optional(),
|
|
@@ -2795,7 +2795,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2795
2795
|
z.ZodTypeDef,
|
|
2796
2796
|
unknown
|
|
2797
2797
|
> = z.object({
|
|
2798
|
-
id: z.string().default("
|
|
2798
|
+
id: z.string().default("01KAG769HFVBG2WQ30C0H7Y1FQ"),
|
|
2799
2799
|
name: z.string(),
|
|
2800
2800
|
description: z.string().optional(),
|
|
2801
2801
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2814,7 +2814,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2814
2814
|
z.ZodTypeDef,
|
|
2815
2815
|
ResponseBodyTools
|
|
2816
2816
|
> = z.object({
|
|
2817
|
-
id: z.string().default("
|
|
2817
|
+
id: z.string().default("01KAG769HFVBG2WQ30C0H7Y1FQ"),
|
|
2818
2818
|
name: z.string(),
|
|
2819
2819
|
description: z.string().optional(),
|
|
2820
2820
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2909,7 +2909,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2909
2909
|
z.ZodTypeDef,
|
|
2910
2910
|
unknown
|
|
2911
2911
|
> = z.object({
|
|
2912
|
-
_id: z.string().default("
|
|
2912
|
+
_id: z.string().default("tool_01KAG769H66B6XC0XG6PZJM4YV"),
|
|
2913
2913
|
path: z.string(),
|
|
2914
2914
|
key: z.string(),
|
|
2915
2915
|
display_name: z.string().optional(),
|
|
@@ -2962,7 +2962,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2962
2962
|
z.ZodTypeDef,
|
|
2963
2963
|
ResponseBody4
|
|
2964
2964
|
> = z.object({
|
|
2965
|
-
id: z.string().default("
|
|
2965
|
+
id: z.string().default("tool_01KAG769H66B6XC0XG6PZJM4YV"),
|
|
2966
2966
|
path: z.string(),
|
|
2967
2967
|
key: z.string(),
|
|
2968
2968
|
displayName: z.string().optional(),
|
|
@@ -3318,7 +3318,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3318
3318
|
z.ZodTypeDef,
|
|
3319
3319
|
unknown
|
|
3320
3320
|
> = z.object({
|
|
3321
|
-
_id: z.string().default("
|
|
3321
|
+
_id: z.string().default("tool_01KAG769H32JFG8GVS4SWE0S74"),
|
|
3322
3322
|
path: z.string(),
|
|
3323
3323
|
key: z.string(),
|
|
3324
3324
|
display_name: z.string().optional(),
|
|
@@ -3369,7 +3369,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3369
3369
|
z.ZodTypeDef,
|
|
3370
3370
|
ResponseBody3
|
|
3371
3371
|
> = z.object({
|
|
3372
|
-
id: z.string().default("
|
|
3372
|
+
id: z.string().default("tool_01KAG769H32JFG8GVS4SWE0S74"),
|
|
3373
3373
|
path: z.string(),
|
|
3374
3374
|
key: z.string(),
|
|
3375
3375
|
displayName: z.string().optional(),
|
|
@@ -3539,7 +3539,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3539
3539
|
z.ZodTypeDef,
|
|
3540
3540
|
unknown
|
|
3541
3541
|
> = z.object({
|
|
3542
|
-
_id: z.string().default("
|
|
3542
|
+
_id: z.string().default("tool_01KAG769H075PJHJ42GWT177ZW"),
|
|
3543
3543
|
path: z.string(),
|
|
3544
3544
|
key: z.string(),
|
|
3545
3545
|
display_name: z.string().optional(),
|
|
@@ -3591,7 +3591,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3591
3591
|
z.ZodTypeDef,
|
|
3592
3592
|
ResponseBody2
|
|
3593
3593
|
> = z.object({
|
|
3594
|
-
id: z.string().default("
|
|
3594
|
+
id: z.string().default("tool_01KAG769H075PJHJ42GWT177ZW"),
|
|
3595
3595
|
path: z.string(),
|
|
3596
3596
|
key: z.string(),
|
|
3597
3597
|
displayName: z.string().optional(),
|
|
@@ -3777,7 +3777,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3777
3777
|
z.ZodTypeDef,
|
|
3778
3778
|
unknown
|
|
3779
3779
|
> = z.object({
|
|
3780
|
-
_id: z.string().default("
|
|
3780
|
+
_id: z.string().default("tool_01KAG769GYNTD600YF4409AKP1"),
|
|
3781
3781
|
path: z.string(),
|
|
3782
3782
|
key: z.string(),
|
|
3783
3783
|
display_name: z.string().optional(),
|
|
@@ -3828,7 +3828,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3828
3828
|
z.ZodTypeDef,
|
|
3829
3829
|
ResponseBody1
|
|
3830
3830
|
> = z.object({
|
|
3831
|
-
id: z.string().default("
|
|
3831
|
+
id: z.string().default("tool_01KAG769GYNTD600YF4409AKP1"),
|
|
3832
3832
|
path: z.string(),
|
|
3833
3833
|
key: z.string(),
|
|
3834
3834
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-11-20T08:
|
|
122
|
+
"2025-11-20T08:48:01.918Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-11-20T08:
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-20T08:48:01.918Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-11-20T08:
|
|
160
|
+
"2025-11-20T08:48:01.918Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-11-20T08:
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-20T08:48:01.918Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-11-20T08:
|
|
199
|
+
"2025-11-20T08:48:01.918Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-11-20T08:
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-20T08:48:01.918Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -890,7 +890,7 @@ export const GetAllToolsData5$inboundSchema: z.ZodType<
|
|
|
890
890
|
z.ZodTypeDef,
|
|
891
891
|
unknown
|
|
892
892
|
> = z.object({
|
|
893
|
-
_id: z.string().default("
|
|
893
|
+
_id: z.string().default("tool_01KAG769GEVN1QFAVTTPTJCQ05"),
|
|
894
894
|
path: z.string(),
|
|
895
895
|
key: z.string(),
|
|
896
896
|
display_name: z.string().optional(),
|
|
@@ -942,7 +942,7 @@ export const GetAllToolsData5$outboundSchema: z.ZodType<
|
|
|
942
942
|
z.ZodTypeDef,
|
|
943
943
|
GetAllToolsData5
|
|
944
944
|
> = z.object({
|
|
945
|
-
id: z.string().default("
|
|
945
|
+
id: z.string().default("tool_01KAG769GEVN1QFAVTTPTJCQ05"),
|
|
946
946
|
path: z.string(),
|
|
947
947
|
key: z.string(),
|
|
948
948
|
displayName: z.string().optional(),
|
|
@@ -1110,7 +1110,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1110
1110
|
z.ZodTypeDef,
|
|
1111
1111
|
unknown
|
|
1112
1112
|
> = z.object({
|
|
1113
|
-
id: z.string().default("
|
|
1113
|
+
id: z.string().default("01KAG769GDWQNCJ56JR3XMCVZJ"),
|
|
1114
1114
|
name: z.string(),
|
|
1115
1115
|
description: z.string().optional(),
|
|
1116
1116
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -1129,7 +1129,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1129
1129
|
z.ZodTypeDef,
|
|
1130
1130
|
DataTools
|
|
1131
1131
|
> = z.object({
|
|
1132
|
-
id: z.string().default("
|
|
1132
|
+
id: z.string().default("01KAG769GDWQNCJ56JR3XMCVZJ"),
|
|
1133
1133
|
name: z.string(),
|
|
1134
1134
|
description: z.string().optional(),
|
|
1135
1135
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1214,7 +1214,7 @@ export const GetAllToolsData4$inboundSchema: z.ZodType<
|
|
|
1214
1214
|
z.ZodTypeDef,
|
|
1215
1215
|
unknown
|
|
1216
1216
|
> = z.object({
|
|
1217
|
-
_id: z.string().default("
|
|
1217
|
+
_id: z.string().default("tool_01KAG769GCDQD8TMZMVQ2DZ2FS"),
|
|
1218
1218
|
path: z.string(),
|
|
1219
1219
|
key: z.string(),
|
|
1220
1220
|
display_name: z.string().optional(),
|
|
@@ -1265,7 +1265,7 @@ export const GetAllToolsData4$outboundSchema: z.ZodType<
|
|
|
1265
1265
|
z.ZodTypeDef,
|
|
1266
1266
|
GetAllToolsData4
|
|
1267
1267
|
> = z.object({
|
|
1268
|
-
id: z.string().default("
|
|
1268
|
+
id: z.string().default("tool_01KAG769GCDQD8TMZMVQ2DZ2FS"),
|
|
1269
1269
|
path: z.string(),
|
|
1270
1270
|
key: z.string(),
|
|
1271
1271
|
displayName: z.string().optional(),
|
|
@@ -1612,7 +1612,7 @@ export const GetAllToolsData3$inboundSchema: z.ZodType<
|
|
|
1612
1612
|
z.ZodTypeDef,
|
|
1613
1613
|
unknown
|
|
1614
1614
|
> = z.object({
|
|
1615
|
-
_id: z.string().default("
|
|
1615
|
+
_id: z.string().default("tool_01KAG769GA6GZHMXTG9WNRKBWW"),
|
|
1616
1616
|
path: z.string(),
|
|
1617
1617
|
key: z.string(),
|
|
1618
1618
|
display_name: z.string().optional(),
|
|
@@ -1663,7 +1663,7 @@ export const GetAllToolsData3$outboundSchema: z.ZodType<
|
|
|
1663
1663
|
z.ZodTypeDef,
|
|
1664
1664
|
GetAllToolsData3
|
|
1665
1665
|
> = z.object({
|
|
1666
|
-
id: z.string().default("
|
|
1666
|
+
id: z.string().default("tool_01KAG769GA6GZHMXTG9WNRKBWW"),
|
|
1667
1667
|
path: z.string(),
|
|
1668
1668
|
key: z.string(),
|
|
1669
1669
|
displayName: z.string().optional(),
|
|
@@ -1829,7 +1829,7 @@ export const GetAllToolsData2$inboundSchema: z.ZodType<
|
|
|
1829
1829
|
z.ZodTypeDef,
|
|
1830
1830
|
unknown
|
|
1831
1831
|
> = z.object({
|
|
1832
|
-
_id: z.string().default("
|
|
1832
|
+
_id: z.string().default("tool_01KAG769G8J6HS3X5RWVG9AX31"),
|
|
1833
1833
|
path: z.string(),
|
|
1834
1834
|
key: z.string(),
|
|
1835
1835
|
display_name: z.string().optional(),
|
|
@@ -1881,7 +1881,7 @@ export const GetAllToolsData2$outboundSchema: z.ZodType<
|
|
|
1881
1881
|
z.ZodTypeDef,
|
|
1882
1882
|
GetAllToolsData2
|
|
1883
1883
|
> = z.object({
|
|
1884
|
-
id: z.string().default("
|
|
1884
|
+
id: z.string().default("tool_01KAG769G8J6HS3X5RWVG9AX31"),
|
|
1885
1885
|
path: z.string(),
|
|
1886
1886
|
key: z.string(),
|
|
1887
1887
|
displayName: z.string().optional(),
|
|
@@ -2066,7 +2066,7 @@ export const GetAllToolsData1$inboundSchema: z.ZodType<
|
|
|
2066
2066
|
z.ZodTypeDef,
|
|
2067
2067
|
unknown
|
|
2068
2068
|
> = z.object({
|
|
2069
|
-
_id: z.string().default("
|
|
2069
|
+
_id: z.string().default("tool_01KAG769G7T1PY69S0MTV87MGW"),
|
|
2070
2070
|
path: z.string(),
|
|
2071
2071
|
key: z.string(),
|
|
2072
2072
|
display_name: z.string().optional(),
|
|
@@ -2117,7 +2117,7 @@ export const GetAllToolsData1$outboundSchema: z.ZodType<
|
|
|
2117
2117
|
z.ZodTypeDef,
|
|
2118
2118
|
GetAllToolsData1
|
|
2119
2119
|
> = z.object({
|
|
2120
|
-
id: z.string().default("
|
|
2120
|
+
id: z.string().default("tool_01KAG769G7T1PY69S0MTV87MGW"),
|
|
2121
2121
|
path: z.string(),
|
|
2122
2122
|
key: z.string(),
|
|
2123
2123
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-20T08:
|
|
294
|
+
"2025-11-20T08:47:59.142Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-20T08:
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-20T08:47:59.142Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|