@orq-ai/node 4.0.4 → 4.0.6
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 +213 -213
- package/bin/mcp-server.js.map +36 -36
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.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/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/packages/orq-rc/README.md +38 -47
- package/packages/orq-rc/docs/sdks/agents/README.md +230 -529
- package/packages/orq-rc/docs/sdks/responses/README.md +60 -65
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsCreate.ts +16 -14
- package/packages/orq-rc/src/funcs/agentsDelete.ts +10 -6
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsList.ts +18 -6
- package/packages/orq-rc/src/funcs/agentsResponsesCreate.ts +23 -12
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +21 -16
- package/packages/orq-rc/src/funcs/agentsRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsStream.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsUpdate.ts +14 -6
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -9
- package/packages/orq-rc/src/mcp-server/tools/agentsCreate.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/agentsDelete.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsInvoke.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +9 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsResponsesCreate.ts +8 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsStream.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsUpdate.ts +8 -4
- package/packages/orq-rc/src/models/errors/createagentrequest.ts +67 -0
- package/packages/orq-rc/src/models/errors/deleteagent.ts +2 -2
- package/packages/orq-rc/src/models/errors/index.ts +2 -3
- package/packages/orq-rc/src/models/errors/{listagenttasks.ts → retrieveagentrequest.ts} +15 -15
- package/packages/orq-rc/src/models/errors/updateagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/{createagent.ts → createagentrequest.ts} +1643 -1485
- package/packages/orq-rc/src/models/operations/{createagentresponse.ts → createagentresponserequest.ts} +141 -127
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +3 -7
- package/packages/orq-rc/src/models/operations/invokeagent.ts +153 -190
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -21
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +3741 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +53 -57
- package/packages/orq-rc/src/models/operations/streamagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +68 -82
- package/packages/orq-rc/src/models/operations/updateagent.ts +17 -17
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updateprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/agents.ts +51 -99
- package/packages/orq-rc/src/sdk/responses.ts +7 -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/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/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/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/packages/orq-rc/src/funcs/agentsListActions.ts +0 -169
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +0 -183
- package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +0 -173
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +0 -179
- package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsListTasks.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +0 -37
- package/packages/orq-rc/src/models/errors/createagent.ts +0 -67
- package/packages/orq-rc/src/models/errors/getagent.ts +0 -67
- package/packages/orq-rc/src/models/operations/getagent.ts +0 -3480
- package/packages/orq-rc/src/models/operations/getagenttask.ts +0 -2389
- package/packages/orq-rc/src/models/operations/listactions.ts +0 -427
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +0 -2614
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +0 -354
package/bin/mcp-server.js
CHANGED
|
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
|
|
|
34206
34206
|
SDK_METADATA = {
|
|
34207
34207
|
language: "typescript",
|
|
34208
34208
|
openapiDocVersion: "2.0",
|
|
34209
|
-
sdkVersion: "4.0.
|
|
34209
|
+
sdkVersion: "4.0.6",
|
|
34210
34210
|
genVersion: "2.760.2",
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 4.0.
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 4.0.6 2.760.2 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -38842,7 +38842,7 @@ var init_createbudget = __esm(() => {
|
|
|
38842
38842
|
is_active: booleanType(),
|
|
38843
38843
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38844
38844
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38845
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38845
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.554Z").transform((v2) => new Date(v2))
|
|
38846
38846
|
}).transform((v2) => {
|
|
38847
38847
|
return remap(v2, {
|
|
38848
38848
|
_id: "id",
|
|
@@ -38860,7 +38860,7 @@ var init_createbudget = __esm(() => {
|
|
|
38860
38860
|
isActive: booleanType(),
|
|
38861
38861
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38862
38862
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38863
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38863
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.554Z")).transform((v2) => v2.toISOString())
|
|
38864
38864
|
}).transform((v2) => {
|
|
38865
38865
|
return remap(v2, {
|
|
38866
38866
|
id: "_id",
|
|
@@ -39000,7 +39000,7 @@ var init_createcontact = __esm(() => {
|
|
|
39000
39000
|
tags: arrayType(stringType()).optional(),
|
|
39001
39001
|
metadata: recordType(anyType()).optional(),
|
|
39002
39002
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39003
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39003
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
39004
39004
|
}).transform((v2) => {
|
|
39005
39005
|
return remap(v2, {
|
|
39006
39006
|
_id: "id",
|
|
@@ -39020,7 +39020,7 @@ var init_createcontact = __esm(() => {
|
|
|
39020
39020
|
tags: arrayType(stringType()).optional(),
|
|
39021
39021
|
metadata: recordType(anyType()).optional(),
|
|
39022
39022
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39023
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
39023
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
39024
39024
|
}).transform((v2) => {
|
|
39025
39025
|
return remap(v2, {
|
|
39026
39026
|
id: "_id",
|
|
@@ -39080,7 +39080,7 @@ var init_createdataset = __esm(() => {
|
|
|
39080
39080
|
created_by_id: stringType().optional(),
|
|
39081
39081
|
updated_by_id: stringType().optional(),
|
|
39082
39082
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39083
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39083
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
39084
39084
|
}).transform((v2) => {
|
|
39085
39085
|
return remap(v2, {
|
|
39086
39086
|
_id: "id",
|
|
@@ -39100,7 +39100,7 @@ var init_createdataset = __esm(() => {
|
|
|
39100
39100
|
createdById: stringType().optional(),
|
|
39101
39101
|
updatedById: stringType().optional(),
|
|
39102
39102
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39103
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
39103
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
39104
39104
|
}).transform((v2) => {
|
|
39105
39105
|
return remap(v2, {
|
|
39106
39106
|
id: "_id",
|
|
@@ -40174,7 +40174,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40174
40174
|
human_review_id: stringType(),
|
|
40175
40175
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
40176
40176
|
reviewed_by_id: stringType(),
|
|
40177
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40177
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.762Z").transform((v2) => new Date(v2)),
|
|
40178
40178
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
40179
40179
|
values: arrayType(stringType())
|
|
40180
40180
|
}).transform((v2) => {
|
|
@@ -40191,7 +40191,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40191
40191
|
humanReviewId: stringType(),
|
|
40192
40192
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
40193
40193
|
reviewedById: stringType(),
|
|
40194
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40194
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.762Z")).transform((v2) => v2.toISOString()),
|
|
40195
40195
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
40196
40196
|
values: arrayType(stringType())
|
|
40197
40197
|
}).transform((v2) => {
|
|
@@ -40214,7 +40214,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40214
40214
|
human_review_id: stringType(),
|
|
40215
40215
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
40216
40216
|
reviewed_by_id: stringType(),
|
|
40217
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40217
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.761Z").transform((v2) => new Date(v2)),
|
|
40218
40218
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
40219
40219
|
value: numberType()
|
|
40220
40220
|
}).transform((v2) => {
|
|
@@ -40231,7 +40231,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40231
40231
|
humanReviewId: stringType(),
|
|
40232
40232
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
40233
40233
|
reviewedById: stringType(),
|
|
40234
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40234
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.761Z")).transform((v2) => v2.toISOString()),
|
|
40235
40235
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
40236
40236
|
value: numberType()
|
|
40237
40237
|
}).transform((v2) => {
|
|
@@ -40254,7 +40254,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40254
40254
|
human_review_id: stringType(),
|
|
40255
40255
|
source: Source$inboundSchema.default("orq"),
|
|
40256
40256
|
reviewed_by_id: stringType(),
|
|
40257
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40257
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.761Z").transform((v2) => new Date(v2)),
|
|
40258
40258
|
type: EvaluationsType$inboundSchema,
|
|
40259
40259
|
value: stringType()
|
|
40260
40260
|
}).transform((v2) => {
|
|
@@ -40271,7 +40271,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40271
40271
|
humanReviewId: stringType(),
|
|
40272
40272
|
source: Source$outboundSchema.default("orq"),
|
|
40273
40273
|
reviewedById: stringType(),
|
|
40274
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40274
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.761Z")).transform((v2) => v2.toISOString()),
|
|
40275
40275
|
type: EvaluationsType$outboundSchema,
|
|
40276
40276
|
value: stringType()
|
|
40277
40277
|
}).transform((v2) => {
|
|
@@ -40314,7 +40314,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40314
40314
|
created_by_id: stringType().optional(),
|
|
40315
40315
|
updated_by_id: stringType().optional(),
|
|
40316
40316
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40317
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
40317
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
40318
40318
|
}).transform((v2) => {
|
|
40319
40319
|
return remap(v2, {
|
|
40320
40320
|
_id: "id",
|
|
@@ -40348,7 +40348,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40348
40348
|
createdById: stringType().optional(),
|
|
40349
40349
|
updatedById: stringType().optional(),
|
|
40350
40350
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40351
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40351
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
40352
40352
|
}).transform((v2) => {
|
|
40353
40353
|
return remap(v2, {
|
|
40354
40354
|
id: "_id",
|
|
@@ -40527,7 +40527,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40527
40527
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40528
40528
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40529
40529
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40530
|
-
_id: stringType().default("
|
|
40530
|
+
_id: stringType().default("01KAV2V21TZRY8FRPPAE0E19HX"),
|
|
40531
40531
|
display_name: stringType(),
|
|
40532
40532
|
description: stringType().optional(),
|
|
40533
40533
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40550,7 +40550,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40550
40550
|
});
|
|
40551
40551
|
});
|
|
40552
40552
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40553
|
-
id: stringType().default("
|
|
40553
|
+
id: stringType().default("01KAV2V21TZRY8FRPPAE0E19HX"),
|
|
40554
40554
|
displayName: stringType(),
|
|
40555
40555
|
description: stringType().optional(),
|
|
40556
40556
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -41271,8 +41271,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41271
41271
|
Typescript$inboundSchema = objectType({
|
|
41272
41272
|
_id: stringType(),
|
|
41273
41273
|
description: stringType(),
|
|
41274
|
-
created: stringType().default("2025-11-
|
|
41275
|
-
updated: stringType().default("2025-11-
|
|
41274
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41275
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41276
41276
|
guardrail_config: unionType([
|
|
41277
41277
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
41278
41278
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -41289,8 +41289,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41289
41289
|
Typescript$outboundSchema = objectType({
|
|
41290
41290
|
id: stringType(),
|
|
41291
41291
|
description: stringType(),
|
|
41292
|
-
created: stringType().default("2025-11-
|
|
41293
|
-
updated: stringType().default("2025-11-
|
|
41292
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41293
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41294
41294
|
guardrailConfig: unionType([
|
|
41295
41295
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
41296
41296
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -41347,8 +41347,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41347
41347
|
Ragas$inboundSchema = objectType({
|
|
41348
41348
|
_id: stringType(),
|
|
41349
41349
|
description: stringType(),
|
|
41350
|
-
created: stringType().default("2025-11-
|
|
41351
|
-
updated: stringType().default("2025-11-
|
|
41350
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41351
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41352
41352
|
guardrail_config: unionType([
|
|
41353
41353
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
41354
41354
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -41367,8 +41367,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41367
41367
|
Ragas$outboundSchema = objectType({
|
|
41368
41368
|
id: stringType(),
|
|
41369
41369
|
description: stringType(),
|
|
41370
|
-
created: stringType().default("2025-11-
|
|
41371
|
-
updated: stringType().default("2025-11-
|
|
41370
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41371
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41372
41372
|
guardrailConfig: unionType([
|
|
41373
41373
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
41374
41374
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41805,8 +41805,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41805
41805
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41806
41806
|
_id: stringType(),
|
|
41807
41807
|
description: stringType(),
|
|
41808
|
-
created: stringType().default("2025-11-
|
|
41809
|
-
updated: stringType().default("2025-11-
|
|
41808
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41809
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41810
41810
|
guardrail_config: unionType([
|
|
41811
41811
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41812
41812
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41860,8 +41860,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41860
41860
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41861
41861
|
id: stringType(),
|
|
41862
41862
|
description: stringType(),
|
|
41863
|
-
created: stringType().default("2025-11-
|
|
41864
|
-
updated: stringType().default("2025-11-
|
|
41863
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41864
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41865
41865
|
guardrailConfig: unionType([
|
|
41866
41866
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41867
41867
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41953,8 +41953,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41953
41953
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41954
41954
|
_id: stringType(),
|
|
41955
41955
|
description: stringType(),
|
|
41956
|
-
created: stringType().default("2025-11-
|
|
41957
|
-
updated: stringType().default("2025-11-
|
|
41956
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41957
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41958
41958
|
guardrail_config: unionType([
|
|
41959
41959
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41960
41960
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41971,8 +41971,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41971
41971
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41972
41972
|
id: stringType(),
|
|
41973
41973
|
description: stringType(),
|
|
41974
|
-
created: stringType().default("2025-11-
|
|
41975
|
-
updated: stringType().default("2025-11-
|
|
41974
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41975
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
41976
41976
|
guardrailConfig: unionType([
|
|
41977
41977
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41978
41978
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -42029,8 +42029,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42029
42029
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
42030
42030
|
_id: stringType(),
|
|
42031
42031
|
description: stringType(),
|
|
42032
|
-
created: stringType().default("2025-11-
|
|
42033
|
-
updated: stringType().default("2025-11-
|
|
42032
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42033
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42034
42034
|
guardrail_config: unionType([
|
|
42035
42035
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
42036
42036
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -42050,8 +42050,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42050
42050
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
42051
42051
|
id: stringType(),
|
|
42052
42052
|
description: stringType(),
|
|
42053
|
-
created: stringType().default("2025-11-
|
|
42054
|
-
updated: stringType().default("2025-11-
|
|
42053
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42054
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42055
42055
|
guardrailConfig: unionType([
|
|
42056
42056
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
42057
42057
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -42109,8 +42109,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42109
42109
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
42110
42110
|
_id: stringType(),
|
|
42111
42111
|
description: stringType(),
|
|
42112
|
-
created: stringType().default("2025-11-
|
|
42113
|
-
updated: stringType().default("2025-11-
|
|
42112
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42113
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42114
42114
|
guardrail_config: unionType([
|
|
42115
42115
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
42116
42116
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -42127,8 +42127,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42127
42127
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
42128
42128
|
id: stringType(),
|
|
42129
42129
|
description: stringType(),
|
|
42130
|
-
created: stringType().default("2025-11-
|
|
42131
|
-
updated: stringType().default("2025-11-
|
|
42130
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42131
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42132
42132
|
guardrailConfig: unionType([
|
|
42133
42133
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
42134
42134
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -42183,8 +42183,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42183
42183
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
42184
42184
|
_id: stringType(),
|
|
42185
42185
|
description: stringType(),
|
|
42186
|
-
created: stringType().default("2025-11-
|
|
42187
|
-
updated: stringType().default("2025-11-
|
|
42186
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42187
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42188
42188
|
guardrail_config: unionType([
|
|
42189
42189
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
42190
42190
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -42202,8 +42202,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42202
42202
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
42203
42203
|
id: stringType(),
|
|
42204
42204
|
description: stringType(),
|
|
42205
|
-
created: stringType().default("2025-11-
|
|
42206
|
-
updated: stringType().default("2025-11-
|
|
42205
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42206
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
42207
42207
|
guardrailConfig: unionType([
|
|
42208
42208
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
42209
42209
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -45070,7 +45070,7 @@ var init_createtool = __esm(() => {
|
|
|
45070
45070
|
code: stringType()
|
|
45071
45071
|
});
|
|
45072
45072
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
45073
|
-
_id: stringType().default("
|
|
45073
|
+
_id: stringType().default("tool_01KAV2V1WMF7BCK457J5N3ESTV"),
|
|
45074
45074
|
path: stringType(),
|
|
45075
45075
|
key: stringType(),
|
|
45076
45076
|
display_name: stringType().optional(),
|
|
@@ -45098,7 +45098,7 @@ var init_createtool = __esm(() => {
|
|
|
45098
45098
|
});
|
|
45099
45099
|
});
|
|
45100
45100
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
45101
|
-
id: stringType().default("
|
|
45101
|
+
id: stringType().default("tool_01KAV2V1WMF7BCK457J5N3ESTV"),
|
|
45102
45102
|
path: stringType(),
|
|
45103
45103
|
key: stringType(),
|
|
45104
45104
|
displayName: stringType().optional(),
|
|
@@ -45150,13 +45150,13 @@ var init_createtool = __esm(() => {
|
|
|
45150
45150
|
required: arrayType(stringType()).optional()
|
|
45151
45151
|
});
|
|
45152
45152
|
ResponseBodyTools$inboundSchema = objectType({
|
|
45153
|
-
id: stringType().default("
|
|
45153
|
+
id: stringType().default("01KAV2V1WKET5WMPJWSWTY1X14"),
|
|
45154
45154
|
name: stringType(),
|
|
45155
45155
|
description: stringType().optional(),
|
|
45156
45156
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
45157
45157
|
});
|
|
45158
45158
|
ResponseBodyTools$outboundSchema = objectType({
|
|
45159
|
-
id: stringType().default("
|
|
45159
|
+
id: stringType().default("01KAV2V1WKET5WMPJWSWTY1X14"),
|
|
45160
45160
|
name: stringType(),
|
|
45161
45161
|
description: stringType().optional(),
|
|
45162
45162
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -45186,7 +45186,7 @@ var init_createtool = __esm(() => {
|
|
|
45186
45186
|
});
|
|
45187
45187
|
});
|
|
45188
45188
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
45189
|
-
_id: stringType().default("
|
|
45189
|
+
_id: stringType().default("tool_01KAV2V1WH9RKDN15PGMS5ZAFE"),
|
|
45190
45190
|
path: stringType(),
|
|
45191
45191
|
key: stringType(),
|
|
45192
45192
|
display_name: stringType().optional(),
|
|
@@ -45213,7 +45213,7 @@ var init_createtool = __esm(() => {
|
|
|
45213
45213
|
});
|
|
45214
45214
|
});
|
|
45215
45215
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
45216
|
-
id: stringType().default("
|
|
45216
|
+
id: stringType().default("tool_01KAV2V1WH9RKDN15PGMS5ZAFE"),
|
|
45217
45217
|
path: stringType(),
|
|
45218
45218
|
key: stringType(),
|
|
45219
45219
|
displayName: stringType().optional(),
|
|
@@ -45302,7 +45302,7 @@ var init_createtool = __esm(() => {
|
|
|
45302
45302
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45303
45303
|
});
|
|
45304
45304
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
45305
|
-
_id: stringType().default("
|
|
45305
|
+
_id: stringType().default("tool_01KAV2V1WEERR9Y3YZV040RS71"),
|
|
45306
45306
|
path: stringType(),
|
|
45307
45307
|
key: stringType(),
|
|
45308
45308
|
display_name: stringType().optional(),
|
|
@@ -45329,7 +45329,7 @@ var init_createtool = __esm(() => {
|
|
|
45329
45329
|
});
|
|
45330
45330
|
});
|
|
45331
45331
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
45332
|
-
id: stringType().default("
|
|
45332
|
+
id: stringType().default("tool_01KAV2V1WEERR9Y3YZV040RS71"),
|
|
45333
45333
|
path: stringType(),
|
|
45334
45334
|
key: stringType(),
|
|
45335
45335
|
displayName: stringType().optional(),
|
|
@@ -45390,7 +45390,7 @@ var init_createtool = __esm(() => {
|
|
|
45390
45390
|
strict: booleanType().optional()
|
|
45391
45391
|
});
|
|
45392
45392
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
45393
|
-
_id: stringType().default("
|
|
45393
|
+
_id: stringType().default("tool_01KAV2V1WBW26M0YS7R0NA1E49"),
|
|
45394
45394
|
path: stringType(),
|
|
45395
45395
|
key: stringType(),
|
|
45396
45396
|
display_name: stringType().optional(),
|
|
@@ -45418,7 +45418,7 @@ var init_createtool = __esm(() => {
|
|
|
45418
45418
|
});
|
|
45419
45419
|
});
|
|
45420
45420
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
45421
|
-
id: stringType().default("
|
|
45421
|
+
id: stringType().default("tool_01KAV2V1WBW26M0YS7R0NA1E49"),
|
|
45422
45422
|
path: stringType(),
|
|
45423
45423
|
key: stringType(),
|
|
45424
45424
|
displayName: stringType().optional(),
|
|
@@ -45482,7 +45482,7 @@ var init_createtool = __esm(() => {
|
|
|
45482
45482
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
45483
45483
|
});
|
|
45484
45484
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
45485
|
-
_id: stringType().default("
|
|
45485
|
+
_id: stringType().default("tool_01KAV2V1W9T6S44RQVK7CRXY0R"),
|
|
45486
45486
|
path: stringType(),
|
|
45487
45487
|
key: stringType(),
|
|
45488
45488
|
display_name: stringType().optional(),
|
|
@@ -45509,7 +45509,7 @@ var init_createtool = __esm(() => {
|
|
|
45509
45509
|
});
|
|
45510
45510
|
});
|
|
45511
45511
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
45512
|
-
id: stringType().default("
|
|
45512
|
+
id: stringType().default("tool_01KAV2V1W9T6S44RQVK7CRXY0R"),
|
|
45513
45513
|
path: stringType(),
|
|
45514
45514
|
key: stringType(),
|
|
45515
45515
|
displayName: stringType().optional(),
|
|
@@ -51587,7 +51587,7 @@ var init_fileget = __esm(() => {
|
|
|
51587
51587
|
bytes: numberType(),
|
|
51588
51588
|
file_name: stringType(),
|
|
51589
51589
|
workspace_id: stringType(),
|
|
51590
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51590
|
+
created: stringType().datetime({ offset: true }).default("2025-11-24T14:03:40.252Z").transform((v2) => new Date(v2))
|
|
51591
51591
|
}).transform((v2) => {
|
|
51592
51592
|
return remap(v2, {
|
|
51593
51593
|
_id: "id",
|
|
@@ -51603,7 +51603,7 @@ var init_fileget = __esm(() => {
|
|
|
51603
51603
|
bytes: numberType(),
|
|
51604
51604
|
fileName: stringType(),
|
|
51605
51605
|
workspaceId: stringType(),
|
|
51606
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51606
|
+
created: dateType().default(() => new Date("2025-11-24T14:03:40.252Z")).transform((v2) => v2.toISOString())
|
|
51607
51607
|
}).transform((v2) => {
|
|
51608
51608
|
return remap(v2, {
|
|
51609
51609
|
id: "_id",
|
|
@@ -51658,7 +51658,7 @@ var init_filelist = __esm(() => {
|
|
|
51658
51658
|
bytes: numberType(),
|
|
51659
51659
|
file_name: stringType(),
|
|
51660
51660
|
workspace_id: stringType(),
|
|
51661
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51661
|
+
created: stringType().datetime({ offset: true }).default("2025-11-24T14:03:40.252Z").transform((v2) => new Date(v2))
|
|
51662
51662
|
}).transform((v2) => {
|
|
51663
51663
|
return remap(v2, {
|
|
51664
51664
|
_id: "id",
|
|
@@ -51674,7 +51674,7 @@ var init_filelist = __esm(() => {
|
|
|
51674
51674
|
bytes: numberType(),
|
|
51675
51675
|
fileName: stringType(),
|
|
51676
51676
|
workspaceId: stringType(),
|
|
51677
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51677
|
+
created: dateType().default(() => new Date("2025-11-24T14:03:40.252Z")).transform((v2) => v2.toISOString())
|
|
51678
51678
|
}).transform((v2) => {
|
|
51679
51679
|
return remap(v2, {
|
|
51680
51680
|
id: "_id",
|
|
@@ -51782,7 +51782,7 @@ var init_fileupload = __esm(() => {
|
|
|
51782
51782
|
bytes: numberType(),
|
|
51783
51783
|
file_name: stringType(),
|
|
51784
51784
|
workspace_id: stringType(),
|
|
51785
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51785
|
+
created: stringType().datetime({ offset: true }).default("2025-11-24T14:03:40.252Z").transform((v2) => new Date(v2))
|
|
51786
51786
|
}).transform((v2) => {
|
|
51787
51787
|
return remap(v2, {
|
|
51788
51788
|
_id: "id",
|
|
@@ -51798,7 +51798,7 @@ var init_fileupload = __esm(() => {
|
|
|
51798
51798
|
bytes: numberType(),
|
|
51799
51799
|
fileName: stringType(),
|
|
51800
51800
|
workspaceId: stringType(),
|
|
51801
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51801
|
+
created: dateType().default(() => new Date("2025-11-24T14:03:40.252Z")).transform((v2) => v2.toISOString())
|
|
51802
51802
|
}).transform((v2) => {
|
|
51803
51803
|
return remap(v2, {
|
|
51804
51804
|
id: "_id",
|
|
@@ -52846,7 +52846,7 @@ var init_getalltools = __esm(() => {
|
|
|
52846
52846
|
code: stringType()
|
|
52847
52847
|
});
|
|
52848
52848
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
52849
|
-
_id: stringType().default("
|
|
52849
|
+
_id: stringType().default("tool_01KAV2V1VS0EQRA4064BECAWCG"),
|
|
52850
52850
|
path: stringType(),
|
|
52851
52851
|
key: stringType(),
|
|
52852
52852
|
display_name: stringType().optional(),
|
|
@@ -52874,7 +52874,7 @@ var init_getalltools = __esm(() => {
|
|
|
52874
52874
|
});
|
|
52875
52875
|
});
|
|
52876
52876
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
52877
|
-
id: stringType().default("
|
|
52877
|
+
id: stringType().default("tool_01KAV2V1VS0EQRA4064BECAWCG"),
|
|
52878
52878
|
path: stringType(),
|
|
52879
52879
|
key: stringType(),
|
|
52880
52880
|
displayName: stringType().optional(),
|
|
@@ -52926,13 +52926,13 @@ var init_getalltools = __esm(() => {
|
|
|
52926
52926
|
required: arrayType(stringType()).optional()
|
|
52927
52927
|
});
|
|
52928
52928
|
DataTools$inboundSchema = objectType({
|
|
52929
|
-
id: stringType().default("
|
|
52929
|
+
id: stringType().default("01KAV2V1VRZVAK85VYKCEXZ06W"),
|
|
52930
52930
|
name: stringType(),
|
|
52931
52931
|
description: stringType().optional(),
|
|
52932
52932
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
52933
52933
|
});
|
|
52934
52934
|
DataTools$outboundSchema = objectType({
|
|
52935
|
-
id: stringType().default("
|
|
52935
|
+
id: stringType().default("01KAV2V1VRZVAK85VYKCEXZ06W"),
|
|
52936
52936
|
name: stringType(),
|
|
52937
52937
|
description: stringType().optional(),
|
|
52938
52938
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -52962,7 +52962,7 @@ var init_getalltools = __esm(() => {
|
|
|
52962
52962
|
});
|
|
52963
52963
|
});
|
|
52964
52964
|
DataMCPTool$inboundSchema = objectType({
|
|
52965
|
-
_id: stringType().default("
|
|
52965
|
+
_id: stringType().default("tool_01KAV2V1VQ9TWM5DN4BM5W5B80"),
|
|
52966
52966
|
path: stringType(),
|
|
52967
52967
|
key: stringType(),
|
|
52968
52968
|
display_name: stringType().optional(),
|
|
@@ -52989,7 +52989,7 @@ var init_getalltools = __esm(() => {
|
|
|
52989
52989
|
});
|
|
52990
52990
|
});
|
|
52991
52991
|
DataMCPTool$outboundSchema = objectType({
|
|
52992
|
-
id: stringType().default("
|
|
52992
|
+
id: stringType().default("tool_01KAV2V1VQ9TWM5DN4BM5W5B80"),
|
|
52993
52993
|
path: stringType(),
|
|
52994
52994
|
key: stringType(),
|
|
52995
52995
|
displayName: stringType().optional(),
|
|
@@ -53078,7 +53078,7 @@ var init_getalltools = __esm(() => {
|
|
|
53078
53078
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
53079
53079
|
});
|
|
53080
53080
|
DataHTTPTool$inboundSchema = objectType({
|
|
53081
|
-
_id: stringType().default("
|
|
53081
|
+
_id: stringType().default("tool_01KAV2V1VNQ2D1ABF7P13E985K"),
|
|
53082
53082
|
path: stringType(),
|
|
53083
53083
|
key: stringType(),
|
|
53084
53084
|
display_name: stringType().optional(),
|
|
@@ -53105,7 +53105,7 @@ var init_getalltools = __esm(() => {
|
|
|
53105
53105
|
});
|
|
53106
53106
|
});
|
|
53107
53107
|
DataHTTPTool$outboundSchema = objectType({
|
|
53108
|
-
id: stringType().default("
|
|
53108
|
+
id: stringType().default("tool_01KAV2V1VNQ2D1ABF7P13E985K"),
|
|
53109
53109
|
path: stringType(),
|
|
53110
53110
|
key: stringType(),
|
|
53111
53111
|
displayName: stringType().optional(),
|
|
@@ -53166,7 +53166,7 @@ var init_getalltools = __esm(() => {
|
|
|
53166
53166
|
strict: booleanType().optional()
|
|
53167
53167
|
});
|
|
53168
53168
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
53169
|
-
_id: stringType().default("
|
|
53169
|
+
_id: stringType().default("tool_01KAV2V1VKH6K4YH5B342MTW2S"),
|
|
53170
53170
|
path: stringType(),
|
|
53171
53171
|
key: stringType(),
|
|
53172
53172
|
display_name: stringType().optional(),
|
|
@@ -53194,7 +53194,7 @@ var init_getalltools = __esm(() => {
|
|
|
53194
53194
|
});
|
|
53195
53195
|
});
|
|
53196
53196
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
53197
|
-
id: stringType().default("
|
|
53197
|
+
id: stringType().default("tool_01KAV2V1VKH6K4YH5B342MTW2S"),
|
|
53198
53198
|
path: stringType(),
|
|
53199
53199
|
key: stringType(),
|
|
53200
53200
|
displayName: stringType().optional(),
|
|
@@ -53258,7 +53258,7 @@ var init_getalltools = __esm(() => {
|
|
|
53258
53258
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
53259
53259
|
});
|
|
53260
53260
|
DataFunctionTool$inboundSchema = objectType({
|
|
53261
|
-
_id: stringType().default("
|
|
53261
|
+
_id: stringType().default("tool_01KAV2V1VB9MNVPM8TH0YTW9K6"),
|
|
53262
53262
|
path: stringType(),
|
|
53263
53263
|
key: stringType(),
|
|
53264
53264
|
display_name: stringType().optional(),
|
|
@@ -53285,7 +53285,7 @@ var init_getalltools = __esm(() => {
|
|
|
53285
53285
|
});
|
|
53286
53286
|
});
|
|
53287
53287
|
DataFunctionTool$outboundSchema = objectType({
|
|
53288
|
-
id: stringType().default("
|
|
53288
|
+
id: stringType().default("tool_01KAV2V1VB9MNVPM8TH0YTW9K6"),
|
|
53289
53289
|
path: stringType(),
|
|
53290
53290
|
key: stringType(),
|
|
53291
53291
|
displayName: stringType().optional(),
|
|
@@ -53427,7 +53427,7 @@ var init_getbudget = __esm(() => {
|
|
|
53427
53427
|
is_active: booleanType(),
|
|
53428
53428
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
53429
53429
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53430
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
53430
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.554Z").transform((v2) => new Date(v2))
|
|
53431
53431
|
}).transform((v2) => {
|
|
53432
53432
|
return remap(v2, {
|
|
53433
53433
|
_id: "id",
|
|
@@ -53445,7 +53445,7 @@ var init_getbudget = __esm(() => {
|
|
|
53445
53445
|
isActive: booleanType(),
|
|
53446
53446
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
53447
53447
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53448
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
53448
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.554Z")).transform((v2) => v2.toISOString())
|
|
53449
53449
|
}).transform((v2) => {
|
|
53450
53450
|
return remap(v2, {
|
|
53451
53451
|
id: "_id",
|
|
@@ -53814,8 +53814,8 @@ var init_getevals2 = __esm(() => {
|
|
|
53814
53814
|
DataTypescript$inboundSchema = objectType({
|
|
53815
53815
|
_id: stringType(),
|
|
53816
53816
|
description: stringType(),
|
|
53817
|
-
created: stringType().default("2025-11-
|
|
53818
|
-
updated: stringType().default("2025-11-
|
|
53817
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53818
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53819
53819
|
guardrail_config: unionType([
|
|
53820
53820
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
53821
53821
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -53832,8 +53832,8 @@ var init_getevals2 = __esm(() => {
|
|
|
53832
53832
|
DataTypescript$outboundSchema = objectType({
|
|
53833
53833
|
id: stringType(),
|
|
53834
53834
|
description: stringType(),
|
|
53835
|
-
created: stringType().default("2025-11-
|
|
53836
|
-
updated: stringType().default("2025-11-
|
|
53835
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53836
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53837
53837
|
guardrailConfig: unionType([
|
|
53838
53838
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
53839
53839
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -53890,8 +53890,8 @@ var init_getevals2 = __esm(() => {
|
|
|
53890
53890
|
DataRagas$inboundSchema = objectType({
|
|
53891
53891
|
_id: stringType(),
|
|
53892
53892
|
description: stringType(),
|
|
53893
|
-
created: stringType().default("2025-11-
|
|
53894
|
-
updated: stringType().default("2025-11-
|
|
53893
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53894
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53895
53895
|
guardrail_config: unionType([
|
|
53896
53896
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
53897
53897
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -53910,8 +53910,8 @@ var init_getevals2 = __esm(() => {
|
|
|
53910
53910
|
DataRagas$outboundSchema = objectType({
|
|
53911
53911
|
id: stringType(),
|
|
53912
53912
|
description: stringType(),
|
|
53913
|
-
created: stringType().default("2025-11-
|
|
53914
|
-
updated: stringType().default("2025-11-
|
|
53913
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53914
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
53915
53915
|
guardrailConfig: unionType([
|
|
53916
53916
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
53917
53917
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -54348,8 +54348,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54348
54348
|
DataFunction$inboundSchema = objectType({
|
|
54349
54349
|
_id: stringType(),
|
|
54350
54350
|
description: stringType(),
|
|
54351
|
-
created: stringType().default("2025-11-
|
|
54352
|
-
updated: stringType().default("2025-11-
|
|
54351
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54352
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54353
54353
|
guardrail_config: unionType([
|
|
54354
54354
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
54355
54355
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -54403,8 +54403,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54403
54403
|
DataFunction$outboundSchema = objectType({
|
|
54404
54404
|
id: stringType(),
|
|
54405
54405
|
description: stringType(),
|
|
54406
|
-
created: stringType().default("2025-11-
|
|
54407
|
-
updated: stringType().default("2025-11-
|
|
54406
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54407
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54408
54408
|
guardrailConfig: unionType([
|
|
54409
54409
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
54410
54410
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -54496,8 +54496,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54496
54496
|
DataPython$inboundSchema = objectType({
|
|
54497
54497
|
_id: stringType(),
|
|
54498
54498
|
description: stringType(),
|
|
54499
|
-
created: stringType().default("2025-11-
|
|
54500
|
-
updated: stringType().default("2025-11-
|
|
54499
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54500
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54501
54501
|
guardrail_config: unionType([
|
|
54502
54502
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
54503
54503
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -54514,8 +54514,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54514
54514
|
DataPython$outboundSchema = objectType({
|
|
54515
54515
|
id: stringType(),
|
|
54516
54516
|
description: stringType(),
|
|
54517
|
-
created: stringType().default("2025-11-
|
|
54518
|
-
updated: stringType().default("2025-11-
|
|
54517
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54518
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54519
54519
|
guardrailConfig: unionType([
|
|
54520
54520
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
54521
54521
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -54572,8 +54572,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54572
54572
|
DataHTTP$inboundSchema = objectType({
|
|
54573
54573
|
_id: stringType(),
|
|
54574
54574
|
description: stringType(),
|
|
54575
|
-
created: stringType().default("2025-11-
|
|
54576
|
-
updated: stringType().default("2025-11-
|
|
54575
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54576
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54577
54577
|
guardrail_config: unionType([
|
|
54578
54578
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
54579
54579
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -54593,8 +54593,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54593
54593
|
DataHTTP$outboundSchema = objectType({
|
|
54594
54594
|
id: stringType(),
|
|
54595
54595
|
description: stringType(),
|
|
54596
|
-
created: stringType().default("2025-11-
|
|
54597
|
-
updated: stringType().default("2025-11-
|
|
54596
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54597
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54598
54598
|
guardrailConfig: unionType([
|
|
54599
54599
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
54600
54600
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -54652,8 +54652,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54652
54652
|
DataJSON$inboundSchema = objectType({
|
|
54653
54653
|
_id: stringType(),
|
|
54654
54654
|
description: stringType(),
|
|
54655
|
-
created: stringType().default("2025-11-
|
|
54656
|
-
updated: stringType().default("2025-11-
|
|
54655
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54656
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54657
54657
|
guardrail_config: unionType([
|
|
54658
54658
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
54659
54659
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -54670,8 +54670,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54670
54670
|
DataJSON$outboundSchema = objectType({
|
|
54671
54671
|
id: stringType(),
|
|
54672
54672
|
description: stringType(),
|
|
54673
|
-
created: stringType().default("2025-11-
|
|
54674
|
-
updated: stringType().default("2025-11-
|
|
54673
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54674
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54675
54675
|
guardrailConfig: unionType([
|
|
54676
54676
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
54677
54677
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -54726,8 +54726,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54726
54726
|
DataLLM$inboundSchema = objectType({
|
|
54727
54727
|
_id: stringType(),
|
|
54728
54728
|
description: stringType(),
|
|
54729
|
-
created: stringType().default("2025-11-
|
|
54730
|
-
updated: stringType().default("2025-11-
|
|
54729
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54730
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54731
54731
|
guardrail_config: unionType([
|
|
54732
54732
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
54733
54733
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -54745,8 +54745,8 @@ var init_getevals2 = __esm(() => {
|
|
|
54745
54745
|
DataLLM$outboundSchema = objectType({
|
|
54746
54746
|
id: stringType(),
|
|
54747
54747
|
description: stringType(),
|
|
54748
|
-
created: stringType().default("2025-11-
|
|
54749
|
-
updated: stringType().default("2025-11-
|
|
54748
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54749
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
54750
54750
|
guardrailConfig: unionType([
|
|
54751
54751
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
54752
54752
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -57752,7 +57752,7 @@ var init_listbudgets = __esm(() => {
|
|
|
57752
57752
|
is_active: booleanType(),
|
|
57753
57753
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
57754
57754
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57755
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
57755
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.554Z").transform((v2) => new Date(v2))
|
|
57756
57756
|
}).transform((v2) => {
|
|
57757
57757
|
return remap(v2, {
|
|
57758
57758
|
_id: "id",
|
|
@@ -57768,7 +57768,7 @@ var init_listbudgets = __esm(() => {
|
|
|
57768
57768
|
isActive: booleanType(),
|
|
57769
57769
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
57770
57770
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57771
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
57771
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.554Z")).transform((v2) => v2.toISOString())
|
|
57772
57772
|
}).transform((v2) => {
|
|
57773
57773
|
return remap(v2, {
|
|
57774
57774
|
id: "_id",
|
|
@@ -58095,7 +58095,7 @@ var init_listcontacts = __esm(() => {
|
|
|
58095
58095
|
tags: arrayType(stringType()).optional(),
|
|
58096
58096
|
metadata: recordType(anyType()).optional(),
|
|
58097
58097
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58098
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
58098
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2)),
|
|
58099
58099
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
58100
58100
|
}).transform((v2) => {
|
|
58101
58101
|
return remap(v2, {
|
|
@@ -58114,7 +58114,7 @@ var init_listcontacts = __esm(() => {
|
|
|
58114
58114
|
tags: arrayType(stringType()).optional(),
|
|
58115
58115
|
metadata: recordType(anyType()).optional(),
|
|
58116
58116
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58117
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
58117
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString()),
|
|
58118
58118
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
58119
58119
|
}).transform((v2) => {
|
|
58120
58120
|
return remap(v2, {
|
|
@@ -58703,7 +58703,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58703
58703
|
human_review_id: stringType(),
|
|
58704
58704
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
58705
58705
|
reviewed_by_id: stringType(),
|
|
58706
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
58706
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.742Z").transform((v2) => new Date(v2)),
|
|
58707
58707
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
58708
58708
|
values: arrayType(stringType())
|
|
58709
58709
|
}).transform((v2) => {
|
|
@@ -58720,7 +58720,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58720
58720
|
humanReviewId: stringType(),
|
|
58721
58721
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
58722
58722
|
reviewedById: stringType(),
|
|
58723
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
58723
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.742Z")).transform((v2) => v2.toISOString()),
|
|
58724
58724
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
58725
58725
|
values: arrayType(stringType())
|
|
58726
58726
|
}).transform((v2) => {
|
|
@@ -58743,7 +58743,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58743
58743
|
human_review_id: stringType(),
|
|
58744
58744
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
58745
58745
|
reviewed_by_id: stringType(),
|
|
58746
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
58746
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.742Z").transform((v2) => new Date(v2)),
|
|
58747
58747
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
58748
58748
|
value: numberType()
|
|
58749
58749
|
}).transform((v2) => {
|
|
@@ -58760,7 +58760,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58760
58760
|
humanReviewId: stringType(),
|
|
58761
58761
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
58762
58762
|
reviewedById: stringType(),
|
|
58763
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
58763
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.742Z")).transform((v2) => v2.toISOString()),
|
|
58764
58764
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
58765
58765
|
value: numberType()
|
|
58766
58766
|
}).transform((v2) => {
|
|
@@ -58783,7 +58783,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58783
58783
|
human_review_id: stringType(),
|
|
58784
58784
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
58785
58785
|
reviewed_by_id: stringType(),
|
|
58786
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
58786
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.741Z").transform((v2) => new Date(v2)),
|
|
58787
58787
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
58788
58788
|
value: stringType()
|
|
58789
58789
|
}).transform((v2) => {
|
|
@@ -58800,7 +58800,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58800
58800
|
humanReviewId: stringType(),
|
|
58801
58801
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
58802
58802
|
reviewedById: stringType(),
|
|
58803
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
58803
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.741Z")).transform((v2) => v2.toISOString()),
|
|
58804
58804
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
58805
58805
|
value: stringType()
|
|
58806
58806
|
}).transform((v2) => {
|
|
@@ -58843,7 +58843,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58843
58843
|
created_by_id: stringType().optional(),
|
|
58844
58844
|
updated_by_id: stringType().optional(),
|
|
58845
58845
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58846
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
58846
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
58847
58847
|
}).transform((v2) => {
|
|
58848
58848
|
return remap(v2, {
|
|
58849
58849
|
_id: "id",
|
|
@@ -58877,7 +58877,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
58877
58877
|
createdById: stringType().optional(),
|
|
58878
58878
|
updatedById: stringType().optional(),
|
|
58879
58879
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58880
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
58880
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
58881
58881
|
}).transform((v2) => {
|
|
58882
58882
|
return remap(v2, {
|
|
58883
58883
|
id: "_id",
|
|
@@ -58966,7 +58966,7 @@ var init_listdatasets = __esm(() => {
|
|
|
58966
58966
|
created_by_id: stringType().optional(),
|
|
58967
58967
|
updated_by_id: stringType().optional(),
|
|
58968
58968
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58969
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
58969
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
58970
58970
|
}).transform((v2) => {
|
|
58971
58971
|
return remap(v2, {
|
|
58972
58972
|
_id: "id",
|
|
@@ -58986,7 +58986,7 @@ var init_listdatasets = __esm(() => {
|
|
|
58986
58986
|
createdById: stringType().optional(),
|
|
58987
58987
|
updatedById: stringType().optional(),
|
|
58988
58988
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58989
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
58989
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
58990
58990
|
}).transform((v2) => {
|
|
58991
58991
|
return remap(v2, {
|
|
58992
58992
|
id: "_id",
|
|
@@ -59067,7 +59067,7 @@ var init_listdatasources = __esm(() => {
|
|
|
59067
59067
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
59068
59068
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
59069
59069
|
ListDatasourcesData$inboundSchema = objectType({
|
|
59070
|
-
_id: stringType().default("
|
|
59070
|
+
_id: stringType().default("01KAV2V21RX41P11GG51EC52ZN"),
|
|
59071
59071
|
display_name: stringType(),
|
|
59072
59072
|
description: stringType().optional(),
|
|
59073
59073
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -59090,7 +59090,7 @@ var init_listdatasources = __esm(() => {
|
|
|
59090
59090
|
});
|
|
59091
59091
|
});
|
|
59092
59092
|
ListDatasourcesData$outboundSchema = objectType({
|
|
59093
|
-
id: stringType().default("
|
|
59093
|
+
id: stringType().default("01KAV2V21RX41P11GG51EC52ZN"),
|
|
59094
59094
|
displayName: stringType(),
|
|
59095
59095
|
description: stringType().optional(),
|
|
59096
59096
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -61318,7 +61318,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
61318
61318
|
tags: arrayType(stringType()).optional(),
|
|
61319
61319
|
metadata: recordType(anyType()).optional(),
|
|
61320
61320
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61321
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61321
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
61322
61322
|
}).transform((v2) => {
|
|
61323
61323
|
return remap(v2, {
|
|
61324
61324
|
_id: "id",
|
|
@@ -61336,7 +61336,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
61336
61336
|
tags: arrayType(stringType()).optional(),
|
|
61337
61337
|
metadata: recordType(anyType()).optional(),
|
|
61338
61338
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61339
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61339
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
61340
61340
|
}).transform((v2) => {
|
|
61341
61341
|
return remap(v2, {
|
|
61342
61342
|
id: "_id",
|
|
@@ -61895,7 +61895,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61895
61895
|
human_review_id: stringType(),
|
|
61896
61896
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
61897
61897
|
reviewed_by_id: stringType(),
|
|
61898
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61898
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.751Z").transform((v2) => new Date(v2)),
|
|
61899
61899
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
61900
61900
|
values: arrayType(stringType())
|
|
61901
61901
|
}).transform((v2) => {
|
|
@@ -61912,7 +61912,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61912
61912
|
humanReviewId: stringType(),
|
|
61913
61913
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
61914
61914
|
reviewedById: stringType(),
|
|
61915
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61915
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.751Z")).transform((v2) => v2.toISOString()),
|
|
61916
61916
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
61917
61917
|
values: arrayType(stringType())
|
|
61918
61918
|
}).transform((v2) => {
|
|
@@ -61935,7 +61935,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61935
61935
|
human_review_id: stringType(),
|
|
61936
61936
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
61937
61937
|
reviewed_by_id: stringType(),
|
|
61938
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61938
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.750Z").transform((v2) => new Date(v2)),
|
|
61939
61939
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
61940
61940
|
value: numberType()
|
|
61941
61941
|
}).transform((v2) => {
|
|
@@ -61952,7 +61952,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61952
61952
|
humanReviewId: stringType(),
|
|
61953
61953
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
61954
61954
|
reviewedById: stringType(),
|
|
61955
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61955
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.750Z")).transform((v2) => v2.toISOString()),
|
|
61956
61956
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
61957
61957
|
value: numberType()
|
|
61958
61958
|
}).transform((v2) => {
|
|
@@ -61975,7 +61975,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61975
61975
|
human_review_id: stringType(),
|
|
61976
61976
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
61977
61977
|
reviewed_by_id: stringType(),
|
|
61978
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61978
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.749Z").transform((v2) => new Date(v2)),
|
|
61979
61979
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
61980
61980
|
value: stringType()
|
|
61981
61981
|
}).transform((v2) => {
|
|
@@ -61992,7 +61992,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
61992
61992
|
humanReviewId: stringType(),
|
|
61993
61993
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
61994
61994
|
reviewedById: stringType(),
|
|
61995
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61995
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.749Z")).transform((v2) => v2.toISOString()),
|
|
61996
61996
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
61997
61997
|
value: stringType()
|
|
61998
61998
|
}).transform((v2) => {
|
|
@@ -62035,7 +62035,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
62035
62035
|
created_by_id: stringType().optional(),
|
|
62036
62036
|
updated_by_id: stringType().optional(),
|
|
62037
62037
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62038
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62038
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
62039
62039
|
}).transform((v2) => {
|
|
62040
62040
|
return remap(v2, {
|
|
62041
62041
|
_id: "id",
|
|
@@ -62069,7 +62069,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
62069
62069
|
createdById: stringType().optional(),
|
|
62070
62070
|
updatedById: stringType().optional(),
|
|
62071
62071
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62072
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62072
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
62073
62073
|
}).transform((v2) => {
|
|
62074
62074
|
return remap(v2, {
|
|
62075
62075
|
id: "_id",
|
|
@@ -62129,7 +62129,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
62129
62129
|
created_by_id: stringType().optional(),
|
|
62130
62130
|
updated_by_id: stringType().optional(),
|
|
62131
62131
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62132
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62132
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
62133
62133
|
}).transform((v2) => {
|
|
62134
62134
|
return remap(v2, {
|
|
62135
62135
|
_id: "id",
|
|
@@ -62149,7 +62149,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
62149
62149
|
createdById: stringType().optional(),
|
|
62150
62150
|
updatedById: stringType().optional(),
|
|
62151
62151
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62152
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62152
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
62153
62153
|
}).transform((v2) => {
|
|
62154
62154
|
return remap(v2, {
|
|
62155
62155
|
id: "_id",
|
|
@@ -62195,7 +62195,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
62195
62195
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
62196
62196
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
62197
62197
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
62198
|
-
_id: stringType().default("
|
|
62198
|
+
_id: stringType().default("01KAV2V21SMGZ3DM3STW1NQ19R"),
|
|
62199
62199
|
display_name: stringType(),
|
|
62200
62200
|
description: stringType().optional(),
|
|
62201
62201
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -62218,7 +62218,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
62218
62218
|
});
|
|
62219
62219
|
});
|
|
62220
62220
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
62221
|
-
id: stringType().default("
|
|
62221
|
+
id: stringType().default("01KAV2V21SMGZ3DM3STW1NQ19R"),
|
|
62222
62222
|
displayName: stringType(),
|
|
62223
62223
|
description: stringType().optional(),
|
|
62224
62224
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -62570,7 +62570,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62570
62570
|
code: stringType()
|
|
62571
62571
|
});
|
|
62572
62572
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
62573
|
-
_id: stringType().default("
|
|
62573
|
+
_id: stringType().default("tool_01KAV2V1YBR7E3YHGVTZ43TPVE"),
|
|
62574
62574
|
path: stringType(),
|
|
62575
62575
|
key: stringType(),
|
|
62576
62576
|
display_name: stringType().optional(),
|
|
@@ -62598,7 +62598,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62598
62598
|
});
|
|
62599
62599
|
});
|
|
62600
62600
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
62601
|
-
id: stringType().default("
|
|
62601
|
+
id: stringType().default("tool_01KAV2V1YBR7E3YHGVTZ43TPVE"),
|
|
62602
62602
|
path: stringType(),
|
|
62603
62603
|
key: stringType(),
|
|
62604
62604
|
displayName: stringType().optional(),
|
|
@@ -62650,13 +62650,13 @@ var init_retrievetool = __esm(() => {
|
|
|
62650
62650
|
required: arrayType(stringType()).optional()
|
|
62651
62651
|
});
|
|
62652
62652
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
62653
|
-
id: stringType().default("
|
|
62653
|
+
id: stringType().default("01KAV2V1YAP1MEEYZCXR0VER16"),
|
|
62654
62654
|
name: stringType(),
|
|
62655
62655
|
description: stringType().optional(),
|
|
62656
62656
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
62657
62657
|
});
|
|
62658
62658
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
62659
|
-
id: stringType().default("
|
|
62659
|
+
id: stringType().default("01KAV2V1YAP1MEEYZCXR0VER16"),
|
|
62660
62660
|
name: stringType(),
|
|
62661
62661
|
description: stringType().optional(),
|
|
62662
62662
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -62686,7 +62686,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62686
62686
|
});
|
|
62687
62687
|
});
|
|
62688
62688
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
62689
|
-
_id: stringType().default("
|
|
62689
|
+
_id: stringType().default("tool_01KAV2V1Y9WJCJCBHYWGX8TCYW"),
|
|
62690
62690
|
path: stringType(),
|
|
62691
62691
|
key: stringType(),
|
|
62692
62692
|
display_name: stringType().optional(),
|
|
@@ -62713,7 +62713,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62713
62713
|
});
|
|
62714
62714
|
});
|
|
62715
62715
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
62716
|
-
id: stringType().default("
|
|
62716
|
+
id: stringType().default("tool_01KAV2V1Y9WJCJCBHYWGX8TCYW"),
|
|
62717
62717
|
path: stringType(),
|
|
62718
62718
|
key: stringType(),
|
|
62719
62719
|
displayName: stringType().optional(),
|
|
@@ -62802,7 +62802,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62802
62802
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
62803
62803
|
});
|
|
62804
62804
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
62805
|
-
_id: stringType().default("
|
|
62805
|
+
_id: stringType().default("tool_01KAV2V1Y8QZDGW9EXBSD4KHA3"),
|
|
62806
62806
|
path: stringType(),
|
|
62807
62807
|
key: stringType(),
|
|
62808
62808
|
display_name: stringType().optional(),
|
|
@@ -62829,7 +62829,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62829
62829
|
});
|
|
62830
62830
|
});
|
|
62831
62831
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
62832
|
-
id: stringType().default("
|
|
62832
|
+
id: stringType().default("tool_01KAV2V1Y8QZDGW9EXBSD4KHA3"),
|
|
62833
62833
|
path: stringType(),
|
|
62834
62834
|
key: stringType(),
|
|
62835
62835
|
displayName: stringType().optional(),
|
|
@@ -62890,7 +62890,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62890
62890
|
strict: booleanType().optional()
|
|
62891
62891
|
});
|
|
62892
62892
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
62893
|
-
_id: stringType().default("
|
|
62893
|
+
_id: stringType().default("tool_01KAV2V1Y6H2E4GD85884XQPHN"),
|
|
62894
62894
|
path: stringType(),
|
|
62895
62895
|
key: stringType(),
|
|
62896
62896
|
display_name: stringType().optional(),
|
|
@@ -62918,7 +62918,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62918
62918
|
});
|
|
62919
62919
|
});
|
|
62920
62920
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
62921
|
-
id: stringType().default("
|
|
62921
|
+
id: stringType().default("tool_01KAV2V1Y6H2E4GD85884XQPHN"),
|
|
62922
62922
|
path: stringType(),
|
|
62923
62923
|
key: stringType(),
|
|
62924
62924
|
displayName: stringType().optional(),
|
|
@@ -62982,7 +62982,7 @@ var init_retrievetool = __esm(() => {
|
|
|
62982
62982
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
62983
62983
|
});
|
|
62984
62984
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
62985
|
-
_id: stringType().default("
|
|
62985
|
+
_id: stringType().default("tool_01KAV2V1Y5NGGYCJYZX5A789BC"),
|
|
62986
62986
|
path: stringType(),
|
|
62987
62987
|
key: stringType(),
|
|
62988
62988
|
display_name: stringType().optional(),
|
|
@@ -63009,7 +63009,7 @@ var init_retrievetool = __esm(() => {
|
|
|
63009
63009
|
});
|
|
63010
63010
|
});
|
|
63011
63011
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
63012
|
-
id: stringType().default("
|
|
63012
|
+
id: stringType().default("tool_01KAV2V1Y5NGGYCJYZX5A789BC"),
|
|
63013
63013
|
path: stringType(),
|
|
63014
63014
|
key: stringType(),
|
|
63015
63015
|
displayName: stringType().optional(),
|
|
@@ -64001,13 +64001,13 @@ var init_runagent = __esm(() => {
|
|
|
64001
64001
|
required: arrayType(stringType()).optional()
|
|
64002
64002
|
});
|
|
64003
64003
|
Tools$inboundSchema = objectType({
|
|
64004
|
-
id: stringType().default("
|
|
64004
|
+
id: stringType().default("01KAV2V1J473FVWX7JN0JZ30FJ"),
|
|
64005
64005
|
name: stringType(),
|
|
64006
64006
|
description: stringType().optional(),
|
|
64007
64007
|
schema: lazyType(() => Schema$inboundSchema)
|
|
64008
64008
|
});
|
|
64009
64009
|
Tools$outboundSchema = objectType({
|
|
64010
|
-
id: stringType().default("
|
|
64010
|
+
id: stringType().default("01KAV2V1J473FVWX7JN0JZ30FJ"),
|
|
64011
64011
|
name: stringType(),
|
|
64012
64012
|
description: stringType().optional(),
|
|
64013
64013
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -68968,13 +68968,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68968
68968
|
required: arrayType(stringType()).optional()
|
|
68969
68969
|
});
|
|
68970
68970
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
68971
|
-
id: stringType().default("
|
|
68971
|
+
id: stringType().default("01KAV2V1KW0JC3NDS4ZTPG8YC7"),
|
|
68972
68972
|
name: stringType(),
|
|
68973
68973
|
description: stringType().optional(),
|
|
68974
68974
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
68975
68975
|
});
|
|
68976
68976
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
68977
|
-
id: stringType().default("
|
|
68977
|
+
id: stringType().default("01KAV2V1KW0JC3NDS4ZTPG8YC7"),
|
|
68978
68978
|
name: stringType(),
|
|
68979
68979
|
description: stringType().optional(),
|
|
68980
68980
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -73786,7 +73786,7 @@ var init_updatebudget = __esm(() => {
|
|
|
73786
73786
|
is_active: booleanType(),
|
|
73787
73787
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
73788
73788
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
73789
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
73789
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.554Z").transform((v2) => new Date(v2))
|
|
73790
73790
|
}).transform((v2) => {
|
|
73791
73791
|
return remap(v2, {
|
|
73792
73792
|
_id: "id",
|
|
@@ -73804,7 +73804,7 @@ var init_updatebudget = __esm(() => {
|
|
|
73804
73804
|
isActive: booleanType(),
|
|
73805
73805
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
73806
73806
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73807
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73807
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.554Z")).transform((v2) => v2.toISOString())
|
|
73808
73808
|
}).transform((v2) => {
|
|
73809
73809
|
return remap(v2, {
|
|
73810
73810
|
id: "_id",
|
|
@@ -73959,7 +73959,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
73959
73959
|
tags: arrayType(stringType()).optional(),
|
|
73960
73960
|
metadata: recordType(anyType()).optional(),
|
|
73961
73961
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
73962
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
73962
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
73963
73963
|
}).transform((v2) => {
|
|
73964
73964
|
return remap(v2, {
|
|
73965
73965
|
_id: "id",
|
|
@@ -73977,7 +73977,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
73977
73977
|
tags: arrayType(stringType()).optional(),
|
|
73978
73978
|
metadata: recordType(anyType()).optional(),
|
|
73979
73979
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73980
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73980
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
73981
73981
|
}).transform((v2) => {
|
|
73982
73982
|
return remap(v2, {
|
|
73983
73983
|
id: "_id",
|
|
@@ -75053,7 +75053,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75053
75053
|
human_review_id: stringType(),
|
|
75054
75054
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
75055
75055
|
reviewed_by_id: stringType(),
|
|
75056
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
75056
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.800Z").transform((v2) => new Date(v2)),
|
|
75057
75057
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
75058
75058
|
values: arrayType(stringType())
|
|
75059
75059
|
}).transform((v2) => {
|
|
@@ -75070,7 +75070,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75070
75070
|
humanReviewId: stringType(),
|
|
75071
75071
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
75072
75072
|
reviewedById: stringType(),
|
|
75073
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
75073
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.800Z")).transform((v2) => v2.toISOString()),
|
|
75074
75074
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
75075
75075
|
values: arrayType(stringType())
|
|
75076
75076
|
}).transform((v2) => {
|
|
@@ -75093,7 +75093,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75093
75093
|
human_review_id: stringType(),
|
|
75094
75094
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
75095
75095
|
reviewed_by_id: stringType(),
|
|
75096
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
75096
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.800Z").transform((v2) => new Date(v2)),
|
|
75097
75097
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
75098
75098
|
value: numberType()
|
|
75099
75099
|
}).transform((v2) => {
|
|
@@ -75110,7 +75110,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75110
75110
|
humanReviewId: stringType(),
|
|
75111
75111
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
75112
75112
|
reviewedById: stringType(),
|
|
75113
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
75113
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.800Z")).transform((v2) => v2.toISOString()),
|
|
75114
75114
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
75115
75115
|
value: numberType()
|
|
75116
75116
|
}).transform((v2) => {
|
|
@@ -75133,7 +75133,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75133
75133
|
human_review_id: stringType(),
|
|
75134
75134
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
75135
75135
|
reviewed_by_id: stringType(),
|
|
75136
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
75136
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-24T14:03:48.799Z").transform((v2) => new Date(v2)),
|
|
75137
75137
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
75138
75138
|
value: stringType()
|
|
75139
75139
|
}).transform((v2) => {
|
|
@@ -75150,7 +75150,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75150
75150
|
humanReviewId: stringType(),
|
|
75151
75151
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
75152
75152
|
reviewedById: stringType(),
|
|
75153
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
75153
|
+
reviewedAt: dateType().default(() => new Date("2025-11-24T14:03:48.799Z")).transform((v2) => v2.toISOString()),
|
|
75154
75154
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
75155
75155
|
value: stringType()
|
|
75156
75156
|
}).transform((v2) => {
|
|
@@ -75193,7 +75193,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75193
75193
|
created_by_id: stringType().optional(),
|
|
75194
75194
|
updated_by_id: stringType().optional(),
|
|
75195
75195
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
75196
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
75196
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
75197
75197
|
}).transform((v2) => {
|
|
75198
75198
|
return remap(v2, {
|
|
75199
75199
|
_id: "id",
|
|
@@ -75227,7 +75227,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
75227
75227
|
createdById: stringType().optional(),
|
|
75228
75228
|
updatedById: stringType().optional(),
|
|
75229
75229
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
75230
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
75230
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
75231
75231
|
}).transform((v2) => {
|
|
75232
75232
|
return remap(v2, {
|
|
75233
75233
|
id: "_id",
|
|
@@ -75311,7 +75311,7 @@ var init_updatedataset = __esm(() => {
|
|
|
75311
75311
|
created_by_id: stringType().optional(),
|
|
75312
75312
|
updated_by_id: stringType().optional(),
|
|
75313
75313
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
75314
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
75314
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-24T14:03:37.163Z").transform((v2) => new Date(v2))
|
|
75315
75315
|
}).transform((v2) => {
|
|
75316
75316
|
return remap(v2, {
|
|
75317
75317
|
_id: "id",
|
|
@@ -75331,7 +75331,7 @@ var init_updatedataset = __esm(() => {
|
|
|
75331
75331
|
createdById: stringType().optional(),
|
|
75332
75332
|
updatedById: stringType().optional(),
|
|
75333
75333
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
75334
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
75334
|
+
updated: dateType().default(() => new Date("2025-11-24T14:03:37.163Z")).transform((v2) => v2.toISOString())
|
|
75335
75335
|
}).transform((v2) => {
|
|
75336
75336
|
return remap(v2, {
|
|
75337
75337
|
id: "_id",
|
|
@@ -75395,7 +75395,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
75395
75395
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
75396
75396
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
75397
75397
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
75398
|
-
_id: stringType().default("
|
|
75398
|
+
_id: stringType().default("01KAV2V21XAD9ZEDXEKZNXYSGG"),
|
|
75399
75399
|
display_name: stringType(),
|
|
75400
75400
|
description: stringType().optional(),
|
|
75401
75401
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -75418,7 +75418,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
75418
75418
|
});
|
|
75419
75419
|
});
|
|
75420
75420
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
75421
|
-
id: stringType().default("
|
|
75421
|
+
id: stringType().default("01KAV2V21XAD9ZEDXEKZNXYSGG"),
|
|
75422
75422
|
displayName: stringType(),
|
|
75423
75423
|
description: stringType().optional(),
|
|
75424
75424
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -76165,8 +76165,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76165
76165
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
76166
76166
|
_id: stringType(),
|
|
76167
76167
|
description: stringType(),
|
|
76168
|
-
created: stringType().default("2025-11-
|
|
76169
|
-
updated: stringType().default("2025-11-
|
|
76168
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76169
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76170
76170
|
guardrail_config: unionType([
|
|
76171
76171
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
76172
76172
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -76183,8 +76183,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76183
76183
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
76184
76184
|
id: stringType(),
|
|
76185
76185
|
description: stringType(),
|
|
76186
|
-
created: stringType().default("2025-11-
|
|
76187
|
-
updated: stringType().default("2025-11-
|
|
76186
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76187
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76188
76188
|
guardrailConfig: unionType([
|
|
76189
76189
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
76190
76190
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -76241,8 +76241,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76241
76241
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
76242
76242
|
_id: stringType(),
|
|
76243
76243
|
description: stringType(),
|
|
76244
|
-
created: stringType().default("2025-11-
|
|
76245
|
-
updated: stringType().default("2025-11-
|
|
76244
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76245
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76246
76246
|
guardrail_config: unionType([
|
|
76247
76247
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
76248
76248
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -76261,8 +76261,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76261
76261
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
76262
76262
|
id: stringType(),
|
|
76263
76263
|
description: stringType(),
|
|
76264
|
-
created: stringType().default("2025-11-
|
|
76265
|
-
updated: stringType().default("2025-11-
|
|
76264
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76265
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76266
76266
|
guardrailConfig: unionType([
|
|
76267
76267
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
76268
76268
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -76699,8 +76699,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76699
76699
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
76700
76700
|
_id: stringType(),
|
|
76701
76701
|
description: stringType(),
|
|
76702
|
-
created: stringType().default("2025-11-
|
|
76703
|
-
updated: stringType().default("2025-11-
|
|
76702
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76703
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76704
76704
|
guardrail_config: unionType([
|
|
76705
76705
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
76706
76706
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -76754,8 +76754,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76754
76754
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
76755
76755
|
id: stringType(),
|
|
76756
76756
|
description: stringType(),
|
|
76757
|
-
created: stringType().default("2025-11-
|
|
76758
|
-
updated: stringType().default("2025-11-
|
|
76757
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76758
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76759
76759
|
guardrailConfig: unionType([
|
|
76760
76760
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
76761
76761
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -76847,8 +76847,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76847
76847
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
76848
76848
|
_id: stringType(),
|
|
76849
76849
|
description: stringType(),
|
|
76850
|
-
created: stringType().default("2025-11-
|
|
76851
|
-
updated: stringType().default("2025-11-
|
|
76850
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76851
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76852
76852
|
guardrail_config: unionType([
|
|
76853
76853
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
76854
76854
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -76865,8 +76865,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76865
76865
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
76866
76866
|
id: stringType(),
|
|
76867
76867
|
description: stringType(),
|
|
76868
|
-
created: stringType().default("2025-11-
|
|
76869
|
-
updated: stringType().default("2025-11-
|
|
76868
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76869
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76870
76870
|
guardrailConfig: unionType([
|
|
76871
76871
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
76872
76872
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -76923,8 +76923,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76923
76923
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
76924
76924
|
_id: stringType(),
|
|
76925
76925
|
description: stringType(),
|
|
76926
|
-
created: stringType().default("2025-11-
|
|
76927
|
-
updated: stringType().default("2025-11-
|
|
76926
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76927
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76928
76928
|
guardrail_config: unionType([
|
|
76929
76929
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
76930
76930
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -76944,8 +76944,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76944
76944
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
76945
76945
|
id: stringType(),
|
|
76946
76946
|
description: stringType(),
|
|
76947
|
-
created: stringType().default("2025-11-
|
|
76948
|
-
updated: stringType().default("2025-11-
|
|
76947
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76948
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
76949
76949
|
guardrailConfig: unionType([
|
|
76950
76950
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
76951
76951
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -77003,8 +77003,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
77003
77003
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
77004
77004
|
_id: stringType(),
|
|
77005
77005
|
description: stringType(),
|
|
77006
|
-
created: stringType().default("2025-11-
|
|
77007
|
-
updated: stringType().default("2025-11-
|
|
77006
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77007
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77008
77008
|
guardrail_config: unionType([
|
|
77009
77009
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
77010
77010
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -77021,8 +77021,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
77021
77021
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
77022
77022
|
id: stringType(),
|
|
77023
77023
|
description: stringType(),
|
|
77024
|
-
created: stringType().default("2025-11-
|
|
77025
|
-
updated: stringType().default("2025-11-
|
|
77024
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77025
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77026
77026
|
guardrailConfig: unionType([
|
|
77027
77027
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
77028
77028
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -77077,8 +77077,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
77077
77077
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
77078
77078
|
_id: stringType(),
|
|
77079
77079
|
description: stringType(),
|
|
77080
|
-
created: stringType().default("2025-11-
|
|
77081
|
-
updated: stringType().default("2025-11-
|
|
77080
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77081
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77082
77082
|
guardrail_config: unionType([
|
|
77083
77083
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
77084
77084
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -77096,8 +77096,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
77096
77096
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
77097
77097
|
id: stringType(),
|
|
77098
77098
|
description: stringType(),
|
|
77099
|
-
created: stringType().default("2025-11-
|
|
77100
|
-
updated: stringType().default("2025-11-
|
|
77099
|
+
created: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77100
|
+
updated: stringType().default("2025-11-24T14:03:39.221Z"),
|
|
77101
77101
|
guardrailConfig: unionType([
|
|
77102
77102
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
77103
77103
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -79865,13 +79865,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79865
79865
|
required: arrayType(stringType()).optional()
|
|
79866
79866
|
});
|
|
79867
79867
|
RequestBodyTools$inboundSchema = objectType({
|
|
79868
|
-
id: stringType().default("
|
|
79868
|
+
id: stringType().default("01KAV2V1XN8R93ZMG39Z692DYM"),
|
|
79869
79869
|
name: stringType(),
|
|
79870
79870
|
description: stringType().optional(),
|
|
79871
79871
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
79872
79872
|
});
|
|
79873
79873
|
RequestBodyTools$outboundSchema = objectType({
|
|
79874
|
-
id: stringType().default("
|
|
79874
|
+
id: stringType().default("01KAV2V1XN8R93ZMG39Z692DYM"),
|
|
79875
79875
|
name: stringType(),
|
|
79876
79876
|
description: stringType().optional(),
|
|
79877
79877
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -80219,7 +80219,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80219
80219
|
code: stringType()
|
|
80220
80220
|
});
|
|
80221
80221
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
80222
|
-
_id: stringType().default("
|
|
80222
|
+
_id: stringType().default("tool_01KAV2V1X95T1HFDTJ43V4TFY3"),
|
|
80223
80223
|
path: stringType(),
|
|
80224
80224
|
key: stringType(),
|
|
80225
80225
|
display_name: stringType().optional(),
|
|
@@ -80247,7 +80247,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80247
80247
|
});
|
|
80248
80248
|
});
|
|
80249
80249
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
80250
|
-
id: stringType().default("
|
|
80250
|
+
id: stringType().default("tool_01KAV2V1X95T1HFDTJ43V4TFY3"),
|
|
80251
80251
|
path: stringType(),
|
|
80252
80252
|
key: stringType(),
|
|
80253
80253
|
displayName: stringType().optional(),
|
|
@@ -80299,13 +80299,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
80299
80299
|
required: arrayType(stringType()).optional()
|
|
80300
80300
|
});
|
|
80301
80301
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
80302
|
-
id: stringType().default("
|
|
80302
|
+
id: stringType().default("01KAV2V1X8E3P9BC2D6HECNJHM"),
|
|
80303
80303
|
name: stringType(),
|
|
80304
80304
|
description: stringType().optional(),
|
|
80305
80305
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
80306
80306
|
});
|
|
80307
80307
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
80308
|
-
id: stringType().default("
|
|
80308
|
+
id: stringType().default("01KAV2V1X8E3P9BC2D6HECNJHM"),
|
|
80309
80309
|
name: stringType(),
|
|
80310
80310
|
description: stringType().optional(),
|
|
80311
80311
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -80335,7 +80335,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80335
80335
|
});
|
|
80336
80336
|
});
|
|
80337
80337
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
80338
|
-
_id: stringType().default("
|
|
80338
|
+
_id: stringType().default("tool_01KAV2V1X7YE3KKGZKZATYBCC5"),
|
|
80339
80339
|
path: stringType(),
|
|
80340
80340
|
key: stringType(),
|
|
80341
80341
|
display_name: stringType().optional(),
|
|
@@ -80362,7 +80362,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80362
80362
|
});
|
|
80363
80363
|
});
|
|
80364
80364
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
80365
|
-
id: stringType().default("
|
|
80365
|
+
id: stringType().default("tool_01KAV2V1X7YE3KKGZKZATYBCC5"),
|
|
80366
80366
|
path: stringType(),
|
|
80367
80367
|
key: stringType(),
|
|
80368
80368
|
displayName: stringType().optional(),
|
|
@@ -80451,7 +80451,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80451
80451
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
80452
80452
|
});
|
|
80453
80453
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
80454
|
-
_id: stringType().default("
|
|
80454
|
+
_id: stringType().default("tool_01KAV2V1X4RXZNH0Q8WSNT6B66"),
|
|
80455
80455
|
path: stringType(),
|
|
80456
80456
|
key: stringType(),
|
|
80457
80457
|
display_name: stringType().optional(),
|
|
@@ -80478,7 +80478,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80478
80478
|
});
|
|
80479
80479
|
});
|
|
80480
80480
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
80481
|
-
id: stringType().default("
|
|
80481
|
+
id: stringType().default("tool_01KAV2V1X4RXZNH0Q8WSNT6B66"),
|
|
80482
80482
|
path: stringType(),
|
|
80483
80483
|
key: stringType(),
|
|
80484
80484
|
displayName: stringType().optional(),
|
|
@@ -80539,7 +80539,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80539
80539
|
strict: booleanType().optional()
|
|
80540
80540
|
});
|
|
80541
80541
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
80542
|
-
_id: stringType().default("
|
|
80542
|
+
_id: stringType().default("tool_01KAV2V1X287VD8WYZ89E8XRNA"),
|
|
80543
80543
|
path: stringType(),
|
|
80544
80544
|
key: stringType(),
|
|
80545
80545
|
display_name: stringType().optional(),
|
|
@@ -80567,7 +80567,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80567
80567
|
});
|
|
80568
80568
|
});
|
|
80569
80569
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
80570
|
-
id: stringType().default("
|
|
80570
|
+
id: stringType().default("tool_01KAV2V1X287VD8WYZ89E8XRNA"),
|
|
80571
80571
|
path: stringType(),
|
|
80572
80572
|
key: stringType(),
|
|
80573
80573
|
displayName: stringType().optional(),
|
|
@@ -80631,7 +80631,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80631
80631
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
80632
80632
|
});
|
|
80633
80633
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
80634
|
-
_id: stringType().default("
|
|
80634
|
+
_id: stringType().default("tool_01KAV2V1WZHJ3EB7YFVWDQ22P7"),
|
|
80635
80635
|
path: stringType(),
|
|
80636
80636
|
key: stringType(),
|
|
80637
80637
|
display_name: stringType().optional(),
|
|
@@ -80658,7 +80658,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
80658
80658
|
});
|
|
80659
80659
|
});
|
|
80660
80660
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
80661
|
-
id: stringType().default("
|
|
80661
|
+
id: stringType().default("tool_01KAV2V1WZHJ3EB7YFVWDQ22P7"),
|
|
80662
80662
|
path: stringType(),
|
|
80663
80663
|
key: stringType(),
|
|
80664
80664
|
displayName: stringType().optional(),
|
|
@@ -92498,7 +92498,7 @@ Updates a tool in the workspace.`,
|
|
|
92498
92498
|
function createMCPServer(deps) {
|
|
92499
92499
|
const server = new McpServer({
|
|
92500
92500
|
name: "Orq",
|
|
92501
|
-
version: "4.0.
|
|
92501
|
+
version: "4.0.6"
|
|
92502
92502
|
});
|
|
92503
92503
|
const client = new OrqCore({
|
|
92504
92504
|
apiKey: deps.apiKey,
|
|
@@ -93906,7 +93906,7 @@ var routes = rn({
|
|
|
93906
93906
|
var app = Ve(routes, {
|
|
93907
93907
|
name: "mcp",
|
|
93908
93908
|
versionInfo: {
|
|
93909
|
-
currentVersion: "4.0.
|
|
93909
|
+
currentVersion: "4.0.6"
|
|
93910
93910
|
}
|
|
93911
93911
|
});
|
|
93912
93912
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -93914,5 +93914,5 @@ export {
|
|
|
93914
93914
|
app
|
|
93915
93915
|
};
|
|
93916
93916
|
|
|
93917
|
-
//# debugId=
|
|
93917
|
+
//# debugId=3B05B399CB2716E064756E2164756E21
|
|
93918
93918
|
//# sourceMappingURL=mcp-server.js.map
|