@orq-ai/node 4.0.0-rc.36 → 4.0.0-rc.37
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 +248 -220
- 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 +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +5 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +2 -0
- 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.d.ts +2 -0
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +12 -10
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/duplicateagent.d.ts +5 -0
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +2 -0
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +2 -0
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +12 -10
- 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 +5 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +2 -0
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.d.ts +2 -0
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +12 -10
- package/models/operations/getalltools.js.map +1 -1
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +5 -0
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +2 -0
- 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.d.ts +2 -0
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +12 -10
- package/models/operations/retrievetool.js.map +1 -1
- package/models/operations/runagent.d.ts +2 -0
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +2 -0
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +2 -0
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +2 -0
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/syncmcptool.d.ts +2 -0
- package/models/operations/syncmcptool.d.ts.map +1 -1
- package/models/operations/syncmcptool.js +12 -10
- package/models/operations/syncmcptool.js.map +1 -1
- package/models/operations/updateagent.d.ts +5 -0
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +2 -0
- 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 +4 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +14 -10
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +7 -0
- 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 +14 -10
- package/src/models/operations/duplicateagent.ts +7 -0
- package/src/models/operations/duplicatetool.ts +14 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +7 -0
- package/src/models/operations/getalltools.ts +14 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +7 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +14 -10
- package/src/models/operations/runagent.ts +4 -0
- package/src/models/operations/streamrunagent.ts +4 -0
- package/src/models/operations/syncmcptool.ts +14 -10
- package/src/models/operations/updateagent.ts +7 -0
- 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 +18 -10
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34207
|
-
genVersion: "2.755.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.37",
|
|
34207
|
+
genVersion: "2.755.6",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.37 2.755.6 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -37716,6 +37716,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37716
37716
|
key: stringType().optional(),
|
|
37717
37717
|
action_type: stringType(),
|
|
37718
37718
|
display_name: stringType().optional(),
|
|
37719
|
+
description: stringType().optional(),
|
|
37719
37720
|
requires_approval: booleanType().default(false),
|
|
37720
37721
|
conditions: arrayType(lazyType(() => Conditions$inboundSchema)).optional(),
|
|
37721
37722
|
mcpServer: stringType().optional(),
|
|
@@ -37732,6 +37733,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37732
37733
|
key: stringType().optional(),
|
|
37733
37734
|
actionType: stringType(),
|
|
37734
37735
|
displayName: stringType().optional(),
|
|
37736
|
+
description: stringType().optional(),
|
|
37735
37737
|
requiresApproval: booleanType().default(false),
|
|
37736
37738
|
conditions: arrayType(lazyType(() => Conditions$outboundSchema)).optional(),
|
|
37737
37739
|
mcpServer: stringType().optional(),
|
|
@@ -38584,7 +38586,7 @@ var init_createbudget = __esm(() => {
|
|
|
38584
38586
|
is_active: booleanType(),
|
|
38585
38587
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38586
38588
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38587
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38589
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.429Z").transform((v2) => new Date(v2))
|
|
38588
38590
|
}).transform((v2) => {
|
|
38589
38591
|
return remap(v2, {
|
|
38590
38592
|
_id: "id",
|
|
@@ -38602,7 +38604,7 @@ var init_createbudget = __esm(() => {
|
|
|
38602
38604
|
isActive: booleanType(),
|
|
38603
38605
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38604
38606
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38605
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38607
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.429Z")).transform((v2) => v2.toISOString())
|
|
38606
38608
|
}).transform((v2) => {
|
|
38607
38609
|
return remap(v2, {
|
|
38608
38610
|
id: "_id",
|
|
@@ -38742,7 +38744,7 @@ var init_createcontact = __esm(() => {
|
|
|
38742
38744
|
tags: arrayType(stringType()).optional(),
|
|
38743
38745
|
metadata: recordType(anyType()).optional(),
|
|
38744
38746
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38745
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38747
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
38746
38748
|
}).transform((v2) => {
|
|
38747
38749
|
return remap(v2, {
|
|
38748
38750
|
_id: "id",
|
|
@@ -38762,7 +38764,7 @@ var init_createcontact = __esm(() => {
|
|
|
38762
38764
|
tags: arrayType(stringType()).optional(),
|
|
38763
38765
|
metadata: recordType(anyType()).optional(),
|
|
38764
38766
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38765
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38767
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
38766
38768
|
}).transform((v2) => {
|
|
38767
38769
|
return remap(v2, {
|
|
38768
38770
|
id: "_id",
|
|
@@ -38822,7 +38824,7 @@ var init_createdataset = __esm(() => {
|
|
|
38822
38824
|
created_by_id: stringType().optional(),
|
|
38823
38825
|
updated_by_id: stringType().optional(),
|
|
38824
38826
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38825
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38827
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
38826
38828
|
}).transform((v2) => {
|
|
38827
38829
|
return remap(v2, {
|
|
38828
38830
|
_id: "id",
|
|
@@ -38842,7 +38844,7 @@ var init_createdataset = __esm(() => {
|
|
|
38842
38844
|
createdById: stringType().optional(),
|
|
38843
38845
|
updatedById: stringType().optional(),
|
|
38844
38846
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38845
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38847
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
38846
38848
|
}).transform((v2) => {
|
|
38847
38849
|
return remap(v2, {
|
|
38848
38850
|
id: "_id",
|
|
@@ -39916,7 +39918,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39916
39918
|
human_review_id: stringType(),
|
|
39917
39919
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39918
39920
|
reviewed_by_id: stringType(),
|
|
39919
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39921
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.624Z").transform((v2) => new Date(v2)),
|
|
39920
39922
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39921
39923
|
values: arrayType(stringType())
|
|
39922
39924
|
}).transform((v2) => {
|
|
@@ -39933,7 +39935,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39933
39935
|
humanReviewId: stringType(),
|
|
39934
39936
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39935
39937
|
reviewedById: stringType(),
|
|
39936
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39938
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.624Z")).transform((v2) => v2.toISOString()),
|
|
39937
39939
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39938
39940
|
values: arrayType(stringType())
|
|
39939
39941
|
}).transform((v2) => {
|
|
@@ -39956,7 +39958,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39956
39958
|
human_review_id: stringType(),
|
|
39957
39959
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39958
39960
|
reviewed_by_id: stringType(),
|
|
39959
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39961
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.624Z").transform((v2) => new Date(v2)),
|
|
39960
39962
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39961
39963
|
value: numberType()
|
|
39962
39964
|
}).transform((v2) => {
|
|
@@ -39973,7 +39975,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39973
39975
|
humanReviewId: stringType(),
|
|
39974
39976
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39975
39977
|
reviewedById: stringType(),
|
|
39976
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39978
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.624Z")).transform((v2) => v2.toISOString()),
|
|
39977
39979
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39978
39980
|
value: numberType()
|
|
39979
39981
|
}).transform((v2) => {
|
|
@@ -39996,7 +39998,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39996
39998
|
human_review_id: stringType(),
|
|
39997
39999
|
source: Source$inboundSchema.default("orq"),
|
|
39998
40000
|
reviewed_by_id: stringType(),
|
|
39999
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40001
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.623Z").transform((v2) => new Date(v2)),
|
|
40000
40002
|
type: EvaluationsType$inboundSchema,
|
|
40001
40003
|
value: stringType()
|
|
40002
40004
|
}).transform((v2) => {
|
|
@@ -40013,7 +40015,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40013
40015
|
humanReviewId: stringType(),
|
|
40014
40016
|
source: Source$outboundSchema.default("orq"),
|
|
40015
40017
|
reviewedById: stringType(),
|
|
40016
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40018
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.623Z")).transform((v2) => v2.toISOString()),
|
|
40017
40019
|
type: EvaluationsType$outboundSchema,
|
|
40018
40020
|
value: stringType()
|
|
40019
40021
|
}).transform((v2) => {
|
|
@@ -40056,7 +40058,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40056
40058
|
created_by_id: stringType().optional(),
|
|
40057
40059
|
updated_by_id: stringType().optional(),
|
|
40058
40060
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40059
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
40061
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
40060
40062
|
}).transform((v2) => {
|
|
40061
40063
|
return remap(v2, {
|
|
40062
40064
|
_id: "id",
|
|
@@ -40090,7 +40092,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40090
40092
|
createdById: stringType().optional(),
|
|
40091
40093
|
updatedById: stringType().optional(),
|
|
40092
40094
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40093
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40095
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
40094
40096
|
}).transform((v2) => {
|
|
40095
40097
|
return remap(v2, {
|
|
40096
40098
|
id: "_id",
|
|
@@ -40269,7 +40271,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40269
40271
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40270
40272
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40271
40273
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40272
|
-
_id: stringType().default("
|
|
40274
|
+
_id: stringType().default("01KA80WWVNMSPDT0W09PS5AC24"),
|
|
40273
40275
|
display_name: stringType(),
|
|
40274
40276
|
description: stringType().optional(),
|
|
40275
40277
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40292,7 +40294,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40292
40294
|
});
|
|
40293
40295
|
});
|
|
40294
40296
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40295
|
-
id: stringType().default("
|
|
40297
|
+
id: stringType().default("01KA80WWVNMSPDT0W09PS5AC24"),
|
|
40296
40298
|
displayName: stringType(),
|
|
40297
40299
|
description: stringType().optional(),
|
|
40298
40300
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -41013,8 +41015,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41013
41015
|
Typescript$inboundSchema = objectType({
|
|
41014
41016
|
_id: stringType(),
|
|
41015
41017
|
description: stringType(),
|
|
41016
|
-
created: stringType().default("2025-11-
|
|
41017
|
-
updated: stringType().default("2025-11-
|
|
41018
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41019
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41018
41020
|
guardrail_config: unionType([
|
|
41019
41021
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
41020
41022
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -41031,8 +41033,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41031
41033
|
Typescript$outboundSchema = objectType({
|
|
41032
41034
|
id: stringType(),
|
|
41033
41035
|
description: stringType(),
|
|
41034
|
-
created: stringType().default("2025-11-
|
|
41035
|
-
updated: stringType().default("2025-11-
|
|
41036
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41037
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41036
41038
|
guardrailConfig: unionType([
|
|
41037
41039
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
41038
41040
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -41089,8 +41091,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41089
41091
|
Ragas$inboundSchema = objectType({
|
|
41090
41092
|
_id: stringType(),
|
|
41091
41093
|
description: stringType(),
|
|
41092
|
-
created: stringType().default("2025-11-
|
|
41093
|
-
updated: stringType().default("2025-11-
|
|
41094
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41095
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41094
41096
|
guardrail_config: unionType([
|
|
41095
41097
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
41096
41098
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -41109,8 +41111,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41109
41111
|
Ragas$outboundSchema = objectType({
|
|
41110
41112
|
id: stringType(),
|
|
41111
41113
|
description: stringType(),
|
|
41112
|
-
created: stringType().default("2025-11-
|
|
41113
|
-
updated: stringType().default("2025-11-
|
|
41114
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41115
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41114
41116
|
guardrailConfig: unionType([
|
|
41115
41117
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
41116
41118
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41547,8 +41549,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41547
41549
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41548
41550
|
_id: stringType(),
|
|
41549
41551
|
description: stringType(),
|
|
41550
|
-
created: stringType().default("2025-11-
|
|
41551
|
-
updated: stringType().default("2025-11-
|
|
41552
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41553
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41552
41554
|
guardrail_config: unionType([
|
|
41553
41555
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41554
41556
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41602,8 +41604,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41602
41604
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41603
41605
|
id: stringType(),
|
|
41604
41606
|
description: stringType(),
|
|
41605
|
-
created: stringType().default("2025-11-
|
|
41606
|
-
updated: stringType().default("2025-11-
|
|
41607
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41608
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41607
41609
|
guardrailConfig: unionType([
|
|
41608
41610
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41609
41611
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41695,8 +41697,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41695
41697
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41696
41698
|
_id: stringType(),
|
|
41697
41699
|
description: stringType(),
|
|
41698
|
-
created: stringType().default("2025-11-
|
|
41699
|
-
updated: stringType().default("2025-11-
|
|
41700
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41701
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41700
41702
|
guardrail_config: unionType([
|
|
41701
41703
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41702
41704
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41713,8 +41715,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41713
41715
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41714
41716
|
id: stringType(),
|
|
41715
41717
|
description: stringType(),
|
|
41716
|
-
created: stringType().default("2025-11-
|
|
41717
|
-
updated: stringType().default("2025-11-
|
|
41718
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41719
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41718
41720
|
guardrailConfig: unionType([
|
|
41719
41721
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41720
41722
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41771,8 +41773,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41771
41773
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41772
41774
|
_id: stringType(),
|
|
41773
41775
|
description: stringType(),
|
|
41774
|
-
created: stringType().default("2025-11-
|
|
41775
|
-
updated: stringType().default("2025-11-
|
|
41776
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41777
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41776
41778
|
guardrail_config: unionType([
|
|
41777
41779
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41778
41780
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41792,8 +41794,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41792
41794
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41793
41795
|
id: stringType(),
|
|
41794
41796
|
description: stringType(),
|
|
41795
|
-
created: stringType().default("2025-11-
|
|
41796
|
-
updated: stringType().default("2025-11-
|
|
41797
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41798
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41797
41799
|
guardrailConfig: unionType([
|
|
41798
41800
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41799
41801
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41851,8 +41853,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41851
41853
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41852
41854
|
_id: stringType(),
|
|
41853
41855
|
description: stringType(),
|
|
41854
|
-
created: stringType().default("2025-11-
|
|
41855
|
-
updated: stringType().default("2025-11-
|
|
41856
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41857
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41856
41858
|
guardrail_config: unionType([
|
|
41857
41859
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41858
41860
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41869,8 +41871,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41869
41871
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41870
41872
|
id: stringType(),
|
|
41871
41873
|
description: stringType(),
|
|
41872
|
-
created: stringType().default("2025-11-
|
|
41873
|
-
updated: stringType().default("2025-11-
|
|
41874
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41875
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41874
41876
|
guardrailConfig: unionType([
|
|
41875
41877
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41876
41878
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41925,8 +41927,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41925
41927
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41926
41928
|
_id: stringType(),
|
|
41927
41929
|
description: stringType(),
|
|
41928
|
-
created: stringType().default("2025-11-
|
|
41929
|
-
updated: stringType().default("2025-11-
|
|
41930
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41931
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41930
41932
|
guardrail_config: unionType([
|
|
41931
41933
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41932
41934
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41944,8 +41946,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41944
41946
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41945
41947
|
id: stringType(),
|
|
41946
41948
|
description: stringType(),
|
|
41947
|
-
created: stringType().default("2025-11-
|
|
41948
|
-
updated: stringType().default("2025-11-
|
|
41949
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41950
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
41949
41951
|
guardrailConfig: unionType([
|
|
41950
41952
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41951
41953
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -45226,7 +45228,7 @@ var init_createtool = __esm(() => {
|
|
|
45226
45228
|
code: stringType()
|
|
45227
45229
|
});
|
|
45228
45230
|
ResponseBody5$inboundSchema = objectType({
|
|
45229
|
-
_id: stringType().default("
|
|
45231
|
+
_id: stringType().default("tool_01KA80WWPSRZCJ08FG24938RDR"),
|
|
45230
45232
|
path: stringType(),
|
|
45231
45233
|
key: stringType(),
|
|
45232
45234
|
display_name: stringType().optional(),
|
|
@@ -45254,7 +45256,7 @@ var init_createtool = __esm(() => {
|
|
|
45254
45256
|
});
|
|
45255
45257
|
});
|
|
45256
45258
|
ResponseBody5$outboundSchema = objectType({
|
|
45257
|
-
id: stringType().default("
|
|
45259
|
+
id: stringType().default("tool_01KA80WWPSRZCJ08FG24938RDR"),
|
|
45258
45260
|
path: stringType(),
|
|
45259
45261
|
key: stringType(),
|
|
45260
45262
|
displayName: stringType().optional(),
|
|
@@ -45306,11 +45308,13 @@ var init_createtool = __esm(() => {
|
|
|
45306
45308
|
required: arrayType(stringType()).optional()
|
|
45307
45309
|
});
|
|
45308
45310
|
ResponseBodyTools$inboundSchema = objectType({
|
|
45311
|
+
id: stringType().default("01KA80WWPRG794GHD9AJAC1C84"),
|
|
45309
45312
|
name: stringType(),
|
|
45310
45313
|
description: stringType().optional(),
|
|
45311
45314
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
45312
45315
|
});
|
|
45313
45316
|
ResponseBodyTools$outboundSchema = objectType({
|
|
45317
|
+
id: stringType().default("01KA80WWPRG794GHD9AJAC1C84"),
|
|
45314
45318
|
name: stringType(),
|
|
45315
45319
|
description: stringType().optional(),
|
|
45316
45320
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -45340,7 +45344,7 @@ var init_createtool = __esm(() => {
|
|
|
45340
45344
|
});
|
|
45341
45345
|
});
|
|
45342
45346
|
ResponseBody4$inboundSchema = objectType({
|
|
45343
|
-
_id: stringType().default("
|
|
45347
|
+
_id: stringType().default("tool_01KA80WWPPFXN1C2N45N3CJXQR"),
|
|
45344
45348
|
path: stringType(),
|
|
45345
45349
|
key: stringType(),
|
|
45346
45350
|
display_name: stringType().optional(),
|
|
@@ -45367,7 +45371,7 @@ var init_createtool = __esm(() => {
|
|
|
45367
45371
|
});
|
|
45368
45372
|
});
|
|
45369
45373
|
ResponseBody4$outboundSchema = objectType({
|
|
45370
|
-
id: stringType().default("
|
|
45374
|
+
id: stringType().default("tool_01KA80WWPPFXN1C2N45N3CJXQR"),
|
|
45371
45375
|
path: stringType(),
|
|
45372
45376
|
key: stringType(),
|
|
45373
45377
|
displayName: stringType().optional(),
|
|
@@ -45456,7 +45460,7 @@ var init_createtool = __esm(() => {
|
|
|
45456
45460
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45457
45461
|
});
|
|
45458
45462
|
ResponseBody3$inboundSchema = objectType({
|
|
45459
|
-
_id: stringType().default("
|
|
45463
|
+
_id: stringType().default("tool_01KA80WWPKFYZHHSYJV3WXSP4J"),
|
|
45460
45464
|
path: stringType(),
|
|
45461
45465
|
key: stringType(),
|
|
45462
45466
|
display_name: stringType().optional(),
|
|
@@ -45483,7 +45487,7 @@ var init_createtool = __esm(() => {
|
|
|
45483
45487
|
});
|
|
45484
45488
|
});
|
|
45485
45489
|
ResponseBody3$outboundSchema = objectType({
|
|
45486
|
-
id: stringType().default("
|
|
45490
|
+
id: stringType().default("tool_01KA80WWPKFYZHHSYJV3WXSP4J"),
|
|
45487
45491
|
path: stringType(),
|
|
45488
45492
|
key: stringType(),
|
|
45489
45493
|
displayName: stringType().optional(),
|
|
@@ -45544,7 +45548,7 @@ var init_createtool = __esm(() => {
|
|
|
45544
45548
|
strict: booleanType().optional()
|
|
45545
45549
|
});
|
|
45546
45550
|
ResponseBody2$inboundSchema = objectType({
|
|
45547
|
-
_id: stringType().default("
|
|
45551
|
+
_id: stringType().default("tool_01KA80WWPHSCDJQB4PRYP1WF1A"),
|
|
45548
45552
|
path: stringType(),
|
|
45549
45553
|
key: stringType(),
|
|
45550
45554
|
display_name: stringType().optional(),
|
|
@@ -45572,7 +45576,7 @@ var init_createtool = __esm(() => {
|
|
|
45572
45576
|
});
|
|
45573
45577
|
});
|
|
45574
45578
|
ResponseBody2$outboundSchema = objectType({
|
|
45575
|
-
id: stringType().default("
|
|
45579
|
+
id: stringType().default("tool_01KA80WWPHSCDJQB4PRYP1WF1A"),
|
|
45576
45580
|
path: stringType(),
|
|
45577
45581
|
key: stringType(),
|
|
45578
45582
|
displayName: stringType().optional(),
|
|
@@ -45636,7 +45640,7 @@ var init_createtool = __esm(() => {
|
|
|
45636
45640
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
45637
45641
|
});
|
|
45638
45642
|
ResponseBody1$inboundSchema = objectType({
|
|
45639
|
-
_id: stringType().default("
|
|
45643
|
+
_id: stringType().default("tool_01KA80WWPE6QV8N8VFAQQ24C9T"),
|
|
45640
45644
|
path: stringType(),
|
|
45641
45645
|
key: stringType(),
|
|
45642
45646
|
display_name: stringType().optional(),
|
|
@@ -45663,7 +45667,7 @@ var init_createtool = __esm(() => {
|
|
|
45663
45667
|
});
|
|
45664
45668
|
});
|
|
45665
45669
|
ResponseBody1$outboundSchema = objectType({
|
|
45666
|
-
id: stringType().default("
|
|
45670
|
+
id: stringType().default("tool_01KA80WWPE6QV8N8VFAQQ24C9T"),
|
|
45667
45671
|
path: stringType(),
|
|
45668
45672
|
key: stringType(),
|
|
45669
45673
|
displayName: stringType().optional(),
|
|
@@ -51803,6 +51807,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51803
51807
|
key: stringType().optional(),
|
|
51804
51808
|
action_type: stringType(),
|
|
51805
51809
|
display_name: stringType().optional(),
|
|
51810
|
+
description: stringType().optional(),
|
|
51806
51811
|
requires_approval: booleanType().default(false),
|
|
51807
51812
|
conditions: arrayType(lazyType(() => DuplicateAgentConditions$inboundSchema)).optional(),
|
|
51808
51813
|
mcpServer: stringType().optional(),
|
|
@@ -51819,6 +51824,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51819
51824
|
key: stringType().optional(),
|
|
51820
51825
|
actionType: stringType(),
|
|
51821
51826
|
displayName: stringType().optional(),
|
|
51827
|
+
description: stringType().optional(),
|
|
51822
51828
|
requiresApproval: booleanType().default(false),
|
|
51823
51829
|
conditions: arrayType(lazyType(() => DuplicateAgentConditions$outboundSchema)).optional(),
|
|
51824
51830
|
mcpServer: stringType().optional(),
|
|
@@ -52663,7 +52669,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52663
52669
|
code: stringType()
|
|
52664
52670
|
});
|
|
52665
52671
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52666
|
-
_id: stringType().default("
|
|
52672
|
+
_id: stringType().default("tool_01KA80WWR0CJYVVVFVJB27C4M0"),
|
|
52667
52673
|
path: stringType(),
|
|
52668
52674
|
key: stringType(),
|
|
52669
52675
|
display_name: stringType().optional(),
|
|
@@ -52691,7 +52697,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52691
52697
|
});
|
|
52692
52698
|
});
|
|
52693
52699
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52694
|
-
id: stringType().default("
|
|
52700
|
+
id: stringType().default("tool_01KA80WWR0CJYVVVFVJB27C4M0"),
|
|
52695
52701
|
path: stringType(),
|
|
52696
52702
|
key: stringType(),
|
|
52697
52703
|
displayName: stringType().optional(),
|
|
@@ -52743,11 +52749,13 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52743
52749
|
required: arrayType(stringType()).optional()
|
|
52744
52750
|
});
|
|
52745
52751
|
DuplicateToolResponseBodyTools$inboundSchema = objectType({
|
|
52752
|
+
id: stringType().default("01KA80WWQS5DCH63XAE44DS2HX"),
|
|
52746
52753
|
name: stringType(),
|
|
52747
52754
|
description: stringType().optional(),
|
|
52748
52755
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$inboundSchema)
|
|
52749
52756
|
});
|
|
52750
52757
|
DuplicateToolResponseBodyTools$outboundSchema = objectType({
|
|
52758
|
+
id: stringType().default("01KA80WWQS5DCH63XAE44DS2HX"),
|
|
52751
52759
|
name: stringType(),
|
|
52752
52760
|
description: stringType().optional(),
|
|
52753
52761
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -52777,7 +52785,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52777
52785
|
});
|
|
52778
52786
|
});
|
|
52779
52787
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52780
|
-
_id: stringType().default("
|
|
52788
|
+
_id: stringType().default("tool_01KA80WWQRSHNCS0MASEG5ZAJV"),
|
|
52781
52789
|
path: stringType(),
|
|
52782
52790
|
key: stringType(),
|
|
52783
52791
|
display_name: stringType().optional(),
|
|
@@ -52804,7 +52812,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52804
52812
|
});
|
|
52805
52813
|
});
|
|
52806
52814
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52807
|
-
id: stringType().default("
|
|
52815
|
+
id: stringType().default("tool_01KA80WWQRSHNCS0MASEG5ZAJV"),
|
|
52808
52816
|
path: stringType(),
|
|
52809
52817
|
key: stringType(),
|
|
52810
52818
|
displayName: stringType().optional(),
|
|
@@ -52893,7 +52901,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52893
52901
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52894
52902
|
});
|
|
52895
52903
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52896
|
-
_id: stringType().default("
|
|
52904
|
+
_id: stringType().default("tool_01KA80WWQPQF6AGBKFQ021TBW8"),
|
|
52897
52905
|
path: stringType(),
|
|
52898
52906
|
key: stringType(),
|
|
52899
52907
|
display_name: stringType().optional(),
|
|
@@ -52920,7 +52928,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52920
52928
|
});
|
|
52921
52929
|
});
|
|
52922
52930
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52923
|
-
id: stringType().default("
|
|
52931
|
+
id: stringType().default("tool_01KA80WWQPQF6AGBKFQ021TBW8"),
|
|
52924
52932
|
path: stringType(),
|
|
52925
52933
|
key: stringType(),
|
|
52926
52934
|
displayName: stringType().optional(),
|
|
@@ -52981,7 +52989,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52981
52989
|
strict: booleanType().optional()
|
|
52982
52990
|
});
|
|
52983
52991
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52984
|
-
_id: stringType().default("
|
|
52992
|
+
_id: stringType().default("tool_01KA80WWQMAR93VRDZ8CCN4RAR"),
|
|
52985
52993
|
path: stringType(),
|
|
52986
52994
|
key: stringType(),
|
|
52987
52995
|
display_name: stringType().optional(),
|
|
@@ -53009,7 +53017,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53009
53017
|
});
|
|
53010
53018
|
});
|
|
53011
53019
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
53012
|
-
id: stringType().default("
|
|
53020
|
+
id: stringType().default("tool_01KA80WWQMAR93VRDZ8CCN4RAR"),
|
|
53013
53021
|
path: stringType(),
|
|
53014
53022
|
key: stringType(),
|
|
53015
53023
|
displayName: stringType().optional(),
|
|
@@ -53073,7 +53081,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53073
53081
|
parameters: lazyType(() => DuplicateToolResponseBodyParameters$outboundSchema).optional()
|
|
53074
53082
|
});
|
|
53075
53083
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
53076
|
-
_id: stringType().default("
|
|
53084
|
+
_id: stringType().default("tool_01KA80WWQKRMJ7ZDEB4WCYBZHE"),
|
|
53077
53085
|
path: stringType(),
|
|
53078
53086
|
key: stringType(),
|
|
53079
53087
|
display_name: stringType().optional(),
|
|
@@ -53100,7 +53108,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53100
53108
|
});
|
|
53101
53109
|
});
|
|
53102
53110
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
53103
|
-
id: stringType().default("
|
|
53111
|
+
id: stringType().default("tool_01KA80WWQKRMJ7ZDEB4WCYBZHE"),
|
|
53104
53112
|
path: stringType(),
|
|
53105
53113
|
key: stringType(),
|
|
53106
53114
|
displayName: stringType().optional(),
|
|
@@ -53196,7 +53204,7 @@ var init_fileget = __esm(() => {
|
|
|
53196
53204
|
bytes: numberType(),
|
|
53197
53205
|
file_name: stringType(),
|
|
53198
53206
|
workspace_id: stringType(),
|
|
53199
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53207
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T04:24:09.936Z").transform((v2) => new Date(v2))
|
|
53200
53208
|
}).transform((v2) => {
|
|
53201
53209
|
return remap(v2, {
|
|
53202
53210
|
_id: "id",
|
|
@@ -53212,7 +53220,7 @@ var init_fileget = __esm(() => {
|
|
|
53212
53220
|
bytes: numberType(),
|
|
53213
53221
|
fileName: stringType(),
|
|
53214
53222
|
workspaceId: stringType(),
|
|
53215
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53223
|
+
created: dateType().default(() => new Date("2025-11-17T04:24:09.936Z")).transform((v2) => v2.toISOString())
|
|
53216
53224
|
}).transform((v2) => {
|
|
53217
53225
|
return remap(v2, {
|
|
53218
53226
|
id: "_id",
|
|
@@ -53267,7 +53275,7 @@ var init_filelist = __esm(() => {
|
|
|
53267
53275
|
bytes: numberType(),
|
|
53268
53276
|
file_name: stringType(),
|
|
53269
53277
|
workspace_id: stringType(),
|
|
53270
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53278
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T04:24:09.936Z").transform((v2) => new Date(v2))
|
|
53271
53279
|
}).transform((v2) => {
|
|
53272
53280
|
return remap(v2, {
|
|
53273
53281
|
_id: "id",
|
|
@@ -53283,7 +53291,7 @@ var init_filelist = __esm(() => {
|
|
|
53283
53291
|
bytes: numberType(),
|
|
53284
53292
|
fileName: stringType(),
|
|
53285
53293
|
workspaceId: stringType(),
|
|
53286
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53294
|
+
created: dateType().default(() => new Date("2025-11-17T04:24:09.936Z")).transform((v2) => v2.toISOString())
|
|
53287
53295
|
}).transform((v2) => {
|
|
53288
53296
|
return remap(v2, {
|
|
53289
53297
|
id: "_id",
|
|
@@ -53391,7 +53399,7 @@ var init_fileupload = __esm(() => {
|
|
|
53391
53399
|
bytes: numberType(),
|
|
53392
53400
|
file_name: stringType(),
|
|
53393
53401
|
workspace_id: stringType(),
|
|
53394
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53402
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T04:24:09.936Z").transform((v2) => new Date(v2))
|
|
53395
53403
|
}).transform((v2) => {
|
|
53396
53404
|
return remap(v2, {
|
|
53397
53405
|
_id: "id",
|
|
@@ -53407,7 +53415,7 @@ var init_fileupload = __esm(() => {
|
|
|
53407
53415
|
bytes: numberType(),
|
|
53408
53416
|
fileName: stringType(),
|
|
53409
53417
|
workspaceId: stringType(),
|
|
53410
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53418
|
+
created: dateType().default(() => new Date("2025-11-17T04:24:09.936Z")).transform((v2) => v2.toISOString())
|
|
53411
53419
|
}).transform((v2) => {
|
|
53412
53420
|
return remap(v2, {
|
|
53413
53421
|
id: "_id",
|
|
@@ -53555,6 +53563,7 @@ var init_getagent2 = __esm(() => {
|
|
|
53555
53563
|
key: stringType().optional(),
|
|
53556
53564
|
action_type: stringType(),
|
|
53557
53565
|
display_name: stringType().optional(),
|
|
53566
|
+
description: stringType().optional(),
|
|
53558
53567
|
requires_approval: booleanType().default(false),
|
|
53559
53568
|
conditions: arrayType(lazyType(() => GetAgentConditions$inboundSchema)).optional(),
|
|
53560
53569
|
mcpServer: stringType().optional(),
|
|
@@ -53571,6 +53580,7 @@ var init_getagent2 = __esm(() => {
|
|
|
53571
53580
|
key: stringType().optional(),
|
|
53572
53581
|
actionType: stringType(),
|
|
53573
53582
|
displayName: stringType().optional(),
|
|
53583
|
+
description: stringType().optional(),
|
|
53574
53584
|
requiresApproval: booleanType().default(false),
|
|
53575
53585
|
conditions: arrayType(lazyType(() => GetAgentConditions$outboundSchema)).optional(),
|
|
53576
53586
|
mcpServer: stringType().optional(),
|
|
@@ -55777,7 +55787,7 @@ var init_getalltools = __esm(() => {
|
|
|
55777
55787
|
code: stringType()
|
|
55778
55788
|
});
|
|
55779
55789
|
Data5$inboundSchema = objectType({
|
|
55780
|
-
_id: stringType().default("
|
|
55790
|
+
_id: stringType().default("tool_01KA80WWNRBAXQ80TSBQYGN0Q2"),
|
|
55781
55791
|
path: stringType(),
|
|
55782
55792
|
key: stringType(),
|
|
55783
55793
|
display_name: stringType().optional(),
|
|
@@ -55805,7 +55815,7 @@ var init_getalltools = __esm(() => {
|
|
|
55805
55815
|
});
|
|
55806
55816
|
});
|
|
55807
55817
|
Data5$outboundSchema = objectType({
|
|
55808
|
-
id: stringType().default("
|
|
55818
|
+
id: stringType().default("tool_01KA80WWNRBAXQ80TSBQYGN0Q2"),
|
|
55809
55819
|
path: stringType(),
|
|
55810
55820
|
key: stringType(),
|
|
55811
55821
|
displayName: stringType().optional(),
|
|
@@ -55857,11 +55867,13 @@ var init_getalltools = __esm(() => {
|
|
|
55857
55867
|
required: arrayType(stringType()).optional()
|
|
55858
55868
|
});
|
|
55859
55869
|
DataTools$inboundSchema = objectType({
|
|
55870
|
+
id: stringType().default("01KA80WWNQXM0T94301HRWZASZ"),
|
|
55860
55871
|
name: stringType(),
|
|
55861
55872
|
description: stringType().optional(),
|
|
55862
55873
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55863
55874
|
});
|
|
55864
55875
|
DataTools$outboundSchema = objectType({
|
|
55876
|
+
id: stringType().default("01KA80WWNQXM0T94301HRWZASZ"),
|
|
55865
55877
|
name: stringType(),
|
|
55866
55878
|
description: stringType().optional(),
|
|
55867
55879
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55891,7 +55903,7 @@ var init_getalltools = __esm(() => {
|
|
|
55891
55903
|
});
|
|
55892
55904
|
});
|
|
55893
55905
|
Data4$inboundSchema = objectType({
|
|
55894
|
-
_id: stringType().default("
|
|
55906
|
+
_id: stringType().default("tool_01KA80WWNNSHXNAT6QRNAJ01FZ"),
|
|
55895
55907
|
path: stringType(),
|
|
55896
55908
|
key: stringType(),
|
|
55897
55909
|
display_name: stringType().optional(),
|
|
@@ -55918,7 +55930,7 @@ var init_getalltools = __esm(() => {
|
|
|
55918
55930
|
});
|
|
55919
55931
|
});
|
|
55920
55932
|
Data4$outboundSchema = objectType({
|
|
55921
|
-
id: stringType().default("
|
|
55933
|
+
id: stringType().default("tool_01KA80WWNNSHXNAT6QRNAJ01FZ"),
|
|
55922
55934
|
path: stringType(),
|
|
55923
55935
|
key: stringType(),
|
|
55924
55936
|
displayName: stringType().optional(),
|
|
@@ -56007,7 +56019,7 @@ var init_getalltools = __esm(() => {
|
|
|
56007
56019
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
56008
56020
|
});
|
|
56009
56021
|
Data3$inboundSchema = objectType({
|
|
56010
|
-
_id: stringType().default("
|
|
56022
|
+
_id: stringType().default("tool_01KA80WWNHRQDF9GKQ5HN30CMX"),
|
|
56011
56023
|
path: stringType(),
|
|
56012
56024
|
key: stringType(),
|
|
56013
56025
|
display_name: stringType().optional(),
|
|
@@ -56034,7 +56046,7 @@ var init_getalltools = __esm(() => {
|
|
|
56034
56046
|
});
|
|
56035
56047
|
});
|
|
56036
56048
|
Data3$outboundSchema = objectType({
|
|
56037
|
-
id: stringType().default("
|
|
56049
|
+
id: stringType().default("tool_01KA80WWNHRQDF9GKQ5HN30CMX"),
|
|
56038
56050
|
path: stringType(),
|
|
56039
56051
|
key: stringType(),
|
|
56040
56052
|
displayName: stringType().optional(),
|
|
@@ -56095,7 +56107,7 @@ var init_getalltools = __esm(() => {
|
|
|
56095
56107
|
strict: booleanType().optional()
|
|
56096
56108
|
});
|
|
56097
56109
|
Data2$inboundSchema = objectType({
|
|
56098
|
-
_id: stringType().default("
|
|
56110
|
+
_id: stringType().default("tool_01KA80WWNF99C87CMJJN33MR2P"),
|
|
56099
56111
|
path: stringType(),
|
|
56100
56112
|
key: stringType(),
|
|
56101
56113
|
display_name: stringType().optional(),
|
|
@@ -56123,7 +56135,7 @@ var init_getalltools = __esm(() => {
|
|
|
56123
56135
|
});
|
|
56124
56136
|
});
|
|
56125
56137
|
Data2$outboundSchema = objectType({
|
|
56126
|
-
id: stringType().default("
|
|
56138
|
+
id: stringType().default("tool_01KA80WWNF99C87CMJJN33MR2P"),
|
|
56127
56139
|
path: stringType(),
|
|
56128
56140
|
key: stringType(),
|
|
56129
56141
|
displayName: stringType().optional(),
|
|
@@ -56187,7 +56199,7 @@ var init_getalltools = __esm(() => {
|
|
|
56187
56199
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
56188
56200
|
});
|
|
56189
56201
|
Data1$inboundSchema = objectType({
|
|
56190
|
-
_id: stringType().default("
|
|
56202
|
+
_id: stringType().default("tool_01KA80WWNENJ8N9QGRHVY067Q8"),
|
|
56191
56203
|
path: stringType(),
|
|
56192
56204
|
key: stringType(),
|
|
56193
56205
|
display_name: stringType().optional(),
|
|
@@ -56214,7 +56226,7 @@ var init_getalltools = __esm(() => {
|
|
|
56214
56226
|
});
|
|
56215
56227
|
});
|
|
56216
56228
|
Data1$outboundSchema = objectType({
|
|
56217
|
-
id: stringType().default("
|
|
56229
|
+
id: stringType().default("tool_01KA80WWNENJ8N9QGRHVY067Q8"),
|
|
56218
56230
|
path: stringType(),
|
|
56219
56231
|
key: stringType(),
|
|
56220
56232
|
displayName: stringType().optional(),
|
|
@@ -56356,7 +56368,7 @@ var init_getbudget = __esm(() => {
|
|
|
56356
56368
|
is_active: booleanType(),
|
|
56357
56369
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
56358
56370
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56359
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
56371
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.429Z").transform((v2) => new Date(v2))
|
|
56360
56372
|
}).transform((v2) => {
|
|
56361
56373
|
return remap(v2, {
|
|
56362
56374
|
_id: "id",
|
|
@@ -56374,7 +56386,7 @@ var init_getbudget = __esm(() => {
|
|
|
56374
56386
|
isActive: booleanType(),
|
|
56375
56387
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
56376
56388
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56377
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
56389
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.429Z")).transform((v2) => v2.toISOString())
|
|
56378
56390
|
}).transform((v2) => {
|
|
56379
56391
|
return remap(v2, {
|
|
56380
56392
|
id: "_id",
|
|
@@ -56743,8 +56755,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56743
56755
|
DataTypescript$inboundSchema = objectType({
|
|
56744
56756
|
_id: stringType(),
|
|
56745
56757
|
description: stringType(),
|
|
56746
|
-
created: stringType().default("2025-11-
|
|
56747
|
-
updated: stringType().default("2025-11-
|
|
56758
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56759
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56748
56760
|
guardrail_config: unionType([
|
|
56749
56761
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56750
56762
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56761,8 +56773,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56761
56773
|
DataTypescript$outboundSchema = objectType({
|
|
56762
56774
|
id: stringType(),
|
|
56763
56775
|
description: stringType(),
|
|
56764
|
-
created: stringType().default("2025-11-
|
|
56765
|
-
updated: stringType().default("2025-11-
|
|
56776
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56777
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56766
56778
|
guardrailConfig: unionType([
|
|
56767
56779
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56768
56780
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56819,8 +56831,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56819
56831
|
DataRagas$inboundSchema = objectType({
|
|
56820
56832
|
_id: stringType(),
|
|
56821
56833
|
description: stringType(),
|
|
56822
|
-
created: stringType().default("2025-11-
|
|
56823
|
-
updated: stringType().default("2025-11-
|
|
56834
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56835
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56824
56836
|
guardrail_config: unionType([
|
|
56825
56837
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56826
56838
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56839,8 +56851,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56839
56851
|
DataRagas$outboundSchema = objectType({
|
|
56840
56852
|
id: stringType(),
|
|
56841
56853
|
description: stringType(),
|
|
56842
|
-
created: stringType().default("2025-11-
|
|
56843
|
-
updated: stringType().default("2025-11-
|
|
56854
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56855
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
56844
56856
|
guardrailConfig: unionType([
|
|
56845
56857
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56846
56858
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -57277,8 +57289,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57277
57289
|
DataFunction$inboundSchema = objectType({
|
|
57278
57290
|
_id: stringType(),
|
|
57279
57291
|
description: stringType(),
|
|
57280
|
-
created: stringType().default("2025-11-
|
|
57281
|
-
updated: stringType().default("2025-11-
|
|
57292
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57293
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57282
57294
|
guardrail_config: unionType([
|
|
57283
57295
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
57284
57296
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -57332,8 +57344,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57332
57344
|
DataFunction$outboundSchema = objectType({
|
|
57333
57345
|
id: stringType(),
|
|
57334
57346
|
description: stringType(),
|
|
57335
|
-
created: stringType().default("2025-11-
|
|
57336
|
-
updated: stringType().default("2025-11-
|
|
57347
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57348
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57337
57349
|
guardrailConfig: unionType([
|
|
57338
57350
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
57339
57351
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -57425,8 +57437,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57425
57437
|
DataPython$inboundSchema = objectType({
|
|
57426
57438
|
_id: stringType(),
|
|
57427
57439
|
description: stringType(),
|
|
57428
|
-
created: stringType().default("2025-11-
|
|
57429
|
-
updated: stringType().default("2025-11-
|
|
57440
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57441
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57430
57442
|
guardrail_config: unionType([
|
|
57431
57443
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
57432
57444
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -57443,8 +57455,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57443
57455
|
DataPython$outboundSchema = objectType({
|
|
57444
57456
|
id: stringType(),
|
|
57445
57457
|
description: stringType(),
|
|
57446
|
-
created: stringType().default("2025-11-
|
|
57447
|
-
updated: stringType().default("2025-11-
|
|
57458
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57459
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57448
57460
|
guardrailConfig: unionType([
|
|
57449
57461
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
57450
57462
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -57501,8 +57513,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57501
57513
|
DataHTTP$inboundSchema = objectType({
|
|
57502
57514
|
_id: stringType(),
|
|
57503
57515
|
description: stringType(),
|
|
57504
|
-
created: stringType().default("2025-11-
|
|
57505
|
-
updated: stringType().default("2025-11-
|
|
57516
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57517
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57506
57518
|
guardrail_config: unionType([
|
|
57507
57519
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
57508
57520
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -57522,8 +57534,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57522
57534
|
DataHTTP$outboundSchema = objectType({
|
|
57523
57535
|
id: stringType(),
|
|
57524
57536
|
description: stringType(),
|
|
57525
|
-
created: stringType().default("2025-11-
|
|
57526
|
-
updated: stringType().default("2025-11-
|
|
57537
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57538
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57527
57539
|
guardrailConfig: unionType([
|
|
57528
57540
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
57529
57541
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57581,8 +57593,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57581
57593
|
DataJSON$inboundSchema = objectType({
|
|
57582
57594
|
_id: stringType(),
|
|
57583
57595
|
description: stringType(),
|
|
57584
|
-
created: stringType().default("2025-11-
|
|
57585
|
-
updated: stringType().default("2025-11-
|
|
57596
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57597
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57586
57598
|
guardrail_config: unionType([
|
|
57587
57599
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57588
57600
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57599,8 +57611,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57599
57611
|
DataJSON$outboundSchema = objectType({
|
|
57600
57612
|
id: stringType(),
|
|
57601
57613
|
description: stringType(),
|
|
57602
|
-
created: stringType().default("2025-11-
|
|
57603
|
-
updated: stringType().default("2025-11-
|
|
57614
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57615
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57604
57616
|
guardrailConfig: unionType([
|
|
57605
57617
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57606
57618
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57655,8 +57667,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57655
57667
|
DataLLM$inboundSchema = objectType({
|
|
57656
57668
|
_id: stringType(),
|
|
57657
57669
|
description: stringType(),
|
|
57658
|
-
created: stringType().default("2025-11-
|
|
57659
|
-
updated: stringType().default("2025-11-
|
|
57670
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57671
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57660
57672
|
guardrail_config: unionType([
|
|
57661
57673
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57662
57674
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57674,8 +57686,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57674
57686
|
DataLLM$outboundSchema = objectType({
|
|
57675
57687
|
id: stringType(),
|
|
57676
57688
|
description: stringType(),
|
|
57677
|
-
created: stringType().default("2025-11-
|
|
57678
|
-
updated: stringType().default("2025-11-
|
|
57689
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57690
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
57679
57691
|
guardrailConfig: unionType([
|
|
57680
57692
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57681
57693
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59953,6 +59965,7 @@ var init_listagents = __esm(() => {
|
|
|
59953
59965
|
key: stringType().optional(),
|
|
59954
59966
|
action_type: stringType(),
|
|
59955
59967
|
display_name: stringType().optional(),
|
|
59968
|
+
description: stringType().optional(),
|
|
59956
59969
|
requires_approval: booleanType().default(false),
|
|
59957
59970
|
conditions: arrayType(lazyType(() => ListAgentsConditions$inboundSchema)).optional(),
|
|
59958
59971
|
mcpServer: stringType().optional(),
|
|
@@ -59969,6 +59982,7 @@ var init_listagents = __esm(() => {
|
|
|
59969
59982
|
key: stringType().optional(),
|
|
59970
59983
|
actionType: stringType(),
|
|
59971
59984
|
displayName: stringType().optional(),
|
|
59985
|
+
description: stringType().optional(),
|
|
59972
59986
|
requiresApproval: booleanType().default(false),
|
|
59973
59987
|
conditions: arrayType(lazyType(() => ListAgentsConditions$outboundSchema)).optional(),
|
|
59974
59988
|
mcpServer: stringType().optional(),
|
|
@@ -61091,7 +61105,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61091
61105
|
is_active: booleanType(),
|
|
61092
61106
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
61093
61107
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61094
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61108
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.429Z").transform((v2) => new Date(v2))
|
|
61095
61109
|
}).transform((v2) => {
|
|
61096
61110
|
return remap(v2, {
|
|
61097
61111
|
_id: "id",
|
|
@@ -61107,7 +61121,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61107
61121
|
isActive: booleanType(),
|
|
61108
61122
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
61109
61123
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61110
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61124
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.429Z")).transform((v2) => v2.toISOString())
|
|
61111
61125
|
}).transform((v2) => {
|
|
61112
61126
|
return remap(v2, {
|
|
61113
61127
|
id: "_id",
|
|
@@ -61434,7 +61448,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61434
61448
|
tags: arrayType(stringType()).optional(),
|
|
61435
61449
|
metadata: recordType(anyType()).optional(),
|
|
61436
61450
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61437
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61451
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2)),
|
|
61438
61452
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
61439
61453
|
}).transform((v2) => {
|
|
61440
61454
|
return remap(v2, {
|
|
@@ -61453,7 +61467,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61453
61467
|
tags: arrayType(stringType()).optional(),
|
|
61454
61468
|
metadata: recordType(anyType()).optional(),
|
|
61455
61469
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61456
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61470
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString()),
|
|
61457
61471
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
61458
61472
|
}).transform((v2) => {
|
|
61459
61473
|
return remap(v2, {
|
|
@@ -62042,7 +62056,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62042
62056
|
human_review_id: stringType(),
|
|
62043
62057
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
62044
62058
|
reviewed_by_id: stringType(),
|
|
62045
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62059
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.592Z").transform((v2) => new Date(v2)),
|
|
62046
62060
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
62047
62061
|
values: arrayType(stringType())
|
|
62048
62062
|
}).transform((v2) => {
|
|
@@ -62059,7 +62073,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62059
62073
|
humanReviewId: stringType(),
|
|
62060
62074
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
62061
62075
|
reviewedById: stringType(),
|
|
62062
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62076
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.592Z")).transform((v2) => v2.toISOString()),
|
|
62063
62077
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
62064
62078
|
values: arrayType(stringType())
|
|
62065
62079
|
}).transform((v2) => {
|
|
@@ -62082,7 +62096,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62082
62096
|
human_review_id: stringType(),
|
|
62083
62097
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
62084
62098
|
reviewed_by_id: stringType(),
|
|
62085
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62099
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.592Z").transform((v2) => new Date(v2)),
|
|
62086
62100
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
62087
62101
|
value: numberType()
|
|
62088
62102
|
}).transform((v2) => {
|
|
@@ -62099,7 +62113,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62099
62113
|
humanReviewId: stringType(),
|
|
62100
62114
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
62101
62115
|
reviewedById: stringType(),
|
|
62102
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62116
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.592Z")).transform((v2) => v2.toISOString()),
|
|
62103
62117
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
62104
62118
|
value: numberType()
|
|
62105
62119
|
}).transform((v2) => {
|
|
@@ -62122,7 +62136,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62122
62136
|
human_review_id: stringType(),
|
|
62123
62137
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
62124
62138
|
reviewed_by_id: stringType(),
|
|
62125
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62139
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.591Z").transform((v2) => new Date(v2)),
|
|
62126
62140
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
62127
62141
|
value: stringType()
|
|
62128
62142
|
}).transform((v2) => {
|
|
@@ -62139,7 +62153,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62139
62153
|
humanReviewId: stringType(),
|
|
62140
62154
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
62141
62155
|
reviewedById: stringType(),
|
|
62142
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62156
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.591Z")).transform((v2) => v2.toISOString()),
|
|
62143
62157
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
62144
62158
|
value: stringType()
|
|
62145
62159
|
}).transform((v2) => {
|
|
@@ -62182,7 +62196,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62182
62196
|
created_by_id: stringType().optional(),
|
|
62183
62197
|
updated_by_id: stringType().optional(),
|
|
62184
62198
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62185
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62199
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
62186
62200
|
}).transform((v2) => {
|
|
62187
62201
|
return remap(v2, {
|
|
62188
62202
|
_id: "id",
|
|
@@ -62216,7 +62230,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62216
62230
|
createdById: stringType().optional(),
|
|
62217
62231
|
updatedById: stringType().optional(),
|
|
62218
62232
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62219
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62233
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
62220
62234
|
}).transform((v2) => {
|
|
62221
62235
|
return remap(v2, {
|
|
62222
62236
|
id: "_id",
|
|
@@ -62305,7 +62319,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62305
62319
|
created_by_id: stringType().optional(),
|
|
62306
62320
|
updated_by_id: stringType().optional(),
|
|
62307
62321
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62308
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62322
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
62309
62323
|
}).transform((v2) => {
|
|
62310
62324
|
return remap(v2, {
|
|
62311
62325
|
_id: "id",
|
|
@@ -62325,7 +62339,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62325
62339
|
createdById: stringType().optional(),
|
|
62326
62340
|
updatedById: stringType().optional(),
|
|
62327
62341
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62328
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62342
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
62329
62343
|
}).transform((v2) => {
|
|
62330
62344
|
return remap(v2, {
|
|
62331
62345
|
id: "_id",
|
|
@@ -62406,7 +62420,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62406
62420
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
62407
62421
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
62408
62422
|
ListDatasourcesData$inboundSchema = objectType({
|
|
62409
|
-
_id: stringType().default("
|
|
62423
|
+
_id: stringType().default("01KA80WWVHTX4NR7E59HZ0ATR0"),
|
|
62410
62424
|
display_name: stringType(),
|
|
62411
62425
|
description: stringType().optional(),
|
|
62412
62426
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -62429,7 +62443,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62429
62443
|
});
|
|
62430
62444
|
});
|
|
62431
62445
|
ListDatasourcesData$outboundSchema = objectType({
|
|
62432
|
-
id: stringType().default("
|
|
62446
|
+
id: stringType().default("01KA80WWVHTX4NR7E59HZ0ATR0"),
|
|
62433
62447
|
displayName: stringType(),
|
|
62434
62448
|
description: stringType().optional(),
|
|
62435
62449
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63894,7 +63908,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63894
63908
|
tags: arrayType(stringType()).optional(),
|
|
63895
63909
|
metadata: recordType(anyType()).optional(),
|
|
63896
63910
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63897
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63911
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
63898
63912
|
}).transform((v2) => {
|
|
63899
63913
|
return remap(v2, {
|
|
63900
63914
|
_id: "id",
|
|
@@ -63912,7 +63926,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63912
63926
|
tags: arrayType(stringType()).optional(),
|
|
63913
63927
|
metadata: recordType(anyType()).optional(),
|
|
63914
63928
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63915
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63929
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
63916
63930
|
}).transform((v2) => {
|
|
63917
63931
|
return remap(v2, {
|
|
63918
63932
|
id: "_id",
|
|
@@ -64471,7 +64485,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64471
64485
|
human_review_id: stringType(),
|
|
64472
64486
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
64473
64487
|
reviewed_by_id: stringType(),
|
|
64474
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64488
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.610Z").transform((v2) => new Date(v2)),
|
|
64475
64489
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
64476
64490
|
values: arrayType(stringType())
|
|
64477
64491
|
}).transform((v2) => {
|
|
@@ -64488,7 +64502,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64488
64502
|
humanReviewId: stringType(),
|
|
64489
64503
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
64490
64504
|
reviewedById: stringType(),
|
|
64491
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64505
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.610Z")).transform((v2) => v2.toISOString()),
|
|
64492
64506
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
64493
64507
|
values: arrayType(stringType())
|
|
64494
64508
|
}).transform((v2) => {
|
|
@@ -64511,7 +64525,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64511
64525
|
human_review_id: stringType(),
|
|
64512
64526
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64513
64527
|
reviewed_by_id: stringType(),
|
|
64514
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64528
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.609Z").transform((v2) => new Date(v2)),
|
|
64515
64529
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
64516
64530
|
value: numberType()
|
|
64517
64531
|
}).transform((v2) => {
|
|
@@ -64528,7 +64542,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64528
64542
|
humanReviewId: stringType(),
|
|
64529
64543
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64530
64544
|
reviewedById: stringType(),
|
|
64531
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64545
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.609Z")).transform((v2) => v2.toISOString()),
|
|
64532
64546
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
64533
64547
|
value: numberType()
|
|
64534
64548
|
}).transform((v2) => {
|
|
@@ -64551,7 +64565,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64551
64565
|
human_review_id: stringType(),
|
|
64552
64566
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
64553
64567
|
reviewed_by_id: stringType(),
|
|
64554
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64568
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.608Z").transform((v2) => new Date(v2)),
|
|
64555
64569
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
64556
64570
|
value: stringType()
|
|
64557
64571
|
}).transform((v2) => {
|
|
@@ -64568,7 +64582,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64568
64582
|
humanReviewId: stringType(),
|
|
64569
64583
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
64570
64584
|
reviewedById: stringType(),
|
|
64571
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64585
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.608Z")).transform((v2) => v2.toISOString()),
|
|
64572
64586
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
64573
64587
|
value: stringType()
|
|
64574
64588
|
}).transform((v2) => {
|
|
@@ -64611,7 +64625,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64611
64625
|
created_by_id: stringType().optional(),
|
|
64612
64626
|
updated_by_id: stringType().optional(),
|
|
64613
64627
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64614
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64628
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
64615
64629
|
}).transform((v2) => {
|
|
64616
64630
|
return remap(v2, {
|
|
64617
64631
|
_id: "id",
|
|
@@ -64645,7 +64659,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64645
64659
|
createdById: stringType().optional(),
|
|
64646
64660
|
updatedById: stringType().optional(),
|
|
64647
64661
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64648
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64662
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
64649
64663
|
}).transform((v2) => {
|
|
64650
64664
|
return remap(v2, {
|
|
64651
64665
|
id: "_id",
|
|
@@ -64705,7 +64719,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64705
64719
|
created_by_id: stringType().optional(),
|
|
64706
64720
|
updated_by_id: stringType().optional(),
|
|
64707
64721
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64708
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64722
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
64709
64723
|
}).transform((v2) => {
|
|
64710
64724
|
return remap(v2, {
|
|
64711
64725
|
_id: "id",
|
|
@@ -64725,7 +64739,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64725
64739
|
createdById: stringType().optional(),
|
|
64726
64740
|
updatedById: stringType().optional(),
|
|
64727
64741
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64728
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64742
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
64729
64743
|
}).transform((v2) => {
|
|
64730
64744
|
return remap(v2, {
|
|
64731
64745
|
id: "_id",
|
|
@@ -64771,7 +64785,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64771
64785
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64772
64786
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64773
64787
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64774
|
-
_id: stringType().default("
|
|
64788
|
+
_id: stringType().default("01KA80WWVK27HVTE3JYT7GYWZS"),
|
|
64775
64789
|
display_name: stringType(),
|
|
64776
64790
|
description: stringType().optional(),
|
|
64777
64791
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64794,7 +64808,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64794
64808
|
});
|
|
64795
64809
|
});
|
|
64796
64810
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64797
|
-
id: stringType().default("
|
|
64811
|
+
id: stringType().default("01KA80WWVK27HVTE3JYT7GYWZS"),
|
|
64798
64812
|
displayName: stringType(),
|
|
64799
64813
|
description: stringType().optional(),
|
|
64800
64814
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -65359,7 +65373,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65359
65373
|
code: stringType()
|
|
65360
65374
|
});
|
|
65361
65375
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
65362
|
-
_id: stringType().default("
|
|
65376
|
+
_id: stringType().default("tool_01KA80WWRAMF4BYD80SCAX05K1"),
|
|
65363
65377
|
path: stringType(),
|
|
65364
65378
|
key: stringType(),
|
|
65365
65379
|
display_name: stringType().optional(),
|
|
@@ -65387,7 +65401,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65387
65401
|
});
|
|
65388
65402
|
});
|
|
65389
65403
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
65390
|
-
id: stringType().default("
|
|
65404
|
+
id: stringType().default("tool_01KA80WWRAMF4BYD80SCAX05K1"),
|
|
65391
65405
|
path: stringType(),
|
|
65392
65406
|
key: stringType(),
|
|
65393
65407
|
displayName: stringType().optional(),
|
|
@@ -65439,11 +65453,13 @@ var init_retrievetool = __esm(() => {
|
|
|
65439
65453
|
required: arrayType(stringType()).optional()
|
|
65440
65454
|
});
|
|
65441
65455
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
65456
|
+
id: stringType().default("01KA80WWR9062F32GSYKDYWEF8"),
|
|
65442
65457
|
name: stringType(),
|
|
65443
65458
|
description: stringType().optional(),
|
|
65444
65459
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
65445
65460
|
});
|
|
65446
65461
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
65462
|
+
id: stringType().default("01KA80WWR9062F32GSYKDYWEF8"),
|
|
65447
65463
|
name: stringType(),
|
|
65448
65464
|
description: stringType().optional(),
|
|
65449
65465
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -65473,7 +65489,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65473
65489
|
});
|
|
65474
65490
|
});
|
|
65475
65491
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
65476
|
-
_id: stringType().default("
|
|
65492
|
+
_id: stringType().default("tool_01KA80WWR7HQ29C3W8GCEMQQ2Z"),
|
|
65477
65493
|
path: stringType(),
|
|
65478
65494
|
key: stringType(),
|
|
65479
65495
|
display_name: stringType().optional(),
|
|
@@ -65500,7 +65516,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65500
65516
|
});
|
|
65501
65517
|
});
|
|
65502
65518
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
65503
|
-
id: stringType().default("
|
|
65519
|
+
id: stringType().default("tool_01KA80WWR7HQ29C3W8GCEMQQ2Z"),
|
|
65504
65520
|
path: stringType(),
|
|
65505
65521
|
key: stringType(),
|
|
65506
65522
|
displayName: stringType().optional(),
|
|
@@ -65589,7 +65605,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65589
65605
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
65590
65606
|
});
|
|
65591
65607
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
65592
|
-
_id: stringType().default("
|
|
65608
|
+
_id: stringType().default("tool_01KA80WWR41K1FP8E39DKE8HZK"),
|
|
65593
65609
|
path: stringType(),
|
|
65594
65610
|
key: stringType(),
|
|
65595
65611
|
display_name: stringType().optional(),
|
|
@@ -65616,7 +65632,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65616
65632
|
});
|
|
65617
65633
|
});
|
|
65618
65634
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
65619
|
-
id: stringType().default("
|
|
65635
|
+
id: stringType().default("tool_01KA80WWR41K1FP8E39DKE8HZK"),
|
|
65620
65636
|
path: stringType(),
|
|
65621
65637
|
key: stringType(),
|
|
65622
65638
|
displayName: stringType().optional(),
|
|
@@ -65677,7 +65693,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65677
65693
|
strict: booleanType().optional()
|
|
65678
65694
|
});
|
|
65679
65695
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65680
|
-
_id: stringType().default("
|
|
65696
|
+
_id: stringType().default("tool_01KA80WWR39R5CYPM5CV6QF3AY"),
|
|
65681
65697
|
path: stringType(),
|
|
65682
65698
|
key: stringType(),
|
|
65683
65699
|
display_name: stringType().optional(),
|
|
@@ -65705,7 +65721,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65705
65721
|
});
|
|
65706
65722
|
});
|
|
65707
65723
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65708
|
-
id: stringType().default("
|
|
65724
|
+
id: stringType().default("tool_01KA80WWR39R5CYPM5CV6QF3AY"),
|
|
65709
65725
|
path: stringType(),
|
|
65710
65726
|
key: stringType(),
|
|
65711
65727
|
displayName: stringType().optional(),
|
|
@@ -65769,7 +65785,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65769
65785
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
65770
65786
|
});
|
|
65771
65787
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65772
|
-
_id: stringType().default("
|
|
65788
|
+
_id: stringType().default("tool_01KA80WWR22T84N3A0N95YVZNZ"),
|
|
65773
65789
|
path: stringType(),
|
|
65774
65790
|
key: stringType(),
|
|
65775
65791
|
display_name: stringType().optional(),
|
|
@@ -65796,7 +65812,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65796
65812
|
});
|
|
65797
65813
|
});
|
|
65798
65814
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65799
|
-
id: stringType().default("
|
|
65815
|
+
id: stringType().default("tool_01KA80WWR22T84N3A0N95YVZNZ"),
|
|
65800
65816
|
path: stringType(),
|
|
65801
65817
|
key: stringType(),
|
|
65802
65818
|
displayName: stringType().optional(),
|
|
@@ -66769,11 +66785,13 @@ var init_runagent = __esm(() => {
|
|
|
66769
66785
|
required: arrayType(stringType()).optional()
|
|
66770
66786
|
});
|
|
66771
66787
|
Tools$inboundSchema = objectType({
|
|
66788
|
+
id: stringType().default("01KA80WWCR608VCWJ1GV0NJ439"),
|
|
66772
66789
|
name: stringType(),
|
|
66773
66790
|
description: stringType().optional(),
|
|
66774
66791
|
schema: lazyType(() => Schema$inboundSchema)
|
|
66775
66792
|
});
|
|
66776
66793
|
Tools$outboundSchema = objectType({
|
|
66794
|
+
id: stringType().default("01KA80WWCR608VCWJ1GV0NJ439"),
|
|
66777
66795
|
name: stringType(),
|
|
66778
66796
|
description: stringType().optional(),
|
|
66779
66797
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -69305,11 +69323,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
69305
69323
|
required: arrayType(stringType()).optional()
|
|
69306
69324
|
});
|
|
69307
69325
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
69326
|
+
id: stringType().default("01KA80WWD7NMYX8ETSY1KWYCGP"),
|
|
69308
69327
|
name: stringType(),
|
|
69309
69328
|
description: stringType().optional(),
|
|
69310
69329
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
69311
69330
|
});
|
|
69312
69331
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
69332
|
+
id: stringType().default("01KA80WWD7NMYX8ETSY1KWYCGP"),
|
|
69313
69333
|
name: stringType(),
|
|
69314
69334
|
description: stringType().optional(),
|
|
69315
69335
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -70151,7 +70171,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70151
70171
|
errors: arrayType(stringType())
|
|
70152
70172
|
});
|
|
70153
70173
|
SyncMcpToolResponseBody5$inboundSchema = objectType({
|
|
70154
|
-
_id: stringType().default("
|
|
70174
|
+
_id: stringType().default("tool_01KA80WWRPBYAK6SAW4G4RSR74"),
|
|
70155
70175
|
path: stringType(),
|
|
70156
70176
|
key: stringType(),
|
|
70157
70177
|
display_name: stringType().optional(),
|
|
@@ -70180,7 +70200,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70180
70200
|
});
|
|
70181
70201
|
});
|
|
70182
70202
|
SyncMcpToolResponseBody5$outboundSchema = objectType({
|
|
70183
|
-
id: stringType().default("
|
|
70203
|
+
id: stringType().default("tool_01KA80WWRPBYAK6SAW4G4RSR74"),
|
|
70184
70204
|
path: stringType(),
|
|
70185
70205
|
key: stringType(),
|
|
70186
70206
|
displayName: stringType().optional(),
|
|
@@ -70233,11 +70253,13 @@ var init_syncmcptool = __esm(() => {
|
|
|
70233
70253
|
required: arrayType(stringType()).optional()
|
|
70234
70254
|
});
|
|
70235
70255
|
SyncMcpToolResponseBodyTools$inboundSchema = objectType({
|
|
70256
|
+
id: stringType().default("01KA80WWRPC8CHWDHCPRWGGBJ6"),
|
|
70236
70257
|
name: stringType(),
|
|
70237
70258
|
description: stringType().optional(),
|
|
70238
70259
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema)
|
|
70239
70260
|
});
|
|
70240
70261
|
SyncMcpToolResponseBodyTools$outboundSchema = objectType({
|
|
70262
|
+
id: stringType().default("01KA80WWRPC8CHWDHCPRWGGBJ6"),
|
|
70241
70263
|
name: stringType(),
|
|
70242
70264
|
description: stringType().optional(),
|
|
70243
70265
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -70279,7 +70301,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70279
70301
|
errors: arrayType(stringType())
|
|
70280
70302
|
});
|
|
70281
70303
|
SyncMcpToolResponseBody4$inboundSchema = objectType({
|
|
70282
|
-
_id: stringType().default("
|
|
70304
|
+
_id: stringType().default("tool_01KA80WWRMW924S55DED4YGSRD"),
|
|
70283
70305
|
path: stringType(),
|
|
70284
70306
|
key: stringType(),
|
|
70285
70307
|
display_name: stringType().optional(),
|
|
@@ -70307,7 +70329,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70307
70329
|
});
|
|
70308
70330
|
});
|
|
70309
70331
|
SyncMcpToolResponseBody4$outboundSchema = objectType({
|
|
70310
|
-
id: stringType().default("
|
|
70332
|
+
id: stringType().default("tool_01KA80WWRMW924S55DED4YGSRD"),
|
|
70311
70333
|
path: stringType(),
|
|
70312
70334
|
key: stringType(),
|
|
70313
70335
|
displayName: stringType().optional(),
|
|
@@ -70409,7 +70431,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70409
70431
|
errors: arrayType(stringType())
|
|
70410
70432
|
});
|
|
70411
70433
|
SyncMcpToolResponseBody3$inboundSchema = objectType({
|
|
70412
|
-
_id: stringType().default("
|
|
70434
|
+
_id: stringType().default("tool_01KA80WWRHNB9QPGJCJ110D36P"),
|
|
70413
70435
|
path: stringType(),
|
|
70414
70436
|
key: stringType(),
|
|
70415
70437
|
display_name: stringType().optional(),
|
|
@@ -70437,7 +70459,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70437
70459
|
});
|
|
70438
70460
|
});
|
|
70439
70461
|
SyncMcpToolResponseBody3$outboundSchema = objectType({
|
|
70440
|
-
id: stringType().default("
|
|
70462
|
+
id: stringType().default("tool_01KA80WWRHNB9QPGJCJ110D36P"),
|
|
70441
70463
|
path: stringType(),
|
|
70442
70464
|
key: stringType(),
|
|
70443
70465
|
displayName: stringType().optional(),
|
|
@@ -70511,7 +70533,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70511
70533
|
errors: arrayType(stringType())
|
|
70512
70534
|
});
|
|
70513
70535
|
SyncMcpToolResponseBody2$inboundSchema = objectType({
|
|
70514
|
-
_id: stringType().default("
|
|
70536
|
+
_id: stringType().default("tool_01KA80WWREDNST0QVV153FXT8A"),
|
|
70515
70537
|
path: stringType(),
|
|
70516
70538
|
key: stringType(),
|
|
70517
70539
|
display_name: stringType().optional(),
|
|
@@ -70540,7 +70562,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70540
70562
|
});
|
|
70541
70563
|
});
|
|
70542
70564
|
SyncMcpToolResponseBody2$outboundSchema = objectType({
|
|
70543
|
-
id: stringType().default("
|
|
70565
|
+
id: stringType().default("tool_01KA80WWREDNST0QVV153FXT8A"),
|
|
70544
70566
|
path: stringType(),
|
|
70545
70567
|
key: stringType(),
|
|
70546
70568
|
displayName: stringType().optional(),
|
|
@@ -70617,7 +70639,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70617
70639
|
errors: arrayType(stringType())
|
|
70618
70640
|
});
|
|
70619
70641
|
SyncMcpToolResponseBody1$inboundSchema = objectType({
|
|
70620
|
-
_id: stringType().default("
|
|
70642
|
+
_id: stringType().default("tool_01KA80WWRD0ZG5AW72N0WR5NDT"),
|
|
70621
70643
|
path: stringType(),
|
|
70622
70644
|
key: stringType(),
|
|
70623
70645
|
display_name: stringType().optional(),
|
|
@@ -70645,7 +70667,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70645
70667
|
});
|
|
70646
70668
|
});
|
|
70647
70669
|
SyncMcpToolResponseBody1$outboundSchema = objectType({
|
|
70648
|
-
id: stringType().default("
|
|
70670
|
+
id: stringType().default("tool_01KA80WWRD0ZG5AW72N0WR5NDT"),
|
|
70649
70671
|
path: stringType(),
|
|
70650
70672
|
key: stringType(),
|
|
70651
70673
|
displayName: stringType().optional(),
|
|
@@ -71967,6 +71989,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71967
71989
|
key: stringType().optional(),
|
|
71968
71990
|
action_type: stringType(),
|
|
71969
71991
|
display_name: stringType().optional(),
|
|
71992
|
+
description: stringType().optional(),
|
|
71970
71993
|
requires_approval: booleanType().default(false),
|
|
71971
71994
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$inboundSchema)).optional(),
|
|
71972
71995
|
mcpServer: stringType().optional(),
|
|
@@ -71983,6 +72006,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71983
72006
|
key: stringType().optional(),
|
|
71984
72007
|
actionType: stringType(),
|
|
71985
72008
|
displayName: stringType().optional(),
|
|
72009
|
+
description: stringType().optional(),
|
|
71986
72010
|
requiresApproval: booleanType().default(false),
|
|
71987
72011
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$outboundSchema)).optional(),
|
|
71988
72012
|
mcpServer: stringType().optional(),
|
|
@@ -72792,7 +72816,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72792
72816
|
is_active: booleanType(),
|
|
72793
72817
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
72794
72818
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72795
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72819
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.429Z").transform((v2) => new Date(v2))
|
|
72796
72820
|
}).transform((v2) => {
|
|
72797
72821
|
return remap(v2, {
|
|
72798
72822
|
_id: "id",
|
|
@@ -72810,7 +72834,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72810
72834
|
isActive: booleanType(),
|
|
72811
72835
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
72812
72836
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72813
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72837
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.429Z")).transform((v2) => v2.toISOString())
|
|
72814
72838
|
}).transform((v2) => {
|
|
72815
72839
|
return remap(v2, {
|
|
72816
72840
|
id: "_id",
|
|
@@ -72965,7 +72989,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72965
72989
|
tags: arrayType(stringType()).optional(),
|
|
72966
72990
|
metadata: recordType(anyType()).optional(),
|
|
72967
72991
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72968
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72992
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
72969
72993
|
}).transform((v2) => {
|
|
72970
72994
|
return remap(v2, {
|
|
72971
72995
|
_id: "id",
|
|
@@ -72983,7 +73007,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72983
73007
|
tags: arrayType(stringType()).optional(),
|
|
72984
73008
|
metadata: recordType(anyType()).optional(),
|
|
72985
73009
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72986
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73010
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
72987
73011
|
}).transform((v2) => {
|
|
72988
73012
|
return remap(v2, {
|
|
72989
73013
|
id: "_id",
|
|
@@ -74059,7 +74083,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74059
74083
|
human_review_id: stringType(),
|
|
74060
74084
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
74061
74085
|
reviewed_by_id: stringType(),
|
|
74062
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74086
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.656Z").transform((v2) => new Date(v2)),
|
|
74063
74087
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
74064
74088
|
values: arrayType(stringType())
|
|
74065
74089
|
}).transform((v2) => {
|
|
@@ -74076,7 +74100,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74076
74100
|
humanReviewId: stringType(),
|
|
74077
74101
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
74078
74102
|
reviewedById: stringType(),
|
|
74079
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74103
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.656Z")).transform((v2) => v2.toISOString()),
|
|
74080
74104
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
74081
74105
|
values: arrayType(stringType())
|
|
74082
74106
|
}).transform((v2) => {
|
|
@@ -74099,7 +74123,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74099
74123
|
human_review_id: stringType(),
|
|
74100
74124
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
74101
74125
|
reviewed_by_id: stringType(),
|
|
74102
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74126
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.655Z").transform((v2) => new Date(v2)),
|
|
74103
74127
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
74104
74128
|
value: numberType()
|
|
74105
74129
|
}).transform((v2) => {
|
|
@@ -74116,7 +74140,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74116
74140
|
humanReviewId: stringType(),
|
|
74117
74141
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
74118
74142
|
reviewedById: stringType(),
|
|
74119
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74143
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.655Z")).transform((v2) => v2.toISOString()),
|
|
74120
74144
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
74121
74145
|
value: numberType()
|
|
74122
74146
|
}).transform((v2) => {
|
|
@@ -74139,7 +74163,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74139
74163
|
human_review_id: stringType(),
|
|
74140
74164
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
74141
74165
|
reviewed_by_id: stringType(),
|
|
74142
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74166
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T04:24:17.655Z").transform((v2) => new Date(v2)),
|
|
74143
74167
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
74144
74168
|
value: stringType()
|
|
74145
74169
|
}).transform((v2) => {
|
|
@@ -74156,7 +74180,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74156
74180
|
humanReviewId: stringType(),
|
|
74157
74181
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
74158
74182
|
reviewedById: stringType(),
|
|
74159
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74183
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T04:24:17.655Z")).transform((v2) => v2.toISOString()),
|
|
74160
74184
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
74161
74185
|
value: stringType()
|
|
74162
74186
|
}).transform((v2) => {
|
|
@@ -74199,7 +74223,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74199
74223
|
created_by_id: stringType().optional(),
|
|
74200
74224
|
updated_by_id: stringType().optional(),
|
|
74201
74225
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74202
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74226
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
74203
74227
|
}).transform((v2) => {
|
|
74204
74228
|
return remap(v2, {
|
|
74205
74229
|
_id: "id",
|
|
@@ -74233,7 +74257,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74233
74257
|
createdById: stringType().optional(),
|
|
74234
74258
|
updatedById: stringType().optional(),
|
|
74235
74259
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74236
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74260
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
74237
74261
|
}).transform((v2) => {
|
|
74238
74262
|
return remap(v2, {
|
|
74239
74263
|
id: "_id",
|
|
@@ -74317,7 +74341,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74317
74341
|
created_by_id: stringType().optional(),
|
|
74318
74342
|
updated_by_id: stringType().optional(),
|
|
74319
74343
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74320
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74344
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T04:24:07.088Z").transform((v2) => new Date(v2))
|
|
74321
74345
|
}).transform((v2) => {
|
|
74322
74346
|
return remap(v2, {
|
|
74323
74347
|
_id: "id",
|
|
@@ -74337,7 +74361,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74337
74361
|
createdById: stringType().optional(),
|
|
74338
74362
|
updatedById: stringType().optional(),
|
|
74339
74363
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74340
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74364
|
+
updated: dateType().default(() => new Date("2025-11-17T04:24:07.088Z")).transform((v2) => v2.toISOString())
|
|
74341
74365
|
}).transform((v2) => {
|
|
74342
74366
|
return remap(v2, {
|
|
74343
74367
|
id: "_id",
|
|
@@ -74401,7 +74425,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74401
74425
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
74402
74426
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
74403
74427
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
74404
|
-
_id: stringType().default("
|
|
74428
|
+
_id: stringType().default("01KA80WWVRDBTV9B6KC3EZ2MQJ"),
|
|
74405
74429
|
display_name: stringType(),
|
|
74406
74430
|
description: stringType().optional(),
|
|
74407
74431
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -74424,7 +74448,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74424
74448
|
});
|
|
74425
74449
|
});
|
|
74426
74450
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
74427
|
-
id: stringType().default("
|
|
74451
|
+
id: stringType().default("01KA80WWVRDBTV9B6KC3EZ2MQJ"),
|
|
74428
74452
|
displayName: stringType(),
|
|
74429
74453
|
description: stringType().optional(),
|
|
74430
74454
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -75171,8 +75195,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75171
75195
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
75172
75196
|
_id: stringType(),
|
|
75173
75197
|
description: stringType(),
|
|
75174
|
-
created: stringType().default("2025-11-
|
|
75175
|
-
updated: stringType().default("2025-11-
|
|
75198
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75199
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75176
75200
|
guardrail_config: unionType([
|
|
75177
75201
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
75178
75202
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -75189,8 +75213,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75189
75213
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
75190
75214
|
id: stringType(),
|
|
75191
75215
|
description: stringType(),
|
|
75192
|
-
created: stringType().default("2025-11-
|
|
75193
|
-
updated: stringType().default("2025-11-
|
|
75216
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75217
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75194
75218
|
guardrailConfig: unionType([
|
|
75195
75219
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
75196
75220
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -75247,8 +75271,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75247
75271
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
75248
75272
|
_id: stringType(),
|
|
75249
75273
|
description: stringType(),
|
|
75250
|
-
created: stringType().default("2025-11-
|
|
75251
|
-
updated: stringType().default("2025-11-
|
|
75274
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75275
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75252
75276
|
guardrail_config: unionType([
|
|
75253
75277
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
75254
75278
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -75267,8 +75291,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75267
75291
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
75268
75292
|
id: stringType(),
|
|
75269
75293
|
description: stringType(),
|
|
75270
|
-
created: stringType().default("2025-11-
|
|
75271
|
-
updated: stringType().default("2025-11-
|
|
75294
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75295
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75272
75296
|
guardrailConfig: unionType([
|
|
75273
75297
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
75274
75298
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -75705,8 +75729,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75705
75729
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
75706
75730
|
_id: stringType(),
|
|
75707
75731
|
description: stringType(),
|
|
75708
|
-
created: stringType().default("2025-11-
|
|
75709
|
-
updated: stringType().default("2025-11-
|
|
75732
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75733
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75710
75734
|
guardrail_config: unionType([
|
|
75711
75735
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
75712
75736
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -75760,8 +75784,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75760
75784
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
75761
75785
|
id: stringType(),
|
|
75762
75786
|
description: stringType(),
|
|
75763
|
-
created: stringType().default("2025-11-
|
|
75764
|
-
updated: stringType().default("2025-11-
|
|
75787
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75788
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75765
75789
|
guardrailConfig: unionType([
|
|
75766
75790
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
75767
75791
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -75853,8 +75877,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75853
75877
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
75854
75878
|
_id: stringType(),
|
|
75855
75879
|
description: stringType(),
|
|
75856
|
-
created: stringType().default("2025-11-
|
|
75857
|
-
updated: stringType().default("2025-11-
|
|
75880
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75881
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75858
75882
|
guardrail_config: unionType([
|
|
75859
75883
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
75860
75884
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -75871,8 +75895,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75871
75895
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
75872
75896
|
id: stringType(),
|
|
75873
75897
|
description: stringType(),
|
|
75874
|
-
created: stringType().default("2025-11-
|
|
75875
|
-
updated: stringType().default("2025-11-
|
|
75898
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75899
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75876
75900
|
guardrailConfig: unionType([
|
|
75877
75901
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
75878
75902
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -75929,8 +75953,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75929
75953
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
75930
75954
|
_id: stringType(),
|
|
75931
75955
|
description: stringType(),
|
|
75932
|
-
created: stringType().default("2025-11-
|
|
75933
|
-
updated: stringType().default("2025-11-
|
|
75956
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75957
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75934
75958
|
guardrail_config: unionType([
|
|
75935
75959
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
75936
75960
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -75950,8 +75974,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75950
75974
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
75951
75975
|
id: stringType(),
|
|
75952
75976
|
description: stringType(),
|
|
75953
|
-
created: stringType().default("2025-11-
|
|
75954
|
-
updated: stringType().default("2025-11-
|
|
75977
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75978
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
75955
75979
|
guardrailConfig: unionType([
|
|
75956
75980
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
75957
75981
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -76009,8 +76033,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76009
76033
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
76010
76034
|
_id: stringType(),
|
|
76011
76035
|
description: stringType(),
|
|
76012
|
-
created: stringType().default("2025-11-
|
|
76013
|
-
updated: stringType().default("2025-11-
|
|
76036
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76037
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76014
76038
|
guardrail_config: unionType([
|
|
76015
76039
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
76016
76040
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -76027,8 +76051,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76027
76051
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
76028
76052
|
id: stringType(),
|
|
76029
76053
|
description: stringType(),
|
|
76030
|
-
created: stringType().default("2025-11-
|
|
76031
|
-
updated: stringType().default("2025-11-
|
|
76054
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76055
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76032
76056
|
guardrailConfig: unionType([
|
|
76033
76057
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
76034
76058
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -76083,8 +76107,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76083
76107
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
76084
76108
|
_id: stringType(),
|
|
76085
76109
|
description: stringType(),
|
|
76086
|
-
created: stringType().default("2025-11-
|
|
76087
|
-
updated: stringType().default("2025-11-
|
|
76110
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76111
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76088
76112
|
guardrail_config: unionType([
|
|
76089
76113
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
76090
76114
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -76102,8 +76126,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76102
76126
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
76103
76127
|
id: stringType(),
|
|
76104
76128
|
description: stringType(),
|
|
76105
|
-
created: stringType().default("2025-11-
|
|
76106
|
-
updated: stringType().default("2025-11-
|
|
76129
|
+
created: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76130
|
+
updated: stringType().default("2025-11-17T04:24:08.995Z"),
|
|
76107
76131
|
guardrailConfig: unionType([
|
|
76108
76132
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
76109
76133
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -79066,11 +79090,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79066
79090
|
required: arrayType(stringType()).optional()
|
|
79067
79091
|
});
|
|
79068
79092
|
RequestBodyTools$inboundSchema = objectType({
|
|
79093
|
+
id: stringType().default("01KA80WWQGW3T7PKRACXGFENW0"),
|
|
79069
79094
|
name: stringType(),
|
|
79070
79095
|
description: stringType().optional(),
|
|
79071
79096
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
79072
79097
|
});
|
|
79073
79098
|
RequestBodyTools$outboundSchema = objectType({
|
|
79099
|
+
id: stringType().default("01KA80WWQGW3T7PKRACXGFENW0"),
|
|
79074
79100
|
name: stringType(),
|
|
79075
79101
|
description: stringType().optional(),
|
|
79076
79102
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -79418,7 +79444,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79418
79444
|
code: stringType()
|
|
79419
79445
|
});
|
|
79420
79446
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
79421
|
-
_id: stringType().default("
|
|
79447
|
+
_id: stringType().default("tool_01KA80WWQ7SXW91QMDWYFCS0D7"),
|
|
79422
79448
|
path: stringType(),
|
|
79423
79449
|
key: stringType(),
|
|
79424
79450
|
display_name: stringType().optional(),
|
|
@@ -79446,7 +79472,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79446
79472
|
});
|
|
79447
79473
|
});
|
|
79448
79474
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
79449
|
-
id: stringType().default("
|
|
79475
|
+
id: stringType().default("tool_01KA80WWQ7SXW91QMDWYFCS0D7"),
|
|
79450
79476
|
path: stringType(),
|
|
79451
79477
|
key: stringType(),
|
|
79452
79478
|
displayName: stringType().optional(),
|
|
@@ -79498,11 +79524,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79498
79524
|
required: arrayType(stringType()).optional()
|
|
79499
79525
|
});
|
|
79500
79526
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
79527
|
+
id: stringType().default("01KA80WWQ6D8AD2Y0870SX594A"),
|
|
79501
79528
|
name: stringType(),
|
|
79502
79529
|
description: stringType().optional(),
|
|
79503
79530
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
79504
79531
|
});
|
|
79505
79532
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
79533
|
+
id: stringType().default("01KA80WWQ6D8AD2Y0870SX594A"),
|
|
79506
79534
|
name: stringType(),
|
|
79507
79535
|
description: stringType().optional(),
|
|
79508
79536
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -79532,7 +79560,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79532
79560
|
});
|
|
79533
79561
|
});
|
|
79534
79562
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
79535
|
-
_id: stringType().default("
|
|
79563
|
+
_id: stringType().default("tool_01KA80WWQ5ZP3M3X16XCNTM4RV"),
|
|
79536
79564
|
path: stringType(),
|
|
79537
79565
|
key: stringType(),
|
|
79538
79566
|
display_name: stringType().optional(),
|
|
@@ -79559,7 +79587,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79559
79587
|
});
|
|
79560
79588
|
});
|
|
79561
79589
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
79562
|
-
id: stringType().default("
|
|
79590
|
+
id: stringType().default("tool_01KA80WWQ5ZP3M3X16XCNTM4RV"),
|
|
79563
79591
|
path: stringType(),
|
|
79564
79592
|
key: stringType(),
|
|
79565
79593
|
displayName: stringType().optional(),
|
|
@@ -79648,7 +79676,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79648
79676
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
79649
79677
|
});
|
|
79650
79678
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
79651
|
-
_id: stringType().default("
|
|
79679
|
+
_id: stringType().default("tool_01KA80WWQ38NVPV136HDWDTZ1H"),
|
|
79652
79680
|
path: stringType(),
|
|
79653
79681
|
key: stringType(),
|
|
79654
79682
|
display_name: stringType().optional(),
|
|
@@ -79675,7 +79703,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79675
79703
|
});
|
|
79676
79704
|
});
|
|
79677
79705
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
79678
|
-
id: stringType().default("
|
|
79706
|
+
id: stringType().default("tool_01KA80WWQ38NVPV136HDWDTZ1H"),
|
|
79679
79707
|
path: stringType(),
|
|
79680
79708
|
key: stringType(),
|
|
79681
79709
|
displayName: stringType().optional(),
|
|
@@ -79736,7 +79764,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79736
79764
|
strict: booleanType().optional()
|
|
79737
79765
|
});
|
|
79738
79766
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
79739
|
-
_id: stringType().default("
|
|
79767
|
+
_id: stringType().default("tool_01KA80WWQ17M53VQAF6ZVHG5MC"),
|
|
79740
79768
|
path: stringType(),
|
|
79741
79769
|
key: stringType(),
|
|
79742
79770
|
display_name: stringType().optional(),
|
|
@@ -79764,7 +79792,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79764
79792
|
});
|
|
79765
79793
|
});
|
|
79766
79794
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
79767
|
-
id: stringType().default("
|
|
79795
|
+
id: stringType().default("tool_01KA80WWQ17M53VQAF6ZVHG5MC"),
|
|
79768
79796
|
path: stringType(),
|
|
79769
79797
|
key: stringType(),
|
|
79770
79798
|
displayName: stringType().optional(),
|
|
@@ -79828,7 +79856,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79828
79856
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
79829
79857
|
});
|
|
79830
79858
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
79831
|
-
_id: stringType().default("
|
|
79859
|
+
_id: stringType().default("tool_01KA80WWPZZVCCSSN62G8RBNAG"),
|
|
79832
79860
|
path: stringType(),
|
|
79833
79861
|
key: stringType(),
|
|
79834
79862
|
display_name: stringType().optional(),
|
|
@@ -79855,7 +79883,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79855
79883
|
});
|
|
79856
79884
|
});
|
|
79857
79885
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
79858
|
-
id: stringType().default("
|
|
79886
|
+
id: stringType().default("tool_01KA80WWPZZVCCSSN62G8RBNAG"),
|
|
79859
79887
|
path: stringType(),
|
|
79860
79888
|
key: stringType(),
|
|
79861
79889
|
displayName: stringType().optional(),
|
|
@@ -92327,7 +92355,7 @@ Updates a tool in the workspace.`,
|
|
|
92327
92355
|
function createMCPServer(deps) {
|
|
92328
92356
|
const server = new McpServer({
|
|
92329
92357
|
name: "Orq",
|
|
92330
|
-
version: "4.0.0-rc.
|
|
92358
|
+
version: "4.0.0-rc.37"
|
|
92331
92359
|
});
|
|
92332
92360
|
const client = new OrqCore({
|
|
92333
92361
|
apiKey: deps.apiKey,
|
|
@@ -93747,7 +93775,7 @@ var routes = rn({
|
|
|
93747
93775
|
var app = Ve(routes, {
|
|
93748
93776
|
name: "mcp",
|
|
93749
93777
|
versionInfo: {
|
|
93750
|
-
currentVersion: "4.0.0-rc.
|
|
93778
|
+
currentVersion: "4.0.0-rc.37"
|
|
93751
93779
|
}
|
|
93752
93780
|
});
|
|
93753
93781
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -93755,5 +93783,5 @@ export {
|
|
|
93755
93783
|
app
|
|
93756
93784
|
};
|
|
93757
93785
|
|
|
93758
|
-
//# debugId=
|
|
93786
|
+
//# debugId=AD4B088E911EA24164756E2164756E21
|
|
93759
93787
|
//# sourceMappingURL=mcp-server.js.map
|