@orq-ai/node 4.1.10 → 4.1.11
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 +222 -222
- package/bin/mcp-server.js.map +40 -40
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/sdks.js +2 -2
- package/lib/sdks.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- 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/retrieveconversation.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/updatecontact.js +2 -2
- package/models/operations/updateconversation.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/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 +2 -11
- package/packages/orq-rc/src/funcs/{evaluatorsGetV2EvaluatorsIdVersionsVersionId.ts → conversationsCreateConversationResponse.ts} +34 -38
- package/packages/orq-rc/src/funcs/conversationsList.ts +6 -1
- package/packages/orq-rc/src/funcs/conversationsRetrieve.ts +5 -4
- package/packages/orq-rc/src/funcs/memoryStoresCreateDocument.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresDeleteDocument.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresDeleteMemory.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresListDocuments.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveDocument.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveMemory.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresUpdateDocument.ts +6 -5
- package/packages/orq-rc/src/funcs/memoryStoresUpdateMemory.ts +6 -5
- package/packages/orq-rc/src/funcs/toolsCreate.ts +2 -11
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/lib/sdks.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/conversationsCreateConversationResponse.ts +39 -0
- package/packages/orq-rc/src/mcp-server/tools/conversationsList.ts +2 -0
- package/packages/orq-rc/src/models/components/agentinactivestreamingevent.ts +16 -1
- package/packages/orq-rc/src/models/components/agentmessagecreatedstreamingevent.ts +16 -1
- package/packages/orq-rc/src/models/components/agentresponsemessage.ts +16 -1
- package/packages/orq-rc/src/models/components/agentstartedstreamingevent.ts +16 -1
- package/packages/orq-rc/src/models/components/agentthoughtstreamingevent.ts +16 -1
- package/packages/orq-rc/src/models/components/conversationresponse.ts +26 -26
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +226 -0
- package/packages/orq-rc/src/models/components/errorpart.ts +58 -0
- package/packages/orq-rc/src/models/components/index.ts +4 -0
- package/packages/orq-rc/src/models/components/messageresponse.ts +217 -0
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/publiccontact.ts +1 -1
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/components/responsestartedevent.ts +14 -0
- package/packages/orq-rc/src/models/components/toolexecutionfailedstreamingevent.ts +1 -0
- package/packages/orq-rc/src/models/components/toolexecutionfinishedstreamingevent.ts +1 -0
- package/packages/orq-rc/src/models/components/toolexecutionstartedstreamingevent.ts +1 -0
- package/packages/orq-rc/src/models/components/usermessagerequest.ts +194 -0
- package/packages/orq-rc/src/models/errors/index.ts +0 -2
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +40 -0
- package/packages/orq-rc/src/models/operations/createagentresponserequest.ts +122 -5
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +110 -7
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +59 -36
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +794 -0
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +48 -40
- 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/createimage.ts +105 -5
- package/packages/orq-rc/src/models/operations/creatememory.ts +3 -15
- package/packages/orq-rc/src/models/operations/creatememorydocument.ts +7 -7
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/deletememory.ts +6 -6
- package/packages/orq-rc/src/models/operations/deletememorydocument.ts +6 -6
- 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/generateconversationname.ts +27 -27
- package/packages/orq-rc/src/models/operations/getallmemories.ts +3 -8
- package/packages/orq-rc/src/models/operations/getallmemorydocuments.ts +6 -6
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getv2evaluatorsidversions.ts +4 -4
- package/packages/orq-rc/src/models/operations/getv2toolstoolidversions.ts +4 -4
- package/packages/orq-rc/src/models/operations/getv2toolstoolidversionsversionid.ts +4 -4
- package/packages/orq-rc/src/models/operations/index.ts +1 -1
- package/packages/orq-rc/src/models/operations/invokeagent.ts +128 -5
- package/packages/orq-rc/src/models/operations/listagents.ts +20 -0
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listconversations.ts +10 -3
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +53 -53
- 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/parse.ts +157 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +22 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveconversation.ts +0 -197
- 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/retrievememory.ts +9 -14
- package/packages/orq-rc/src/models/operations/retrievememorydocument.ts +6 -6
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +130 -7
- package/packages/orq-rc/src/models/operations/streamagent.ts +120 -5
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +122 -7
- package/packages/orq-rc/src/models/operations/updateagent.ts +20 -0
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +39 -33
- 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/updatememory.ts +9 -32
- package/packages/orq-rc/src/models/operations/updatememorydocument.ts +6 -6
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/conversations.ts +23 -1
- package/packages/orq-rc/src/sdk/evaluators.ts +0 -18
- package/packages/orq-rc/src/sdk/internal.ts +28 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- 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/retrieveconversation.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/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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/mcp-server/tools/evaluatorsGetV2EvaluatorsIdVersionsVersionId.ts +0 -40
- package/packages/orq-rc/src/models/errors/createagentrequest.ts +0 -67
- package/packages/orq-rc/src/models/errors/getv2evaluatorsidversionsversionid.ts +0 -69
- package/packages/orq-rc/src/models/operations/getv2evaluatorsidversionsversionid.ts +0 -193
package/bin/mcp-server.js
CHANGED
|
@@ -52449,9 +52449,9 @@ var init_config = __esm(() => {
|
|
|
52449
52449
|
SDK_METADATA = {
|
|
52450
52450
|
language: "typescript",
|
|
52451
52451
|
openapiDocVersion: "2.0",
|
|
52452
|
-
sdkVersion: "4.1.
|
|
52453
|
-
genVersion: "2.
|
|
52454
|
-
userAgent: "speakeasy-sdk/typescript 4.1.
|
|
52452
|
+
sdkVersion: "4.1.11",
|
|
52453
|
+
genVersion: "2.794.1",
|
|
52454
|
+
userAgent: "speakeasy-sdk/typescript 4.1.11 2.794.1 2.0 @orq-ai/node"
|
|
52455
52455
|
};
|
|
52456
52456
|
});
|
|
52457
52457
|
|
|
@@ -53282,8 +53282,8 @@ var init_sdks = __esm(() => {
|
|
|
53282
53282
|
gt = typeof globalThis === "undefined" ? null : globalThis;
|
|
53283
53283
|
webWorkerLike = typeof gt === "object" && gt != null && "importScripts" in gt && typeof gt["importScripts"] === "function";
|
|
53284
53284
|
isBrowserLike = webWorkerLike || typeof navigator !== "undefined" && "serviceWorker" in navigator || typeof window === "object" && typeof window.document !== "undefined";
|
|
53285
|
-
jsonLikeContentTypeRE =
|
|
53286
|
-
jsonlLikeContentTypeRE =
|
|
53285
|
+
jsonLikeContentTypeRE = /^(application|text)\/([^+]+\+)*json.*/;
|
|
53286
|
+
jsonlLikeContentTypeRE = /^(application|text)\/([^+]+\+)*(jsonl|x-ndjson)\b.*/;
|
|
53287
53287
|
});
|
|
53288
53288
|
|
|
53289
53289
|
// src/core.ts
|
|
@@ -56338,7 +56338,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
56338
56338
|
entityId: stringType().optional()
|
|
56339
56339
|
});
|
|
56340
56340
|
ConversationResponse$inboundSchema = objectType({
|
|
56341
|
-
_id: stringType().default("
|
|
56341
|
+
_id: stringType().default("conv_01kevg1zfdk5dedvj3tvkwbrpc"),
|
|
56342
56342
|
entityId: stringType(),
|
|
56343
56343
|
kind: ConversationResponseKind$inboundSchema,
|
|
56344
56344
|
displayName: stringType(),
|
|
@@ -56353,7 +56353,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
56353
56353
|
});
|
|
56354
56354
|
});
|
|
56355
56355
|
ConversationResponse$outboundSchema = objectType({
|
|
56356
|
-
id: stringType().default("
|
|
56356
|
+
id: stringType().default("conv_01kevg1zfdk5dedvj3tvkwbrpc"),
|
|
56357
56357
|
entityId: stringType(),
|
|
56358
56358
|
kind: ConversationResponseKind$outboundSchema,
|
|
56359
56359
|
displayName: stringType(),
|
|
@@ -57847,7 +57847,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57847
57847
|
init_esm();
|
|
57848
57848
|
init_primitives();
|
|
57849
57849
|
ReasoningPart$inboundSchema = objectType({
|
|
57850
|
-
_id: stringType().default("
|
|
57850
|
+
_id: stringType().default("reasoning_01kevg1z5yt9tbhv50r9yzaj7z"),
|
|
57851
57851
|
metadata: recordType(anyType()).optional(),
|
|
57852
57852
|
kind: literalType("reasoning"),
|
|
57853
57853
|
reasoning: stringType(),
|
|
@@ -57858,7 +57858,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57858
57858
|
});
|
|
57859
57859
|
});
|
|
57860
57860
|
ReasoningPart$outboundSchema = objectType({
|
|
57861
|
-
id: stringType().default("
|
|
57861
|
+
id: stringType().default("reasoning_01kevg1z5yt9tbhv50r9yzaj7z"),
|
|
57862
57862
|
metadata: recordType(anyType()).optional(),
|
|
57863
57863
|
kind: literalType("reasoning"),
|
|
57864
57864
|
reasoning: stringType(),
|
|
@@ -57928,7 +57928,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57928
57928
|
PartKind$inboundSchema = nativeEnumType(PartKind);
|
|
57929
57929
|
PartKind$outboundSchema = PartKind$inboundSchema;
|
|
57930
57930
|
PartReasoningPart$inboundSchema = objectType({
|
|
57931
|
-
_id: stringType().default("
|
|
57931
|
+
_id: stringType().default("reasoning_01kevg1z6fep5r9d5zg83y4vm1"),
|
|
57932
57932
|
metadata: recordType(anyType()).optional(),
|
|
57933
57933
|
kind: PartKind$inboundSchema,
|
|
57934
57934
|
reasoning: stringType(),
|
|
@@ -57939,7 +57939,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57939
57939
|
});
|
|
57940
57940
|
});
|
|
57941
57941
|
PartReasoningPart$outboundSchema = objectType({
|
|
57942
|
-
id: stringType().default("
|
|
57942
|
+
id: stringType().default("reasoning_01kevg1z6fep5r9d5zg83y4vm1"),
|
|
57943
57943
|
metadata: recordType(anyType()).optional(),
|
|
57944
57944
|
kind: PartKind$outboundSchema,
|
|
57945
57945
|
reasoning: stringType(),
|
|
@@ -63305,7 +63305,7 @@ var init_createcontact = __esm(() => {
|
|
|
63305
63305
|
tags: arrayType(stringType()).optional(),
|
|
63306
63306
|
metadata: recordType(anyType()).optional(),
|
|
63307
63307
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63308
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63308
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
63309
63309
|
}).transform((v2) => {
|
|
63310
63310
|
return remap(v2, {
|
|
63311
63311
|
_id: "id",
|
|
@@ -63325,7 +63325,7 @@ var init_createcontact = __esm(() => {
|
|
|
63325
63325
|
tags: arrayType(stringType()).optional(),
|
|
63326
63326
|
metadata: recordType(anyType()).optional(),
|
|
63327
63327
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63328
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63328
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
63329
63329
|
}).transform((v2) => {
|
|
63330
63330
|
return remap(v2, {
|
|
63331
63331
|
id: "_id",
|
|
@@ -63372,7 +63372,7 @@ var init_createconversation = __esm(() => {
|
|
|
63372
63372
|
entityId: stringType().optional()
|
|
63373
63373
|
});
|
|
63374
63374
|
CreateConversationResponseBody$inboundSchema = objectType({
|
|
63375
|
-
_id: stringType().default("
|
|
63375
|
+
_id: stringType().default("conv_01kevg1zfemsckx86808jvvev7"),
|
|
63376
63376
|
entityId: stringType(),
|
|
63377
63377
|
kind: CreateConversationKind$inboundSchema,
|
|
63378
63378
|
displayName: stringType(),
|
|
@@ -63387,7 +63387,7 @@ var init_createconversation = __esm(() => {
|
|
|
63387
63387
|
});
|
|
63388
63388
|
});
|
|
63389
63389
|
CreateConversationResponseBody$outboundSchema = objectType({
|
|
63390
|
-
id: stringType().default("
|
|
63390
|
+
id: stringType().default("conv_01kevg1zfemsckx86808jvvev7"),
|
|
63391
63391
|
entityId: stringType(),
|
|
63392
63392
|
kind: CreateConversationKind$outboundSchema,
|
|
63393
63393
|
displayName: stringType(),
|
|
@@ -63451,7 +63451,7 @@ var init_createdataset = __esm(() => {
|
|
|
63451
63451
|
created_by_id: stringType().optional(),
|
|
63452
63452
|
updated_by_id: stringType().optional(),
|
|
63453
63453
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63454
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63454
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
63455
63455
|
}).transform((v2) => {
|
|
63456
63456
|
return remap(v2, {
|
|
63457
63457
|
_id: "id",
|
|
@@ -63471,7 +63471,7 @@ var init_createdataset = __esm(() => {
|
|
|
63471
63471
|
createdById: stringType().optional(),
|
|
63472
63472
|
updatedById: stringType().optional(),
|
|
63473
63473
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63474
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63474
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
63475
63475
|
}).transform((v2) => {
|
|
63476
63476
|
return remap(v2, {
|
|
63477
63477
|
id: "_id",
|
|
@@ -64207,7 +64207,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64207
64207
|
human_review_id: stringType(),
|
|
64208
64208
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
64209
64209
|
reviewed_by_id: stringType(),
|
|
64210
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64210
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.714Z").transform((v2) => new Date(v2)),
|
|
64211
64211
|
type: literalType("string_array"),
|
|
64212
64212
|
values: arrayType(stringType())
|
|
64213
64213
|
}).transform((v2) => {
|
|
@@ -64224,7 +64224,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64224
64224
|
humanReviewId: stringType(),
|
|
64225
64225
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
64226
64226
|
reviewedById: stringType(),
|
|
64227
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64227
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.714Z")).transform((v2) => v2.toISOString()),
|
|
64228
64228
|
type: literalType("string_array"),
|
|
64229
64229
|
values: arrayType(stringType())
|
|
64230
64230
|
}).transform((v2) => {
|
|
@@ -64245,7 +64245,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64245
64245
|
human_review_id: stringType(),
|
|
64246
64246
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
64247
64247
|
reviewed_by_id: stringType(),
|
|
64248
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64248
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.714Z").transform((v2) => new Date(v2)),
|
|
64249
64249
|
type: literalType("number"),
|
|
64250
64250
|
value: numberType()
|
|
64251
64251
|
}).transform((v2) => {
|
|
@@ -64262,7 +64262,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64262
64262
|
humanReviewId: stringType(),
|
|
64263
64263
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
64264
64264
|
reviewedById: stringType(),
|
|
64265
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64265
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.714Z")).transform((v2) => v2.toISOString()),
|
|
64266
64266
|
type: literalType("number"),
|
|
64267
64267
|
value: numberType()
|
|
64268
64268
|
}).transform((v2) => {
|
|
@@ -64283,7 +64283,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64283
64283
|
human_review_id: stringType(),
|
|
64284
64284
|
source: Source$inboundSchema.default("orq"),
|
|
64285
64285
|
reviewed_by_id: stringType(),
|
|
64286
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64286
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.713Z").transform((v2) => new Date(v2)),
|
|
64287
64287
|
type: literalType("string"),
|
|
64288
64288
|
value: stringType()
|
|
64289
64289
|
}).transform((v2) => {
|
|
@@ -64300,7 +64300,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64300
64300
|
humanReviewId: stringType(),
|
|
64301
64301
|
source: Source$outboundSchema.default("orq"),
|
|
64302
64302
|
reviewedById: stringType(),
|
|
64303
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64303
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.713Z")).transform((v2) => v2.toISOString()),
|
|
64304
64304
|
type: literalType("string"),
|
|
64305
64305
|
value: stringType()
|
|
64306
64306
|
}).transform((v2) => {
|
|
@@ -64343,7 +64343,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64343
64343
|
created_by_id: stringType().optional(),
|
|
64344
64344
|
updated_by_id: stringType().optional(),
|
|
64345
64345
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64346
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
64346
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
64347
64347
|
}).transform((v2) => {
|
|
64348
64348
|
return remap(v2, {
|
|
64349
64349
|
_id: "id",
|
|
@@ -64377,7 +64377,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64377
64377
|
createdById: stringType().optional(),
|
|
64378
64378
|
updatedById: stringType().optional(),
|
|
64379
64379
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64380
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
64380
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
64381
64381
|
}).transform((v2) => {
|
|
64382
64382
|
return remap(v2, {
|
|
64383
64383
|
id: "_id",
|
|
@@ -64546,7 +64546,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64546
64546
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
64547
64547
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
64548
64548
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
64549
|
-
_id: stringType().default("
|
|
64549
|
+
_id: stringType().default("01KEVG1ZWHGH0DBEREFQF7NWBD"),
|
|
64550
64550
|
display_name: stringType(),
|
|
64551
64551
|
description: stringType().optional(),
|
|
64552
64552
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -64569,7 +64569,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64569
64569
|
});
|
|
64570
64570
|
});
|
|
64571
64571
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
64572
|
-
id: stringType().default("
|
|
64572
|
+
id: stringType().default("01KEVG1ZWHGH0DBEREFQF7NWBD"),
|
|
64573
64573
|
displayName: stringType(),
|
|
64574
64574
|
description: stringType().optional(),
|
|
64575
64575
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -65156,8 +65156,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65156
65156
|
Typescript$inboundSchema = objectType({
|
|
65157
65157
|
_id: stringType(),
|
|
65158
65158
|
description: stringType(),
|
|
65159
|
-
created: stringType().default("2026-01-
|
|
65160
|
-
updated: stringType().default("2026-01-
|
|
65159
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65160
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65161
65161
|
guardrail_config: unionType([
|
|
65162
65162
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
65163
65163
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -65174,8 +65174,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65174
65174
|
Typescript$outboundSchema = objectType({
|
|
65175
65175
|
id: stringType(),
|
|
65176
65176
|
description: stringType(),
|
|
65177
|
-
created: stringType().default("2026-01-
|
|
65178
|
-
updated: stringType().default("2026-01-
|
|
65177
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65178
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65179
65179
|
guardrailConfig: unionType([
|
|
65180
65180
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
65181
65181
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -65246,8 +65246,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65246
65246
|
Ragas$inboundSchema = objectType({
|
|
65247
65247
|
_id: stringType(),
|
|
65248
65248
|
description: stringType(),
|
|
65249
|
-
created: stringType().default("2026-01-
|
|
65250
|
-
updated: stringType().default("2026-01-
|
|
65249
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65250
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65251
65251
|
guardrail_config: unionType([
|
|
65252
65252
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
65253
65253
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -65266,8 +65266,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65266
65266
|
Ragas$outboundSchema = objectType({
|
|
65267
65267
|
id: stringType(),
|
|
65268
65268
|
description: stringType(),
|
|
65269
|
-
created: stringType().default("2026-01-
|
|
65270
|
-
updated: stringType().default("2026-01-
|
|
65269
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65270
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65271
65271
|
guardrailConfig: unionType([
|
|
65272
65272
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
65273
65273
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -65622,8 +65622,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65622
65622
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
65623
65623
|
_id: stringType(),
|
|
65624
65624
|
description: stringType(),
|
|
65625
|
-
created: stringType().default("2026-01-
|
|
65626
|
-
updated: stringType().default("2026-01-
|
|
65625
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65626
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65627
65627
|
guardrail_config: unionType([
|
|
65628
65628
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
65629
65629
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -65674,8 +65674,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65674
65674
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
65675
65675
|
id: stringType(),
|
|
65676
65676
|
description: stringType(),
|
|
65677
|
-
created: stringType().default("2026-01-
|
|
65678
|
-
updated: stringType().default("2026-01-
|
|
65677
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65678
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65679
65679
|
guardrailConfig: unionType([
|
|
65680
65680
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
65681
65681
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -65778,8 +65778,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65778
65778
|
ResponseBodyPython$inboundSchema = objectType({
|
|
65779
65779
|
_id: stringType(),
|
|
65780
65780
|
description: stringType(),
|
|
65781
|
-
created: stringType().default("2026-01-
|
|
65782
|
-
updated: stringType().default("2026-01-
|
|
65781
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65782
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65783
65783
|
guardrail_config: unionType([
|
|
65784
65784
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
65785
65785
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -65796,8 +65796,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65796
65796
|
ResponseBodyPython$outboundSchema = objectType({
|
|
65797
65797
|
id: stringType(),
|
|
65798
65798
|
description: stringType(),
|
|
65799
|
-
created: stringType().default("2026-01-
|
|
65800
|
-
updated: stringType().default("2026-01-
|
|
65799
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65800
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65801
65801
|
guardrailConfig: unionType([
|
|
65802
65802
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
65803
65803
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -65868,8 +65868,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65868
65868
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
65869
65869
|
_id: stringType(),
|
|
65870
65870
|
description: stringType(),
|
|
65871
|
-
created: stringType().default("2026-01-
|
|
65872
|
-
updated: stringType().default("2026-01-
|
|
65871
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65872
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65873
65873
|
guardrail_config: unionType([
|
|
65874
65874
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
65875
65875
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -65889,8 +65889,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65889
65889
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
65890
65890
|
id: stringType(),
|
|
65891
65891
|
description: stringType(),
|
|
65892
|
-
created: stringType().default("2026-01-
|
|
65893
|
-
updated: stringType().default("2026-01-
|
|
65892
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65893
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65894
65894
|
guardrailConfig: unionType([
|
|
65895
65895
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
65896
65896
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -65962,8 +65962,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65962
65962
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
65963
65963
|
_id: stringType(),
|
|
65964
65964
|
description: stringType(),
|
|
65965
|
-
created: stringType().default("2026-01-
|
|
65966
|
-
updated: stringType().default("2026-01-
|
|
65965
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65966
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65967
65967
|
guardrail_config: unionType([
|
|
65968
65968
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
65969
65969
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -65980,8 +65980,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65980
65980
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
65981
65981
|
id: stringType(),
|
|
65982
65982
|
description: stringType(),
|
|
65983
|
-
created: stringType().default("2026-01-
|
|
65984
|
-
updated: stringType().default("2026-01-
|
|
65983
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65984
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
65985
65985
|
guardrailConfig: unionType([
|
|
65986
65986
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
65987
65987
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -66050,8 +66050,8 @@ var init_createeval2 = __esm(() => {
|
|
|
66050
66050
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
66051
66051
|
_id: stringType(),
|
|
66052
66052
|
description: stringType(),
|
|
66053
|
-
created: stringType().default("2026-01-
|
|
66054
|
-
updated: stringType().default("2026-01-
|
|
66053
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
66054
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
66055
66055
|
guardrail_config: unionType([
|
|
66056
66056
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
66057
66057
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -66069,8 +66069,8 @@ var init_createeval2 = __esm(() => {
|
|
|
66069
66069
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
66070
66070
|
id: stringType(),
|
|
66071
66071
|
description: stringType(),
|
|
66072
|
-
created: stringType().default("2026-01-
|
|
66073
|
-
updated: stringType().default("2026-01-
|
|
66072
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
66073
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
66074
66074
|
guardrailConfig: unionType([
|
|
66075
66075
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
66076
66076
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -68937,7 +68937,7 @@ var init_createtool = __esm(() => {
|
|
|
68937
68937
|
code: stringType()
|
|
68938
68938
|
});
|
|
68939
68939
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
68940
|
-
_id: stringType().default("
|
|
68940
|
+
_id: stringType().default("tool_01KEVG1ZPVA1CP8Z8N9F8G3S8Z"),
|
|
68941
68941
|
path: stringType(),
|
|
68942
68942
|
key: stringType(),
|
|
68943
68943
|
display_name: stringType().optional(),
|
|
@@ -68965,7 +68965,7 @@ var init_createtool = __esm(() => {
|
|
|
68965
68965
|
});
|
|
68966
68966
|
});
|
|
68967
68967
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
68968
|
-
id: stringType().default("
|
|
68968
|
+
id: stringType().default("tool_01KEVG1ZPVA1CP8Z8N9F8G3S8Z"),
|
|
68969
68969
|
path: stringType(),
|
|
68970
68970
|
key: stringType(),
|
|
68971
68971
|
displayName: stringType().optional(),
|
|
@@ -69015,13 +69015,13 @@ var init_createtool = __esm(() => {
|
|
|
69015
69015
|
required: arrayType(stringType()).optional()
|
|
69016
69016
|
});
|
|
69017
69017
|
ResponseBodyTools$inboundSchema = objectType({
|
|
69018
|
-
id: stringType().default("
|
|
69018
|
+
id: stringType().default("01KEVG1ZPTJXJE1458ZAP6B3SB"),
|
|
69019
69019
|
name: stringType(),
|
|
69020
69020
|
description: stringType().optional(),
|
|
69021
69021
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
69022
69022
|
});
|
|
69023
69023
|
ResponseBodyTools$outboundSchema = objectType({
|
|
69024
|
-
id: stringType().default("
|
|
69024
|
+
id: stringType().default("01KEVG1ZPTJXJE1458ZAP6B3SB"),
|
|
69025
69025
|
name: stringType(),
|
|
69026
69026
|
description: stringType().optional(),
|
|
69027
69027
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -69051,7 +69051,7 @@ var init_createtool = __esm(() => {
|
|
|
69051
69051
|
});
|
|
69052
69052
|
});
|
|
69053
69053
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
69054
|
-
_id: stringType().default("
|
|
69054
|
+
_id: stringType().default("tool_01KEVG1ZPRHKQD92GGQEQ15VEC"),
|
|
69055
69055
|
path: stringType(),
|
|
69056
69056
|
key: stringType(),
|
|
69057
69057
|
display_name: stringType().optional(),
|
|
@@ -69078,7 +69078,7 @@ var init_createtool = __esm(() => {
|
|
|
69078
69078
|
});
|
|
69079
69079
|
});
|
|
69080
69080
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
69081
|
-
id: stringType().default("
|
|
69081
|
+
id: stringType().default("tool_01KEVG1ZPRHKQD92GGQEQ15VEC"),
|
|
69082
69082
|
path: stringType(),
|
|
69083
69083
|
key: stringType(),
|
|
69084
69084
|
displayName: stringType().optional(),
|
|
@@ -69165,7 +69165,7 @@ var init_createtool = __esm(() => {
|
|
|
69165
69165
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
69166
69166
|
});
|
|
69167
69167
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
69168
|
-
_id: stringType().default("
|
|
69168
|
+
_id: stringType().default("tool_01KEVG1ZPNN08PKEZ25Y8QRHSQ"),
|
|
69169
69169
|
path: stringType(),
|
|
69170
69170
|
key: stringType(),
|
|
69171
69171
|
display_name: stringType().optional(),
|
|
@@ -69192,7 +69192,7 @@ var init_createtool = __esm(() => {
|
|
|
69192
69192
|
});
|
|
69193
69193
|
});
|
|
69194
69194
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
69195
|
-
id: stringType().default("
|
|
69195
|
+
id: stringType().default("tool_01KEVG1ZPNN08PKEZ25Y8QRHSQ"),
|
|
69196
69196
|
path: stringType(),
|
|
69197
69197
|
key: stringType(),
|
|
69198
69198
|
displayName: stringType().optional(),
|
|
@@ -69251,7 +69251,7 @@ var init_createtool = __esm(() => {
|
|
|
69251
69251
|
strict: booleanType().optional()
|
|
69252
69252
|
});
|
|
69253
69253
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
69254
|
-
_id: stringType().default("
|
|
69254
|
+
_id: stringType().default("tool_01KEVG1ZPKG59NV6B45QZX86TY"),
|
|
69255
69255
|
path: stringType(),
|
|
69256
69256
|
key: stringType(),
|
|
69257
69257
|
display_name: stringType().optional(),
|
|
@@ -69279,7 +69279,7 @@ var init_createtool = __esm(() => {
|
|
|
69279
69279
|
});
|
|
69280
69280
|
});
|
|
69281
69281
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
69282
|
-
id: stringType().default("
|
|
69282
|
+
id: stringType().default("tool_01KEVG1ZPKG59NV6B45QZX86TY"),
|
|
69283
69283
|
path: stringType(),
|
|
69284
69284
|
key: stringType(),
|
|
69285
69285
|
displayName: stringType().optional(),
|
|
@@ -69341,7 +69341,7 @@ var init_createtool = __esm(() => {
|
|
|
69341
69341
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
69342
69342
|
});
|
|
69343
69343
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
69344
|
-
_id: stringType().default("
|
|
69344
|
+
_id: stringType().default("tool_01KEVG1ZPG8NWGBR163WCQ3TAW"),
|
|
69345
69345
|
path: stringType(),
|
|
69346
69346
|
key: stringType(),
|
|
69347
69347
|
display_name: stringType().optional(),
|
|
@@ -69368,7 +69368,7 @@ var init_createtool = __esm(() => {
|
|
|
69368
69368
|
});
|
|
69369
69369
|
});
|
|
69370
69370
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
69371
|
-
id: stringType().default("
|
|
69371
|
+
id: stringType().default("tool_01KEVG1ZPG8NWGBR163WCQ3TAW"),
|
|
69372
69372
|
path: stringType(),
|
|
69373
69373
|
key: stringType(),
|
|
69374
69374
|
displayName: stringType().optional(),
|
|
@@ -74553,7 +74553,7 @@ var init_fileget = __esm(() => {
|
|
|
74553
74553
|
bytes: numberType(),
|
|
74554
74554
|
file_name: stringType(),
|
|
74555
74555
|
workspace_id: stringType(),
|
|
74556
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74556
|
+
created: stringType().datetime({ offset: true }).default("2026-01-13T10:57:26.064Z").transform((v2) => new Date(v2))
|
|
74557
74557
|
}).transform((v2) => {
|
|
74558
74558
|
return remap(v2, {
|
|
74559
74559
|
_id: "id",
|
|
@@ -74569,7 +74569,7 @@ var init_fileget = __esm(() => {
|
|
|
74569
74569
|
bytes: numberType(),
|
|
74570
74570
|
fileName: stringType(),
|
|
74571
74571
|
workspaceId: stringType(),
|
|
74572
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74572
|
+
created: dateType().default(() => new Date("2026-01-13T10:57:26.064Z")).transform((v2) => v2.toISOString())
|
|
74573
74573
|
}).transform((v2) => {
|
|
74574
74574
|
return remap(v2, {
|
|
74575
74575
|
id: "_id",
|
|
@@ -74624,7 +74624,7 @@ var init_filelist = __esm(() => {
|
|
|
74624
74624
|
bytes: numberType(),
|
|
74625
74625
|
file_name: stringType(),
|
|
74626
74626
|
workspace_id: stringType(),
|
|
74627
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74627
|
+
created: stringType().datetime({ offset: true }).default("2026-01-13T10:57:26.064Z").transform((v2) => new Date(v2))
|
|
74628
74628
|
}).transform((v2) => {
|
|
74629
74629
|
return remap(v2, {
|
|
74630
74630
|
_id: "id",
|
|
@@ -74640,7 +74640,7 @@ var init_filelist = __esm(() => {
|
|
|
74640
74640
|
bytes: numberType(),
|
|
74641
74641
|
fileName: stringType(),
|
|
74642
74642
|
workspaceId: stringType(),
|
|
74643
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74643
|
+
created: dateType().default(() => new Date("2026-01-13T10:57:26.064Z")).transform((v2) => v2.toISOString())
|
|
74644
74644
|
}).transform((v2) => {
|
|
74645
74645
|
return remap(v2, {
|
|
74646
74646
|
id: "_id",
|
|
@@ -74748,7 +74748,7 @@ var init_fileupload = __esm(() => {
|
|
|
74748
74748
|
bytes: numberType(),
|
|
74749
74749
|
file_name: stringType(),
|
|
74750
74750
|
workspace_id: stringType(),
|
|
74751
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74751
|
+
created: stringType().datetime({ offset: true }).default("2026-01-13T10:57:26.064Z").transform((v2) => new Date(v2))
|
|
74752
74752
|
}).transform((v2) => {
|
|
74753
74753
|
return remap(v2, {
|
|
74754
74754
|
_id: "id",
|
|
@@ -74764,7 +74764,7 @@ var init_fileupload = __esm(() => {
|
|
|
74764
74764
|
bytes: numberType(),
|
|
74765
74765
|
fileName: stringType(),
|
|
74766
74766
|
workspaceId: stringType(),
|
|
74767
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74767
|
+
created: dateType().default(() => new Date("2026-01-13T10:57:26.064Z")).transform((v2) => v2.toISOString())
|
|
74768
74768
|
}).transform((v2) => {
|
|
74769
74769
|
return remap(v2, {
|
|
74770
74770
|
id: "_id",
|
|
@@ -74818,7 +74818,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
74818
74818
|
entityId: stringType().optional()
|
|
74819
74819
|
});
|
|
74820
74820
|
GenerateConversationNameResponseBody$inboundSchema2 = objectType({
|
|
74821
|
-
_id: stringType().default("
|
|
74821
|
+
_id: stringType().default("conv_01kevg1zffrbszrx3cvjsaavjw"),
|
|
74822
74822
|
entityId: stringType(),
|
|
74823
74823
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
74824
74824
|
displayName: stringType(),
|
|
@@ -74833,7 +74833,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
74833
74833
|
});
|
|
74834
74834
|
});
|
|
74835
74835
|
GenerateConversationNameResponseBody$outboundSchema2 = objectType({
|
|
74836
|
-
id: stringType().default("
|
|
74836
|
+
id: stringType().default("conv_01kevg1zffrbszrx3cvjsaavjw"),
|
|
74837
74837
|
entityId: stringType(),
|
|
74838
74838
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
74839
74839
|
displayName: stringType(),
|
|
@@ -75869,7 +75869,7 @@ var init_getalltools = __esm(() => {
|
|
|
75869
75869
|
code: stringType()
|
|
75870
75870
|
});
|
|
75871
75871
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
75872
|
-
_id: stringType().default("
|
|
75872
|
+
_id: stringType().default("tool_01KEVG1ZNQW6GPYDG5TRFB759V"),
|
|
75873
75873
|
path: stringType(),
|
|
75874
75874
|
key: stringType(),
|
|
75875
75875
|
display_name: stringType().optional(),
|
|
@@ -75897,7 +75897,7 @@ var init_getalltools = __esm(() => {
|
|
|
75897
75897
|
});
|
|
75898
75898
|
});
|
|
75899
75899
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
75900
|
-
id: stringType().default("
|
|
75900
|
+
id: stringType().default("tool_01KEVG1ZNQW6GPYDG5TRFB759V"),
|
|
75901
75901
|
path: stringType(),
|
|
75902
75902
|
key: stringType(),
|
|
75903
75903
|
displayName: stringType().optional(),
|
|
@@ -75947,13 +75947,13 @@ var init_getalltools = __esm(() => {
|
|
|
75947
75947
|
required: arrayType(stringType()).optional()
|
|
75948
75948
|
});
|
|
75949
75949
|
DataTools$inboundSchema = objectType({
|
|
75950
|
-
id: stringType().default("
|
|
75950
|
+
id: stringType().default("01KEVG1ZNNARMVBGZJP2K2K9VJ"),
|
|
75951
75951
|
name: stringType(),
|
|
75952
75952
|
description: stringType().optional(),
|
|
75953
75953
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
75954
75954
|
});
|
|
75955
75955
|
DataTools$outboundSchema = objectType({
|
|
75956
|
-
id: stringType().default("
|
|
75956
|
+
id: stringType().default("01KEVG1ZNNARMVBGZJP2K2K9VJ"),
|
|
75957
75957
|
name: stringType(),
|
|
75958
75958
|
description: stringType().optional(),
|
|
75959
75959
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -75983,7 +75983,7 @@ var init_getalltools = __esm(() => {
|
|
|
75983
75983
|
});
|
|
75984
75984
|
});
|
|
75985
75985
|
DataMCPTool$inboundSchema = objectType({
|
|
75986
|
-
_id: stringType().default("
|
|
75986
|
+
_id: stringType().default("tool_01KEVG1ZNJNWFEYK4N6TRKC3D1"),
|
|
75987
75987
|
path: stringType(),
|
|
75988
75988
|
key: stringType(),
|
|
75989
75989
|
display_name: stringType().optional(),
|
|
@@ -76010,7 +76010,7 @@ var init_getalltools = __esm(() => {
|
|
|
76010
76010
|
});
|
|
76011
76011
|
});
|
|
76012
76012
|
DataMCPTool$outboundSchema = objectType({
|
|
76013
|
-
id: stringType().default("
|
|
76013
|
+
id: stringType().default("tool_01KEVG1ZNJNWFEYK4N6TRKC3D1"),
|
|
76014
76014
|
path: stringType(),
|
|
76015
76015
|
key: stringType(),
|
|
76016
76016
|
displayName: stringType().optional(),
|
|
@@ -76097,7 +76097,7 @@ var init_getalltools = __esm(() => {
|
|
|
76097
76097
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
76098
76098
|
});
|
|
76099
76099
|
DataHTTPTool$inboundSchema = objectType({
|
|
76100
|
-
_id: stringType().default("
|
|
76100
|
+
_id: stringType().default("tool_01KEVG1ZNFJCCXY5H5PHDNRZMD"),
|
|
76101
76101
|
path: stringType(),
|
|
76102
76102
|
key: stringType(),
|
|
76103
76103
|
display_name: stringType().optional(),
|
|
@@ -76124,7 +76124,7 @@ var init_getalltools = __esm(() => {
|
|
|
76124
76124
|
});
|
|
76125
76125
|
});
|
|
76126
76126
|
DataHTTPTool$outboundSchema = objectType({
|
|
76127
|
-
id: stringType().default("
|
|
76127
|
+
id: stringType().default("tool_01KEVG1ZNFJCCXY5H5PHDNRZMD"),
|
|
76128
76128
|
path: stringType(),
|
|
76129
76129
|
key: stringType(),
|
|
76130
76130
|
displayName: stringType().optional(),
|
|
@@ -76183,7 +76183,7 @@ var init_getalltools = __esm(() => {
|
|
|
76183
76183
|
strict: booleanType().optional()
|
|
76184
76184
|
});
|
|
76185
76185
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
76186
|
-
_id: stringType().default("
|
|
76186
|
+
_id: stringType().default("tool_01KEVG1ZNERDQ1187JF9316VFH"),
|
|
76187
76187
|
path: stringType(),
|
|
76188
76188
|
key: stringType(),
|
|
76189
76189
|
display_name: stringType().optional(),
|
|
@@ -76211,7 +76211,7 @@ var init_getalltools = __esm(() => {
|
|
|
76211
76211
|
});
|
|
76212
76212
|
});
|
|
76213
76213
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
76214
|
-
id: stringType().default("
|
|
76214
|
+
id: stringType().default("tool_01KEVG1ZNERDQ1187JF9316VFH"),
|
|
76215
76215
|
path: stringType(),
|
|
76216
76216
|
key: stringType(),
|
|
76217
76217
|
displayName: stringType().optional(),
|
|
@@ -76273,7 +76273,7 @@ var init_getalltools = __esm(() => {
|
|
|
76273
76273
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
76274
76274
|
});
|
|
76275
76275
|
DataFunctionTool$inboundSchema = objectType({
|
|
76276
|
-
_id: stringType().default("
|
|
76276
|
+
_id: stringType().default("tool_01KEVG1ZNCCRBC7S1NEV8QHAEH"),
|
|
76277
76277
|
path: stringType(),
|
|
76278
76278
|
key: stringType(),
|
|
76279
76279
|
display_name: stringType().optional(),
|
|
@@ -76300,7 +76300,7 @@ var init_getalltools = __esm(() => {
|
|
|
76300
76300
|
});
|
|
76301
76301
|
});
|
|
76302
76302
|
DataFunctionTool$outboundSchema = objectType({
|
|
76303
|
-
id: stringType().default("
|
|
76303
|
+
id: stringType().default("tool_01KEVG1ZNCCRBC7S1NEV8QHAEH"),
|
|
76304
76304
|
path: stringType(),
|
|
76305
76305
|
key: stringType(),
|
|
76306
76306
|
displayName: stringType().optional(),
|
|
@@ -76576,8 +76576,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76576
76576
|
DataTypescript$inboundSchema = objectType({
|
|
76577
76577
|
_id: stringType(),
|
|
76578
76578
|
description: stringType(),
|
|
76579
|
-
created: stringType().default("2026-01-
|
|
76580
|
-
updated: stringType().default("2026-01-
|
|
76579
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76580
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76581
76581
|
guardrail_config: unionType([
|
|
76582
76582
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
76583
76583
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -76594,8 +76594,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76594
76594
|
DataTypescript$outboundSchema = objectType({
|
|
76595
76595
|
id: stringType(),
|
|
76596
76596
|
description: stringType(),
|
|
76597
|
-
created: stringType().default("2026-01-
|
|
76598
|
-
updated: stringType().default("2026-01-
|
|
76597
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76598
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76599
76599
|
guardrailConfig: unionType([
|
|
76600
76600
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
76601
76601
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -76666,8 +76666,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76666
76666
|
DataRagas$inboundSchema = objectType({
|
|
76667
76667
|
_id: stringType(),
|
|
76668
76668
|
description: stringType(),
|
|
76669
|
-
created: stringType().default("2026-01-
|
|
76670
|
-
updated: stringType().default("2026-01-
|
|
76669
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76670
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76671
76671
|
guardrail_config: unionType([
|
|
76672
76672
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
76673
76673
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -76686,8 +76686,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76686
76686
|
DataRagas$outboundSchema = objectType({
|
|
76687
76687
|
id: stringType(),
|
|
76688
76688
|
description: stringType(),
|
|
76689
|
-
created: stringType().default("2026-01-
|
|
76690
|
-
updated: stringType().default("2026-01-
|
|
76689
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76690
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
76691
76691
|
guardrailConfig: unionType([
|
|
76692
76692
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
76693
76693
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -77042,8 +77042,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77042
77042
|
DataFunction$inboundSchema = objectType({
|
|
77043
77043
|
_id: stringType(),
|
|
77044
77044
|
description: stringType(),
|
|
77045
|
-
created: stringType().default("2026-01-
|
|
77046
|
-
updated: stringType().default("2026-01-
|
|
77045
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77046
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77047
77047
|
guardrail_config: unionType([
|
|
77048
77048
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
77049
77049
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -77094,8 +77094,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77094
77094
|
DataFunction$outboundSchema = objectType({
|
|
77095
77095
|
id: stringType(),
|
|
77096
77096
|
description: stringType(),
|
|
77097
|
-
created: stringType().default("2026-01-
|
|
77098
|
-
updated: stringType().default("2026-01-
|
|
77097
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77098
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77099
77099
|
guardrailConfig: unionType([
|
|
77100
77100
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
77101
77101
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -77198,8 +77198,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77198
77198
|
DataPython$inboundSchema = objectType({
|
|
77199
77199
|
_id: stringType(),
|
|
77200
77200
|
description: stringType(),
|
|
77201
|
-
created: stringType().default("2026-01-
|
|
77202
|
-
updated: stringType().default("2026-01-
|
|
77201
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77202
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77203
77203
|
guardrail_config: unionType([
|
|
77204
77204
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
77205
77205
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
|
|
@@ -77216,8 +77216,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77216
77216
|
DataPython$outboundSchema = objectType({
|
|
77217
77217
|
id: stringType(),
|
|
77218
77218
|
description: stringType(),
|
|
77219
|
-
created: stringType().default("2026-01-
|
|
77220
|
-
updated: stringType().default("2026-01-
|
|
77219
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77220
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77221
77221
|
guardrailConfig: unionType([
|
|
77222
77222
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
77223
77223
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
|
|
@@ -77288,8 +77288,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77288
77288
|
DataHTTP$inboundSchema = objectType({
|
|
77289
77289
|
_id: stringType(),
|
|
77290
77290
|
description: stringType(),
|
|
77291
|
-
created: stringType().default("2026-01-
|
|
77292
|
-
updated: stringType().default("2026-01-
|
|
77291
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77292
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77293
77293
|
guardrail_config: unionType([
|
|
77294
77294
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
77295
77295
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
|
|
@@ -77309,8 +77309,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77309
77309
|
DataHTTP$outboundSchema = objectType({
|
|
77310
77310
|
id: stringType(),
|
|
77311
77311
|
description: stringType(),
|
|
77312
|
-
created: stringType().default("2026-01-
|
|
77313
|
-
updated: stringType().default("2026-01-
|
|
77312
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77313
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77314
77314
|
guardrailConfig: unionType([
|
|
77315
77315
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
77316
77316
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
|
|
@@ -77382,8 +77382,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77382
77382
|
DataJSON$inboundSchema = objectType({
|
|
77383
77383
|
_id: stringType(),
|
|
77384
77384
|
description: stringType(),
|
|
77385
|
-
created: stringType().default("2026-01-
|
|
77386
|
-
updated: stringType().default("2026-01-
|
|
77385
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77386
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77387
77387
|
guardrail_config: unionType([
|
|
77388
77388
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
77389
77389
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
|
|
@@ -77400,8 +77400,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77400
77400
|
DataJSON$outboundSchema = objectType({
|
|
77401
77401
|
id: stringType(),
|
|
77402
77402
|
description: stringType(),
|
|
77403
|
-
created: stringType().default("2026-01-
|
|
77404
|
-
updated: stringType().default("2026-01-
|
|
77403
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77404
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77405
77405
|
guardrailConfig: unionType([
|
|
77406
77406
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
77407
77407
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
|
|
@@ -77470,8 +77470,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77470
77470
|
DataLLM$inboundSchema = objectType({
|
|
77471
77471
|
_id: stringType(),
|
|
77472
77472
|
description: stringType(),
|
|
77473
|
-
created: stringType().default("2026-01-
|
|
77474
|
-
updated: stringType().default("2026-01-
|
|
77473
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77474
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77475
77475
|
guardrail_config: unionType([
|
|
77476
77476
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
77477
77477
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -77489,8 +77489,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77489
77489
|
DataLLM$outboundSchema = objectType({
|
|
77490
77490
|
id: stringType(),
|
|
77491
77491
|
description: stringType(),
|
|
77492
|
-
created: stringType().default("2026-01-
|
|
77493
|
-
updated: stringType().default("2026-01-
|
|
77492
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77493
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
77494
77494
|
guardrailConfig: unionType([
|
|
77495
77495
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
77496
77496
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -81265,7 +81265,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81265
81265
|
tags: arrayType(stringType()).optional(),
|
|
81266
81266
|
metadata: recordType(anyType()).optional(),
|
|
81267
81267
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81268
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
81268
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2)),
|
|
81269
81269
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
81270
81270
|
}).transform((v2) => {
|
|
81271
81271
|
return remap(v2, {
|
|
@@ -81284,7 +81284,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81284
81284
|
tags: arrayType(stringType()).optional(),
|
|
81285
81285
|
metadata: recordType(anyType()).optional(),
|
|
81286
81286
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
81287
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
81287
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString()),
|
|
81288
81288
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
81289
81289
|
}).transform((v2) => {
|
|
81290
81290
|
return remap(v2, {
|
|
@@ -81740,7 +81740,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81740
81740
|
human_review_id: stringType(),
|
|
81741
81741
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
81742
81742
|
reviewed_by_id: stringType(),
|
|
81743
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81743
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.684Z").transform((v2) => new Date(v2)),
|
|
81744
81744
|
type: literalType("string_array"),
|
|
81745
81745
|
values: arrayType(stringType())
|
|
81746
81746
|
}).transform((v2) => {
|
|
@@ -81757,7 +81757,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81757
81757
|
humanReviewId: stringType(),
|
|
81758
81758
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
81759
81759
|
reviewedById: stringType(),
|
|
81760
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81760
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.684Z")).transform((v2) => v2.toISOString()),
|
|
81761
81761
|
type: literalType("string_array"),
|
|
81762
81762
|
values: arrayType(stringType())
|
|
81763
81763
|
}).transform((v2) => {
|
|
@@ -81778,7 +81778,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81778
81778
|
human_review_id: stringType(),
|
|
81779
81779
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
81780
81780
|
reviewed_by_id: stringType(),
|
|
81781
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81781
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.683Z").transform((v2) => new Date(v2)),
|
|
81782
81782
|
type: literalType("number"),
|
|
81783
81783
|
value: numberType()
|
|
81784
81784
|
}).transform((v2) => {
|
|
@@ -81795,7 +81795,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81795
81795
|
humanReviewId: stringType(),
|
|
81796
81796
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
81797
81797
|
reviewedById: stringType(),
|
|
81798
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81798
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.683Z")).transform((v2) => v2.toISOString()),
|
|
81799
81799
|
type: literalType("number"),
|
|
81800
81800
|
value: numberType()
|
|
81801
81801
|
}).transform((v2) => {
|
|
@@ -81816,7 +81816,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81816
81816
|
human_review_id: stringType(),
|
|
81817
81817
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
81818
81818
|
reviewed_by_id: stringType(),
|
|
81819
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81819
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.683Z").transform((v2) => new Date(v2)),
|
|
81820
81820
|
type: literalType("string"),
|
|
81821
81821
|
value: stringType()
|
|
81822
81822
|
}).transform((v2) => {
|
|
@@ -81833,7 +81833,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81833
81833
|
humanReviewId: stringType(),
|
|
81834
81834
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
81835
81835
|
reviewedById: stringType(),
|
|
81836
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81836
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.683Z")).transform((v2) => v2.toISOString()),
|
|
81837
81837
|
type: literalType("string"),
|
|
81838
81838
|
value: stringType()
|
|
81839
81839
|
}).transform((v2) => {
|
|
@@ -81876,7 +81876,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81876
81876
|
created_by_id: stringType().optional(),
|
|
81877
81877
|
updated_by_id: stringType().optional(),
|
|
81878
81878
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81879
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
81879
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
81880
81880
|
}).transform((v2) => {
|
|
81881
81881
|
return remap(v2, {
|
|
81882
81882
|
_id: "id",
|
|
@@ -81910,7 +81910,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81910
81910
|
createdById: stringType().optional(),
|
|
81911
81911
|
updatedById: stringType().optional(),
|
|
81912
81912
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
81913
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
81913
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
81914
81914
|
}).transform((v2) => {
|
|
81915
81915
|
return remap(v2, {
|
|
81916
81916
|
id: "_id",
|
|
@@ -81999,7 +81999,7 @@ var init_listdatasets = __esm(() => {
|
|
|
81999
81999
|
created_by_id: stringType().optional(),
|
|
82000
82000
|
updated_by_id: stringType().optional(),
|
|
82001
82001
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
82002
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
82002
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
82003
82003
|
}).transform((v2) => {
|
|
82004
82004
|
return remap(v2, {
|
|
82005
82005
|
_id: "id",
|
|
@@ -82019,7 +82019,7 @@ var init_listdatasets = __esm(() => {
|
|
|
82019
82019
|
createdById: stringType().optional(),
|
|
82020
82020
|
updatedById: stringType().optional(),
|
|
82021
82021
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
82022
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
82022
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
82023
82023
|
}).transform((v2) => {
|
|
82024
82024
|
return remap(v2, {
|
|
82025
82025
|
id: "_id",
|
|
@@ -82100,7 +82100,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82100
82100
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
82101
82101
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
82102
82102
|
ListDatasourcesData$inboundSchema = objectType({
|
|
82103
|
-
_id: stringType().default("
|
|
82103
|
+
_id: stringType().default("01KEVG1ZWDJAWBX20N5NW2G4HG"),
|
|
82104
82104
|
display_name: stringType(),
|
|
82105
82105
|
description: stringType().optional(),
|
|
82106
82106
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -82123,7 +82123,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82123
82123
|
});
|
|
82124
82124
|
});
|
|
82125
82125
|
ListDatasourcesData$outboundSchema = objectType({
|
|
82126
|
-
id: stringType().default("
|
|
82126
|
+
id: stringType().default("01KEVG1ZWDJAWBX20N5NW2G4HG"),
|
|
82127
82127
|
displayName: stringType(),
|
|
82128
82128
|
description: stringType().optional(),
|
|
82129
82129
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -84335,7 +84335,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
84335
84335
|
tags: arrayType(stringType()).optional(),
|
|
84336
84336
|
metadata: recordType(anyType()).optional(),
|
|
84337
84337
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84338
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84338
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
84339
84339
|
}).transform((v2) => {
|
|
84340
84340
|
return remap(v2, {
|
|
84341
84341
|
_id: "id",
|
|
@@ -84353,7 +84353,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
84353
84353
|
tags: arrayType(stringType()).optional(),
|
|
84354
84354
|
metadata: recordType(anyType()).optional(),
|
|
84355
84355
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84356
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84356
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
84357
84357
|
}).transform((v2) => {
|
|
84358
84358
|
return remap(v2, {
|
|
84359
84359
|
id: "_id",
|
|
@@ -84397,7 +84397,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
84397
84397
|
entityId: stringType().optional()
|
|
84398
84398
|
});
|
|
84399
84399
|
RetrieveConversationResponseBody$inboundSchema2 = objectType({
|
|
84400
|
-
_id: stringType().default("
|
|
84400
|
+
_id: stringType().default("conv_01kevg1zfhgzrk3j06cyrwwnpr"),
|
|
84401
84401
|
entityId: stringType(),
|
|
84402
84402
|
kind: RetrieveConversationKind$inboundSchema,
|
|
84403
84403
|
displayName: stringType(),
|
|
@@ -84412,7 +84412,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
84412
84412
|
});
|
|
84413
84413
|
});
|
|
84414
84414
|
RetrieveConversationResponseBody$outboundSchema2 = objectType({
|
|
84415
|
-
id: stringType().default("
|
|
84415
|
+
id: stringType().default("conv_01kevg1zfhgzrk3j06cyrwwnpr"),
|
|
84416
84416
|
entityId: stringType(),
|
|
84417
84417
|
kind: RetrieveConversationKind$outboundSchema,
|
|
84418
84418
|
displayName: stringType(),
|
|
@@ -84802,7 +84802,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84802
84802
|
human_review_id: stringType(),
|
|
84803
84803
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
84804
84804
|
reviewed_by_id: stringType(),
|
|
84805
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84805
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.703Z").transform((v2) => new Date(v2)),
|
|
84806
84806
|
type: literalType("string_array"),
|
|
84807
84807
|
values: arrayType(stringType())
|
|
84808
84808
|
}).transform((v2) => {
|
|
@@ -84819,7 +84819,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84819
84819
|
humanReviewId: stringType(),
|
|
84820
84820
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
84821
84821
|
reviewedById: stringType(),
|
|
84822
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84822
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.703Z")).transform((v2) => v2.toISOString()),
|
|
84823
84823
|
type: literalType("string_array"),
|
|
84824
84824
|
values: arrayType(stringType())
|
|
84825
84825
|
}).transform((v2) => {
|
|
@@ -84840,7 +84840,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84840
84840
|
human_review_id: stringType(),
|
|
84841
84841
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
84842
84842
|
reviewed_by_id: stringType(),
|
|
84843
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84843
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.702Z").transform((v2) => new Date(v2)),
|
|
84844
84844
|
type: literalType("number"),
|
|
84845
84845
|
value: numberType()
|
|
84846
84846
|
}).transform((v2) => {
|
|
@@ -84857,7 +84857,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84857
84857
|
humanReviewId: stringType(),
|
|
84858
84858
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
84859
84859
|
reviewedById: stringType(),
|
|
84860
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84860
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.702Z")).transform((v2) => v2.toISOString()),
|
|
84861
84861
|
type: literalType("number"),
|
|
84862
84862
|
value: numberType()
|
|
84863
84863
|
}).transform((v2) => {
|
|
@@ -84878,7 +84878,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84878
84878
|
human_review_id: stringType(),
|
|
84879
84879
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
84880
84880
|
reviewed_by_id: stringType(),
|
|
84881
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84881
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.701Z").transform((v2) => new Date(v2)),
|
|
84882
84882
|
type: literalType("string"),
|
|
84883
84883
|
value: stringType()
|
|
84884
84884
|
}).transform((v2) => {
|
|
@@ -84895,7 +84895,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84895
84895
|
humanReviewId: stringType(),
|
|
84896
84896
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
84897
84897
|
reviewedById: stringType(),
|
|
84898
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84898
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.701Z")).transform((v2) => v2.toISOString()),
|
|
84899
84899
|
type: literalType("string"),
|
|
84900
84900
|
value: stringType()
|
|
84901
84901
|
}).transform((v2) => {
|
|
@@ -84938,7 +84938,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84938
84938
|
created_by_id: stringType().optional(),
|
|
84939
84939
|
updated_by_id: stringType().optional(),
|
|
84940
84940
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84941
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84941
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
84942
84942
|
}).transform((v2) => {
|
|
84943
84943
|
return remap(v2, {
|
|
84944
84944
|
_id: "id",
|
|
@@ -84972,7 +84972,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84972
84972
|
createdById: stringType().optional(),
|
|
84973
84973
|
updatedById: stringType().optional(),
|
|
84974
84974
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84975
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84975
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
84976
84976
|
}).transform((v2) => {
|
|
84977
84977
|
return remap(v2, {
|
|
84978
84978
|
id: "_id",
|
|
@@ -85032,7 +85032,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85032
85032
|
created_by_id: stringType().optional(),
|
|
85033
85033
|
updated_by_id: stringType().optional(),
|
|
85034
85034
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
85035
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
85035
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
85036
85036
|
}).transform((v2) => {
|
|
85037
85037
|
return remap(v2, {
|
|
85038
85038
|
_id: "id",
|
|
@@ -85052,7 +85052,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85052
85052
|
createdById: stringType().optional(),
|
|
85053
85053
|
updatedById: stringType().optional(),
|
|
85054
85054
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
85055
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
85055
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
85056
85056
|
}).transform((v2) => {
|
|
85057
85057
|
return remap(v2, {
|
|
85058
85058
|
id: "_id",
|
|
@@ -85098,7 +85098,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85098
85098
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
85099
85099
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
85100
85100
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
85101
|
-
_id: stringType().default("
|
|
85101
|
+
_id: stringType().default("01KEVG1ZWFX58PB0R7Z0ESYP99"),
|
|
85102
85102
|
display_name: stringType(),
|
|
85103
85103
|
description: stringType().optional(),
|
|
85104
85104
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -85121,7 +85121,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85121
85121
|
});
|
|
85122
85122
|
});
|
|
85123
85123
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
85124
|
-
id: stringType().default("
|
|
85124
|
+
id: stringType().default("01KEVG1ZWFX58PB0R7Z0ESYP99"),
|
|
85125
85125
|
displayName: stringType(),
|
|
85126
85126
|
description: stringType().optional(),
|
|
85127
85127
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -85458,7 +85458,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85458
85458
|
code: stringType()
|
|
85459
85459
|
});
|
|
85460
85460
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
85461
|
-
_id: stringType().default("
|
|
85461
|
+
_id: stringType().default("tool_01KEVG1ZS07AC06ACR9FRJPGXC"),
|
|
85462
85462
|
path: stringType(),
|
|
85463
85463
|
key: stringType(),
|
|
85464
85464
|
display_name: stringType().optional(),
|
|
@@ -85486,7 +85486,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85486
85486
|
});
|
|
85487
85487
|
});
|
|
85488
85488
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
85489
|
-
id: stringType().default("
|
|
85489
|
+
id: stringType().default("tool_01KEVG1ZS07AC06ACR9FRJPGXC"),
|
|
85490
85490
|
path: stringType(),
|
|
85491
85491
|
key: stringType(),
|
|
85492
85492
|
displayName: stringType().optional(),
|
|
@@ -85536,13 +85536,13 @@ var init_retrievetool = __esm(() => {
|
|
|
85536
85536
|
required: arrayType(stringType()).optional()
|
|
85537
85537
|
});
|
|
85538
85538
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
85539
|
-
id: stringType().default("
|
|
85539
|
+
id: stringType().default("01KEVG1ZRZAFBJ6MSCPSCD7Y1P"),
|
|
85540
85540
|
name: stringType(),
|
|
85541
85541
|
description: stringType().optional(),
|
|
85542
85542
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
85543
85543
|
});
|
|
85544
85544
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
85545
|
-
id: stringType().default("
|
|
85545
|
+
id: stringType().default("01KEVG1ZRZAFBJ6MSCPSCD7Y1P"),
|
|
85546
85546
|
name: stringType(),
|
|
85547
85547
|
description: stringType().optional(),
|
|
85548
85548
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -85572,7 +85572,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85572
85572
|
});
|
|
85573
85573
|
});
|
|
85574
85574
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
85575
|
-
_id: stringType().default("
|
|
85575
|
+
_id: stringType().default("tool_01KEVG1ZRYPH3HZ838P7WRGGF5"),
|
|
85576
85576
|
path: stringType(),
|
|
85577
85577
|
key: stringType(),
|
|
85578
85578
|
display_name: stringType().optional(),
|
|
@@ -85599,7 +85599,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85599
85599
|
});
|
|
85600
85600
|
});
|
|
85601
85601
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
85602
|
-
id: stringType().default("
|
|
85602
|
+
id: stringType().default("tool_01KEVG1ZRYPH3HZ838P7WRGGF5"),
|
|
85603
85603
|
path: stringType(),
|
|
85604
85604
|
key: stringType(),
|
|
85605
85605
|
displayName: stringType().optional(),
|
|
@@ -85686,7 +85686,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85686
85686
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
85687
85687
|
});
|
|
85688
85688
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
85689
|
-
_id: stringType().default("
|
|
85689
|
+
_id: stringType().default("tool_01KEVG1ZRX88H58FW2PN9G8S05"),
|
|
85690
85690
|
path: stringType(),
|
|
85691
85691
|
key: stringType(),
|
|
85692
85692
|
display_name: stringType().optional(),
|
|
@@ -85713,7 +85713,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85713
85713
|
});
|
|
85714
85714
|
});
|
|
85715
85715
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
85716
|
-
id: stringType().default("
|
|
85716
|
+
id: stringType().default("tool_01KEVG1ZRX88H58FW2PN9G8S05"),
|
|
85717
85717
|
path: stringType(),
|
|
85718
85718
|
key: stringType(),
|
|
85719
85719
|
displayName: stringType().optional(),
|
|
@@ -85772,7 +85772,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85772
85772
|
strict: booleanType().optional()
|
|
85773
85773
|
});
|
|
85774
85774
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
85775
|
-
_id: stringType().default("
|
|
85775
|
+
_id: stringType().default("tool_01KEVG1ZRV3FH0GETB9BT3TWJA"),
|
|
85776
85776
|
path: stringType(),
|
|
85777
85777
|
key: stringType(),
|
|
85778
85778
|
display_name: stringType().optional(),
|
|
@@ -85800,7 +85800,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85800
85800
|
});
|
|
85801
85801
|
});
|
|
85802
85802
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
85803
|
-
id: stringType().default("
|
|
85803
|
+
id: stringType().default("tool_01KEVG1ZRV3FH0GETB9BT3TWJA"),
|
|
85804
85804
|
path: stringType(),
|
|
85805
85805
|
key: stringType(),
|
|
85806
85806
|
displayName: stringType().optional(),
|
|
@@ -85862,7 +85862,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85862
85862
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
85863
85863
|
});
|
|
85864
85864
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
85865
|
-
_id: stringType().default("
|
|
85865
|
+
_id: stringType().default("tool_01KEVG1ZRT22C8S5MMNSEZGNZ6"),
|
|
85866
85866
|
path: stringType(),
|
|
85867
85867
|
key: stringType(),
|
|
85868
85868
|
display_name: stringType().optional(),
|
|
@@ -85889,7 +85889,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85889
85889
|
});
|
|
85890
85890
|
});
|
|
85891
85891
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
85892
|
-
id: stringType().default("
|
|
85892
|
+
id: stringType().default("tool_01KEVG1ZRT22C8S5MMNSEZGNZ6"),
|
|
85893
85893
|
path: stringType(),
|
|
85894
85894
|
key: stringType(),
|
|
85895
85895
|
displayName: stringType().optional(),
|
|
@@ -86753,13 +86753,13 @@ var init_runagent = __esm(() => {
|
|
|
86753
86753
|
required: arrayType(stringType()).optional()
|
|
86754
86754
|
});
|
|
86755
86755
|
Tools$inboundSchema2 = objectType({
|
|
86756
|
-
id: stringType().default("
|
|
86756
|
+
id: stringType().default("01KEVG1ZBBT6SST03GSTB6T0CH"),
|
|
86757
86757
|
name: stringType(),
|
|
86758
86758
|
description: stringType().optional(),
|
|
86759
86759
|
schema: lazyType(() => Schema$inboundSchema)
|
|
86760
86760
|
});
|
|
86761
86761
|
Tools$outboundSchema2 = objectType({
|
|
86762
|
-
id: stringType().default("
|
|
86762
|
+
id: stringType().default("01KEVG1ZBBT6SST03GSTB6T0CH"),
|
|
86763
86763
|
name: stringType(),
|
|
86764
86764
|
description: stringType().optional(),
|
|
86765
86765
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -89049,13 +89049,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
89049
89049
|
required: arrayType(stringType()).optional()
|
|
89050
89050
|
});
|
|
89051
89051
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
89052
|
-
id: stringType().default("
|
|
89052
|
+
id: stringType().default("01KEVG1ZD3EX6VD28VNSY21ZKY"),
|
|
89053
89053
|
name: stringType(),
|
|
89054
89054
|
description: stringType().optional(),
|
|
89055
89055
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
89056
89056
|
});
|
|
89057
89057
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
89058
|
-
id: stringType().default("
|
|
89058
|
+
id: stringType().default("01KEVG1ZD3EX6VD28VNSY21ZKY"),
|
|
89059
89059
|
name: stringType(),
|
|
89060
89060
|
description: stringType().optional(),
|
|
89061
89061
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -92042,7 +92042,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
92042
92042
|
tags: arrayType(stringType()).optional(),
|
|
92043
92043
|
metadata: recordType(anyType()).optional(),
|
|
92044
92044
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
92045
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
92045
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
92046
92046
|
}).transform((v2) => {
|
|
92047
92047
|
return remap(v2, {
|
|
92048
92048
|
_id: "id",
|
|
@@ -92060,7 +92060,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
92060
92060
|
tags: arrayType(stringType()).optional(),
|
|
92061
92061
|
metadata: recordType(anyType()).optional(),
|
|
92062
92062
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
92063
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
92063
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
92064
92064
|
}).transform((v2) => {
|
|
92065
92065
|
return remap(v2, {
|
|
92066
92066
|
id: "_id",
|
|
@@ -92124,7 +92124,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
92124
92124
|
entityId: stringType().optional()
|
|
92125
92125
|
});
|
|
92126
92126
|
UpdateConversationResponseBody$inboundSchema2 = objectType({
|
|
92127
|
-
_id: stringType().default("
|
|
92127
|
+
_id: stringType().default("conv_01kevg1zfkxgres1jmszs9drhs"),
|
|
92128
92128
|
entityId: stringType(),
|
|
92129
92129
|
kind: UpdateConversationKind$inboundSchema,
|
|
92130
92130
|
displayName: stringType(),
|
|
@@ -92139,7 +92139,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
92139
92139
|
});
|
|
92140
92140
|
});
|
|
92141
92141
|
UpdateConversationResponseBody$outboundSchema2 = objectType({
|
|
92142
|
-
id: stringType().default("
|
|
92142
|
+
id: stringType().default("conv_01kevg1zfkxgres1jmszs9drhs"),
|
|
92143
92143
|
entityId: stringType(),
|
|
92144
92144
|
kind: UpdateConversationKind$outboundSchema,
|
|
92145
92145
|
displayName: stringType(),
|
|
@@ -92882,7 +92882,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92882
92882
|
human_review_id: stringType(),
|
|
92883
92883
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
92884
92884
|
reviewed_by_id: stringType(),
|
|
92885
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92885
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.761Z").transform((v2) => new Date(v2)),
|
|
92886
92886
|
type: literalType("string_array"),
|
|
92887
92887
|
values: arrayType(stringType())
|
|
92888
92888
|
}).transform((v2) => {
|
|
@@ -92899,7 +92899,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92899
92899
|
humanReviewId: stringType(),
|
|
92900
92900
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
92901
92901
|
reviewedById: stringType(),
|
|
92902
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92902
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.761Z")).transform((v2) => v2.toISOString()),
|
|
92903
92903
|
type: literalType("string_array"),
|
|
92904
92904
|
values: arrayType(stringType())
|
|
92905
92905
|
}).transform((v2) => {
|
|
@@ -92920,7 +92920,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92920
92920
|
human_review_id: stringType(),
|
|
92921
92921
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
92922
92922
|
reviewed_by_id: stringType(),
|
|
92923
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92923
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.760Z").transform((v2) => new Date(v2)),
|
|
92924
92924
|
type: literalType("number"),
|
|
92925
92925
|
value: numberType()
|
|
92926
92926
|
}).transform((v2) => {
|
|
@@ -92937,7 +92937,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92937
92937
|
humanReviewId: stringType(),
|
|
92938
92938
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
92939
92939
|
reviewedById: stringType(),
|
|
92940
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92940
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.760Z")).transform((v2) => v2.toISOString()),
|
|
92941
92941
|
type: literalType("number"),
|
|
92942
92942
|
value: numberType()
|
|
92943
92943
|
}).transform((v2) => {
|
|
@@ -92958,7 +92958,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92958
92958
|
human_review_id: stringType(),
|
|
92959
92959
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
92960
92960
|
reviewed_by_id: stringType(),
|
|
92961
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92961
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-13T10:57:34.757Z").transform((v2) => new Date(v2)),
|
|
92962
92962
|
type: literalType("string"),
|
|
92963
92963
|
value: stringType()
|
|
92964
92964
|
}).transform((v2) => {
|
|
@@ -92975,7 +92975,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92975
92975
|
humanReviewId: stringType(),
|
|
92976
92976
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
92977
92977
|
reviewedById: stringType(),
|
|
92978
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92978
|
+
reviewedAt: dateType().default(() => new Date("2026-01-13T10:57:34.757Z")).transform((v2) => v2.toISOString()),
|
|
92979
92979
|
type: literalType("string"),
|
|
92980
92980
|
value: stringType()
|
|
92981
92981
|
}).transform((v2) => {
|
|
@@ -93018,7 +93018,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93018
93018
|
created_by_id: stringType().optional(),
|
|
93019
93019
|
updated_by_id: stringType().optional(),
|
|
93020
93020
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93021
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93021
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
93022
93022
|
}).transform((v2) => {
|
|
93023
93023
|
return remap(v2, {
|
|
93024
93024
|
_id: "id",
|
|
@@ -93052,7 +93052,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93052
93052
|
createdById: stringType().optional(),
|
|
93053
93053
|
updatedById: stringType().optional(),
|
|
93054
93054
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93055
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93055
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
93056
93056
|
}).transform((v2) => {
|
|
93057
93057
|
return remap(v2, {
|
|
93058
93058
|
id: "_id",
|
|
@@ -93136,7 +93136,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93136
93136
|
created_by_id: stringType().optional(),
|
|
93137
93137
|
updated_by_id: stringType().optional(),
|
|
93138
93138
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93139
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93139
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-13T10:57:22.511Z").transform((v2) => new Date(v2))
|
|
93140
93140
|
}).transform((v2) => {
|
|
93141
93141
|
return remap(v2, {
|
|
93142
93142
|
_id: "id",
|
|
@@ -93156,7 +93156,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93156
93156
|
createdById: stringType().optional(),
|
|
93157
93157
|
updatedById: stringType().optional(),
|
|
93158
93158
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93159
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93159
|
+
updated: dateType().default(() => new Date("2026-01-13T10:57:22.511Z")).transform((v2) => v2.toISOString())
|
|
93160
93160
|
}).transform((v2) => {
|
|
93161
93161
|
return remap(v2, {
|
|
93162
93162
|
id: "_id",
|
|
@@ -93220,7 +93220,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93220
93220
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
93221
93221
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
93222
93222
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
93223
|
-
_id: stringType().default("
|
|
93223
|
+
_id: stringType().default("01KEVG1ZWMZV65ZC8TS83Y5JSP"),
|
|
93224
93224
|
display_name: stringType(),
|
|
93225
93225
|
description: stringType().optional(),
|
|
93226
93226
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -93243,7 +93243,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93243
93243
|
});
|
|
93244
93244
|
});
|
|
93245
93245
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
93246
|
-
id: stringType().default("
|
|
93246
|
+
id: stringType().default("01KEVG1ZWMZV65ZC8TS83Y5JSP"),
|
|
93247
93247
|
displayName: stringType(),
|
|
93248
93248
|
description: stringType().optional(),
|
|
93249
93249
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -93856,8 +93856,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93856
93856
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
93857
93857
|
_id: stringType(),
|
|
93858
93858
|
description: stringType(),
|
|
93859
|
-
created: stringType().default("2026-01-
|
|
93860
|
-
updated: stringType().default("2026-01-
|
|
93859
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93860
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93861
93861
|
guardrail_config: unionType([
|
|
93862
93862
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
93863
93863
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -93874,8 +93874,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93874
93874
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
93875
93875
|
id: stringType(),
|
|
93876
93876
|
description: stringType(),
|
|
93877
|
-
created: stringType().default("2026-01-
|
|
93878
|
-
updated: stringType().default("2026-01-
|
|
93877
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93878
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93879
93879
|
guardrailConfig: unionType([
|
|
93880
93880
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
93881
93881
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -93946,8 +93946,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93946
93946
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
93947
93947
|
_id: stringType(),
|
|
93948
93948
|
description: stringType(),
|
|
93949
|
-
created: stringType().default("2026-01-
|
|
93950
|
-
updated: stringType().default("2026-01-
|
|
93949
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93950
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93951
93951
|
guardrail_config: unionType([
|
|
93952
93952
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
93953
93953
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -93966,8 +93966,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93966
93966
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
93967
93967
|
id: stringType(),
|
|
93968
93968
|
description: stringType(),
|
|
93969
|
-
created: stringType().default("2026-01-
|
|
93970
|
-
updated: stringType().default("2026-01-
|
|
93969
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93970
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
93971
93971
|
guardrailConfig: unionType([
|
|
93972
93972
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
93973
93973
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -94322,8 +94322,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94322
94322
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
94323
94323
|
_id: stringType(),
|
|
94324
94324
|
description: stringType(),
|
|
94325
|
-
created: stringType().default("2026-01-
|
|
94326
|
-
updated: stringType().default("2026-01-
|
|
94325
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94326
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94327
94327
|
guardrail_config: unionType([
|
|
94328
94328
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
94329
94329
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -94374,8 +94374,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94374
94374
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
94375
94375
|
id: stringType(),
|
|
94376
94376
|
description: stringType(),
|
|
94377
|
-
created: stringType().default("2026-01-
|
|
94378
|
-
updated: stringType().default("2026-01-
|
|
94377
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94378
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94379
94379
|
guardrailConfig: unionType([
|
|
94380
94380
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
94381
94381
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -94478,8 +94478,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94478
94478
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
94479
94479
|
_id: stringType(),
|
|
94480
94480
|
description: stringType(),
|
|
94481
|
-
created: stringType().default("2026-01-
|
|
94482
|
-
updated: stringType().default("2026-01-
|
|
94481
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94482
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94483
94483
|
guardrail_config: unionType([
|
|
94484
94484
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
94485
94485
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -94496,8 +94496,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94496
94496
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
94497
94497
|
id: stringType(),
|
|
94498
94498
|
description: stringType(),
|
|
94499
|
-
created: stringType().default("2026-01-
|
|
94500
|
-
updated: stringType().default("2026-01-
|
|
94499
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94500
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94501
94501
|
guardrailConfig: unionType([
|
|
94502
94502
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
94503
94503
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -94568,8 +94568,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94568
94568
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
94569
94569
|
_id: stringType(),
|
|
94570
94570
|
description: stringType(),
|
|
94571
|
-
created: stringType().default("2026-01-
|
|
94572
|
-
updated: stringType().default("2026-01-
|
|
94571
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94572
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94573
94573
|
guardrail_config: unionType([
|
|
94574
94574
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
94575
94575
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -94589,8 +94589,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94589
94589
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
94590
94590
|
id: stringType(),
|
|
94591
94591
|
description: stringType(),
|
|
94592
|
-
created: stringType().default("2026-01-
|
|
94593
|
-
updated: stringType().default("2026-01-
|
|
94592
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94593
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94594
94594
|
guardrailConfig: unionType([
|
|
94595
94595
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
94596
94596
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -94662,8 +94662,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94662
94662
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
94663
94663
|
_id: stringType(),
|
|
94664
94664
|
description: stringType(),
|
|
94665
|
-
created: stringType().default("2026-01-
|
|
94666
|
-
updated: stringType().default("2026-01-
|
|
94665
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94666
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94667
94667
|
guardrail_config: unionType([
|
|
94668
94668
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
94669
94669
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -94680,8 +94680,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94680
94680
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
94681
94681
|
id: stringType(),
|
|
94682
94682
|
description: stringType(),
|
|
94683
|
-
created: stringType().default("2026-01-
|
|
94684
|
-
updated: stringType().default("2026-01-
|
|
94683
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94684
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94685
94685
|
guardrailConfig: unionType([
|
|
94686
94686
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
94687
94687
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -94750,8 +94750,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94750
94750
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
94751
94751
|
_id: stringType(),
|
|
94752
94752
|
description: stringType(),
|
|
94753
|
-
created: stringType().default("2026-01-
|
|
94754
|
-
updated: stringType().default("2026-01-
|
|
94753
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94754
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94755
94755
|
guardrail_config: unionType([
|
|
94756
94756
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
94757
94757
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -94769,8 +94769,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94769
94769
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
94770
94770
|
id: stringType(),
|
|
94771
94771
|
description: stringType(),
|
|
94772
|
-
created: stringType().default("2026-01-
|
|
94773
|
-
updated: stringType().default("2026-01-
|
|
94772
|
+
created: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94773
|
+
updated: stringType().default("2026-01-13T10:57:24.883Z"),
|
|
94774
94774
|
guardrailConfig: unionType([
|
|
94775
94775
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
94776
94776
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -97276,13 +97276,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
97276
97276
|
required: arrayType(stringType()).optional()
|
|
97277
97277
|
});
|
|
97278
97278
|
RequestBodyTools$inboundSchema = objectType({
|
|
97279
|
-
id: stringType().default("
|
|
97279
|
+
id: stringType().default("01KEVG1ZR54YNFFR37R4E6C5N9"),
|
|
97280
97280
|
name: stringType(),
|
|
97281
97281
|
description: stringType().optional(),
|
|
97282
97282
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
97283
97283
|
});
|
|
97284
97284
|
RequestBodyTools$outboundSchema = objectType({
|
|
97285
|
-
id: stringType().default("
|
|
97285
|
+
id: stringType().default("01KEVG1ZR54YNFFR37R4E6C5N9"),
|
|
97286
97286
|
name: stringType(),
|
|
97287
97287
|
description: stringType().optional(),
|
|
97288
97288
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -97622,7 +97622,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97622
97622
|
code: stringType()
|
|
97623
97623
|
});
|
|
97624
97624
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
97625
|
-
_id: stringType().default("
|
|
97625
|
+
_id: stringType().default("tool_01KEVG1ZQP23DBHM2S7FQK34KD"),
|
|
97626
97626
|
path: stringType(),
|
|
97627
97627
|
key: stringType(),
|
|
97628
97628
|
display_name: stringType().optional(),
|
|
@@ -97650,7 +97650,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97650
97650
|
});
|
|
97651
97651
|
});
|
|
97652
97652
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
97653
|
-
id: stringType().default("
|
|
97653
|
+
id: stringType().default("tool_01KEVG1ZQP23DBHM2S7FQK34KD"),
|
|
97654
97654
|
path: stringType(),
|
|
97655
97655
|
key: stringType(),
|
|
97656
97656
|
displayName: stringType().optional(),
|
|
@@ -97700,13 +97700,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
97700
97700
|
required: arrayType(stringType()).optional()
|
|
97701
97701
|
});
|
|
97702
97702
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
97703
|
-
id: stringType().default("
|
|
97703
|
+
id: stringType().default("01KEVG1ZQK4VKW9AXPTFTX2289"),
|
|
97704
97704
|
name: stringType(),
|
|
97705
97705
|
description: stringType().optional(),
|
|
97706
97706
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
97707
97707
|
});
|
|
97708
97708
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
97709
|
-
id: stringType().default("
|
|
97709
|
+
id: stringType().default("01KEVG1ZQK4VKW9AXPTFTX2289"),
|
|
97710
97710
|
name: stringType(),
|
|
97711
97711
|
description: stringType().optional(),
|
|
97712
97712
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -97736,7 +97736,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97736
97736
|
});
|
|
97737
97737
|
});
|
|
97738
97738
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
97739
|
-
_id: stringType().default("
|
|
97739
|
+
_id: stringType().default("tool_01KEVG1ZQF6FWKVYJY3A7FFWDW"),
|
|
97740
97740
|
path: stringType(),
|
|
97741
97741
|
key: stringType(),
|
|
97742
97742
|
display_name: stringType().optional(),
|
|
@@ -97763,7 +97763,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97763
97763
|
});
|
|
97764
97764
|
});
|
|
97765
97765
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
97766
|
-
id: stringType().default("
|
|
97766
|
+
id: stringType().default("tool_01KEVG1ZQF6FWKVYJY3A7FFWDW"),
|
|
97767
97767
|
path: stringType(),
|
|
97768
97768
|
key: stringType(),
|
|
97769
97769
|
displayName: stringType().optional(),
|
|
@@ -97850,7 +97850,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97850
97850
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
97851
97851
|
});
|
|
97852
97852
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
97853
|
-
_id: stringType().default("
|
|
97853
|
+
_id: stringType().default("tool_01KEVG1ZQCHK47TJPR56VJJTW9"),
|
|
97854
97854
|
path: stringType(),
|
|
97855
97855
|
key: stringType(),
|
|
97856
97856
|
display_name: stringType().optional(),
|
|
@@ -97877,7 +97877,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97877
97877
|
});
|
|
97878
97878
|
});
|
|
97879
97879
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
97880
|
-
id: stringType().default("
|
|
97880
|
+
id: stringType().default("tool_01KEVG1ZQCHK47TJPR56VJJTW9"),
|
|
97881
97881
|
path: stringType(),
|
|
97882
97882
|
key: stringType(),
|
|
97883
97883
|
displayName: stringType().optional(),
|
|
@@ -97936,7 +97936,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97936
97936
|
strict: booleanType().optional()
|
|
97937
97937
|
});
|
|
97938
97938
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
97939
|
-
_id: stringType().default("
|
|
97939
|
+
_id: stringType().default("tool_01KEVG1ZQ9B5M2MV54S3D433JG"),
|
|
97940
97940
|
path: stringType(),
|
|
97941
97941
|
key: stringType(),
|
|
97942
97942
|
display_name: stringType().optional(),
|
|
@@ -97964,7 +97964,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97964
97964
|
});
|
|
97965
97965
|
});
|
|
97966
97966
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
97967
|
-
id: stringType().default("
|
|
97967
|
+
id: stringType().default("tool_01KEVG1ZQ9B5M2MV54S3D433JG"),
|
|
97968
97968
|
path: stringType(),
|
|
97969
97969
|
key: stringType(),
|
|
97970
97970
|
displayName: stringType().optional(),
|
|
@@ -98026,7 +98026,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
98026
98026
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
98027
98027
|
});
|
|
98028
98028
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
98029
|
-
_id: stringType().default("
|
|
98029
|
+
_id: stringType().default("tool_01KEVG1ZQ7VQQ6QZB6MSMH0S01"),
|
|
98030
98030
|
path: stringType(),
|
|
98031
98031
|
key: stringType(),
|
|
98032
98032
|
display_name: stringType().optional(),
|
|
@@ -98053,7 +98053,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
98053
98053
|
});
|
|
98054
98054
|
});
|
|
98055
98055
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
98056
|
-
id: stringType().default("
|
|
98056
|
+
id: stringType().default("tool_01KEVG1ZQ7VQQ6QZB6MSMH0S01"),
|
|
98057
98057
|
path: stringType(),
|
|
98058
98058
|
key: stringType(),
|
|
98059
98059
|
displayName: stringType().optional(),
|
|
@@ -109159,7 +109159,7 @@ Updates a tool in the workspace.`,
|
|
|
109159
109159
|
function createMCPServer(deps) {
|
|
109160
109160
|
const server = new McpServer({
|
|
109161
109161
|
name: "Orq",
|
|
109162
|
-
version: "4.1.
|
|
109162
|
+
version: "4.1.11"
|
|
109163
109163
|
});
|
|
109164
109164
|
const client = new OrqCore({
|
|
109165
109165
|
apiKey: deps.apiKey,
|
|
@@ -110583,7 +110583,7 @@ var routes = rn({
|
|
|
110583
110583
|
var app = Ve(routes, {
|
|
110584
110584
|
name: "mcp",
|
|
110585
110585
|
versionInfo: {
|
|
110586
|
-
currentVersion: "4.1.
|
|
110586
|
+
currentVersion: "4.1.11"
|
|
110587
110587
|
}
|
|
110588
110588
|
});
|
|
110589
110589
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -110591,5 +110591,5 @@ export {
|
|
|
110591
110591
|
app
|
|
110592
110592
|
};
|
|
110593
110593
|
|
|
110594
|
-
//# debugId=
|
|
110594
|
+
//# debugId=8FC8FF8C628BC5C364756E2164756E21
|
|
110595
110595
|
//# sourceMappingURL=mcp-server.js.map
|