@orq-ai/node 3.13.11 → 3.13.13
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 +266 -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/config.js.map +1 -1
- package/lib/env.d.ts.map +1 -1
- package/lib/env.js +18 -1
- package/lib/env.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +38 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +35 -1
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +15 -15
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +20 -18
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +53 -18
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +54 -19
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- 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/docs/sdks/prompts/README.md +47 -13
- package/packages/orq-rc/docs/sdks/tools/README.md +7 -3
- 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/promptsCreate.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsRetrieve.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsUpdate.ts +4 -4
- package/packages/orq-rc/src/funcs/toolsList.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/lib/env.ts +20 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +6 -6
- package/packages/orq-rc/src/models/operations/createagent.ts +73 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +14 -14
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +108 -40
- package/packages/orq-rc/src/models/operations/createprompt.ts +4603 -1478
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +6 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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/getallmemorystores.ts +56 -20
- package/packages/orq-rc/src/models/operations/getallprompts.ts +48 -52
- package/packages/orq-rc/src/models/operations/getalltools.ts +14 -14
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +22 -22
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +11 -11
- 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/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +11 -11
- 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/retrievememorystore.ts +56 -20
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +30 -24
- package/packages/orq-rc/src/models/operations/updateagent.ts +110 -28
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +14 -14
- 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 +57 -57
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +52 -20
- package/packages/orq-rc/src/models/operations/updateprompt.ts +5018 -1772
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/packages/orq-rc/src/sdk/prompts.ts +3 -3
- package/packages/orq-rc/src/sdk/tools.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/env.ts +20 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +73 -0
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +30 -24
- package/src/models/operations/updateagent.ts +110 -28
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- 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/bin/mcp-server.js
CHANGED
|
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
|
|
|
34206
34206
|
SDK_METADATA = {
|
|
34207
34207
|
language: "typescript",
|
|
34208
34208
|
openapiDocVersion: "2.0",
|
|
34209
|
-
sdkVersion: "3.13.
|
|
34210
|
-
genVersion: "2.
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 3.13.
|
|
34209
|
+
sdkVersion: "3.13.13",
|
|
34210
|
+
genVersion: "2.727.9",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.13.13 2.727.9 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -34451,11 +34451,23 @@ function dlv(obj, key, def, p, undef) {
|
|
|
34451
34451
|
}
|
|
34452
34452
|
|
|
34453
34453
|
// src/lib/env.ts
|
|
34454
|
+
function isDeno() {
|
|
34455
|
+
if ("Deno" in globalThis) {
|
|
34456
|
+
return true;
|
|
34457
|
+
}
|
|
34458
|
+
return false;
|
|
34459
|
+
}
|
|
34454
34460
|
function env() {
|
|
34455
34461
|
if (envMemo) {
|
|
34456
34462
|
return envMemo;
|
|
34457
34463
|
}
|
|
34458
|
-
|
|
34464
|
+
let envObject = {};
|
|
34465
|
+
if (isDeno()) {
|
|
34466
|
+
envObject = globalThis.Deno?.env?.toObject?.() ?? {};
|
|
34467
|
+
} else {
|
|
34468
|
+
envObject = dlv(globalThis, "process.env") ?? {};
|
|
34469
|
+
}
|
|
34470
|
+
envMemo = envSchema.parse(envObject);
|
|
34459
34471
|
return envMemo;
|
|
34460
34472
|
}
|
|
34461
34473
|
function fillGlobals(options) {
|
|
@@ -38899,7 +38911,7 @@ var init_cleardataset = __esm(() => {
|
|
|
38899
38911
|
});
|
|
38900
38912
|
|
|
38901
38913
|
// src/models/operations/createagent.ts
|
|
38902
|
-
var ToolApprovalRequired, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentAgentToolInputCRUDAgentsRequestType, CreateAgentAgentToolInputCRUDAgentsType, CreateAgentAgentToolInputCRUDType, AgentToolInputCRUDType, CreateAgentStatus, CreateAgentToolApprovalRequired, HiddenPanels, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, ToolApprovalRequired$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$, FunctionTool$inboundSchema, FunctionTool$outboundSchema, FunctionTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CodeExecutionTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$, HTTPTool$inboundSchema, HTTPTool$outboundSchema, HTTPTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CurrentDateTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, QueryKnowledgeBaseTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, RetrieveKnowledgeBasesTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, DeleteMemoryDocumentTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, RetrieveMemoryStoresTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, WriteMemoryStoreTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, QueryMemoryStoreTool$, CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, RetrieveAgentsTool$, CreateAgentAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsType$, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CallSubAgentTool$, CreateAgentAgentToolInputCRUDType$inboundSchema, CreateAgentAgentToolInputCRUDType$outboundSchema, CreateAgentAgentToolInputCRUDType$, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, WebScraperTool$, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDType$, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, GoogleSearchTool$, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, AgentToolInputCRUD$, Settings$inboundSchema, Settings$outboundSchema, Settings$, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, KnowledgeBases$, CreateAgentRequestBody$inboundSchema, CreateAgentRequestBody$outboundSchema, CreateAgentRequestBody$, CreateAgentStatus$inboundSchema, CreateAgentStatus$outboundSchema, CreateAgentStatus$, CreateAgentToolApprovalRequired$inboundSchema, CreateAgentToolApprovalRequired$outboundSchema, CreateAgentToolApprovalRequired$, Conditions$inboundSchema, Conditions$outboundSchema, Conditions$, CreateAgentTools$inboundSchema, CreateAgentTools$outboundSchema, CreateAgentTools$, CreateAgentSettings$inboundSchema, CreateAgentSettings$outboundSchema, CreateAgentSettings$, CreateAgentModel$inboundSchema, CreateAgentModel$outboundSchema, CreateAgentModel$, CreateAgentTeamOfAgents$inboundSchema, CreateAgentTeamOfAgents$outboundSchema, CreateAgentTeamOfAgents$, Metrics$inboundSchema, Metrics$outboundSchema, Metrics$, CreateAgentKnowledgeBases$inboundSchema, CreateAgentKnowledgeBases$outboundSchema, CreateAgentKnowledgeBases$, HiddenPanels$inboundSchema, HiddenPanels$outboundSchema, HiddenPanels$, CreateAgentResponseBody$inboundSchema2, CreateAgentResponseBody$outboundSchema2, CreateAgentResponseBody$2;
|
|
38914
|
+
var ToolApprovalRequired, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentAgentToolInputCRUDAgentsRequestType, CreateAgentAgentToolInputCRUDAgentsType, CreateAgentAgentToolInputCRUDType, AgentToolInputCRUDType, CreateAgentStatus, CreateAgentToolApprovalRequired, HiddenPanels, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, ToolApprovalRequired$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$, FunctionTool$inboundSchema, FunctionTool$outboundSchema, FunctionTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CodeExecutionTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$, HTTPTool$inboundSchema, HTTPTool$outboundSchema, HTTPTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CurrentDateTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, QueryKnowledgeBaseTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, RetrieveKnowledgeBasesTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, DeleteMemoryDocumentTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, RetrieveMemoryStoresTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, WriteMemoryStoreTool$, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, QueryMemoryStoreTool$, CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, RetrieveAgentsTool$, CreateAgentAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsType$outboundSchema, CreateAgentAgentToolInputCRUDAgentsType$, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CallSubAgentTool$, CreateAgentAgentToolInputCRUDType$inboundSchema, CreateAgentAgentToolInputCRUDType$outboundSchema, CreateAgentAgentToolInputCRUDType$, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, WebScraperTool$, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDType$, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, GoogleSearchTool$, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, AgentToolInputCRUD$, Settings$inboundSchema, Settings$outboundSchema, Settings$, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, KnowledgeBases$, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, TeamOfAgents$, CreateAgentRequestBody$inboundSchema, CreateAgentRequestBody$outboundSchema, CreateAgentRequestBody$, CreateAgentStatus$inboundSchema, CreateAgentStatus$outboundSchema, CreateAgentStatus$, CreateAgentToolApprovalRequired$inboundSchema, CreateAgentToolApprovalRequired$outboundSchema, CreateAgentToolApprovalRequired$, Conditions$inboundSchema, Conditions$outboundSchema, Conditions$, CreateAgentTools$inboundSchema, CreateAgentTools$outboundSchema, CreateAgentTools$, CreateAgentSettings$inboundSchema, CreateAgentSettings$outboundSchema, CreateAgentSettings$, CreateAgentModel$inboundSchema, CreateAgentModel$outboundSchema, CreateAgentModel$, CreateAgentTeamOfAgents$inboundSchema, CreateAgentTeamOfAgents$outboundSchema, CreateAgentTeamOfAgents$, Metrics$inboundSchema, Metrics$outboundSchema, Metrics$, CreateAgentKnowledgeBases$inboundSchema, CreateAgentKnowledgeBases$outboundSchema, CreateAgentKnowledgeBases$, HiddenPanels$inboundSchema, HiddenPanels$outboundSchema, HiddenPanels$, CreateAgentResponseBody$inboundSchema2, CreateAgentResponseBody$outboundSchema2, CreateAgentResponseBody$2;
|
|
38903
38915
|
var init_createagent2 = __esm(() => {
|
|
38904
38916
|
init_esm();
|
|
38905
38917
|
init_primitives();
|
|
@@ -39462,6 +39474,18 @@ var init_createagent2 = __esm(() => {
|
|
|
39462
39474
|
KnowledgeBases$.inboundSchema = KnowledgeBases$inboundSchema;
|
|
39463
39475
|
KnowledgeBases$.outboundSchema = KnowledgeBases$outboundSchema;
|
|
39464
39476
|
})(KnowledgeBases$ ||= {});
|
|
39477
|
+
TeamOfAgents$inboundSchema = objectType({
|
|
39478
|
+
key: stringType(),
|
|
39479
|
+
role: stringType().optional()
|
|
39480
|
+
});
|
|
39481
|
+
TeamOfAgents$outboundSchema = objectType({
|
|
39482
|
+
key: stringType(),
|
|
39483
|
+
role: stringType().optional()
|
|
39484
|
+
});
|
|
39485
|
+
((TeamOfAgents$) => {
|
|
39486
|
+
TeamOfAgents$.inboundSchema = TeamOfAgents$inboundSchema;
|
|
39487
|
+
TeamOfAgents$.outboundSchema = TeamOfAgents$outboundSchema;
|
|
39488
|
+
})(TeamOfAgents$ ||= {});
|
|
39465
39489
|
CreateAgentRequestBody$inboundSchema = objectType({
|
|
39466
39490
|
path: stringType(),
|
|
39467
39491
|
key: stringType(),
|
|
@@ -39473,13 +39497,15 @@ var init_createagent2 = __esm(() => {
|
|
|
39473
39497
|
fallback_models: arrayType(stringType()).optional(),
|
|
39474
39498
|
settings: lazyType(() => Settings$inboundSchema),
|
|
39475
39499
|
memory_stores: arrayType(stringType()).optional(),
|
|
39476
|
-
knowledge_bases: arrayType(lazyType(() => KnowledgeBases$inboundSchema)).optional()
|
|
39500
|
+
knowledge_bases: arrayType(lazyType(() => KnowledgeBases$inboundSchema)).optional(),
|
|
39501
|
+
team_of_agents: arrayType(lazyType(() => TeamOfAgents$inboundSchema)).optional()
|
|
39477
39502
|
}).transform((v2) => {
|
|
39478
39503
|
return remap(v2, {
|
|
39479
39504
|
system_prompt: "systemPrompt",
|
|
39480
39505
|
fallback_models: "fallbackModels",
|
|
39481
39506
|
memory_stores: "memoryStores",
|
|
39482
|
-
knowledge_bases: "knowledgeBases"
|
|
39507
|
+
knowledge_bases: "knowledgeBases",
|
|
39508
|
+
team_of_agents: "teamOfAgents"
|
|
39483
39509
|
});
|
|
39484
39510
|
});
|
|
39485
39511
|
CreateAgentRequestBody$outboundSchema = objectType({
|
|
@@ -39493,13 +39519,15 @@ var init_createagent2 = __esm(() => {
|
|
|
39493
39519
|
fallbackModels: arrayType(stringType()).optional(),
|
|
39494
39520
|
settings: lazyType(() => Settings$outboundSchema),
|
|
39495
39521
|
memoryStores: arrayType(stringType()).optional(),
|
|
39496
|
-
knowledgeBases: arrayType(lazyType(() => KnowledgeBases$outboundSchema)).optional()
|
|
39522
|
+
knowledgeBases: arrayType(lazyType(() => KnowledgeBases$outboundSchema)).optional(),
|
|
39523
|
+
teamOfAgents: arrayType(lazyType(() => TeamOfAgents$outboundSchema)).optional()
|
|
39497
39524
|
}).transform((v2) => {
|
|
39498
39525
|
return remap(v2, {
|
|
39499
39526
|
systemPrompt: "system_prompt",
|
|
39500
39527
|
fallbackModels: "fallback_models",
|
|
39501
39528
|
memoryStores: "memory_stores",
|
|
39502
|
-
knowledgeBases: "knowledge_bases"
|
|
39529
|
+
knowledgeBases: "knowledge_bases",
|
|
39530
|
+
teamOfAgents: "team_of_agents"
|
|
39503
39531
|
});
|
|
39504
39532
|
});
|
|
39505
39533
|
((CreateAgentRequestBody$) => {
|
|
@@ -39934,7 +39962,7 @@ var init_createbudget = __esm(() => {
|
|
|
39934
39962
|
is_active: booleanType(),
|
|
39935
39963
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
39936
39964
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39937
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
39965
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
39938
39966
|
}).transform((v2) => {
|
|
39939
39967
|
return remap(v2, {
|
|
39940
39968
|
_id: "id",
|
|
@@ -39950,7 +39978,7 @@ var init_createbudget = __esm(() => {
|
|
|
39950
39978
|
isActive: booleanType(),
|
|
39951
39979
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
39952
39980
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39953
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
39981
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
39954
39982
|
}).transform((v2) => {
|
|
39955
39983
|
return remap(v2, {
|
|
39956
39984
|
id: "_id",
|
|
@@ -40121,7 +40149,7 @@ var init_createcontact = __esm(() => {
|
|
|
40121
40149
|
tags: arrayType(stringType()).optional(),
|
|
40122
40150
|
metadata: recordType(anyType()).optional(),
|
|
40123
40151
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40124
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
40152
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
40125
40153
|
}).transform((v2) => {
|
|
40126
40154
|
return remap(v2, {
|
|
40127
40155
|
_id: "id",
|
|
@@ -40141,7 +40169,7 @@ var init_createcontact = __esm(() => {
|
|
|
40141
40169
|
tags: arrayType(stringType()).optional(),
|
|
40142
40170
|
metadata: recordType(anyType()).optional(),
|
|
40143
40171
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40144
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
40172
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
40145
40173
|
}).transform((v2) => {
|
|
40146
40174
|
return remap(v2, {
|
|
40147
40175
|
id: "_id",
|
|
@@ -40213,7 +40241,7 @@ var init_createdataset = __esm(() => {
|
|
|
40213
40241
|
updated_by_id: stringType().optional(),
|
|
40214
40242
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
40215
40243
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40216
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
40244
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
40217
40245
|
}).transform((v2) => {
|
|
40218
40246
|
return remap(v2, {
|
|
40219
40247
|
_id: "id",
|
|
@@ -40233,7 +40261,7 @@ var init_createdataset = __esm(() => {
|
|
|
40233
40261
|
updatedById: stringType().optional(),
|
|
40234
40262
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
40235
40263
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40236
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
40264
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
40237
40265
|
}).transform((v2) => {
|
|
40238
40266
|
return remap(v2, {
|
|
40239
40267
|
id: "_id",
|
|
@@ -41637,7 +41665,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
41637
41665
|
created_by_id: stringType().optional(),
|
|
41638
41666
|
updated_by_id: stringType().optional(),
|
|
41639
41667
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
41640
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
41668
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
41641
41669
|
}).transform((v2) => {
|
|
41642
41670
|
return remap(v2, {
|
|
41643
41671
|
_id: "id",
|
|
@@ -41664,7 +41692,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
41664
41692
|
createdById: stringType().optional(),
|
|
41665
41693
|
updatedById: stringType().optional(),
|
|
41666
41694
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
41667
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
41695
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
41668
41696
|
}).transform((v2) => {
|
|
41669
41697
|
return remap(v2, {
|
|
41670
41698
|
id: "_id",
|
|
@@ -41886,7 +41914,7 @@ var init_createdatasource = __esm(() => {
|
|
|
41886
41914
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
41887
41915
|
})(CreateDatasourceStatus$ ||= {});
|
|
41888
41916
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
41889
|
-
_id: stringType().default("
|
|
41917
|
+
_id: stringType().default("01K83NPC02S9RA8W9PV5337DNM"),
|
|
41890
41918
|
display_name: stringType(),
|
|
41891
41919
|
description: stringType().optional(),
|
|
41892
41920
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -41909,7 +41937,7 @@ var init_createdatasource = __esm(() => {
|
|
|
41909
41937
|
});
|
|
41910
41938
|
});
|
|
41911
41939
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
41912
|
-
id: stringType().default("
|
|
41940
|
+
id: stringType().default("01K83NPC02S9RA8W9PV5337DNM"),
|
|
41913
41941
|
displayName: stringType(),
|
|
41914
41942
|
description: stringType().optional(),
|
|
41915
41943
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -42812,8 +42840,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42812
42840
|
Typescript$inboundSchema = objectType({
|
|
42813
42841
|
_id: stringType(),
|
|
42814
42842
|
description: stringType(),
|
|
42815
|
-
created: stringType().default("2025-10-
|
|
42816
|
-
updated: stringType().default("2025-10-
|
|
42843
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42844
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42817
42845
|
guardrail_config: unionType([
|
|
42818
42846
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
42819
42847
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -42830,8 +42858,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42830
42858
|
Typescript$outboundSchema = objectType({
|
|
42831
42859
|
id: stringType(),
|
|
42832
42860
|
description: stringType(),
|
|
42833
|
-
created: stringType().default("2025-10-
|
|
42834
|
-
updated: stringType().default("2025-10-
|
|
42861
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42862
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42835
42863
|
guardrailConfig: unionType([
|
|
42836
42864
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
42837
42865
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -42924,8 +42952,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42924
42952
|
Ragas$inboundSchema = objectType({
|
|
42925
42953
|
_id: stringType(),
|
|
42926
42954
|
description: stringType(),
|
|
42927
|
-
created: stringType().default("2025-10-
|
|
42928
|
-
updated: stringType().default("2025-10-
|
|
42955
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42956
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42929
42957
|
guardrail_config: unionType([
|
|
42930
42958
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
42931
42959
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -42944,8 +42972,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42944
42972
|
Ragas$outboundSchema = objectType({
|
|
42945
42973
|
id: stringType(),
|
|
42946
42974
|
description: stringType(),
|
|
42947
|
-
created: stringType().default("2025-10-
|
|
42948
|
-
updated: stringType().default("2025-10-
|
|
42975
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42976
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
42949
42977
|
guardrailConfig: unionType([
|
|
42950
42978
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
42951
42979
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -43698,8 +43726,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43698
43726
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
43699
43727
|
_id: stringType(),
|
|
43700
43728
|
description: stringType(),
|
|
43701
|
-
created: stringType().default("2025-10-
|
|
43702
|
-
updated: stringType().default("2025-10-
|
|
43729
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43730
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43703
43731
|
guardrail_config: unionType([
|
|
43704
43732
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
43705
43733
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -43753,8 +43781,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43753
43781
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
43754
43782
|
id: stringType(),
|
|
43755
43783
|
description: stringType(),
|
|
43756
|
-
created: stringType().default("2025-10-
|
|
43757
|
-
updated: stringType().default("2025-10-
|
|
43784
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43785
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43758
43786
|
guardrailConfig: unionType([
|
|
43759
43787
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
43760
43788
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -43878,8 +43906,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43878
43906
|
ResponseBodyPython$inboundSchema = objectType({
|
|
43879
43907
|
_id: stringType(),
|
|
43880
43908
|
description: stringType(),
|
|
43881
|
-
created: stringType().default("2025-10-
|
|
43882
|
-
updated: stringType().default("2025-10-
|
|
43909
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43910
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43883
43911
|
guardrail_config: unionType([
|
|
43884
43912
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
43885
43913
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -43896,8 +43924,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43896
43924
|
ResponseBodyPython$outboundSchema = objectType({
|
|
43897
43925
|
id: stringType(),
|
|
43898
43926
|
description: stringType(),
|
|
43899
|
-
created: stringType().default("2025-10-
|
|
43900
|
-
updated: stringType().default("2025-10-
|
|
43927
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43928
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43901
43929
|
guardrailConfig: unionType([
|
|
43902
43930
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
43903
43931
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -43990,8 +44018,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43990
44018
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
43991
44019
|
_id: stringType(),
|
|
43992
44020
|
description: stringType(),
|
|
43993
|
-
created: stringType().default("2025-10-
|
|
43994
|
-
updated: stringType().default("2025-10-
|
|
44021
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44022
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
43995
44023
|
guardrail_config: unionType([
|
|
43996
44024
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
43997
44025
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -44011,8 +44039,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44011
44039
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
44012
44040
|
id: stringType(),
|
|
44013
44041
|
description: stringType(),
|
|
44014
|
-
created: stringType().default("2025-10-
|
|
44015
|
-
updated: stringType().default("2025-10-
|
|
44042
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44043
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44016
44044
|
guardrailConfig: unionType([
|
|
44017
44045
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
44018
44046
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -44102,8 +44130,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44102
44130
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
44103
44131
|
_id: stringType(),
|
|
44104
44132
|
description: stringType(),
|
|
44105
|
-
created: stringType().default("2025-10-
|
|
44106
|
-
updated: stringType().default("2025-10-
|
|
44133
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44134
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44107
44135
|
guardrail_config: unionType([
|
|
44108
44136
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
44109
44137
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -44120,8 +44148,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44120
44148
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
44121
44149
|
id: stringType(),
|
|
44122
44150
|
description: stringType(),
|
|
44123
|
-
created: stringType().default("2025-10-
|
|
44124
|
-
updated: stringType().default("2025-10-
|
|
44151
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44152
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44125
44153
|
guardrailConfig: unionType([
|
|
44126
44154
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
44127
44155
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -44208,8 +44236,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44208
44236
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
44209
44237
|
_id: stringType(),
|
|
44210
44238
|
description: stringType(),
|
|
44211
|
-
created: stringType().default("2025-10-
|
|
44212
|
-
updated: stringType().default("2025-10-
|
|
44239
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44240
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44213
44241
|
guardrail_config: unionType([
|
|
44214
44242
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
44215
44243
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -44227,8 +44255,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44227
44255
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
44228
44256
|
id: stringType(),
|
|
44229
44257
|
description: stringType(),
|
|
44230
|
-
created: stringType().default("2025-10-
|
|
44231
|
-
updated: stringType().default("2025-10-
|
|
44258
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44259
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
44232
44260
|
guardrailConfig: unionType([
|
|
44233
44261
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
44234
44262
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -47260,7 +47288,7 @@ var init_createtool = __esm(() => {
|
|
|
47260
47288
|
CreateToolRequestBodyHttp$.outboundSchema = CreateToolRequestBodyHttp$outboundSchema;
|
|
47261
47289
|
})(CreateToolRequestBodyHttp$ ||= {});
|
|
47262
47290
|
RequestBody3$inboundSchema = objectType({
|
|
47263
|
-
_id: stringType().default("
|
|
47291
|
+
_id: stringType().default("01K83NPC3GDBEE723RGHDKFEN5"),
|
|
47264
47292
|
path: stringType(),
|
|
47265
47293
|
key: stringType(),
|
|
47266
47294
|
display_name: stringType().optional(),
|
|
@@ -47275,7 +47303,7 @@ var init_createtool = __esm(() => {
|
|
|
47275
47303
|
});
|
|
47276
47304
|
});
|
|
47277
47305
|
RequestBody3$outboundSchema = objectType({
|
|
47278
|
-
id: stringType().default("
|
|
47306
|
+
id: stringType().default("01K83NPC3GDBEE723RGHDKFEN5"),
|
|
47279
47307
|
path: stringType(),
|
|
47280
47308
|
key: stringType(),
|
|
47281
47309
|
displayName: stringType().optional(),
|
|
@@ -47322,7 +47350,7 @@ var init_createtool = __esm(() => {
|
|
|
47322
47350
|
RequestBodyJsonSchema$.outboundSchema = RequestBodyJsonSchema$outboundSchema;
|
|
47323
47351
|
})(RequestBodyJsonSchema$ ||= {});
|
|
47324
47352
|
RequestBody2$inboundSchema = objectType({
|
|
47325
|
-
_id: stringType().default("
|
|
47353
|
+
_id: stringType().default("01K83NPC3GKKJ1F0S0E2P7QZDK"),
|
|
47326
47354
|
path: stringType(),
|
|
47327
47355
|
key: stringType(),
|
|
47328
47356
|
display_name: stringType().optional(),
|
|
@@ -47338,7 +47366,7 @@ var init_createtool = __esm(() => {
|
|
|
47338
47366
|
});
|
|
47339
47367
|
});
|
|
47340
47368
|
RequestBody2$outboundSchema = objectType({
|
|
47341
|
-
id: stringType().default("
|
|
47369
|
+
id: stringType().default("01K83NPC3GKKJ1F0S0E2P7QZDK"),
|
|
47342
47370
|
path: stringType(),
|
|
47343
47371
|
key: stringType(),
|
|
47344
47372
|
displayName: stringType().optional(),
|
|
@@ -47466,7 +47494,7 @@ var init_createtool = __esm(() => {
|
|
|
47466
47494
|
ResponseBodyCodeTool$.outboundSchema = ResponseBodyCodeTool$outboundSchema;
|
|
47467
47495
|
})(ResponseBodyCodeTool$ ||= {});
|
|
47468
47496
|
ResponseBody5$inboundSchema = objectType({
|
|
47469
|
-
_id: stringType().default("
|
|
47497
|
+
_id: stringType().default("01K83NPC3FQZ0YJZEX8P0BRMVW"),
|
|
47470
47498
|
path: stringType(),
|
|
47471
47499
|
key: stringType(),
|
|
47472
47500
|
display_name: stringType().optional(),
|
|
@@ -47494,7 +47522,7 @@ var init_createtool = __esm(() => {
|
|
|
47494
47522
|
});
|
|
47495
47523
|
});
|
|
47496
47524
|
ResponseBody5$outboundSchema = objectType({
|
|
47497
|
-
id: stringType().default("
|
|
47525
|
+
id: stringType().default("01K83NPC3FQZ0YJZEX8P0BRMVW"),
|
|
47498
47526
|
path: stringType(),
|
|
47499
47527
|
key: stringType(),
|
|
47500
47528
|
displayName: stringType().optional(),
|
|
@@ -47612,7 +47640,7 @@ var init_createtool = __esm(() => {
|
|
|
47612
47640
|
ResponseBodyMcp$.outboundSchema = ResponseBodyMcp$outboundSchema;
|
|
47613
47641
|
})(ResponseBodyMcp$ ||= {});
|
|
47614
47642
|
ResponseBody4$inboundSchema = objectType({
|
|
47615
|
-
_id: stringType().default("
|
|
47643
|
+
_id: stringType().default("01K83NPC3DAW8CVGHMEXA4G12T"),
|
|
47616
47644
|
path: stringType(),
|
|
47617
47645
|
key: stringType(),
|
|
47618
47646
|
display_name: stringType().optional(),
|
|
@@ -47639,7 +47667,7 @@ var init_createtool = __esm(() => {
|
|
|
47639
47667
|
});
|
|
47640
47668
|
});
|
|
47641
47669
|
ResponseBody4$outboundSchema = objectType({
|
|
47642
|
-
id: stringType().default("
|
|
47670
|
+
id: stringType().default("01K83NPC3DAW8CVGHMEXA4G12T"),
|
|
47643
47671
|
path: stringType(),
|
|
47644
47672
|
key: stringType(),
|
|
47645
47673
|
displayName: stringType().optional(),
|
|
@@ -47754,7 +47782,7 @@ var init_createtool = __esm(() => {
|
|
|
47754
47782
|
CreateToolResponseBodyHttp$.outboundSchema = CreateToolResponseBodyHttp$outboundSchema;
|
|
47755
47783
|
})(CreateToolResponseBodyHttp$ ||= {});
|
|
47756
47784
|
ResponseBody3$inboundSchema = objectType({
|
|
47757
|
-
_id: stringType().default("
|
|
47785
|
+
_id: stringType().default("01K83NPC3DEXRXJ76V32PF7W6B"),
|
|
47758
47786
|
path: stringType(),
|
|
47759
47787
|
key: stringType(),
|
|
47760
47788
|
display_name: stringType().optional(),
|
|
@@ -47781,7 +47809,7 @@ var init_createtool = __esm(() => {
|
|
|
47781
47809
|
});
|
|
47782
47810
|
});
|
|
47783
47811
|
ResponseBody3$outboundSchema = objectType({
|
|
47784
|
-
id: stringType().default("
|
|
47812
|
+
id: stringType().default("01K83NPC3DEXRXJ76V32PF7W6B"),
|
|
47785
47813
|
path: stringType(),
|
|
47786
47814
|
key: stringType(),
|
|
47787
47815
|
displayName: stringType().optional(),
|
|
@@ -47840,7 +47868,7 @@ var init_createtool = __esm(() => {
|
|
|
47840
47868
|
ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
|
|
47841
47869
|
})(ResponseBodyJsonSchema$ ||= {});
|
|
47842
47870
|
ResponseBody2$inboundSchema = objectType({
|
|
47843
|
-
_id: stringType().default("
|
|
47871
|
+
_id: stringType().default("01K83NPC3CJDV03YFR34JB89NC"),
|
|
47844
47872
|
path: stringType(),
|
|
47845
47873
|
key: stringType(),
|
|
47846
47874
|
display_name: stringType().optional(),
|
|
@@ -47868,7 +47896,7 @@ var init_createtool = __esm(() => {
|
|
|
47868
47896
|
});
|
|
47869
47897
|
});
|
|
47870
47898
|
ResponseBody2$outboundSchema = objectType({
|
|
47871
|
-
id: stringType().default("
|
|
47899
|
+
id: stringType().default("01K83NPC3CJDV03YFR34JB89NC"),
|
|
47872
47900
|
path: stringType(),
|
|
47873
47901
|
key: stringType(),
|
|
47874
47902
|
displayName: stringType().optional(),
|
|
@@ -47928,7 +47956,7 @@ var init_createtool = __esm(() => {
|
|
|
47928
47956
|
CreateToolResponseBodyFunction$.outboundSchema = CreateToolResponseBodyFunction$outboundSchema;
|
|
47929
47957
|
})(CreateToolResponseBodyFunction$ ||= {});
|
|
47930
47958
|
ResponseBody1$inboundSchema = objectType({
|
|
47931
|
-
_id: stringType().default("
|
|
47959
|
+
_id: stringType().default("01K83NPC39MEE26S5VE1C8D4GQ"),
|
|
47932
47960
|
path: stringType(),
|
|
47933
47961
|
key: stringType(),
|
|
47934
47962
|
display_name: stringType().optional(),
|
|
@@ -47955,7 +47983,7 @@ var init_createtool = __esm(() => {
|
|
|
47955
47983
|
});
|
|
47956
47984
|
});
|
|
47957
47985
|
ResponseBody1$outboundSchema = objectType({
|
|
47958
|
-
id: stringType().default("
|
|
47986
|
+
id: stringType().default("01K83NPC39MEE26S5VE1C8D4GQ"),
|
|
47959
47987
|
path: stringType(),
|
|
47960
47988
|
key: stringType(),
|
|
47961
47989
|
displayName: stringType().optional(),
|
|
@@ -56036,7 +56064,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56036
56064
|
DuplicateToolResponseBodyCodeTool$.outboundSchema = DuplicateToolResponseBodyCodeTool$outboundSchema;
|
|
56037
56065
|
})(DuplicateToolResponseBodyCodeTool$ ||= {});
|
|
56038
56066
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
56039
|
-
_id: stringType().default("
|
|
56067
|
+
_id: stringType().default("01K83NPC3X9MPQMYGHX1EQT40G"),
|
|
56040
56068
|
path: stringType(),
|
|
56041
56069
|
key: stringType(),
|
|
56042
56070
|
display_name: stringType().optional(),
|
|
@@ -56064,7 +56092,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56064
56092
|
});
|
|
56065
56093
|
});
|
|
56066
56094
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
56067
|
-
id: stringType().default("
|
|
56095
|
+
id: stringType().default("01K83NPC3X9MPQMYGHX1EQT40G"),
|
|
56068
56096
|
path: stringType(),
|
|
56069
56097
|
key: stringType(),
|
|
56070
56098
|
displayName: stringType().optional(),
|
|
@@ -56182,7 +56210,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56182
56210
|
DuplicateToolResponseBodyMcp$.outboundSchema = DuplicateToolResponseBodyMcp$outboundSchema;
|
|
56183
56211
|
})(DuplicateToolResponseBodyMcp$ ||= {});
|
|
56184
56212
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
56185
|
-
_id: stringType().default("
|
|
56213
|
+
_id: stringType().default("01K83NPC3XYVTXHJ7Z7H1J38BN"),
|
|
56186
56214
|
path: stringType(),
|
|
56187
56215
|
key: stringType(),
|
|
56188
56216
|
display_name: stringType().optional(),
|
|
@@ -56209,7 +56237,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56209
56237
|
});
|
|
56210
56238
|
});
|
|
56211
56239
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
56212
|
-
id: stringType().default("
|
|
56240
|
+
id: stringType().default("01K83NPC3XYVTXHJ7Z7H1J38BN"),
|
|
56213
56241
|
path: stringType(),
|
|
56214
56242
|
key: stringType(),
|
|
56215
56243
|
displayName: stringType().optional(),
|
|
@@ -56324,7 +56352,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56324
56352
|
DuplicateToolResponseBodyHttp$.outboundSchema = DuplicateToolResponseBodyHttp$outboundSchema;
|
|
56325
56353
|
})(DuplicateToolResponseBodyHttp$ ||= {});
|
|
56326
56354
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
56327
|
-
_id: stringType().default("
|
|
56355
|
+
_id: stringType().default("01K83NPC3NCCJHYMD6MF22FD0T"),
|
|
56328
56356
|
path: stringType(),
|
|
56329
56357
|
key: stringType(),
|
|
56330
56358
|
display_name: stringType().optional(),
|
|
@@ -56351,7 +56379,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56351
56379
|
});
|
|
56352
56380
|
});
|
|
56353
56381
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
56354
|
-
id: stringType().default("
|
|
56382
|
+
id: stringType().default("01K83NPC3NCCJHYMD6MF22FD0T"),
|
|
56355
56383
|
path: stringType(),
|
|
56356
56384
|
key: stringType(),
|
|
56357
56385
|
displayName: stringType().optional(),
|
|
@@ -56410,7 +56438,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56410
56438
|
DuplicateToolResponseBodyJsonSchema$.outboundSchema = DuplicateToolResponseBodyJsonSchema$outboundSchema;
|
|
56411
56439
|
})(DuplicateToolResponseBodyJsonSchema$ ||= {});
|
|
56412
56440
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
56413
|
-
_id: stringType().default("
|
|
56441
|
+
_id: stringType().default("01K83NPC3NKJD9JRKQ5BFR3R9R"),
|
|
56414
56442
|
path: stringType(),
|
|
56415
56443
|
key: stringType(),
|
|
56416
56444
|
display_name: stringType().optional(),
|
|
@@ -56438,7 +56466,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56438
56466
|
});
|
|
56439
56467
|
});
|
|
56440
56468
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
56441
|
-
id: stringType().default("
|
|
56469
|
+
id: stringType().default("01K83NPC3NKJD9JRKQ5BFR3R9R"),
|
|
56442
56470
|
path: stringType(),
|
|
56443
56471
|
key: stringType(),
|
|
56444
56472
|
displayName: stringType().optional(),
|
|
@@ -56498,7 +56526,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56498
56526
|
DuplicateToolResponseBodyFunction$.outboundSchema = DuplicateToolResponseBodyFunction$outboundSchema;
|
|
56499
56527
|
})(DuplicateToolResponseBodyFunction$ ||= {});
|
|
56500
56528
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
56501
|
-
_id: stringType().default("
|
|
56529
|
+
_id: stringType().default("01K83NPC3M28GVYDP4W1PB6GZH"),
|
|
56502
56530
|
path: stringType(),
|
|
56503
56531
|
key: stringType(),
|
|
56504
56532
|
display_name: stringType().optional(),
|
|
@@ -56525,7 +56553,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56525
56553
|
});
|
|
56526
56554
|
});
|
|
56527
56555
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
56528
|
-
id: stringType().default("
|
|
56556
|
+
id: stringType().default("01K83NPC3M28GVYDP4W1PB6GZH"),
|
|
56529
56557
|
path: stringType(),
|
|
56530
56558
|
key: stringType(),
|
|
56531
56559
|
displayName: stringType().optional(),
|
|
@@ -58171,7 +58199,7 @@ var init_fileget = __esm(() => {
|
|
|
58171
58199
|
bytes: numberType(),
|
|
58172
58200
|
file_name: stringType(),
|
|
58173
58201
|
workspace_id: stringType(),
|
|
58174
|
-
created: stringType().datetime({ offset: true }).default("2025-10-
|
|
58202
|
+
created: stringType().datetime({ offset: true }).default("2025-10-21T15:20:01.476Z").transform((v2) => new Date(v2))
|
|
58175
58203
|
}).transform((v2) => {
|
|
58176
58204
|
return remap(v2, {
|
|
58177
58205
|
_id: "id",
|
|
@@ -58187,7 +58215,7 @@ var init_fileget = __esm(() => {
|
|
|
58187
58215
|
bytes: numberType(),
|
|
58188
58216
|
fileName: stringType(),
|
|
58189
58217
|
workspaceId: stringType(),
|
|
58190
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58218
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58191
58219
|
}).transform((v2) => {
|
|
58192
58220
|
return remap(v2, {
|
|
58193
58221
|
id: "_id",
|
|
@@ -58258,7 +58286,7 @@ var init_filelist = __esm(() => {
|
|
|
58258
58286
|
bytes: numberType(),
|
|
58259
58287
|
file_name: stringType(),
|
|
58260
58288
|
workspace_id: stringType(),
|
|
58261
|
-
created: stringType().datetime({ offset: true }).default("2025-10-
|
|
58289
|
+
created: stringType().datetime({ offset: true }).default("2025-10-21T15:20:01.476Z").transform((v2) => new Date(v2))
|
|
58262
58290
|
}).transform((v2) => {
|
|
58263
58291
|
return remap(v2, {
|
|
58264
58292
|
_id: "id",
|
|
@@ -58274,7 +58302,7 @@ var init_filelist = __esm(() => {
|
|
|
58274
58302
|
bytes: numberType(),
|
|
58275
58303
|
fileName: stringType(),
|
|
58276
58304
|
workspaceId: stringType(),
|
|
58277
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58305
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58278
58306
|
}).transform((v2) => {
|
|
58279
58307
|
return remap(v2, {
|
|
58280
58308
|
id: "_id",
|
|
@@ -58406,7 +58434,7 @@ var init_fileupload = __esm(() => {
|
|
|
58406
58434
|
bytes: numberType(),
|
|
58407
58435
|
file_name: stringType(),
|
|
58408
58436
|
workspace_id: stringType(),
|
|
58409
|
-
created: stringType().datetime({ offset: true }).default("2025-10-
|
|
58437
|
+
created: stringType().datetime({ offset: true }).default("2025-10-21T15:20:01.476Z").transform((v2) => new Date(v2))
|
|
58410
58438
|
}).transform((v2) => {
|
|
58411
58439
|
return remap(v2, {
|
|
58412
58440
|
_id: "id",
|
|
@@ -58422,7 +58450,7 @@ var init_fileupload = __esm(() => {
|
|
|
58422
58450
|
bytes: numberType(),
|
|
58423
58451
|
fileName: stringType(),
|
|
58424
58452
|
workspaceId: stringType(),
|
|
58425
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58453
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58426
58454
|
}).transform((v2) => {
|
|
58427
58455
|
return remap(v2, {
|
|
58428
58456
|
id: "_id",
|
|
@@ -60366,7 +60394,7 @@ var init_getalltools = __esm(() => {
|
|
|
60366
60394
|
DataCodeTool$.outboundSchema = DataCodeTool$outboundSchema;
|
|
60367
60395
|
})(DataCodeTool$ ||= {});
|
|
60368
60396
|
Data5$inboundSchema = objectType({
|
|
60369
|
-
_id: stringType().default("
|
|
60397
|
+
_id: stringType().default("01K83NPC31BZ5SX8KFXF5QGENT"),
|
|
60370
60398
|
path: stringType(),
|
|
60371
60399
|
key: stringType(),
|
|
60372
60400
|
display_name: stringType().optional(),
|
|
@@ -60394,7 +60422,7 @@ var init_getalltools = __esm(() => {
|
|
|
60394
60422
|
});
|
|
60395
60423
|
});
|
|
60396
60424
|
Data5$outboundSchema = objectType({
|
|
60397
|
-
id: stringType().default("
|
|
60425
|
+
id: stringType().default("01K83NPC31BZ5SX8KFXF5QGENT"),
|
|
60398
60426
|
path: stringType(),
|
|
60399
60427
|
key: stringType(),
|
|
60400
60428
|
displayName: stringType().optional(),
|
|
@@ -60512,7 +60540,7 @@ var init_getalltools = __esm(() => {
|
|
|
60512
60540
|
DataMcp$.outboundSchema = DataMcp$outboundSchema;
|
|
60513
60541
|
})(DataMcp$ ||= {});
|
|
60514
60542
|
Data4$inboundSchema = objectType({
|
|
60515
|
-
_id: stringType().default("
|
|
60543
|
+
_id: stringType().default("01K83NPC30D0VFAFYBPFK3QSJD"),
|
|
60516
60544
|
path: stringType(),
|
|
60517
60545
|
key: stringType(),
|
|
60518
60546
|
display_name: stringType().optional(),
|
|
@@ -60539,7 +60567,7 @@ var init_getalltools = __esm(() => {
|
|
|
60539
60567
|
});
|
|
60540
60568
|
});
|
|
60541
60569
|
Data4$outboundSchema = objectType({
|
|
60542
|
-
id: stringType().default("
|
|
60570
|
+
id: stringType().default("01K83NPC30D0VFAFYBPFK3QSJD"),
|
|
60543
60571
|
path: stringType(),
|
|
60544
60572
|
key: stringType(),
|
|
60545
60573
|
displayName: stringType().optional(),
|
|
@@ -60654,7 +60682,7 @@ var init_getalltools = __esm(() => {
|
|
|
60654
60682
|
GetAllToolsDataHttp$.outboundSchema = GetAllToolsDataHttp$outboundSchema;
|
|
60655
60683
|
})(GetAllToolsDataHttp$ ||= {});
|
|
60656
60684
|
Data3$inboundSchema = objectType({
|
|
60657
|
-
_id: stringType().default("
|
|
60685
|
+
_id: stringType().default("01K83NPC2Z7CZXV4YSGK7KKCHB"),
|
|
60658
60686
|
path: stringType(),
|
|
60659
60687
|
key: stringType(),
|
|
60660
60688
|
display_name: stringType().optional(),
|
|
@@ -60681,7 +60709,7 @@ var init_getalltools = __esm(() => {
|
|
|
60681
60709
|
});
|
|
60682
60710
|
});
|
|
60683
60711
|
Data3$outboundSchema = objectType({
|
|
60684
|
-
id: stringType().default("
|
|
60712
|
+
id: stringType().default("01K83NPC2Z7CZXV4YSGK7KKCHB"),
|
|
60685
60713
|
path: stringType(),
|
|
60686
60714
|
key: stringType(),
|
|
60687
60715
|
displayName: stringType().optional(),
|
|
@@ -60740,7 +60768,7 @@ var init_getalltools = __esm(() => {
|
|
|
60740
60768
|
DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
|
|
60741
60769
|
})(DataJsonSchema$ ||= {});
|
|
60742
60770
|
Data2$inboundSchema = objectType({
|
|
60743
|
-
_id: stringType().default("
|
|
60771
|
+
_id: stringType().default("01K83NPC2ZH3NBCP2K4YXKACJF"),
|
|
60744
60772
|
path: stringType(),
|
|
60745
60773
|
key: stringType(),
|
|
60746
60774
|
display_name: stringType().optional(),
|
|
@@ -60768,7 +60796,7 @@ var init_getalltools = __esm(() => {
|
|
|
60768
60796
|
});
|
|
60769
60797
|
});
|
|
60770
60798
|
Data2$outboundSchema = objectType({
|
|
60771
|
-
id: stringType().default("
|
|
60799
|
+
id: stringType().default("01K83NPC2ZH3NBCP2K4YXKACJF"),
|
|
60772
60800
|
path: stringType(),
|
|
60773
60801
|
key: stringType(),
|
|
60774
60802
|
displayName: stringType().optional(),
|
|
@@ -60828,7 +60856,7 @@ var init_getalltools = __esm(() => {
|
|
|
60828
60856
|
GetAllToolsDataFunction$.outboundSchema = GetAllToolsDataFunction$outboundSchema;
|
|
60829
60857
|
})(GetAllToolsDataFunction$ ||= {});
|
|
60830
60858
|
Data1$inboundSchema = objectType({
|
|
60831
|
-
_id: stringType().default("
|
|
60859
|
+
_id: stringType().default("01K83NPC2Y02ZAPGD6QKFVA0P9"),
|
|
60832
60860
|
path: stringType(),
|
|
60833
60861
|
key: stringType(),
|
|
60834
60862
|
display_name: stringType().optional(),
|
|
@@ -60855,7 +60883,7 @@ var init_getalltools = __esm(() => {
|
|
|
60855
60883
|
});
|
|
60856
60884
|
});
|
|
60857
60885
|
Data1$outboundSchema = objectType({
|
|
60858
|
-
id: stringType().default("
|
|
60886
|
+
id: stringType().default("01K83NPC2Y02ZAPGD6QKFVA0P9"),
|
|
60859
60887
|
path: stringType(),
|
|
60860
60888
|
key: stringType(),
|
|
60861
60889
|
displayName: stringType().optional(),
|
|
@@ -61027,7 +61055,7 @@ var init_getbudget = __esm(() => {
|
|
|
61027
61055
|
is_active: booleanType(),
|
|
61028
61056
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
61029
61057
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61030
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
61058
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
61031
61059
|
}).transform((v2) => {
|
|
61032
61060
|
return remap(v2, {
|
|
61033
61061
|
_id: "id",
|
|
@@ -61043,7 +61071,7 @@ var init_getbudget = __esm(() => {
|
|
|
61043
61071
|
isActive: booleanType(),
|
|
61044
61072
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
61045
61073
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61046
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
61074
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
61047
61075
|
}).transform((v2) => {
|
|
61048
61076
|
return remap(v2, {
|
|
61049
61077
|
id: "_id",
|
|
@@ -61406,8 +61434,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61406
61434
|
DataTypescript$inboundSchema = objectType({
|
|
61407
61435
|
_id: stringType(),
|
|
61408
61436
|
description: stringType(),
|
|
61409
|
-
created: stringType().default("2025-10-
|
|
61410
|
-
updated: stringType().default("2025-10-
|
|
61437
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61438
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61411
61439
|
guardrail_config: unionType([
|
|
61412
61440
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
61413
61441
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -61424,8 +61452,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61424
61452
|
DataTypescript$outboundSchema = objectType({
|
|
61425
61453
|
id: stringType(),
|
|
61426
61454
|
description: stringType(),
|
|
61427
|
-
created: stringType().default("2025-10-
|
|
61428
|
-
updated: stringType().default("2025-10-
|
|
61455
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61456
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61429
61457
|
guardrailConfig: unionType([
|
|
61430
61458
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
61431
61459
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -61518,8 +61546,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61518
61546
|
DataRagas$inboundSchema = objectType({
|
|
61519
61547
|
_id: stringType(),
|
|
61520
61548
|
description: stringType(),
|
|
61521
|
-
created: stringType().default("2025-10-
|
|
61522
|
-
updated: stringType().default("2025-10-
|
|
61549
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61550
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61523
61551
|
guardrail_config: unionType([
|
|
61524
61552
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
61525
61553
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -61538,8 +61566,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61538
61566
|
DataRagas$outboundSchema = objectType({
|
|
61539
61567
|
id: stringType(),
|
|
61540
61568
|
description: stringType(),
|
|
61541
|
-
created: stringType().default("2025-10-
|
|
61542
|
-
updated: stringType().default("2025-10-
|
|
61569
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61570
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
61543
61571
|
guardrailConfig: unionType([
|
|
61544
61572
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
61545
61573
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -62292,8 +62320,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62292
62320
|
DataFunction$inboundSchema = objectType({
|
|
62293
62321
|
_id: stringType(),
|
|
62294
62322
|
description: stringType(),
|
|
62295
|
-
created: stringType().default("2025-10-
|
|
62296
|
-
updated: stringType().default("2025-10-
|
|
62323
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62324
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62297
62325
|
guardrail_config: unionType([
|
|
62298
62326
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
62299
62327
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -62347,8 +62375,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62347
62375
|
DataFunction$outboundSchema = objectType({
|
|
62348
62376
|
id: stringType(),
|
|
62349
62377
|
description: stringType(),
|
|
62350
|
-
created: stringType().default("2025-10-
|
|
62351
|
-
updated: stringType().default("2025-10-
|
|
62378
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62379
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62352
62380
|
guardrailConfig: unionType([
|
|
62353
62381
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
62354
62382
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -62472,8 +62500,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62472
62500
|
DataPython$inboundSchema = objectType({
|
|
62473
62501
|
_id: stringType(),
|
|
62474
62502
|
description: stringType(),
|
|
62475
|
-
created: stringType().default("2025-10-
|
|
62476
|
-
updated: stringType().default("2025-10-
|
|
62503
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62504
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62477
62505
|
guardrail_config: unionType([
|
|
62478
62506
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
62479
62507
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -62490,8 +62518,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62490
62518
|
DataPython$outboundSchema = objectType({
|
|
62491
62519
|
id: stringType(),
|
|
62492
62520
|
description: stringType(),
|
|
62493
|
-
created: stringType().default("2025-10-
|
|
62494
|
-
updated: stringType().default("2025-10-
|
|
62521
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62522
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62495
62523
|
guardrailConfig: unionType([
|
|
62496
62524
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
62497
62525
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -62584,8 +62612,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62584
62612
|
DataHTTP$inboundSchema = objectType({
|
|
62585
62613
|
_id: stringType(),
|
|
62586
62614
|
description: stringType(),
|
|
62587
|
-
created: stringType().default("2025-10-
|
|
62588
|
-
updated: stringType().default("2025-10-
|
|
62615
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62616
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62589
62617
|
guardrail_config: unionType([
|
|
62590
62618
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
62591
62619
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -62605,8 +62633,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62605
62633
|
DataHTTP$outboundSchema = objectType({
|
|
62606
62634
|
id: stringType(),
|
|
62607
62635
|
description: stringType(),
|
|
62608
|
-
created: stringType().default("2025-10-
|
|
62609
|
-
updated: stringType().default("2025-10-
|
|
62636
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62637
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62610
62638
|
guardrailConfig: unionType([
|
|
62611
62639
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
62612
62640
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -62696,8 +62724,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62696
62724
|
DataJSON$inboundSchema = objectType({
|
|
62697
62725
|
_id: stringType(),
|
|
62698
62726
|
description: stringType(),
|
|
62699
|
-
created: stringType().default("2025-10-
|
|
62700
|
-
updated: stringType().default("2025-10-
|
|
62727
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62728
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62701
62729
|
guardrail_config: unionType([
|
|
62702
62730
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
62703
62731
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -62714,8 +62742,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62714
62742
|
DataJSON$outboundSchema = objectType({
|
|
62715
62743
|
id: stringType(),
|
|
62716
62744
|
description: stringType(),
|
|
62717
|
-
created: stringType().default("2025-10-
|
|
62718
|
-
updated: stringType().default("2025-10-
|
|
62745
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62746
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62719
62747
|
guardrailConfig: unionType([
|
|
62720
62748
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
62721
62749
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -62802,8 +62830,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62802
62830
|
DataLLM$inboundSchema = objectType({
|
|
62803
62831
|
_id: stringType(),
|
|
62804
62832
|
description: stringType(),
|
|
62805
|
-
created: stringType().default("2025-10-
|
|
62806
|
-
updated: stringType().default("2025-10-
|
|
62833
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62834
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62807
62835
|
guardrail_config: unionType([
|
|
62808
62836
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
62809
62837
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -62821,8 +62849,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62821
62849
|
DataLLM$outboundSchema = objectType({
|
|
62822
62850
|
id: stringType(),
|
|
62823
62851
|
description: stringType(),
|
|
62824
|
-
created: stringType().default("2025-10-
|
|
62825
|
-
updated: stringType().default("2025-10-
|
|
62852
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62853
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
62826
62854
|
guardrailConfig: unionType([
|
|
62827
62855
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
62828
62856
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -66615,7 +66643,7 @@ var init_listbudgets = __esm(() => {
|
|
|
66615
66643
|
is_active: booleanType(),
|
|
66616
66644
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
66617
66645
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
66618
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
66646
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
66619
66647
|
}).transform((v2) => {
|
|
66620
66648
|
return remap(v2, {
|
|
66621
66649
|
_id: "id",
|
|
@@ -66631,7 +66659,7 @@ var init_listbudgets = __esm(() => {
|
|
|
66631
66659
|
isActive: booleanType(),
|
|
66632
66660
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
66633
66661
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
66634
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
66662
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
66635
66663
|
}).transform((v2) => {
|
|
66636
66664
|
return remap(v2, {
|
|
66637
66665
|
id: "_id",
|
|
@@ -66899,7 +66927,7 @@ var init_listcontacts = __esm(() => {
|
|
|
66899
66927
|
tags: arrayType(stringType()).optional(),
|
|
66900
66928
|
metadata: recordType(anyType()).optional(),
|
|
66901
66929
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
66902
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
66930
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2)),
|
|
66903
66931
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
66904
66932
|
}).transform((v2) => {
|
|
66905
66933
|
return remap(v2, {
|
|
@@ -66918,7 +66946,7 @@ var init_listcontacts = __esm(() => {
|
|
|
66918
66946
|
tags: arrayType(stringType()).optional(),
|
|
66919
66947
|
metadata: recordType(anyType()).optional(),
|
|
66920
66948
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
66921
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
66949
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString()),
|
|
66922
66950
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
66923
66951
|
}).transform((v2) => {
|
|
66924
66952
|
return remap(v2, {
|
|
@@ -67669,7 +67697,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
67669
67697
|
created_by_id: stringType().optional(),
|
|
67670
67698
|
updated_by_id: stringType().optional(),
|
|
67671
67699
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67672
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
67700
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
67673
67701
|
}).transform((v2) => {
|
|
67674
67702
|
return remap(v2, {
|
|
67675
67703
|
_id: "id",
|
|
@@ -67696,7 +67724,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
67696
67724
|
createdById: stringType().optional(),
|
|
67697
67725
|
updatedById: stringType().optional(),
|
|
67698
67726
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67699
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
67727
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
67700
67728
|
}).transform((v2) => {
|
|
67701
67729
|
return remap(v2, {
|
|
67702
67730
|
id: "_id",
|
|
@@ -67804,7 +67832,7 @@ var init_listdatasets = __esm(() => {
|
|
|
67804
67832
|
updated_by_id: stringType().optional(),
|
|
67805
67833
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
67806
67834
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67807
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
67835
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
67808
67836
|
}).transform((v2) => {
|
|
67809
67837
|
return remap(v2, {
|
|
67810
67838
|
_id: "id",
|
|
@@ -67824,7 +67852,7 @@ var init_listdatasets = __esm(() => {
|
|
|
67824
67852
|
updatedById: stringType().optional(),
|
|
67825
67853
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
67826
67854
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67827
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
67855
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
67828
67856
|
}).transform((v2) => {
|
|
67829
67857
|
return remap(v2, {
|
|
67830
67858
|
id: "_id",
|
|
@@ -67929,7 +67957,7 @@ var init_listdatasources = __esm(() => {
|
|
|
67929
67957
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
67930
67958
|
})(ListDatasourcesStatus$ ||= {});
|
|
67931
67959
|
ListDatasourcesData$inboundSchema = objectType({
|
|
67932
|
-
_id: stringType().default("
|
|
67960
|
+
_id: stringType().default("01K83NPC012M3EWV0HWK1Q0ZFG"),
|
|
67933
67961
|
display_name: stringType(),
|
|
67934
67962
|
description: stringType().optional(),
|
|
67935
67963
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -67952,7 +67980,7 @@ var init_listdatasources = __esm(() => {
|
|
|
67952
67980
|
});
|
|
67953
67981
|
});
|
|
67954
67982
|
ListDatasourcesData$outboundSchema = objectType({
|
|
67955
|
-
id: stringType().default("
|
|
67983
|
+
id: stringType().default("01K83NPC012M3EWV0HWK1Q0ZFG"),
|
|
67956
67984
|
displayName: stringType(),
|
|
67957
67985
|
description: stringType().optional(),
|
|
67958
67986
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -69639,7 +69667,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
69639
69667
|
tags: arrayType(stringType()).optional(),
|
|
69640
69668
|
metadata: recordType(anyType()).optional(),
|
|
69641
69669
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
69642
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
69670
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
69643
69671
|
}).transform((v2) => {
|
|
69644
69672
|
return remap(v2, {
|
|
69645
69673
|
_id: "id",
|
|
@@ -69657,7 +69685,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
69657
69685
|
tags: arrayType(stringType()).optional(),
|
|
69658
69686
|
metadata: recordType(anyType()).optional(),
|
|
69659
69687
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
69660
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
69688
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
69661
69689
|
}).transform((v2) => {
|
|
69662
69690
|
return remap(v2, {
|
|
69663
69691
|
id: "_id",
|
|
@@ -70370,7 +70398,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
70370
70398
|
created_by_id: stringType().optional(),
|
|
70371
70399
|
updated_by_id: stringType().optional(),
|
|
70372
70400
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70373
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
70401
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
70374
70402
|
}).transform((v2) => {
|
|
70375
70403
|
return remap(v2, {
|
|
70376
70404
|
_id: "id",
|
|
@@ -70397,7 +70425,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
70397
70425
|
createdById: stringType().optional(),
|
|
70398
70426
|
updatedById: stringType().optional(),
|
|
70399
70427
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70400
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
70428
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
70401
70429
|
}).transform((v2) => {
|
|
70402
70430
|
return remap(v2, {
|
|
70403
70431
|
id: "_id",
|
|
@@ -70468,7 +70496,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
70468
70496
|
updated_by_id: stringType().optional(),
|
|
70469
70497
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
70470
70498
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70471
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
70499
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
70472
70500
|
}).transform((v2) => {
|
|
70473
70501
|
return remap(v2, {
|
|
70474
70502
|
_id: "id",
|
|
@@ -70488,7 +70516,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
70488
70516
|
updatedById: stringType().optional(),
|
|
70489
70517
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
70490
70518
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70491
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
70519
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
70492
70520
|
}).transform((v2) => {
|
|
70493
70521
|
return remap(v2, {
|
|
70494
70522
|
id: "_id",
|
|
@@ -70546,7 +70574,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
70546
70574
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
70547
70575
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
70548
70576
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
70549
|
-
_id: stringType().default("
|
|
70577
|
+
_id: stringType().default("01K83NPC02KAQ1NCCWJRZD8XCC"),
|
|
70550
70578
|
display_name: stringType(),
|
|
70551
70579
|
description: stringType().optional(),
|
|
70552
70580
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -70569,7 +70597,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
70569
70597
|
});
|
|
70570
70598
|
});
|
|
70571
70599
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
70572
|
-
id: stringType().default("
|
|
70600
|
+
id: stringType().default("01K83NPC02KAQ1NCCWJRZD8XCC"),
|
|
70573
70601
|
displayName: stringType(),
|
|
70574
70602
|
description: stringType().optional(),
|
|
70575
70603
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -71242,7 +71270,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71242
71270
|
RetrieveToolResponseBodyCodeTool$.outboundSchema = RetrieveToolResponseBodyCodeTool$outboundSchema;
|
|
71243
71271
|
})(RetrieveToolResponseBodyCodeTool$ ||= {});
|
|
71244
71272
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
71245
|
-
_id: stringType().default("
|
|
71273
|
+
_id: stringType().default("01K83NPC3ZCE6A8SJYB68M3G4M"),
|
|
71246
71274
|
path: stringType(),
|
|
71247
71275
|
key: stringType(),
|
|
71248
71276
|
display_name: stringType().optional(),
|
|
@@ -71270,7 +71298,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71270
71298
|
});
|
|
71271
71299
|
});
|
|
71272
71300
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
71273
|
-
id: stringType().default("
|
|
71301
|
+
id: stringType().default("01K83NPC3ZCE6A8SJYB68M3G4M"),
|
|
71274
71302
|
path: stringType(),
|
|
71275
71303
|
key: stringType(),
|
|
71276
71304
|
displayName: stringType().optional(),
|
|
@@ -71388,7 +71416,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71388
71416
|
RetrieveToolResponseBodyMcp$.outboundSchema = RetrieveToolResponseBodyMcp$outboundSchema;
|
|
71389
71417
|
})(RetrieveToolResponseBodyMcp$ ||= {});
|
|
71390
71418
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
71391
|
-
_id: stringType().default("
|
|
71419
|
+
_id: stringType().default("01K83NPC3Z9QPJYHDMJN9C9TAW"),
|
|
71392
71420
|
path: stringType(),
|
|
71393
71421
|
key: stringType(),
|
|
71394
71422
|
display_name: stringType().optional(),
|
|
@@ -71415,7 +71443,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71415
71443
|
});
|
|
71416
71444
|
});
|
|
71417
71445
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
71418
|
-
id: stringType().default("
|
|
71446
|
+
id: stringType().default("01K83NPC3Z9QPJYHDMJN9C9TAW"),
|
|
71419
71447
|
path: stringType(),
|
|
71420
71448
|
key: stringType(),
|
|
71421
71449
|
displayName: stringType().optional(),
|
|
@@ -71530,7 +71558,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71530
71558
|
RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
|
|
71531
71559
|
})(RetrieveToolResponseBodyHttp$ ||= {});
|
|
71532
71560
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
71533
|
-
_id: stringType().default("
|
|
71561
|
+
_id: stringType().default("01K83NPC3Y27GKB546C8YQ6C8S"),
|
|
71534
71562
|
path: stringType(),
|
|
71535
71563
|
key: stringType(),
|
|
71536
71564
|
display_name: stringType().optional(),
|
|
@@ -71557,7 +71585,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71557
71585
|
});
|
|
71558
71586
|
});
|
|
71559
71587
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
71560
|
-
id: stringType().default("
|
|
71588
|
+
id: stringType().default("01K83NPC3Y27GKB546C8YQ6C8S"),
|
|
71561
71589
|
path: stringType(),
|
|
71562
71590
|
key: stringType(),
|
|
71563
71591
|
displayName: stringType().optional(),
|
|
@@ -71616,7 +71644,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71616
71644
|
RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
|
|
71617
71645
|
})(RetrieveToolResponseBodyJsonSchema$ ||= {});
|
|
71618
71646
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
71619
|
-
_id: stringType().default("
|
|
71647
|
+
_id: stringType().default("01K83NPC3YB6V2ZTFNWSNBSZ04"),
|
|
71620
71648
|
path: stringType(),
|
|
71621
71649
|
key: stringType(),
|
|
71622
71650
|
display_name: stringType().optional(),
|
|
@@ -71644,7 +71672,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71644
71672
|
});
|
|
71645
71673
|
});
|
|
71646
71674
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
71647
|
-
id: stringType().default("
|
|
71675
|
+
id: stringType().default("01K83NPC3YB6V2ZTFNWSNBSZ04"),
|
|
71648
71676
|
path: stringType(),
|
|
71649
71677
|
key: stringType(),
|
|
71650
71678
|
displayName: stringType().optional(),
|
|
@@ -71704,7 +71732,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71704
71732
|
RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
|
|
71705
71733
|
})(RetrieveToolResponseBodyFunction$ ||= {});
|
|
71706
71734
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
71707
|
-
_id: stringType().default("
|
|
71735
|
+
_id: stringType().default("01K83NPC3YWM2TB6DE9RSEAEP2"),
|
|
71708
71736
|
path: stringType(),
|
|
71709
71737
|
key: stringType(),
|
|
71710
71738
|
display_name: stringType().optional(),
|
|
@@ -71731,7 +71759,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71731
71759
|
});
|
|
71732
71760
|
});
|
|
71733
71761
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
71734
|
-
id: stringType().default("
|
|
71762
|
+
id: stringType().default("01K83NPC3YWM2TB6DE9RSEAEP2"),
|
|
71735
71763
|
path: stringType(),
|
|
71736
71764
|
key: stringType(),
|
|
71737
71765
|
displayName: stringType().optional(),
|
|
@@ -71782,7 +71810,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71782
71810
|
});
|
|
71783
71811
|
|
|
71784
71812
|
// src/models/operations/runagent.ts
|
|
71785
|
-
var RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleToolMessage$, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRoleUserMessage$, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentRole$, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, PublicMessagePartToolResultPart$, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, RunAgentPublicMessagePartAgentsKind$, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileFileInURIFormat$, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, FileBinaryFormat$, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, RunAgentPublicMessagePartFile$, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, PublicMessagePartFilePart$, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, RunAgentPublicMessagePartKind$, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, PublicMessagePartTextPart$, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentPublicMessagePart$, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentMessage$, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentContact$, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentThread$, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentMemory$, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentKnowledgeBases$,
|
|
71813
|
+
var RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleToolMessage$, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRoleUserMessage$, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentRole$, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, PublicMessagePartToolResultPart$, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, RunAgentPublicMessagePartAgentsKind$, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileFileInURIFormat$, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, FileBinaryFormat$, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, RunAgentPublicMessagePartFile$, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, PublicMessagePartFilePart$, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, RunAgentPublicMessagePartKind$, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, PublicMessagePartTextPart$, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentPublicMessagePart$, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentMessage$, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentContact$, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentThread$, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentMemory$, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentKnowledgeBases$, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, RunAgentTeamOfAgents$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunction$, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, FunctionToolRun$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$, Language$inboundSchema, Language$outboundSchema, Language$, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeTool$, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, CodeToolRun$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$, Method$inboundSchema, Method$outboundSchema, Method$, Blueprint$inboundSchema, Blueprint$outboundSchema, Blueprint$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$, DefaultValue$inboundSchema, DefaultValue$outboundSchema, DefaultValue$, Arguments$inboundSchema, Arguments$outboundSchema, Arguments$, Http$inboundSchema, Http$outboundSchema, Http$, HTTPToolRun$inboundSchema, HTTPToolRun$outboundSchema, HTTPToolRun$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, AgentToolInputRunCurrentDateTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$, RunAgentAgentToolInputRunAgentsRequestType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestType$outboundSchema, RunAgentAgentToolInputRunAgentsRequestType$, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, AgentToolInputRunRetrieveAgentsTool$, RunAgentAgentToolInputRunAgentsType$inboundSchema, RunAgentAgentToolInputRunAgentsType$outboundSchema, RunAgentAgentToolInputRunAgentsType$, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, AgentToolInputRunCallSubAgentTool$, RunAgentAgentToolInputRunType$inboundSchema, RunAgentAgentToolInputRunType$outboundSchema, RunAgentAgentToolInputRunType$, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunWebScraperTool$, AgentToolInputRunType$inboundSchema, AgentToolInputRunType$outboundSchema, AgentToolInputRunType$, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRunGoogleSearchTool$, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, AgentToolInputRun$, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentToolApprovalRequired$, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentSettings$, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentRequestBody$, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentKind$, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentState$, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsKind$, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentAgentsRole$, RunAgentAgentsMessage$inboundSchema, RunAgentAgentsMessage$outboundSchema, RunAgentAgentsMessage$, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentStatus$, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema, RunAgentResponseBody$;
|
|
71786
71814
|
var init_runagent = __esm(() => {
|
|
71787
71815
|
init_esm();
|
|
71788
71816
|
init_primitives();
|
|
@@ -72143,18 +72171,18 @@ var init_runagent = __esm(() => {
|
|
|
72143
72171
|
RunAgentKnowledgeBases$.inboundSchema = RunAgentKnowledgeBases$inboundSchema;
|
|
72144
72172
|
RunAgentKnowledgeBases$.outboundSchema = RunAgentKnowledgeBases$outboundSchema;
|
|
72145
72173
|
})(RunAgentKnowledgeBases$ ||= {});
|
|
72146
|
-
|
|
72174
|
+
RunAgentTeamOfAgents$inboundSchema = objectType({
|
|
72147
72175
|
key: stringType(),
|
|
72148
72176
|
role: stringType().optional()
|
|
72149
72177
|
});
|
|
72150
|
-
|
|
72178
|
+
RunAgentTeamOfAgents$outboundSchema = objectType({
|
|
72151
72179
|
key: stringType(),
|
|
72152
72180
|
role: stringType().optional()
|
|
72153
72181
|
});
|
|
72154
|
-
((
|
|
72155
|
-
|
|
72156
|
-
|
|
72157
|
-
})(
|
|
72182
|
+
((RunAgentTeamOfAgents$) => {
|
|
72183
|
+
RunAgentTeamOfAgents$.inboundSchema = RunAgentTeamOfAgents$inboundSchema;
|
|
72184
|
+
RunAgentTeamOfAgents$.outboundSchema = RunAgentTeamOfAgents$outboundSchema;
|
|
72185
|
+
})(RunAgentTeamOfAgents$ ||= {});
|
|
72158
72186
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema = nativeEnumType(RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type);
|
|
72159
72187
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema;
|
|
72160
72188
|
((RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$) => {
|
|
@@ -72788,7 +72816,7 @@ var init_runagent = __esm(() => {
|
|
|
72788
72816
|
system_prompt: stringType().optional(),
|
|
72789
72817
|
memory_stores: arrayType(stringType()).optional(),
|
|
72790
72818
|
knowledge_bases: arrayType(lazyType(() => RunAgentKnowledgeBases$inboundSchema)).optional(),
|
|
72791
|
-
team_of_agents: arrayType(lazyType(() =>
|
|
72819
|
+
team_of_agents: arrayType(lazyType(() => RunAgentTeamOfAgents$inboundSchema)).optional(),
|
|
72792
72820
|
settings: lazyType(() => RunAgentSettings$inboundSchema),
|
|
72793
72821
|
metadata: recordType(anyType()).optional()
|
|
72794
72822
|
}).transform((v2) => {
|
|
@@ -72818,7 +72846,7 @@ var init_runagent = __esm(() => {
|
|
|
72818
72846
|
systemPrompt: stringType().optional(),
|
|
72819
72847
|
memoryStores: arrayType(stringType()).optional(),
|
|
72820
72848
|
knowledgeBases: arrayType(lazyType(() => RunAgentKnowledgeBases$outboundSchema)).optional(),
|
|
72821
|
-
teamOfAgents: arrayType(lazyType(() =>
|
|
72849
|
+
teamOfAgents: arrayType(lazyType(() => RunAgentTeamOfAgents$outboundSchema)).optional(),
|
|
72822
72850
|
settings: lazyType(() => RunAgentSettings$outboundSchema),
|
|
72823
72851
|
metadata: recordType(anyType()).optional()
|
|
72824
72852
|
}).transform((v2) => {
|
|
@@ -75015,7 +75043,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
75015
75043
|
});
|
|
75016
75044
|
|
|
75017
75045
|
// src/models/operations/updateagent.ts
|
|
75018
|
-
var UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentHiddenPanels, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentToolApprovalRequired$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, AgentToolInputCRUDFunctionTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, AgentToolInputCRUDCodeExecutionTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, AgentToolInputCRUDHTTPTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, AgentToolInputCRUDCurrentDateTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, AgentToolInputCRUDCallSubAgentTool$, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, AgentToolInputCRUDWebScraperTool$, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, UpdateAgentAgentToolInputCRUDType$, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, AgentToolInputCRUDGoogleSearchTool$, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentAgentToolInputCRUD$, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentSettings$, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentKnowledgeBases$, UpdateAgentRequestBody$inboundSchema, UpdateAgentRequestBody$outboundSchema, UpdateAgentRequestBody$, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentRequest$, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentStatus$, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentAgentsToolApprovalRequired$, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentConditions$, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentTools$, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentAgentsSettings$, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentModel$,
|
|
75046
|
+
var UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentHiddenPanels, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentToolApprovalRequired$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, AgentToolInputCRUDFunctionTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, AgentToolInputCRUDCodeExecutionTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, AgentToolInputCRUDHTTPTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, AgentToolInputCRUDCurrentDateTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, AgentToolInputCRUDCallSubAgentTool$, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, AgentToolInputCRUDWebScraperTool$, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, UpdateAgentAgentToolInputCRUDType$, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, AgentToolInputCRUDGoogleSearchTool$, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentAgentToolInputCRUD$, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentSettings$, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentKnowledgeBases$, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, UpdateAgentTeamOfAgents$, UpdateAgentRequestBody$inboundSchema, UpdateAgentRequestBody$outboundSchema, UpdateAgentRequestBody$, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentRequest$, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentStatus$, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentAgentsToolApprovalRequired$, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentConditions$, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentTools$, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentAgentsSettings$, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentModel$, UpdateAgentAgentsTeamOfAgents$inboundSchema, UpdateAgentAgentsTeamOfAgents$outboundSchema, UpdateAgentAgentsTeamOfAgents$, UpdateAgentMetrics$inboundSchema, UpdateAgentMetrics$outboundSchema, UpdateAgentMetrics$, UpdateAgentAgentsKnowledgeBases$inboundSchema, UpdateAgentAgentsKnowledgeBases$outboundSchema, UpdateAgentAgentsKnowledgeBases$, UpdateAgentHiddenPanels$inboundSchema, UpdateAgentHiddenPanels$outboundSchema, UpdateAgentHiddenPanels$, UpdateAgentResponseBody$inboundSchema2, UpdateAgentResponseBody$outboundSchema2, UpdateAgentResponseBody$2;
|
|
75019
75047
|
var init_updateagent2 = __esm(() => {
|
|
75020
75048
|
init_esm();
|
|
75021
75049
|
init_primitives();
|
|
@@ -75578,6 +75606,18 @@ var init_updateagent2 = __esm(() => {
|
|
|
75578
75606
|
UpdateAgentKnowledgeBases$.inboundSchema = UpdateAgentKnowledgeBases$inboundSchema;
|
|
75579
75607
|
UpdateAgentKnowledgeBases$.outboundSchema = UpdateAgentKnowledgeBases$outboundSchema;
|
|
75580
75608
|
})(UpdateAgentKnowledgeBases$ ||= {});
|
|
75609
|
+
UpdateAgentTeamOfAgents$inboundSchema = objectType({
|
|
75610
|
+
key: stringType(),
|
|
75611
|
+
role: stringType().optional()
|
|
75612
|
+
});
|
|
75613
|
+
UpdateAgentTeamOfAgents$outboundSchema = objectType({
|
|
75614
|
+
key: stringType(),
|
|
75615
|
+
role: stringType().optional()
|
|
75616
|
+
});
|
|
75617
|
+
((UpdateAgentTeamOfAgents$) => {
|
|
75618
|
+
UpdateAgentTeamOfAgents$.inboundSchema = UpdateAgentTeamOfAgents$inboundSchema;
|
|
75619
|
+
UpdateAgentTeamOfAgents$.outboundSchema = UpdateAgentTeamOfAgents$outboundSchema;
|
|
75620
|
+
})(UpdateAgentTeamOfAgents$ ||= {});
|
|
75581
75621
|
UpdateAgentRequestBody$inboundSchema = objectType({
|
|
75582
75622
|
key: stringType().optional(),
|
|
75583
75623
|
project_id: stringType().optional(),
|
|
@@ -75590,14 +75630,16 @@ var init_updateagent2 = __esm(() => {
|
|
|
75590
75630
|
settings: lazyType(() => UpdateAgentSettings$inboundSchema).optional(),
|
|
75591
75631
|
path: stringType().optional(),
|
|
75592
75632
|
memory_stores: arrayType(stringType()).optional(),
|
|
75593
|
-
knowledge_bases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$inboundSchema)).optional()
|
|
75633
|
+
knowledge_bases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$inboundSchema)).optional(),
|
|
75634
|
+
team_of_agents: arrayType(lazyType(() => UpdateAgentTeamOfAgents$inboundSchema)).optional()
|
|
75594
75635
|
}).transform((v2) => {
|
|
75595
75636
|
return remap(v2, {
|
|
75596
75637
|
project_id: "projectId",
|
|
75597
75638
|
system_prompt: "systemPrompt",
|
|
75598
75639
|
fallback_models: "fallbackModels",
|
|
75599
75640
|
memory_stores: "memoryStores",
|
|
75600
|
-
knowledge_bases: "knowledgeBases"
|
|
75641
|
+
knowledge_bases: "knowledgeBases",
|
|
75642
|
+
team_of_agents: "teamOfAgents"
|
|
75601
75643
|
});
|
|
75602
75644
|
});
|
|
75603
75645
|
UpdateAgentRequestBody$outboundSchema = objectType({
|
|
@@ -75612,14 +75654,16 @@ var init_updateagent2 = __esm(() => {
|
|
|
75612
75654
|
settings: lazyType(() => UpdateAgentSettings$outboundSchema).optional(),
|
|
75613
75655
|
path: stringType().optional(),
|
|
75614
75656
|
memoryStores: arrayType(stringType()).optional(),
|
|
75615
|
-
knowledgeBases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$outboundSchema)).optional()
|
|
75657
|
+
knowledgeBases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$outboundSchema)).optional(),
|
|
75658
|
+
teamOfAgents: arrayType(lazyType(() => UpdateAgentTeamOfAgents$outboundSchema)).optional()
|
|
75616
75659
|
}).transform((v2) => {
|
|
75617
75660
|
return remap(v2, {
|
|
75618
75661
|
projectId: "project_id",
|
|
75619
75662
|
systemPrompt: "system_prompt",
|
|
75620
75663
|
fallbackModels: "fallback_models",
|
|
75621
75664
|
memoryStores: "memory_stores",
|
|
75622
|
-
knowledgeBases: "knowledge_bases"
|
|
75665
|
+
knowledgeBases: "knowledge_bases",
|
|
75666
|
+
teamOfAgents: "team_of_agents"
|
|
75623
75667
|
});
|
|
75624
75668
|
});
|
|
75625
75669
|
((UpdateAgentRequestBody$) => {
|
|
@@ -75768,18 +75812,18 @@ var init_updateagent2 = __esm(() => {
|
|
|
75768
75812
|
UpdateAgentModel$.inboundSchema = UpdateAgentModel$inboundSchema;
|
|
75769
75813
|
UpdateAgentModel$.outboundSchema = UpdateAgentModel$outboundSchema;
|
|
75770
75814
|
})(UpdateAgentModel$ ||= {});
|
|
75771
|
-
|
|
75815
|
+
UpdateAgentAgentsTeamOfAgents$inboundSchema = objectType({
|
|
75772
75816
|
key: stringType(),
|
|
75773
75817
|
role: stringType().optional()
|
|
75774
75818
|
});
|
|
75775
|
-
|
|
75819
|
+
UpdateAgentAgentsTeamOfAgents$outboundSchema = objectType({
|
|
75776
75820
|
key: stringType(),
|
|
75777
75821
|
role: stringType().optional()
|
|
75778
75822
|
});
|
|
75779
|
-
((
|
|
75780
|
-
|
|
75781
|
-
|
|
75782
|
-
})(
|
|
75823
|
+
((UpdateAgentAgentsTeamOfAgents$) => {
|
|
75824
|
+
UpdateAgentAgentsTeamOfAgents$.inboundSchema = UpdateAgentAgentsTeamOfAgents$inboundSchema;
|
|
75825
|
+
UpdateAgentAgentsTeamOfAgents$.outboundSchema = UpdateAgentAgentsTeamOfAgents$outboundSchema;
|
|
75826
|
+
})(UpdateAgentAgentsTeamOfAgents$ ||= {});
|
|
75783
75827
|
UpdateAgentMetrics$inboundSchema = objectType({
|
|
75784
75828
|
total_cost: numberType().default(0)
|
|
75785
75829
|
}).transform((v2) => {
|
|
@@ -75841,7 +75885,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
75841
75885
|
version_hash: stringType().optional(),
|
|
75842
75886
|
path: stringType(),
|
|
75843
75887
|
memory_stores: arrayType(stringType()),
|
|
75844
|
-
team_of_agents: arrayType(lazyType(() =>
|
|
75888
|
+
team_of_agents: arrayType(lazyType(() => UpdateAgentAgentsTeamOfAgents$inboundSchema)),
|
|
75845
75889
|
metrics: lazyType(() => UpdateAgentMetrics$inboundSchema).optional(),
|
|
75846
75890
|
variables: recordType(anyType()).optional(),
|
|
75847
75891
|
knowledge_bases: arrayType(lazyType(() => UpdateAgentAgentsKnowledgeBases$inboundSchema)).optional(),
|
|
@@ -75880,7 +75924,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
75880
75924
|
versionHash: stringType().optional(),
|
|
75881
75925
|
path: stringType(),
|
|
75882
75926
|
memoryStores: arrayType(stringType()),
|
|
75883
|
-
teamOfAgents: arrayType(lazyType(() =>
|
|
75927
|
+
teamOfAgents: arrayType(lazyType(() => UpdateAgentAgentsTeamOfAgents$outboundSchema)),
|
|
75884
75928
|
metrics: lazyType(() => UpdateAgentMetrics$outboundSchema).optional(),
|
|
75885
75929
|
variables: recordType(anyType()).optional(),
|
|
75886
75930
|
knowledgeBases: arrayType(lazyType(() => UpdateAgentAgentsKnowledgeBases$outboundSchema)).optional(),
|
|
@@ -76048,7 +76092,7 @@ var init_updatebudget = __esm(() => {
|
|
|
76048
76092
|
is_active: booleanType(),
|
|
76049
76093
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
76050
76094
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
76051
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
76095
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
76052
76096
|
}).transform((v2) => {
|
|
76053
76097
|
return remap(v2, {
|
|
76054
76098
|
_id: "id",
|
|
@@ -76064,7 +76108,7 @@ var init_updatebudget = __esm(() => {
|
|
|
76064
76108
|
isActive: booleanType(),
|
|
76065
76109
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
76066
76110
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
76067
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
76111
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
76068
76112
|
}).transform((v2) => {
|
|
76069
76113
|
return remap(v2, {
|
|
76070
76114
|
id: "_id",
|
|
@@ -76254,7 +76298,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
76254
76298
|
tags: arrayType(stringType()).optional(),
|
|
76255
76299
|
metadata: recordType(anyType()).optional(),
|
|
76256
76300
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
76257
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
76301
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
76258
76302
|
}).transform((v2) => {
|
|
76259
76303
|
return remap(v2, {
|
|
76260
76304
|
_id: "id",
|
|
@@ -76272,7 +76316,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
76272
76316
|
tags: arrayType(stringType()).optional(),
|
|
76273
76317
|
metadata: recordType(anyType()).optional(),
|
|
76274
76318
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
76275
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
76319
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
76276
76320
|
}).transform((v2) => {
|
|
76277
76321
|
return remap(v2, {
|
|
76278
76322
|
id: "_id",
|
|
@@ -77678,7 +77722,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
77678
77722
|
created_by_id: stringType().optional(),
|
|
77679
77723
|
updated_by_id: stringType().optional(),
|
|
77680
77724
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
77681
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
77725
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
77682
77726
|
}).transform((v2) => {
|
|
77683
77727
|
return remap(v2, {
|
|
77684
77728
|
_id: "id",
|
|
@@ -77705,7 +77749,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
77705
77749
|
createdById: stringType().optional(),
|
|
77706
77750
|
updatedById: stringType().optional(),
|
|
77707
77751
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
77708
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
77752
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
77709
77753
|
}).transform((v2) => {
|
|
77710
77754
|
return remap(v2, {
|
|
77711
77755
|
id: "_id",
|
|
@@ -77806,7 +77850,7 @@ var init_updatedataset = __esm(() => {
|
|
|
77806
77850
|
parent_id: stringType().optional(),
|
|
77807
77851
|
version: stringType().optional(),
|
|
77808
77852
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
77809
|
-
updated: stringType().datetime({ offset: true }).default("2025-10-
|
|
77853
|
+
updated: stringType().datetime({ offset: true }).default("2025-10-21T15:19:58.203Z").transform((v2) => new Date(v2))
|
|
77810
77854
|
}).transform((v2) => {
|
|
77811
77855
|
return remap(v2, {
|
|
77812
77856
|
_id: "id",
|
|
@@ -77829,7 +77873,7 @@ var init_updatedataset = __esm(() => {
|
|
|
77829
77873
|
parentId: stringType().optional(),
|
|
77830
77874
|
version: stringType().optional(),
|
|
77831
77875
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
77832
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
77876
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
77833
77877
|
}).transform((v2) => {
|
|
77834
77878
|
return remap(v2, {
|
|
77835
77879
|
id: "_id",
|
|
@@ -77910,7 +77954,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
77910
77954
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
77911
77955
|
})(UpdateDatasourceStatus$ ||= {});
|
|
77912
77956
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
77913
|
-
_id: stringType().default("
|
|
77957
|
+
_id: stringType().default("01K83NPC03MC3HJKZQZ2VFBZQM"),
|
|
77914
77958
|
display_name: stringType(),
|
|
77915
77959
|
description: stringType().optional(),
|
|
77916
77960
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -77933,7 +77977,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
77933
77977
|
});
|
|
77934
77978
|
});
|
|
77935
77979
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
77936
|
-
id: stringType().default("
|
|
77980
|
+
id: stringType().default("01K83NPC03MC3HJKZQZ2VFBZQM"),
|
|
77937
77981
|
displayName: stringType(),
|
|
77938
77982
|
description: stringType().optional(),
|
|
77939
77983
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -78866,8 +78910,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78866
78910
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
78867
78911
|
_id: stringType(),
|
|
78868
78912
|
description: stringType(),
|
|
78869
|
-
created: stringType().default("2025-10-
|
|
78870
|
-
updated: stringType().default("2025-10-
|
|
78913
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
78914
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
78871
78915
|
guardrail_config: unionType([
|
|
78872
78916
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
78873
78917
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -78884,8 +78928,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78884
78928
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
78885
78929
|
id: stringType(),
|
|
78886
78930
|
description: stringType(),
|
|
78887
|
-
created: stringType().default("2025-10-
|
|
78888
|
-
updated: stringType().default("2025-10-
|
|
78931
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
78932
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
78889
78933
|
guardrailConfig: unionType([
|
|
78890
78934
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
78891
78935
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -78978,8 +79022,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78978
79022
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
78979
79023
|
_id: stringType(),
|
|
78980
79024
|
description: stringType(),
|
|
78981
|
-
created: stringType().default("2025-10-
|
|
78982
|
-
updated: stringType().default("2025-10-
|
|
79025
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79026
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
78983
79027
|
guardrail_config: unionType([
|
|
78984
79028
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
78985
79029
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -78998,8 +79042,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78998
79042
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
78999
79043
|
id: stringType(),
|
|
79000
79044
|
description: stringType(),
|
|
79001
|
-
created: stringType().default("2025-10-
|
|
79002
|
-
updated: stringType().default("2025-10-
|
|
79045
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79046
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79003
79047
|
guardrailConfig: unionType([
|
|
79004
79048
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
79005
79049
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -79752,8 +79796,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79752
79796
|
UpdateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
79753
79797
|
_id: stringType(),
|
|
79754
79798
|
description: stringType(),
|
|
79755
|
-
created: stringType().default("2025-10-
|
|
79756
|
-
updated: stringType().default("2025-10-
|
|
79799
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79800
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79757
79801
|
guardrail_config: unionType([
|
|
79758
79802
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
79759
79803
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -79807,8 +79851,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79807
79851
|
UpdateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
79808
79852
|
id: stringType(),
|
|
79809
79853
|
description: stringType(),
|
|
79810
|
-
created: stringType().default("2025-10-
|
|
79811
|
-
updated: stringType().default("2025-10-
|
|
79854
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79855
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79812
79856
|
guardrailConfig: unionType([
|
|
79813
79857
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
79814
79858
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -79932,8 +79976,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79932
79976
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
79933
79977
|
_id: stringType(),
|
|
79934
79978
|
description: stringType(),
|
|
79935
|
-
created: stringType().default("2025-10-
|
|
79936
|
-
updated: stringType().default("2025-10-
|
|
79979
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79980
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79937
79981
|
guardrail_config: unionType([
|
|
79938
79982
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
79939
79983
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -79950,8 +79994,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79950
79994
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
79951
79995
|
id: stringType(),
|
|
79952
79996
|
description: stringType(),
|
|
79953
|
-
created: stringType().default("2025-10-
|
|
79954
|
-
updated: stringType().default("2025-10-
|
|
79997
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79998
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
79955
79999
|
guardrailConfig: unionType([
|
|
79956
80000
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
79957
80001
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -80044,8 +80088,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80044
80088
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
80045
80089
|
_id: stringType(),
|
|
80046
80090
|
description: stringType(),
|
|
80047
|
-
created: stringType().default("2025-10-
|
|
80048
|
-
updated: stringType().default("2025-10-
|
|
80091
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80092
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80049
80093
|
guardrail_config: unionType([
|
|
80050
80094
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
80051
80095
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -80065,8 +80109,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80065
80109
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
80066
80110
|
id: stringType(),
|
|
80067
80111
|
description: stringType(),
|
|
80068
|
-
created: stringType().default("2025-10-
|
|
80069
|
-
updated: stringType().default("2025-10-
|
|
80112
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80113
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80070
80114
|
guardrailConfig: unionType([
|
|
80071
80115
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
80072
80116
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -80156,8 +80200,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80156
80200
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
80157
80201
|
_id: stringType(),
|
|
80158
80202
|
description: stringType(),
|
|
80159
|
-
created: stringType().default("2025-10-
|
|
80160
|
-
updated: stringType().default("2025-10-
|
|
80203
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80204
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80161
80205
|
guardrail_config: unionType([
|
|
80162
80206
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
80163
80207
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -80174,8 +80218,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80174
80218
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
80175
80219
|
id: stringType(),
|
|
80176
80220
|
description: stringType(),
|
|
80177
|
-
created: stringType().default("2025-10-
|
|
80178
|
-
updated: stringType().default("2025-10-
|
|
80221
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80222
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80179
80223
|
guardrailConfig: unionType([
|
|
80180
80224
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
80181
80225
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -80262,8 +80306,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80262
80306
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
80263
80307
|
_id: stringType(),
|
|
80264
80308
|
description: stringType(),
|
|
80265
|
-
created: stringType().default("2025-10-
|
|
80266
|
-
updated: stringType().default("2025-10-
|
|
80309
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80310
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80267
80311
|
guardrail_config: unionType([
|
|
80268
80312
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
80269
80313
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -80281,8 +80325,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80281
80325
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
80282
80326
|
id: stringType(),
|
|
80283
80327
|
description: stringType(),
|
|
80284
|
-
created: stringType().default("2025-10-
|
|
80285
|
-
updated: stringType().default("2025-10-
|
|
80328
|
+
created: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80329
|
+
updated: stringType().default("2025-10-21T15:20:00.630Z"),
|
|
80286
80330
|
guardrailConfig: unionType([
|
|
80287
80331
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
80288
80332
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -83089,7 +83133,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83089
83133
|
UpdateToolRequestBodyHttp$.outboundSchema = UpdateToolRequestBodyHttp$outboundSchema;
|
|
83090
83134
|
})(UpdateToolRequestBodyHttp$ ||= {});
|
|
83091
83135
|
UpdateToolRequestBody3$inboundSchema = objectType({
|
|
83092
|
-
_id: stringType().default("
|
|
83136
|
+
_id: stringType().default("01K83NPC3M07ZX67B927MCEWWZ"),
|
|
83093
83137
|
path: stringType().optional(),
|
|
83094
83138
|
display_name: stringType().optional(),
|
|
83095
83139
|
description: stringType().optional(),
|
|
@@ -83103,7 +83147,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83103
83147
|
});
|
|
83104
83148
|
});
|
|
83105
83149
|
UpdateToolRequestBody3$outboundSchema = objectType({
|
|
83106
|
-
id: stringType().default("
|
|
83150
|
+
id: stringType().default("01K83NPC3M07ZX67B927MCEWWZ"),
|
|
83107
83151
|
path: stringType().optional(),
|
|
83108
83152
|
displayName: stringType().optional(),
|
|
83109
83153
|
description: stringType().optional(),
|
|
@@ -83149,7 +83193,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83149
83193
|
UpdateToolRequestBodyJsonSchema$.outboundSchema = UpdateToolRequestBodyJsonSchema$outboundSchema;
|
|
83150
83194
|
})(UpdateToolRequestBodyJsonSchema$ ||= {});
|
|
83151
83195
|
UpdateToolRequestBody2$inboundSchema = objectType({
|
|
83152
|
-
_id: stringType().default("
|
|
83196
|
+
_id: stringType().default("01K83NPC3KYTZE9B4FRGWF0FYJ"),
|
|
83153
83197
|
path: stringType().optional(),
|
|
83154
83198
|
display_name: stringType().optional(),
|
|
83155
83199
|
description: stringType().optional(),
|
|
@@ -83164,7 +83208,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83164
83208
|
});
|
|
83165
83209
|
});
|
|
83166
83210
|
UpdateToolRequestBody2$outboundSchema = objectType({
|
|
83167
|
-
id: stringType().default("
|
|
83211
|
+
id: stringType().default("01K83NPC3KYTZE9B4FRGWF0FYJ"),
|
|
83168
83212
|
path: stringType().optional(),
|
|
83169
83213
|
displayName: stringType().optional(),
|
|
83170
83214
|
description: stringType().optional(),
|
|
@@ -83323,7 +83367,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83323
83367
|
UpdateToolResponseBodyCodeTool$.outboundSchema = UpdateToolResponseBodyCodeTool$outboundSchema;
|
|
83324
83368
|
})(UpdateToolResponseBodyCodeTool$ ||= {});
|
|
83325
83369
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
83326
|
-
_id: stringType().default("
|
|
83370
|
+
_id: stringType().default("01K83NPC3K65SQVDCZAN2DRRY8"),
|
|
83327
83371
|
path: stringType(),
|
|
83328
83372
|
key: stringType(),
|
|
83329
83373
|
display_name: stringType().optional(),
|
|
@@ -83351,7 +83395,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83351
83395
|
});
|
|
83352
83396
|
});
|
|
83353
83397
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
83354
|
-
id: stringType().default("
|
|
83398
|
+
id: stringType().default("01K83NPC3K65SQVDCZAN2DRRY8"),
|
|
83355
83399
|
path: stringType(),
|
|
83356
83400
|
key: stringType(),
|
|
83357
83401
|
displayName: stringType().optional(),
|
|
@@ -83469,7 +83513,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83469
83513
|
UpdateToolResponseBodyMcp$.outboundSchema = UpdateToolResponseBodyMcp$outboundSchema;
|
|
83470
83514
|
})(UpdateToolResponseBodyMcp$ ||= {});
|
|
83471
83515
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
83472
|
-
_id: stringType().default("
|
|
83516
|
+
_id: stringType().default("01K83NPC3JKGNC80CX8RT14H98"),
|
|
83473
83517
|
path: stringType(),
|
|
83474
83518
|
key: stringType(),
|
|
83475
83519
|
display_name: stringType().optional(),
|
|
@@ -83496,7 +83540,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83496
83540
|
});
|
|
83497
83541
|
});
|
|
83498
83542
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
83499
|
-
id: stringType().default("
|
|
83543
|
+
id: stringType().default("01K83NPC3JKGNC80CX8RT14H98"),
|
|
83500
83544
|
path: stringType(),
|
|
83501
83545
|
key: stringType(),
|
|
83502
83546
|
displayName: stringType().optional(),
|
|
@@ -83611,7 +83655,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83611
83655
|
UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
|
|
83612
83656
|
})(UpdateToolResponseBodyHttp$ ||= {});
|
|
83613
83657
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
83614
|
-
_id: stringType().default("
|
|
83658
|
+
_id: stringType().default("01K83NPC3JA8A594T35HXVFVH6"),
|
|
83615
83659
|
path: stringType(),
|
|
83616
83660
|
key: stringType(),
|
|
83617
83661
|
display_name: stringType().optional(),
|
|
@@ -83638,7 +83682,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83638
83682
|
});
|
|
83639
83683
|
});
|
|
83640
83684
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
83641
|
-
id: stringType().default("
|
|
83685
|
+
id: stringType().default("01K83NPC3JA8A594T35HXVFVH6"),
|
|
83642
83686
|
path: stringType(),
|
|
83643
83687
|
key: stringType(),
|
|
83644
83688
|
displayName: stringType().optional(),
|
|
@@ -83697,7 +83741,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83697
83741
|
UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
|
|
83698
83742
|
})(UpdateToolResponseBodyJsonSchema$ ||= {});
|
|
83699
83743
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
83700
|
-
_id: stringType().default("
|
|
83744
|
+
_id: stringType().default("01K83NPC3JDMEKXFG2C3M22F5P"),
|
|
83701
83745
|
path: stringType(),
|
|
83702
83746
|
key: stringType(),
|
|
83703
83747
|
display_name: stringType().optional(),
|
|
@@ -83725,7 +83769,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83725
83769
|
});
|
|
83726
83770
|
});
|
|
83727
83771
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
83728
|
-
id: stringType().default("
|
|
83772
|
+
id: stringType().default("01K83NPC3JDMEKXFG2C3M22F5P"),
|
|
83729
83773
|
path: stringType(),
|
|
83730
83774
|
key: stringType(),
|
|
83731
83775
|
displayName: stringType().optional(),
|
|
@@ -83785,7 +83829,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83785
83829
|
UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
|
|
83786
83830
|
})(UpdateToolResponseBodyFunction$ ||= {});
|
|
83787
83831
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
83788
|
-
_id: stringType().default("
|
|
83832
|
+
_id: stringType().default("01K83NPC3H69KR800GH8GY3HGS"),
|
|
83789
83833
|
path: stringType(),
|
|
83790
83834
|
key: stringType(),
|
|
83791
83835
|
display_name: stringType().optional(),
|
|
@@ -83812,7 +83856,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83812
83856
|
});
|
|
83813
83857
|
});
|
|
83814
83858
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
83815
|
-
id: stringType().default("
|
|
83859
|
+
id: stringType().default("01K83NPC3H69KR800GH8GY3HGS"),
|
|
83816
83860
|
path: stringType(),
|
|
83817
83861
|
key: stringType(),
|
|
83818
83862
|
displayName: stringType().optional(),
|
|
@@ -100173,7 +100217,7 @@ Updates a tool in the workspace.`,
|
|
|
100173
100217
|
function createMCPServer(deps) {
|
|
100174
100218
|
const server = new McpServer({
|
|
100175
100219
|
name: "Orq",
|
|
100176
|
-
version: "3.13.
|
|
100220
|
+
version: "3.13.13"
|
|
100177
100221
|
});
|
|
100178
100222
|
const client = new OrqCore({
|
|
100179
100223
|
apiKey: deps.apiKey,
|
|
@@ -101659,7 +101703,7 @@ var routes = rn({
|
|
|
101659
101703
|
var app = Ve(routes, {
|
|
101660
101704
|
name: "mcp",
|
|
101661
101705
|
versionInfo: {
|
|
101662
|
-
currentVersion: "3.13.
|
|
101706
|
+
currentVersion: "3.13.13"
|
|
101663
101707
|
}
|
|
101664
101708
|
});
|
|
101665
101709
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -101667,5 +101711,5 @@ export {
|
|
|
101667
101711
|
app
|
|
101668
101712
|
};
|
|
101669
101713
|
|
|
101670
|
-
//# debugId=
|
|
101714
|
+
//# debugId=E0E58DDA6D58BBA964756E2164756E21
|
|
101671
101715
|
//# sourceMappingURL=mcp-server.js.map
|