@orq-ai/node 4.0.0-rc.36 → 4.0.0-rc.38
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 +256 -222
- 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 +13 -1
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +16 -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 +9 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +16 -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 +29 -11
- 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 +25 -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.38",
|
|
34207
|
+
genVersion: "2.755.6",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.38 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-17T07:33:20.076Z").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-17T07:33:20.076Z")).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-17T07:33:19.763Z").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-17T07:33:19.763Z")).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-17T07:33:19.763Z").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-17T07:33:19.763Z")).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-17T07:33:30.341Z").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-17T07:33:30.341Z")).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-17T07:33:30.341Z").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-17T07:33:30.341Z")).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-17T07:33:30.341Z").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-17T07:33:30.341Z")).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-17T07:33:19.763Z").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-17T07:33:19.763Z")).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("01KA8BQBG5Q5V7YGQ0KNCWJVD4"),
|
|
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("01KA8BQBG5Q5V7YGQ0KNCWJVD4"),
|
|
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-17T07:33:21.657Z"),
|
|
41019
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41037
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41095
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41115
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41553
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41608
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41701
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41719
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41777
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41798
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41857
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41875
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41931
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
41950
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
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_01KA8BQBBDBEZGA4RG88QHAGA1"),
|
|
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_01KA8BQBBDBEZGA4RG88QHAGA1"),
|
|
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("01KA8BQBBCMB33S5B0XQ3NVRT4"),
|
|
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("01KA8BQBBCMB33S5B0XQ3NVRT4"),
|
|
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_01KA8BQBB9AAX8K57J5K8D14N3"),
|
|
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_01KA8BQBB9AAX8K57J5K8D14N3"),
|
|
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_01KA8BQBB6NXCCC22XD1HNC2X0"),
|
|
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_01KA8BQBB6NXCCC22XD1HNC2X0"),
|
|
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_01KA8BQBB3VTH2BNKT75M2237T"),
|
|
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_01KA8BQBB3VTH2BNKT75M2237T"),
|
|
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_01KA8BQBB1R37YQMCR7XEX3KCT"),
|
|
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_01KA8BQBB1R37YQMCR7XEX3KCT"),
|
|
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(),
|
|
@@ -52595,14 +52601,18 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52595
52601
|
Object: "object"
|
|
52596
52602
|
};
|
|
52597
52603
|
DuplicateToolRequestBody$inboundSchema = objectType({
|
|
52598
|
-
|
|
52604
|
+
key: stringType(),
|
|
52605
|
+
display_name: stringType().optional(),
|
|
52606
|
+
description: stringType()
|
|
52599
52607
|
}).transform((v2) => {
|
|
52600
52608
|
return remap(v2, {
|
|
52601
52609
|
display_name: "displayName"
|
|
52602
52610
|
});
|
|
52603
52611
|
});
|
|
52604
52612
|
DuplicateToolRequestBody$outboundSchema = objectType({
|
|
52605
|
-
|
|
52613
|
+
key: stringType(),
|
|
52614
|
+
displayName: stringType().optional(),
|
|
52615
|
+
description: stringType()
|
|
52606
52616
|
}).transform((v2) => {
|
|
52607
52617
|
return remap(v2, {
|
|
52608
52618
|
displayName: "display_name"
|
|
@@ -52663,7 +52673,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52663
52673
|
code: stringType()
|
|
52664
52674
|
});
|
|
52665
52675
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52666
|
-
_id: stringType().default("
|
|
52676
|
+
_id: stringType().default("tool_01KA8BQBCKF8P4D3MX1FT7VNFJ"),
|
|
52667
52677
|
path: stringType(),
|
|
52668
52678
|
key: stringType(),
|
|
52669
52679
|
display_name: stringType().optional(),
|
|
@@ -52691,7 +52701,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52691
52701
|
});
|
|
52692
52702
|
});
|
|
52693
52703
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52694
|
-
id: stringType().default("
|
|
52704
|
+
id: stringType().default("tool_01KA8BQBCKF8P4D3MX1FT7VNFJ"),
|
|
52695
52705
|
path: stringType(),
|
|
52696
52706
|
key: stringType(),
|
|
52697
52707
|
displayName: stringType().optional(),
|
|
@@ -52743,11 +52753,13 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52743
52753
|
required: arrayType(stringType()).optional()
|
|
52744
52754
|
});
|
|
52745
52755
|
DuplicateToolResponseBodyTools$inboundSchema = objectType({
|
|
52756
|
+
id: stringType().default("01KA8BQBCJQ4WVFS83ZASQX625"),
|
|
52746
52757
|
name: stringType(),
|
|
52747
52758
|
description: stringType().optional(),
|
|
52748
52759
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$inboundSchema)
|
|
52749
52760
|
});
|
|
52750
52761
|
DuplicateToolResponseBodyTools$outboundSchema = objectType({
|
|
52762
|
+
id: stringType().default("01KA8BQBCJQ4WVFS83ZASQX625"),
|
|
52751
52763
|
name: stringType(),
|
|
52752
52764
|
description: stringType().optional(),
|
|
52753
52765
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -52777,7 +52789,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52777
52789
|
});
|
|
52778
52790
|
});
|
|
52779
52791
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52780
|
-
_id: stringType().default("
|
|
52792
|
+
_id: stringType().default("tool_01KA8BQBCH7P4YBDS533QRQVH7"),
|
|
52781
52793
|
path: stringType(),
|
|
52782
52794
|
key: stringType(),
|
|
52783
52795
|
display_name: stringType().optional(),
|
|
@@ -52804,7 +52816,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52804
52816
|
});
|
|
52805
52817
|
});
|
|
52806
52818
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52807
|
-
id: stringType().default("
|
|
52819
|
+
id: stringType().default("tool_01KA8BQBCH7P4YBDS533QRQVH7"),
|
|
52808
52820
|
path: stringType(),
|
|
52809
52821
|
key: stringType(),
|
|
52810
52822
|
displayName: stringType().optional(),
|
|
@@ -52893,7 +52905,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52893
52905
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52894
52906
|
});
|
|
52895
52907
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52896
|
-
_id: stringType().default("
|
|
52908
|
+
_id: stringType().default("tool_01KA8BQBCFVE3HDN8WPJ78CTXE"),
|
|
52897
52909
|
path: stringType(),
|
|
52898
52910
|
key: stringType(),
|
|
52899
52911
|
display_name: stringType().optional(),
|
|
@@ -52920,7 +52932,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52920
52932
|
});
|
|
52921
52933
|
});
|
|
52922
52934
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52923
|
-
id: stringType().default("
|
|
52935
|
+
id: stringType().default("tool_01KA8BQBCFVE3HDN8WPJ78CTXE"),
|
|
52924
52936
|
path: stringType(),
|
|
52925
52937
|
key: stringType(),
|
|
52926
52938
|
displayName: stringType().optional(),
|
|
@@ -52981,7 +52993,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52981
52993
|
strict: booleanType().optional()
|
|
52982
52994
|
});
|
|
52983
52995
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52984
|
-
_id: stringType().default("
|
|
52996
|
+
_id: stringType().default("tool_01KA8BQBC7H16S2JM228ZQ831N"),
|
|
52985
52997
|
path: stringType(),
|
|
52986
52998
|
key: stringType(),
|
|
52987
52999
|
display_name: stringType().optional(),
|
|
@@ -53009,7 +53021,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53009
53021
|
});
|
|
53010
53022
|
});
|
|
53011
53023
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
53012
|
-
id: stringType().default("
|
|
53024
|
+
id: stringType().default("tool_01KA8BQBC7H16S2JM228ZQ831N"),
|
|
53013
53025
|
path: stringType(),
|
|
53014
53026
|
key: stringType(),
|
|
53015
53027
|
displayName: stringType().optional(),
|
|
@@ -53073,7 +53085,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53073
53085
|
parameters: lazyType(() => DuplicateToolResponseBodyParameters$outboundSchema).optional()
|
|
53074
53086
|
});
|
|
53075
53087
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
53076
|
-
_id: stringType().default("
|
|
53088
|
+
_id: stringType().default("tool_01KA8BQBC6R8F23R7QP4SE0WZS"),
|
|
53077
53089
|
path: stringType(),
|
|
53078
53090
|
key: stringType(),
|
|
53079
53091
|
display_name: stringType().optional(),
|
|
@@ -53100,7 +53112,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53100
53112
|
});
|
|
53101
53113
|
});
|
|
53102
53114
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
53103
|
-
id: stringType().default("
|
|
53115
|
+
id: stringType().default("tool_01KA8BQBC6R8F23R7QP4SE0WZS"),
|
|
53104
53116
|
path: stringType(),
|
|
53105
53117
|
key: stringType(),
|
|
53106
53118
|
displayName: stringType().optional(),
|
|
@@ -53196,7 +53208,7 @@ var init_fileget = __esm(() => {
|
|
|
53196
53208
|
bytes: numberType(),
|
|
53197
53209
|
file_name: stringType(),
|
|
53198
53210
|
workspace_id: stringType(),
|
|
53199
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53211
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T07:33:22.581Z").transform((v2) => new Date(v2))
|
|
53200
53212
|
}).transform((v2) => {
|
|
53201
53213
|
return remap(v2, {
|
|
53202
53214
|
_id: "id",
|
|
@@ -53212,7 +53224,7 @@ var init_fileget = __esm(() => {
|
|
|
53212
53224
|
bytes: numberType(),
|
|
53213
53225
|
fileName: stringType(),
|
|
53214
53226
|
workspaceId: stringType(),
|
|
53215
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53227
|
+
created: dateType().default(() => new Date("2025-11-17T07:33:22.581Z")).transform((v2) => v2.toISOString())
|
|
53216
53228
|
}).transform((v2) => {
|
|
53217
53229
|
return remap(v2, {
|
|
53218
53230
|
id: "_id",
|
|
@@ -53267,7 +53279,7 @@ var init_filelist = __esm(() => {
|
|
|
53267
53279
|
bytes: numberType(),
|
|
53268
53280
|
file_name: stringType(),
|
|
53269
53281
|
workspace_id: stringType(),
|
|
53270
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53282
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T07:33:22.581Z").transform((v2) => new Date(v2))
|
|
53271
53283
|
}).transform((v2) => {
|
|
53272
53284
|
return remap(v2, {
|
|
53273
53285
|
_id: "id",
|
|
@@ -53283,7 +53295,7 @@ var init_filelist = __esm(() => {
|
|
|
53283
53295
|
bytes: numberType(),
|
|
53284
53296
|
fileName: stringType(),
|
|
53285
53297
|
workspaceId: stringType(),
|
|
53286
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53298
|
+
created: dateType().default(() => new Date("2025-11-17T07:33:22.581Z")).transform((v2) => v2.toISOString())
|
|
53287
53299
|
}).transform((v2) => {
|
|
53288
53300
|
return remap(v2, {
|
|
53289
53301
|
id: "_id",
|
|
@@ -53391,7 +53403,7 @@ var init_fileupload = __esm(() => {
|
|
|
53391
53403
|
bytes: numberType(),
|
|
53392
53404
|
file_name: stringType(),
|
|
53393
53405
|
workspace_id: stringType(),
|
|
53394
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53406
|
+
created: stringType().datetime({ offset: true }).default("2025-11-17T07:33:22.581Z").transform((v2) => new Date(v2))
|
|
53395
53407
|
}).transform((v2) => {
|
|
53396
53408
|
return remap(v2, {
|
|
53397
53409
|
_id: "id",
|
|
@@ -53407,7 +53419,7 @@ var init_fileupload = __esm(() => {
|
|
|
53407
53419
|
bytes: numberType(),
|
|
53408
53420
|
fileName: stringType(),
|
|
53409
53421
|
workspaceId: stringType(),
|
|
53410
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53422
|
+
created: dateType().default(() => new Date("2025-11-17T07:33:22.581Z")).transform((v2) => v2.toISOString())
|
|
53411
53423
|
}).transform((v2) => {
|
|
53412
53424
|
return remap(v2, {
|
|
53413
53425
|
id: "_id",
|
|
@@ -53555,6 +53567,7 @@ var init_getagent2 = __esm(() => {
|
|
|
53555
53567
|
key: stringType().optional(),
|
|
53556
53568
|
action_type: stringType(),
|
|
53557
53569
|
display_name: stringType().optional(),
|
|
53570
|
+
description: stringType().optional(),
|
|
53558
53571
|
requires_approval: booleanType().default(false),
|
|
53559
53572
|
conditions: arrayType(lazyType(() => GetAgentConditions$inboundSchema)).optional(),
|
|
53560
53573
|
mcpServer: stringType().optional(),
|
|
@@ -53571,6 +53584,7 @@ var init_getagent2 = __esm(() => {
|
|
|
53571
53584
|
key: stringType().optional(),
|
|
53572
53585
|
actionType: stringType(),
|
|
53573
53586
|
displayName: stringType().optional(),
|
|
53587
|
+
description: stringType().optional(),
|
|
53574
53588
|
requiresApproval: booleanType().default(false),
|
|
53575
53589
|
conditions: arrayType(lazyType(() => GetAgentConditions$outboundSchema)).optional(),
|
|
53576
53590
|
mcpServer: stringType().optional(),
|
|
@@ -55777,7 +55791,7 @@ var init_getalltools = __esm(() => {
|
|
|
55777
55791
|
code: stringType()
|
|
55778
55792
|
});
|
|
55779
55793
|
Data5$inboundSchema = objectType({
|
|
55780
|
-
_id: stringType().default("
|
|
55794
|
+
_id: stringType().default("tool_01KA8BQBACJMHVECJJP1GKNFSZ"),
|
|
55781
55795
|
path: stringType(),
|
|
55782
55796
|
key: stringType(),
|
|
55783
55797
|
display_name: stringType().optional(),
|
|
@@ -55805,7 +55819,7 @@ var init_getalltools = __esm(() => {
|
|
|
55805
55819
|
});
|
|
55806
55820
|
});
|
|
55807
55821
|
Data5$outboundSchema = objectType({
|
|
55808
|
-
id: stringType().default("
|
|
55822
|
+
id: stringType().default("tool_01KA8BQBACJMHVECJJP1GKNFSZ"),
|
|
55809
55823
|
path: stringType(),
|
|
55810
55824
|
key: stringType(),
|
|
55811
55825
|
displayName: stringType().optional(),
|
|
@@ -55857,11 +55871,13 @@ var init_getalltools = __esm(() => {
|
|
|
55857
55871
|
required: arrayType(stringType()).optional()
|
|
55858
55872
|
});
|
|
55859
55873
|
DataTools$inboundSchema = objectType({
|
|
55874
|
+
id: stringType().default("01KA8BQBABJ802WGCWKKQ5SDFY"),
|
|
55860
55875
|
name: stringType(),
|
|
55861
55876
|
description: stringType().optional(),
|
|
55862
55877
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55863
55878
|
});
|
|
55864
55879
|
DataTools$outboundSchema = objectType({
|
|
55880
|
+
id: stringType().default("01KA8BQBABJ802WGCWKKQ5SDFY"),
|
|
55865
55881
|
name: stringType(),
|
|
55866
55882
|
description: stringType().optional(),
|
|
55867
55883
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55891,7 +55907,7 @@ var init_getalltools = __esm(() => {
|
|
|
55891
55907
|
});
|
|
55892
55908
|
});
|
|
55893
55909
|
Data4$inboundSchema = objectType({
|
|
55894
|
-
_id: stringType().default("
|
|
55910
|
+
_id: stringType().default("tool_01KA8BQBA9SY19ZYAHAJ7Z9YME"),
|
|
55895
55911
|
path: stringType(),
|
|
55896
55912
|
key: stringType(),
|
|
55897
55913
|
display_name: stringType().optional(),
|
|
@@ -55918,7 +55934,7 @@ var init_getalltools = __esm(() => {
|
|
|
55918
55934
|
});
|
|
55919
55935
|
});
|
|
55920
55936
|
Data4$outboundSchema = objectType({
|
|
55921
|
-
id: stringType().default("
|
|
55937
|
+
id: stringType().default("tool_01KA8BQBA9SY19ZYAHAJ7Z9YME"),
|
|
55922
55938
|
path: stringType(),
|
|
55923
55939
|
key: stringType(),
|
|
55924
55940
|
displayName: stringType().optional(),
|
|
@@ -56007,7 +56023,7 @@ var init_getalltools = __esm(() => {
|
|
|
56007
56023
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
56008
56024
|
});
|
|
56009
56025
|
Data3$inboundSchema = objectType({
|
|
56010
|
-
_id: stringType().default("
|
|
56026
|
+
_id: stringType().default("tool_01KA8BQBA6R58WTZGFRD6JTN93"),
|
|
56011
56027
|
path: stringType(),
|
|
56012
56028
|
key: stringType(),
|
|
56013
56029
|
display_name: stringType().optional(),
|
|
@@ -56034,7 +56050,7 @@ var init_getalltools = __esm(() => {
|
|
|
56034
56050
|
});
|
|
56035
56051
|
});
|
|
56036
56052
|
Data3$outboundSchema = objectType({
|
|
56037
|
-
id: stringType().default("
|
|
56053
|
+
id: stringType().default("tool_01KA8BQBA6R58WTZGFRD6JTN93"),
|
|
56038
56054
|
path: stringType(),
|
|
56039
56055
|
key: stringType(),
|
|
56040
56056
|
displayName: stringType().optional(),
|
|
@@ -56095,7 +56111,7 @@ var init_getalltools = __esm(() => {
|
|
|
56095
56111
|
strict: booleanType().optional()
|
|
56096
56112
|
});
|
|
56097
56113
|
Data2$inboundSchema = objectType({
|
|
56098
|
-
_id: stringType().default("
|
|
56114
|
+
_id: stringType().default("tool_01KA8BQBA4TVH147YWMTT8KB3J"),
|
|
56099
56115
|
path: stringType(),
|
|
56100
56116
|
key: stringType(),
|
|
56101
56117
|
display_name: stringType().optional(),
|
|
@@ -56123,7 +56139,7 @@ var init_getalltools = __esm(() => {
|
|
|
56123
56139
|
});
|
|
56124
56140
|
});
|
|
56125
56141
|
Data2$outboundSchema = objectType({
|
|
56126
|
-
id: stringType().default("
|
|
56142
|
+
id: stringType().default("tool_01KA8BQBA4TVH147YWMTT8KB3J"),
|
|
56127
56143
|
path: stringType(),
|
|
56128
56144
|
key: stringType(),
|
|
56129
56145
|
displayName: stringType().optional(),
|
|
@@ -56187,7 +56203,7 @@ var init_getalltools = __esm(() => {
|
|
|
56187
56203
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
56188
56204
|
});
|
|
56189
56205
|
Data1$inboundSchema = objectType({
|
|
56190
|
-
_id: stringType().default("
|
|
56206
|
+
_id: stringType().default("tool_01KA8BQBA2ERYX7TG8NMSV2YAF"),
|
|
56191
56207
|
path: stringType(),
|
|
56192
56208
|
key: stringType(),
|
|
56193
56209
|
display_name: stringType().optional(),
|
|
@@ -56214,7 +56230,7 @@ var init_getalltools = __esm(() => {
|
|
|
56214
56230
|
});
|
|
56215
56231
|
});
|
|
56216
56232
|
Data1$outboundSchema = objectType({
|
|
56217
|
-
id: stringType().default("
|
|
56233
|
+
id: stringType().default("tool_01KA8BQBA2ERYX7TG8NMSV2YAF"),
|
|
56218
56234
|
path: stringType(),
|
|
56219
56235
|
key: stringType(),
|
|
56220
56236
|
displayName: stringType().optional(),
|
|
@@ -56356,7 +56372,7 @@ var init_getbudget = __esm(() => {
|
|
|
56356
56372
|
is_active: booleanType(),
|
|
56357
56373
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
56358
56374
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56359
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
56375
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:20.076Z").transform((v2) => new Date(v2))
|
|
56360
56376
|
}).transform((v2) => {
|
|
56361
56377
|
return remap(v2, {
|
|
56362
56378
|
_id: "id",
|
|
@@ -56374,7 +56390,7 @@ var init_getbudget = __esm(() => {
|
|
|
56374
56390
|
isActive: booleanType(),
|
|
56375
56391
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
56376
56392
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56377
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
56393
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:20.076Z")).transform((v2) => v2.toISOString())
|
|
56378
56394
|
}).transform((v2) => {
|
|
56379
56395
|
return remap(v2, {
|
|
56380
56396
|
id: "_id",
|
|
@@ -56743,8 +56759,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56743
56759
|
DataTypescript$inboundSchema = objectType({
|
|
56744
56760
|
_id: stringType(),
|
|
56745
56761
|
description: stringType(),
|
|
56746
|
-
created: stringType().default("2025-11-
|
|
56747
|
-
updated: stringType().default("2025-11-
|
|
56762
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56763
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56748
56764
|
guardrail_config: unionType([
|
|
56749
56765
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56750
56766
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56761,8 +56777,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56761
56777
|
DataTypescript$outboundSchema = objectType({
|
|
56762
56778
|
id: stringType(),
|
|
56763
56779
|
description: stringType(),
|
|
56764
|
-
created: stringType().default("2025-11-
|
|
56765
|
-
updated: stringType().default("2025-11-
|
|
56780
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56781
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56766
56782
|
guardrailConfig: unionType([
|
|
56767
56783
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56768
56784
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56819,8 +56835,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56819
56835
|
DataRagas$inboundSchema = objectType({
|
|
56820
56836
|
_id: stringType(),
|
|
56821
56837
|
description: stringType(),
|
|
56822
|
-
created: stringType().default("2025-11-
|
|
56823
|
-
updated: stringType().default("2025-11-
|
|
56838
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56839
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56824
56840
|
guardrail_config: unionType([
|
|
56825
56841
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56826
56842
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56839,8 +56855,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56839
56855
|
DataRagas$outboundSchema = objectType({
|
|
56840
56856
|
id: stringType(),
|
|
56841
56857
|
description: stringType(),
|
|
56842
|
-
created: stringType().default("2025-11-
|
|
56843
|
-
updated: stringType().default("2025-11-
|
|
56858
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56859
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
56844
56860
|
guardrailConfig: unionType([
|
|
56845
56861
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56846
56862
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -57277,8 +57293,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57277
57293
|
DataFunction$inboundSchema = objectType({
|
|
57278
57294
|
_id: stringType(),
|
|
57279
57295
|
description: stringType(),
|
|
57280
|
-
created: stringType().default("2025-11-
|
|
57281
|
-
updated: stringType().default("2025-11-
|
|
57296
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57297
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57282
57298
|
guardrail_config: unionType([
|
|
57283
57299
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
57284
57300
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -57332,8 +57348,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57332
57348
|
DataFunction$outboundSchema = objectType({
|
|
57333
57349
|
id: stringType(),
|
|
57334
57350
|
description: stringType(),
|
|
57335
|
-
created: stringType().default("2025-11-
|
|
57336
|
-
updated: stringType().default("2025-11-
|
|
57351
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57352
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57337
57353
|
guardrailConfig: unionType([
|
|
57338
57354
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
57339
57355
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -57425,8 +57441,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57425
57441
|
DataPython$inboundSchema = objectType({
|
|
57426
57442
|
_id: stringType(),
|
|
57427
57443
|
description: stringType(),
|
|
57428
|
-
created: stringType().default("2025-11-
|
|
57429
|
-
updated: stringType().default("2025-11-
|
|
57444
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57445
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57430
57446
|
guardrail_config: unionType([
|
|
57431
57447
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
57432
57448
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -57443,8 +57459,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57443
57459
|
DataPython$outboundSchema = objectType({
|
|
57444
57460
|
id: stringType(),
|
|
57445
57461
|
description: stringType(),
|
|
57446
|
-
created: stringType().default("2025-11-
|
|
57447
|
-
updated: stringType().default("2025-11-
|
|
57462
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57463
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57448
57464
|
guardrailConfig: unionType([
|
|
57449
57465
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
57450
57466
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -57501,8 +57517,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57501
57517
|
DataHTTP$inboundSchema = objectType({
|
|
57502
57518
|
_id: stringType(),
|
|
57503
57519
|
description: stringType(),
|
|
57504
|
-
created: stringType().default("2025-11-
|
|
57505
|
-
updated: stringType().default("2025-11-
|
|
57520
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57521
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57506
57522
|
guardrail_config: unionType([
|
|
57507
57523
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
57508
57524
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -57522,8 +57538,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57522
57538
|
DataHTTP$outboundSchema = objectType({
|
|
57523
57539
|
id: stringType(),
|
|
57524
57540
|
description: stringType(),
|
|
57525
|
-
created: stringType().default("2025-11-
|
|
57526
|
-
updated: stringType().default("2025-11-
|
|
57541
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57542
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57527
57543
|
guardrailConfig: unionType([
|
|
57528
57544
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
57529
57545
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57581,8 +57597,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57581
57597
|
DataJSON$inboundSchema = objectType({
|
|
57582
57598
|
_id: stringType(),
|
|
57583
57599
|
description: stringType(),
|
|
57584
|
-
created: stringType().default("2025-11-
|
|
57585
|
-
updated: stringType().default("2025-11-
|
|
57600
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57601
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57586
57602
|
guardrail_config: unionType([
|
|
57587
57603
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57588
57604
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57599,8 +57615,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57599
57615
|
DataJSON$outboundSchema = objectType({
|
|
57600
57616
|
id: stringType(),
|
|
57601
57617
|
description: stringType(),
|
|
57602
|
-
created: stringType().default("2025-11-
|
|
57603
|
-
updated: stringType().default("2025-11-
|
|
57618
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57619
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57604
57620
|
guardrailConfig: unionType([
|
|
57605
57621
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57606
57622
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57655,8 +57671,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57655
57671
|
DataLLM$inboundSchema = objectType({
|
|
57656
57672
|
_id: stringType(),
|
|
57657
57673
|
description: stringType(),
|
|
57658
|
-
created: stringType().default("2025-11-
|
|
57659
|
-
updated: stringType().default("2025-11-
|
|
57674
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57675
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57660
57676
|
guardrail_config: unionType([
|
|
57661
57677
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57662
57678
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57674,8 +57690,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57674
57690
|
DataLLM$outboundSchema = objectType({
|
|
57675
57691
|
id: stringType(),
|
|
57676
57692
|
description: stringType(),
|
|
57677
|
-
created: stringType().default("2025-11-
|
|
57678
|
-
updated: stringType().default("2025-11-
|
|
57693
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57694
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
57679
57695
|
guardrailConfig: unionType([
|
|
57680
57696
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57681
57697
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59953,6 +59969,7 @@ var init_listagents = __esm(() => {
|
|
|
59953
59969
|
key: stringType().optional(),
|
|
59954
59970
|
action_type: stringType(),
|
|
59955
59971
|
display_name: stringType().optional(),
|
|
59972
|
+
description: stringType().optional(),
|
|
59956
59973
|
requires_approval: booleanType().default(false),
|
|
59957
59974
|
conditions: arrayType(lazyType(() => ListAgentsConditions$inboundSchema)).optional(),
|
|
59958
59975
|
mcpServer: stringType().optional(),
|
|
@@ -59969,6 +59986,7 @@ var init_listagents = __esm(() => {
|
|
|
59969
59986
|
key: stringType().optional(),
|
|
59970
59987
|
actionType: stringType(),
|
|
59971
59988
|
displayName: stringType().optional(),
|
|
59989
|
+
description: stringType().optional(),
|
|
59972
59990
|
requiresApproval: booleanType().default(false),
|
|
59973
59991
|
conditions: arrayType(lazyType(() => ListAgentsConditions$outboundSchema)).optional(),
|
|
59974
59992
|
mcpServer: stringType().optional(),
|
|
@@ -61091,7 +61109,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61091
61109
|
is_active: booleanType(),
|
|
61092
61110
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
61093
61111
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61094
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61112
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:20.076Z").transform((v2) => new Date(v2))
|
|
61095
61113
|
}).transform((v2) => {
|
|
61096
61114
|
return remap(v2, {
|
|
61097
61115
|
_id: "id",
|
|
@@ -61107,7 +61125,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61107
61125
|
isActive: booleanType(),
|
|
61108
61126
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
61109
61127
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61110
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61128
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:20.076Z")).transform((v2) => v2.toISOString())
|
|
61111
61129
|
}).transform((v2) => {
|
|
61112
61130
|
return remap(v2, {
|
|
61113
61131
|
id: "_id",
|
|
@@ -61434,7 +61452,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61434
61452
|
tags: arrayType(stringType()).optional(),
|
|
61435
61453
|
metadata: recordType(anyType()).optional(),
|
|
61436
61454
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61437
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61455
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2)),
|
|
61438
61456
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
61439
61457
|
}).transform((v2) => {
|
|
61440
61458
|
return remap(v2, {
|
|
@@ -61453,7 +61471,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61453
61471
|
tags: arrayType(stringType()).optional(),
|
|
61454
61472
|
metadata: recordType(anyType()).optional(),
|
|
61455
61473
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61456
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61474
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString()),
|
|
61457
61475
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
61458
61476
|
}).transform((v2) => {
|
|
61459
61477
|
return remap(v2, {
|
|
@@ -62042,7 +62060,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62042
62060
|
human_review_id: stringType(),
|
|
62043
62061
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
62044
62062
|
reviewed_by_id: stringType(),
|
|
62045
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62063
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.317Z").transform((v2) => new Date(v2)),
|
|
62046
62064
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
62047
62065
|
values: arrayType(stringType())
|
|
62048
62066
|
}).transform((v2) => {
|
|
@@ -62059,7 +62077,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62059
62077
|
humanReviewId: stringType(),
|
|
62060
62078
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
62061
62079
|
reviewedById: stringType(),
|
|
62062
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62080
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.317Z")).transform((v2) => v2.toISOString()),
|
|
62063
62081
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
62064
62082
|
values: arrayType(stringType())
|
|
62065
62083
|
}).transform((v2) => {
|
|
@@ -62082,7 +62100,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62082
62100
|
human_review_id: stringType(),
|
|
62083
62101
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
62084
62102
|
reviewed_by_id: stringType(),
|
|
62085
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62103
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.316Z").transform((v2) => new Date(v2)),
|
|
62086
62104
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
62087
62105
|
value: numberType()
|
|
62088
62106
|
}).transform((v2) => {
|
|
@@ -62099,7 +62117,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62099
62117
|
humanReviewId: stringType(),
|
|
62100
62118
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
62101
62119
|
reviewedById: stringType(),
|
|
62102
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62120
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.316Z")).transform((v2) => v2.toISOString()),
|
|
62103
62121
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
62104
62122
|
value: numberType()
|
|
62105
62123
|
}).transform((v2) => {
|
|
@@ -62122,7 +62140,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62122
62140
|
human_review_id: stringType(),
|
|
62123
62141
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
62124
62142
|
reviewed_by_id: stringType(),
|
|
62125
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62143
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.316Z").transform((v2) => new Date(v2)),
|
|
62126
62144
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
62127
62145
|
value: stringType()
|
|
62128
62146
|
}).transform((v2) => {
|
|
@@ -62139,7 +62157,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62139
62157
|
humanReviewId: stringType(),
|
|
62140
62158
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
62141
62159
|
reviewedById: stringType(),
|
|
62142
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62160
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.316Z")).transform((v2) => v2.toISOString()),
|
|
62143
62161
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
62144
62162
|
value: stringType()
|
|
62145
62163
|
}).transform((v2) => {
|
|
@@ -62182,7 +62200,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62182
62200
|
created_by_id: stringType().optional(),
|
|
62183
62201
|
updated_by_id: stringType().optional(),
|
|
62184
62202
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62185
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62203
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
62186
62204
|
}).transform((v2) => {
|
|
62187
62205
|
return remap(v2, {
|
|
62188
62206
|
_id: "id",
|
|
@@ -62216,7 +62234,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62216
62234
|
createdById: stringType().optional(),
|
|
62217
62235
|
updatedById: stringType().optional(),
|
|
62218
62236
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62219
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62237
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
62220
62238
|
}).transform((v2) => {
|
|
62221
62239
|
return remap(v2, {
|
|
62222
62240
|
id: "_id",
|
|
@@ -62305,7 +62323,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62305
62323
|
created_by_id: stringType().optional(),
|
|
62306
62324
|
updated_by_id: stringType().optional(),
|
|
62307
62325
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62308
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62326
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
62309
62327
|
}).transform((v2) => {
|
|
62310
62328
|
return remap(v2, {
|
|
62311
62329
|
_id: "id",
|
|
@@ -62325,7 +62343,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62325
62343
|
createdById: stringType().optional(),
|
|
62326
62344
|
updatedById: stringType().optional(),
|
|
62327
62345
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62328
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62346
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
62329
62347
|
}).transform((v2) => {
|
|
62330
62348
|
return remap(v2, {
|
|
62331
62349
|
id: "_id",
|
|
@@ -62406,7 +62424,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62406
62424
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
62407
62425
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
62408
62426
|
ListDatasourcesData$inboundSchema = objectType({
|
|
62409
|
-
_id: stringType().default("
|
|
62427
|
+
_id: stringType().default("01KA8BQBG0S8R0G6YXPN5QRK30"),
|
|
62410
62428
|
display_name: stringType(),
|
|
62411
62429
|
description: stringType().optional(),
|
|
62412
62430
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -62429,7 +62447,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62429
62447
|
});
|
|
62430
62448
|
});
|
|
62431
62449
|
ListDatasourcesData$outboundSchema = objectType({
|
|
62432
|
-
id: stringType().default("
|
|
62450
|
+
id: stringType().default("01KA8BQBG0S8R0G6YXPN5QRK30"),
|
|
62433
62451
|
displayName: stringType(),
|
|
62434
62452
|
description: stringType().optional(),
|
|
62435
62453
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63894,7 +63912,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63894
63912
|
tags: arrayType(stringType()).optional(),
|
|
63895
63913
|
metadata: recordType(anyType()).optional(),
|
|
63896
63914
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63897
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63915
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
63898
63916
|
}).transform((v2) => {
|
|
63899
63917
|
return remap(v2, {
|
|
63900
63918
|
_id: "id",
|
|
@@ -63912,7 +63930,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63912
63930
|
tags: arrayType(stringType()).optional(),
|
|
63913
63931
|
metadata: recordType(anyType()).optional(),
|
|
63914
63932
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63915
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63933
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
63916
63934
|
}).transform((v2) => {
|
|
63917
63935
|
return remap(v2, {
|
|
63918
63936
|
id: "_id",
|
|
@@ -64471,7 +64489,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64471
64489
|
human_review_id: stringType(),
|
|
64472
64490
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
64473
64491
|
reviewed_by_id: stringType(),
|
|
64474
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64492
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.330Z").transform((v2) => new Date(v2)),
|
|
64475
64493
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
64476
64494
|
values: arrayType(stringType())
|
|
64477
64495
|
}).transform((v2) => {
|
|
@@ -64488,7 +64506,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64488
64506
|
humanReviewId: stringType(),
|
|
64489
64507
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
64490
64508
|
reviewedById: stringType(),
|
|
64491
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64509
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.330Z")).transform((v2) => v2.toISOString()),
|
|
64492
64510
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
64493
64511
|
values: arrayType(stringType())
|
|
64494
64512
|
}).transform((v2) => {
|
|
@@ -64511,7 +64529,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64511
64529
|
human_review_id: stringType(),
|
|
64512
64530
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64513
64531
|
reviewed_by_id: stringType(),
|
|
64514
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64532
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.329Z").transform((v2) => new Date(v2)),
|
|
64515
64533
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
64516
64534
|
value: numberType()
|
|
64517
64535
|
}).transform((v2) => {
|
|
@@ -64528,7 +64546,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64528
64546
|
humanReviewId: stringType(),
|
|
64529
64547
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64530
64548
|
reviewedById: stringType(),
|
|
64531
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64549
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.329Z")).transform((v2) => v2.toISOString()),
|
|
64532
64550
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
64533
64551
|
value: numberType()
|
|
64534
64552
|
}).transform((v2) => {
|
|
@@ -64551,7 +64569,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64551
64569
|
human_review_id: stringType(),
|
|
64552
64570
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
64553
64571
|
reviewed_by_id: stringType(),
|
|
64554
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64572
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.328Z").transform((v2) => new Date(v2)),
|
|
64555
64573
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
64556
64574
|
value: stringType()
|
|
64557
64575
|
}).transform((v2) => {
|
|
@@ -64568,7 +64586,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64568
64586
|
humanReviewId: stringType(),
|
|
64569
64587
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
64570
64588
|
reviewedById: stringType(),
|
|
64571
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64589
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.328Z")).transform((v2) => v2.toISOString()),
|
|
64572
64590
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
64573
64591
|
value: stringType()
|
|
64574
64592
|
}).transform((v2) => {
|
|
@@ -64611,7 +64629,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64611
64629
|
created_by_id: stringType().optional(),
|
|
64612
64630
|
updated_by_id: stringType().optional(),
|
|
64613
64631
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64614
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64632
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
64615
64633
|
}).transform((v2) => {
|
|
64616
64634
|
return remap(v2, {
|
|
64617
64635
|
_id: "id",
|
|
@@ -64645,7 +64663,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64645
64663
|
createdById: stringType().optional(),
|
|
64646
64664
|
updatedById: stringType().optional(),
|
|
64647
64665
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64648
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64666
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
64649
64667
|
}).transform((v2) => {
|
|
64650
64668
|
return remap(v2, {
|
|
64651
64669
|
id: "_id",
|
|
@@ -64705,7 +64723,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64705
64723
|
created_by_id: stringType().optional(),
|
|
64706
64724
|
updated_by_id: stringType().optional(),
|
|
64707
64725
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64708
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64726
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
64709
64727
|
}).transform((v2) => {
|
|
64710
64728
|
return remap(v2, {
|
|
64711
64729
|
_id: "id",
|
|
@@ -64725,7 +64743,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64725
64743
|
createdById: stringType().optional(),
|
|
64726
64744
|
updatedById: stringType().optional(),
|
|
64727
64745
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64728
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64746
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
64729
64747
|
}).transform((v2) => {
|
|
64730
64748
|
return remap(v2, {
|
|
64731
64749
|
id: "_id",
|
|
@@ -64771,7 +64789,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64771
64789
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64772
64790
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64773
64791
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64774
|
-
_id: stringType().default("
|
|
64792
|
+
_id: stringType().default("01KA8BQBG3BR6FB02GN4DN5VER"),
|
|
64775
64793
|
display_name: stringType(),
|
|
64776
64794
|
description: stringType().optional(),
|
|
64777
64795
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64794,7 +64812,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64794
64812
|
});
|
|
64795
64813
|
});
|
|
64796
64814
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64797
|
-
id: stringType().default("
|
|
64815
|
+
id: stringType().default("01KA8BQBG3BR6FB02GN4DN5VER"),
|
|
64798
64816
|
displayName: stringType(),
|
|
64799
64817
|
description: stringType().optional(),
|
|
64800
64818
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -65359,7 +65377,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65359
65377
|
code: stringType()
|
|
65360
65378
|
});
|
|
65361
65379
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
65362
|
-
_id: stringType().default("
|
|
65380
|
+
_id: stringType().default("tool_01KA8BQBCW1PH287X0M7NMVXME"),
|
|
65363
65381
|
path: stringType(),
|
|
65364
65382
|
key: stringType(),
|
|
65365
65383
|
display_name: stringType().optional(),
|
|
@@ -65387,7 +65405,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65387
65405
|
});
|
|
65388
65406
|
});
|
|
65389
65407
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
65390
|
-
id: stringType().default("
|
|
65408
|
+
id: stringType().default("tool_01KA8BQBCW1PH287X0M7NMVXME"),
|
|
65391
65409
|
path: stringType(),
|
|
65392
65410
|
key: stringType(),
|
|
65393
65411
|
displayName: stringType().optional(),
|
|
@@ -65439,11 +65457,13 @@ var init_retrievetool = __esm(() => {
|
|
|
65439
65457
|
required: arrayType(stringType()).optional()
|
|
65440
65458
|
});
|
|
65441
65459
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
65460
|
+
id: stringType().default("01KA8BQBCVQ7TX3YYA57P8YCTB"),
|
|
65442
65461
|
name: stringType(),
|
|
65443
65462
|
description: stringType().optional(),
|
|
65444
65463
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
65445
65464
|
});
|
|
65446
65465
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
65466
|
+
id: stringType().default("01KA8BQBCVQ7TX3YYA57P8YCTB"),
|
|
65447
65467
|
name: stringType(),
|
|
65448
65468
|
description: stringType().optional(),
|
|
65449
65469
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -65473,7 +65493,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65473
65493
|
});
|
|
65474
65494
|
});
|
|
65475
65495
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
65476
|
-
_id: stringType().default("
|
|
65496
|
+
_id: stringType().default("tool_01KA8BQBCSTQVBA1TR9DJDE4MW"),
|
|
65477
65497
|
path: stringType(),
|
|
65478
65498
|
key: stringType(),
|
|
65479
65499
|
display_name: stringType().optional(),
|
|
@@ -65500,7 +65520,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65500
65520
|
});
|
|
65501
65521
|
});
|
|
65502
65522
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
65503
|
-
id: stringType().default("
|
|
65523
|
+
id: stringType().default("tool_01KA8BQBCSTQVBA1TR9DJDE4MW"),
|
|
65504
65524
|
path: stringType(),
|
|
65505
65525
|
key: stringType(),
|
|
65506
65526
|
displayName: stringType().optional(),
|
|
@@ -65589,7 +65609,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65589
65609
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
65590
65610
|
});
|
|
65591
65611
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
65592
|
-
_id: stringType().default("
|
|
65612
|
+
_id: stringType().default("tool_01KA8BQBCQE6SR4XSRKDWQCYFT"),
|
|
65593
65613
|
path: stringType(),
|
|
65594
65614
|
key: stringType(),
|
|
65595
65615
|
display_name: stringType().optional(),
|
|
@@ -65616,7 +65636,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65616
65636
|
});
|
|
65617
65637
|
});
|
|
65618
65638
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
65619
|
-
id: stringType().default("
|
|
65639
|
+
id: stringType().default("tool_01KA8BQBCQE6SR4XSRKDWQCYFT"),
|
|
65620
65640
|
path: stringType(),
|
|
65621
65641
|
key: stringType(),
|
|
65622
65642
|
displayName: stringType().optional(),
|
|
@@ -65677,7 +65697,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65677
65697
|
strict: booleanType().optional()
|
|
65678
65698
|
});
|
|
65679
65699
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65680
|
-
_id: stringType().default("
|
|
65700
|
+
_id: stringType().default("tool_01KA8BQBCPPSH25BASHJG5VX16"),
|
|
65681
65701
|
path: stringType(),
|
|
65682
65702
|
key: stringType(),
|
|
65683
65703
|
display_name: stringType().optional(),
|
|
@@ -65705,7 +65725,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65705
65725
|
});
|
|
65706
65726
|
});
|
|
65707
65727
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65708
|
-
id: stringType().default("
|
|
65728
|
+
id: stringType().default("tool_01KA8BQBCPPSH25BASHJG5VX16"),
|
|
65709
65729
|
path: stringType(),
|
|
65710
65730
|
key: stringType(),
|
|
65711
65731
|
displayName: stringType().optional(),
|
|
@@ -65769,7 +65789,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65769
65789
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
65770
65790
|
});
|
|
65771
65791
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65772
|
-
_id: stringType().default("
|
|
65792
|
+
_id: stringType().default("tool_01KA8BQBCNGMBNMBYKBYJSFHH4"),
|
|
65773
65793
|
path: stringType(),
|
|
65774
65794
|
key: stringType(),
|
|
65775
65795
|
display_name: stringType().optional(),
|
|
@@ -65796,7 +65816,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65796
65816
|
});
|
|
65797
65817
|
});
|
|
65798
65818
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65799
|
-
id: stringType().default("
|
|
65819
|
+
id: stringType().default("tool_01KA8BQBCNGMBNMBYKBYJSFHH4"),
|
|
65800
65820
|
path: stringType(),
|
|
65801
65821
|
key: stringType(),
|
|
65802
65822
|
displayName: stringType().optional(),
|
|
@@ -66769,11 +66789,13 @@ var init_runagent = __esm(() => {
|
|
|
66769
66789
|
required: arrayType(stringType()).optional()
|
|
66770
66790
|
});
|
|
66771
66791
|
Tools$inboundSchema = objectType({
|
|
66792
|
+
id: stringType().default("01KA8BQB2FC9RXHMJKA0V54RJG"),
|
|
66772
66793
|
name: stringType(),
|
|
66773
66794
|
description: stringType().optional(),
|
|
66774
66795
|
schema: lazyType(() => Schema$inboundSchema)
|
|
66775
66796
|
});
|
|
66776
66797
|
Tools$outboundSchema = objectType({
|
|
66798
|
+
id: stringType().default("01KA8BQB2FC9RXHMJKA0V54RJG"),
|
|
66777
66799
|
name: stringType(),
|
|
66778
66800
|
description: stringType().optional(),
|
|
66779
66801
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -69305,11 +69327,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
69305
69327
|
required: arrayType(stringType()).optional()
|
|
69306
69328
|
});
|
|
69307
69329
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
69330
|
+
id: stringType().default("01KA8BQB34S5PHCGP8ZVJBPDZA"),
|
|
69308
69331
|
name: stringType(),
|
|
69309
69332
|
description: stringType().optional(),
|
|
69310
69333
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
69311
69334
|
});
|
|
69312
69335
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
69336
|
+
id: stringType().default("01KA8BQB34S5PHCGP8ZVJBPDZA"),
|
|
69313
69337
|
name: stringType(),
|
|
69314
69338
|
description: stringType().optional(),
|
|
69315
69339
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -70151,7 +70175,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70151
70175
|
errors: arrayType(stringType())
|
|
70152
70176
|
});
|
|
70153
70177
|
SyncMcpToolResponseBody5$inboundSchema = objectType({
|
|
70154
|
-
_id: stringType().default("
|
|
70178
|
+
_id: stringType().default("tool_01KA8BQBD8FT6KZ2HXPZBPB518"),
|
|
70155
70179
|
path: stringType(),
|
|
70156
70180
|
key: stringType(),
|
|
70157
70181
|
display_name: stringType().optional(),
|
|
@@ -70180,7 +70204,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70180
70204
|
});
|
|
70181
70205
|
});
|
|
70182
70206
|
SyncMcpToolResponseBody5$outboundSchema = objectType({
|
|
70183
|
-
id: stringType().default("
|
|
70207
|
+
id: stringType().default("tool_01KA8BQBD8FT6KZ2HXPZBPB518"),
|
|
70184
70208
|
path: stringType(),
|
|
70185
70209
|
key: stringType(),
|
|
70186
70210
|
displayName: stringType().optional(),
|
|
@@ -70233,11 +70257,13 @@ var init_syncmcptool = __esm(() => {
|
|
|
70233
70257
|
required: arrayType(stringType()).optional()
|
|
70234
70258
|
});
|
|
70235
70259
|
SyncMcpToolResponseBodyTools$inboundSchema = objectType({
|
|
70260
|
+
id: stringType().default("01KA8BQBD70F4RBYVH0P6SRFYQ"),
|
|
70236
70261
|
name: stringType(),
|
|
70237
70262
|
description: stringType().optional(),
|
|
70238
70263
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema)
|
|
70239
70264
|
});
|
|
70240
70265
|
SyncMcpToolResponseBodyTools$outboundSchema = objectType({
|
|
70266
|
+
id: stringType().default("01KA8BQBD70F4RBYVH0P6SRFYQ"),
|
|
70241
70267
|
name: stringType(),
|
|
70242
70268
|
description: stringType().optional(),
|
|
70243
70269
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -70279,7 +70305,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70279
70305
|
errors: arrayType(stringType())
|
|
70280
70306
|
});
|
|
70281
70307
|
SyncMcpToolResponseBody4$inboundSchema = objectType({
|
|
70282
|
-
_id: stringType().default("
|
|
70308
|
+
_id: stringType().default("tool_01KA8BQBD6C5KW43B2PN4D5XT6"),
|
|
70283
70309
|
path: stringType(),
|
|
70284
70310
|
key: stringType(),
|
|
70285
70311
|
display_name: stringType().optional(),
|
|
@@ -70307,7 +70333,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70307
70333
|
});
|
|
70308
70334
|
});
|
|
70309
70335
|
SyncMcpToolResponseBody4$outboundSchema = objectType({
|
|
70310
|
-
id: stringType().default("
|
|
70336
|
+
id: stringType().default("tool_01KA8BQBD6C5KW43B2PN4D5XT6"),
|
|
70311
70337
|
path: stringType(),
|
|
70312
70338
|
key: stringType(),
|
|
70313
70339
|
displayName: stringType().optional(),
|
|
@@ -70409,7 +70435,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70409
70435
|
errors: arrayType(stringType())
|
|
70410
70436
|
});
|
|
70411
70437
|
SyncMcpToolResponseBody3$inboundSchema = objectType({
|
|
70412
|
-
_id: stringType().default("
|
|
70438
|
+
_id: stringType().default("tool_01KA8BQBD33A8RNFKK0VPRS3BG"),
|
|
70413
70439
|
path: stringType(),
|
|
70414
70440
|
key: stringType(),
|
|
70415
70441
|
display_name: stringType().optional(),
|
|
@@ -70437,7 +70463,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70437
70463
|
});
|
|
70438
70464
|
});
|
|
70439
70465
|
SyncMcpToolResponseBody3$outboundSchema = objectType({
|
|
70440
|
-
id: stringType().default("
|
|
70466
|
+
id: stringType().default("tool_01KA8BQBD33A8RNFKK0VPRS3BG"),
|
|
70441
70467
|
path: stringType(),
|
|
70442
70468
|
key: stringType(),
|
|
70443
70469
|
displayName: stringType().optional(),
|
|
@@ -70511,7 +70537,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70511
70537
|
errors: arrayType(stringType())
|
|
70512
70538
|
});
|
|
70513
70539
|
SyncMcpToolResponseBody2$inboundSchema = objectType({
|
|
70514
|
-
_id: stringType().default("
|
|
70540
|
+
_id: stringType().default("tool_01KA8BQBD0FY8N6B6H0GXMERCM"),
|
|
70515
70541
|
path: stringType(),
|
|
70516
70542
|
key: stringType(),
|
|
70517
70543
|
display_name: stringType().optional(),
|
|
@@ -70540,7 +70566,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70540
70566
|
});
|
|
70541
70567
|
});
|
|
70542
70568
|
SyncMcpToolResponseBody2$outboundSchema = objectType({
|
|
70543
|
-
id: stringType().default("
|
|
70569
|
+
id: stringType().default("tool_01KA8BQBD0FY8N6B6H0GXMERCM"),
|
|
70544
70570
|
path: stringType(),
|
|
70545
70571
|
key: stringType(),
|
|
70546
70572
|
displayName: stringType().optional(),
|
|
@@ -70617,7 +70643,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70617
70643
|
errors: arrayType(stringType())
|
|
70618
70644
|
});
|
|
70619
70645
|
SyncMcpToolResponseBody1$inboundSchema = objectType({
|
|
70620
|
-
_id: stringType().default("
|
|
70646
|
+
_id: stringType().default("tool_01KA8BQBCYGQX90ZBY1JX2HM6F"),
|
|
70621
70647
|
path: stringType(),
|
|
70622
70648
|
key: stringType(),
|
|
70623
70649
|
display_name: stringType().optional(),
|
|
@@ -70645,7 +70671,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70645
70671
|
});
|
|
70646
70672
|
});
|
|
70647
70673
|
SyncMcpToolResponseBody1$outboundSchema = objectType({
|
|
70648
|
-
id: stringType().default("
|
|
70674
|
+
id: stringType().default("tool_01KA8BQBCYGQX90ZBY1JX2HM6F"),
|
|
70649
70675
|
path: stringType(),
|
|
70650
70676
|
key: stringType(),
|
|
70651
70677
|
displayName: stringType().optional(),
|
|
@@ -71967,6 +71993,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71967
71993
|
key: stringType().optional(),
|
|
71968
71994
|
action_type: stringType(),
|
|
71969
71995
|
display_name: stringType().optional(),
|
|
71996
|
+
description: stringType().optional(),
|
|
71970
71997
|
requires_approval: booleanType().default(false),
|
|
71971
71998
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$inboundSchema)).optional(),
|
|
71972
71999
|
mcpServer: stringType().optional(),
|
|
@@ -71983,6 +72010,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71983
72010
|
key: stringType().optional(),
|
|
71984
72011
|
actionType: stringType(),
|
|
71985
72012
|
displayName: stringType().optional(),
|
|
72013
|
+
description: stringType().optional(),
|
|
71986
72014
|
requiresApproval: booleanType().default(false),
|
|
71987
72015
|
conditions: arrayType(lazyType(() => UpdateAgentConditions$outboundSchema)).optional(),
|
|
71988
72016
|
mcpServer: stringType().optional(),
|
|
@@ -72792,7 +72820,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72792
72820
|
is_active: booleanType(),
|
|
72793
72821
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
72794
72822
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72795
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72823
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:20.076Z").transform((v2) => new Date(v2))
|
|
72796
72824
|
}).transform((v2) => {
|
|
72797
72825
|
return remap(v2, {
|
|
72798
72826
|
_id: "id",
|
|
@@ -72810,7 +72838,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72810
72838
|
isActive: booleanType(),
|
|
72811
72839
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
72812
72840
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72813
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72841
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:20.076Z")).transform((v2) => v2.toISOString())
|
|
72814
72842
|
}).transform((v2) => {
|
|
72815
72843
|
return remap(v2, {
|
|
72816
72844
|
id: "_id",
|
|
@@ -72965,7 +72993,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72965
72993
|
tags: arrayType(stringType()).optional(),
|
|
72966
72994
|
metadata: recordType(anyType()).optional(),
|
|
72967
72995
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72968
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72996
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
72969
72997
|
}).transform((v2) => {
|
|
72970
72998
|
return remap(v2, {
|
|
72971
72999
|
_id: "id",
|
|
@@ -72983,7 +73011,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72983
73011
|
tags: arrayType(stringType()).optional(),
|
|
72984
73012
|
metadata: recordType(anyType()).optional(),
|
|
72985
73013
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72986
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73014
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
72987
73015
|
}).transform((v2) => {
|
|
72988
73016
|
return remap(v2, {
|
|
72989
73017
|
id: "_id",
|
|
@@ -74059,7 +74087,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74059
74087
|
human_review_id: stringType(),
|
|
74060
74088
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
74061
74089
|
reviewed_by_id: stringType(),
|
|
74062
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74090
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.370Z").transform((v2) => new Date(v2)),
|
|
74063
74091
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
74064
74092
|
values: arrayType(stringType())
|
|
74065
74093
|
}).transform((v2) => {
|
|
@@ -74076,7 +74104,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74076
74104
|
humanReviewId: stringType(),
|
|
74077
74105
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
74078
74106
|
reviewedById: stringType(),
|
|
74079
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74107
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.370Z")).transform((v2) => v2.toISOString()),
|
|
74080
74108
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
74081
74109
|
values: arrayType(stringType())
|
|
74082
74110
|
}).transform((v2) => {
|
|
@@ -74099,7 +74127,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74099
74127
|
human_review_id: stringType(),
|
|
74100
74128
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
74101
74129
|
reviewed_by_id: stringType(),
|
|
74102
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74130
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.369Z").transform((v2) => new Date(v2)),
|
|
74103
74131
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
74104
74132
|
value: numberType()
|
|
74105
74133
|
}).transform((v2) => {
|
|
@@ -74116,7 +74144,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74116
74144
|
humanReviewId: stringType(),
|
|
74117
74145
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
74118
74146
|
reviewedById: stringType(),
|
|
74119
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74147
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.369Z")).transform((v2) => v2.toISOString()),
|
|
74120
74148
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
74121
74149
|
value: numberType()
|
|
74122
74150
|
}).transform((v2) => {
|
|
@@ -74139,7 +74167,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74139
74167
|
human_review_id: stringType(),
|
|
74140
74168
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
74141
74169
|
reviewed_by_id: stringType(),
|
|
74142
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74170
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-17T07:33:30.368Z").transform((v2) => new Date(v2)),
|
|
74143
74171
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
74144
74172
|
value: stringType()
|
|
74145
74173
|
}).transform((v2) => {
|
|
@@ -74156,7 +74184,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74156
74184
|
humanReviewId: stringType(),
|
|
74157
74185
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
74158
74186
|
reviewedById: stringType(),
|
|
74159
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74187
|
+
reviewedAt: dateType().default(() => new Date("2025-11-17T07:33:30.368Z")).transform((v2) => v2.toISOString()),
|
|
74160
74188
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
74161
74189
|
value: stringType()
|
|
74162
74190
|
}).transform((v2) => {
|
|
@@ -74199,7 +74227,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74199
74227
|
created_by_id: stringType().optional(),
|
|
74200
74228
|
updated_by_id: stringType().optional(),
|
|
74201
74229
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74202
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74230
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
74203
74231
|
}).transform((v2) => {
|
|
74204
74232
|
return remap(v2, {
|
|
74205
74233
|
_id: "id",
|
|
@@ -74233,7 +74261,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74233
74261
|
createdById: stringType().optional(),
|
|
74234
74262
|
updatedById: stringType().optional(),
|
|
74235
74263
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74236
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74264
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
74237
74265
|
}).transform((v2) => {
|
|
74238
74266
|
return remap(v2, {
|
|
74239
74267
|
id: "_id",
|
|
@@ -74317,7 +74345,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74317
74345
|
created_by_id: stringType().optional(),
|
|
74318
74346
|
updated_by_id: stringType().optional(),
|
|
74319
74347
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74320
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74348
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-17T07:33:19.763Z").transform((v2) => new Date(v2))
|
|
74321
74349
|
}).transform((v2) => {
|
|
74322
74350
|
return remap(v2, {
|
|
74323
74351
|
_id: "id",
|
|
@@ -74337,7 +74365,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74337
74365
|
createdById: stringType().optional(),
|
|
74338
74366
|
updatedById: stringType().optional(),
|
|
74339
74367
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74340
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74368
|
+
updated: dateType().default(() => new Date("2025-11-17T07:33:19.763Z")).transform((v2) => v2.toISOString())
|
|
74341
74369
|
}).transform((v2) => {
|
|
74342
74370
|
return remap(v2, {
|
|
74343
74371
|
id: "_id",
|
|
@@ -74401,7 +74429,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74401
74429
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
74402
74430
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
74403
74431
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
74404
|
-
_id: stringType().default("
|
|
74432
|
+
_id: stringType().default("01KA8BQBG8QA51F3HVPN9GJKJC"),
|
|
74405
74433
|
display_name: stringType(),
|
|
74406
74434
|
description: stringType().optional(),
|
|
74407
74435
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -74424,7 +74452,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74424
74452
|
});
|
|
74425
74453
|
});
|
|
74426
74454
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
74427
|
-
id: stringType().default("
|
|
74455
|
+
id: stringType().default("01KA8BQBG8QA51F3HVPN9GJKJC"),
|
|
74428
74456
|
displayName: stringType(),
|
|
74429
74457
|
description: stringType().optional(),
|
|
74430
74458
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -75171,8 +75199,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75171
75199
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
75172
75200
|
_id: stringType(),
|
|
75173
75201
|
description: stringType(),
|
|
75174
|
-
created: stringType().default("2025-11-
|
|
75175
|
-
updated: stringType().default("2025-11-
|
|
75202
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75203
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75176
75204
|
guardrail_config: unionType([
|
|
75177
75205
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
75178
75206
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -75189,8 +75217,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75189
75217
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
75190
75218
|
id: stringType(),
|
|
75191
75219
|
description: stringType(),
|
|
75192
|
-
created: stringType().default("2025-11-
|
|
75193
|
-
updated: stringType().default("2025-11-
|
|
75220
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75221
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75194
75222
|
guardrailConfig: unionType([
|
|
75195
75223
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
75196
75224
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -75247,8 +75275,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75247
75275
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
75248
75276
|
_id: stringType(),
|
|
75249
75277
|
description: stringType(),
|
|
75250
|
-
created: stringType().default("2025-11-
|
|
75251
|
-
updated: stringType().default("2025-11-
|
|
75278
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75279
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75252
75280
|
guardrail_config: unionType([
|
|
75253
75281
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
75254
75282
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -75267,8 +75295,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75267
75295
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
75268
75296
|
id: stringType(),
|
|
75269
75297
|
description: stringType(),
|
|
75270
|
-
created: stringType().default("2025-11-
|
|
75271
|
-
updated: stringType().default("2025-11-
|
|
75298
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75299
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75272
75300
|
guardrailConfig: unionType([
|
|
75273
75301
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
75274
75302
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -75705,8 +75733,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75705
75733
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
75706
75734
|
_id: stringType(),
|
|
75707
75735
|
description: stringType(),
|
|
75708
|
-
created: stringType().default("2025-11-
|
|
75709
|
-
updated: stringType().default("2025-11-
|
|
75736
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75737
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75710
75738
|
guardrail_config: unionType([
|
|
75711
75739
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
75712
75740
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -75760,8 +75788,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75760
75788
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
75761
75789
|
id: stringType(),
|
|
75762
75790
|
description: stringType(),
|
|
75763
|
-
created: stringType().default("2025-11-
|
|
75764
|
-
updated: stringType().default("2025-11-
|
|
75791
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75792
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75765
75793
|
guardrailConfig: unionType([
|
|
75766
75794
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
75767
75795
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -75853,8 +75881,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75853
75881
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
75854
75882
|
_id: stringType(),
|
|
75855
75883
|
description: stringType(),
|
|
75856
|
-
created: stringType().default("2025-11-
|
|
75857
|
-
updated: stringType().default("2025-11-
|
|
75884
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75885
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75858
75886
|
guardrail_config: unionType([
|
|
75859
75887
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
75860
75888
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -75871,8 +75899,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75871
75899
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
75872
75900
|
id: stringType(),
|
|
75873
75901
|
description: stringType(),
|
|
75874
|
-
created: stringType().default("2025-11-
|
|
75875
|
-
updated: stringType().default("2025-11-
|
|
75902
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75903
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75876
75904
|
guardrailConfig: unionType([
|
|
75877
75905
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
75878
75906
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -75929,8 +75957,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75929
75957
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
75930
75958
|
_id: stringType(),
|
|
75931
75959
|
description: stringType(),
|
|
75932
|
-
created: stringType().default("2025-11-
|
|
75933
|
-
updated: stringType().default("2025-11-
|
|
75960
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75961
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75934
75962
|
guardrail_config: unionType([
|
|
75935
75963
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
75936
75964
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -75950,8 +75978,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75950
75978
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
75951
75979
|
id: stringType(),
|
|
75952
75980
|
description: stringType(),
|
|
75953
|
-
created: stringType().default("2025-11-
|
|
75954
|
-
updated: stringType().default("2025-11-
|
|
75981
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75982
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
75955
75983
|
guardrailConfig: unionType([
|
|
75956
75984
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
75957
75985
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -76009,8 +76037,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76009
76037
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
76010
76038
|
_id: stringType(),
|
|
76011
76039
|
description: stringType(),
|
|
76012
|
-
created: stringType().default("2025-11-
|
|
76013
|
-
updated: stringType().default("2025-11-
|
|
76040
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76041
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76014
76042
|
guardrail_config: unionType([
|
|
76015
76043
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
76016
76044
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -76027,8 +76055,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76027
76055
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
76028
76056
|
id: stringType(),
|
|
76029
76057
|
description: stringType(),
|
|
76030
|
-
created: stringType().default("2025-11-
|
|
76031
|
-
updated: stringType().default("2025-11-
|
|
76058
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76059
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76032
76060
|
guardrailConfig: unionType([
|
|
76033
76061
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
76034
76062
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -76083,8 +76111,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76083
76111
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
76084
76112
|
_id: stringType(),
|
|
76085
76113
|
description: stringType(),
|
|
76086
|
-
created: stringType().default("2025-11-
|
|
76087
|
-
updated: stringType().default("2025-11-
|
|
76114
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76115
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76088
76116
|
guardrail_config: unionType([
|
|
76089
76117
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
76090
76118
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -76102,8 +76130,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76102
76130
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
76103
76131
|
id: stringType(),
|
|
76104
76132
|
description: stringType(),
|
|
76105
|
-
created: stringType().default("2025-11-
|
|
76106
|
-
updated: stringType().default("2025-11-
|
|
76133
|
+
created: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76134
|
+
updated: stringType().default("2025-11-17T07:33:21.657Z"),
|
|
76107
76135
|
guardrailConfig: unionType([
|
|
76108
76136
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
76109
76137
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -79017,6 +79045,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79017
79045
|
});
|
|
79018
79046
|
UpdateCodeExecutionTool$inboundSchema = objectType({
|
|
79019
79047
|
path: stringType().optional(),
|
|
79048
|
+
key: stringType().optional(),
|
|
79020
79049
|
display_name: stringType().optional(),
|
|
79021
79050
|
description: stringType().optional(),
|
|
79022
79051
|
status: UpdateToolRequestBodyToolsRequest5Status$inboundSchema.default("live"),
|
|
@@ -79030,6 +79059,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79030
79059
|
});
|
|
79031
79060
|
UpdateCodeExecutionTool$outboundSchema = objectType({
|
|
79032
79061
|
path: stringType().optional(),
|
|
79062
|
+
key: stringType().optional(),
|
|
79033
79063
|
displayName: stringType().optional(),
|
|
79034
79064
|
description: stringType().optional(),
|
|
79035
79065
|
status: UpdateToolRequestBodyToolsRequest5Status$outboundSchema.default("live"),
|
|
@@ -79066,11 +79096,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79066
79096
|
required: arrayType(stringType()).optional()
|
|
79067
79097
|
});
|
|
79068
79098
|
RequestBodyTools$inboundSchema = objectType({
|
|
79099
|
+
id: stringType().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
79069
79100
|
name: stringType(),
|
|
79070
79101
|
description: stringType().optional(),
|
|
79071
79102
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
79072
79103
|
});
|
|
79073
79104
|
RequestBodyTools$outboundSchema = objectType({
|
|
79105
|
+
id: stringType().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
79074
79106
|
name: stringType(),
|
|
79075
79107
|
description: stringType().optional(),
|
|
79076
79108
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -79418,7 +79450,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79418
79450
|
code: stringType()
|
|
79419
79451
|
});
|
|
79420
79452
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
79421
|
-
_id: stringType().default("
|
|
79453
|
+
_id: stringType().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
79422
79454
|
path: stringType(),
|
|
79423
79455
|
key: stringType(),
|
|
79424
79456
|
display_name: stringType().optional(),
|
|
@@ -79446,7 +79478,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79446
79478
|
});
|
|
79447
79479
|
});
|
|
79448
79480
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
79449
|
-
id: stringType().default("
|
|
79481
|
+
id: stringType().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
79450
79482
|
path: stringType(),
|
|
79451
79483
|
key: stringType(),
|
|
79452
79484
|
displayName: stringType().optional(),
|
|
@@ -79498,11 +79530,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79498
79530
|
required: arrayType(stringType()).optional()
|
|
79499
79531
|
});
|
|
79500
79532
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
79533
|
+
id: stringType().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
79501
79534
|
name: stringType(),
|
|
79502
79535
|
description: stringType().optional(),
|
|
79503
79536
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
79504
79537
|
});
|
|
79505
79538
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
79539
|
+
id: stringType().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
79506
79540
|
name: stringType(),
|
|
79507
79541
|
description: stringType().optional(),
|
|
79508
79542
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -79532,7 +79566,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79532
79566
|
});
|
|
79533
79567
|
});
|
|
79534
79568
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
79535
|
-
_id: stringType().default("
|
|
79569
|
+
_id: stringType().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
79536
79570
|
path: stringType(),
|
|
79537
79571
|
key: stringType(),
|
|
79538
79572
|
display_name: stringType().optional(),
|
|
@@ -79559,7 +79593,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79559
79593
|
});
|
|
79560
79594
|
});
|
|
79561
79595
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
79562
|
-
id: stringType().default("
|
|
79596
|
+
id: stringType().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
79563
79597
|
path: stringType(),
|
|
79564
79598
|
key: stringType(),
|
|
79565
79599
|
displayName: stringType().optional(),
|
|
@@ -79648,7 +79682,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79648
79682
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
79649
79683
|
});
|
|
79650
79684
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
79651
|
-
_id: stringType().default("
|
|
79685
|
+
_id: stringType().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
79652
79686
|
path: stringType(),
|
|
79653
79687
|
key: stringType(),
|
|
79654
79688
|
display_name: stringType().optional(),
|
|
@@ -79675,7 +79709,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79675
79709
|
});
|
|
79676
79710
|
});
|
|
79677
79711
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
79678
|
-
id: stringType().default("
|
|
79712
|
+
id: stringType().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
79679
79713
|
path: stringType(),
|
|
79680
79714
|
key: stringType(),
|
|
79681
79715
|
displayName: stringType().optional(),
|
|
@@ -79736,7 +79770,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79736
79770
|
strict: booleanType().optional()
|
|
79737
79771
|
});
|
|
79738
79772
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
79739
|
-
_id: stringType().default("
|
|
79773
|
+
_id: stringType().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
79740
79774
|
path: stringType(),
|
|
79741
79775
|
key: stringType(),
|
|
79742
79776
|
display_name: stringType().optional(),
|
|
@@ -79764,7 +79798,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79764
79798
|
});
|
|
79765
79799
|
});
|
|
79766
79800
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
79767
|
-
id: stringType().default("
|
|
79801
|
+
id: stringType().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
79768
79802
|
path: stringType(),
|
|
79769
79803
|
key: stringType(),
|
|
79770
79804
|
displayName: stringType().optional(),
|
|
@@ -79828,7 +79862,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79828
79862
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
79829
79863
|
});
|
|
79830
79864
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
79831
|
-
_id: stringType().default("
|
|
79865
|
+
_id: stringType().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
79832
79866
|
path: stringType(),
|
|
79833
79867
|
key: stringType(),
|
|
79834
79868
|
display_name: stringType().optional(),
|
|
@@ -79855,7 +79889,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79855
79889
|
});
|
|
79856
79890
|
});
|
|
79857
79891
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
79858
|
-
id: stringType().default("
|
|
79892
|
+
id: stringType().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
79859
79893
|
path: stringType(),
|
|
79860
79894
|
key: stringType(),
|
|
79861
79895
|
displayName: stringType().optional(),
|
|
@@ -92327,7 +92361,7 @@ Updates a tool in the workspace.`,
|
|
|
92327
92361
|
function createMCPServer(deps) {
|
|
92328
92362
|
const server = new McpServer({
|
|
92329
92363
|
name: "Orq",
|
|
92330
|
-
version: "4.0.0-rc.
|
|
92364
|
+
version: "4.0.0-rc.38"
|
|
92331
92365
|
});
|
|
92332
92366
|
const client = new OrqCore({
|
|
92333
92367
|
apiKey: deps.apiKey,
|
|
@@ -93747,7 +93781,7 @@ var routes = rn({
|
|
|
93747
93781
|
var app = Ve(routes, {
|
|
93748
93782
|
name: "mcp",
|
|
93749
93783
|
versionInfo: {
|
|
93750
|
-
currentVersion: "4.0.0-rc.
|
|
93784
|
+
currentVersion: "4.0.0-rc.38"
|
|
93751
93785
|
}
|
|
93752
93786
|
});
|
|
93753
93787
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -93755,5 +93789,5 @@ export {
|
|
|
93755
93789
|
app
|
|
93756
93790
|
};
|
|
93757
93791
|
|
|
93758
|
-
//# debugId=
|
|
93792
|
+
//# debugId=E4614D3E9C9A683364756E2164756E21
|
|
93759
93793
|
//# sourceMappingURL=mcp-server.js.map
|