@orq-ai/node 4.0.0-rc.37 → 4.0.0-rc.39
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 +245 -249
- package/bin/mcp-server.js.map +44 -44
- 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/createagent.d.ts +0 -5
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +0 -2
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/duplicateagent.d.ts +0 -5
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +0 -2
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +11 -1
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +16 -12
- package/models/operations/duplicatetool.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.d.ts +0 -5
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +0 -2
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +0 -5
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +0 -2
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/syncmcptool.js +12 -12
- package/models/operations/updateagent.d.ts +0 -5
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +0 -2
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.d.ts +5 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +16 -14
- package/models/operations/updatetool.js.map +1 -1
- 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/createagent.ts +0 -7
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/duplicateagent.ts +0 -7
- package/src/models/operations/duplicatetool.ts +27 -13
- 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/getagent.ts +0 -7
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +0 -7
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/syncmcptool.ts +12 -12
- package/src/models/operations/updateagent.ts +0 -7
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +21 -14
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.39",
|
|
34207
34207
|
genVersion: "2.755.6",
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.39 2.755.6 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -37719,7 +37719,6 @@ var init_createagent2 = __esm(() => {
|
|
|
37719
37719
|
description: stringType().optional(),
|
|
37720
37720
|
requires_approval: booleanType().default(false),
|
|
37721
37721
|
conditions: arrayType(lazyType(() => Conditions$inboundSchema)).optional(),
|
|
37722
|
-
mcpServer: stringType().optional(),
|
|
37723
37722
|
timeout: numberType().default(120)
|
|
37724
37723
|
}).transform((v2) => {
|
|
37725
37724
|
return remap(v2, {
|
|
@@ -37736,7 +37735,6 @@ var init_createagent2 = __esm(() => {
|
|
|
37736
37735
|
description: stringType().optional(),
|
|
37737
37736
|
requiresApproval: booleanType().default(false),
|
|
37738
37737
|
conditions: arrayType(lazyType(() => Conditions$outboundSchema)).optional(),
|
|
37739
|
-
mcpServer: stringType().optional(),
|
|
37740
37738
|
timeout: numberType().default(120)
|
|
37741
37739
|
}).transform((v2) => {
|
|
37742
37740
|
return remap(v2, {
|
|
@@ -38586,7 +38584,7 @@ var init_createbudget = __esm(() => {
|
|
|
38586
38584
|
is_active: booleanType(),
|
|
38587
38585
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38588
38586
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38589
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38587
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:40.171Z").transform((v2) => new Date(v2))
|
|
38590
38588
|
}).transform((v2) => {
|
|
38591
38589
|
return remap(v2, {
|
|
38592
38590
|
_id: "id",
|
|
@@ -38604,7 +38602,7 @@ var init_createbudget = __esm(() => {
|
|
|
38604
38602
|
isActive: booleanType(),
|
|
38605
38603
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38606
38604
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38607
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38605
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:40.171Z")).transform((v2) => v2.toISOString())
|
|
38608
38606
|
}).transform((v2) => {
|
|
38609
38607
|
return remap(v2, {
|
|
38610
38608
|
id: "_id",
|
|
@@ -38744,7 +38742,7 @@ var init_createcontact = __esm(() => {
|
|
|
38744
38742
|
tags: arrayType(stringType()).optional(),
|
|
38745
38743
|
metadata: recordType(anyType()).optional(),
|
|
38746
38744
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38747
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38745
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
38748
38746
|
}).transform((v2) => {
|
|
38749
38747
|
return remap(v2, {
|
|
38750
38748
|
_id: "id",
|
|
@@ -38764,7 +38762,7 @@ var init_createcontact = __esm(() => {
|
|
|
38764
38762
|
tags: arrayType(stringType()).optional(),
|
|
38765
38763
|
metadata: recordType(anyType()).optional(),
|
|
38766
38764
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38767
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38765
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
38768
38766
|
}).transform((v2) => {
|
|
38769
38767
|
return remap(v2, {
|
|
38770
38768
|
id: "_id",
|
|
@@ -38824,7 +38822,7 @@ var init_createdataset = __esm(() => {
|
|
|
38824
38822
|
created_by_id: stringType().optional(),
|
|
38825
38823
|
updated_by_id: stringType().optional(),
|
|
38826
38824
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38827
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38825
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
38828
38826
|
}).transform((v2) => {
|
|
38829
38827
|
return remap(v2, {
|
|
38830
38828
|
_id: "id",
|
|
@@ -38844,7 +38842,7 @@ var init_createdataset = __esm(() => {
|
|
|
38844
38842
|
createdById: stringType().optional(),
|
|
38845
38843
|
updatedById: stringType().optional(),
|
|
38846
38844
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38847
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38845
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
38848
38846
|
}).transform((v2) => {
|
|
38849
38847
|
return remap(v2, {
|
|
38850
38848
|
id: "_id",
|
|
@@ -39918,7 +39916,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39918
39916
|
human_review_id: stringType(),
|
|
39919
39917
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39920
39918
|
reviewed_by_id: stringType(),
|
|
39921
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39919
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.537Z").transform((v2) => new Date(v2)),
|
|
39922
39920
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39923
39921
|
values: arrayType(stringType())
|
|
39924
39922
|
}).transform((v2) => {
|
|
@@ -39935,7 +39933,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39935
39933
|
humanReviewId: stringType(),
|
|
39936
39934
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39937
39935
|
reviewedById: stringType(),
|
|
39938
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39936
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.537Z")).transform((v2) => v2.toISOString()),
|
|
39939
39937
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39940
39938
|
values: arrayType(stringType())
|
|
39941
39939
|
}).transform((v2) => {
|
|
@@ -39958,7 +39956,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39958
39956
|
human_review_id: stringType(),
|
|
39959
39957
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39960
39958
|
reviewed_by_id: stringType(),
|
|
39961
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39959
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.536Z").transform((v2) => new Date(v2)),
|
|
39962
39960
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39963
39961
|
value: numberType()
|
|
39964
39962
|
}).transform((v2) => {
|
|
@@ -39975,7 +39973,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39975
39973
|
humanReviewId: stringType(),
|
|
39976
39974
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39977
39975
|
reviewedById: stringType(),
|
|
39978
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39976
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.536Z")).transform((v2) => v2.toISOString()),
|
|
39979
39977
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39980
39978
|
value: numberType()
|
|
39981
39979
|
}).transform((v2) => {
|
|
@@ -39998,7 +39996,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39998
39996
|
human_review_id: stringType(),
|
|
39999
39997
|
source: Source$inboundSchema.default("orq"),
|
|
40000
39998
|
reviewed_by_id: stringType(),
|
|
40001
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39999
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.536Z").transform((v2) => new Date(v2)),
|
|
40002
40000
|
type: EvaluationsType$inboundSchema,
|
|
40003
40001
|
value: stringType()
|
|
40004
40002
|
}).transform((v2) => {
|
|
@@ -40015,7 +40013,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40015
40013
|
humanReviewId: stringType(),
|
|
40016
40014
|
source: Source$outboundSchema.default("orq"),
|
|
40017
40015
|
reviewedById: stringType(),
|
|
40018
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40016
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.536Z")).transform((v2) => v2.toISOString()),
|
|
40019
40017
|
type: EvaluationsType$outboundSchema,
|
|
40020
40018
|
value: stringType()
|
|
40021
40019
|
}).transform((v2) => {
|
|
@@ -40058,7 +40056,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40058
40056
|
created_by_id: stringType().optional(),
|
|
40059
40057
|
updated_by_id: stringType().optional(),
|
|
40060
40058
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40061
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
40059
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
40062
40060
|
}).transform((v2) => {
|
|
40063
40061
|
return remap(v2, {
|
|
40064
40062
|
_id: "id",
|
|
@@ -40092,7 +40090,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40092
40090
|
createdById: stringType().optional(),
|
|
40093
40091
|
updatedById: stringType().optional(),
|
|
40094
40092
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40095
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40093
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
40096
40094
|
}).transform((v2) => {
|
|
40097
40095
|
return remap(v2, {
|
|
40098
40096
|
id: "_id",
|
|
@@ -40271,7 +40269,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40271
40269
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40272
40270
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40273
40271
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40274
|
-
_id: stringType().default("
|
|
40272
|
+
_id: stringType().default("01KA8HBDCP677XTRXMWWMWX256"),
|
|
40275
40273
|
display_name: stringType(),
|
|
40276
40274
|
description: stringType().optional(),
|
|
40277
40275
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40294,7 +40292,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40294
40292
|
});
|
|
40295
40293
|
});
|
|
40296
40294
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40297
|
-
id: stringType().default("
|
|
40295
|
+
id: stringType().default("01KA8HBDCP677XTRXMWWMWX256"),
|
|
40298
40296
|
displayName: stringType(),
|
|
40299
40297
|
description: stringType().optional(),
|
|
40300
40298
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -41015,8 +41013,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41015
41013
|
Typescript$inboundSchema = objectType({
|
|
41016
41014
|
_id: stringType(),
|
|
41017
41015
|
description: stringType(),
|
|
41018
|
-
created: stringType().default("2025-11-
|
|
41019
|
-
updated: stringType().default("2025-11-
|
|
41016
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41017
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41020
41018
|
guardrail_config: unionType([
|
|
41021
41019
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
41022
41020
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -41033,8 +41031,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41033
41031
|
Typescript$outboundSchema = objectType({
|
|
41034
41032
|
id: stringType(),
|
|
41035
41033
|
description: stringType(),
|
|
41036
|
-
created: stringType().default("2025-11-
|
|
41037
|
-
updated: stringType().default("2025-11-
|
|
41034
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41035
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41038
41036
|
guardrailConfig: unionType([
|
|
41039
41037
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
41040
41038
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -41091,8 +41089,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41091
41089
|
Ragas$inboundSchema = objectType({
|
|
41092
41090
|
_id: stringType(),
|
|
41093
41091
|
description: stringType(),
|
|
41094
|
-
created: stringType().default("2025-11-
|
|
41095
|
-
updated: stringType().default("2025-11-
|
|
41092
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41093
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41096
41094
|
guardrail_config: unionType([
|
|
41097
41095
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
41098
41096
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -41111,8 +41109,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41111
41109
|
Ragas$outboundSchema = objectType({
|
|
41112
41110
|
id: stringType(),
|
|
41113
41111
|
description: stringType(),
|
|
41114
|
-
created: stringType().default("2025-11-
|
|
41115
|
-
updated: stringType().default("2025-11-
|
|
41112
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41113
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41116
41114
|
guardrailConfig: unionType([
|
|
41117
41115
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
41118
41116
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41549,8 +41547,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41549
41547
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41550
41548
|
_id: stringType(),
|
|
41551
41549
|
description: stringType(),
|
|
41552
|
-
created: stringType().default("2025-11-
|
|
41553
|
-
updated: stringType().default("2025-11-
|
|
41550
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41551
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41554
41552
|
guardrail_config: unionType([
|
|
41555
41553
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41556
41554
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41604,8 +41602,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41604
41602
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41605
41603
|
id: stringType(),
|
|
41606
41604
|
description: stringType(),
|
|
41607
|
-
created: stringType().default("2025-11-
|
|
41608
|
-
updated: stringType().default("2025-11-
|
|
41605
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41606
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41609
41607
|
guardrailConfig: unionType([
|
|
41610
41608
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41611
41609
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41697,8 +41695,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41697
41695
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41698
41696
|
_id: stringType(),
|
|
41699
41697
|
description: stringType(),
|
|
41700
|
-
created: stringType().default("2025-11-
|
|
41701
|
-
updated: stringType().default("2025-11-
|
|
41698
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41699
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41702
41700
|
guardrail_config: unionType([
|
|
41703
41701
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41704
41702
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41715,8 +41713,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41715
41713
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41716
41714
|
id: stringType(),
|
|
41717
41715
|
description: stringType(),
|
|
41718
|
-
created: stringType().default("2025-11-
|
|
41719
|
-
updated: stringType().default("2025-11-
|
|
41716
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41717
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41720
41718
|
guardrailConfig: unionType([
|
|
41721
41719
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41722
41720
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41773,8 +41771,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41773
41771
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41774
41772
|
_id: stringType(),
|
|
41775
41773
|
description: stringType(),
|
|
41776
|
-
created: stringType().default("2025-11-
|
|
41777
|
-
updated: stringType().default("2025-11-
|
|
41774
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41775
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41778
41776
|
guardrail_config: unionType([
|
|
41779
41777
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41780
41778
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41794,8 +41792,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41794
41792
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41795
41793
|
id: stringType(),
|
|
41796
41794
|
description: stringType(),
|
|
41797
|
-
created: stringType().default("2025-11-
|
|
41798
|
-
updated: stringType().default("2025-11-
|
|
41795
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41796
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41799
41797
|
guardrailConfig: unionType([
|
|
41800
41798
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41801
41799
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41853,8 +41851,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41853
41851
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41854
41852
|
_id: stringType(),
|
|
41855
41853
|
description: stringType(),
|
|
41856
|
-
created: stringType().default("2025-11-
|
|
41857
|
-
updated: stringType().default("2025-11-
|
|
41854
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41855
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41858
41856
|
guardrail_config: unionType([
|
|
41859
41857
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41860
41858
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41871,8 +41869,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41871
41869
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41872
41870
|
id: stringType(),
|
|
41873
41871
|
description: stringType(),
|
|
41874
|
-
created: stringType().default("2025-11-
|
|
41875
|
-
updated: stringType().default("2025-11-
|
|
41872
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41873
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41876
41874
|
guardrailConfig: unionType([
|
|
41877
41875
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41878
41876
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41927,8 +41925,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41927
41925
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41928
41926
|
_id: stringType(),
|
|
41929
41927
|
description: stringType(),
|
|
41930
|
-
created: stringType().default("2025-11-
|
|
41931
|
-
updated: stringType().default("2025-11-
|
|
41928
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41929
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41932
41930
|
guardrail_config: unionType([
|
|
41933
41931
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41934
41932
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41946,8 +41944,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41946
41944
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41947
41945
|
id: stringType(),
|
|
41948
41946
|
description: stringType(),
|
|
41949
|
-
created: stringType().default("2025-11-
|
|
41950
|
-
updated: stringType().default("2025-11-
|
|
41947
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41948
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
41951
41949
|
guardrailConfig: unionType([
|
|
41952
41950
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41953
41951
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -45228,7 +45226,7 @@ var init_createtool = __esm(() => {
|
|
|
45228
45226
|
code: stringType()
|
|
45229
45227
|
});
|
|
45230
45228
|
ResponseBody5$inboundSchema = objectType({
|
|
45231
|
-
_id: stringType().default("
|
|
45229
|
+
_id: stringType().default("tool_01KA8HBD7VJV0G4W8D4Z1ZPCWG"),
|
|
45232
45230
|
path: stringType(),
|
|
45233
45231
|
key: stringType(),
|
|
45234
45232
|
display_name: stringType().optional(),
|
|
@@ -45256,7 +45254,7 @@ var init_createtool = __esm(() => {
|
|
|
45256
45254
|
});
|
|
45257
45255
|
});
|
|
45258
45256
|
ResponseBody5$outboundSchema = objectType({
|
|
45259
|
-
id: stringType().default("
|
|
45257
|
+
id: stringType().default("tool_01KA8HBD7VJV0G4W8D4Z1ZPCWG"),
|
|
45260
45258
|
path: stringType(),
|
|
45261
45259
|
key: stringType(),
|
|
45262
45260
|
displayName: stringType().optional(),
|
|
@@ -45308,13 +45306,13 @@ var init_createtool = __esm(() => {
|
|
|
45308
45306
|
required: arrayType(stringType()).optional()
|
|
45309
45307
|
});
|
|
45310
45308
|
ResponseBodyTools$inboundSchema = objectType({
|
|
45311
|
-
id: stringType().default("
|
|
45309
|
+
id: stringType().default("01KA8HBD7R3209AH8MYHK750DG"),
|
|
45312
45310
|
name: stringType(),
|
|
45313
45311
|
description: stringType().optional(),
|
|
45314
45312
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
45315
45313
|
});
|
|
45316
45314
|
ResponseBodyTools$outboundSchema = objectType({
|
|
45317
|
-
id: stringType().default("
|
|
45315
|
+
id: stringType().default("01KA8HBD7R3209AH8MYHK750DG"),
|
|
45318
45316
|
name: stringType(),
|
|
45319
45317
|
description: stringType().optional(),
|
|
45320
45318
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -45344,7 +45342,7 @@ var init_createtool = __esm(() => {
|
|
|
45344
45342
|
});
|
|
45345
45343
|
});
|
|
45346
45344
|
ResponseBody4$inboundSchema = objectType({
|
|
45347
|
-
_id: stringType().default("
|
|
45345
|
+
_id: stringType().default("tool_01KA8HBD7PSF1SCKPWCK9V6WTV"),
|
|
45348
45346
|
path: stringType(),
|
|
45349
45347
|
key: stringType(),
|
|
45350
45348
|
display_name: stringType().optional(),
|
|
@@ -45371,7 +45369,7 @@ var init_createtool = __esm(() => {
|
|
|
45371
45369
|
});
|
|
45372
45370
|
});
|
|
45373
45371
|
ResponseBody4$outboundSchema = objectType({
|
|
45374
|
-
id: stringType().default("
|
|
45372
|
+
id: stringType().default("tool_01KA8HBD7PSF1SCKPWCK9V6WTV"),
|
|
45375
45373
|
path: stringType(),
|
|
45376
45374
|
key: stringType(),
|
|
45377
45375
|
displayName: stringType().optional(),
|
|
@@ -45460,7 +45458,7 @@ var init_createtool = __esm(() => {
|
|
|
45460
45458
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45461
45459
|
});
|
|
45462
45460
|
ResponseBody3$inboundSchema = objectType({
|
|
45463
|
-
_id: stringType().default("
|
|
45461
|
+
_id: stringType().default("tool_01KA8HBD7KB75J1VD15M8Q0YGD"),
|
|
45464
45462
|
path: stringType(),
|
|
45465
45463
|
key: stringType(),
|
|
45466
45464
|
display_name: stringType().optional(),
|
|
@@ -45487,7 +45485,7 @@ var init_createtool = __esm(() => {
|
|
|
45487
45485
|
});
|
|
45488
45486
|
});
|
|
45489
45487
|
ResponseBody3$outboundSchema = objectType({
|
|
45490
|
-
id: stringType().default("
|
|
45488
|
+
id: stringType().default("tool_01KA8HBD7KB75J1VD15M8Q0YGD"),
|
|
45491
45489
|
path: stringType(),
|
|
45492
45490
|
key: stringType(),
|
|
45493
45491
|
displayName: stringType().optional(),
|
|
@@ -45548,7 +45546,7 @@ var init_createtool = __esm(() => {
|
|
|
45548
45546
|
strict: booleanType().optional()
|
|
45549
45547
|
});
|
|
45550
45548
|
ResponseBody2$inboundSchema = objectType({
|
|
45551
|
-
_id: stringType().default("
|
|
45549
|
+
_id: stringType().default("tool_01KA8HBD7HRJQV1NRKR8NQA757"),
|
|
45552
45550
|
path: stringType(),
|
|
45553
45551
|
key: stringType(),
|
|
45554
45552
|
display_name: stringType().optional(),
|
|
@@ -45576,7 +45574,7 @@ var init_createtool = __esm(() => {
|
|
|
45576
45574
|
});
|
|
45577
45575
|
});
|
|
45578
45576
|
ResponseBody2$outboundSchema = objectType({
|
|
45579
|
-
id: stringType().default("
|
|
45577
|
+
id: stringType().default("tool_01KA8HBD7HRJQV1NRKR8NQA757"),
|
|
45580
45578
|
path: stringType(),
|
|
45581
45579
|
key: stringType(),
|
|
45582
45580
|
displayName: stringType().optional(),
|
|
@@ -45640,7 +45638,7 @@ var init_createtool = __esm(() => {
|
|
|
45640
45638
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
45641
45639
|
});
|
|
45642
45640
|
ResponseBody1$inboundSchema = objectType({
|
|
45643
|
-
_id: stringType().default("
|
|
45641
|
+
_id: stringType().default("tool_01KA8HBD7FWGVSPR1ED9G283ZF"),
|
|
45644
45642
|
path: stringType(),
|
|
45645
45643
|
key: stringType(),
|
|
45646
45644
|
display_name: stringType().optional(),
|
|
@@ -45667,7 +45665,7 @@ var init_createtool = __esm(() => {
|
|
|
45667
45665
|
});
|
|
45668
45666
|
});
|
|
45669
45667
|
ResponseBody1$outboundSchema = objectType({
|
|
45670
|
-
id: stringType().default("
|
|
45668
|
+
id: stringType().default("tool_01KA8HBD7FWGVSPR1ED9G283ZF"),
|
|
45671
45669
|
path: stringType(),
|
|
45672
45670
|
key: stringType(),
|
|
45673
45671
|
displayName: stringType().optional(),
|
|
@@ -51810,7 +51808,6 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51810
51808
|
description: stringType().optional(),
|
|
51811
51809
|
requires_approval: booleanType().default(false),
|
|
51812
51810
|
conditions: arrayType(lazyType(() => DuplicateAgentConditions$inboundSchema)).optional(),
|
|
51813
|
-
mcpServer: stringType().optional(),
|
|
51814
51811
|
timeout: numberType().default(120)
|
|
51815
51812
|
}).transform((v2) => {
|
|
51816
51813
|
return remap(v2, {
|
|
@@ -51827,7 +51824,6 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51827
51824
|
description: stringType().optional(),
|
|
51828
51825
|
requiresApproval: booleanType().default(false),
|
|
51829
51826
|
conditions: arrayType(lazyType(() => DuplicateAgentConditions$outboundSchema)).optional(),
|
|
51830
|
-
mcpServer: stringType().optional(),
|
|
51831
51827
|
timeout: numberType().default(120)
|
|
51832
51828
|
}).transform((v2) => {
|
|
51833
51829
|
return remap(v2, {
|
|
@@ -52601,14 +52597,18 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52601
52597
|
Object: "object"
|
|
52602
52598
|
};
|
|
52603
52599
|
DuplicateToolRequestBody$inboundSchema = objectType({
|
|
52604
|
-
|
|
52600
|
+
key: stringType(),
|
|
52601
|
+
display_name: stringType().optional(),
|
|
52602
|
+
description: stringType()
|
|
52605
52603
|
}).transform((v2) => {
|
|
52606
52604
|
return remap(v2, {
|
|
52607
52605
|
display_name: "displayName"
|
|
52608
52606
|
});
|
|
52609
52607
|
});
|
|
52610
52608
|
DuplicateToolRequestBody$outboundSchema = objectType({
|
|
52611
|
-
|
|
52609
|
+
key: stringType(),
|
|
52610
|
+
displayName: stringType().optional(),
|
|
52611
|
+
description: stringType()
|
|
52612
52612
|
}).transform((v2) => {
|
|
52613
52613
|
return remap(v2, {
|
|
52614
52614
|
displayName: "display_name"
|
|
@@ -52669,7 +52669,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52669
52669
|
code: stringType()
|
|
52670
52670
|
});
|
|
52671
52671
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52672
|
-
_id: stringType().default("
|
|
52672
|
+
_id: stringType().default("tool_01KA8HBD909ANYQSGXTQ21GJRS"),
|
|
52673
52673
|
path: stringType(),
|
|
52674
52674
|
key: stringType(),
|
|
52675
52675
|
display_name: stringType().optional(),
|
|
@@ -52697,7 +52697,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52697
52697
|
});
|
|
52698
52698
|
});
|
|
52699
52699
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52700
|
-
id: stringType().default("
|
|
52700
|
+
id: stringType().default("tool_01KA8HBD909ANYQSGXTQ21GJRS"),
|
|
52701
52701
|
path: stringType(),
|
|
52702
52702
|
key: stringType(),
|
|
52703
52703
|
displayName: stringType().optional(),
|
|
@@ -52749,13 +52749,13 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52749
52749
|
required: arrayType(stringType()).optional()
|
|
52750
52750
|
});
|
|
52751
52751
|
DuplicateToolResponseBodyTools$inboundSchema = objectType({
|
|
52752
|
-
id: stringType().default("
|
|
52752
|
+
id: stringType().default("01KA8HBD9019SC3WP9MNE8YSWX"),
|
|
52753
52753
|
name: stringType(),
|
|
52754
52754
|
description: stringType().optional(),
|
|
52755
52755
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$inboundSchema)
|
|
52756
52756
|
});
|
|
52757
52757
|
DuplicateToolResponseBodyTools$outboundSchema = objectType({
|
|
52758
|
-
id: stringType().default("
|
|
52758
|
+
id: stringType().default("01KA8HBD9019SC3WP9MNE8YSWX"),
|
|
52759
52759
|
name: stringType(),
|
|
52760
52760
|
description: stringType().optional(),
|
|
52761
52761
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -52785,7 +52785,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52785
52785
|
});
|
|
52786
52786
|
});
|
|
52787
52787
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52788
|
-
_id: stringType().default("
|
|
52788
|
+
_id: stringType().default("tool_01KA8HBD8ZJBR402A36GXF2Y1K"),
|
|
52789
52789
|
path: stringType(),
|
|
52790
52790
|
key: stringType(),
|
|
52791
52791
|
display_name: stringType().optional(),
|
|
@@ -52812,7 +52812,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52812
52812
|
});
|
|
52813
52813
|
});
|
|
52814
52814
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52815
|
-
id: stringType().default("
|
|
52815
|
+
id: stringType().default("tool_01KA8HBD8ZJBR402A36GXF2Y1K"),
|
|
52816
52816
|
path: stringType(),
|
|
52817
52817
|
key: stringType(),
|
|
52818
52818
|
displayName: stringType().optional(),
|
|
@@ -52901,7 +52901,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52901
52901
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52902
52902
|
});
|
|
52903
52903
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52904
|
-
_id: stringType().default("
|
|
52904
|
+
_id: stringType().default("tool_01KA8HBD8XSVXAM5PDKSKFDTT9"),
|
|
52905
52905
|
path: stringType(),
|
|
52906
52906
|
key: stringType(),
|
|
52907
52907
|
display_name: stringType().optional(),
|
|
@@ -52928,7 +52928,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52928
52928
|
});
|
|
52929
52929
|
});
|
|
52930
52930
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52931
|
-
id: stringType().default("
|
|
52931
|
+
id: stringType().default("tool_01KA8HBD8XSVXAM5PDKSKFDTT9"),
|
|
52932
52932
|
path: stringType(),
|
|
52933
52933
|
key: stringType(),
|
|
52934
52934
|
displayName: stringType().optional(),
|
|
@@ -52989,7 +52989,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52989
52989
|
strict: booleanType().optional()
|
|
52990
52990
|
});
|
|
52991
52991
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52992
|
-
_id: stringType().default("
|
|
52992
|
+
_id: stringType().default("tool_01KA8HBD8WRP0MJQ84Z62ANS92"),
|
|
52993
52993
|
path: stringType(),
|
|
52994
52994
|
key: stringType(),
|
|
52995
52995
|
display_name: stringType().optional(),
|
|
@@ -53017,7 +53017,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53017
53017
|
});
|
|
53018
53018
|
});
|
|
53019
53019
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
53020
|
-
id: stringType().default("
|
|
53020
|
+
id: stringType().default("tool_01KA8HBD8WRP0MJQ84Z62ANS92"),
|
|
53021
53021
|
path: stringType(),
|
|
53022
53022
|
key: stringType(),
|
|
53023
53023
|
displayName: stringType().optional(),
|
|
@@ -53081,7 +53081,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53081
53081
|
parameters: lazyType(() => DuplicateToolResponseBodyParameters$outboundSchema).optional()
|
|
53082
53082
|
});
|
|
53083
53083
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
53084
|
-
_id: stringType().default("
|
|
53084
|
+
_id: stringType().default("tool_01KA8HBD8TRS52AYEBB5D6NN6W"),
|
|
53085
53085
|
path: stringType(),
|
|
53086
53086
|
key: stringType(),
|
|
53087
53087
|
display_name: stringType().optional(),
|
|
@@ -53108,7 +53108,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53108
53108
|
});
|
|
53109
53109
|
});
|
|
53110
53110
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
53111
|
-
id: stringType().default("
|
|
53111
|
+
id: stringType().default("tool_01KA8HBD8TRS52AYEBB5D6NN6W"),
|
|
53112
53112
|
path: stringType(),
|
|
53113
53113
|
key: stringType(),
|
|
53114
53114
|
displayName: stringType().optional(),
|
|
@@ -53204,7 +53204,7 @@ var init_fileget = __esm(() => {
|
|
|
53204
53204
|
bytes: numberType(),
|
|
53205
53205
|
file_name: stringType(),
|
|
53206
53206
|
workspace_id: stringType(),
|
|
53207
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53207
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T09:11:42.760Z").transform((v2) => new Date(v2))
|
|
53208
53208
|
}).transform((v2) => {
|
|
53209
53209
|
return remap(v2, {
|
|
53210
53210
|
_id: "id",
|
|
@@ -53220,7 +53220,7 @@ var init_fileget = __esm(() => {
|
|
|
53220
53220
|
bytes: numberType(),
|
|
53221
53221
|
fileName: stringType(),
|
|
53222
53222
|
workspaceId: stringType(),
|
|
53223
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53223
|
+
created: dateType().default(() => new Date("2025-11-17T09:11:42.760Z")).transform((v2) => v2.toISOString())
|
|
53224
53224
|
}).transform((v2) => {
|
|
53225
53225
|
return remap(v2, {
|
|
53226
53226
|
id: "_id",
|
|
@@ -53275,7 +53275,7 @@ var init_filelist = __esm(() => {
|
|
|
53275
53275
|
bytes: numberType(),
|
|
53276
53276
|
file_name: stringType(),
|
|
53277
53277
|
workspace_id: stringType(),
|
|
53278
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53278
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T09:11:42.760Z").transform((v2) => new Date(v2))
|
|
53279
53279
|
}).transform((v2) => {
|
|
53280
53280
|
return remap(v2, {
|
|
53281
53281
|
_id: "id",
|
|
@@ -53291,7 +53291,7 @@ var init_filelist = __esm(() => {
|
|
|
53291
53291
|
bytes: numberType(),
|
|
53292
53292
|
fileName: stringType(),
|
|
53293
53293
|
workspaceId: stringType(),
|
|
53294
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53294
|
+
created: dateType().default(() => new Date("2025-11-17T09:11:42.760Z")).transform((v2) => v2.toISOString())
|
|
53295
53295
|
}).transform((v2) => {
|
|
53296
53296
|
return remap(v2, {
|
|
53297
53297
|
id: "_id",
|
|
@@ -53399,7 +53399,7 @@ var init_fileupload = __esm(() => {
|
|
|
53399
53399
|
bytes: numberType(),
|
|
53400
53400
|
file_name: stringType(),
|
|
53401
53401
|
workspace_id: stringType(),
|
|
53402
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53402
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T09:11:42.760Z").transform((v2) => new Date(v2))
|
|
53403
53403
|
}).transform((v2) => {
|
|
53404
53404
|
return remap(v2, {
|
|
53405
53405
|
_id: "id",
|
|
@@ -53415,7 +53415,7 @@ var init_fileupload = __esm(() => {
|
|
|
53415
53415
|
bytes: numberType(),
|
|
53416
53416
|
fileName: stringType(),
|
|
53417
53417
|
workspaceId: stringType(),
|
|
53418
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53418
|
+
created: dateType().default(() => new Date("2025-11-17T09:11:42.760Z")).transform((v2) => v2.toISOString())
|
|
53419
53419
|
}).transform((v2) => {
|
|
53420
53420
|
return remap(v2, {
|
|
53421
53421
|
id: "_id",
|
|
@@ -53566,7 +53566,6 @@ var init_getagent2 = __esm(() => {
|
|
|
53566
53566
|
description: stringType().optional(),
|
|
53567
53567
|
requires_approval: booleanType().default(false),
|
|
53568
53568
|
conditions: arrayType(lazyType(() => GetAgentConditions$inboundSchema)).optional(),
|
|
53569
|
-
mcpServer: stringType().optional(),
|
|
53570
53569
|
timeout: numberType().default(120)
|
|
53571
53570
|
}).transform((v2) => {
|
|
53572
53571
|
return remap(v2, {
|
|
@@ -53583,7 +53582,6 @@ var init_getagent2 = __esm(() => {
|
|
|
53583
53582
|
description: stringType().optional(),
|
|
53584
53583
|
requiresApproval: booleanType().default(false),
|
|
53585
53584
|
conditions: arrayType(lazyType(() => GetAgentConditions$outboundSchema)).optional(),
|
|
53586
|
-
mcpServer: stringType().optional(),
|
|
53587
53585
|
timeout: numberType().default(120)
|
|
53588
53586
|
}).transform((v2) => {
|
|
53589
53587
|
return remap(v2, {
|
|
@@ -55787,7 +55785,7 @@ var init_getalltools = __esm(() => {
|
|
|
55787
55785
|
code: stringType()
|
|
55788
55786
|
});
|
|
55789
55787
|
Data5$inboundSchema = objectType({
|
|
55790
|
-
_id: stringType().default("
|
|
55788
|
+
_id: stringType().default("tool_01KA8HBD70KGK5T22T26H2Y3Z5"),
|
|
55791
55789
|
path: stringType(),
|
|
55792
55790
|
key: stringType(),
|
|
55793
55791
|
display_name: stringType().optional(),
|
|
@@ -55815,7 +55813,7 @@ var init_getalltools = __esm(() => {
|
|
|
55815
55813
|
});
|
|
55816
55814
|
});
|
|
55817
55815
|
Data5$outboundSchema = objectType({
|
|
55818
|
-
id: stringType().default("
|
|
55816
|
+
id: stringType().default("tool_01KA8HBD70KGK5T22T26H2Y3Z5"),
|
|
55819
55817
|
path: stringType(),
|
|
55820
55818
|
key: stringType(),
|
|
55821
55819
|
displayName: stringType().optional(),
|
|
@@ -55867,13 +55865,13 @@ var init_getalltools = __esm(() => {
|
|
|
55867
55865
|
required: arrayType(stringType()).optional()
|
|
55868
55866
|
});
|
|
55869
55867
|
DataTools$inboundSchema = objectType({
|
|
55870
|
-
id: stringType().default("
|
|
55868
|
+
id: stringType().default("01KA8HBD6ZPXZ8HQCM2ZTQ09FA"),
|
|
55871
55869
|
name: stringType(),
|
|
55872
55870
|
description: stringType().optional(),
|
|
55873
55871
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55874
55872
|
});
|
|
55875
55873
|
DataTools$outboundSchema = objectType({
|
|
55876
|
-
id: stringType().default("
|
|
55874
|
+
id: stringType().default("01KA8HBD6ZPXZ8HQCM2ZTQ09FA"),
|
|
55877
55875
|
name: stringType(),
|
|
55878
55876
|
description: stringType().optional(),
|
|
55879
55877
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55903,7 +55901,7 @@ var init_getalltools = __esm(() => {
|
|
|
55903
55901
|
});
|
|
55904
55902
|
});
|
|
55905
55903
|
Data4$inboundSchema = objectType({
|
|
55906
|
-
_id: stringType().default("
|
|
55904
|
+
_id: stringType().default("tool_01KA8HBD6XVPS8QD24QVGM3PCB"),
|
|
55907
55905
|
path: stringType(),
|
|
55908
55906
|
key: stringType(),
|
|
55909
55907
|
display_name: stringType().optional(),
|
|
@@ -55930,7 +55928,7 @@ var init_getalltools = __esm(() => {
|
|
|
55930
55928
|
});
|
|
55931
55929
|
});
|
|
55932
55930
|
Data4$outboundSchema = objectType({
|
|
55933
|
-
id: stringType().default("
|
|
55931
|
+
id: stringType().default("tool_01KA8HBD6XVPS8QD24QVGM3PCB"),
|
|
55934
55932
|
path: stringType(),
|
|
55935
55933
|
key: stringType(),
|
|
55936
55934
|
displayName: stringType().optional(),
|
|
@@ -56019,7 +56017,7 @@ var init_getalltools = __esm(() => {
|
|
|
56019
56017
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
56020
56018
|
});
|
|
56021
56019
|
Data3$inboundSchema = objectType({
|
|
56022
|
-
_id: stringType().default("
|
|
56020
|
+
_id: stringType().default("tool_01KA8HBD6TKC087TH4BDDDR0FM"),
|
|
56023
56021
|
path: stringType(),
|
|
56024
56022
|
key: stringType(),
|
|
56025
56023
|
display_name: stringType().optional(),
|
|
@@ -56046,7 +56044,7 @@ var init_getalltools = __esm(() => {
|
|
|
56046
56044
|
});
|
|
56047
56045
|
});
|
|
56048
56046
|
Data3$outboundSchema = objectType({
|
|
56049
|
-
id: stringType().default("
|
|
56047
|
+
id: stringType().default("tool_01KA8HBD6TKC087TH4BDDDR0FM"),
|
|
56050
56048
|
path: stringType(),
|
|
56051
56049
|
key: stringType(),
|
|
56052
56050
|
displayName: stringType().optional(),
|
|
@@ -56107,7 +56105,7 @@ var init_getalltools = __esm(() => {
|
|
|
56107
56105
|
strict: booleanType().optional()
|
|
56108
56106
|
});
|
|
56109
56107
|
Data2$inboundSchema = objectType({
|
|
56110
|
-
_id: stringType().default("
|
|
56108
|
+
_id: stringType().default("tool_01KA8HBD6S09VJ37T3Z7FZGDGY"),
|
|
56111
56109
|
path: stringType(),
|
|
56112
56110
|
key: stringType(),
|
|
56113
56111
|
display_name: stringType().optional(),
|
|
@@ -56135,7 +56133,7 @@ var init_getalltools = __esm(() => {
|
|
|
56135
56133
|
});
|
|
56136
56134
|
});
|
|
56137
56135
|
Data2$outboundSchema = objectType({
|
|
56138
|
-
id: stringType().default("
|
|
56136
|
+
id: stringType().default("tool_01KA8HBD6S09VJ37T3Z7FZGDGY"),
|
|
56139
56137
|
path: stringType(),
|
|
56140
56138
|
key: stringType(),
|
|
56141
56139
|
displayName: stringType().optional(),
|
|
@@ -56199,7 +56197,7 @@ var init_getalltools = __esm(() => {
|
|
|
56199
56197
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
56200
56198
|
});
|
|
56201
56199
|
Data1$inboundSchema = objectType({
|
|
56202
|
-
_id: stringType().default("
|
|
56200
|
+
_id: stringType().default("tool_01KA8HBD6QTZAPF8ENW1KRCBCK"),
|
|
56203
56201
|
path: stringType(),
|
|
56204
56202
|
key: stringType(),
|
|
56205
56203
|
display_name: stringType().optional(),
|
|
@@ -56226,7 +56224,7 @@ var init_getalltools = __esm(() => {
|
|
|
56226
56224
|
});
|
|
56227
56225
|
});
|
|
56228
56226
|
Data1$outboundSchema = objectType({
|
|
56229
|
-
id: stringType().default("
|
|
56227
|
+
id: stringType().default("tool_01KA8HBD6QTZAPF8ENW1KRCBCK"),
|
|
56230
56228
|
path: stringType(),
|
|
56231
56229
|
key: stringType(),
|
|
56232
56230
|
displayName: stringType().optional(),
|
|
@@ -56368,7 +56366,7 @@ var init_getbudget = __esm(() => {
|
|
|
56368
56366
|
is_active: booleanType(),
|
|
56369
56367
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
56370
56368
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56371
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
56369
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:40.171Z").transform((v2) => new Date(v2))
|
|
56372
56370
|
}).transform((v2) => {
|
|
56373
56371
|
return remap(v2, {
|
|
56374
56372
|
_id: "id",
|
|
@@ -56386,7 +56384,7 @@ var init_getbudget = __esm(() => {
|
|
|
56386
56384
|
isActive: booleanType(),
|
|
56387
56385
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
56388
56386
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56389
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
56387
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:40.171Z")).transform((v2) => v2.toISOString())
|
|
56390
56388
|
}).transform((v2) => {
|
|
56391
56389
|
return remap(v2, {
|
|
56392
56390
|
id: "_id",
|
|
@@ -56755,8 +56753,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56755
56753
|
DataTypescript$inboundSchema = objectType({
|
|
56756
56754
|
_id: stringType(),
|
|
56757
56755
|
description: stringType(),
|
|
56758
|
-
created: stringType().default("2025-11-
|
|
56759
|
-
updated: stringType().default("2025-11-
|
|
56756
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56757
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56760
56758
|
guardrail_config: unionType([
|
|
56761
56759
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56762
56760
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56773,8 +56771,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56773
56771
|
DataTypescript$outboundSchema = objectType({
|
|
56774
56772
|
id: stringType(),
|
|
56775
56773
|
description: stringType(),
|
|
56776
|
-
created: stringType().default("2025-11-
|
|
56777
|
-
updated: stringType().default("2025-11-
|
|
56774
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56775
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56778
56776
|
guardrailConfig: unionType([
|
|
56779
56777
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56780
56778
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56831,8 +56829,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56831
56829
|
DataRagas$inboundSchema = objectType({
|
|
56832
56830
|
_id: stringType(),
|
|
56833
56831
|
description: stringType(),
|
|
56834
|
-
created: stringType().default("2025-11-
|
|
56835
|
-
updated: stringType().default("2025-11-
|
|
56832
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56833
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56836
56834
|
guardrail_config: unionType([
|
|
56837
56835
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56838
56836
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56851,8 +56849,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56851
56849
|
DataRagas$outboundSchema = objectType({
|
|
56852
56850
|
id: stringType(),
|
|
56853
56851
|
description: stringType(),
|
|
56854
|
-
created: stringType().default("2025-11-
|
|
56855
|
-
updated: stringType().default("2025-11-
|
|
56852
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56853
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
56856
56854
|
guardrailConfig: unionType([
|
|
56857
56855
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56858
56856
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -57289,8 +57287,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57289
57287
|
DataFunction$inboundSchema = objectType({
|
|
57290
57288
|
_id: stringType(),
|
|
57291
57289
|
description: stringType(),
|
|
57292
|
-
created: stringType().default("2025-11-
|
|
57293
|
-
updated: stringType().default("2025-11-
|
|
57290
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57291
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57294
57292
|
guardrail_config: unionType([
|
|
57295
57293
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
57296
57294
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -57344,8 +57342,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57344
57342
|
DataFunction$outboundSchema = objectType({
|
|
57345
57343
|
id: stringType(),
|
|
57346
57344
|
description: stringType(),
|
|
57347
|
-
created: stringType().default("2025-11-
|
|
57348
|
-
updated: stringType().default("2025-11-
|
|
57345
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57346
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57349
57347
|
guardrailConfig: unionType([
|
|
57350
57348
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
57351
57349
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -57437,8 +57435,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57437
57435
|
DataPython$inboundSchema = objectType({
|
|
57438
57436
|
_id: stringType(),
|
|
57439
57437
|
description: stringType(),
|
|
57440
|
-
created: stringType().default("2025-11-
|
|
57441
|
-
updated: stringType().default("2025-11-
|
|
57438
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57439
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57442
57440
|
guardrail_config: unionType([
|
|
57443
57441
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
57444
57442
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -57455,8 +57453,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57455
57453
|
DataPython$outboundSchema = objectType({
|
|
57456
57454
|
id: stringType(),
|
|
57457
57455
|
description: stringType(),
|
|
57458
|
-
created: stringType().default("2025-11-
|
|
57459
|
-
updated: stringType().default("2025-11-
|
|
57456
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57457
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57460
57458
|
guardrailConfig: unionType([
|
|
57461
57459
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
57462
57460
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -57513,8 +57511,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57513
57511
|
DataHTTP$inboundSchema = objectType({
|
|
57514
57512
|
_id: stringType(),
|
|
57515
57513
|
description: stringType(),
|
|
57516
|
-
created: stringType().default("2025-11-
|
|
57517
|
-
updated: stringType().default("2025-11-
|
|
57514
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57515
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57518
57516
|
guardrail_config: unionType([
|
|
57519
57517
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
57520
57518
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -57534,8 +57532,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57534
57532
|
DataHTTP$outboundSchema = objectType({
|
|
57535
57533
|
id: stringType(),
|
|
57536
57534
|
description: stringType(),
|
|
57537
|
-
created: stringType().default("2025-11-
|
|
57538
|
-
updated: stringType().default("2025-11-
|
|
57535
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57536
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57539
57537
|
guardrailConfig: unionType([
|
|
57540
57538
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
57541
57539
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57593,8 +57591,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57593
57591
|
DataJSON$inboundSchema = objectType({
|
|
57594
57592
|
_id: stringType(),
|
|
57595
57593
|
description: stringType(),
|
|
57596
|
-
created: stringType().default("2025-11-
|
|
57597
|
-
updated: stringType().default("2025-11-
|
|
57594
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57595
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57598
57596
|
guardrail_config: unionType([
|
|
57599
57597
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57600
57598
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57611,8 +57609,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57611
57609
|
DataJSON$outboundSchema = objectType({
|
|
57612
57610
|
id: stringType(),
|
|
57613
57611
|
description: stringType(),
|
|
57614
|
-
created: stringType().default("2025-11-
|
|
57615
|
-
updated: stringType().default("2025-11-
|
|
57612
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57613
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57616
57614
|
guardrailConfig: unionType([
|
|
57617
57615
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57618
57616
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57667,8 +57665,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57667
57665
|
DataLLM$inboundSchema = objectType({
|
|
57668
57666
|
_id: stringType(),
|
|
57669
57667
|
description: stringType(),
|
|
57670
|
-
created: stringType().default("2025-11-
|
|
57671
|
-
updated: stringType().default("2025-11-
|
|
57668
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57669
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57672
57670
|
guardrail_config: unionType([
|
|
57673
57671
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57674
57672
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57686,8 +57684,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57686
57684
|
DataLLM$outboundSchema = objectType({
|
|
57687
57685
|
id: stringType(),
|
|
57688
57686
|
description: stringType(),
|
|
57689
|
-
created: stringType().default("2025-11-
|
|
57690
|
-
updated: stringType().default("2025-11-
|
|
57687
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57688
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
57691
57689
|
guardrailConfig: unionType([
|
|
57692
57690
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57693
57691
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59968,7 +59966,6 @@ var init_listagents = __esm(() => {
|
|
|
59968
59966
|
description: stringType().optional(),
|
|
59969
59967
|
requires_approval: booleanType().default(false),
|
|
59970
59968
|
conditions: arrayType(lazyType(() => ListAgentsConditions$inboundSchema)).optional(),
|
|
59971
|
-
mcpServer: stringType().optional(),
|
|
59972
59969
|
timeout: numberType().default(120)
|
|
59973
59970
|
}).transform((v2) => {
|
|
59974
59971
|
return remap(v2, {
|
|
@@ -59985,7 +59982,6 @@ var init_listagents = __esm(() => {
|
|
|
59985
59982
|
description: stringType().optional(),
|
|
59986
59983
|
requiresApproval: booleanType().default(false),
|
|
59987
59984
|
conditions: arrayType(lazyType(() => ListAgentsConditions$outboundSchema)).optional(),
|
|
59988
|
-
mcpServer: stringType().optional(),
|
|
59989
59985
|
timeout: numberType().default(120)
|
|
59990
59986
|
}).transform((v2) => {
|
|
59991
59987
|
return remap(v2, {
|
|
@@ -61105,7 +61101,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61105
61101
|
is_active: booleanType(),
|
|
61106
61102
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
61107
61103
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61108
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61104
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:40.171Z").transform((v2) => new Date(v2))
|
|
61109
61105
|
}).transform((v2) => {
|
|
61110
61106
|
return remap(v2, {
|
|
61111
61107
|
_id: "id",
|
|
@@ -61121,7 +61117,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61121
61117
|
isActive: booleanType(),
|
|
61122
61118
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
61123
61119
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61124
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61120
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:40.171Z")).transform((v2) => v2.toISOString())
|
|
61125
61121
|
}).transform((v2) => {
|
|
61126
61122
|
return remap(v2, {
|
|
61127
61123
|
id: "_id",
|
|
@@ -61448,7 +61444,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61448
61444
|
tags: arrayType(stringType()).optional(),
|
|
61449
61445
|
metadata: recordType(anyType()).optional(),
|
|
61450
61446
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61451
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61447
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2)),
|
|
61452
61448
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
61453
61449
|
}).transform((v2) => {
|
|
61454
61450
|
return remap(v2, {
|
|
@@ -61467,7 +61463,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61467
61463
|
tags: arrayType(stringType()).optional(),
|
|
61468
61464
|
metadata: recordType(anyType()).optional(),
|
|
61469
61465
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61470
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61466
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString()),
|
|
61471
61467
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
61472
61468
|
}).transform((v2) => {
|
|
61473
61469
|
return remap(v2, {
|
|
@@ -62056,7 +62052,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62056
62052
|
human_review_id: stringType(),
|
|
62057
62053
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
62058
62054
|
reviewed_by_id: stringType(),
|
|
62059
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62055
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.511Z").transform((v2) => new Date(v2)),
|
|
62060
62056
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
62061
62057
|
values: arrayType(stringType())
|
|
62062
62058
|
}).transform((v2) => {
|
|
@@ -62073,7 +62069,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62073
62069
|
humanReviewId: stringType(),
|
|
62074
62070
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
62075
62071
|
reviewedById: stringType(),
|
|
62076
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62072
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.511Z")).transform((v2) => v2.toISOString()),
|
|
62077
62073
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
62078
62074
|
values: arrayType(stringType())
|
|
62079
62075
|
}).transform((v2) => {
|
|
@@ -62096,7 +62092,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62096
62092
|
human_review_id: stringType(),
|
|
62097
62093
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
62098
62094
|
reviewed_by_id: stringType(),
|
|
62099
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62095
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.510Z").transform((v2) => new Date(v2)),
|
|
62100
62096
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
62101
62097
|
value: numberType()
|
|
62102
62098
|
}).transform((v2) => {
|
|
@@ -62113,7 +62109,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62113
62109
|
humanReviewId: stringType(),
|
|
62114
62110
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
62115
62111
|
reviewedById: stringType(),
|
|
62116
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62112
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.510Z")).transform((v2) => v2.toISOString()),
|
|
62117
62113
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
62118
62114
|
value: numberType()
|
|
62119
62115
|
}).transform((v2) => {
|
|
@@ -62136,7 +62132,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62136
62132
|
human_review_id: stringType(),
|
|
62137
62133
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
62138
62134
|
reviewed_by_id: stringType(),
|
|
62139
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62135
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.510Z").transform((v2) => new Date(v2)),
|
|
62140
62136
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
62141
62137
|
value: stringType()
|
|
62142
62138
|
}).transform((v2) => {
|
|
@@ -62153,7 +62149,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62153
62149
|
humanReviewId: stringType(),
|
|
62154
62150
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
62155
62151
|
reviewedById: stringType(),
|
|
62156
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62152
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.510Z")).transform((v2) => v2.toISOString()),
|
|
62157
62153
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
62158
62154
|
value: stringType()
|
|
62159
62155
|
}).transform((v2) => {
|
|
@@ -62196,7 +62192,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62196
62192
|
created_by_id: stringType().optional(),
|
|
62197
62193
|
updated_by_id: stringType().optional(),
|
|
62198
62194
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62199
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62195
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
62200
62196
|
}).transform((v2) => {
|
|
62201
62197
|
return remap(v2, {
|
|
62202
62198
|
_id: "id",
|
|
@@ -62230,7 +62226,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62230
62226
|
createdById: stringType().optional(),
|
|
62231
62227
|
updatedById: stringType().optional(),
|
|
62232
62228
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62233
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62229
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
62234
62230
|
}).transform((v2) => {
|
|
62235
62231
|
return remap(v2, {
|
|
62236
62232
|
id: "_id",
|
|
@@ -62319,7 +62315,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62319
62315
|
created_by_id: stringType().optional(),
|
|
62320
62316
|
updated_by_id: stringType().optional(),
|
|
62321
62317
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62322
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62318
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
62323
62319
|
}).transform((v2) => {
|
|
62324
62320
|
return remap(v2, {
|
|
62325
62321
|
_id: "id",
|
|
@@ -62339,7 +62335,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62339
62335
|
createdById: stringType().optional(),
|
|
62340
62336
|
updatedById: stringType().optional(),
|
|
62341
62337
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62342
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62338
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
62343
62339
|
}).transform((v2) => {
|
|
62344
62340
|
return remap(v2, {
|
|
62345
62341
|
id: "_id",
|
|
@@ -62420,7 +62416,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62420
62416
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
62421
62417
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
62422
62418
|
ListDatasourcesData$inboundSchema = objectType({
|
|
62423
|
-
_id: stringType().default("
|
|
62419
|
+
_id: stringType().default("01KA8HBDCAGHBZ020WCHB8FGC1"),
|
|
62424
62420
|
display_name: stringType(),
|
|
62425
62421
|
description: stringType().optional(),
|
|
62426
62422
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -62443,7 +62439,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62443
62439
|
});
|
|
62444
62440
|
});
|
|
62445
62441
|
ListDatasourcesData$outboundSchema = objectType({
|
|
62446
|
-
id: stringType().default("
|
|
62442
|
+
id: stringType().default("01KA8HBDCAGHBZ020WCHB8FGC1"),
|
|
62447
62443
|
displayName: stringType(),
|
|
62448
62444
|
description: stringType().optional(),
|
|
62449
62445
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63908,7 +63904,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63908
63904
|
tags: arrayType(stringType()).optional(),
|
|
63909
63905
|
metadata: recordType(anyType()).optional(),
|
|
63910
63906
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63911
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63907
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
63912
63908
|
}).transform((v2) => {
|
|
63913
63909
|
return remap(v2, {
|
|
63914
63910
|
_id: "id",
|
|
@@ -63926,7 +63922,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63926
63922
|
tags: arrayType(stringType()).optional(),
|
|
63927
63923
|
metadata: recordType(anyType()).optional(),
|
|
63928
63924
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63929
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63925
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
63930
63926
|
}).transform((v2) => {
|
|
63931
63927
|
return remap(v2, {
|
|
63932
63928
|
id: "_id",
|
|
@@ -64485,7 +64481,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64485
64481
|
human_review_id: stringType(),
|
|
64486
64482
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
64487
64483
|
reviewed_by_id: stringType(),
|
|
64488
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64484
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.519Z").transform((v2) => new Date(v2)),
|
|
64489
64485
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
64490
64486
|
values: arrayType(stringType())
|
|
64491
64487
|
}).transform((v2) => {
|
|
@@ -64502,7 +64498,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64502
64498
|
humanReviewId: stringType(),
|
|
64503
64499
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
64504
64500
|
reviewedById: stringType(),
|
|
64505
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64501
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.519Z")).transform((v2) => v2.toISOString()),
|
|
64506
64502
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
64507
64503
|
values: arrayType(stringType())
|
|
64508
64504
|
}).transform((v2) => {
|
|
@@ -64525,7 +64521,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64525
64521
|
human_review_id: stringType(),
|
|
64526
64522
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64527
64523
|
reviewed_by_id: stringType(),
|
|
64528
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64524
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.518Z").transform((v2) => new Date(v2)),
|
|
64529
64525
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
64530
64526
|
value: numberType()
|
|
64531
64527
|
}).transform((v2) => {
|
|
@@ -64542,7 +64538,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64542
64538
|
humanReviewId: stringType(),
|
|
64543
64539
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64544
64540
|
reviewedById: stringType(),
|
|
64545
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64541
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.518Z")).transform((v2) => v2.toISOString()),
|
|
64546
64542
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
64547
64543
|
value: numberType()
|
|
64548
64544
|
}).transform((v2) => {
|
|
@@ -64565,7 +64561,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64565
64561
|
human_review_id: stringType(),
|
|
64566
64562
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
64567
64563
|
reviewed_by_id: stringType(),
|
|
64568
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64564
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.517Z").transform((v2) => new Date(v2)),
|
|
64569
64565
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
64570
64566
|
value: stringType()
|
|
64571
64567
|
}).transform((v2) => {
|
|
@@ -64582,7 +64578,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64582
64578
|
humanReviewId: stringType(),
|
|
64583
64579
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
64584
64580
|
reviewedById: stringType(),
|
|
64585
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64581
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.517Z")).transform((v2) => v2.toISOString()),
|
|
64586
64582
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
64587
64583
|
value: stringType()
|
|
64588
64584
|
}).transform((v2) => {
|
|
@@ -64625,7 +64621,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64625
64621
|
created_by_id: stringType().optional(),
|
|
64626
64622
|
updated_by_id: stringType().optional(),
|
|
64627
64623
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64628
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64624
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
64629
64625
|
}).transform((v2) => {
|
|
64630
64626
|
return remap(v2, {
|
|
64631
64627
|
_id: "id",
|
|
@@ -64659,7 +64655,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64659
64655
|
createdById: stringType().optional(),
|
|
64660
64656
|
updatedById: stringType().optional(),
|
|
64661
64657
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64662
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64658
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
64663
64659
|
}).transform((v2) => {
|
|
64664
64660
|
return remap(v2, {
|
|
64665
64661
|
id: "_id",
|
|
@@ -64719,7 +64715,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64719
64715
|
created_by_id: stringType().optional(),
|
|
64720
64716
|
updated_by_id: stringType().optional(),
|
|
64721
64717
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64722
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64718
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
64723
64719
|
}).transform((v2) => {
|
|
64724
64720
|
return remap(v2, {
|
|
64725
64721
|
_id: "id",
|
|
@@ -64739,7 +64735,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64739
64735
|
createdById: stringType().optional(),
|
|
64740
64736
|
updatedById: stringType().optional(),
|
|
64741
64737
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64742
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64738
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
64743
64739
|
}).transform((v2) => {
|
|
64744
64740
|
return remap(v2, {
|
|
64745
64741
|
id: "_id",
|
|
@@ -64785,7 +64781,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64785
64781
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64786
64782
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64787
64783
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64788
|
-
_id: stringType().default("
|
|
64784
|
+
_id: stringType().default("01KA8HBDCCP737FZTGNF3REKNA"),
|
|
64789
64785
|
display_name: stringType(),
|
|
64790
64786
|
description: stringType().optional(),
|
|
64791
64787
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64808,7 +64804,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64808
64804
|
});
|
|
64809
64805
|
});
|
|
64810
64806
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64811
|
-
id: stringType().default("
|
|
64807
|
+
id: stringType().default("01KA8HBDCCP737FZTGNF3REKNA"),
|
|
64812
64808
|
displayName: stringType(),
|
|
64813
64809
|
description: stringType().optional(),
|
|
64814
64810
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -65373,7 +65369,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65373
65369
|
code: stringType()
|
|
65374
65370
|
});
|
|
65375
65371
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
65376
|
-
_id: stringType().default("
|
|
65372
|
+
_id: stringType().default("tool_01KA8HBD98YHFQHY8S4CB5QSA1"),
|
|
65377
65373
|
path: stringType(),
|
|
65378
65374
|
key: stringType(),
|
|
65379
65375
|
display_name: stringType().optional(),
|
|
@@ -65401,7 +65397,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65401
65397
|
});
|
|
65402
65398
|
});
|
|
65403
65399
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
65404
|
-
id: stringType().default("
|
|
65400
|
+
id: stringType().default("tool_01KA8HBD98YHFQHY8S4CB5QSA1"),
|
|
65405
65401
|
path: stringType(),
|
|
65406
65402
|
key: stringType(),
|
|
65407
65403
|
displayName: stringType().optional(),
|
|
@@ -65453,13 +65449,13 @@ var init_retrievetool = __esm(() => {
|
|
|
65453
65449
|
required: arrayType(stringType()).optional()
|
|
65454
65450
|
});
|
|
65455
65451
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
65456
|
-
id: stringType().default("
|
|
65452
|
+
id: stringType().default("01KA8HBD97M0GNFDSR25ZBMM9M"),
|
|
65457
65453
|
name: stringType(),
|
|
65458
65454
|
description: stringType().optional(),
|
|
65459
65455
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
65460
65456
|
});
|
|
65461
65457
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
65462
|
-
id: stringType().default("
|
|
65458
|
+
id: stringType().default("01KA8HBD97M0GNFDSR25ZBMM9M"),
|
|
65463
65459
|
name: stringType(),
|
|
65464
65460
|
description: stringType().optional(),
|
|
65465
65461
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -65489,7 +65485,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65489
65485
|
});
|
|
65490
65486
|
});
|
|
65491
65487
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
65492
|
-
_id: stringType().default("
|
|
65488
|
+
_id: stringType().default("tool_01KA8HBD96NQRAXSDG14MDDX36"),
|
|
65493
65489
|
path: stringType(),
|
|
65494
65490
|
key: stringType(),
|
|
65495
65491
|
display_name: stringType().optional(),
|
|
@@ -65516,7 +65512,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65516
65512
|
});
|
|
65517
65513
|
});
|
|
65518
65514
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
65519
|
-
id: stringType().default("
|
|
65515
|
+
id: stringType().default("tool_01KA8HBD96NQRAXSDG14MDDX36"),
|
|
65520
65516
|
path: stringType(),
|
|
65521
65517
|
key: stringType(),
|
|
65522
65518
|
displayName: stringType().optional(),
|
|
@@ -65605,7 +65601,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65605
65601
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
65606
65602
|
});
|
|
65607
65603
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
65608
|
-
_id: stringType().default("
|
|
65604
|
+
_id: stringType().default("tool_01KA8HBD948YCZA4QQ44YHX980"),
|
|
65609
65605
|
path: stringType(),
|
|
65610
65606
|
key: stringType(),
|
|
65611
65607
|
display_name: stringType().optional(),
|
|
@@ -65632,7 +65628,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65632
65628
|
});
|
|
65633
65629
|
});
|
|
65634
65630
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
65635
|
-
id: stringType().default("
|
|
65631
|
+
id: stringType().default("tool_01KA8HBD948YCZA4QQ44YHX980"),
|
|
65636
65632
|
path: stringType(),
|
|
65637
65633
|
key: stringType(),
|
|
65638
65634
|
displayName: stringType().optional(),
|
|
@@ -65693,7 +65689,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65693
65689
|
strict: booleanType().optional()
|
|
65694
65690
|
});
|
|
65695
65691
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65696
|
-
_id: stringType().default("
|
|
65692
|
+
_id: stringType().default("tool_01KA8HBD935X61484PAXX5VSS8"),
|
|
65697
65693
|
path: stringType(),
|
|
65698
65694
|
key: stringType(),
|
|
65699
65695
|
display_name: stringType().optional(),
|
|
@@ -65721,7 +65717,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65721
65717
|
});
|
|
65722
65718
|
});
|
|
65723
65719
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65724
|
-
id: stringType().default("
|
|
65720
|
+
id: stringType().default("tool_01KA8HBD935X61484PAXX5VSS8"),
|
|
65725
65721
|
path: stringType(),
|
|
65726
65722
|
key: stringType(),
|
|
65727
65723
|
displayName: stringType().optional(),
|
|
@@ -65785,7 +65781,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65785
65781
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
65786
65782
|
});
|
|
65787
65783
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65788
|
-
_id: stringType().default("
|
|
65784
|
+
_id: stringType().default("tool_01KA8HBD92K2FPES2JYFB6E1G2"),
|
|
65789
65785
|
path: stringType(),
|
|
65790
65786
|
key: stringType(),
|
|
65791
65787
|
display_name: stringType().optional(),
|
|
@@ -65812,7 +65808,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65812
65808
|
});
|
|
65813
65809
|
});
|
|
65814
65810
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65815
|
-
id: stringType().default("
|
|
65811
|
+
id: stringType().default("tool_01KA8HBD92K2FPES2JYFB6E1G2"),
|
|
65816
65812
|
path: stringType(),
|
|
65817
65813
|
key: stringType(),
|
|
65818
65814
|
displayName: stringType().optional(),
|
|
@@ -66785,13 +66781,13 @@ var init_runagent = __esm(() => {
|
|
|
66785
66781
|
required: arrayType(stringType()).optional()
|
|
66786
66782
|
});
|
|
66787
66783
|
Tools$inboundSchema = objectType({
|
|
66788
|
-
id: stringType().default("
|
|
66784
|
+
id: stringType().default("01KA8HBD0JQ2PRZ6HD679E89ZC"),
|
|
66789
66785
|
name: stringType(),
|
|
66790
66786
|
description: stringType().optional(),
|
|
66791
66787
|
schema: lazyType(() => Schema$inboundSchema)
|
|
66792
66788
|
});
|
|
66793
66789
|
Tools$outboundSchema = objectType({
|
|
66794
|
-
id: stringType().default("
|
|
66790
|
+
id: stringType().default("01KA8HBD0JQ2PRZ6HD679E89ZC"),
|
|
66795
66791
|
name: stringType(),
|
|
66796
66792
|
description: stringType().optional(),
|
|
66797
66793
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -69323,13 +69319,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
69323
69319
|
required: arrayType(stringType()).optional()
|
|
69324
69320
|
});
|
|
69325
69321
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
69326
|
-
id: stringType().default("
|
|
69322
|
+
id: stringType().default("01KA8HBD119796NREQ1DCMF6JP"),
|
|
69327
69323
|
name: stringType(),
|
|
69328
69324
|
description: stringType().optional(),
|
|
69329
69325
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
69330
69326
|
});
|
|
69331
69327
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
69332
|
-
id: stringType().default("
|
|
69328
|
+
id: stringType().default("01KA8HBD119796NREQ1DCMF6JP"),
|
|
69333
69329
|
name: stringType(),
|
|
69334
69330
|
description: stringType().optional(),
|
|
69335
69331
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -70171,7 +70167,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70171
70167
|
errors: arrayType(stringType())
|
|
70172
70168
|
});
|
|
70173
70169
|
SyncMcpToolResponseBody5$inboundSchema = objectType({
|
|
70174
|
-
_id: stringType().default("
|
|
70170
|
+
_id: stringType().default("tool_01KA8HBD9SNHBJW1FCSXJ4NPD1"),
|
|
70175
70171
|
path: stringType(),
|
|
70176
70172
|
key: stringType(),
|
|
70177
70173
|
display_name: stringType().optional(),
|
|
@@ -70200,7 +70196,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70200
70196
|
});
|
|
70201
70197
|
});
|
|
70202
70198
|
SyncMcpToolResponseBody5$outboundSchema = objectType({
|
|
70203
|
-
id: stringType().default("
|
|
70199
|
+
id: stringType().default("tool_01KA8HBD9SNHBJW1FCSXJ4NPD1"),
|
|
70204
70200
|
path: stringType(),
|
|
70205
70201
|
key: stringType(),
|
|
70206
70202
|
displayName: stringType().optional(),
|
|
@@ -70253,13 +70249,13 @@ var init_syncmcptool = __esm(() => {
|
|
|
70253
70249
|
required: arrayType(stringType()).optional()
|
|
70254
70250
|
});
|
|
70255
70251
|
SyncMcpToolResponseBodyTools$inboundSchema = objectType({
|
|
70256
|
-
id: stringType().default("
|
|
70252
|
+
id: stringType().default("01KA8HBD9RYGF6P12J88CBSVQT"),
|
|
70257
70253
|
name: stringType(),
|
|
70258
70254
|
description: stringType().optional(),
|
|
70259
70255
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema)
|
|
70260
70256
|
});
|
|
70261
70257
|
SyncMcpToolResponseBodyTools$outboundSchema = objectType({
|
|
70262
|
-
id: stringType().default("
|
|
70258
|
+
id: stringType().default("01KA8HBD9RYGF6P12J88CBSVQT"),
|
|
70263
70259
|
name: stringType(),
|
|
70264
70260
|
description: stringType().optional(),
|
|
70265
70261
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -70301,7 +70297,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70301
70297
|
errors: arrayType(stringType())
|
|
70302
70298
|
});
|
|
70303
70299
|
SyncMcpToolResponseBody4$inboundSchema = objectType({
|
|
70304
|
-
_id: stringType().default("
|
|
70300
|
+
_id: stringType().default("tool_01KA8HBD9PP3844P9XN5R6B26Z"),
|
|
70305
70301
|
path: stringType(),
|
|
70306
70302
|
key: stringType(),
|
|
70307
70303
|
display_name: stringType().optional(),
|
|
@@ -70329,7 +70325,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70329
70325
|
});
|
|
70330
70326
|
});
|
|
70331
70327
|
SyncMcpToolResponseBody4$outboundSchema = objectType({
|
|
70332
|
-
id: stringType().default("
|
|
70328
|
+
id: stringType().default("tool_01KA8HBD9PP3844P9XN5R6B26Z"),
|
|
70333
70329
|
path: stringType(),
|
|
70334
70330
|
key: stringType(),
|
|
70335
70331
|
displayName: stringType().optional(),
|
|
@@ -70431,7 +70427,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70431
70427
|
errors: arrayType(stringType())
|
|
70432
70428
|
});
|
|
70433
70429
|
SyncMcpToolResponseBody3$inboundSchema = objectType({
|
|
70434
|
-
_id: stringType().default("
|
|
70430
|
+
_id: stringType().default("tool_01KA8HBD9KQ3EME2GXT3W6F0CG"),
|
|
70435
70431
|
path: stringType(),
|
|
70436
70432
|
key: stringType(),
|
|
70437
70433
|
display_name: stringType().optional(),
|
|
@@ -70459,7 +70455,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70459
70455
|
});
|
|
70460
70456
|
});
|
|
70461
70457
|
SyncMcpToolResponseBody3$outboundSchema = objectType({
|
|
70462
|
-
id: stringType().default("
|
|
70458
|
+
id: stringType().default("tool_01KA8HBD9KQ3EME2GXT3W6F0CG"),
|
|
70463
70459
|
path: stringType(),
|
|
70464
70460
|
key: stringType(),
|
|
70465
70461
|
displayName: stringType().optional(),
|
|
@@ -70533,7 +70529,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70533
70529
|
errors: arrayType(stringType())
|
|
70534
70530
|
});
|
|
70535
70531
|
SyncMcpToolResponseBody2$inboundSchema = objectType({
|
|
70536
|
-
_id: stringType().default("
|
|
70532
|
+
_id: stringType().default("tool_01KA8HBD9H5G2EPZ1SXV8N4YVF"),
|
|
70537
70533
|
path: stringType(),
|
|
70538
70534
|
key: stringType(),
|
|
70539
70535
|
display_name: stringType().optional(),
|
|
@@ -70562,7 +70558,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70562
70558
|
});
|
|
70563
70559
|
});
|
|
70564
70560
|
SyncMcpToolResponseBody2$outboundSchema = objectType({
|
|
70565
|
-
id: stringType().default("
|
|
70561
|
+
id: stringType().default("tool_01KA8HBD9H5G2EPZ1SXV8N4YVF"),
|
|
70566
70562
|
path: stringType(),
|
|
70567
70563
|
key: stringType(),
|
|
70568
70564
|
displayName: stringType().optional(),
|
|
@@ -70639,7 +70635,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70639
70635
|
errors: arrayType(stringType())
|
|
70640
70636
|
});
|
|
70641
70637
|
SyncMcpToolResponseBody1$inboundSchema = objectType({
|
|
70642
|
-
_id: stringType().default("
|
|
70638
|
+
_id: stringType().default("tool_01KA8HBD997PGAZB0FWY795Y3N"),
|
|
70643
70639
|
path: stringType(),
|
|
70644
70640
|
key: stringType(),
|
|
70645
70641
|
display_name: stringType().optional(),
|
|
@@ -70667,7 +70663,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70667
70663
|
});
|
|
70668
70664
|
});
|
|
70669
70665
|
SyncMcpToolResponseBody1$outboundSchema = objectType({
|
|
70670
|
-
id: stringType().default("
|
|
70666
|
+
id: stringType().default("tool_01KA8HBD997PGAZB0FWY795Y3N"),
|
|
70671
70667
|
path: stringType(),
|
|
70672
70668
|
key: stringType(),
|
|
70673
70669
|
displayName: stringType().optional(),
|
|
@@ -71992,7 +71988,6 @@ var init_updateagent2 = __esm(() => {
|
|
|
71992
71988
|
description: stringType().optional(),
|
|
71993
71989
|
requires_approval: booleanType().default(false),
|
|
71994
71990
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$inboundSchema)).optional(),
|
|
71995
|
-
mcpServer: stringType().optional(),
|
|
71996
71991
|
timeout: numberType().default(120)
|
|
71997
71992
|
}).transform((v2) => {
|
|
71998
71993
|
return remap(v2, {
|
|
@@ -72009,7 +72004,6 @@ var init_updateagent2 = __esm(() => {
|
|
|
72009
72004
|
description: stringType().optional(),
|
|
72010
72005
|
requiresApproval: booleanType().default(false),
|
|
72011
72006
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$outboundSchema)).optional(),
|
|
72012
|
-
mcpServer: stringType().optional(),
|
|
72013
72007
|
timeout: numberType().default(120)
|
|
72014
72008
|
}).transform((v2) => {
|
|
72015
72009
|
return remap(v2, {
|
|
@@ -72816,7 +72810,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72816
72810
|
is_active: booleanType(),
|
|
72817
72811
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
72818
72812
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72819
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72813
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:40.171Z").transform((v2) => new Date(v2))
|
|
72820
72814
|
}).transform((v2) => {
|
|
72821
72815
|
return remap(v2, {
|
|
72822
72816
|
_id: "id",
|
|
@@ -72834,7 +72828,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72834
72828
|
isActive: booleanType(),
|
|
72835
72829
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
72836
72830
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72837
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72831
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:40.171Z")).transform((v2) => v2.toISOString())
|
|
72838
72832
|
}).transform((v2) => {
|
|
72839
72833
|
return remap(v2, {
|
|
72840
72834
|
id: "_id",
|
|
@@ -72989,7 +72983,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72989
72983
|
tags: arrayType(stringType()).optional(),
|
|
72990
72984
|
metadata: recordType(anyType()).optional(),
|
|
72991
72985
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72992
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72986
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
72993
72987
|
}).transform((v2) => {
|
|
72994
72988
|
return remap(v2, {
|
|
72995
72989
|
_id: "id",
|
|
@@ -73007,7 +73001,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
73007
73001
|
tags: arrayType(stringType()).optional(),
|
|
73008
73002
|
metadata: recordType(anyType()).optional(),
|
|
73009
73003
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73010
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73004
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
73011
73005
|
}).transform((v2) => {
|
|
73012
73006
|
return remap(v2, {
|
|
73013
73007
|
id: "_id",
|
|
@@ -74083,7 +74077,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74083
74077
|
human_review_id: stringType(),
|
|
74084
74078
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
74085
74079
|
reviewed_by_id: stringType(),
|
|
74086
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74080
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.561Z").transform((v2) => new Date(v2)),
|
|
74087
74081
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
74088
74082
|
values: arrayType(stringType())
|
|
74089
74083
|
}).transform((v2) => {
|
|
@@ -74100,7 +74094,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74100
74094
|
humanReviewId: stringType(),
|
|
74101
74095
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
74102
74096
|
reviewedById: stringType(),
|
|
74103
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74097
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.561Z")).transform((v2) => v2.toISOString()),
|
|
74104
74098
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
74105
74099
|
values: arrayType(stringType())
|
|
74106
74100
|
}).transform((v2) => {
|
|
@@ -74123,7 +74117,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74123
74117
|
human_review_id: stringType(),
|
|
74124
74118
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
74125
74119
|
reviewed_by_id: stringType(),
|
|
74126
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74120
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.561Z").transform((v2) => new Date(v2)),
|
|
74127
74121
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
74128
74122
|
value: numberType()
|
|
74129
74123
|
}).transform((v2) => {
|
|
@@ -74140,7 +74134,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74140
74134
|
humanReviewId: stringType(),
|
|
74141
74135
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
74142
74136
|
reviewedById: stringType(),
|
|
74143
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74137
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.561Z")).transform((v2) => v2.toISOString()),
|
|
74144
74138
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
74145
74139
|
value: numberType()
|
|
74146
74140
|
}).transform((v2) => {
|
|
@@ -74163,7 +74157,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74163
74157
|
human_review_id: stringType(),
|
|
74164
74158
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
74165
74159
|
reviewed_by_id: stringType(),
|
|
74166
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74160
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T09:11:50.561Z").transform((v2) => new Date(v2)),
|
|
74167
74161
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
74168
74162
|
value: stringType()
|
|
74169
74163
|
}).transform((v2) => {
|
|
@@ -74180,7 +74174,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74180
74174
|
humanReviewId: stringType(),
|
|
74181
74175
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
74182
74176
|
reviewedById: stringType(),
|
|
74183
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74177
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T09:11:50.561Z")).transform((v2) => v2.toISOString()),
|
|
74184
74178
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
74185
74179
|
value: stringType()
|
|
74186
74180
|
}).transform((v2) => {
|
|
@@ -74223,7 +74217,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74223
74217
|
created_by_id: stringType().optional(),
|
|
74224
74218
|
updated_by_id: stringType().optional(),
|
|
74225
74219
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74226
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74220
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
74227
74221
|
}).transform((v2) => {
|
|
74228
74222
|
return remap(v2, {
|
|
74229
74223
|
_id: "id",
|
|
@@ -74257,7 +74251,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74257
74251
|
createdById: stringType().optional(),
|
|
74258
74252
|
updatedById: stringType().optional(),
|
|
74259
74253
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74260
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74254
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
74261
74255
|
}).transform((v2) => {
|
|
74262
74256
|
return remap(v2, {
|
|
74263
74257
|
id: "_id",
|
|
@@ -74341,7 +74335,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74341
74335
|
created_by_id: stringType().optional(),
|
|
74342
74336
|
updated_by_id: stringType().optional(),
|
|
74343
74337
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74344
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74338
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T09:11:39.809Z").transform((v2) => new Date(v2))
|
|
74345
74339
|
}).transform((v2) => {
|
|
74346
74340
|
return remap(v2, {
|
|
74347
74341
|
_id: "id",
|
|
@@ -74361,7 +74355,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74361
74355
|
createdById: stringType().optional(),
|
|
74362
74356
|
updatedById: stringType().optional(),
|
|
74363
74357
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74364
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74358
|
+
updated: dateType().default(() => new Date("2025-11-17T09:11:39.809Z")).transform((v2) => v2.toISOString())
|
|
74365
74359
|
}).transform((v2) => {
|
|
74366
74360
|
return remap(v2, {
|
|
74367
74361
|
id: "_id",
|
|
@@ -74425,7 +74419,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74425
74419
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
74426
74420
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
74427
74421
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
74428
|
-
_id: stringType().default("
|
|
74422
|
+
_id: stringType().default("01KA8HBDCTVXWVWCTVZ23NRMBE"),
|
|
74429
74423
|
display_name: stringType(),
|
|
74430
74424
|
description: stringType().optional(),
|
|
74431
74425
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -74448,7 +74442,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74448
74442
|
});
|
|
74449
74443
|
});
|
|
74450
74444
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
74451
|
-
id: stringType().default("
|
|
74445
|
+
id: stringType().default("01KA8HBDCTVXWVWCTVZ23NRMBE"),
|
|
74452
74446
|
displayName: stringType(),
|
|
74453
74447
|
description: stringType().optional(),
|
|
74454
74448
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -75195,8 +75189,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75195
75189
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
75196
75190
|
_id: stringType(),
|
|
75197
75191
|
description: stringType(),
|
|
75198
|
-
created: stringType().default("2025-11-
|
|
75199
|
-
updated: stringType().default("2025-11-
|
|
75192
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75193
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75200
75194
|
guardrail_config: unionType([
|
|
75201
75195
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
75202
75196
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -75213,8 +75207,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75213
75207
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
75214
75208
|
id: stringType(),
|
|
75215
75209
|
description: stringType(),
|
|
75216
|
-
created: stringType().default("2025-11-
|
|
75217
|
-
updated: stringType().default("2025-11-
|
|
75210
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75211
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75218
75212
|
guardrailConfig: unionType([
|
|
75219
75213
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
75220
75214
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -75271,8 +75265,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75271
75265
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
75272
75266
|
_id: stringType(),
|
|
75273
75267
|
description: stringType(),
|
|
75274
|
-
created: stringType().default("2025-11-
|
|
75275
|
-
updated: stringType().default("2025-11-
|
|
75268
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75269
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75276
75270
|
guardrail_config: unionType([
|
|
75277
75271
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
75278
75272
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -75291,8 +75285,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75291
75285
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
75292
75286
|
id: stringType(),
|
|
75293
75287
|
description: stringType(),
|
|
75294
|
-
created: stringType().default("2025-11-
|
|
75295
|
-
updated: stringType().default("2025-11-
|
|
75288
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75289
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75296
75290
|
guardrailConfig: unionType([
|
|
75297
75291
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
75298
75292
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -75729,8 +75723,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75729
75723
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
75730
75724
|
_id: stringType(),
|
|
75731
75725
|
description: stringType(),
|
|
75732
|
-
created: stringType().default("2025-11-
|
|
75733
|
-
updated: stringType().default("2025-11-
|
|
75726
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75727
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75734
75728
|
guardrail_config: unionType([
|
|
75735
75729
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
75736
75730
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -75784,8 +75778,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75784
75778
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
75785
75779
|
id: stringType(),
|
|
75786
75780
|
description: stringType(),
|
|
75787
|
-
created: stringType().default("2025-11-
|
|
75788
|
-
updated: stringType().default("2025-11-
|
|
75781
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75782
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75789
75783
|
guardrailConfig: unionType([
|
|
75790
75784
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
75791
75785
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -75877,8 +75871,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75877
75871
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
75878
75872
|
_id: stringType(),
|
|
75879
75873
|
description: stringType(),
|
|
75880
|
-
created: stringType().default("2025-11-
|
|
75881
|
-
updated: stringType().default("2025-11-
|
|
75874
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75875
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75882
75876
|
guardrail_config: unionType([
|
|
75883
75877
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
75884
75878
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -75895,8 +75889,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75895
75889
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
75896
75890
|
id: stringType(),
|
|
75897
75891
|
description: stringType(),
|
|
75898
|
-
created: stringType().default("2025-11-
|
|
75899
|
-
updated: stringType().default("2025-11-
|
|
75892
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75893
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75900
75894
|
guardrailConfig: unionType([
|
|
75901
75895
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
75902
75896
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -75953,8 +75947,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75953
75947
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
75954
75948
|
_id: stringType(),
|
|
75955
75949
|
description: stringType(),
|
|
75956
|
-
created: stringType().default("2025-11-
|
|
75957
|
-
updated: stringType().default("2025-11-
|
|
75950
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75951
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75958
75952
|
guardrail_config: unionType([
|
|
75959
75953
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
75960
75954
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -75974,8 +75968,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75974
75968
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
75975
75969
|
id: stringType(),
|
|
75976
75970
|
description: stringType(),
|
|
75977
|
-
created: stringType().default("2025-11-
|
|
75978
|
-
updated: stringType().default("2025-11-
|
|
75971
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75972
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
75979
75973
|
guardrailConfig: unionType([
|
|
75980
75974
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
75981
75975
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -76033,8 +76027,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76033
76027
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
76034
76028
|
_id: stringType(),
|
|
76035
76029
|
description: stringType(),
|
|
76036
|
-
created: stringType().default("2025-11-
|
|
76037
|
-
updated: stringType().default("2025-11-
|
|
76030
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76031
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76038
76032
|
guardrail_config: unionType([
|
|
76039
76033
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
76040
76034
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -76051,8 +76045,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76051
76045
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
76052
76046
|
id: stringType(),
|
|
76053
76047
|
description: stringType(),
|
|
76054
|
-
created: stringType().default("2025-11-
|
|
76055
|
-
updated: stringType().default("2025-11-
|
|
76048
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76049
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76056
76050
|
guardrailConfig: unionType([
|
|
76057
76051
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
76058
76052
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -76107,8 +76101,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76107
76101
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
76108
76102
|
_id: stringType(),
|
|
76109
76103
|
description: stringType(),
|
|
76110
|
-
created: stringType().default("2025-11-
|
|
76111
|
-
updated: stringType().default("2025-11-
|
|
76104
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76105
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76112
76106
|
guardrail_config: unionType([
|
|
76113
76107
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
76114
76108
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -76126,8 +76120,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76126
76120
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
76127
76121
|
id: stringType(),
|
|
76128
76122
|
description: stringType(),
|
|
76129
|
-
created: stringType().default("2025-11-
|
|
76130
|
-
updated: stringType().default("2025-11-
|
|
76123
|
+
created: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76124
|
+
updated: stringType().default("2025-11-17T09:11:41.816Z"),
|
|
76131
76125
|
guardrailConfig: unionType([
|
|
76132
76126
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
76133
76127
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -79041,6 +79035,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79041
79035
|
});
|
|
79042
79036
|
UpdateCodeExecutionTool$inboundSchema = objectType({
|
|
79043
79037
|
path: stringType().optional(),
|
|
79038
|
+
key: stringType().optional(),
|
|
79044
79039
|
display_name: stringType().optional(),
|
|
79045
79040
|
description: stringType().optional(),
|
|
79046
79041
|
status: UpdateToolRequestBodyToolsRequest5Status$inboundSchema.default("live"),
|
|
@@ -79054,6 +79049,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79054
79049
|
});
|
|
79055
79050
|
UpdateCodeExecutionTool$outboundSchema = objectType({
|
|
79056
79051
|
path: stringType().optional(),
|
|
79052
|
+
key: stringType().optional(),
|
|
79057
79053
|
displayName: stringType().optional(),
|
|
79058
79054
|
description: stringType().optional(),
|
|
79059
79055
|
status: UpdateToolRequestBodyToolsRequest5Status$outboundSchema.default("live"),
|
|
@@ -79090,13 +79086,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79090
79086
|
required: arrayType(stringType()).optional()
|
|
79091
79087
|
});
|
|
79092
79088
|
RequestBodyTools$inboundSchema = objectType({
|
|
79093
|
-
id: stringType().default("
|
|
79089
|
+
id: stringType().default("01KA8HBD8QVW72PZ6PBHKKRGXG"),
|
|
79094
79090
|
name: stringType(),
|
|
79095
79091
|
description: stringType().optional(),
|
|
79096
79092
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
79097
79093
|
});
|
|
79098
79094
|
RequestBodyTools$outboundSchema = objectType({
|
|
79099
|
-
id: stringType().default("
|
|
79095
|
+
id: stringType().default("01KA8HBD8QVW72PZ6PBHKKRGXG"),
|
|
79100
79096
|
name: stringType(),
|
|
79101
79097
|
description: stringType().optional(),
|
|
79102
79098
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -79444,7 +79440,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79444
79440
|
code: stringType()
|
|
79445
79441
|
});
|
|
79446
79442
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
79447
|
-
_id: stringType().default("
|
|
79443
|
+
_id: stringType().default("tool_01KA8HBD8FFHG6JX77STCFGDE3"),
|
|
79448
79444
|
path: stringType(),
|
|
79449
79445
|
key: stringType(),
|
|
79450
79446
|
display_name: stringType().optional(),
|
|
@@ -79472,7 +79468,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79472
79468
|
});
|
|
79473
79469
|
});
|
|
79474
79470
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
79475
|
-
id: stringType().default("
|
|
79471
|
+
id: stringType().default("tool_01KA8HBD8FFHG6JX77STCFGDE3"),
|
|
79476
79472
|
path: stringType(),
|
|
79477
79473
|
key: stringType(),
|
|
79478
79474
|
displayName: stringType().optional(),
|
|
@@ -79524,13 +79520,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79524
79520
|
required: arrayType(stringType()).optional()
|
|
79525
79521
|
});
|
|
79526
79522
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
79527
|
-
id: stringType().default("
|
|
79523
|
+
id: stringType().default("01KA8HBD8E8MGYNGEDXN35822P"),
|
|
79528
79524
|
name: stringType(),
|
|
79529
79525
|
description: stringType().optional(),
|
|
79530
79526
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
79531
79527
|
});
|
|
79532
79528
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
79533
|
-
id: stringType().default("
|
|
79529
|
+
id: stringType().default("01KA8HBD8E8MGYNGEDXN35822P"),
|
|
79534
79530
|
name: stringType(),
|
|
79535
79531
|
description: stringType().optional(),
|
|
79536
79532
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -79560,7 +79556,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79560
79556
|
});
|
|
79561
79557
|
});
|
|
79562
79558
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
79563
|
-
_id: stringType().default("
|
|
79559
|
+
_id: stringType().default("tool_01KA8HBD8D8G4AQS2E4QTBNFCA"),
|
|
79564
79560
|
path: stringType(),
|
|
79565
79561
|
key: stringType(),
|
|
79566
79562
|
display_name: stringType().optional(),
|
|
@@ -79587,7 +79583,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79587
79583
|
});
|
|
79588
79584
|
});
|
|
79589
79585
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
79590
|
-
id: stringType().default("
|
|
79586
|
+
id: stringType().default("tool_01KA8HBD8D8G4AQS2E4QTBNFCA"),
|
|
79591
79587
|
path: stringType(),
|
|
79592
79588
|
key: stringType(),
|
|
79593
79589
|
displayName: stringType().optional(),
|
|
@@ -79676,7 +79672,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79676
79672
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
79677
79673
|
});
|
|
79678
79674
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
79679
|
-
_id: stringType().default("
|
|
79675
|
+
_id: stringType().default("tool_01KA8HBD8BX6GCF1Y10TQMK0RM"),
|
|
79680
79676
|
path: stringType(),
|
|
79681
79677
|
key: stringType(),
|
|
79682
79678
|
display_name: stringType().optional(),
|
|
@@ -79703,7 +79699,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79703
79699
|
});
|
|
79704
79700
|
});
|
|
79705
79701
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
79706
|
-
id: stringType().default("
|
|
79702
|
+
id: stringType().default("tool_01KA8HBD8BX6GCF1Y10TQMK0RM"),
|
|
79707
79703
|
path: stringType(),
|
|
79708
79704
|
key: stringType(),
|
|
79709
79705
|
displayName: stringType().optional(),
|
|
@@ -79764,7 +79760,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79764
79760
|
strict: booleanType().optional()
|
|
79765
79761
|
});
|
|
79766
79762
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
79767
|
-
_id: stringType().default("
|
|
79763
|
+
_id: stringType().default("tool_01KA8HBD8AMAJAVNY6XC1TG87Q"),
|
|
79768
79764
|
path: stringType(),
|
|
79769
79765
|
key: stringType(),
|
|
79770
79766
|
display_name: stringType().optional(),
|
|
@@ -79792,7 +79788,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79792
79788
|
});
|
|
79793
79789
|
});
|
|
79794
79790
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
79795
|
-
id: stringType().default("
|
|
79791
|
+
id: stringType().default("tool_01KA8HBD8AMAJAVNY6XC1TG87Q"),
|
|
79796
79792
|
path: stringType(),
|
|
79797
79793
|
key: stringType(),
|
|
79798
79794
|
displayName: stringType().optional(),
|
|
@@ -79856,7 +79852,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79856
79852
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
79857
79853
|
});
|
|
79858
79854
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
79859
|
-
_id: stringType().default("
|
|
79855
|
+
_id: stringType().default("tool_01KA8HBD89XEJ8VHW61BHYS40M"),
|
|
79860
79856
|
path: stringType(),
|
|
79861
79857
|
key: stringType(),
|
|
79862
79858
|
display_name: stringType().optional(),
|
|
@@ -79883,7 +79879,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79883
79879
|
});
|
|
79884
79880
|
});
|
|
79885
79881
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
79886
|
-
id: stringType().default("
|
|
79882
|
+
id: stringType().default("tool_01KA8HBD89XEJ8VHW61BHYS40M"),
|
|
79887
79883
|
path: stringType(),
|
|
79888
79884
|
key: stringType(),
|
|
79889
79885
|
displayName: stringType().optional(),
|
|
@@ -92355,7 +92351,7 @@ Updates a tool in the workspace.`,
|
|
|
92355
92351
|
function createMCPServer(deps) {
|
|
92356
92352
|
const server = new McpServer({
|
|
92357
92353
|
name: "Orq",
|
|
92358
|
-
version: "4.0.0-rc.
|
|
92354
|
+
version: "4.0.0-rc.39"
|
|
92359
92355
|
});
|
|
92360
92356
|
const client = new OrqCore({
|
|
92361
92357
|
apiKey: deps.apiKey,
|
|
@@ -93775,7 +93771,7 @@ var routes = rn({
|
|
|
93775
93771
|
var app = Ve(routes, {
|
|
93776
93772
|
name: "mcp",
|
|
93777
93773
|
versionInfo: {
|
|
93778
|
-
currentVersion: "4.0.0-rc.
|
|
93774
|
+
currentVersion: "4.0.0-rc.39"
|
|
93779
93775
|
}
|
|
93780
93776
|
});
|
|
93781
93777
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -93783,5 +93779,5 @@ export {
|
|
|
93783
93779
|
app
|
|
93784
93780
|
};
|
|
93785
93781
|
|
|
93786
|
-
//# debugId=
|
|
93782
|
+
//# debugId=11D10DCD62024C8464756E2164756E21
|
|
93787
93783
|
//# sourceMappingURL=mcp-server.js.map
|