@orq-ai/node 4.0.0-rc.24 → 4.0.0-rc.26
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 +237 -209
- package/bin/mcp-server.js.map +42 -42
- 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/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/createprompt.d.ts +2 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +4 -0
- package/models/operations/createprompt.js.map +1 -1
- 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/getallprompts.d.ts +2 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +4 -0
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +2 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +4 -0
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +2 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +4 -0
- package/models/operations/getpromptversion.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/listpromptversions.d.ts +2 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +4 -0
- package/models/operations/listpromptversions.js.map +1 -1
- 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/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/updateprompt.d.ts +4 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +8 -0
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- 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/createprompt.ts +6 -0
- 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/getallprompts.ts +6 -0
- 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/getoneprompt.ts +6 -0
- package/src/models/operations/getpromptversion.ts +6 -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/listpromptversions.ts +6 -0
- 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/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/updateprompt.ts +12 -0
- package/src/models/operations/updatetool.ts +10 -10
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.26",
|
|
34207
34207
|
genVersion: "2.750.0",
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.26 2.750.0 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -38403,7 +38403,7 @@ var init_createbudget = __esm(() => {
|
|
|
38403
38403
|
is_active: booleanType(),
|
|
38404
38404
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38405
38405
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38406
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38406
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:48.371Z").transform((v2) => new Date(v2))
|
|
38407
38407
|
}).transform((v2) => {
|
|
38408
38408
|
return remap(v2, {
|
|
38409
38409
|
_id: "id",
|
|
@@ -38421,7 +38421,7 @@ var init_createbudget = __esm(() => {
|
|
|
38421
38421
|
isActive: booleanType(),
|
|
38422
38422
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38423
38423
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38424
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38424
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:48.371Z")).transform((v2) => v2.toISOString())
|
|
38425
38425
|
}).transform((v2) => {
|
|
38426
38426
|
return remap(v2, {
|
|
38427
38427
|
id: "_id",
|
|
@@ -38561,7 +38561,7 @@ var init_createcontact = __esm(() => {
|
|
|
38561
38561
|
tags: arrayType(stringType()).optional(),
|
|
38562
38562
|
metadata: recordType(anyType()).optional(),
|
|
38563
38563
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38564
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38564
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
38565
38565
|
}).transform((v2) => {
|
|
38566
38566
|
return remap(v2, {
|
|
38567
38567
|
_id: "id",
|
|
@@ -38581,7 +38581,7 @@ var init_createcontact = __esm(() => {
|
|
|
38581
38581
|
tags: arrayType(stringType()).optional(),
|
|
38582
38582
|
metadata: recordType(anyType()).optional(),
|
|
38583
38583
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38584
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38584
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
38585
38585
|
}).transform((v2) => {
|
|
38586
38586
|
return remap(v2, {
|
|
38587
38587
|
id: "_id",
|
|
@@ -38641,7 +38641,7 @@ var init_createdataset = __esm(() => {
|
|
|
38641
38641
|
created_by_id: stringType().optional(),
|
|
38642
38642
|
updated_by_id: stringType().optional(),
|
|
38643
38643
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38644
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38644
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
38645
38645
|
}).transform((v2) => {
|
|
38646
38646
|
return remap(v2, {
|
|
38647
38647
|
_id: "id",
|
|
@@ -38661,7 +38661,7 @@ var init_createdataset = __esm(() => {
|
|
|
38661
38661
|
createdById: stringType().optional(),
|
|
38662
38662
|
updatedById: stringType().optional(),
|
|
38663
38663
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38664
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38664
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
38665
38665
|
}).transform((v2) => {
|
|
38666
38666
|
return remap(v2, {
|
|
38667
38667
|
id: "_id",
|
|
@@ -39735,7 +39735,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39735
39735
|
human_review_id: stringType(),
|
|
39736
39736
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39737
39737
|
reviewed_by_id: stringType(),
|
|
39738
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39738
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.088Z").transform((v2) => new Date(v2)),
|
|
39739
39739
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39740
39740
|
values: arrayType(stringType())
|
|
39741
39741
|
}).transform((v2) => {
|
|
@@ -39752,7 +39752,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39752
39752
|
humanReviewId: stringType(),
|
|
39753
39753
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39754
39754
|
reviewedById: stringType(),
|
|
39755
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39755
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.088Z")).transform((v2) => v2.toISOString()),
|
|
39756
39756
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39757
39757
|
values: arrayType(stringType())
|
|
39758
39758
|
}).transform((v2) => {
|
|
@@ -39775,7 +39775,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39775
39775
|
human_review_id: stringType(),
|
|
39776
39776
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39777
39777
|
reviewed_by_id: stringType(),
|
|
39778
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39778
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.087Z").transform((v2) => new Date(v2)),
|
|
39779
39779
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39780
39780
|
value: numberType()
|
|
39781
39781
|
}).transform((v2) => {
|
|
@@ -39792,7 +39792,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39792
39792
|
humanReviewId: stringType(),
|
|
39793
39793
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39794
39794
|
reviewedById: stringType(),
|
|
39795
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39795
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.087Z")).transform((v2) => v2.toISOString()),
|
|
39796
39796
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39797
39797
|
value: numberType()
|
|
39798
39798
|
}).transform((v2) => {
|
|
@@ -39815,7 +39815,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39815
39815
|
human_review_id: stringType(),
|
|
39816
39816
|
source: Source$inboundSchema.default("orq"),
|
|
39817
39817
|
reviewed_by_id: stringType(),
|
|
39818
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39818
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.086Z").transform((v2) => new Date(v2)),
|
|
39819
39819
|
type: EvaluationsType$inboundSchema,
|
|
39820
39820
|
value: stringType()
|
|
39821
39821
|
}).transform((v2) => {
|
|
@@ -39832,7 +39832,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39832
39832
|
humanReviewId: stringType(),
|
|
39833
39833
|
source: Source$outboundSchema.default("orq"),
|
|
39834
39834
|
reviewedById: stringType(),
|
|
39835
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39835
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.086Z")).transform((v2) => v2.toISOString()),
|
|
39836
39836
|
type: EvaluationsType$outboundSchema,
|
|
39837
39837
|
value: stringType()
|
|
39838
39838
|
}).transform((v2) => {
|
|
@@ -39875,7 +39875,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39875
39875
|
created_by_id: stringType().optional(),
|
|
39876
39876
|
updated_by_id: stringType().optional(),
|
|
39877
39877
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39878
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39878
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
39879
39879
|
}).transform((v2) => {
|
|
39880
39880
|
return remap(v2, {
|
|
39881
39881
|
_id: "id",
|
|
@@ -39909,7 +39909,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39909
39909
|
createdById: stringType().optional(),
|
|
39910
39910
|
updatedById: stringType().optional(),
|
|
39911
39911
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39912
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
39912
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
39913
39913
|
}).transform((v2) => {
|
|
39914
39914
|
return remap(v2, {
|
|
39915
39915
|
id: "_id",
|
|
@@ -40088,7 +40088,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40088
40088
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40089
40089
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40090
40090
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40091
|
-
_id: stringType().default("
|
|
40091
|
+
_id: stringType().default("01K9W4THZKWWGBQPQ57TS8C6YN"),
|
|
40092
40092
|
display_name: stringType(),
|
|
40093
40093
|
description: stringType().optional(),
|
|
40094
40094
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40111,7 +40111,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40111
40111
|
});
|
|
40112
40112
|
});
|
|
40113
40113
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40114
|
-
id: stringType().default("
|
|
40114
|
+
id: stringType().default("01K9W4THZKWWGBQPQ57TS8C6YN"),
|
|
40115
40115
|
displayName: stringType(),
|
|
40116
40116
|
description: stringType().optional(),
|
|
40117
40117
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -40830,8 +40830,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40830
40830
|
Typescript$inboundSchema = objectType({
|
|
40831
40831
|
_id: stringType(),
|
|
40832
40832
|
description: stringType(),
|
|
40833
|
-
created: stringType().default("2025-11-
|
|
40834
|
-
updated: stringType().default("2025-11-
|
|
40833
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40834
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40835
40835
|
guardrail_config: unionType([
|
|
40836
40836
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
40837
40837
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -40848,8 +40848,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40848
40848
|
Typescript$outboundSchema = objectType({
|
|
40849
40849
|
id: stringType(),
|
|
40850
40850
|
description: stringType(),
|
|
40851
|
-
created: stringType().default("2025-11-
|
|
40852
|
-
updated: stringType().default("2025-11-
|
|
40851
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40852
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40853
40853
|
guardrailConfig: unionType([
|
|
40854
40854
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
40855
40855
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -40906,8 +40906,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40906
40906
|
Ragas$inboundSchema = objectType({
|
|
40907
40907
|
_id: stringType(),
|
|
40908
40908
|
description: stringType(),
|
|
40909
|
-
created: stringType().default("2025-11-
|
|
40910
|
-
updated: stringType().default("2025-11-
|
|
40909
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40910
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40911
40911
|
guardrail_config: unionType([
|
|
40912
40912
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
40913
40913
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -40926,8 +40926,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40926
40926
|
Ragas$outboundSchema = objectType({
|
|
40927
40927
|
id: stringType(),
|
|
40928
40928
|
description: stringType(),
|
|
40929
|
-
created: stringType().default("2025-11-
|
|
40930
|
-
updated: stringType().default("2025-11-
|
|
40929
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40930
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
40931
40931
|
guardrailConfig: unionType([
|
|
40932
40932
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
40933
40933
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41364,8 +41364,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41364
41364
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41365
41365
|
_id: stringType(),
|
|
41366
41366
|
description: stringType(),
|
|
41367
|
-
created: stringType().default("2025-11-
|
|
41368
|
-
updated: stringType().default("2025-11-
|
|
41367
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41368
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41369
41369
|
guardrail_config: unionType([
|
|
41370
41370
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41371
41371
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41419,8 +41419,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41419
41419
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41420
41420
|
id: stringType(),
|
|
41421
41421
|
description: stringType(),
|
|
41422
|
-
created: stringType().default("2025-11-
|
|
41423
|
-
updated: stringType().default("2025-11-
|
|
41422
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41423
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41424
41424
|
guardrailConfig: unionType([
|
|
41425
41425
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41426
41426
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41512,8 +41512,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41512
41512
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41513
41513
|
_id: stringType(),
|
|
41514
41514
|
description: stringType(),
|
|
41515
|
-
created: stringType().default("2025-11-
|
|
41516
|
-
updated: stringType().default("2025-11-
|
|
41515
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41516
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41517
41517
|
guardrail_config: unionType([
|
|
41518
41518
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41519
41519
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41530,8 +41530,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41530
41530
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41531
41531
|
id: stringType(),
|
|
41532
41532
|
description: stringType(),
|
|
41533
|
-
created: stringType().default("2025-11-
|
|
41534
|
-
updated: stringType().default("2025-11-
|
|
41533
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41534
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41535
41535
|
guardrailConfig: unionType([
|
|
41536
41536
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41537
41537
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41588,8 +41588,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41588
41588
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41589
41589
|
_id: stringType(),
|
|
41590
41590
|
description: stringType(),
|
|
41591
|
-
created: stringType().default("2025-11-
|
|
41592
|
-
updated: stringType().default("2025-11-
|
|
41591
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41592
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41593
41593
|
guardrail_config: unionType([
|
|
41594
41594
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41595
41595
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41609,8 +41609,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41609
41609
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41610
41610
|
id: stringType(),
|
|
41611
41611
|
description: stringType(),
|
|
41612
|
-
created: stringType().default("2025-11-
|
|
41613
|
-
updated: stringType().default("2025-11-
|
|
41612
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41613
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41614
41614
|
guardrailConfig: unionType([
|
|
41615
41615
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41616
41616
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41668,8 +41668,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41668
41668
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41669
41669
|
_id: stringType(),
|
|
41670
41670
|
description: stringType(),
|
|
41671
|
-
created: stringType().default("2025-11-
|
|
41672
|
-
updated: stringType().default("2025-11-
|
|
41671
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41672
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41673
41673
|
guardrail_config: unionType([
|
|
41674
41674
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41675
41675
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41686,8 +41686,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41686
41686
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41687
41687
|
id: stringType(),
|
|
41688
41688
|
description: stringType(),
|
|
41689
|
-
created: stringType().default("2025-11-
|
|
41690
|
-
updated: stringType().default("2025-11-
|
|
41689
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41690
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41691
41691
|
guardrailConfig: unionType([
|
|
41692
41692
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41693
41693
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41742,8 +41742,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41742
41742
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41743
41743
|
_id: stringType(),
|
|
41744
41744
|
description: stringType(),
|
|
41745
|
-
created: stringType().default("2025-11-
|
|
41746
|
-
updated: stringType().default("2025-11-
|
|
41745
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41746
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41747
41747
|
guardrail_config: unionType([
|
|
41748
41748
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41749
41749
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41761,8 +41761,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41761
41761
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41762
41762
|
id: stringType(),
|
|
41763
41763
|
description: stringType(),
|
|
41764
|
-
created: stringType().default("2025-11-
|
|
41765
|
-
updated: stringType().default("2025-11-
|
|
41764
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41765
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
41766
41766
|
guardrailConfig: unionType([
|
|
41767
41767
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41768
41768
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -44406,6 +44406,7 @@ var init_createprompt = __esm(() => {
|
|
|
44406
44406
|
CreatePromptPromptConfig$inboundSchema = objectType({
|
|
44407
44407
|
stream: booleanType().optional(),
|
|
44408
44408
|
model: stringType().optional(),
|
|
44409
|
+
display_name: stringType().optional(),
|
|
44409
44410
|
model_db_id: nullableType(stringType()).optional(),
|
|
44410
44411
|
model_type: nullableType(CreatePromptModelType$inboundSchema).optional(),
|
|
44411
44412
|
model_parameters: lazyType(() => CreatePromptModelParameters$inboundSchema).optional(),
|
|
@@ -44415,6 +44416,7 @@ var init_createprompt = __esm(() => {
|
|
|
44415
44416
|
messages: arrayType(lazyType(() => CreatePromptPromptsResponseMessages$inboundSchema))
|
|
44416
44417
|
}).transform((v2) => {
|
|
44417
44418
|
return remap(v2, {
|
|
44419
|
+
display_name: "displayName",
|
|
44418
44420
|
model_db_id: "modelDbId",
|
|
44419
44421
|
model_type: "modelType",
|
|
44420
44422
|
model_parameters: "modelParameters",
|
|
@@ -44424,6 +44426,7 @@ var init_createprompt = __esm(() => {
|
|
|
44424
44426
|
CreatePromptPromptConfig$outboundSchema = objectType({
|
|
44425
44427
|
stream: booleanType().optional(),
|
|
44426
44428
|
model: stringType().optional(),
|
|
44429
|
+
displayName: stringType().optional(),
|
|
44427
44430
|
modelDbId: nullableType(stringType()).optional(),
|
|
44428
44431
|
modelType: nullableType(CreatePromptModelType$outboundSchema).optional(),
|
|
44429
44432
|
modelParameters: lazyType(() => CreatePromptModelParameters$outboundSchema).optional(),
|
|
@@ -44433,6 +44436,7 @@ var init_createprompt = __esm(() => {
|
|
|
44433
44436
|
messages: arrayType(lazyType(() => CreatePromptPromptsResponseMessages$outboundSchema))
|
|
44434
44437
|
}).transform((v2) => {
|
|
44435
44438
|
return remap(v2, {
|
|
44439
|
+
displayName: "display_name",
|
|
44436
44440
|
modelDbId: "model_db_id",
|
|
44437
44441
|
modelType: "model_type",
|
|
44438
44442
|
modelParameters: "model_parameters",
|
|
@@ -44975,7 +44979,7 @@ var init_createtool = __esm(() => {
|
|
|
44975
44979
|
code: stringType()
|
|
44976
44980
|
});
|
|
44977
44981
|
ResponseBody5$inboundSchema = objectType({
|
|
44978
|
-
_id: stringType().default("
|
|
44982
|
+
_id: stringType().default("01K9W4THK01NWF28NG68VBSSYZ"),
|
|
44979
44983
|
path: stringType(),
|
|
44980
44984
|
key: stringType(),
|
|
44981
44985
|
display_name: stringType().optional(),
|
|
@@ -45003,7 +45007,7 @@ var init_createtool = __esm(() => {
|
|
|
45003
45007
|
});
|
|
45004
45008
|
});
|
|
45005
45009
|
ResponseBody5$outboundSchema = objectType({
|
|
45006
|
-
id: stringType().default("
|
|
45010
|
+
id: stringType().default("01K9W4THK01NWF28NG68VBSSYZ"),
|
|
45007
45011
|
path: stringType(),
|
|
45008
45012
|
key: stringType(),
|
|
45009
45013
|
displayName: stringType().optional(),
|
|
@@ -45089,7 +45093,7 @@ var init_createtool = __esm(() => {
|
|
|
45089
45093
|
});
|
|
45090
45094
|
});
|
|
45091
45095
|
ResponseBody4$inboundSchema = objectType({
|
|
45092
|
-
_id: stringType().default("
|
|
45096
|
+
_id: stringType().default("01K9W4THJTP1RRCAFTVZ66MV02"),
|
|
45093
45097
|
path: stringType(),
|
|
45094
45098
|
key: stringType(),
|
|
45095
45099
|
display_name: stringType().optional(),
|
|
@@ -45116,7 +45120,7 @@ var init_createtool = __esm(() => {
|
|
|
45116
45120
|
});
|
|
45117
45121
|
});
|
|
45118
45122
|
ResponseBody4$outboundSchema = objectType({
|
|
45119
|
-
id: stringType().default("
|
|
45123
|
+
id: stringType().default("01K9W4THJTP1RRCAFTVZ66MV02"),
|
|
45120
45124
|
path: stringType(),
|
|
45121
45125
|
key: stringType(),
|
|
45122
45126
|
displayName: stringType().optional(),
|
|
@@ -45203,7 +45207,7 @@ var init_createtool = __esm(() => {
|
|
|
45203
45207
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45204
45208
|
});
|
|
45205
45209
|
ResponseBody3$inboundSchema = objectType({
|
|
45206
|
-
_id: stringType().default("
|
|
45210
|
+
_id: stringType().default("01K9W4THJA0Z6EYBDX68VRQH33"),
|
|
45207
45211
|
path: stringType(),
|
|
45208
45212
|
key: stringType(),
|
|
45209
45213
|
display_name: stringType().optional(),
|
|
@@ -45230,7 +45234,7 @@ var init_createtool = __esm(() => {
|
|
|
45230
45234
|
});
|
|
45231
45235
|
});
|
|
45232
45236
|
ResponseBody3$outboundSchema = objectType({
|
|
45233
|
-
id: stringType().default("
|
|
45237
|
+
id: stringType().default("01K9W4THJA0Z6EYBDX68VRQH33"),
|
|
45234
45238
|
path: stringType(),
|
|
45235
45239
|
key: stringType(),
|
|
45236
45240
|
displayName: stringType().optional(),
|
|
@@ -45273,7 +45277,7 @@ var init_createtool = __esm(() => {
|
|
|
45273
45277
|
strict: booleanType().optional()
|
|
45274
45278
|
});
|
|
45275
45279
|
ResponseBody2$inboundSchema = objectType({
|
|
45276
|
-
_id: stringType().default("
|
|
45280
|
+
_id: stringType().default("01K9W4THJ2DDXB47FT80F1SJBE"),
|
|
45277
45281
|
path: stringType(),
|
|
45278
45282
|
key: stringType(),
|
|
45279
45283
|
display_name: stringType().optional(),
|
|
@@ -45301,7 +45305,7 @@ var init_createtool = __esm(() => {
|
|
|
45301
45305
|
});
|
|
45302
45306
|
});
|
|
45303
45307
|
ResponseBody2$outboundSchema = objectType({
|
|
45304
|
-
id: stringType().default("
|
|
45308
|
+
id: stringType().default("01K9W4THJ2DDXB47FT80F1SJBE"),
|
|
45305
45309
|
path: stringType(),
|
|
45306
45310
|
key: stringType(),
|
|
45307
45311
|
displayName: stringType().optional(),
|
|
@@ -45345,7 +45349,7 @@ var init_createtool = __esm(() => {
|
|
|
45345
45349
|
parameters: recordType(anyType()).optional()
|
|
45346
45350
|
});
|
|
45347
45351
|
ResponseBody1$inboundSchema = objectType({
|
|
45348
|
-
_id: stringType().default("
|
|
45352
|
+
_id: stringType().default("01K9W4THHTDFC6Z7TZJAMSSZHN"),
|
|
45349
45353
|
path: stringType(),
|
|
45350
45354
|
key: stringType(),
|
|
45351
45355
|
display_name: stringType().optional(),
|
|
@@ -45372,7 +45376,7 @@ var init_createtool = __esm(() => {
|
|
|
45372
45376
|
});
|
|
45373
45377
|
});
|
|
45374
45378
|
ResponseBody1$outboundSchema = objectType({
|
|
45375
|
-
id: stringType().default("
|
|
45379
|
+
id: stringType().default("01K9W4THHTDFC6Z7TZJAMSSZHN"),
|
|
45376
45380
|
path: stringType(),
|
|
45377
45381
|
key: stringType(),
|
|
45378
45382
|
displayName: stringType().optional(),
|
|
@@ -52264,7 +52268,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52264
52268
|
code: stringType()
|
|
52265
52269
|
});
|
|
52266
52270
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52267
|
-
_id: stringType().default("
|
|
52271
|
+
_id: stringType().default("01K9W4THMV77WNY09JRFY7EJ98"),
|
|
52268
52272
|
path: stringType(),
|
|
52269
52273
|
key: stringType(),
|
|
52270
52274
|
display_name: stringType().optional(),
|
|
@@ -52292,7 +52296,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52292
52296
|
});
|
|
52293
52297
|
});
|
|
52294
52298
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52295
|
-
id: stringType().default("
|
|
52299
|
+
id: stringType().default("01K9W4THMV77WNY09JRFY7EJ98"),
|
|
52296
52300
|
path: stringType(),
|
|
52297
52301
|
key: stringType(),
|
|
52298
52302
|
displayName: stringType().optional(),
|
|
@@ -52378,7 +52382,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52378
52382
|
});
|
|
52379
52383
|
});
|
|
52380
52384
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52381
|
-
_id: stringType().default("
|
|
52385
|
+
_id: stringType().default("01K9W4THMSQK0S2K9HN2ZXVRJP"),
|
|
52382
52386
|
path: stringType(),
|
|
52383
52387
|
key: stringType(),
|
|
52384
52388
|
display_name: stringType().optional(),
|
|
@@ -52405,7 +52409,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52405
52409
|
});
|
|
52406
52410
|
});
|
|
52407
52411
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52408
|
-
id: stringType().default("
|
|
52412
|
+
id: stringType().default("01K9W4THMSQK0S2K9HN2ZXVRJP"),
|
|
52409
52413
|
path: stringType(),
|
|
52410
52414
|
key: stringType(),
|
|
52411
52415
|
displayName: stringType().optional(),
|
|
@@ -52492,7 +52496,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52492
52496
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52493
52497
|
});
|
|
52494
52498
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52495
|
-
_id: stringType().default("
|
|
52499
|
+
_id: stringType().default("01K9W4THMPBGGD2TFWG6GT3QV6"),
|
|
52496
52500
|
path: stringType(),
|
|
52497
52501
|
key: stringType(),
|
|
52498
52502
|
display_name: stringType().optional(),
|
|
@@ -52519,7 +52523,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52519
52523
|
});
|
|
52520
52524
|
});
|
|
52521
52525
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52522
|
-
id: stringType().default("
|
|
52526
|
+
id: stringType().default("01K9W4THMPBGGD2TFWG6GT3QV6"),
|
|
52523
52527
|
path: stringType(),
|
|
52524
52528
|
key: stringType(),
|
|
52525
52529
|
displayName: stringType().optional(),
|
|
@@ -52562,7 +52566,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52562
52566
|
strict: booleanType().optional()
|
|
52563
52567
|
});
|
|
52564
52568
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52565
|
-
_id: stringType().default("
|
|
52569
|
+
_id: stringType().default("01K9W4THMMNHJNVKAFXE2HFPD6"),
|
|
52566
52570
|
path: stringType(),
|
|
52567
52571
|
key: stringType(),
|
|
52568
52572
|
display_name: stringType().optional(),
|
|
@@ -52590,7 +52594,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52590
52594
|
});
|
|
52591
52595
|
});
|
|
52592
52596
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
52593
|
-
id: stringType().default("
|
|
52597
|
+
id: stringType().default("01K9W4THMMNHJNVKAFXE2HFPD6"),
|
|
52594
52598
|
path: stringType(),
|
|
52595
52599
|
key: stringType(),
|
|
52596
52600
|
displayName: stringType().optional(),
|
|
@@ -52634,7 +52638,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52634
52638
|
parameters: recordType(anyType()).optional()
|
|
52635
52639
|
});
|
|
52636
52640
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
52637
|
-
_id: stringType().default("
|
|
52641
|
+
_id: stringType().default("01K9W4THMJPZ6J3WRM7FVB4R00"),
|
|
52638
52642
|
path: stringType(),
|
|
52639
52643
|
key: stringType(),
|
|
52640
52644
|
display_name: stringType().optional(),
|
|
@@ -52661,7 +52665,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52661
52665
|
});
|
|
52662
52666
|
});
|
|
52663
52667
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
52664
|
-
id: stringType().default("
|
|
52668
|
+
id: stringType().default("01K9W4THMJPZ6J3WRM7FVB4R00"),
|
|
52665
52669
|
path: stringType(),
|
|
52666
52670
|
key: stringType(),
|
|
52667
52671
|
displayName: stringType().optional(),
|
|
@@ -52757,7 +52761,7 @@ var init_fileget = __esm(() => {
|
|
|
52757
52761
|
bytes: numberType(),
|
|
52758
52762
|
file_name: stringType(),
|
|
52759
52763
|
workspace_id: stringType(),
|
|
52760
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52764
|
+
created: stringType().datetime({ offset: true }).default("2025-11-12T13:41:51.826Z").transform((v2) => new Date(v2))
|
|
52761
52765
|
}).transform((v2) => {
|
|
52762
52766
|
return remap(v2, {
|
|
52763
52767
|
_id: "id",
|
|
@@ -52773,7 +52777,7 @@ var init_fileget = __esm(() => {
|
|
|
52773
52777
|
bytes: numberType(),
|
|
52774
52778
|
fileName: stringType(),
|
|
52775
52779
|
workspaceId: stringType(),
|
|
52776
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52780
|
+
created: dateType().default(() => new Date("2025-11-12T13:41:51.826Z")).transform((v2) => v2.toISOString())
|
|
52777
52781
|
}).transform((v2) => {
|
|
52778
52782
|
return remap(v2, {
|
|
52779
52783
|
id: "_id",
|
|
@@ -52828,7 +52832,7 @@ var init_filelist = __esm(() => {
|
|
|
52828
52832
|
bytes: numberType(),
|
|
52829
52833
|
file_name: stringType(),
|
|
52830
52834
|
workspace_id: stringType(),
|
|
52831
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52835
|
+
created: stringType().datetime({ offset: true }).default("2025-11-12T13:41:51.826Z").transform((v2) => new Date(v2))
|
|
52832
52836
|
}).transform((v2) => {
|
|
52833
52837
|
return remap(v2, {
|
|
52834
52838
|
_id: "id",
|
|
@@ -52844,7 +52848,7 @@ var init_filelist = __esm(() => {
|
|
|
52844
52848
|
bytes: numberType(),
|
|
52845
52849
|
fileName: stringType(),
|
|
52846
52850
|
workspaceId: stringType(),
|
|
52847
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52851
|
+
created: dateType().default(() => new Date("2025-11-12T13:41:51.826Z")).transform((v2) => v2.toISOString())
|
|
52848
52852
|
}).transform((v2) => {
|
|
52849
52853
|
return remap(v2, {
|
|
52850
52854
|
id: "_id",
|
|
@@ -52952,7 +52956,7 @@ var init_fileupload = __esm(() => {
|
|
|
52952
52956
|
bytes: numberType(),
|
|
52953
52957
|
file_name: stringType(),
|
|
52954
52958
|
workspace_id: stringType(),
|
|
52955
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52959
|
+
created: stringType().datetime({ offset: true }).default("2025-11-12T13:41:51.826Z").transform((v2) => new Date(v2))
|
|
52956
52960
|
}).transform((v2) => {
|
|
52957
52961
|
return remap(v2, {
|
|
52958
52962
|
_id: "id",
|
|
@@ -52968,7 +52972,7 @@ var init_fileupload = __esm(() => {
|
|
|
52968
52972
|
bytes: numberType(),
|
|
52969
52973
|
fileName: stringType(),
|
|
52970
52974
|
workspaceId: stringType(),
|
|
52971
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52975
|
+
created: dateType().default(() => new Date("2025-11-12T13:41:51.826Z")).transform((v2) => v2.toISOString())
|
|
52972
52976
|
}).transform((v2) => {
|
|
52973
52977
|
return remap(v2, {
|
|
52974
52978
|
id: "_id",
|
|
@@ -55017,6 +55021,7 @@ var init_getallprompts = __esm(() => {
|
|
|
55017
55021
|
GetAllPromptsPromptConfig$inboundSchema = objectType({
|
|
55018
55022
|
stream: booleanType().optional(),
|
|
55019
55023
|
model: stringType().optional(),
|
|
55024
|
+
display_name: stringType().optional(),
|
|
55020
55025
|
model_db_id: nullableType(stringType()).optional(),
|
|
55021
55026
|
model_type: nullableType(GetAllPromptsModelType$inboundSchema).optional(),
|
|
55022
55027
|
model_parameters: lazyType(() => GetAllPromptsModelParameters$inboundSchema).optional(),
|
|
@@ -55026,6 +55031,7 @@ var init_getallprompts = __esm(() => {
|
|
|
55026
55031
|
messages: arrayType(lazyType(() => GetAllPromptsMessages$inboundSchema))
|
|
55027
55032
|
}).transform((v2) => {
|
|
55028
55033
|
return remap(v2, {
|
|
55034
|
+
display_name: "displayName",
|
|
55029
55035
|
model_db_id: "modelDbId",
|
|
55030
55036
|
model_type: "modelType",
|
|
55031
55037
|
model_parameters: "modelParameters",
|
|
@@ -55035,6 +55041,7 @@ var init_getallprompts = __esm(() => {
|
|
|
55035
55041
|
GetAllPromptsPromptConfig$outboundSchema = objectType({
|
|
55036
55042
|
stream: booleanType().optional(),
|
|
55037
55043
|
model: stringType().optional(),
|
|
55044
|
+
displayName: stringType().optional(),
|
|
55038
55045
|
modelDbId: nullableType(stringType()).optional(),
|
|
55039
55046
|
modelType: nullableType(GetAllPromptsModelType$outboundSchema).optional(),
|
|
55040
55047
|
modelParameters: lazyType(() => GetAllPromptsModelParameters$outboundSchema).optional(),
|
|
@@ -55044,6 +55051,7 @@ var init_getallprompts = __esm(() => {
|
|
|
55044
55051
|
messages: arrayType(lazyType(() => GetAllPromptsMessages$outboundSchema))
|
|
55045
55052
|
}).transform((v2) => {
|
|
55046
55053
|
return remap(v2, {
|
|
55054
|
+
displayName: "display_name",
|
|
55047
55055
|
modelDbId: "model_db_id",
|
|
55048
55056
|
modelType: "model_type",
|
|
55049
55057
|
modelParameters: "model_parameters",
|
|
@@ -55249,7 +55257,7 @@ var init_getalltools = __esm(() => {
|
|
|
55249
55257
|
code: stringType()
|
|
55250
55258
|
});
|
|
55251
55259
|
Data5$inboundSchema = objectType({
|
|
55252
|
-
_id: stringType().default("
|
|
55260
|
+
_id: stringType().default("01K9W4THF4FXA69CCVX4SCXETM"),
|
|
55253
55261
|
path: stringType(),
|
|
55254
55262
|
key: stringType(),
|
|
55255
55263
|
display_name: stringType().optional(),
|
|
@@ -55277,7 +55285,7 @@ var init_getalltools = __esm(() => {
|
|
|
55277
55285
|
});
|
|
55278
55286
|
});
|
|
55279
55287
|
Data5$outboundSchema = objectType({
|
|
55280
|
-
id: stringType().default("
|
|
55288
|
+
id: stringType().default("01K9W4THF4FXA69CCVX4SCXETM"),
|
|
55281
55289
|
path: stringType(),
|
|
55282
55290
|
key: stringType(),
|
|
55283
55291
|
displayName: stringType().optional(),
|
|
@@ -55363,7 +55371,7 @@ var init_getalltools = __esm(() => {
|
|
|
55363
55371
|
});
|
|
55364
55372
|
});
|
|
55365
55373
|
Data4$inboundSchema = objectType({
|
|
55366
|
-
_id: stringType().default("
|
|
55374
|
+
_id: stringType().default("01K9W4THEX5DP8P52C9QXT40M3"),
|
|
55367
55375
|
path: stringType(),
|
|
55368
55376
|
key: stringType(),
|
|
55369
55377
|
display_name: stringType().optional(),
|
|
@@ -55390,7 +55398,7 @@ var init_getalltools = __esm(() => {
|
|
|
55390
55398
|
});
|
|
55391
55399
|
});
|
|
55392
55400
|
Data4$outboundSchema = objectType({
|
|
55393
|
-
id: stringType().default("
|
|
55401
|
+
id: stringType().default("01K9W4THEX5DP8P52C9QXT40M3"),
|
|
55394
55402
|
path: stringType(),
|
|
55395
55403
|
key: stringType(),
|
|
55396
55404
|
displayName: stringType().optional(),
|
|
@@ -55477,7 +55485,7 @@ var init_getalltools = __esm(() => {
|
|
|
55477
55485
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
55478
55486
|
});
|
|
55479
55487
|
Data3$inboundSchema = objectType({
|
|
55480
|
-
_id: stringType().default("
|
|
55488
|
+
_id: stringType().default("01K9W4THEJB5N0KWNHKZRMQYP9"),
|
|
55481
55489
|
path: stringType(),
|
|
55482
55490
|
key: stringType(),
|
|
55483
55491
|
display_name: stringType().optional(),
|
|
@@ -55504,7 +55512,7 @@ var init_getalltools = __esm(() => {
|
|
|
55504
55512
|
});
|
|
55505
55513
|
});
|
|
55506
55514
|
Data3$outboundSchema = objectType({
|
|
55507
|
-
id: stringType().default("
|
|
55515
|
+
id: stringType().default("01K9W4THEJB5N0KWNHKZRMQYP9"),
|
|
55508
55516
|
path: stringType(),
|
|
55509
55517
|
key: stringType(),
|
|
55510
55518
|
displayName: stringType().optional(),
|
|
@@ -55547,7 +55555,7 @@ var init_getalltools = __esm(() => {
|
|
|
55547
55555
|
strict: booleanType().optional()
|
|
55548
55556
|
});
|
|
55549
55557
|
Data2$inboundSchema = objectType({
|
|
55550
|
-
_id: stringType().default("
|
|
55558
|
+
_id: stringType().default("01K9W4THECW127Y2HB40NXKJ6S"),
|
|
55551
55559
|
path: stringType(),
|
|
55552
55560
|
key: stringType(),
|
|
55553
55561
|
display_name: stringType().optional(),
|
|
@@ -55575,7 +55583,7 @@ var init_getalltools = __esm(() => {
|
|
|
55575
55583
|
});
|
|
55576
55584
|
});
|
|
55577
55585
|
Data2$outboundSchema = objectType({
|
|
55578
|
-
id: stringType().default("
|
|
55586
|
+
id: stringType().default("01K9W4THECW127Y2HB40NXKJ6S"),
|
|
55579
55587
|
path: stringType(),
|
|
55580
55588
|
key: stringType(),
|
|
55581
55589
|
displayName: stringType().optional(),
|
|
@@ -55619,7 +55627,7 @@ var init_getalltools = __esm(() => {
|
|
|
55619
55627
|
parameters: recordType(anyType()).optional()
|
|
55620
55628
|
});
|
|
55621
55629
|
Data1$inboundSchema = objectType({
|
|
55622
|
-
_id: stringType().default("
|
|
55630
|
+
_id: stringType().default("01K9W4THE6H2DXBWSR4W8P9X20"),
|
|
55623
55631
|
path: stringType(),
|
|
55624
55632
|
key: stringType(),
|
|
55625
55633
|
display_name: stringType().optional(),
|
|
@@ -55646,7 +55654,7 @@ var init_getalltools = __esm(() => {
|
|
|
55646
55654
|
});
|
|
55647
55655
|
});
|
|
55648
55656
|
Data1$outboundSchema = objectType({
|
|
55649
|
-
id: stringType().default("
|
|
55657
|
+
id: stringType().default("01K9W4THE6H2DXBWSR4W8P9X20"),
|
|
55650
55658
|
path: stringType(),
|
|
55651
55659
|
key: stringType(),
|
|
55652
55660
|
displayName: stringType().optional(),
|
|
@@ -55788,7 +55796,7 @@ var init_getbudget = __esm(() => {
|
|
|
55788
55796
|
is_active: booleanType(),
|
|
55789
55797
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
55790
55798
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55791
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
55799
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:48.371Z").transform((v2) => new Date(v2))
|
|
55792
55800
|
}).transform((v2) => {
|
|
55793
55801
|
return remap(v2, {
|
|
55794
55802
|
_id: "id",
|
|
@@ -55806,7 +55814,7 @@ var init_getbudget = __esm(() => {
|
|
|
55806
55814
|
isActive: booleanType(),
|
|
55807
55815
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
55808
55816
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55809
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
55817
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:48.371Z")).transform((v2) => v2.toISOString())
|
|
55810
55818
|
}).transform((v2) => {
|
|
55811
55819
|
return remap(v2, {
|
|
55812
55820
|
id: "_id",
|
|
@@ -56175,8 +56183,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56175
56183
|
DataTypescript$inboundSchema = objectType({
|
|
56176
56184
|
_id: stringType(),
|
|
56177
56185
|
description: stringType(),
|
|
56178
|
-
created: stringType().default("2025-11-
|
|
56179
|
-
updated: stringType().default("2025-11-
|
|
56186
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56187
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56180
56188
|
guardrail_config: unionType([
|
|
56181
56189
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56182
56190
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56193,8 +56201,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56193
56201
|
DataTypescript$outboundSchema = objectType({
|
|
56194
56202
|
id: stringType(),
|
|
56195
56203
|
description: stringType(),
|
|
56196
|
-
created: stringType().default("2025-11-
|
|
56197
|
-
updated: stringType().default("2025-11-
|
|
56204
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56205
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56198
56206
|
guardrailConfig: unionType([
|
|
56199
56207
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56200
56208
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56251,8 +56259,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56251
56259
|
DataRagas$inboundSchema = objectType({
|
|
56252
56260
|
_id: stringType(),
|
|
56253
56261
|
description: stringType(),
|
|
56254
|
-
created: stringType().default("2025-11-
|
|
56255
|
-
updated: stringType().default("2025-11-
|
|
56262
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56263
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56256
56264
|
guardrail_config: unionType([
|
|
56257
56265
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56258
56266
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56271,8 +56279,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56271
56279
|
DataRagas$outboundSchema = objectType({
|
|
56272
56280
|
id: stringType(),
|
|
56273
56281
|
description: stringType(),
|
|
56274
|
-
created: stringType().default("2025-11-
|
|
56275
|
-
updated: stringType().default("2025-11-
|
|
56282
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56283
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56276
56284
|
guardrailConfig: unionType([
|
|
56277
56285
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56278
56286
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -56709,8 +56717,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56709
56717
|
DataFunction$inboundSchema = objectType({
|
|
56710
56718
|
_id: stringType(),
|
|
56711
56719
|
description: stringType(),
|
|
56712
|
-
created: stringType().default("2025-11-
|
|
56713
|
-
updated: stringType().default("2025-11-
|
|
56720
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56721
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56714
56722
|
guardrail_config: unionType([
|
|
56715
56723
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
56716
56724
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -56764,8 +56772,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56764
56772
|
DataFunction$outboundSchema = objectType({
|
|
56765
56773
|
id: stringType(),
|
|
56766
56774
|
description: stringType(),
|
|
56767
|
-
created: stringType().default("2025-11-
|
|
56768
|
-
updated: stringType().default("2025-11-
|
|
56775
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56776
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56769
56777
|
guardrailConfig: unionType([
|
|
56770
56778
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
56771
56779
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -56857,8 +56865,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56857
56865
|
DataPython$inboundSchema = objectType({
|
|
56858
56866
|
_id: stringType(),
|
|
56859
56867
|
description: stringType(),
|
|
56860
|
-
created: stringType().default("2025-11-
|
|
56861
|
-
updated: stringType().default("2025-11-
|
|
56868
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56869
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56862
56870
|
guardrail_config: unionType([
|
|
56863
56871
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
56864
56872
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -56875,8 +56883,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56875
56883
|
DataPython$outboundSchema = objectType({
|
|
56876
56884
|
id: stringType(),
|
|
56877
56885
|
description: stringType(),
|
|
56878
|
-
created: stringType().default("2025-11-
|
|
56879
|
-
updated: stringType().default("2025-11-
|
|
56886
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56887
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56880
56888
|
guardrailConfig: unionType([
|
|
56881
56889
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
56882
56890
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -56933,8 +56941,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56933
56941
|
DataHTTP$inboundSchema = objectType({
|
|
56934
56942
|
_id: stringType(),
|
|
56935
56943
|
description: stringType(),
|
|
56936
|
-
created: stringType().default("2025-11-
|
|
56937
|
-
updated: stringType().default("2025-11-
|
|
56944
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56945
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56938
56946
|
guardrail_config: unionType([
|
|
56939
56947
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
56940
56948
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -56954,8 +56962,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56954
56962
|
DataHTTP$outboundSchema = objectType({
|
|
56955
56963
|
id: stringType(),
|
|
56956
56964
|
description: stringType(),
|
|
56957
|
-
created: stringType().default("2025-11-
|
|
56958
|
-
updated: stringType().default("2025-11-
|
|
56965
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56966
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
56959
56967
|
guardrailConfig: unionType([
|
|
56960
56968
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
56961
56969
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57013,8 +57021,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57013
57021
|
DataJSON$inboundSchema = objectType({
|
|
57014
57022
|
_id: stringType(),
|
|
57015
57023
|
description: stringType(),
|
|
57016
|
-
created: stringType().default("2025-11-
|
|
57017
|
-
updated: stringType().default("2025-11-
|
|
57024
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57025
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57018
57026
|
guardrail_config: unionType([
|
|
57019
57027
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57020
57028
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57031,8 +57039,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57031
57039
|
DataJSON$outboundSchema = objectType({
|
|
57032
57040
|
id: stringType(),
|
|
57033
57041
|
description: stringType(),
|
|
57034
|
-
created: stringType().default("2025-11-
|
|
57035
|
-
updated: stringType().default("2025-11-
|
|
57042
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57043
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57036
57044
|
guardrailConfig: unionType([
|
|
57037
57045
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57038
57046
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57087,8 +57095,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57087
57095
|
DataLLM$inboundSchema = objectType({
|
|
57088
57096
|
_id: stringType(),
|
|
57089
57097
|
description: stringType(),
|
|
57090
|
-
created: stringType().default("2025-11-
|
|
57091
|
-
updated: stringType().default("2025-11-
|
|
57098
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57099
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57092
57100
|
guardrail_config: unionType([
|
|
57093
57101
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57094
57102
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57106,8 +57114,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57106
57114
|
DataLLM$outboundSchema = objectType({
|
|
57107
57115
|
id: stringType(),
|
|
57108
57116
|
description: stringType(),
|
|
57109
|
-
created: stringType().default("2025-11-
|
|
57110
|
-
updated: stringType().default("2025-11-
|
|
57117
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57118
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
57111
57119
|
guardrailConfig: unionType([
|
|
57112
57120
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57113
57121
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -57974,6 +57982,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
57974
57982
|
GetOnePromptPromptConfig$inboundSchema = objectType({
|
|
57975
57983
|
stream: booleanType().optional(),
|
|
57976
57984
|
model: stringType().optional(),
|
|
57985
|
+
display_name: stringType().optional(),
|
|
57977
57986
|
model_db_id: nullableType(stringType()).optional(),
|
|
57978
57987
|
model_type: nullableType(GetOnePromptModelType$inboundSchema).optional(),
|
|
57979
57988
|
model_parameters: lazyType(() => GetOnePromptModelParameters$inboundSchema).optional(),
|
|
@@ -57983,6 +57992,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
57983
57992
|
messages: arrayType(lazyType(() => GetOnePromptMessages$inboundSchema))
|
|
57984
57993
|
}).transform((v2) => {
|
|
57985
57994
|
return remap(v2, {
|
|
57995
|
+
display_name: "displayName",
|
|
57986
57996
|
model_db_id: "modelDbId",
|
|
57987
57997
|
model_type: "modelType",
|
|
57988
57998
|
model_parameters: "modelParameters",
|
|
@@ -57992,6 +58002,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
57992
58002
|
GetOnePromptPromptConfig$outboundSchema = objectType({
|
|
57993
58003
|
stream: booleanType().optional(),
|
|
57994
58004
|
model: stringType().optional(),
|
|
58005
|
+
displayName: stringType().optional(),
|
|
57995
58006
|
modelDbId: nullableType(stringType()).optional(),
|
|
57996
58007
|
modelType: nullableType(GetOnePromptModelType$outboundSchema).optional(),
|
|
57997
58008
|
modelParameters: lazyType(() => GetOnePromptModelParameters$outboundSchema).optional(),
|
|
@@ -58001,6 +58012,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
58001
58012
|
messages: arrayType(lazyType(() => GetOnePromptMessages$outboundSchema))
|
|
58002
58013
|
}).transform((v2) => {
|
|
58003
58014
|
return remap(v2, {
|
|
58015
|
+
displayName: "display_name",
|
|
58004
58016
|
modelDbId: "model_db_id",
|
|
58005
58017
|
modelType: "model_type",
|
|
58006
58018
|
modelParameters: "model_parameters",
|
|
@@ -58546,6 +58558,7 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58546
58558
|
GetPromptVersionPromptConfig$inboundSchema = objectType({
|
|
58547
58559
|
stream: booleanType().optional(),
|
|
58548
58560
|
model: stringType().optional(),
|
|
58561
|
+
display_name: stringType().optional(),
|
|
58549
58562
|
model_db_id: nullableType(stringType()).optional(),
|
|
58550
58563
|
model_type: nullableType(GetPromptVersionModelType$inboundSchema).optional(),
|
|
58551
58564
|
model_parameters: lazyType(() => GetPromptVersionModelParameters$inboundSchema).optional(),
|
|
@@ -58555,6 +58568,7 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58555
58568
|
messages: arrayType(lazyType(() => GetPromptVersionMessages$inboundSchema))
|
|
58556
58569
|
}).transform((v2) => {
|
|
58557
58570
|
return remap(v2, {
|
|
58571
|
+
display_name: "displayName",
|
|
58558
58572
|
model_db_id: "modelDbId",
|
|
58559
58573
|
model_type: "modelType",
|
|
58560
58574
|
model_parameters: "modelParameters",
|
|
@@ -58564,6 +58578,7 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58564
58578
|
GetPromptVersionPromptConfig$outboundSchema = objectType({
|
|
58565
58579
|
stream: booleanType().optional(),
|
|
58566
58580
|
model: stringType().optional(),
|
|
58581
|
+
displayName: stringType().optional(),
|
|
58567
58582
|
modelDbId: nullableType(stringType()).optional(),
|
|
58568
58583
|
modelType: nullableType(GetPromptVersionModelType$outboundSchema).optional(),
|
|
58569
58584
|
modelParameters: lazyType(() => GetPromptVersionModelParameters$outboundSchema).optional(),
|
|
@@ -58573,6 +58588,7 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58573
58588
|
messages: arrayType(lazyType(() => GetPromptVersionMessages$outboundSchema))
|
|
58574
58589
|
}).transform((v2) => {
|
|
58575
58590
|
return remap(v2, {
|
|
58591
|
+
displayName: "display_name",
|
|
58576
58592
|
modelDbId: "model_db_id",
|
|
58577
58593
|
modelType: "model_type",
|
|
58578
58594
|
modelParameters: "model_parameters",
|
|
@@ -60460,7 +60476,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60460
60476
|
is_active: booleanType(),
|
|
60461
60477
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
60462
60478
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60463
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60479
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:48.371Z").transform((v2) => new Date(v2))
|
|
60464
60480
|
}).transform((v2) => {
|
|
60465
60481
|
return remap(v2, {
|
|
60466
60482
|
_id: "id",
|
|
@@ -60476,7 +60492,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60476
60492
|
isActive: booleanType(),
|
|
60477
60493
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
60478
60494
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60479
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60495
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:48.371Z")).transform((v2) => v2.toISOString())
|
|
60480
60496
|
}).transform((v2) => {
|
|
60481
60497
|
return remap(v2, {
|
|
60482
60498
|
id: "_id",
|
|
@@ -60803,7 +60819,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60803
60819
|
tags: arrayType(stringType()).optional(),
|
|
60804
60820
|
metadata: recordType(anyType()).optional(),
|
|
60805
60821
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60806
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60822
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2)),
|
|
60807
60823
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60808
60824
|
}).transform((v2) => {
|
|
60809
60825
|
return remap(v2, {
|
|
@@ -60822,7 +60838,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60822
60838
|
tags: arrayType(stringType()).optional(),
|
|
60823
60839
|
metadata: recordType(anyType()).optional(),
|
|
60824
60840
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60825
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60841
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString()),
|
|
60826
60842
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
60827
60843
|
}).transform((v2) => {
|
|
60828
60844
|
return remap(v2, {
|
|
@@ -61411,7 +61427,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61411
61427
|
human_review_id: stringType(),
|
|
61412
61428
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
61413
61429
|
reviewed_by_id: stringType(),
|
|
61414
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61430
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.068Z").transform((v2) => new Date(v2)),
|
|
61415
61431
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
61416
61432
|
values: arrayType(stringType())
|
|
61417
61433
|
}).transform((v2) => {
|
|
@@ -61428,7 +61444,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61428
61444
|
humanReviewId: stringType(),
|
|
61429
61445
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
61430
61446
|
reviewedById: stringType(),
|
|
61431
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61447
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.068Z")).transform((v2) => v2.toISOString()),
|
|
61432
61448
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
61433
61449
|
values: arrayType(stringType())
|
|
61434
61450
|
}).transform((v2) => {
|
|
@@ -61451,7 +61467,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61451
61467
|
human_review_id: stringType(),
|
|
61452
61468
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
61453
61469
|
reviewed_by_id: stringType(),
|
|
61454
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61470
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.067Z").transform((v2) => new Date(v2)),
|
|
61455
61471
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
61456
61472
|
value: numberType()
|
|
61457
61473
|
}).transform((v2) => {
|
|
@@ -61468,7 +61484,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61468
61484
|
humanReviewId: stringType(),
|
|
61469
61485
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
61470
61486
|
reviewedById: stringType(),
|
|
61471
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61487
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.067Z")).transform((v2) => v2.toISOString()),
|
|
61472
61488
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
61473
61489
|
value: numberType()
|
|
61474
61490
|
}).transform((v2) => {
|
|
@@ -61491,7 +61507,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61491
61507
|
human_review_id: stringType(),
|
|
61492
61508
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
61493
61509
|
reviewed_by_id: stringType(),
|
|
61494
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61510
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.066Z").transform((v2) => new Date(v2)),
|
|
61495
61511
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
61496
61512
|
value: stringType()
|
|
61497
61513
|
}).transform((v2) => {
|
|
@@ -61508,7 +61524,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61508
61524
|
humanReviewId: stringType(),
|
|
61509
61525
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
61510
61526
|
reviewedById: stringType(),
|
|
61511
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61527
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.066Z")).transform((v2) => v2.toISOString()),
|
|
61512
61528
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
61513
61529
|
value: stringType()
|
|
61514
61530
|
}).transform((v2) => {
|
|
@@ -61551,7 +61567,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61551
61567
|
created_by_id: stringType().optional(),
|
|
61552
61568
|
updated_by_id: stringType().optional(),
|
|
61553
61569
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61554
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61570
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
61555
61571
|
}).transform((v2) => {
|
|
61556
61572
|
return remap(v2, {
|
|
61557
61573
|
_id: "id",
|
|
@@ -61585,7 +61601,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61585
61601
|
createdById: stringType().optional(),
|
|
61586
61602
|
updatedById: stringType().optional(),
|
|
61587
61603
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61588
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61604
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
61589
61605
|
}).transform((v2) => {
|
|
61590
61606
|
return remap(v2, {
|
|
61591
61607
|
id: "_id",
|
|
@@ -61674,7 +61690,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61674
61690
|
created_by_id: stringType().optional(),
|
|
61675
61691
|
updated_by_id: stringType().optional(),
|
|
61676
61692
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61677
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61693
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
61678
61694
|
}).transform((v2) => {
|
|
61679
61695
|
return remap(v2, {
|
|
61680
61696
|
_id: "id",
|
|
@@ -61694,7 +61710,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61694
61710
|
createdById: stringType().optional(),
|
|
61695
61711
|
updatedById: stringType().optional(),
|
|
61696
61712
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61697
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61713
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
61698
61714
|
}).transform((v2) => {
|
|
61699
61715
|
return remap(v2, {
|
|
61700
61716
|
id: "_id",
|
|
@@ -61775,7 +61791,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61775
61791
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
61776
61792
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
61777
61793
|
ListDatasourcesData$inboundSchema = objectType({
|
|
61778
|
-
_id: stringType().default("
|
|
61794
|
+
_id: stringType().default("01K9W4THZ2E1RYSFTY0G1GJGK6"),
|
|
61779
61795
|
display_name: stringType(),
|
|
61780
61796
|
description: stringType().optional(),
|
|
61781
61797
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -61798,7 +61814,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61798
61814
|
});
|
|
61799
61815
|
});
|
|
61800
61816
|
ListDatasourcesData$outboundSchema = objectType({
|
|
61801
|
-
id: stringType().default("
|
|
61817
|
+
id: stringType().default("01K9W4THZ2E1RYSFTY0G1GJGK6"),
|
|
61802
61818
|
displayName: stringType(),
|
|
61803
61819
|
description: stringType().optional(),
|
|
61804
61820
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -62686,6 +62702,7 @@ var init_listpromptversions = __esm(() => {
|
|
|
62686
62702
|
ListPromptVersionsPromptConfig$inboundSchema = objectType({
|
|
62687
62703
|
stream: booleanType().optional(),
|
|
62688
62704
|
model: stringType().optional(),
|
|
62705
|
+
display_name: stringType().optional(),
|
|
62689
62706
|
model_db_id: nullableType(stringType()).optional(),
|
|
62690
62707
|
model_type: nullableType(ListPromptVersionsModelType$inboundSchema).optional(),
|
|
62691
62708
|
model_parameters: lazyType(() => ListPromptVersionsModelParameters$inboundSchema).optional(),
|
|
@@ -62695,6 +62712,7 @@ var init_listpromptversions = __esm(() => {
|
|
|
62695
62712
|
messages: arrayType(lazyType(() => ListPromptVersionsMessages$inboundSchema))
|
|
62696
62713
|
}).transform((v2) => {
|
|
62697
62714
|
return remap(v2, {
|
|
62715
|
+
display_name: "displayName",
|
|
62698
62716
|
model_db_id: "modelDbId",
|
|
62699
62717
|
model_type: "modelType",
|
|
62700
62718
|
model_parameters: "modelParameters",
|
|
@@ -62704,6 +62722,7 @@ var init_listpromptversions = __esm(() => {
|
|
|
62704
62722
|
ListPromptVersionsPromptConfig$outboundSchema = objectType({
|
|
62705
62723
|
stream: booleanType().optional(),
|
|
62706
62724
|
model: stringType().optional(),
|
|
62725
|
+
displayName: stringType().optional(),
|
|
62707
62726
|
modelDbId: nullableType(stringType()).optional(),
|
|
62708
62727
|
modelType: nullableType(ListPromptVersionsModelType$outboundSchema).optional(),
|
|
62709
62728
|
modelParameters: lazyType(() => ListPromptVersionsModelParameters$outboundSchema).optional(),
|
|
@@ -62713,6 +62732,7 @@ var init_listpromptversions = __esm(() => {
|
|
|
62713
62732
|
messages: arrayType(lazyType(() => ListPromptVersionsMessages$outboundSchema))
|
|
62714
62733
|
}).transform((v2) => {
|
|
62715
62734
|
return remap(v2, {
|
|
62735
|
+
displayName: "display_name",
|
|
62716
62736
|
modelDbId: "model_db_id",
|
|
62717
62737
|
modelType: "model_type",
|
|
62718
62738
|
modelParameters: "model_parameters",
|
|
@@ -63262,7 +63282,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63262
63282
|
tags: arrayType(stringType()).optional(),
|
|
63263
63283
|
metadata: recordType(anyType()).optional(),
|
|
63264
63284
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63265
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63285
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
63266
63286
|
}).transform((v2) => {
|
|
63267
63287
|
return remap(v2, {
|
|
63268
63288
|
_id: "id",
|
|
@@ -63280,7 +63300,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63280
63300
|
tags: arrayType(stringType()).optional(),
|
|
63281
63301
|
metadata: recordType(anyType()).optional(),
|
|
63282
63302
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63283
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63303
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
63284
63304
|
}).transform((v2) => {
|
|
63285
63305
|
return remap(v2, {
|
|
63286
63306
|
id: "_id",
|
|
@@ -63839,7 +63859,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63839
63859
|
human_review_id: stringType(),
|
|
63840
63860
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
63841
63861
|
reviewed_by_id: stringType(),
|
|
63842
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63862
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.077Z").transform((v2) => new Date(v2)),
|
|
63843
63863
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
63844
63864
|
values: arrayType(stringType())
|
|
63845
63865
|
}).transform((v2) => {
|
|
@@ -63856,7 +63876,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63856
63876
|
humanReviewId: stringType(),
|
|
63857
63877
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
63858
63878
|
reviewedById: stringType(),
|
|
63859
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63879
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.077Z")).transform((v2) => v2.toISOString()),
|
|
63860
63880
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
63861
63881
|
values: arrayType(stringType())
|
|
63862
63882
|
}).transform((v2) => {
|
|
@@ -63879,7 +63899,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63879
63899
|
human_review_id: stringType(),
|
|
63880
63900
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
63881
63901
|
reviewed_by_id: stringType(),
|
|
63882
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63902
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.077Z").transform((v2) => new Date(v2)),
|
|
63883
63903
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
63884
63904
|
value: numberType()
|
|
63885
63905
|
}).transform((v2) => {
|
|
@@ -63896,7 +63916,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63896
63916
|
humanReviewId: stringType(),
|
|
63897
63917
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
63898
63918
|
reviewedById: stringType(),
|
|
63899
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63919
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.077Z")).transform((v2) => v2.toISOString()),
|
|
63900
63920
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
63901
63921
|
value: numberType()
|
|
63902
63922
|
}).transform((v2) => {
|
|
@@ -63919,7 +63939,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63919
63939
|
human_review_id: stringType(),
|
|
63920
63940
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
63921
63941
|
reviewed_by_id: stringType(),
|
|
63922
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63942
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.076Z").transform((v2) => new Date(v2)),
|
|
63923
63943
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
63924
63944
|
value: stringType()
|
|
63925
63945
|
}).transform((v2) => {
|
|
@@ -63936,7 +63956,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63936
63956
|
humanReviewId: stringType(),
|
|
63937
63957
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
63938
63958
|
reviewedById: stringType(),
|
|
63939
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63959
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.076Z")).transform((v2) => v2.toISOString()),
|
|
63940
63960
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
63941
63961
|
value: stringType()
|
|
63942
63962
|
}).transform((v2) => {
|
|
@@ -63979,7 +63999,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63979
63999
|
created_by_id: stringType().optional(),
|
|
63980
64000
|
updated_by_id: stringType().optional(),
|
|
63981
64001
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63982
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64002
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
63983
64003
|
}).transform((v2) => {
|
|
63984
64004
|
return remap(v2, {
|
|
63985
64005
|
_id: "id",
|
|
@@ -64013,7 +64033,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64013
64033
|
createdById: stringType().optional(),
|
|
64014
64034
|
updatedById: stringType().optional(),
|
|
64015
64035
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64016
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64036
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
64017
64037
|
}).transform((v2) => {
|
|
64018
64038
|
return remap(v2, {
|
|
64019
64039
|
id: "_id",
|
|
@@ -64073,7 +64093,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64073
64093
|
created_by_id: stringType().optional(),
|
|
64074
64094
|
updated_by_id: stringType().optional(),
|
|
64075
64095
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64076
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64096
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
64077
64097
|
}).transform((v2) => {
|
|
64078
64098
|
return remap(v2, {
|
|
64079
64099
|
_id: "id",
|
|
@@ -64093,7 +64113,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64093
64113
|
createdById: stringType().optional(),
|
|
64094
64114
|
updatedById: stringType().optional(),
|
|
64095
64115
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64096
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64116
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
64097
64117
|
}).transform((v2) => {
|
|
64098
64118
|
return remap(v2, {
|
|
64099
64119
|
id: "_id",
|
|
@@ -64139,7 +64159,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64139
64159
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64140
64160
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64141
64161
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64142
|
-
_id: stringType().default("
|
|
64162
|
+
_id: stringType().default("01K9W4THZ9Y7RYDJVVRDT08N3G"),
|
|
64143
64163
|
display_name: stringType(),
|
|
64144
64164
|
description: stringType().optional(),
|
|
64145
64165
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64162,7 +64182,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64162
64182
|
});
|
|
64163
64183
|
});
|
|
64164
64184
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64165
|
-
id: stringType().default("
|
|
64185
|
+
id: stringType().default("01K9W4THZ9Y7RYDJVVRDT08N3G"),
|
|
64166
64186
|
displayName: stringType(),
|
|
64167
64187
|
description: stringType().optional(),
|
|
64168
64188
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64700,7 +64720,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64700
64720
|
code: stringType()
|
|
64701
64721
|
});
|
|
64702
64722
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
64703
|
-
_id: stringType().default("
|
|
64723
|
+
_id: stringType().default("01K9W4THNZJ9DFB9S9JZBT4RM5"),
|
|
64704
64724
|
path: stringType(),
|
|
64705
64725
|
key: stringType(),
|
|
64706
64726
|
display_name: stringType().optional(),
|
|
@@ -64728,7 +64748,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64728
64748
|
});
|
|
64729
64749
|
});
|
|
64730
64750
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
64731
|
-
id: stringType().default("
|
|
64751
|
+
id: stringType().default("01K9W4THNZJ9DFB9S9JZBT4RM5"),
|
|
64732
64752
|
path: stringType(),
|
|
64733
64753
|
key: stringType(),
|
|
64734
64754
|
displayName: stringType().optional(),
|
|
@@ -64814,7 +64834,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64814
64834
|
});
|
|
64815
64835
|
});
|
|
64816
64836
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
64817
|
-
_id: stringType().default("
|
|
64837
|
+
_id: stringType().default("01K9W4THN52BZA2EPQC5BQ52EZ"),
|
|
64818
64838
|
path: stringType(),
|
|
64819
64839
|
key: stringType(),
|
|
64820
64840
|
display_name: stringType().optional(),
|
|
@@ -64841,7 +64861,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64841
64861
|
});
|
|
64842
64862
|
});
|
|
64843
64863
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
64844
|
-
id: stringType().default("
|
|
64864
|
+
id: stringType().default("01K9W4THN52BZA2EPQC5BQ52EZ"),
|
|
64845
64865
|
path: stringType(),
|
|
64846
64866
|
key: stringType(),
|
|
64847
64867
|
displayName: stringType().optional(),
|
|
@@ -64928,7 +64948,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64928
64948
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64929
64949
|
});
|
|
64930
64950
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
64931
|
-
_id: stringType().default("
|
|
64951
|
+
_id: stringType().default("01K9W4THN2GS15SDJ10J9THNF1"),
|
|
64932
64952
|
path: stringType(),
|
|
64933
64953
|
key: stringType(),
|
|
64934
64954
|
display_name: stringType().optional(),
|
|
@@ -64955,7 +64975,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64955
64975
|
});
|
|
64956
64976
|
});
|
|
64957
64977
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
64958
|
-
id: stringType().default("
|
|
64978
|
+
id: stringType().default("01K9W4THN2GS15SDJ10J9THNF1"),
|
|
64959
64979
|
path: stringType(),
|
|
64960
64980
|
key: stringType(),
|
|
64961
64981
|
displayName: stringType().optional(),
|
|
@@ -64998,7 +65018,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64998
65018
|
strict: booleanType().optional()
|
|
64999
65019
|
});
|
|
65000
65020
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65001
|
-
_id: stringType().default("
|
|
65021
|
+
_id: stringType().default("01K9W4THN03BMNZAATTV1YYYDD"),
|
|
65002
65022
|
path: stringType(),
|
|
65003
65023
|
key: stringType(),
|
|
65004
65024
|
display_name: stringType().optional(),
|
|
@@ -65026,7 +65046,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65026
65046
|
});
|
|
65027
65047
|
});
|
|
65028
65048
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65029
|
-
id: stringType().default("
|
|
65049
|
+
id: stringType().default("01K9W4THN03BMNZAATTV1YYYDD"),
|
|
65030
65050
|
path: stringType(),
|
|
65031
65051
|
key: stringType(),
|
|
65032
65052
|
displayName: stringType().optional(),
|
|
@@ -65070,7 +65090,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65070
65090
|
parameters: recordType(anyType()).optional()
|
|
65071
65091
|
});
|
|
65072
65092
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65073
|
-
_id: stringType().default("
|
|
65093
|
+
_id: stringType().default("01K9W4THMYF9QFGKRWAN5Q7ZJW"),
|
|
65074
65094
|
path: stringType(),
|
|
65075
65095
|
key: stringType(),
|
|
65076
65096
|
display_name: stringType().optional(),
|
|
@@ -65097,7 +65117,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65097
65117
|
});
|
|
65098
65118
|
});
|
|
65099
65119
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65100
|
-
id: stringType().default("
|
|
65120
|
+
id: stringType().default("01K9W4THMYF9QFGKRWAN5Q7ZJW"),
|
|
65101
65121
|
path: stringType(),
|
|
65102
65122
|
key: stringType(),
|
|
65103
65123
|
displayName: stringType().optional(),
|
|
@@ -70818,7 +70838,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70818
70838
|
is_active: booleanType(),
|
|
70819
70839
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
70820
70840
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70821
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
70841
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:48.371Z").transform((v2) => new Date(v2))
|
|
70822
70842
|
}).transform((v2) => {
|
|
70823
70843
|
return remap(v2, {
|
|
70824
70844
|
_id: "id",
|
|
@@ -70836,7 +70856,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70836
70856
|
isActive: booleanType(),
|
|
70837
70857
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
70838
70858
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70839
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
70859
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:48.371Z")).transform((v2) => v2.toISOString())
|
|
70840
70860
|
}).transform((v2) => {
|
|
70841
70861
|
return remap(v2, {
|
|
70842
70862
|
id: "_id",
|
|
@@ -70991,7 +71011,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70991
71011
|
tags: arrayType(stringType()).optional(),
|
|
70992
71012
|
metadata: recordType(anyType()).optional(),
|
|
70993
71013
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70994
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71014
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
70995
71015
|
}).transform((v2) => {
|
|
70996
71016
|
return remap(v2, {
|
|
70997
71017
|
_id: "id",
|
|
@@ -71009,7 +71029,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
71009
71029
|
tags: arrayType(stringType()).optional(),
|
|
71010
71030
|
metadata: recordType(anyType()).optional(),
|
|
71011
71031
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71012
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71032
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
71013
71033
|
}).transform((v2) => {
|
|
71014
71034
|
return remap(v2, {
|
|
71015
71035
|
id: "_id",
|
|
@@ -72085,7 +72105,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72085
72105
|
human_review_id: stringType(),
|
|
72086
72106
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
72087
72107
|
reviewed_by_id: stringType(),
|
|
72088
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72108
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.131Z").transform((v2) => new Date(v2)),
|
|
72089
72109
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
72090
72110
|
values: arrayType(stringType())
|
|
72091
72111
|
}).transform((v2) => {
|
|
@@ -72102,7 +72122,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72102
72122
|
humanReviewId: stringType(),
|
|
72103
72123
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
72104
72124
|
reviewedById: stringType(),
|
|
72105
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72125
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.131Z")).transform((v2) => v2.toISOString()),
|
|
72106
72126
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
72107
72127
|
values: arrayType(stringType())
|
|
72108
72128
|
}).transform((v2) => {
|
|
@@ -72125,7 +72145,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72125
72145
|
human_review_id: stringType(),
|
|
72126
72146
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
72127
72147
|
reviewed_by_id: stringType(),
|
|
72128
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72148
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.131Z").transform((v2) => new Date(v2)),
|
|
72129
72149
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
72130
72150
|
value: numberType()
|
|
72131
72151
|
}).transform((v2) => {
|
|
@@ -72142,7 +72162,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72142
72162
|
humanReviewId: stringType(),
|
|
72143
72163
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
72144
72164
|
reviewedById: stringType(),
|
|
72145
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72165
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.131Z")).transform((v2) => v2.toISOString()),
|
|
72146
72166
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
72147
72167
|
value: numberType()
|
|
72148
72168
|
}).transform((v2) => {
|
|
@@ -72165,7 +72185,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72165
72185
|
human_review_id: stringType(),
|
|
72166
72186
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
72167
72187
|
reviewed_by_id: stringType(),
|
|
72168
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72188
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-12T13:42:02.130Z").transform((v2) => new Date(v2)),
|
|
72169
72189
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
72170
72190
|
value: stringType()
|
|
72171
72191
|
}).transform((v2) => {
|
|
@@ -72182,7 +72202,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72182
72202
|
humanReviewId: stringType(),
|
|
72183
72203
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
72184
72204
|
reviewedById: stringType(),
|
|
72185
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72205
|
+
reviewedAt: dateType().default(() => new Date("2025-11-12T13:42:02.130Z")).transform((v2) => v2.toISOString()),
|
|
72186
72206
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
72187
72207
|
value: stringType()
|
|
72188
72208
|
}).transform((v2) => {
|
|
@@ -72225,7 +72245,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72225
72245
|
created_by_id: stringType().optional(),
|
|
72226
72246
|
updated_by_id: stringType().optional(),
|
|
72227
72247
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72228
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72248
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
72229
72249
|
}).transform((v2) => {
|
|
72230
72250
|
return remap(v2, {
|
|
72231
72251
|
_id: "id",
|
|
@@ -72259,7 +72279,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72259
72279
|
createdById: stringType().optional(),
|
|
72260
72280
|
updatedById: stringType().optional(),
|
|
72261
72281
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72262
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72282
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
72263
72283
|
}).transform((v2) => {
|
|
72264
72284
|
return remap(v2, {
|
|
72265
72285
|
id: "_id",
|
|
@@ -72343,7 +72363,7 @@ var init_updatedataset = __esm(() => {
|
|
|
72343
72363
|
created_by_id: stringType().optional(),
|
|
72344
72364
|
updated_by_id: stringType().optional(),
|
|
72345
72365
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72346
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72366
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-12T13:41:47.985Z").transform((v2) => new Date(v2))
|
|
72347
72367
|
}).transform((v2) => {
|
|
72348
72368
|
return remap(v2, {
|
|
72349
72369
|
_id: "id",
|
|
@@ -72363,7 +72383,7 @@ var init_updatedataset = __esm(() => {
|
|
|
72363
72383
|
createdById: stringType().optional(),
|
|
72364
72384
|
updatedById: stringType().optional(),
|
|
72365
72385
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72366
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72386
|
+
updated: dateType().default(() => new Date("2025-11-12T13:41:47.985Z")).transform((v2) => v2.toISOString())
|
|
72367
72387
|
}).transform((v2) => {
|
|
72368
72388
|
return remap(v2, {
|
|
72369
72389
|
id: "_id",
|
|
@@ -72427,7 +72447,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
72427
72447
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
72428
72448
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
72429
72449
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
72430
|
-
_id: stringType().default("
|
|
72450
|
+
_id: stringType().default("01K9W4THZVNCXC00Z9QCYDVJSN"),
|
|
72431
72451
|
display_name: stringType(),
|
|
72432
72452
|
description: stringType().optional(),
|
|
72433
72453
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -72450,7 +72470,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
72450
72470
|
});
|
|
72451
72471
|
});
|
|
72452
72472
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
72453
|
-
id: stringType().default("
|
|
72473
|
+
id: stringType().default("01K9W4THZVNCXC00Z9QCYDVJSN"),
|
|
72454
72474
|
displayName: stringType(),
|
|
72455
72475
|
description: stringType().optional(),
|
|
72456
72476
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -73195,8 +73215,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73195
73215
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
73196
73216
|
_id: stringType(),
|
|
73197
73217
|
description: stringType(),
|
|
73198
|
-
created: stringType().default("2025-11-
|
|
73199
|
-
updated: stringType().default("2025-11-
|
|
73218
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73219
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73200
73220
|
guardrail_config: unionType([
|
|
73201
73221
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
73202
73222
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -73213,8 +73233,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73213
73233
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
73214
73234
|
id: stringType(),
|
|
73215
73235
|
description: stringType(),
|
|
73216
|
-
created: stringType().default("2025-11-
|
|
73217
|
-
updated: stringType().default("2025-11-
|
|
73236
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73237
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73218
73238
|
guardrailConfig: unionType([
|
|
73219
73239
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
73220
73240
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -73271,8 +73291,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73271
73291
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
73272
73292
|
_id: stringType(),
|
|
73273
73293
|
description: stringType(),
|
|
73274
|
-
created: stringType().default("2025-11-
|
|
73275
|
-
updated: stringType().default("2025-11-
|
|
73294
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73295
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73276
73296
|
guardrail_config: unionType([
|
|
73277
73297
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
73278
73298
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -73291,8 +73311,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73291
73311
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
73292
73312
|
id: stringType(),
|
|
73293
73313
|
description: stringType(),
|
|
73294
|
-
created: stringType().default("2025-11-
|
|
73295
|
-
updated: stringType().default("2025-11-
|
|
73314
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73315
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73296
73316
|
guardrailConfig: unionType([
|
|
73297
73317
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
73298
73318
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -73729,8 +73749,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73729
73749
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
73730
73750
|
_id: stringType(),
|
|
73731
73751
|
description: stringType(),
|
|
73732
|
-
created: stringType().default("2025-11-
|
|
73733
|
-
updated: stringType().default("2025-11-
|
|
73752
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73753
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73734
73754
|
guardrail_config: unionType([
|
|
73735
73755
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
73736
73756
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -73784,8 +73804,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73784
73804
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
73785
73805
|
id: stringType(),
|
|
73786
73806
|
description: stringType(),
|
|
73787
|
-
created: stringType().default("2025-11-
|
|
73788
|
-
updated: stringType().default("2025-11-
|
|
73807
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73808
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73789
73809
|
guardrailConfig: unionType([
|
|
73790
73810
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
73791
73811
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -73877,8 +73897,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73877
73897
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
73878
73898
|
_id: stringType(),
|
|
73879
73899
|
description: stringType(),
|
|
73880
|
-
created: stringType().default("2025-11-
|
|
73881
|
-
updated: stringType().default("2025-11-
|
|
73900
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73901
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73882
73902
|
guardrail_config: unionType([
|
|
73883
73903
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
73884
73904
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -73895,8 +73915,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73895
73915
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
73896
73916
|
id: stringType(),
|
|
73897
73917
|
description: stringType(),
|
|
73898
|
-
created: stringType().default("2025-11-
|
|
73899
|
-
updated: stringType().default("2025-11-
|
|
73918
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73919
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73900
73920
|
guardrailConfig: unionType([
|
|
73901
73921
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
73902
73922
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -73953,8 +73973,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73953
73973
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
73954
73974
|
_id: stringType(),
|
|
73955
73975
|
description: stringType(),
|
|
73956
|
-
created: stringType().default("2025-11-
|
|
73957
|
-
updated: stringType().default("2025-11-
|
|
73976
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73977
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73958
73978
|
guardrail_config: unionType([
|
|
73959
73979
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
73960
73980
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -73974,8 +73994,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73974
73994
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
73975
73995
|
id: stringType(),
|
|
73976
73996
|
description: stringType(),
|
|
73977
|
-
created: stringType().default("2025-11-
|
|
73978
|
-
updated: stringType().default("2025-11-
|
|
73997
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73998
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
73979
73999
|
guardrailConfig: unionType([
|
|
73980
74000
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
73981
74001
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -74033,8 +74053,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74033
74053
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
74034
74054
|
_id: stringType(),
|
|
74035
74055
|
description: stringType(),
|
|
74036
|
-
created: stringType().default("2025-11-
|
|
74037
|
-
updated: stringType().default("2025-11-
|
|
74056
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74057
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74038
74058
|
guardrail_config: unionType([
|
|
74039
74059
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
74040
74060
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -74051,8 +74071,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74051
74071
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
74052
74072
|
id: stringType(),
|
|
74053
74073
|
description: stringType(),
|
|
74054
|
-
created: stringType().default("2025-11-
|
|
74055
|
-
updated: stringType().default("2025-11-
|
|
74074
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74075
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74056
74076
|
guardrailConfig: unionType([
|
|
74057
74077
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
74058
74078
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -74107,8 +74127,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74107
74127
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
74108
74128
|
_id: stringType(),
|
|
74109
74129
|
description: stringType(),
|
|
74110
|
-
created: stringType().default("2025-11-
|
|
74111
|
-
updated: stringType().default("2025-11-
|
|
74130
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74131
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74112
74132
|
guardrail_config: unionType([
|
|
74113
74133
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
74114
74134
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -74126,8 +74146,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74126
74146
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
74127
74147
|
id: stringType(),
|
|
74128
74148
|
description: stringType(),
|
|
74129
|
-
created: stringType().default("2025-11-
|
|
74130
|
-
updated: stringType().default("2025-11-
|
|
74149
|
+
created: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74150
|
+
updated: stringType().default("2025-11-12T13:41:50.796Z"),
|
|
74131
74151
|
guardrailConfig: unionType([
|
|
74132
74152
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
74133
74153
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -75810,6 +75830,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75810
75830
|
PromptConfig$inboundSchema = objectType({
|
|
75811
75831
|
stream: booleanType().optional(),
|
|
75812
75832
|
model: stringType().optional(),
|
|
75833
|
+
display_name: stringType().optional(),
|
|
75813
75834
|
model_parameters: lazyType(() => UpdatePromptModelParameters$inboundSchema).optional(),
|
|
75814
75835
|
provider: Provider$inboundSchema.optional(),
|
|
75815
75836
|
version: stringType().optional(),
|
|
@@ -75819,6 +75840,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75819
75840
|
is_private: booleanType().default(false)
|
|
75820
75841
|
}).transform((v2) => {
|
|
75821
75842
|
return remap(v2, {
|
|
75843
|
+
display_name: "displayName",
|
|
75822
75844
|
model_parameters: "modelParameters",
|
|
75823
75845
|
model_db_id: "modelDbId",
|
|
75824
75846
|
model_type: "modelType",
|
|
@@ -75828,6 +75850,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75828
75850
|
PromptConfig$outboundSchema = objectType({
|
|
75829
75851
|
stream: booleanType().optional(),
|
|
75830
75852
|
model: stringType().optional(),
|
|
75853
|
+
displayName: stringType().optional(),
|
|
75831
75854
|
modelParameters: lazyType(() => UpdatePromptModelParameters$outboundSchema).optional(),
|
|
75832
75855
|
provider: Provider$outboundSchema.optional(),
|
|
75833
75856
|
version: stringType().optional(),
|
|
@@ -75837,6 +75860,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75837
75860
|
isPrivate: booleanType().default(false)
|
|
75838
75861
|
}).transform((v2) => {
|
|
75839
75862
|
return remap(v2, {
|
|
75863
|
+
displayName: "display_name",
|
|
75840
75864
|
modelParameters: "model_parameters",
|
|
75841
75865
|
modelDbId: "model_db_id",
|
|
75842
75866
|
modelType: "model_type",
|
|
@@ -76750,6 +76774,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76750
76774
|
UpdatePromptPromptConfig$inboundSchema = objectType({
|
|
76751
76775
|
stream: booleanType().optional(),
|
|
76752
76776
|
model: stringType().optional(),
|
|
76777
|
+
display_name: stringType().optional(),
|
|
76753
76778
|
model_db_id: nullableType(stringType()).optional(),
|
|
76754
76779
|
model_type: nullableType(UpdatePromptModelType$inboundSchema).optional(),
|
|
76755
76780
|
model_parameters: lazyType(() => UpdatePromptPromptsModelParameters$inboundSchema).optional(),
|
|
@@ -76759,6 +76784,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76759
76784
|
messages: arrayType(lazyType(() => UpdatePromptPromptsResponseMessages$inboundSchema))
|
|
76760
76785
|
}).transform((v2) => {
|
|
76761
76786
|
return remap(v2, {
|
|
76787
|
+
display_name: "displayName",
|
|
76762
76788
|
model_db_id: "modelDbId",
|
|
76763
76789
|
model_type: "modelType",
|
|
76764
76790
|
model_parameters: "modelParameters",
|
|
@@ -76768,6 +76794,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76768
76794
|
UpdatePromptPromptConfig$outboundSchema = objectType({
|
|
76769
76795
|
stream: booleanType().optional(),
|
|
76770
76796
|
model: stringType().optional(),
|
|
76797
|
+
displayName: stringType().optional(),
|
|
76771
76798
|
modelDbId: nullableType(stringType()).optional(),
|
|
76772
76799
|
modelType: nullableType(UpdatePromptModelType$outboundSchema).optional(),
|
|
76773
76800
|
modelParameters: lazyType(() => UpdatePromptPromptsModelParameters$outboundSchema).optional(),
|
|
@@ -76777,6 +76804,7 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76777
76804
|
messages: arrayType(lazyType(() => UpdatePromptPromptsResponseMessages$outboundSchema))
|
|
76778
76805
|
}).transform((v2) => {
|
|
76779
76806
|
return remap(v2, {
|
|
76807
|
+
displayName: "display_name",
|
|
76780
76808
|
modelDbId: "model_db_id",
|
|
76781
76809
|
modelType: "model_type",
|
|
76782
76810
|
modelParameters: "model_parameters",
|
|
@@ -77347,7 +77375,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77347
77375
|
code: stringType()
|
|
77348
77376
|
});
|
|
77349
77377
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
77350
|
-
_id: stringType().default("
|
|
77378
|
+
_id: stringType().default("01K9W4THM3R4ARMHSB0SX2JZ5T"),
|
|
77351
77379
|
path: stringType(),
|
|
77352
77380
|
key: stringType(),
|
|
77353
77381
|
display_name: stringType().optional(),
|
|
@@ -77375,7 +77403,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77375
77403
|
});
|
|
77376
77404
|
});
|
|
77377
77405
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
77378
|
-
id: stringType().default("
|
|
77406
|
+
id: stringType().default("01K9W4THM3R4ARMHSB0SX2JZ5T"),
|
|
77379
77407
|
path: stringType(),
|
|
77380
77408
|
key: stringType(),
|
|
77381
77409
|
displayName: stringType().optional(),
|
|
@@ -77461,7 +77489,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77461
77489
|
});
|
|
77462
77490
|
});
|
|
77463
77491
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
77464
|
-
_id: stringType().default("
|
|
77492
|
+
_id: stringType().default("01K9W4THKYM9T0MR2BRFYBQMFH"),
|
|
77465
77493
|
path: stringType(),
|
|
77466
77494
|
key: stringType(),
|
|
77467
77495
|
display_name: stringType().optional(),
|
|
@@ -77488,7 +77516,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77488
77516
|
});
|
|
77489
77517
|
});
|
|
77490
77518
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
77491
|
-
id: stringType().default("
|
|
77519
|
+
id: stringType().default("01K9W4THKYM9T0MR2BRFYBQMFH"),
|
|
77492
77520
|
path: stringType(),
|
|
77493
77521
|
key: stringType(),
|
|
77494
77522
|
displayName: stringType().optional(),
|
|
@@ -77575,7 +77603,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77575
77603
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
77576
77604
|
});
|
|
77577
77605
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
77578
|
-
_id: stringType().default("
|
|
77606
|
+
_id: stringType().default("01K9W4THKPDJG7GGVFQWRGDPWN"),
|
|
77579
77607
|
path: stringType(),
|
|
77580
77608
|
key: stringType(),
|
|
77581
77609
|
display_name: stringType().optional(),
|
|
@@ -77602,7 +77630,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77602
77630
|
});
|
|
77603
77631
|
});
|
|
77604
77632
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
77605
|
-
id: stringType().default("
|
|
77633
|
+
id: stringType().default("01K9W4THKPDJG7GGVFQWRGDPWN"),
|
|
77606
77634
|
path: stringType(),
|
|
77607
77635
|
key: stringType(),
|
|
77608
77636
|
displayName: stringType().optional(),
|
|
@@ -77645,7 +77673,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77645
77673
|
strict: booleanType().optional()
|
|
77646
77674
|
});
|
|
77647
77675
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
77648
|
-
_id: stringType().default("
|
|
77676
|
+
_id: stringType().default("01K9W4THKJ4FAC7416E5CQXQMH"),
|
|
77649
77677
|
path: stringType(),
|
|
77650
77678
|
key: stringType(),
|
|
77651
77679
|
display_name: stringType().optional(),
|
|
@@ -77673,7 +77701,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77673
77701
|
});
|
|
77674
77702
|
});
|
|
77675
77703
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
77676
|
-
id: stringType().default("
|
|
77704
|
+
id: stringType().default("01K9W4THKJ4FAC7416E5CQXQMH"),
|
|
77677
77705
|
path: stringType(),
|
|
77678
77706
|
key: stringType(),
|
|
77679
77707
|
displayName: stringType().optional(),
|
|
@@ -77717,7 +77745,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77717
77745
|
parameters: recordType(anyType()).optional()
|
|
77718
77746
|
});
|
|
77719
77747
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
77720
|
-
_id: stringType().default("
|
|
77748
|
+
_id: stringType().default("01K9W4THKES99FQHT0W04CP8NJ"),
|
|
77721
77749
|
path: stringType(),
|
|
77722
77750
|
key: stringType(),
|
|
77723
77751
|
display_name: stringType().optional(),
|
|
@@ -77744,7 +77772,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77744
77772
|
});
|
|
77745
77773
|
});
|
|
77746
77774
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
77747
|
-
id: stringType().default("
|
|
77775
|
+
id: stringType().default("01K9W4THKES99FQHT0W04CP8NJ"),
|
|
77748
77776
|
path: stringType(),
|
|
77749
77777
|
key: stringType(),
|
|
77750
77778
|
displayName: stringType().optional(),
|
|
@@ -90100,7 +90128,7 @@ Updates a tool in the workspace.`,
|
|
|
90100
90128
|
function createMCPServer(deps) {
|
|
90101
90129
|
const server = new McpServer({
|
|
90102
90130
|
name: "Orq",
|
|
90103
|
-
version: "4.0.0-rc.
|
|
90131
|
+
version: "4.0.0-rc.26"
|
|
90104
90132
|
});
|
|
90105
90133
|
const client = new OrqCore({
|
|
90106
90134
|
apiKey: deps.apiKey,
|
|
@@ -91518,7 +91546,7 @@ var routes = rn({
|
|
|
91518
91546
|
var app = Ve(routes, {
|
|
91519
91547
|
name: "mcp",
|
|
91520
91548
|
versionInfo: {
|
|
91521
|
-
currentVersion: "4.0.0-rc.
|
|
91549
|
+
currentVersion: "4.0.0-rc.26"
|
|
91522
91550
|
}
|
|
91523
91551
|
});
|
|
91524
91552
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -91526,5 +91554,5 @@ export {
|
|
|
91526
91554
|
app
|
|
91527
91555
|
};
|
|
91528
91556
|
|
|
91529
|
-
//# debugId=
|
|
91557
|
+
//# debugId=76185A014B12035764756E2164756E21
|
|
91530
91558
|
//# sourceMappingURL=mcp-server.js.map
|