@orq-ai/node 4.0.0-rc.46 → 4.0.0-rc.49
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 +275 -246
- package/bin/mcp-server.js.map +43 -43
- package/docs/sdks/agents/README.md +4 -6
- package/examples/package-lock.json +1 -1
- package/funcs/agentsDuplicate.d.ts +1 -1
- package/funcs/agentsDuplicate.js +5 -4
- package/funcs/agentsDuplicate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/tools/agentsDuplicate.js +1 -1
- package/mcp-server/tools/agentsDuplicate.js.map +1 -1
- package/models/operations/createagent.d.ts +2 -2
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +2 -2
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/duplicateagent.d.ts +26 -3
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +45 -6
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/syncmcptool.js +12 -12
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/sdk/agents.d.ts +1 -1
- package/sdk/agents.js +1 -1
- package/src/funcs/agentsDuplicate.ts +6 -5
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/agentsDuplicate.ts +1 -1
- package/src/models/operations/createagent.ts +4 -4
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/duplicateagent.ts +81 -5
- package/src/models/operations/duplicatetool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/syncmcptool.ts +12 -12
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/src/sdk/agents.ts +1 -1
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.49",
|
|
34207
34207
|
genVersion: "2.755.9",
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.49 2.755.9 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -37672,7 +37672,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37672
37672
|
});
|
|
37673
37673
|
CreateAgentRequestBody$inboundSchema = objectType({
|
|
37674
37674
|
key: stringType(),
|
|
37675
|
-
display_name: stringType(),
|
|
37675
|
+
display_name: stringType().optional(),
|
|
37676
37676
|
role: stringType(),
|
|
37677
37677
|
description: stringType(),
|
|
37678
37678
|
instructions: stringType(),
|
|
@@ -37700,7 +37700,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37700
37700
|
});
|
|
37701
37701
|
CreateAgentRequestBody$outboundSchema = objectType({
|
|
37702
37702
|
key: stringType(),
|
|
37703
|
-
displayName: stringType(),
|
|
37703
|
+
displayName: stringType().optional(),
|
|
37704
37704
|
role: stringType(),
|
|
37705
37705
|
description: stringType(),
|
|
37706
37706
|
instructions: stringType(),
|
|
@@ -38632,7 +38632,7 @@ var init_createbudget = __esm(() => {
|
|
|
38632
38632
|
is_active: booleanType(),
|
|
38633
38633
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38634
38634
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38635
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38635
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.789Z").transform((v2) => new Date(v2))
|
|
38636
38636
|
}).transform((v2) => {
|
|
38637
38637
|
return remap(v2, {
|
|
38638
38638
|
_id: "id",
|
|
@@ -38650,7 +38650,7 @@ var init_createbudget = __esm(() => {
|
|
|
38650
38650
|
isActive: booleanType(),
|
|
38651
38651
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38652
38652
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38653
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38653
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.789Z")).transform((v2) => v2.toISOString())
|
|
38654
38654
|
}).transform((v2) => {
|
|
38655
38655
|
return remap(v2, {
|
|
38656
38656
|
id: "_id",
|
|
@@ -38790,7 +38790,7 @@ var init_createcontact = __esm(() => {
|
|
|
38790
38790
|
tags: arrayType(stringType()).optional(),
|
|
38791
38791
|
metadata: recordType(anyType()).optional(),
|
|
38792
38792
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38793
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38793
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
38794
38794
|
}).transform((v2) => {
|
|
38795
38795
|
return remap(v2, {
|
|
38796
38796
|
_id: "id",
|
|
@@ -38810,7 +38810,7 @@ var init_createcontact = __esm(() => {
|
|
|
38810
38810
|
tags: arrayType(stringType()).optional(),
|
|
38811
38811
|
metadata: recordType(anyType()).optional(),
|
|
38812
38812
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38813
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38813
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
38814
38814
|
}).transform((v2) => {
|
|
38815
38815
|
return remap(v2, {
|
|
38816
38816
|
id: "_id",
|
|
@@ -38870,7 +38870,7 @@ var init_createdataset = __esm(() => {
|
|
|
38870
38870
|
created_by_id: stringType().optional(),
|
|
38871
38871
|
updated_by_id: stringType().optional(),
|
|
38872
38872
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38873
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38873
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
38874
38874
|
}).transform((v2) => {
|
|
38875
38875
|
return remap(v2, {
|
|
38876
38876
|
_id: "id",
|
|
@@ -38890,7 +38890,7 @@ var init_createdataset = __esm(() => {
|
|
|
38890
38890
|
createdById: stringType().optional(),
|
|
38891
38891
|
updatedById: stringType().optional(),
|
|
38892
38892
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38893
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38893
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
38894
38894
|
}).transform((v2) => {
|
|
38895
38895
|
return remap(v2, {
|
|
38896
38896
|
id: "_id",
|
|
@@ -39964,7 +39964,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39964
39964
|
human_review_id: stringType(),
|
|
39965
39965
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39966
39966
|
reviewed_by_id: stringType(),
|
|
39967
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39967
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.806Z").transform((v2) => new Date(v2)),
|
|
39968
39968
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39969
39969
|
values: arrayType(stringType())
|
|
39970
39970
|
}).transform((v2) => {
|
|
@@ -39981,7 +39981,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39981
39981
|
humanReviewId: stringType(),
|
|
39982
39982
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39983
39983
|
reviewedById: stringType(),
|
|
39984
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39984
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.806Z")).transform((v2) => v2.toISOString()),
|
|
39985
39985
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39986
39986
|
values: arrayType(stringType())
|
|
39987
39987
|
}).transform((v2) => {
|
|
@@ -40004,7 +40004,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40004
40004
|
human_review_id: stringType(),
|
|
40005
40005
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
40006
40006
|
reviewed_by_id: stringType(),
|
|
40007
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40007
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.805Z").transform((v2) => new Date(v2)),
|
|
40008
40008
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
40009
40009
|
value: numberType()
|
|
40010
40010
|
}).transform((v2) => {
|
|
@@ -40021,7 +40021,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40021
40021
|
humanReviewId: stringType(),
|
|
40022
40022
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
40023
40023
|
reviewedById: stringType(),
|
|
40024
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40024
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.805Z")).transform((v2) => v2.toISOString()),
|
|
40025
40025
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
40026
40026
|
value: numberType()
|
|
40027
40027
|
}).transform((v2) => {
|
|
@@ -40044,7 +40044,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40044
40044
|
human_review_id: stringType(),
|
|
40045
40045
|
source: Source$inboundSchema.default("orq"),
|
|
40046
40046
|
reviewed_by_id: stringType(),
|
|
40047
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40047
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.805Z").transform((v2) => new Date(v2)),
|
|
40048
40048
|
type: EvaluationsType$inboundSchema,
|
|
40049
40049
|
value: stringType()
|
|
40050
40050
|
}).transform((v2) => {
|
|
@@ -40061,7 +40061,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40061
40061
|
humanReviewId: stringType(),
|
|
40062
40062
|
source: Source$outboundSchema.default("orq"),
|
|
40063
40063
|
reviewedById: stringType(),
|
|
40064
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40064
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.805Z")).transform((v2) => v2.toISOString()),
|
|
40065
40065
|
type: EvaluationsType$outboundSchema,
|
|
40066
40066
|
value: stringType()
|
|
40067
40067
|
}).transform((v2) => {
|
|
@@ -40104,7 +40104,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40104
40104
|
created_by_id: stringType().optional(),
|
|
40105
40105
|
updated_by_id: stringType().optional(),
|
|
40106
40106
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40107
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
40107
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
40108
40108
|
}).transform((v2) => {
|
|
40109
40109
|
return remap(v2, {
|
|
40110
40110
|
_id: "id",
|
|
@@ -40138,7 +40138,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40138
40138
|
createdById: stringType().optional(),
|
|
40139
40139
|
updatedById: stringType().optional(),
|
|
40140
40140
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40141
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40141
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
40142
40142
|
}).transform((v2) => {
|
|
40143
40143
|
return remap(v2, {
|
|
40144
40144
|
id: "_id",
|
|
@@ -40317,7 +40317,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40317
40317
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40318
40318
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40319
40319
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40320
|
-
_id: stringType().default("
|
|
40320
|
+
_id: stringType().default("01KADVBBS7CZ4ED9QP03PEXA9H"),
|
|
40321
40321
|
display_name: stringType(),
|
|
40322
40322
|
description: stringType().optional(),
|
|
40323
40323
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40340,7 +40340,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40340
40340
|
});
|
|
40341
40341
|
});
|
|
40342
40342
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40343
|
-
id: stringType().default("
|
|
40343
|
+
id: stringType().default("01KADVBBS7CZ4ED9QP03PEXA9H"),
|
|
40344
40344
|
displayName: stringType(),
|
|
40345
40345
|
description: stringType().optional(),
|
|
40346
40346
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -41061,8 +41061,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41061
41061
|
Typescript$inboundSchema = objectType({
|
|
41062
41062
|
_id: stringType(),
|
|
41063
41063
|
description: stringType(),
|
|
41064
|
-
created: stringType().default("2025-11-
|
|
41065
|
-
updated: stringType().default("2025-11-
|
|
41064
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41065
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41066
41066
|
guardrail_config: unionType([
|
|
41067
41067
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
41068
41068
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -41079,8 +41079,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41079
41079
|
Typescript$outboundSchema = objectType({
|
|
41080
41080
|
id: stringType(),
|
|
41081
41081
|
description: stringType(),
|
|
41082
|
-
created: stringType().default("2025-11-
|
|
41083
|
-
updated: stringType().default("2025-11-
|
|
41082
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41083
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41084
41084
|
guardrailConfig: unionType([
|
|
41085
41085
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
41086
41086
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -41137,8 +41137,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41137
41137
|
Ragas$inboundSchema = objectType({
|
|
41138
41138
|
_id: stringType(),
|
|
41139
41139
|
description: stringType(),
|
|
41140
|
-
created: stringType().default("2025-11-
|
|
41141
|
-
updated: stringType().default("2025-11-
|
|
41140
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41141
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41142
41142
|
guardrail_config: unionType([
|
|
41143
41143
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
41144
41144
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -41157,8 +41157,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41157
41157
|
Ragas$outboundSchema = objectType({
|
|
41158
41158
|
id: stringType(),
|
|
41159
41159
|
description: stringType(),
|
|
41160
|
-
created: stringType().default("2025-11-
|
|
41161
|
-
updated: stringType().default("2025-11-
|
|
41160
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41161
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41162
41162
|
guardrailConfig: unionType([
|
|
41163
41163
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
41164
41164
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41595,8 +41595,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41595
41595
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41596
41596
|
_id: stringType(),
|
|
41597
41597
|
description: stringType(),
|
|
41598
|
-
created: stringType().default("2025-11-
|
|
41599
|
-
updated: stringType().default("2025-11-
|
|
41598
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41599
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41600
41600
|
guardrail_config: unionType([
|
|
41601
41601
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41602
41602
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41650,8 +41650,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41650
41650
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41651
41651
|
id: stringType(),
|
|
41652
41652
|
description: stringType(),
|
|
41653
|
-
created: stringType().default("2025-11-
|
|
41654
|
-
updated: stringType().default("2025-11-
|
|
41653
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41654
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41655
41655
|
guardrailConfig: unionType([
|
|
41656
41656
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41657
41657
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41743,8 +41743,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41743
41743
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41744
41744
|
_id: stringType(),
|
|
41745
41745
|
description: stringType(),
|
|
41746
|
-
created: stringType().default("2025-11-
|
|
41747
|
-
updated: stringType().default("2025-11-
|
|
41746
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41747
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41748
41748
|
guardrail_config: unionType([
|
|
41749
41749
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41750
41750
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41761,8 +41761,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41761
41761
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41762
41762
|
id: stringType(),
|
|
41763
41763
|
description: stringType(),
|
|
41764
|
-
created: stringType().default("2025-11-
|
|
41765
|
-
updated: stringType().default("2025-11-
|
|
41764
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41765
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41766
41766
|
guardrailConfig: unionType([
|
|
41767
41767
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41768
41768
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41819,8 +41819,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41819
41819
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41820
41820
|
_id: stringType(),
|
|
41821
41821
|
description: stringType(),
|
|
41822
|
-
created: stringType().default("2025-11-
|
|
41823
|
-
updated: stringType().default("2025-11-
|
|
41822
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41823
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41824
41824
|
guardrail_config: unionType([
|
|
41825
41825
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41826
41826
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41840,8 +41840,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41840
41840
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41841
41841
|
id: stringType(),
|
|
41842
41842
|
description: stringType(),
|
|
41843
|
-
created: stringType().default("2025-11-
|
|
41844
|
-
updated: stringType().default("2025-11-
|
|
41843
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41844
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41845
41845
|
guardrailConfig: unionType([
|
|
41846
41846
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41847
41847
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41899,8 +41899,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41899
41899
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41900
41900
|
_id: stringType(),
|
|
41901
41901
|
description: stringType(),
|
|
41902
|
-
created: stringType().default("2025-11-
|
|
41903
|
-
updated: stringType().default("2025-11-
|
|
41902
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41903
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41904
41904
|
guardrail_config: unionType([
|
|
41905
41905
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41906
41906
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41917,8 +41917,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41917
41917
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41918
41918
|
id: stringType(),
|
|
41919
41919
|
description: stringType(),
|
|
41920
|
-
created: stringType().default("2025-11-
|
|
41921
|
-
updated: stringType().default("2025-11-
|
|
41920
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41921
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41922
41922
|
guardrailConfig: unionType([
|
|
41923
41923
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41924
41924
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41973,8 +41973,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41973
41973
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41974
41974
|
_id: stringType(),
|
|
41975
41975
|
description: stringType(),
|
|
41976
|
-
created: stringType().default("2025-11-
|
|
41977
|
-
updated: stringType().default("2025-11-
|
|
41976
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41977
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41978
41978
|
guardrail_config: unionType([
|
|
41979
41979
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41980
41980
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41992,8 +41992,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41992
41992
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41993
41993
|
id: stringType(),
|
|
41994
41994
|
description: stringType(),
|
|
41995
|
-
created: stringType().default("2025-11-
|
|
41996
|
-
updated: stringType().default("2025-11-
|
|
41995
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41996
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
41997
41997
|
guardrailConfig: unionType([
|
|
41998
41998
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41999
41999
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -44860,7 +44860,7 @@ var init_createtool = __esm(() => {
|
|
|
44860
44860
|
code: stringType()
|
|
44861
44861
|
});
|
|
44862
44862
|
ResponseBody5$inboundSchema = objectType({
|
|
44863
|
-
_id: stringType().default("
|
|
44863
|
+
_id: stringType().default("tool_01KADVBBM09PGGVJP0C4CCZ9BY"),
|
|
44864
44864
|
path: stringType(),
|
|
44865
44865
|
key: stringType(),
|
|
44866
44866
|
display_name: stringType().optional(),
|
|
@@ -44888,7 +44888,7 @@ var init_createtool = __esm(() => {
|
|
|
44888
44888
|
});
|
|
44889
44889
|
});
|
|
44890
44890
|
ResponseBody5$outboundSchema = objectType({
|
|
44891
|
-
id: stringType().default("
|
|
44891
|
+
id: stringType().default("tool_01KADVBBM09PGGVJP0C4CCZ9BY"),
|
|
44892
44892
|
path: stringType(),
|
|
44893
44893
|
key: stringType(),
|
|
44894
44894
|
displayName: stringType().optional(),
|
|
@@ -44940,13 +44940,13 @@ var init_createtool = __esm(() => {
|
|
|
44940
44940
|
required: arrayType(stringType()).optional()
|
|
44941
44941
|
});
|
|
44942
44942
|
ResponseBodyTools$inboundSchema = objectType({
|
|
44943
|
-
id: stringType().default("
|
|
44943
|
+
id: stringType().default("01KADVBBKY3MC9JPV9V458DZHR"),
|
|
44944
44944
|
name: stringType(),
|
|
44945
44945
|
description: stringType().optional(),
|
|
44946
44946
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
44947
44947
|
});
|
|
44948
44948
|
ResponseBodyTools$outboundSchema = objectType({
|
|
44949
|
-
id: stringType().default("
|
|
44949
|
+
id: stringType().default("01KADVBBKY3MC9JPV9V458DZHR"),
|
|
44950
44950
|
name: stringType(),
|
|
44951
44951
|
description: stringType().optional(),
|
|
44952
44952
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -44976,7 +44976,7 @@ var init_createtool = __esm(() => {
|
|
|
44976
44976
|
});
|
|
44977
44977
|
});
|
|
44978
44978
|
ResponseBody4$inboundSchema = objectType({
|
|
44979
|
-
_id: stringType().default("
|
|
44979
|
+
_id: stringType().default("tool_01KADVBBKX8WPHZ59ASNT3VVAG"),
|
|
44980
44980
|
path: stringType(),
|
|
44981
44981
|
key: stringType(),
|
|
44982
44982
|
display_name: stringType().optional(),
|
|
@@ -45003,7 +45003,7 @@ var init_createtool = __esm(() => {
|
|
|
45003
45003
|
});
|
|
45004
45004
|
});
|
|
45005
45005
|
ResponseBody4$outboundSchema = objectType({
|
|
45006
|
-
id: stringType().default("
|
|
45006
|
+
id: stringType().default("tool_01KADVBBKX8WPHZ59ASNT3VVAG"),
|
|
45007
45007
|
path: stringType(),
|
|
45008
45008
|
key: stringType(),
|
|
45009
45009
|
displayName: stringType().optional(),
|
|
@@ -45092,7 +45092,7 @@ var init_createtool = __esm(() => {
|
|
|
45092
45092
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45093
45093
|
});
|
|
45094
45094
|
ResponseBody3$inboundSchema = objectType({
|
|
45095
|
-
_id: stringType().default("
|
|
45095
|
+
_id: stringType().default("tool_01KADVBBKSJE2J2NWBB7QNXRD9"),
|
|
45096
45096
|
path: stringType(),
|
|
45097
45097
|
key: stringType(),
|
|
45098
45098
|
display_name: stringType().optional(),
|
|
@@ -45119,7 +45119,7 @@ var init_createtool = __esm(() => {
|
|
|
45119
45119
|
});
|
|
45120
45120
|
});
|
|
45121
45121
|
ResponseBody3$outboundSchema = objectType({
|
|
45122
|
-
id: stringType().default("
|
|
45122
|
+
id: stringType().default("tool_01KADVBBKSJE2J2NWBB7QNXRD9"),
|
|
45123
45123
|
path: stringType(),
|
|
45124
45124
|
key: stringType(),
|
|
45125
45125
|
displayName: stringType().optional(),
|
|
@@ -45180,7 +45180,7 @@ var init_createtool = __esm(() => {
|
|
|
45180
45180
|
strict: booleanType().optional()
|
|
45181
45181
|
});
|
|
45182
45182
|
ResponseBody2$inboundSchema = objectType({
|
|
45183
|
-
_id: stringType().default("
|
|
45183
|
+
_id: stringType().default("tool_01KADVBBKQZ7PWT8DGXX9CB4BS"),
|
|
45184
45184
|
path: stringType(),
|
|
45185
45185
|
key: stringType(),
|
|
45186
45186
|
display_name: stringType().optional(),
|
|
@@ -45208,7 +45208,7 @@ var init_createtool = __esm(() => {
|
|
|
45208
45208
|
});
|
|
45209
45209
|
});
|
|
45210
45210
|
ResponseBody2$outboundSchema = objectType({
|
|
45211
|
-
id: stringType().default("
|
|
45211
|
+
id: stringType().default("tool_01KADVBBKQZ7PWT8DGXX9CB4BS"),
|
|
45212
45212
|
path: stringType(),
|
|
45213
45213
|
key: stringType(),
|
|
45214
45214
|
displayName: stringType().optional(),
|
|
@@ -45272,7 +45272,7 @@ var init_createtool = __esm(() => {
|
|
|
45272
45272
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
45273
45273
|
});
|
|
45274
45274
|
ResponseBody1$inboundSchema = objectType({
|
|
45275
|
-
_id: stringType().default("
|
|
45275
|
+
_id: stringType().default("tool_01KADVBBKMC9E4GXCVRE63Z271"),
|
|
45276
45276
|
path: stringType(),
|
|
45277
45277
|
key: stringType(),
|
|
45278
45278
|
display_name: stringType().optional(),
|
|
@@ -45299,7 +45299,7 @@ var init_createtool = __esm(() => {
|
|
|
45299
45299
|
});
|
|
45300
45300
|
});
|
|
45301
45301
|
ResponseBody1$outboundSchema = objectType({
|
|
45302
|
-
id: stringType().default("
|
|
45302
|
+
id: stringType().default("tool_01KADVBBKMC9E4GXCVRE63Z271"),
|
|
45303
45303
|
path: stringType(),
|
|
45304
45304
|
key: stringType(),
|
|
45305
45305
|
displayName: stringType().optional(),
|
|
@@ -51327,7 +51327,7 @@ var init_deploymentstream = __esm(() => {
|
|
|
51327
51327
|
});
|
|
51328
51328
|
|
|
51329
51329
|
// src/models/operations/duplicateagent.ts
|
|
51330
|
-
var DuplicateAgentStatus, DuplicateAgentToolApprovalRequired, DuplicateAgentExecuteOn, DuplicateAgentAgentsExecuteOn, DuplicateAgentVoice, DuplicateAgentFormat, DuplicateAgentResponseFormatAgentsResponseType, DuplicateAgentResponseFormatAgentsType, DuplicateAgentResponseFormatType, DuplicateAgentType, DuplicateAgentThinkingLevel, DuplicateAgentToolChoiceType, DuplicateAgentToolChoice1, DuplicateAgentModalities, DuplicateAgentFallbackModelConfigurationVoice, DuplicateAgentFallbackModelConfigurationFormat, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType, DuplicateAgentResponseFormatAgentsResponse201Type, DuplicateAgentFallbackModelConfigurationType, DuplicateAgentFallbackModelConfigurationThinkingLevel, DuplicateAgentToolChoiceAgentsType, DuplicateAgentToolChoiceAgents1, DuplicateAgentFallbackModelConfigurationModalities, DuplicateAgentRequest$inboundSchema, DuplicateAgentRequest$outboundSchema, DuplicateAgentStatus$inboundSchema, DuplicateAgentStatus$outboundSchema, DuplicateAgentToolApprovalRequired$inboundSchema, DuplicateAgentToolApprovalRequired$outboundSchema, DuplicateAgentConditions$inboundSchema, DuplicateAgentConditions$outboundSchema, DuplicateAgentTools$inboundSchema, DuplicateAgentTools$outboundSchema, DuplicateAgentExecuteOn$inboundSchema, DuplicateAgentExecuteOn$outboundSchema, DuplicateAgentEvaluators$inboundSchema, DuplicateAgentEvaluators$outboundSchema, DuplicateAgentAgentsExecuteOn$inboundSchema, DuplicateAgentAgentsExecuteOn$outboundSchema, DuplicateAgentGuardrails$inboundSchema, DuplicateAgentGuardrails$outboundSchema, DuplicateAgentSettings$inboundSchema, DuplicateAgentSettings$outboundSchema, DuplicateAgentVoice$inboundSchema, DuplicateAgentVoice$outboundSchema, DuplicateAgentFormat$inboundSchema, DuplicateAgentFormat$outboundSchema, DuplicateAgentAudio$inboundSchema, DuplicateAgentAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponseType$inboundSchema, DuplicateAgentResponseFormatAgentsResponseType$outboundSchema, DuplicateAgentResponseFormatJsonSchema$inboundSchema, DuplicateAgentResponseFormatJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsType$inboundSchema, DuplicateAgentResponseFormatAgentsType$outboundSchema, DuplicateAgentResponseFormatJSONObject$inboundSchema, DuplicateAgentResponseFormatJSONObject$outboundSchema, DuplicateAgentResponseFormatType$inboundSchema, DuplicateAgentResponseFormatType$outboundSchema, DuplicateAgentResponseFormatText$inboundSchema, DuplicateAgentResponseFormatText$outboundSchema, DuplicateAgentResponseFormat$inboundSchema, DuplicateAgentResponseFormat$outboundSchema, DuplicateAgentStop$inboundSchema, DuplicateAgentStop$outboundSchema, DuplicateAgentStreamOptions$inboundSchema, DuplicateAgentStreamOptions$outboundSchema, DuplicateAgentType$inboundSchema, DuplicateAgentType$outboundSchema, DuplicateAgentThinkingLevel$inboundSchema, DuplicateAgentThinkingLevel$outboundSchema, DuplicateAgentThinking$inboundSchema, DuplicateAgentThinking$outboundSchema, DuplicateAgentToolChoiceType$inboundSchema, DuplicateAgentToolChoiceType$outboundSchema, DuplicateAgentToolChoiceFunction$inboundSchema, DuplicateAgentToolChoiceFunction$outboundSchema, DuplicateAgentToolChoice2$inboundSchema, DuplicateAgentToolChoice2$outboundSchema, DuplicateAgentToolChoice1$inboundSchema, DuplicateAgentToolChoice1$outboundSchema, DuplicateAgentToolChoice$inboundSchema, DuplicateAgentToolChoice$outboundSchema, DuplicateAgentModalities$inboundSchema, DuplicateAgentModalities$outboundSchema, DuplicateAgentParameters$inboundSchema, DuplicateAgentParameters$outboundSchema, DuplicateAgentRetry$inboundSchema, DuplicateAgentRetry$outboundSchema, DuplicateAgentFallbackModelConfigurationVoice$inboundSchema, DuplicateAgentFallbackModelConfigurationVoice$outboundSchema, DuplicateAgentFallbackModelConfigurationFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationAudio$inboundSchema, DuplicateAgentFallbackModelConfigurationAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$inboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$outboundSchema, DuplicateAgentResponseFormatAgentsText$inboundSchema, DuplicateAgentResponseFormatAgentsText$outboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationStop$inboundSchema, DuplicateAgentFallbackModelConfigurationStop$outboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$inboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$outboundSchema, DuplicateAgentFallbackModelConfigurationType$inboundSchema, DuplicateAgentFallbackModelConfigurationType$outboundSchema, DuplicateAgentFallbackModelConfigurationThinkingLevel$inboundSchema, DuplicateAgentFallbackModelConfigurationThinkingLevel$outboundSchema, DuplicateAgentFallbackModelConfigurationThinking$inboundSchema, DuplicateAgentFallbackModelConfigurationThinking$outboundSchema, DuplicateAgentToolChoiceAgentsType$inboundSchema, DuplicateAgentToolChoiceAgentsType$outboundSchema, DuplicateAgentToolChoiceAgentsFunction$inboundSchema, DuplicateAgentToolChoiceAgentsFunction$outboundSchema, DuplicateAgentToolChoiceAgents2$inboundSchema, DuplicateAgentToolChoiceAgents2$outboundSchema, DuplicateAgentToolChoiceAgents1$inboundSchema, DuplicateAgentToolChoiceAgents1$outboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$inboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$outboundSchema, DuplicateAgentFallbackModelConfigurationModalities$inboundSchema, DuplicateAgentFallbackModelConfigurationModalities$outboundSchema, DuplicateAgentFallbackModelConfigurationParameters$inboundSchema, DuplicateAgentFallbackModelConfigurationParameters$outboundSchema, DuplicateAgentFallbackModelConfiguration2$inboundSchema, DuplicateAgentFallbackModelConfiguration2$outboundSchema, DuplicateAgentFallbackModelConfiguration$inboundSchema, DuplicateAgentFallbackModelConfiguration$outboundSchema, DuplicateAgentModel$inboundSchema, DuplicateAgentModel$outboundSchema, DuplicateAgentTeamOfAgents$inboundSchema, DuplicateAgentTeamOfAgents$outboundSchema, DuplicateAgentMetrics$inboundSchema, DuplicateAgentMetrics$outboundSchema, DuplicateAgentKnowledgeBases$inboundSchema, DuplicateAgentKnowledgeBases$outboundSchema, DuplicateAgentResponseBody$inboundSchema2, DuplicateAgentResponseBody$outboundSchema2;
|
|
51330
|
+
var DuplicateAgentStatus, DuplicateAgentToolApprovalRequired, DuplicateAgentExecuteOn, DuplicateAgentAgentsExecuteOn, DuplicateAgentVoice, DuplicateAgentFormat, DuplicateAgentResponseFormatAgentsResponseType, DuplicateAgentResponseFormatAgentsType, DuplicateAgentResponseFormatType, DuplicateAgentType, DuplicateAgentThinkingLevel, DuplicateAgentToolChoiceType, DuplicateAgentToolChoice1, DuplicateAgentModalities, DuplicateAgentFallbackModelConfigurationVoice, DuplicateAgentFallbackModelConfigurationFormat, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType, DuplicateAgentResponseFormatAgentsResponse201Type, DuplicateAgentFallbackModelConfigurationType, DuplicateAgentFallbackModelConfigurationThinkingLevel, DuplicateAgentToolChoiceAgentsType, DuplicateAgentToolChoiceAgents1, DuplicateAgentFallbackModelConfigurationModalities, DuplicateAgentRequestBody$inboundSchema, DuplicateAgentRequestBody$outboundSchema, DuplicateAgentRequest$inboundSchema, DuplicateAgentRequest$outboundSchema, DuplicateAgentStatus$inboundSchema, DuplicateAgentStatus$outboundSchema, DuplicateAgentToolApprovalRequired$inboundSchema, DuplicateAgentToolApprovalRequired$outboundSchema, DuplicateAgentConditions$inboundSchema, DuplicateAgentConditions$outboundSchema, DuplicateAgentTools$inboundSchema, DuplicateAgentTools$outboundSchema, DuplicateAgentExecuteOn$inboundSchema, DuplicateAgentExecuteOn$outboundSchema, DuplicateAgentEvaluators$inboundSchema, DuplicateAgentEvaluators$outboundSchema, DuplicateAgentAgentsExecuteOn$inboundSchema, DuplicateAgentAgentsExecuteOn$outboundSchema, DuplicateAgentGuardrails$inboundSchema, DuplicateAgentGuardrails$outboundSchema, DuplicateAgentSettings$inboundSchema, DuplicateAgentSettings$outboundSchema, DuplicateAgentVoice$inboundSchema, DuplicateAgentVoice$outboundSchema, DuplicateAgentFormat$inboundSchema, DuplicateAgentFormat$outboundSchema, DuplicateAgentAudio$inboundSchema, DuplicateAgentAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponseType$inboundSchema, DuplicateAgentResponseFormatAgentsResponseType$outboundSchema, DuplicateAgentResponseFormatJsonSchema$inboundSchema, DuplicateAgentResponseFormatJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsType$inboundSchema, DuplicateAgentResponseFormatAgentsType$outboundSchema, DuplicateAgentResponseFormatJSONObject$inboundSchema, DuplicateAgentResponseFormatJSONObject$outboundSchema, DuplicateAgentResponseFormatType$inboundSchema, DuplicateAgentResponseFormatType$outboundSchema, DuplicateAgentResponseFormatText$inboundSchema, DuplicateAgentResponseFormatText$outboundSchema, DuplicateAgentResponseFormat$inboundSchema, DuplicateAgentResponseFormat$outboundSchema, DuplicateAgentStop$inboundSchema, DuplicateAgentStop$outboundSchema, DuplicateAgentStreamOptions$inboundSchema, DuplicateAgentStreamOptions$outboundSchema, DuplicateAgentType$inboundSchema, DuplicateAgentType$outboundSchema, DuplicateAgentThinkingLevel$inboundSchema, DuplicateAgentThinkingLevel$outboundSchema, DuplicateAgentThinking$inboundSchema, DuplicateAgentThinking$outboundSchema, DuplicateAgentToolChoiceType$inboundSchema, DuplicateAgentToolChoiceType$outboundSchema, DuplicateAgentToolChoiceFunction$inboundSchema, DuplicateAgentToolChoiceFunction$outboundSchema, DuplicateAgentToolChoice2$inboundSchema, DuplicateAgentToolChoice2$outboundSchema, DuplicateAgentToolChoice1$inboundSchema, DuplicateAgentToolChoice1$outboundSchema, DuplicateAgentToolChoice$inboundSchema, DuplicateAgentToolChoice$outboundSchema, DuplicateAgentModalities$inboundSchema, DuplicateAgentModalities$outboundSchema, DuplicateAgentParameters$inboundSchema, DuplicateAgentParameters$outboundSchema, DuplicateAgentRetry$inboundSchema, DuplicateAgentRetry$outboundSchema, DuplicateAgentFallbackModelConfigurationVoice$inboundSchema, DuplicateAgentFallbackModelConfigurationVoice$outboundSchema, DuplicateAgentFallbackModelConfigurationFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationAudio$inboundSchema, DuplicateAgentFallbackModelConfigurationAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$inboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$outboundSchema, DuplicateAgentResponseFormatAgentsText$inboundSchema, DuplicateAgentResponseFormatAgentsText$outboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationStop$inboundSchema, DuplicateAgentFallbackModelConfigurationStop$outboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$inboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$outboundSchema, DuplicateAgentFallbackModelConfigurationType$inboundSchema, DuplicateAgentFallbackModelConfigurationType$outboundSchema, DuplicateAgentFallbackModelConfigurationThinkingLevel$inboundSchema, DuplicateAgentFallbackModelConfigurationThinkingLevel$outboundSchema, DuplicateAgentFallbackModelConfigurationThinking$inboundSchema, DuplicateAgentFallbackModelConfigurationThinking$outboundSchema, DuplicateAgentToolChoiceAgentsType$inboundSchema, DuplicateAgentToolChoiceAgentsType$outboundSchema, DuplicateAgentToolChoiceAgentsFunction$inboundSchema, DuplicateAgentToolChoiceAgentsFunction$outboundSchema, DuplicateAgentToolChoiceAgents2$inboundSchema, DuplicateAgentToolChoiceAgents2$outboundSchema, DuplicateAgentToolChoiceAgents1$inboundSchema, DuplicateAgentToolChoiceAgents1$outboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$inboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$outboundSchema, DuplicateAgentFallbackModelConfigurationModalities$inboundSchema, DuplicateAgentFallbackModelConfigurationModalities$outboundSchema, DuplicateAgentFallbackModelConfigurationParameters$inboundSchema, DuplicateAgentFallbackModelConfigurationParameters$outboundSchema, DuplicateAgentFallbackModelConfiguration2$inboundSchema, DuplicateAgentFallbackModelConfiguration2$outboundSchema, DuplicateAgentFallbackModelConfiguration$inboundSchema, DuplicateAgentFallbackModelConfiguration$outboundSchema, DuplicateAgentModel$inboundSchema, DuplicateAgentModel$outboundSchema, DuplicateAgentTeamOfAgents$inboundSchema, DuplicateAgentTeamOfAgents$outboundSchema, DuplicateAgentMetrics$inboundSchema, DuplicateAgentMetrics$outboundSchema, DuplicateAgentKnowledgeBases$inboundSchema, DuplicateAgentKnowledgeBases$outboundSchema, DuplicateAgentResponseBody$inboundSchema2, DuplicateAgentResponseBody$outboundSchema2;
|
|
51331
51331
|
var init_duplicateagent2 = __esm(() => {
|
|
51332
51332
|
init_esm();
|
|
51333
51333
|
init_primitives();
|
|
@@ -51438,11 +51438,39 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51438
51438
|
Text: "text",
|
|
51439
51439
|
Audio: "audio"
|
|
51440
51440
|
};
|
|
51441
|
+
DuplicateAgentRequestBody$inboundSchema = objectType({
|
|
51442
|
+
key: stringType(),
|
|
51443
|
+
display_name: stringType().optional()
|
|
51444
|
+
}).transform((v2) => {
|
|
51445
|
+
return remap(v2, {
|
|
51446
|
+
display_name: "displayName"
|
|
51447
|
+
});
|
|
51448
|
+
});
|
|
51449
|
+
DuplicateAgentRequestBody$outboundSchema = objectType({
|
|
51450
|
+
key: stringType(),
|
|
51451
|
+
displayName: stringType().optional()
|
|
51452
|
+
}).transform((v2) => {
|
|
51453
|
+
return remap(v2, {
|
|
51454
|
+
displayName: "display_name"
|
|
51455
|
+
});
|
|
51456
|
+
});
|
|
51441
51457
|
DuplicateAgentRequest$inboundSchema = objectType({
|
|
51442
|
-
|
|
51458
|
+
agent_key: stringType(),
|
|
51459
|
+
RequestBody: lazyType(() => DuplicateAgentRequestBody$inboundSchema).optional()
|
|
51460
|
+
}).transform((v2) => {
|
|
51461
|
+
return remap(v2, {
|
|
51462
|
+
agent_key: "agentKey",
|
|
51463
|
+
RequestBody: "requestBody"
|
|
51464
|
+
});
|
|
51443
51465
|
});
|
|
51444
51466
|
DuplicateAgentRequest$outboundSchema = objectType({
|
|
51445
|
-
|
|
51467
|
+
agentKey: stringType(),
|
|
51468
|
+
requestBody: lazyType(() => DuplicateAgentRequestBody$outboundSchema).optional()
|
|
51469
|
+
}).transform((v2) => {
|
|
51470
|
+
return remap(v2, {
|
|
51471
|
+
agentKey: "agent_key",
|
|
51472
|
+
requestBody: "RequestBody"
|
|
51473
|
+
});
|
|
51446
51474
|
});
|
|
51447
51475
|
DuplicateAgentStatus$inboundSchema = nativeEnumType(DuplicateAgentStatus);
|
|
51448
51476
|
DuplicateAgentStatus$outboundSchema = DuplicateAgentStatus$inboundSchema;
|
|
@@ -52343,7 +52371,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52343
52371
|
code: stringType()
|
|
52344
52372
|
});
|
|
52345
52373
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52346
|
-
_id: stringType().default("
|
|
52374
|
+
_id: stringType().default("tool_01KADVBBNFY73SPWK7TP6A10AE"),
|
|
52347
52375
|
path: stringType(),
|
|
52348
52376
|
key: stringType(),
|
|
52349
52377
|
display_name: stringType().optional(),
|
|
@@ -52371,7 +52399,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52371
52399
|
});
|
|
52372
52400
|
});
|
|
52373
52401
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52374
|
-
id: stringType().default("
|
|
52402
|
+
id: stringType().default("tool_01KADVBBNFY73SPWK7TP6A10AE"),
|
|
52375
52403
|
path: stringType(),
|
|
52376
52404
|
key: stringType(),
|
|
52377
52405
|
displayName: stringType().optional(),
|
|
@@ -52423,13 +52451,13 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52423
52451
|
required: arrayType(stringType()).optional()
|
|
52424
52452
|
});
|
|
52425
52453
|
DuplicateToolResponseBodyTools$inboundSchema = objectType({
|
|
52426
|
-
id: stringType().default("
|
|
52454
|
+
id: stringType().default("01KADVBBNEV9XPFMQ25JQERQ3B"),
|
|
52427
52455
|
name: stringType(),
|
|
52428
52456
|
description: stringType().optional(),
|
|
52429
52457
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$inboundSchema)
|
|
52430
52458
|
});
|
|
52431
52459
|
DuplicateToolResponseBodyTools$outboundSchema = objectType({
|
|
52432
|
-
id: stringType().default("
|
|
52460
|
+
id: stringType().default("01KADVBBNEV9XPFMQ25JQERQ3B"),
|
|
52433
52461
|
name: stringType(),
|
|
52434
52462
|
description: stringType().optional(),
|
|
52435
52463
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -52459,7 +52487,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52459
52487
|
});
|
|
52460
52488
|
});
|
|
52461
52489
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52462
|
-
_id: stringType().default("
|
|
52490
|
+
_id: stringType().default("tool_01KADVBBNDHMJY5W2M77X1Q9KP"),
|
|
52463
52491
|
path: stringType(),
|
|
52464
52492
|
key: stringType(),
|
|
52465
52493
|
display_name: stringType().optional(),
|
|
@@ -52486,7 +52514,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52486
52514
|
});
|
|
52487
52515
|
});
|
|
52488
52516
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52489
|
-
id: stringType().default("
|
|
52517
|
+
id: stringType().default("tool_01KADVBBNDHMJY5W2M77X1Q9KP"),
|
|
52490
52518
|
path: stringType(),
|
|
52491
52519
|
key: stringType(),
|
|
52492
52520
|
displayName: stringType().optional(),
|
|
@@ -52575,7 +52603,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52575
52603
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52576
52604
|
});
|
|
52577
52605
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52578
|
-
_id: stringType().default("
|
|
52606
|
+
_id: stringType().default("tool_01KADVBBNB22DQ643DETVHAQKY"),
|
|
52579
52607
|
path: stringType(),
|
|
52580
52608
|
key: stringType(),
|
|
52581
52609
|
display_name: stringType().optional(),
|
|
@@ -52602,7 +52630,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52602
52630
|
});
|
|
52603
52631
|
});
|
|
52604
52632
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52605
|
-
id: stringType().default("
|
|
52633
|
+
id: stringType().default("tool_01KADVBBNB22DQ643DETVHAQKY"),
|
|
52606
52634
|
path: stringType(),
|
|
52607
52635
|
key: stringType(),
|
|
52608
52636
|
displayName: stringType().optional(),
|
|
@@ -52663,7 +52691,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52663
52691
|
strict: booleanType().optional()
|
|
52664
52692
|
});
|
|
52665
52693
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52666
|
-
_id: stringType().default("
|
|
52694
|
+
_id: stringType().default("tool_01KADVBBNAN5BG7C434S3V3CWK"),
|
|
52667
52695
|
path: stringType(),
|
|
52668
52696
|
key: stringType(),
|
|
52669
52697
|
display_name: stringType().optional(),
|
|
@@ -52691,7 +52719,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52691
52719
|
});
|
|
52692
52720
|
});
|
|
52693
52721
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
52694
|
-
id: stringType().default("
|
|
52722
|
+
id: stringType().default("tool_01KADVBBNAN5BG7C434S3V3CWK"),
|
|
52695
52723
|
path: stringType(),
|
|
52696
52724
|
key: stringType(),
|
|
52697
52725
|
displayName: stringType().optional(),
|
|
@@ -52755,7 +52783,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52755
52783
|
parameters: lazyType(() => DuplicateToolResponseBodyParameters$outboundSchema).optional()
|
|
52756
52784
|
});
|
|
52757
52785
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
52758
|
-
_id: stringType().default("
|
|
52786
|
+
_id: stringType().default("tool_01KADVBBN8B84K13KPB9QHEAT5"),
|
|
52759
52787
|
path: stringType(),
|
|
52760
52788
|
key: stringType(),
|
|
52761
52789
|
display_name: stringType().optional(),
|
|
@@ -52782,7 +52810,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52782
52810
|
});
|
|
52783
52811
|
});
|
|
52784
52812
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
52785
|
-
id: stringType().default("
|
|
52813
|
+
id: stringType().default("tool_01KADVBBN8B84K13KPB9QHEAT5"),
|
|
52786
52814
|
path: stringType(),
|
|
52787
52815
|
key: stringType(),
|
|
52788
52816
|
displayName: stringType().optional(),
|
|
@@ -52878,7 +52906,7 @@ var init_fileget = __esm(() => {
|
|
|
52878
52906
|
bytes: numberType(),
|
|
52879
52907
|
file_name: stringType(),
|
|
52880
52908
|
workspace_id: stringType(),
|
|
52881
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52909
|
+
created: stringType().datetime({ offset: true }).default("2025-11-19T10:42:38.476Z").transform((v2) => new Date(v2))
|
|
52882
52910
|
}).transform((v2) => {
|
|
52883
52911
|
return remap(v2, {
|
|
52884
52912
|
_id: "id",
|
|
@@ -52894,7 +52922,7 @@ var init_fileget = __esm(() => {
|
|
|
52894
52922
|
bytes: numberType(),
|
|
52895
52923
|
fileName: stringType(),
|
|
52896
52924
|
workspaceId: stringType(),
|
|
52897
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52925
|
+
created: dateType().default(() => new Date("2025-11-19T10:42:38.476Z")).transform((v2) => v2.toISOString())
|
|
52898
52926
|
}).transform((v2) => {
|
|
52899
52927
|
return remap(v2, {
|
|
52900
52928
|
id: "_id",
|
|
@@ -52949,7 +52977,7 @@ var init_filelist = __esm(() => {
|
|
|
52949
52977
|
bytes: numberType(),
|
|
52950
52978
|
file_name: stringType(),
|
|
52951
52979
|
workspace_id: stringType(),
|
|
52952
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52980
|
+
created: stringType().datetime({ offset: true }).default("2025-11-19T10:42:38.476Z").transform((v2) => new Date(v2))
|
|
52953
52981
|
}).transform((v2) => {
|
|
52954
52982
|
return remap(v2, {
|
|
52955
52983
|
_id: "id",
|
|
@@ -52965,7 +52993,7 @@ var init_filelist = __esm(() => {
|
|
|
52965
52993
|
bytes: numberType(),
|
|
52966
52994
|
fileName: stringType(),
|
|
52967
52995
|
workspaceId: stringType(),
|
|
52968
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52996
|
+
created: dateType().default(() => new Date("2025-11-19T10:42:38.476Z")).transform((v2) => v2.toISOString())
|
|
52969
52997
|
}).transform((v2) => {
|
|
52970
52998
|
return remap(v2, {
|
|
52971
52999
|
id: "_id",
|
|
@@ -53073,7 +53101,7 @@ var init_fileupload = __esm(() => {
|
|
|
53073
53101
|
bytes: numberType(),
|
|
53074
53102
|
file_name: stringType(),
|
|
53075
53103
|
workspace_id: stringType(),
|
|
53076
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53104
|
+
created: stringType().datetime({ offset: true }).default("2025-11-19T10:42:38.476Z").transform((v2) => new Date(v2))
|
|
53077
53105
|
}).transform((v2) => {
|
|
53078
53106
|
return remap(v2, {
|
|
53079
53107
|
_id: "id",
|
|
@@ -53089,7 +53117,7 @@ var init_fileupload = __esm(() => {
|
|
|
53089
53117
|
bytes: numberType(),
|
|
53090
53118
|
fileName: stringType(),
|
|
53091
53119
|
workspaceId: stringType(),
|
|
53092
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53120
|
+
created: dateType().default(() => new Date("2025-11-19T10:42:38.476Z")).transform((v2) => v2.toISOString())
|
|
53093
53121
|
}).transform((v2) => {
|
|
53094
53122
|
return remap(v2, {
|
|
53095
53123
|
id: "_id",
|
|
@@ -55278,7 +55306,7 @@ var init_getalltools = __esm(() => {
|
|
|
55278
55306
|
code: stringType()
|
|
55279
55307
|
});
|
|
55280
55308
|
Data5$inboundSchema = objectType({
|
|
55281
|
-
_id: stringType().default("
|
|
55309
|
+
_id: stringType().default("tool_01KADVBBK4MSMM5AF02ES95VBH"),
|
|
55282
55310
|
path: stringType(),
|
|
55283
55311
|
key: stringType(),
|
|
55284
55312
|
display_name: stringType().optional(),
|
|
@@ -55306,7 +55334,7 @@ var init_getalltools = __esm(() => {
|
|
|
55306
55334
|
});
|
|
55307
55335
|
});
|
|
55308
55336
|
Data5$outboundSchema = objectType({
|
|
55309
|
-
id: stringType().default("
|
|
55337
|
+
id: stringType().default("tool_01KADVBBK4MSMM5AF02ES95VBH"),
|
|
55310
55338
|
path: stringType(),
|
|
55311
55339
|
key: stringType(),
|
|
55312
55340
|
displayName: stringType().optional(),
|
|
@@ -55358,13 +55386,13 @@ var init_getalltools = __esm(() => {
|
|
|
55358
55386
|
required: arrayType(stringType()).optional()
|
|
55359
55387
|
});
|
|
55360
55388
|
DataTools$inboundSchema = objectType({
|
|
55361
|
-
id: stringType().default("
|
|
55389
|
+
id: stringType().default("01KADVBBK3MKZW65WAJQHMCPFE"),
|
|
55362
55390
|
name: stringType(),
|
|
55363
55391
|
description: stringType().optional(),
|
|
55364
55392
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55365
55393
|
});
|
|
55366
55394
|
DataTools$outboundSchema = objectType({
|
|
55367
|
-
id: stringType().default("
|
|
55395
|
+
id: stringType().default("01KADVBBK3MKZW65WAJQHMCPFE"),
|
|
55368
55396
|
name: stringType(),
|
|
55369
55397
|
description: stringType().optional(),
|
|
55370
55398
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55394,7 +55422,7 @@ var init_getalltools = __esm(() => {
|
|
|
55394
55422
|
});
|
|
55395
55423
|
});
|
|
55396
55424
|
Data4$inboundSchema = objectType({
|
|
55397
|
-
_id: stringType().default("
|
|
55425
|
+
_id: stringType().default("tool_01KADVBBK1EWMXCD4HEHEH6V4N"),
|
|
55398
55426
|
path: stringType(),
|
|
55399
55427
|
key: stringType(),
|
|
55400
55428
|
display_name: stringType().optional(),
|
|
@@ -55421,7 +55449,7 @@ var init_getalltools = __esm(() => {
|
|
|
55421
55449
|
});
|
|
55422
55450
|
});
|
|
55423
55451
|
Data4$outboundSchema = objectType({
|
|
55424
|
-
id: stringType().default("
|
|
55452
|
+
id: stringType().default("tool_01KADVBBK1EWMXCD4HEHEH6V4N"),
|
|
55425
55453
|
path: stringType(),
|
|
55426
55454
|
key: stringType(),
|
|
55427
55455
|
displayName: stringType().optional(),
|
|
@@ -55510,7 +55538,7 @@ var init_getalltools = __esm(() => {
|
|
|
55510
55538
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
55511
55539
|
});
|
|
55512
55540
|
Data3$inboundSchema = objectType({
|
|
55513
|
-
_id: stringType().default("
|
|
55541
|
+
_id: stringType().default("tool_01KADVBBJPS0ASEXEQTY3TPZPA"),
|
|
55514
55542
|
path: stringType(),
|
|
55515
55543
|
key: stringType(),
|
|
55516
55544
|
display_name: stringType().optional(),
|
|
@@ -55537,7 +55565,7 @@ var init_getalltools = __esm(() => {
|
|
|
55537
55565
|
});
|
|
55538
55566
|
});
|
|
55539
55567
|
Data3$outboundSchema = objectType({
|
|
55540
|
-
id: stringType().default("
|
|
55568
|
+
id: stringType().default("tool_01KADVBBJPS0ASEXEQTY3TPZPA"),
|
|
55541
55569
|
path: stringType(),
|
|
55542
55570
|
key: stringType(),
|
|
55543
55571
|
displayName: stringType().optional(),
|
|
@@ -55598,7 +55626,7 @@ var init_getalltools = __esm(() => {
|
|
|
55598
55626
|
strict: booleanType().optional()
|
|
55599
55627
|
});
|
|
55600
55628
|
Data2$inboundSchema = objectType({
|
|
55601
|
-
_id: stringType().default("
|
|
55629
|
+
_id: stringType().default("tool_01KADVBBJKFFGTBH32TY1SY3ZN"),
|
|
55602
55630
|
path: stringType(),
|
|
55603
55631
|
key: stringType(),
|
|
55604
55632
|
display_name: stringType().optional(),
|
|
@@ -55626,7 +55654,7 @@ var init_getalltools = __esm(() => {
|
|
|
55626
55654
|
});
|
|
55627
55655
|
});
|
|
55628
55656
|
Data2$outboundSchema = objectType({
|
|
55629
|
-
id: stringType().default("
|
|
55657
|
+
id: stringType().default("tool_01KADVBBJKFFGTBH32TY1SY3ZN"),
|
|
55630
55658
|
path: stringType(),
|
|
55631
55659
|
key: stringType(),
|
|
55632
55660
|
displayName: stringType().optional(),
|
|
@@ -55690,7 +55718,7 @@ var init_getalltools = __esm(() => {
|
|
|
55690
55718
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
55691
55719
|
});
|
|
55692
55720
|
Data1$inboundSchema = objectType({
|
|
55693
|
-
_id: stringType().default("
|
|
55721
|
+
_id: stringType().default("tool_01KADVBBJHCKMESEZSE6S5633E"),
|
|
55694
55722
|
path: stringType(),
|
|
55695
55723
|
key: stringType(),
|
|
55696
55724
|
display_name: stringType().optional(),
|
|
@@ -55717,7 +55745,7 @@ var init_getalltools = __esm(() => {
|
|
|
55717
55745
|
});
|
|
55718
55746
|
});
|
|
55719
55747
|
Data1$outboundSchema = objectType({
|
|
55720
|
-
id: stringType().default("
|
|
55748
|
+
id: stringType().default("tool_01KADVBBJHCKMESEZSE6S5633E"),
|
|
55721
55749
|
path: stringType(),
|
|
55722
55750
|
key: stringType(),
|
|
55723
55751
|
displayName: stringType().optional(),
|
|
@@ -55859,7 +55887,7 @@ var init_getbudget = __esm(() => {
|
|
|
55859
55887
|
is_active: booleanType(),
|
|
55860
55888
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
55861
55889
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55862
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
55890
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.789Z").transform((v2) => new Date(v2))
|
|
55863
55891
|
}).transform((v2) => {
|
|
55864
55892
|
return remap(v2, {
|
|
55865
55893
|
_id: "id",
|
|
@@ -55877,7 +55905,7 @@ var init_getbudget = __esm(() => {
|
|
|
55877
55905
|
isActive: booleanType(),
|
|
55878
55906
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
55879
55907
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55880
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
55908
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.789Z")).transform((v2) => v2.toISOString())
|
|
55881
55909
|
}).transform((v2) => {
|
|
55882
55910
|
return remap(v2, {
|
|
55883
55911
|
id: "_id",
|
|
@@ -56246,8 +56274,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56246
56274
|
DataTypescript$inboundSchema = objectType({
|
|
56247
56275
|
_id: stringType(),
|
|
56248
56276
|
description: stringType(),
|
|
56249
|
-
created: stringType().default("2025-11-
|
|
56250
|
-
updated: stringType().default("2025-11-
|
|
56277
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56278
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56251
56279
|
guardrail_config: unionType([
|
|
56252
56280
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56253
56281
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56264,8 +56292,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56264
56292
|
DataTypescript$outboundSchema = objectType({
|
|
56265
56293
|
id: stringType(),
|
|
56266
56294
|
description: stringType(),
|
|
56267
|
-
created: stringType().default("2025-11-
|
|
56268
|
-
updated: stringType().default("2025-11-
|
|
56295
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56296
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56269
56297
|
guardrailConfig: unionType([
|
|
56270
56298
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56271
56299
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56322,8 +56350,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56322
56350
|
DataRagas$inboundSchema = objectType({
|
|
56323
56351
|
_id: stringType(),
|
|
56324
56352
|
description: stringType(),
|
|
56325
|
-
created: stringType().default("2025-11-
|
|
56326
|
-
updated: stringType().default("2025-11-
|
|
56353
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56354
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56327
56355
|
guardrail_config: unionType([
|
|
56328
56356
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56329
56357
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56342,8 +56370,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56342
56370
|
DataRagas$outboundSchema = objectType({
|
|
56343
56371
|
id: stringType(),
|
|
56344
56372
|
description: stringType(),
|
|
56345
|
-
created: stringType().default("2025-11-
|
|
56346
|
-
updated: stringType().default("2025-11-
|
|
56373
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56374
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56347
56375
|
guardrailConfig: unionType([
|
|
56348
56376
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56349
56377
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -56780,8 +56808,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56780
56808
|
DataFunction$inboundSchema = objectType({
|
|
56781
56809
|
_id: stringType(),
|
|
56782
56810
|
description: stringType(),
|
|
56783
|
-
created: stringType().default("2025-11-
|
|
56784
|
-
updated: stringType().default("2025-11-
|
|
56811
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56812
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56785
56813
|
guardrail_config: unionType([
|
|
56786
56814
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
56787
56815
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -56835,8 +56863,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56835
56863
|
DataFunction$outboundSchema = objectType({
|
|
56836
56864
|
id: stringType(),
|
|
56837
56865
|
description: stringType(),
|
|
56838
|
-
created: stringType().default("2025-11-
|
|
56839
|
-
updated: stringType().default("2025-11-
|
|
56866
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56867
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56840
56868
|
guardrailConfig: unionType([
|
|
56841
56869
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
56842
56870
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -56928,8 +56956,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56928
56956
|
DataPython$inboundSchema = objectType({
|
|
56929
56957
|
_id: stringType(),
|
|
56930
56958
|
description: stringType(),
|
|
56931
|
-
created: stringType().default("2025-11-
|
|
56932
|
-
updated: stringType().default("2025-11-
|
|
56959
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56960
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56933
56961
|
guardrail_config: unionType([
|
|
56934
56962
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
56935
56963
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -56946,8 +56974,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56946
56974
|
DataPython$outboundSchema = objectType({
|
|
56947
56975
|
id: stringType(),
|
|
56948
56976
|
description: stringType(),
|
|
56949
|
-
created: stringType().default("2025-11-
|
|
56950
|
-
updated: stringType().default("2025-11-
|
|
56977
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56978
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
56951
56979
|
guardrailConfig: unionType([
|
|
56952
56980
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
56953
56981
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -57004,8 +57032,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57004
57032
|
DataHTTP$inboundSchema = objectType({
|
|
57005
57033
|
_id: stringType(),
|
|
57006
57034
|
description: stringType(),
|
|
57007
|
-
created: stringType().default("2025-11-
|
|
57008
|
-
updated: stringType().default("2025-11-
|
|
57035
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57036
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57009
57037
|
guardrail_config: unionType([
|
|
57010
57038
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
57011
57039
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -57025,8 +57053,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57025
57053
|
DataHTTP$outboundSchema = objectType({
|
|
57026
57054
|
id: stringType(),
|
|
57027
57055
|
description: stringType(),
|
|
57028
|
-
created: stringType().default("2025-11-
|
|
57029
|
-
updated: stringType().default("2025-11-
|
|
57056
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57057
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57030
57058
|
guardrailConfig: unionType([
|
|
57031
57059
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
57032
57060
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57084,8 +57112,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57084
57112
|
DataJSON$inboundSchema = objectType({
|
|
57085
57113
|
_id: stringType(),
|
|
57086
57114
|
description: stringType(),
|
|
57087
|
-
created: stringType().default("2025-11-
|
|
57088
|
-
updated: stringType().default("2025-11-
|
|
57115
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57116
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57089
57117
|
guardrail_config: unionType([
|
|
57090
57118
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57091
57119
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57102,8 +57130,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57102
57130
|
DataJSON$outboundSchema = objectType({
|
|
57103
57131
|
id: stringType(),
|
|
57104
57132
|
description: stringType(),
|
|
57105
|
-
created: stringType().default("2025-11-
|
|
57106
|
-
updated: stringType().default("2025-11-
|
|
57133
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57134
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57107
57135
|
guardrailConfig: unionType([
|
|
57108
57136
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57109
57137
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57158,8 +57186,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57158
57186
|
DataLLM$inboundSchema = objectType({
|
|
57159
57187
|
_id: stringType(),
|
|
57160
57188
|
description: stringType(),
|
|
57161
|
-
created: stringType().default("2025-11-
|
|
57162
|
-
updated: stringType().default("2025-11-
|
|
57189
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57190
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57163
57191
|
guardrail_config: unionType([
|
|
57164
57192
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57165
57193
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57177,8 +57205,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57177
57205
|
DataLLM$outboundSchema = objectType({
|
|
57178
57206
|
id: stringType(),
|
|
57179
57207
|
description: stringType(),
|
|
57180
|
-
created: stringType().default("2025-11-
|
|
57181
|
-
updated: stringType().default("2025-11-
|
|
57208
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57209
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
57182
57210
|
guardrailConfig: unionType([
|
|
57183
57211
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57184
57212
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -60634,7 +60662,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60634
60662
|
is_active: booleanType(),
|
|
60635
60663
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
60636
60664
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60637
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60665
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.789Z").transform((v2) => new Date(v2))
|
|
60638
60666
|
}).transform((v2) => {
|
|
60639
60667
|
return remap(v2, {
|
|
60640
60668
|
_id: "id",
|
|
@@ -60650,7 +60678,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60650
60678
|
isActive: booleanType(),
|
|
60651
60679
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
60652
60680
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60653
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60681
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.789Z")).transform((v2) => v2.toISOString())
|
|
60654
60682
|
}).transform((v2) => {
|
|
60655
60683
|
return remap(v2, {
|
|
60656
60684
|
id: "_id",
|
|
@@ -60977,7 +61005,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60977
61005
|
tags: arrayType(stringType()).optional(),
|
|
60978
61006
|
metadata: recordType(anyType()).optional(),
|
|
60979
61007
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60980
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61008
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2)),
|
|
60981
61009
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60982
61010
|
}).transform((v2) => {
|
|
60983
61011
|
return remap(v2, {
|
|
@@ -60996,7 +61024,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60996
61024
|
tags: arrayType(stringType()).optional(),
|
|
60997
61025
|
metadata: recordType(anyType()).optional(),
|
|
60998
61026
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60999
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61027
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString()),
|
|
61000
61028
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
61001
61029
|
}).transform((v2) => {
|
|
61002
61030
|
return remap(v2, {
|
|
@@ -61585,7 +61613,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61585
61613
|
human_review_id: stringType(),
|
|
61586
61614
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
61587
61615
|
reviewed_by_id: stringType(),
|
|
61588
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61616
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.780Z").transform((v2) => new Date(v2)),
|
|
61589
61617
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
61590
61618
|
values: arrayType(stringType())
|
|
61591
61619
|
}).transform((v2) => {
|
|
@@ -61602,7 +61630,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61602
61630
|
humanReviewId: stringType(),
|
|
61603
61631
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
61604
61632
|
reviewedById: stringType(),
|
|
61605
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61633
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.780Z")).transform((v2) => v2.toISOString()),
|
|
61606
61634
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
61607
61635
|
values: arrayType(stringType())
|
|
61608
61636
|
}).transform((v2) => {
|
|
@@ -61625,7 +61653,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61625
61653
|
human_review_id: stringType(),
|
|
61626
61654
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
61627
61655
|
reviewed_by_id: stringType(),
|
|
61628
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61656
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.779Z").transform((v2) => new Date(v2)),
|
|
61629
61657
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
61630
61658
|
value: numberType()
|
|
61631
61659
|
}).transform((v2) => {
|
|
@@ -61642,7 +61670,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61642
61670
|
humanReviewId: stringType(),
|
|
61643
61671
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
61644
61672
|
reviewedById: stringType(),
|
|
61645
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61673
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.779Z")).transform((v2) => v2.toISOString()),
|
|
61646
61674
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
61647
61675
|
value: numberType()
|
|
61648
61676
|
}).transform((v2) => {
|
|
@@ -61665,7 +61693,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61665
61693
|
human_review_id: stringType(),
|
|
61666
61694
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
61667
61695
|
reviewed_by_id: stringType(),
|
|
61668
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61696
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.779Z").transform((v2) => new Date(v2)),
|
|
61669
61697
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
61670
61698
|
value: stringType()
|
|
61671
61699
|
}).transform((v2) => {
|
|
@@ -61682,7 +61710,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61682
61710
|
humanReviewId: stringType(),
|
|
61683
61711
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
61684
61712
|
reviewedById: stringType(),
|
|
61685
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61713
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.779Z")).transform((v2) => v2.toISOString()),
|
|
61686
61714
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
61687
61715
|
value: stringType()
|
|
61688
61716
|
}).transform((v2) => {
|
|
@@ -61725,7 +61753,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61725
61753
|
created_by_id: stringType().optional(),
|
|
61726
61754
|
updated_by_id: stringType().optional(),
|
|
61727
61755
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61728
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61756
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
61729
61757
|
}).transform((v2) => {
|
|
61730
61758
|
return remap(v2, {
|
|
61731
61759
|
_id: "id",
|
|
@@ -61759,7 +61787,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61759
61787
|
createdById: stringType().optional(),
|
|
61760
61788
|
updatedById: stringType().optional(),
|
|
61761
61789
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61762
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61790
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
61763
61791
|
}).transform((v2) => {
|
|
61764
61792
|
return remap(v2, {
|
|
61765
61793
|
id: "_id",
|
|
@@ -61848,7 +61876,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61848
61876
|
created_by_id: stringType().optional(),
|
|
61849
61877
|
updated_by_id: stringType().optional(),
|
|
61850
61878
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61851
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61879
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
61852
61880
|
}).transform((v2) => {
|
|
61853
61881
|
return remap(v2, {
|
|
61854
61882
|
_id: "id",
|
|
@@ -61868,7 +61896,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61868
61896
|
createdById: stringType().optional(),
|
|
61869
61897
|
updatedById: stringType().optional(),
|
|
61870
61898
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61871
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61899
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
61872
61900
|
}).transform((v2) => {
|
|
61873
61901
|
return remap(v2, {
|
|
61874
61902
|
id: "_id",
|
|
@@ -61949,7 +61977,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61949
61977
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
61950
61978
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
61951
61979
|
ListDatasourcesData$inboundSchema = objectType({
|
|
61952
|
-
_id: stringType().default("
|
|
61980
|
+
_id: stringType().default("01KADVBBS2D98QWSXJAPBMGY18"),
|
|
61953
61981
|
display_name: stringType(),
|
|
61954
61982
|
description: stringType().optional(),
|
|
61955
61983
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -61972,7 +62000,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61972
62000
|
});
|
|
61973
62001
|
});
|
|
61974
62002
|
ListDatasourcesData$outboundSchema = objectType({
|
|
61975
|
-
id: stringType().default("
|
|
62003
|
+
id: stringType().default("01KADVBBS2D98QWSXJAPBMGY18"),
|
|
61976
62004
|
displayName: stringType(),
|
|
61977
62005
|
description: stringType().optional(),
|
|
61978
62006
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63445,7 +63473,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63445
63473
|
tags: arrayType(stringType()).optional(),
|
|
63446
63474
|
metadata: recordType(anyType()).optional(),
|
|
63447
63475
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63448
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63476
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
63449
63477
|
}).transform((v2) => {
|
|
63450
63478
|
return remap(v2, {
|
|
63451
63479
|
_id: "id",
|
|
@@ -63463,7 +63491,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63463
63491
|
tags: arrayType(stringType()).optional(),
|
|
63464
63492
|
metadata: recordType(anyType()).optional(),
|
|
63465
63493
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63466
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63494
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
63467
63495
|
}).transform((v2) => {
|
|
63468
63496
|
return remap(v2, {
|
|
63469
63497
|
id: "_id",
|
|
@@ -64022,7 +64050,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64022
64050
|
human_review_id: stringType(),
|
|
64023
64051
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
64024
64052
|
reviewed_by_id: stringType(),
|
|
64025
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64053
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.795Z").transform((v2) => new Date(v2)),
|
|
64026
64054
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
64027
64055
|
values: arrayType(stringType())
|
|
64028
64056
|
}).transform((v2) => {
|
|
@@ -64039,7 +64067,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64039
64067
|
humanReviewId: stringType(),
|
|
64040
64068
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
64041
64069
|
reviewedById: stringType(),
|
|
64042
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64070
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.795Z")).transform((v2) => v2.toISOString()),
|
|
64043
64071
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
64044
64072
|
values: arrayType(stringType())
|
|
64045
64073
|
}).transform((v2) => {
|
|
@@ -64062,7 +64090,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64062
64090
|
human_review_id: stringType(),
|
|
64063
64091
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64064
64092
|
reviewed_by_id: stringType(),
|
|
64065
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64093
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.794Z").transform((v2) => new Date(v2)),
|
|
64066
64094
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
64067
64095
|
value: numberType()
|
|
64068
64096
|
}).transform((v2) => {
|
|
@@ -64079,7 +64107,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64079
64107
|
humanReviewId: stringType(),
|
|
64080
64108
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64081
64109
|
reviewedById: stringType(),
|
|
64082
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64110
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.794Z")).transform((v2) => v2.toISOString()),
|
|
64083
64111
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
64084
64112
|
value: numberType()
|
|
64085
64113
|
}).transform((v2) => {
|
|
@@ -64102,7 +64130,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64102
64130
|
human_review_id: stringType(),
|
|
64103
64131
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
64104
64132
|
reviewed_by_id: stringType(),
|
|
64105
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64133
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.791Z").transform((v2) => new Date(v2)),
|
|
64106
64134
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
64107
64135
|
value: stringType()
|
|
64108
64136
|
}).transform((v2) => {
|
|
@@ -64119,7 +64147,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64119
64147
|
humanReviewId: stringType(),
|
|
64120
64148
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
64121
64149
|
reviewedById: stringType(),
|
|
64122
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64150
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.791Z")).transform((v2) => v2.toISOString()),
|
|
64123
64151
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
64124
64152
|
value: stringType()
|
|
64125
64153
|
}).transform((v2) => {
|
|
@@ -64162,7 +64190,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64162
64190
|
created_by_id: stringType().optional(),
|
|
64163
64191
|
updated_by_id: stringType().optional(),
|
|
64164
64192
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64165
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64193
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
64166
64194
|
}).transform((v2) => {
|
|
64167
64195
|
return remap(v2, {
|
|
64168
64196
|
_id: "id",
|
|
@@ -64196,7 +64224,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64196
64224
|
createdById: stringType().optional(),
|
|
64197
64225
|
updatedById: stringType().optional(),
|
|
64198
64226
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64199
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64227
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
64200
64228
|
}).transform((v2) => {
|
|
64201
64229
|
return remap(v2, {
|
|
64202
64230
|
id: "_id",
|
|
@@ -64256,7 +64284,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64256
64284
|
created_by_id: stringType().optional(),
|
|
64257
64285
|
updated_by_id: stringType().optional(),
|
|
64258
64286
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64259
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64287
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
64260
64288
|
}).transform((v2) => {
|
|
64261
64289
|
return remap(v2, {
|
|
64262
64290
|
_id: "id",
|
|
@@ -64276,7 +64304,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64276
64304
|
createdById: stringType().optional(),
|
|
64277
64305
|
updatedById: stringType().optional(),
|
|
64278
64306
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64279
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64307
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
64280
64308
|
}).transform((v2) => {
|
|
64281
64309
|
return remap(v2, {
|
|
64282
64310
|
id: "_id",
|
|
@@ -64322,7 +64350,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64322
64350
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64323
64351
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64324
64352
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64325
|
-
_id: stringType().default("
|
|
64353
|
+
_id: stringType().default("01KADVBBS570NRNGS7TNA0DZTX"),
|
|
64326
64354
|
display_name: stringType(),
|
|
64327
64355
|
description: stringType().optional(),
|
|
64328
64356
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64345,7 +64373,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64345
64373
|
});
|
|
64346
64374
|
});
|
|
64347
64375
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64348
|
-
id: stringType().default("
|
|
64376
|
+
id: stringType().default("01KADVBBS570NRNGS7TNA0DZTX"),
|
|
64349
64377
|
displayName: stringType(),
|
|
64350
64378
|
description: stringType().optional(),
|
|
64351
64379
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64697,7 +64725,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64697
64725
|
code: stringType()
|
|
64698
64726
|
});
|
|
64699
64727
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
64700
|
-
_id: stringType().default("
|
|
64728
|
+
_id: stringType().default("tool_01KADVBBNQCWG8CQ84DPVSFH09"),
|
|
64701
64729
|
path: stringType(),
|
|
64702
64730
|
key: stringType(),
|
|
64703
64731
|
display_name: stringType().optional(),
|
|
@@ -64725,7 +64753,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64725
64753
|
});
|
|
64726
64754
|
});
|
|
64727
64755
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
64728
|
-
id: stringType().default("
|
|
64756
|
+
id: stringType().default("tool_01KADVBBNQCWG8CQ84DPVSFH09"),
|
|
64729
64757
|
path: stringType(),
|
|
64730
64758
|
key: stringType(),
|
|
64731
64759
|
displayName: stringType().optional(),
|
|
@@ -64777,13 +64805,13 @@ var init_retrievetool = __esm(() => {
|
|
|
64777
64805
|
required: arrayType(stringType()).optional()
|
|
64778
64806
|
});
|
|
64779
64807
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
64780
|
-
id: stringType().default("
|
|
64808
|
+
id: stringType().default("01KADVBBNQK0STSQB5MYG8NYQ0"),
|
|
64781
64809
|
name: stringType(),
|
|
64782
64810
|
description: stringType().optional(),
|
|
64783
64811
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
64784
64812
|
});
|
|
64785
64813
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
64786
|
-
id: stringType().default("
|
|
64814
|
+
id: stringType().default("01KADVBBNQK0STSQB5MYG8NYQ0"),
|
|
64787
64815
|
name: stringType(),
|
|
64788
64816
|
description: stringType().optional(),
|
|
64789
64817
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -64813,7 +64841,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64813
64841
|
});
|
|
64814
64842
|
});
|
|
64815
64843
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
64816
|
-
_id: stringType().default("
|
|
64844
|
+
_id: stringType().default("tool_01KADVBBNP5ZXWE0Q8VPM2BZ8J"),
|
|
64817
64845
|
path: stringType(),
|
|
64818
64846
|
key: stringType(),
|
|
64819
64847
|
display_name: stringType().optional(),
|
|
@@ -64840,7 +64868,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64840
64868
|
});
|
|
64841
64869
|
});
|
|
64842
64870
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
64843
|
-
id: stringType().default("
|
|
64871
|
+
id: stringType().default("tool_01KADVBBNP5ZXWE0Q8VPM2BZ8J"),
|
|
64844
64872
|
path: stringType(),
|
|
64845
64873
|
key: stringType(),
|
|
64846
64874
|
displayName: stringType().optional(),
|
|
@@ -64929,7 +64957,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64929
64957
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64930
64958
|
});
|
|
64931
64959
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
64932
|
-
_id: stringType().default("
|
|
64960
|
+
_id: stringType().default("tool_01KADVBBNM24Y0XJCRXTS80DY6"),
|
|
64933
64961
|
path: stringType(),
|
|
64934
64962
|
key: stringType(),
|
|
64935
64963
|
display_name: stringType().optional(),
|
|
@@ -64956,7 +64984,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64956
64984
|
});
|
|
64957
64985
|
});
|
|
64958
64986
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
64959
|
-
id: stringType().default("
|
|
64987
|
+
id: stringType().default("tool_01KADVBBNM24Y0XJCRXTS80DY6"),
|
|
64960
64988
|
path: stringType(),
|
|
64961
64989
|
key: stringType(),
|
|
64962
64990
|
displayName: stringType().optional(),
|
|
@@ -65017,7 +65045,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65017
65045
|
strict: booleanType().optional()
|
|
65018
65046
|
});
|
|
65019
65047
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65020
|
-
_id: stringType().default("
|
|
65048
|
+
_id: stringType().default("tool_01KADVBBNJESXEV78REA8GY638"),
|
|
65021
65049
|
path: stringType(),
|
|
65022
65050
|
key: stringType(),
|
|
65023
65051
|
display_name: stringType().optional(),
|
|
@@ -65045,7 +65073,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65045
65073
|
});
|
|
65046
65074
|
});
|
|
65047
65075
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65048
|
-
id: stringType().default("
|
|
65076
|
+
id: stringType().default("tool_01KADVBBNJESXEV78REA8GY638"),
|
|
65049
65077
|
path: stringType(),
|
|
65050
65078
|
key: stringType(),
|
|
65051
65079
|
displayName: stringType().optional(),
|
|
@@ -65109,7 +65137,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65109
65137
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
65110
65138
|
});
|
|
65111
65139
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65112
|
-
_id: stringType().default("
|
|
65140
|
+
_id: stringType().default("tool_01KADVBBNHTCYT5P1GF98GNZ3M"),
|
|
65113
65141
|
path: stringType(),
|
|
65114
65142
|
key: stringType(),
|
|
65115
65143
|
display_name: stringType().optional(),
|
|
@@ -65136,7 +65164,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65136
65164
|
});
|
|
65137
65165
|
});
|
|
65138
65166
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65139
|
-
id: stringType().default("
|
|
65167
|
+
id: stringType().default("tool_01KADVBBNHTCYT5P1GF98GNZ3M"),
|
|
65140
65168
|
path: stringType(),
|
|
65141
65169
|
key: stringType(),
|
|
65142
65170
|
displayName: stringType().optional(),
|
|
@@ -66129,13 +66157,13 @@ var init_runagent = __esm(() => {
|
|
|
66129
66157
|
required: arrayType(stringType()).optional()
|
|
66130
66158
|
});
|
|
66131
66159
|
Tools$inboundSchema = objectType({
|
|
66132
|
-
id: stringType().default("
|
|
66160
|
+
id: stringType().default("01KADVBBB23PQAGSRRFMY6BKPJ"),
|
|
66133
66161
|
name: stringType(),
|
|
66134
66162
|
description: stringType().optional(),
|
|
66135
66163
|
schema: lazyType(() => Schema$inboundSchema)
|
|
66136
66164
|
});
|
|
66137
66165
|
Tools$outboundSchema = objectType({
|
|
66138
|
-
id: stringType().default("
|
|
66166
|
+
id: stringType().default("01KADVBBB23PQAGSRRFMY6BKPJ"),
|
|
66139
66167
|
name: stringType(),
|
|
66140
66168
|
description: stringType().optional(),
|
|
66141
66169
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -68687,13 +68715,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68687
68715
|
required: arrayType(stringType()).optional()
|
|
68688
68716
|
});
|
|
68689
68717
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
68690
|
-
id: stringType().default("
|
|
68718
|
+
id: stringType().default("01KADVBBBSTARV729KAPM5MX6A"),
|
|
68691
68719
|
name: stringType(),
|
|
68692
68720
|
description: stringType().optional(),
|
|
68693
68721
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
68694
68722
|
});
|
|
68695
68723
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
68696
|
-
id: stringType().default("
|
|
68724
|
+
id: stringType().default("01KADVBBBSTARV729KAPM5MX6A"),
|
|
68697
68725
|
name: stringType(),
|
|
68698
68726
|
description: stringType().optional(),
|
|
68699
68727
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -69535,7 +69563,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69535
69563
|
errors: arrayType(stringType())
|
|
69536
69564
|
});
|
|
69537
69565
|
SyncMcpToolResponseBody5$inboundSchema = objectType({
|
|
69538
|
-
_id: stringType().default("
|
|
69566
|
+
_id: stringType().default("tool_01KADVBBP3QEB7YRJPXECZE2KY"),
|
|
69539
69567
|
path: stringType(),
|
|
69540
69568
|
key: stringType(),
|
|
69541
69569
|
display_name: stringType().optional(),
|
|
@@ -69564,7 +69592,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69564
69592
|
});
|
|
69565
69593
|
});
|
|
69566
69594
|
SyncMcpToolResponseBody5$outboundSchema = objectType({
|
|
69567
|
-
id: stringType().default("
|
|
69595
|
+
id: stringType().default("tool_01KADVBBP3QEB7YRJPXECZE2KY"),
|
|
69568
69596
|
path: stringType(),
|
|
69569
69597
|
key: stringType(),
|
|
69570
69598
|
displayName: stringType().optional(),
|
|
@@ -69617,13 +69645,13 @@ var init_syncmcptool = __esm(() => {
|
|
|
69617
69645
|
required: arrayType(stringType()).optional()
|
|
69618
69646
|
});
|
|
69619
69647
|
SyncMcpToolResponseBodyTools$inboundSchema = objectType({
|
|
69620
|
-
id: stringType().default("
|
|
69648
|
+
id: stringType().default("01KADVBBP367G8684A290XFDFQ"),
|
|
69621
69649
|
name: stringType(),
|
|
69622
69650
|
description: stringType().optional(),
|
|
69623
69651
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema)
|
|
69624
69652
|
});
|
|
69625
69653
|
SyncMcpToolResponseBodyTools$outboundSchema = objectType({
|
|
69626
|
-
id: stringType().default("
|
|
69654
|
+
id: stringType().default("01KADVBBP367G8684A290XFDFQ"),
|
|
69627
69655
|
name: stringType(),
|
|
69628
69656
|
description: stringType().optional(),
|
|
69629
69657
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -69665,7 +69693,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69665
69693
|
errors: arrayType(stringType())
|
|
69666
69694
|
});
|
|
69667
69695
|
SyncMcpToolResponseBody4$inboundSchema = objectType({
|
|
69668
|
-
_id: stringType().default("
|
|
69696
|
+
_id: stringType().default("tool_01KADVBBP13KXS9P0NT76JCST0"),
|
|
69669
69697
|
path: stringType(),
|
|
69670
69698
|
key: stringType(),
|
|
69671
69699
|
display_name: stringType().optional(),
|
|
@@ -69693,7 +69721,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69693
69721
|
});
|
|
69694
69722
|
});
|
|
69695
69723
|
SyncMcpToolResponseBody4$outboundSchema = objectType({
|
|
69696
|
-
id: stringType().default("
|
|
69724
|
+
id: stringType().default("tool_01KADVBBP13KXS9P0NT76JCST0"),
|
|
69697
69725
|
path: stringType(),
|
|
69698
69726
|
key: stringType(),
|
|
69699
69727
|
displayName: stringType().optional(),
|
|
@@ -69795,7 +69823,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69795
69823
|
errors: arrayType(stringType())
|
|
69796
69824
|
});
|
|
69797
69825
|
SyncMcpToolResponseBody3$inboundSchema = objectType({
|
|
69798
|
-
_id: stringType().default("
|
|
69826
|
+
_id: stringType().default("tool_01KADVBBNX19770Z8ZF4Q8SQ0S"),
|
|
69799
69827
|
path: stringType(),
|
|
69800
69828
|
key: stringType(),
|
|
69801
69829
|
display_name: stringType().optional(),
|
|
@@ -69823,7 +69851,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69823
69851
|
});
|
|
69824
69852
|
});
|
|
69825
69853
|
SyncMcpToolResponseBody3$outboundSchema = objectType({
|
|
69826
|
-
id: stringType().default("
|
|
69854
|
+
id: stringType().default("tool_01KADVBBNX19770Z8ZF4Q8SQ0S"),
|
|
69827
69855
|
path: stringType(),
|
|
69828
69856
|
key: stringType(),
|
|
69829
69857
|
displayName: stringType().optional(),
|
|
@@ -69897,7 +69925,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69897
69925
|
errors: arrayType(stringType())
|
|
69898
69926
|
});
|
|
69899
69927
|
SyncMcpToolResponseBody2$inboundSchema = objectType({
|
|
69900
|
-
_id: stringType().default("
|
|
69928
|
+
_id: stringType().default("tool_01KADVBBNT137QX8VHADN64CFB"),
|
|
69901
69929
|
path: stringType(),
|
|
69902
69930
|
key: stringType(),
|
|
69903
69931
|
display_name: stringType().optional(),
|
|
@@ -69926,7 +69954,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
69926
69954
|
});
|
|
69927
69955
|
});
|
|
69928
69956
|
SyncMcpToolResponseBody2$outboundSchema = objectType({
|
|
69929
|
-
id: stringType().default("
|
|
69957
|
+
id: stringType().default("tool_01KADVBBNT137QX8VHADN64CFB"),
|
|
69930
69958
|
path: stringType(),
|
|
69931
69959
|
key: stringType(),
|
|
69932
69960
|
displayName: stringType().optional(),
|
|
@@ -70003,7 +70031,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70003
70031
|
errors: arrayType(stringType())
|
|
70004
70032
|
});
|
|
70005
70033
|
SyncMcpToolResponseBody1$inboundSchema = objectType({
|
|
70006
|
-
_id: stringType().default("
|
|
70034
|
+
_id: stringType().default("tool_01KADVBBNS21PJG0QG3DEXH6A9"),
|
|
70007
70035
|
path: stringType(),
|
|
70008
70036
|
key: stringType(),
|
|
70009
70037
|
display_name: stringType().optional(),
|
|
@@ -70031,7 +70059,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70031
70059
|
});
|
|
70032
70060
|
});
|
|
70033
70061
|
SyncMcpToolResponseBody1$outboundSchema = objectType({
|
|
70034
|
-
id: stringType().default("
|
|
70062
|
+
id: stringType().default("tool_01KADVBBNS21PJG0QG3DEXH6A9"),
|
|
70035
70063
|
path: stringType(),
|
|
70036
70064
|
key: stringType(),
|
|
70037
70065
|
displayName: stringType().optional(),
|
|
@@ -72226,7 +72254,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72226
72254
|
is_active: booleanType(),
|
|
72227
72255
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
72228
72256
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72229
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72257
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.789Z").transform((v2) => new Date(v2))
|
|
72230
72258
|
}).transform((v2) => {
|
|
72231
72259
|
return remap(v2, {
|
|
72232
72260
|
_id: "id",
|
|
@@ -72244,7 +72272,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72244
72272
|
isActive: booleanType(),
|
|
72245
72273
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
72246
72274
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72247
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72275
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.789Z")).transform((v2) => v2.toISOString())
|
|
72248
72276
|
}).transform((v2) => {
|
|
72249
72277
|
return remap(v2, {
|
|
72250
72278
|
id: "_id",
|
|
@@ -72399,7 +72427,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72399
72427
|
tags: arrayType(stringType()).optional(),
|
|
72400
72428
|
metadata: recordType(anyType()).optional(),
|
|
72401
72429
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72402
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72430
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
72403
72431
|
}).transform((v2) => {
|
|
72404
72432
|
return remap(v2, {
|
|
72405
72433
|
_id: "id",
|
|
@@ -72417,7 +72445,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72417
72445
|
tags: arrayType(stringType()).optional(),
|
|
72418
72446
|
metadata: recordType(anyType()).optional(),
|
|
72419
72447
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72420
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72448
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
72421
72449
|
}).transform((v2) => {
|
|
72422
72450
|
return remap(v2, {
|
|
72423
72451
|
id: "_id",
|
|
@@ -73493,7 +73521,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73493
73521
|
human_review_id: stringType(),
|
|
73494
73522
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
73495
73523
|
reviewed_by_id: stringType(),
|
|
73496
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
73524
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.836Z").transform((v2) => new Date(v2)),
|
|
73497
73525
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
73498
73526
|
values: arrayType(stringType())
|
|
73499
73527
|
}).transform((v2) => {
|
|
@@ -73510,7 +73538,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73510
73538
|
humanReviewId: stringType(),
|
|
73511
73539
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
73512
73540
|
reviewedById: stringType(),
|
|
73513
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
73541
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.836Z")).transform((v2) => v2.toISOString()),
|
|
73514
73542
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
73515
73543
|
values: arrayType(stringType())
|
|
73516
73544
|
}).transform((v2) => {
|
|
@@ -73533,7 +73561,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73533
73561
|
human_review_id: stringType(),
|
|
73534
73562
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
73535
73563
|
reviewed_by_id: stringType(),
|
|
73536
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
73564
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.835Z").transform((v2) => new Date(v2)),
|
|
73537
73565
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
73538
73566
|
value: numberType()
|
|
73539
73567
|
}).transform((v2) => {
|
|
@@ -73550,7 +73578,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73550
73578
|
humanReviewId: stringType(),
|
|
73551
73579
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
73552
73580
|
reviewedById: stringType(),
|
|
73553
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
73581
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.835Z")).transform((v2) => v2.toISOString()),
|
|
73554
73582
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
73555
73583
|
value: numberType()
|
|
73556
73584
|
}).transform((v2) => {
|
|
@@ -73573,7 +73601,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73573
73601
|
human_review_id: stringType(),
|
|
73574
73602
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
73575
73603
|
reviewed_by_id: stringType(),
|
|
73576
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
73604
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T10:42:46.835Z").transform((v2) => new Date(v2)),
|
|
73577
73605
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
73578
73606
|
value: stringType()
|
|
73579
73607
|
}).transform((v2) => {
|
|
@@ -73590,7 +73618,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73590
73618
|
humanReviewId: stringType(),
|
|
73591
73619
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
73592
73620
|
reviewedById: stringType(),
|
|
73593
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
73621
|
+
reviewedAt: dateType().default(() => new Date("2025-11-19T10:42:46.835Z")).transform((v2) => v2.toISOString()),
|
|
73594
73622
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
73595
73623
|
value: stringType()
|
|
73596
73624
|
}).transform((v2) => {
|
|
@@ -73633,7 +73661,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73633
73661
|
created_by_id: stringType().optional(),
|
|
73634
73662
|
updated_by_id: stringType().optional(),
|
|
73635
73663
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
73636
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
73664
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
73637
73665
|
}).transform((v2) => {
|
|
73638
73666
|
return remap(v2, {
|
|
73639
73667
|
_id: "id",
|
|
@@ -73667,7 +73695,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
73667
73695
|
createdById: stringType().optional(),
|
|
73668
73696
|
updatedById: stringType().optional(),
|
|
73669
73697
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73670
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73698
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
73671
73699
|
}).transform((v2) => {
|
|
73672
73700
|
return remap(v2, {
|
|
73673
73701
|
id: "_id",
|
|
@@ -73751,7 +73779,7 @@ var init_updatedataset = __esm(() => {
|
|
|
73751
73779
|
created_by_id: stringType().optional(),
|
|
73752
73780
|
updated_by_id: stringType().optional(),
|
|
73753
73781
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
73754
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
73782
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-19T10:42:35.387Z").transform((v2) => new Date(v2))
|
|
73755
73783
|
}).transform((v2) => {
|
|
73756
73784
|
return remap(v2, {
|
|
73757
73785
|
_id: "id",
|
|
@@ -73771,7 +73799,7 @@ var init_updatedataset = __esm(() => {
|
|
|
73771
73799
|
createdById: stringType().optional(),
|
|
73772
73800
|
updatedById: stringType().optional(),
|
|
73773
73801
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73774
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73802
|
+
updated: dateType().default(() => new Date("2025-11-19T10:42:35.387Z")).transform((v2) => v2.toISOString())
|
|
73775
73803
|
}).transform((v2) => {
|
|
73776
73804
|
return remap(v2, {
|
|
73777
73805
|
id: "_id",
|
|
@@ -73835,7 +73863,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
73835
73863
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
73836
73864
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
73837
73865
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
73838
|
-
_id: stringType().default("
|
|
73866
|
+
_id: stringType().default("01KADVBBSAYBZC198FBC84Q03A"),
|
|
73839
73867
|
display_name: stringType(),
|
|
73840
73868
|
description: stringType().optional(),
|
|
73841
73869
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -73858,7 +73886,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
73858
73886
|
});
|
|
73859
73887
|
});
|
|
73860
73888
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
73861
|
-
id: stringType().default("
|
|
73889
|
+
id: stringType().default("01KADVBBSAYBZC198FBC84Q03A"),
|
|
73862
73890
|
displayName: stringType(),
|
|
73863
73891
|
description: stringType().optional(),
|
|
73864
73892
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -74605,8 +74633,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74605
74633
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
74606
74634
|
_id: stringType(),
|
|
74607
74635
|
description: stringType(),
|
|
74608
|
-
created: stringType().default("2025-11-
|
|
74609
|
-
updated: stringType().default("2025-11-
|
|
74636
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74637
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74610
74638
|
guardrail_config: unionType([
|
|
74611
74639
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
74612
74640
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -74623,8 +74651,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74623
74651
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
74624
74652
|
id: stringType(),
|
|
74625
74653
|
description: stringType(),
|
|
74626
|
-
created: stringType().default("2025-11-
|
|
74627
|
-
updated: stringType().default("2025-11-
|
|
74654
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74655
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74628
74656
|
guardrailConfig: unionType([
|
|
74629
74657
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
74630
74658
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -74681,8 +74709,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74681
74709
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
74682
74710
|
_id: stringType(),
|
|
74683
74711
|
description: stringType(),
|
|
74684
|
-
created: stringType().default("2025-11-
|
|
74685
|
-
updated: stringType().default("2025-11-
|
|
74712
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74713
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74686
74714
|
guardrail_config: unionType([
|
|
74687
74715
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
74688
74716
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -74701,8 +74729,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74701
74729
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
74702
74730
|
id: stringType(),
|
|
74703
74731
|
description: stringType(),
|
|
74704
|
-
created: stringType().default("2025-11-
|
|
74705
|
-
updated: stringType().default("2025-11-
|
|
74732
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74733
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
74706
74734
|
guardrailConfig: unionType([
|
|
74707
74735
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
74708
74736
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -75139,8 +75167,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75139
75167
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
75140
75168
|
_id: stringType(),
|
|
75141
75169
|
description: stringType(),
|
|
75142
|
-
created: stringType().default("2025-11-
|
|
75143
|
-
updated: stringType().default("2025-11-
|
|
75170
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75171
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75144
75172
|
guardrail_config: unionType([
|
|
75145
75173
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
75146
75174
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -75194,8 +75222,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75194
75222
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
75195
75223
|
id: stringType(),
|
|
75196
75224
|
description: stringType(),
|
|
75197
|
-
created: stringType().default("2025-11-
|
|
75198
|
-
updated: stringType().default("2025-11-
|
|
75225
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75226
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75199
75227
|
guardrailConfig: unionType([
|
|
75200
75228
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
75201
75229
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -75287,8 +75315,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75287
75315
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
75288
75316
|
_id: stringType(),
|
|
75289
75317
|
description: stringType(),
|
|
75290
|
-
created: stringType().default("2025-11-
|
|
75291
|
-
updated: stringType().default("2025-11-
|
|
75318
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75319
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75292
75320
|
guardrail_config: unionType([
|
|
75293
75321
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
75294
75322
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -75305,8 +75333,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75305
75333
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
75306
75334
|
id: stringType(),
|
|
75307
75335
|
description: stringType(),
|
|
75308
|
-
created: stringType().default("2025-11-
|
|
75309
|
-
updated: stringType().default("2025-11-
|
|
75336
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75337
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75310
75338
|
guardrailConfig: unionType([
|
|
75311
75339
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
75312
75340
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -75363,8 +75391,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75363
75391
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
75364
75392
|
_id: stringType(),
|
|
75365
75393
|
description: stringType(),
|
|
75366
|
-
created: stringType().default("2025-11-
|
|
75367
|
-
updated: stringType().default("2025-11-
|
|
75394
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75395
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75368
75396
|
guardrail_config: unionType([
|
|
75369
75397
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
75370
75398
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -75384,8 +75412,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75384
75412
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
75385
75413
|
id: stringType(),
|
|
75386
75414
|
description: stringType(),
|
|
75387
|
-
created: stringType().default("2025-11-
|
|
75388
|
-
updated: stringType().default("2025-11-
|
|
75415
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75416
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75389
75417
|
guardrailConfig: unionType([
|
|
75390
75418
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
75391
75419
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -75443,8 +75471,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75443
75471
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
75444
75472
|
_id: stringType(),
|
|
75445
75473
|
description: stringType(),
|
|
75446
|
-
created: stringType().default("2025-11-
|
|
75447
|
-
updated: stringType().default("2025-11-
|
|
75474
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75475
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75448
75476
|
guardrail_config: unionType([
|
|
75449
75477
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
75450
75478
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -75461,8 +75489,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75461
75489
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
75462
75490
|
id: stringType(),
|
|
75463
75491
|
description: stringType(),
|
|
75464
|
-
created: stringType().default("2025-11-
|
|
75465
|
-
updated: stringType().default("2025-11-
|
|
75492
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75493
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75466
75494
|
guardrailConfig: unionType([
|
|
75467
75495
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
75468
75496
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -75517,8 +75545,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75517
75545
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
75518
75546
|
_id: stringType(),
|
|
75519
75547
|
description: stringType(),
|
|
75520
|
-
created: stringType().default("2025-11-
|
|
75521
|
-
updated: stringType().default("2025-11-
|
|
75548
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75549
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75522
75550
|
guardrail_config: unionType([
|
|
75523
75551
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
75524
75552
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -75536,8 +75564,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75536
75564
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
75537
75565
|
id: stringType(),
|
|
75538
75566
|
description: stringType(),
|
|
75539
|
-
created: stringType().default("2025-11-
|
|
75540
|
-
updated: stringType().default("2025-11-
|
|
75567
|
+
created: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75568
|
+
updated: stringType().default("2025-11-19T10:42:37.448Z"),
|
|
75541
75569
|
guardrailConfig: unionType([
|
|
75542
75570
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
75543
75571
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -78305,13 +78333,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
78305
78333
|
required: arrayType(stringType()).optional()
|
|
78306
78334
|
});
|
|
78307
78335
|
RequestBodyTools$inboundSchema = objectType({
|
|
78308
|
-
id: stringType().default("
|
|
78336
|
+
id: stringType().default("01KADVBBN6B0HCMYMPWYM52MNH"),
|
|
78309
78337
|
name: stringType(),
|
|
78310
78338
|
description: stringType().optional(),
|
|
78311
78339
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
78312
78340
|
});
|
|
78313
78341
|
RequestBodyTools$outboundSchema = objectType({
|
|
78314
|
-
id: stringType().default("
|
|
78342
|
+
id: stringType().default("01KADVBBN6B0HCMYMPWYM52MNH"),
|
|
78315
78343
|
name: stringType(),
|
|
78316
78344
|
description: stringType().optional(),
|
|
78317
78345
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -78659,7 +78687,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78659
78687
|
code: stringType()
|
|
78660
78688
|
});
|
|
78661
78689
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
78662
|
-
_id: stringType().default("
|
|
78690
|
+
_id: stringType().default("tool_01KADVBBMH7XNQ16DNGCHXKJAG"),
|
|
78663
78691
|
path: stringType(),
|
|
78664
78692
|
key: stringType(),
|
|
78665
78693
|
display_name: stringType().optional(),
|
|
@@ -78687,7 +78715,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78687
78715
|
});
|
|
78688
78716
|
});
|
|
78689
78717
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
78690
|
-
id: stringType().default("
|
|
78718
|
+
id: stringType().default("tool_01KADVBBMH7XNQ16DNGCHXKJAG"),
|
|
78691
78719
|
path: stringType(),
|
|
78692
78720
|
key: stringType(),
|
|
78693
78721
|
displayName: stringType().optional(),
|
|
@@ -78739,13 +78767,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
78739
78767
|
required: arrayType(stringType()).optional()
|
|
78740
78768
|
});
|
|
78741
78769
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
78742
|
-
id: stringType().default("
|
|
78770
|
+
id: stringType().default("01KADVBBMF2XX08429D772QV0F"),
|
|
78743
78771
|
name: stringType(),
|
|
78744
78772
|
description: stringType().optional(),
|
|
78745
78773
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
78746
78774
|
});
|
|
78747
78775
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
78748
|
-
id: stringType().default("
|
|
78776
|
+
id: stringType().default("01KADVBBMF2XX08429D772QV0F"),
|
|
78749
78777
|
name: stringType(),
|
|
78750
78778
|
description: stringType().optional(),
|
|
78751
78779
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -78775,7 +78803,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78775
78803
|
});
|
|
78776
78804
|
});
|
|
78777
78805
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
78778
|
-
_id: stringType().default("
|
|
78806
|
+
_id: stringType().default("tool_01KADVBBMDG6WVC6QT2JZP2ZA7"),
|
|
78779
78807
|
path: stringType(),
|
|
78780
78808
|
key: stringType(),
|
|
78781
78809
|
display_name: stringType().optional(),
|
|
@@ -78802,7 +78830,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78802
78830
|
});
|
|
78803
78831
|
});
|
|
78804
78832
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
78805
|
-
id: stringType().default("
|
|
78833
|
+
id: stringType().default("tool_01KADVBBMDG6WVC6QT2JZP2ZA7"),
|
|
78806
78834
|
path: stringType(),
|
|
78807
78835
|
key: stringType(),
|
|
78808
78836
|
displayName: stringType().optional(),
|
|
@@ -78891,7 +78919,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78891
78919
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
78892
78920
|
});
|
|
78893
78921
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
78894
|
-
_id: stringType().default("
|
|
78922
|
+
_id: stringType().default("tool_01KADVBBMBXK1RYKKH3QX5EPZ3"),
|
|
78895
78923
|
path: stringType(),
|
|
78896
78924
|
key: stringType(),
|
|
78897
78925
|
display_name: stringType().optional(),
|
|
@@ -78918,7 +78946,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78918
78946
|
});
|
|
78919
78947
|
});
|
|
78920
78948
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
78921
|
-
id: stringType().default("
|
|
78949
|
+
id: stringType().default("tool_01KADVBBMBXK1RYKKH3QX5EPZ3"),
|
|
78922
78950
|
path: stringType(),
|
|
78923
78951
|
key: stringType(),
|
|
78924
78952
|
displayName: stringType().optional(),
|
|
@@ -78979,7 +79007,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
78979
79007
|
strict: booleanType().optional()
|
|
78980
79008
|
});
|
|
78981
79009
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
78982
|
-
_id: stringType().default("
|
|
79010
|
+
_id: stringType().default("tool_01KADVBBM9V986PKD48SQA6ND8"),
|
|
78983
79011
|
path: stringType(),
|
|
78984
79012
|
key: stringType(),
|
|
78985
79013
|
display_name: stringType().optional(),
|
|
@@ -79007,7 +79035,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79007
79035
|
});
|
|
79008
79036
|
});
|
|
79009
79037
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
79010
|
-
id: stringType().default("
|
|
79038
|
+
id: stringType().default("tool_01KADVBBM9V986PKD48SQA6ND8"),
|
|
79011
79039
|
path: stringType(),
|
|
79012
79040
|
key: stringType(),
|
|
79013
79041
|
displayName: stringType().optional(),
|
|
@@ -79071,7 +79099,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79071
79099
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
79072
79100
|
});
|
|
79073
79101
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
79074
|
-
_id: stringType().default("
|
|
79102
|
+
_id: stringType().default("tool_01KADVBBM8FS5HKY46KYNBZW53"),
|
|
79075
79103
|
path: stringType(),
|
|
79076
79104
|
key: stringType(),
|
|
79077
79105
|
display_name: stringType().optional(),
|
|
@@ -79098,7 +79126,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79098
79126
|
});
|
|
79099
79127
|
});
|
|
79100
79128
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
79101
|
-
id: stringType().default("
|
|
79129
|
+
id: stringType().default("tool_01KADVBBM8FS5HKY46KYNBZW53"),
|
|
79102
79130
|
path: stringType(),
|
|
79103
79131
|
key: stringType(),
|
|
79104
79132
|
displayName: stringType().optional(),
|
|
@@ -79491,15 +79519,16 @@ async function $do3(client, request, options) {
|
|
|
79491
79519
|
return [parsed, { status: "invalid" }];
|
|
79492
79520
|
}
|
|
79493
79521
|
const payload = parsed.value;
|
|
79494
|
-
const body =
|
|
79522
|
+
const body = encodeJSON("body", payload.RequestBody, { explode: true });
|
|
79495
79523
|
const pathParams = {
|
|
79496
|
-
|
|
79524
|
+
agent_key: encodeSimple("agent_key", payload.agent_key, {
|
|
79497
79525
|
explode: false,
|
|
79498
79526
|
charEncoding: "percent"
|
|
79499
79527
|
})
|
|
79500
79528
|
};
|
|
79501
|
-
const path = pathToFunc("/v2/agents/{
|
|
79529
|
+
const path = pathToFunc("/v2/agents/{agent_key}/duplicate")(pathParams);
|
|
79502
79530
|
const headers = new Headers(compactMap({
|
|
79531
|
+
"Content-Type": "application/json",
|
|
79503
79532
|
Accept: "application/json"
|
|
79504
79533
|
}));
|
|
79505
79534
|
const secConfig = await extractSecurity(client._options.apiKey);
|
|
@@ -79573,7 +79602,7 @@ var init_agentsDuplicate2 = __esm(() => {
|
|
|
79573
79602
|
name: "agents-duplicate",
|
|
79574
79603
|
description: `Duplicate an existing agent
|
|
79575
79604
|
|
|
79576
|
-
Creates a copy of an existing agent with a new unique key. The duplicated agent will have all the same configuration as the original, including model settings, instructions, tools, and knowledge bases.`,
|
|
79605
|
+
Creates a copy of an existing agent with a new unique key and display name. The duplicated agent will have all the same configuration as the original, including model settings, instructions, tools, and knowledge bases.`,
|
|
79577
79606
|
args: args3,
|
|
79578
79607
|
tool: async (client, args4, ctx) => {
|
|
79579
79608
|
const [result, apiCall] = await agentsDuplicate(client, args4.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
@@ -91570,7 +91599,7 @@ Updates a tool in the workspace.`,
|
|
|
91570
91599
|
function createMCPServer(deps) {
|
|
91571
91600
|
const server = new McpServer({
|
|
91572
91601
|
name: "Orq",
|
|
91573
|
-
version: "4.0.0-rc.
|
|
91602
|
+
version: "4.0.0-rc.49"
|
|
91574
91603
|
});
|
|
91575
91604
|
const client = new OrqCore({
|
|
91576
91605
|
apiKey: deps.apiKey,
|
|
@@ -92990,7 +93019,7 @@ var routes = rn({
|
|
|
92990
93019
|
var app = Ve(routes, {
|
|
92991
93020
|
name: "mcp",
|
|
92992
93021
|
versionInfo: {
|
|
92993
|
-
currentVersion: "4.0.0-rc.
|
|
93022
|
+
currentVersion: "4.0.0-rc.49"
|
|
92994
93023
|
}
|
|
92995
93024
|
});
|
|
92996
93025
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -92998,5 +93027,5 @@ export {
|
|
|
92998
93027
|
app
|
|
92999
93028
|
};
|
|
93000
93029
|
|
|
93001
|
-
//# debugId=
|
|
93030
|
+
//# debugId=6CA756C2098DA45964756E2164756E21
|
|
93002
93031
|
//# sourceMappingURL=mcp-server.js.map
|