@orq-ai/node 3.13.12 → 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 +253 -221
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +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/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/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 +8 -8
- 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/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 +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/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 +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +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/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.727.
|
|
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
|
|
|
@@ -38911,7 +38911,7 @@ var init_cleardataset = __esm(() => {
|
|
|
38911
38911
|
});
|
|
38912
38912
|
|
|
38913
38913
|
// src/models/operations/createagent.ts
|
|
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$, 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;
|
|
38915
38915
|
var init_createagent2 = __esm(() => {
|
|
38916
38916
|
init_esm();
|
|
38917
38917
|
init_primitives();
|
|
@@ -39474,6 +39474,18 @@ var init_createagent2 = __esm(() => {
|
|
|
39474
39474
|
KnowledgeBases$.inboundSchema = KnowledgeBases$inboundSchema;
|
|
39475
39475
|
KnowledgeBases$.outboundSchema = KnowledgeBases$outboundSchema;
|
|
39476
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$ ||= {});
|
|
39477
39489
|
CreateAgentRequestBody$inboundSchema = objectType({
|
|
39478
39490
|
path: stringType(),
|
|
39479
39491
|
key: stringType(),
|
|
@@ -39485,13 +39497,15 @@ var init_createagent2 = __esm(() => {
|
|
|
39485
39497
|
fallback_models: arrayType(stringType()).optional(),
|
|
39486
39498
|
settings: lazyType(() => Settings$inboundSchema),
|
|
39487
39499
|
memory_stores: arrayType(stringType()).optional(),
|
|
39488
|
-
knowledge_bases: arrayType(lazyType(() => KnowledgeBases$inboundSchema)).optional()
|
|
39500
|
+
knowledge_bases: arrayType(lazyType(() => KnowledgeBases$inboundSchema)).optional(),
|
|
39501
|
+
team_of_agents: arrayType(lazyType(() => TeamOfAgents$inboundSchema)).optional()
|
|
39489
39502
|
}).transform((v2) => {
|
|
39490
39503
|
return remap(v2, {
|
|
39491
39504
|
system_prompt: "systemPrompt",
|
|
39492
39505
|
fallback_models: "fallbackModels",
|
|
39493
39506
|
memory_stores: "memoryStores",
|
|
39494
|
-
knowledge_bases: "knowledgeBases"
|
|
39507
|
+
knowledge_bases: "knowledgeBases",
|
|
39508
|
+
team_of_agents: "teamOfAgents"
|
|
39495
39509
|
});
|
|
39496
39510
|
});
|
|
39497
39511
|
CreateAgentRequestBody$outboundSchema = objectType({
|
|
@@ -39505,13 +39519,15 @@ var init_createagent2 = __esm(() => {
|
|
|
39505
39519
|
fallbackModels: arrayType(stringType()).optional(),
|
|
39506
39520
|
settings: lazyType(() => Settings$outboundSchema),
|
|
39507
39521
|
memoryStores: arrayType(stringType()).optional(),
|
|
39508
|
-
knowledgeBases: arrayType(lazyType(() => KnowledgeBases$outboundSchema)).optional()
|
|
39522
|
+
knowledgeBases: arrayType(lazyType(() => KnowledgeBases$outboundSchema)).optional(),
|
|
39523
|
+
teamOfAgents: arrayType(lazyType(() => TeamOfAgents$outboundSchema)).optional()
|
|
39509
39524
|
}).transform((v2) => {
|
|
39510
39525
|
return remap(v2, {
|
|
39511
39526
|
systemPrompt: "system_prompt",
|
|
39512
39527
|
fallbackModels: "fallback_models",
|
|
39513
39528
|
memoryStores: "memory_stores",
|
|
39514
|
-
knowledgeBases: "knowledge_bases"
|
|
39529
|
+
knowledgeBases: "knowledge_bases",
|
|
39530
|
+
teamOfAgents: "team_of_agents"
|
|
39515
39531
|
});
|
|
39516
39532
|
});
|
|
39517
39533
|
((CreateAgentRequestBody$) => {
|
|
@@ -39946,7 +39962,7 @@ var init_createbudget = __esm(() => {
|
|
|
39946
39962
|
is_active: booleanType(),
|
|
39947
39963
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
39948
39964
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39949
|
-
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))
|
|
39950
39966
|
}).transform((v2) => {
|
|
39951
39967
|
return remap(v2, {
|
|
39952
39968
|
_id: "id",
|
|
@@ -39962,7 +39978,7 @@ var init_createbudget = __esm(() => {
|
|
|
39962
39978
|
isActive: booleanType(),
|
|
39963
39979
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
39964
39980
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39965
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
39981
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
39966
39982
|
}).transform((v2) => {
|
|
39967
39983
|
return remap(v2, {
|
|
39968
39984
|
id: "_id",
|
|
@@ -40133,7 +40149,7 @@ var init_createcontact = __esm(() => {
|
|
|
40133
40149
|
tags: arrayType(stringType()).optional(),
|
|
40134
40150
|
metadata: recordType(anyType()).optional(),
|
|
40135
40151
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40136
|
-
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))
|
|
40137
40153
|
}).transform((v2) => {
|
|
40138
40154
|
return remap(v2, {
|
|
40139
40155
|
_id: "id",
|
|
@@ -40153,7 +40169,7 @@ var init_createcontact = __esm(() => {
|
|
|
40153
40169
|
tags: arrayType(stringType()).optional(),
|
|
40154
40170
|
metadata: recordType(anyType()).optional(),
|
|
40155
40171
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40156
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
40172
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
40157
40173
|
}).transform((v2) => {
|
|
40158
40174
|
return remap(v2, {
|
|
40159
40175
|
id: "_id",
|
|
@@ -40225,7 +40241,7 @@ var init_createdataset = __esm(() => {
|
|
|
40225
40241
|
updated_by_id: stringType().optional(),
|
|
40226
40242
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
40227
40243
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40228
|
-
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))
|
|
40229
40245
|
}).transform((v2) => {
|
|
40230
40246
|
return remap(v2, {
|
|
40231
40247
|
_id: "id",
|
|
@@ -40245,7 +40261,7 @@ var init_createdataset = __esm(() => {
|
|
|
40245
40261
|
updatedById: stringType().optional(),
|
|
40246
40262
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
40247
40263
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40248
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
40264
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
40249
40265
|
}).transform((v2) => {
|
|
40250
40266
|
return remap(v2, {
|
|
40251
40267
|
id: "_id",
|
|
@@ -41649,7 +41665,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
41649
41665
|
created_by_id: stringType().optional(),
|
|
41650
41666
|
updated_by_id: stringType().optional(),
|
|
41651
41667
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
41652
|
-
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))
|
|
41653
41669
|
}).transform((v2) => {
|
|
41654
41670
|
return remap(v2, {
|
|
41655
41671
|
_id: "id",
|
|
@@ -41676,7 +41692,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
41676
41692
|
createdById: stringType().optional(),
|
|
41677
41693
|
updatedById: stringType().optional(),
|
|
41678
41694
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
41679
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
41695
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
41680
41696
|
}).transform((v2) => {
|
|
41681
41697
|
return remap(v2, {
|
|
41682
41698
|
id: "_id",
|
|
@@ -41898,7 +41914,7 @@ var init_createdatasource = __esm(() => {
|
|
|
41898
41914
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
41899
41915
|
})(CreateDatasourceStatus$ ||= {});
|
|
41900
41916
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
41901
|
-
_id: stringType().default("
|
|
41917
|
+
_id: stringType().default("01K83NPC02S9RA8W9PV5337DNM"),
|
|
41902
41918
|
display_name: stringType(),
|
|
41903
41919
|
description: stringType().optional(),
|
|
41904
41920
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -41921,7 +41937,7 @@ var init_createdatasource = __esm(() => {
|
|
|
41921
41937
|
});
|
|
41922
41938
|
});
|
|
41923
41939
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
41924
|
-
id: stringType().default("
|
|
41940
|
+
id: stringType().default("01K83NPC02S9RA8W9PV5337DNM"),
|
|
41925
41941
|
displayName: stringType(),
|
|
41926
41942
|
description: stringType().optional(),
|
|
41927
41943
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -42824,8 +42840,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42824
42840
|
Typescript$inboundSchema = objectType({
|
|
42825
42841
|
_id: stringType(),
|
|
42826
42842
|
description: stringType(),
|
|
42827
|
-
created: stringType().default("2025-10-
|
|
42828
|
-
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"),
|
|
42829
42845
|
guardrail_config: unionType([
|
|
42830
42846
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
42831
42847
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -42842,8 +42858,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42842
42858
|
Typescript$outboundSchema = objectType({
|
|
42843
42859
|
id: stringType(),
|
|
42844
42860
|
description: stringType(),
|
|
42845
|
-
created: stringType().default("2025-10-
|
|
42846
|
-
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"),
|
|
42847
42863
|
guardrailConfig: unionType([
|
|
42848
42864
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
42849
42865
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -42936,8 +42952,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42936
42952
|
Ragas$inboundSchema = objectType({
|
|
42937
42953
|
_id: stringType(),
|
|
42938
42954
|
description: stringType(),
|
|
42939
|
-
created: stringType().default("2025-10-
|
|
42940
|
-
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"),
|
|
42941
42957
|
guardrail_config: unionType([
|
|
42942
42958
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
42943
42959
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -42956,8 +42972,8 @@ var init_createeval2 = __esm(() => {
|
|
|
42956
42972
|
Ragas$outboundSchema = objectType({
|
|
42957
42973
|
id: stringType(),
|
|
42958
42974
|
description: stringType(),
|
|
42959
|
-
created: stringType().default("2025-10-
|
|
42960
|
-
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"),
|
|
42961
42977
|
guardrailConfig: unionType([
|
|
42962
42978
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
42963
42979
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -43710,8 +43726,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43710
43726
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
43711
43727
|
_id: stringType(),
|
|
43712
43728
|
description: stringType(),
|
|
43713
|
-
created: stringType().default("2025-10-
|
|
43714
|
-
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"),
|
|
43715
43731
|
guardrail_config: unionType([
|
|
43716
43732
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
43717
43733
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -43765,8 +43781,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43765
43781
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
43766
43782
|
id: stringType(),
|
|
43767
43783
|
description: stringType(),
|
|
43768
|
-
created: stringType().default("2025-10-
|
|
43769
|
-
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"),
|
|
43770
43786
|
guardrailConfig: unionType([
|
|
43771
43787
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
43772
43788
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -43890,8 +43906,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43890
43906
|
ResponseBodyPython$inboundSchema = objectType({
|
|
43891
43907
|
_id: stringType(),
|
|
43892
43908
|
description: stringType(),
|
|
43893
|
-
created: stringType().default("2025-10-
|
|
43894
|
-
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"),
|
|
43895
43911
|
guardrail_config: unionType([
|
|
43896
43912
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
43897
43913
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -43908,8 +43924,8 @@ var init_createeval2 = __esm(() => {
|
|
|
43908
43924
|
ResponseBodyPython$outboundSchema = objectType({
|
|
43909
43925
|
id: stringType(),
|
|
43910
43926
|
description: stringType(),
|
|
43911
|
-
created: stringType().default("2025-10-
|
|
43912
|
-
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"),
|
|
43913
43929
|
guardrailConfig: unionType([
|
|
43914
43930
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
43915
43931
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -44002,8 +44018,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44002
44018
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
44003
44019
|
_id: stringType(),
|
|
44004
44020
|
description: stringType(),
|
|
44005
|
-
created: stringType().default("2025-10-
|
|
44006
|
-
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"),
|
|
44007
44023
|
guardrail_config: unionType([
|
|
44008
44024
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
44009
44025
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -44023,8 +44039,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44023
44039
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
44024
44040
|
id: stringType(),
|
|
44025
44041
|
description: stringType(),
|
|
44026
|
-
created: stringType().default("2025-10-
|
|
44027
|
-
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"),
|
|
44028
44044
|
guardrailConfig: unionType([
|
|
44029
44045
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
44030
44046
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -44114,8 +44130,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44114
44130
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
44115
44131
|
_id: stringType(),
|
|
44116
44132
|
description: stringType(),
|
|
44117
|
-
created: stringType().default("2025-10-
|
|
44118
|
-
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"),
|
|
44119
44135
|
guardrail_config: unionType([
|
|
44120
44136
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
44121
44137
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -44132,8 +44148,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44132
44148
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
44133
44149
|
id: stringType(),
|
|
44134
44150
|
description: stringType(),
|
|
44135
|
-
created: stringType().default("2025-10-
|
|
44136
|
-
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"),
|
|
44137
44153
|
guardrailConfig: unionType([
|
|
44138
44154
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
44139
44155
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -44220,8 +44236,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44220
44236
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
44221
44237
|
_id: stringType(),
|
|
44222
44238
|
description: stringType(),
|
|
44223
|
-
created: stringType().default("2025-10-
|
|
44224
|
-
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"),
|
|
44225
44241
|
guardrail_config: unionType([
|
|
44226
44242
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
44227
44243
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -44239,8 +44255,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44239
44255
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
44240
44256
|
id: stringType(),
|
|
44241
44257
|
description: stringType(),
|
|
44242
|
-
created: stringType().default("2025-10-
|
|
44243
|
-
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"),
|
|
44244
44260
|
guardrailConfig: unionType([
|
|
44245
44261
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
44246
44262
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -47272,7 +47288,7 @@ var init_createtool = __esm(() => {
|
|
|
47272
47288
|
CreateToolRequestBodyHttp$.outboundSchema = CreateToolRequestBodyHttp$outboundSchema;
|
|
47273
47289
|
})(CreateToolRequestBodyHttp$ ||= {});
|
|
47274
47290
|
RequestBody3$inboundSchema = objectType({
|
|
47275
|
-
_id: stringType().default("
|
|
47291
|
+
_id: stringType().default("01K83NPC3GDBEE723RGHDKFEN5"),
|
|
47276
47292
|
path: stringType(),
|
|
47277
47293
|
key: stringType(),
|
|
47278
47294
|
display_name: stringType().optional(),
|
|
@@ -47287,7 +47303,7 @@ var init_createtool = __esm(() => {
|
|
|
47287
47303
|
});
|
|
47288
47304
|
});
|
|
47289
47305
|
RequestBody3$outboundSchema = objectType({
|
|
47290
|
-
id: stringType().default("
|
|
47306
|
+
id: stringType().default("01K83NPC3GDBEE723RGHDKFEN5"),
|
|
47291
47307
|
path: stringType(),
|
|
47292
47308
|
key: stringType(),
|
|
47293
47309
|
displayName: stringType().optional(),
|
|
@@ -47334,7 +47350,7 @@ var init_createtool = __esm(() => {
|
|
|
47334
47350
|
RequestBodyJsonSchema$.outboundSchema = RequestBodyJsonSchema$outboundSchema;
|
|
47335
47351
|
})(RequestBodyJsonSchema$ ||= {});
|
|
47336
47352
|
RequestBody2$inboundSchema = objectType({
|
|
47337
|
-
_id: stringType().default("
|
|
47353
|
+
_id: stringType().default("01K83NPC3GKKJ1F0S0E2P7QZDK"),
|
|
47338
47354
|
path: stringType(),
|
|
47339
47355
|
key: stringType(),
|
|
47340
47356
|
display_name: stringType().optional(),
|
|
@@ -47350,7 +47366,7 @@ var init_createtool = __esm(() => {
|
|
|
47350
47366
|
});
|
|
47351
47367
|
});
|
|
47352
47368
|
RequestBody2$outboundSchema = objectType({
|
|
47353
|
-
id: stringType().default("
|
|
47369
|
+
id: stringType().default("01K83NPC3GKKJ1F0S0E2P7QZDK"),
|
|
47354
47370
|
path: stringType(),
|
|
47355
47371
|
key: stringType(),
|
|
47356
47372
|
displayName: stringType().optional(),
|
|
@@ -47478,7 +47494,7 @@ var init_createtool = __esm(() => {
|
|
|
47478
47494
|
ResponseBodyCodeTool$.outboundSchema = ResponseBodyCodeTool$outboundSchema;
|
|
47479
47495
|
})(ResponseBodyCodeTool$ ||= {});
|
|
47480
47496
|
ResponseBody5$inboundSchema = objectType({
|
|
47481
|
-
_id: stringType().default("
|
|
47497
|
+
_id: stringType().default("01K83NPC3FQZ0YJZEX8P0BRMVW"),
|
|
47482
47498
|
path: stringType(),
|
|
47483
47499
|
key: stringType(),
|
|
47484
47500
|
display_name: stringType().optional(),
|
|
@@ -47506,7 +47522,7 @@ var init_createtool = __esm(() => {
|
|
|
47506
47522
|
});
|
|
47507
47523
|
});
|
|
47508
47524
|
ResponseBody5$outboundSchema = objectType({
|
|
47509
|
-
id: stringType().default("
|
|
47525
|
+
id: stringType().default("01K83NPC3FQZ0YJZEX8P0BRMVW"),
|
|
47510
47526
|
path: stringType(),
|
|
47511
47527
|
key: stringType(),
|
|
47512
47528
|
displayName: stringType().optional(),
|
|
@@ -47624,7 +47640,7 @@ var init_createtool = __esm(() => {
|
|
|
47624
47640
|
ResponseBodyMcp$.outboundSchema = ResponseBodyMcp$outboundSchema;
|
|
47625
47641
|
})(ResponseBodyMcp$ ||= {});
|
|
47626
47642
|
ResponseBody4$inboundSchema = objectType({
|
|
47627
|
-
_id: stringType().default("
|
|
47643
|
+
_id: stringType().default("01K83NPC3DAW8CVGHMEXA4G12T"),
|
|
47628
47644
|
path: stringType(),
|
|
47629
47645
|
key: stringType(),
|
|
47630
47646
|
display_name: stringType().optional(),
|
|
@@ -47651,7 +47667,7 @@ var init_createtool = __esm(() => {
|
|
|
47651
47667
|
});
|
|
47652
47668
|
});
|
|
47653
47669
|
ResponseBody4$outboundSchema = objectType({
|
|
47654
|
-
id: stringType().default("
|
|
47670
|
+
id: stringType().default("01K83NPC3DAW8CVGHMEXA4G12T"),
|
|
47655
47671
|
path: stringType(),
|
|
47656
47672
|
key: stringType(),
|
|
47657
47673
|
displayName: stringType().optional(),
|
|
@@ -47766,7 +47782,7 @@ var init_createtool = __esm(() => {
|
|
|
47766
47782
|
CreateToolResponseBodyHttp$.outboundSchema = CreateToolResponseBodyHttp$outboundSchema;
|
|
47767
47783
|
})(CreateToolResponseBodyHttp$ ||= {});
|
|
47768
47784
|
ResponseBody3$inboundSchema = objectType({
|
|
47769
|
-
_id: stringType().default("
|
|
47785
|
+
_id: stringType().default("01K83NPC3DEXRXJ76V32PF7W6B"),
|
|
47770
47786
|
path: stringType(),
|
|
47771
47787
|
key: stringType(),
|
|
47772
47788
|
display_name: stringType().optional(),
|
|
@@ -47793,7 +47809,7 @@ var init_createtool = __esm(() => {
|
|
|
47793
47809
|
});
|
|
47794
47810
|
});
|
|
47795
47811
|
ResponseBody3$outboundSchema = objectType({
|
|
47796
|
-
id: stringType().default("
|
|
47812
|
+
id: stringType().default("01K83NPC3DEXRXJ76V32PF7W6B"),
|
|
47797
47813
|
path: stringType(),
|
|
47798
47814
|
key: stringType(),
|
|
47799
47815
|
displayName: stringType().optional(),
|
|
@@ -47852,7 +47868,7 @@ var init_createtool = __esm(() => {
|
|
|
47852
47868
|
ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
|
|
47853
47869
|
})(ResponseBodyJsonSchema$ ||= {});
|
|
47854
47870
|
ResponseBody2$inboundSchema = objectType({
|
|
47855
|
-
_id: stringType().default("
|
|
47871
|
+
_id: stringType().default("01K83NPC3CJDV03YFR34JB89NC"),
|
|
47856
47872
|
path: stringType(),
|
|
47857
47873
|
key: stringType(),
|
|
47858
47874
|
display_name: stringType().optional(),
|
|
@@ -47880,7 +47896,7 @@ var init_createtool = __esm(() => {
|
|
|
47880
47896
|
});
|
|
47881
47897
|
});
|
|
47882
47898
|
ResponseBody2$outboundSchema = objectType({
|
|
47883
|
-
id: stringType().default("
|
|
47899
|
+
id: stringType().default("01K83NPC3CJDV03YFR34JB89NC"),
|
|
47884
47900
|
path: stringType(),
|
|
47885
47901
|
key: stringType(),
|
|
47886
47902
|
displayName: stringType().optional(),
|
|
@@ -47940,7 +47956,7 @@ var init_createtool = __esm(() => {
|
|
|
47940
47956
|
CreateToolResponseBodyFunction$.outboundSchema = CreateToolResponseBodyFunction$outboundSchema;
|
|
47941
47957
|
})(CreateToolResponseBodyFunction$ ||= {});
|
|
47942
47958
|
ResponseBody1$inboundSchema = objectType({
|
|
47943
|
-
_id: stringType().default("
|
|
47959
|
+
_id: stringType().default("01K83NPC39MEE26S5VE1C8D4GQ"),
|
|
47944
47960
|
path: stringType(),
|
|
47945
47961
|
key: stringType(),
|
|
47946
47962
|
display_name: stringType().optional(),
|
|
@@ -47967,7 +47983,7 @@ var init_createtool = __esm(() => {
|
|
|
47967
47983
|
});
|
|
47968
47984
|
});
|
|
47969
47985
|
ResponseBody1$outboundSchema = objectType({
|
|
47970
|
-
id: stringType().default("
|
|
47986
|
+
id: stringType().default("01K83NPC39MEE26S5VE1C8D4GQ"),
|
|
47971
47987
|
path: stringType(),
|
|
47972
47988
|
key: stringType(),
|
|
47973
47989
|
displayName: stringType().optional(),
|
|
@@ -56048,7 +56064,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56048
56064
|
DuplicateToolResponseBodyCodeTool$.outboundSchema = DuplicateToolResponseBodyCodeTool$outboundSchema;
|
|
56049
56065
|
})(DuplicateToolResponseBodyCodeTool$ ||= {});
|
|
56050
56066
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
56051
|
-
_id: stringType().default("
|
|
56067
|
+
_id: stringType().default("01K83NPC3X9MPQMYGHX1EQT40G"),
|
|
56052
56068
|
path: stringType(),
|
|
56053
56069
|
key: stringType(),
|
|
56054
56070
|
display_name: stringType().optional(),
|
|
@@ -56076,7 +56092,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56076
56092
|
});
|
|
56077
56093
|
});
|
|
56078
56094
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
56079
|
-
id: stringType().default("
|
|
56095
|
+
id: stringType().default("01K83NPC3X9MPQMYGHX1EQT40G"),
|
|
56080
56096
|
path: stringType(),
|
|
56081
56097
|
key: stringType(),
|
|
56082
56098
|
displayName: stringType().optional(),
|
|
@@ -56194,7 +56210,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56194
56210
|
DuplicateToolResponseBodyMcp$.outboundSchema = DuplicateToolResponseBodyMcp$outboundSchema;
|
|
56195
56211
|
})(DuplicateToolResponseBodyMcp$ ||= {});
|
|
56196
56212
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
56197
|
-
_id: stringType().default("
|
|
56213
|
+
_id: stringType().default("01K83NPC3XYVTXHJ7Z7H1J38BN"),
|
|
56198
56214
|
path: stringType(),
|
|
56199
56215
|
key: stringType(),
|
|
56200
56216
|
display_name: stringType().optional(),
|
|
@@ -56221,7 +56237,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56221
56237
|
});
|
|
56222
56238
|
});
|
|
56223
56239
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
56224
|
-
id: stringType().default("
|
|
56240
|
+
id: stringType().default("01K83NPC3XYVTXHJ7Z7H1J38BN"),
|
|
56225
56241
|
path: stringType(),
|
|
56226
56242
|
key: stringType(),
|
|
56227
56243
|
displayName: stringType().optional(),
|
|
@@ -56336,7 +56352,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56336
56352
|
DuplicateToolResponseBodyHttp$.outboundSchema = DuplicateToolResponseBodyHttp$outboundSchema;
|
|
56337
56353
|
})(DuplicateToolResponseBodyHttp$ ||= {});
|
|
56338
56354
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
56339
|
-
_id: stringType().default("
|
|
56355
|
+
_id: stringType().default("01K83NPC3NCCJHYMD6MF22FD0T"),
|
|
56340
56356
|
path: stringType(),
|
|
56341
56357
|
key: stringType(),
|
|
56342
56358
|
display_name: stringType().optional(),
|
|
@@ -56363,7 +56379,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56363
56379
|
});
|
|
56364
56380
|
});
|
|
56365
56381
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
56366
|
-
id: stringType().default("
|
|
56382
|
+
id: stringType().default("01K83NPC3NCCJHYMD6MF22FD0T"),
|
|
56367
56383
|
path: stringType(),
|
|
56368
56384
|
key: stringType(),
|
|
56369
56385
|
displayName: stringType().optional(),
|
|
@@ -56422,7 +56438,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56422
56438
|
DuplicateToolResponseBodyJsonSchema$.outboundSchema = DuplicateToolResponseBodyJsonSchema$outboundSchema;
|
|
56423
56439
|
})(DuplicateToolResponseBodyJsonSchema$ ||= {});
|
|
56424
56440
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
56425
|
-
_id: stringType().default("
|
|
56441
|
+
_id: stringType().default("01K83NPC3NKJD9JRKQ5BFR3R9R"),
|
|
56426
56442
|
path: stringType(),
|
|
56427
56443
|
key: stringType(),
|
|
56428
56444
|
display_name: stringType().optional(),
|
|
@@ -56450,7 +56466,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56450
56466
|
});
|
|
56451
56467
|
});
|
|
56452
56468
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
56453
|
-
id: stringType().default("
|
|
56469
|
+
id: stringType().default("01K83NPC3NKJD9JRKQ5BFR3R9R"),
|
|
56454
56470
|
path: stringType(),
|
|
56455
56471
|
key: stringType(),
|
|
56456
56472
|
displayName: stringType().optional(),
|
|
@@ -56510,7 +56526,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56510
56526
|
DuplicateToolResponseBodyFunction$.outboundSchema = DuplicateToolResponseBodyFunction$outboundSchema;
|
|
56511
56527
|
})(DuplicateToolResponseBodyFunction$ ||= {});
|
|
56512
56528
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
56513
|
-
_id: stringType().default("
|
|
56529
|
+
_id: stringType().default("01K83NPC3M28GVYDP4W1PB6GZH"),
|
|
56514
56530
|
path: stringType(),
|
|
56515
56531
|
key: stringType(),
|
|
56516
56532
|
display_name: stringType().optional(),
|
|
@@ -56537,7 +56553,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
56537
56553
|
});
|
|
56538
56554
|
});
|
|
56539
56555
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
56540
|
-
id: stringType().default("
|
|
56556
|
+
id: stringType().default("01K83NPC3M28GVYDP4W1PB6GZH"),
|
|
56541
56557
|
path: stringType(),
|
|
56542
56558
|
key: stringType(),
|
|
56543
56559
|
displayName: stringType().optional(),
|
|
@@ -58183,7 +58199,7 @@ var init_fileget = __esm(() => {
|
|
|
58183
58199
|
bytes: numberType(),
|
|
58184
58200
|
file_name: stringType(),
|
|
58185
58201
|
workspace_id: stringType(),
|
|
58186
|
-
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))
|
|
58187
58203
|
}).transform((v2) => {
|
|
58188
58204
|
return remap(v2, {
|
|
58189
58205
|
_id: "id",
|
|
@@ -58199,7 +58215,7 @@ var init_fileget = __esm(() => {
|
|
|
58199
58215
|
bytes: numberType(),
|
|
58200
58216
|
fileName: stringType(),
|
|
58201
58217
|
workspaceId: stringType(),
|
|
58202
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58218
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58203
58219
|
}).transform((v2) => {
|
|
58204
58220
|
return remap(v2, {
|
|
58205
58221
|
id: "_id",
|
|
@@ -58270,7 +58286,7 @@ var init_filelist = __esm(() => {
|
|
|
58270
58286
|
bytes: numberType(),
|
|
58271
58287
|
file_name: stringType(),
|
|
58272
58288
|
workspace_id: stringType(),
|
|
58273
|
-
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))
|
|
58274
58290
|
}).transform((v2) => {
|
|
58275
58291
|
return remap(v2, {
|
|
58276
58292
|
_id: "id",
|
|
@@ -58286,7 +58302,7 @@ var init_filelist = __esm(() => {
|
|
|
58286
58302
|
bytes: numberType(),
|
|
58287
58303
|
fileName: stringType(),
|
|
58288
58304
|
workspaceId: stringType(),
|
|
58289
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58305
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58290
58306
|
}).transform((v2) => {
|
|
58291
58307
|
return remap(v2, {
|
|
58292
58308
|
id: "_id",
|
|
@@ -58418,7 +58434,7 @@ var init_fileupload = __esm(() => {
|
|
|
58418
58434
|
bytes: numberType(),
|
|
58419
58435
|
file_name: stringType(),
|
|
58420
58436
|
workspace_id: stringType(),
|
|
58421
|
-
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))
|
|
58422
58438
|
}).transform((v2) => {
|
|
58423
58439
|
return remap(v2, {
|
|
58424
58440
|
_id: "id",
|
|
@@ -58434,7 +58450,7 @@ var init_fileupload = __esm(() => {
|
|
|
58434
58450
|
bytes: numberType(),
|
|
58435
58451
|
fileName: stringType(),
|
|
58436
58452
|
workspaceId: stringType(),
|
|
58437
|
-
created: dateType().default(() => new Date("2025-10-
|
|
58453
|
+
created: dateType().default(() => new Date("2025-10-21T15:20:01.476Z")).transform((v2) => v2.toISOString())
|
|
58438
58454
|
}).transform((v2) => {
|
|
58439
58455
|
return remap(v2, {
|
|
58440
58456
|
id: "_id",
|
|
@@ -60378,7 +60394,7 @@ var init_getalltools = __esm(() => {
|
|
|
60378
60394
|
DataCodeTool$.outboundSchema = DataCodeTool$outboundSchema;
|
|
60379
60395
|
})(DataCodeTool$ ||= {});
|
|
60380
60396
|
Data5$inboundSchema = objectType({
|
|
60381
|
-
_id: stringType().default("
|
|
60397
|
+
_id: stringType().default("01K83NPC31BZ5SX8KFXF5QGENT"),
|
|
60382
60398
|
path: stringType(),
|
|
60383
60399
|
key: stringType(),
|
|
60384
60400
|
display_name: stringType().optional(),
|
|
@@ -60406,7 +60422,7 @@ var init_getalltools = __esm(() => {
|
|
|
60406
60422
|
});
|
|
60407
60423
|
});
|
|
60408
60424
|
Data5$outboundSchema = objectType({
|
|
60409
|
-
id: stringType().default("
|
|
60425
|
+
id: stringType().default("01K83NPC31BZ5SX8KFXF5QGENT"),
|
|
60410
60426
|
path: stringType(),
|
|
60411
60427
|
key: stringType(),
|
|
60412
60428
|
displayName: stringType().optional(),
|
|
@@ -60524,7 +60540,7 @@ var init_getalltools = __esm(() => {
|
|
|
60524
60540
|
DataMcp$.outboundSchema = DataMcp$outboundSchema;
|
|
60525
60541
|
})(DataMcp$ ||= {});
|
|
60526
60542
|
Data4$inboundSchema = objectType({
|
|
60527
|
-
_id: stringType().default("
|
|
60543
|
+
_id: stringType().default("01K83NPC30D0VFAFYBPFK3QSJD"),
|
|
60528
60544
|
path: stringType(),
|
|
60529
60545
|
key: stringType(),
|
|
60530
60546
|
display_name: stringType().optional(),
|
|
@@ -60551,7 +60567,7 @@ var init_getalltools = __esm(() => {
|
|
|
60551
60567
|
});
|
|
60552
60568
|
});
|
|
60553
60569
|
Data4$outboundSchema = objectType({
|
|
60554
|
-
id: stringType().default("
|
|
60570
|
+
id: stringType().default("01K83NPC30D0VFAFYBPFK3QSJD"),
|
|
60555
60571
|
path: stringType(),
|
|
60556
60572
|
key: stringType(),
|
|
60557
60573
|
displayName: stringType().optional(),
|
|
@@ -60666,7 +60682,7 @@ var init_getalltools = __esm(() => {
|
|
|
60666
60682
|
GetAllToolsDataHttp$.outboundSchema = GetAllToolsDataHttp$outboundSchema;
|
|
60667
60683
|
})(GetAllToolsDataHttp$ ||= {});
|
|
60668
60684
|
Data3$inboundSchema = objectType({
|
|
60669
|
-
_id: stringType().default("
|
|
60685
|
+
_id: stringType().default("01K83NPC2Z7CZXV4YSGK7KKCHB"),
|
|
60670
60686
|
path: stringType(),
|
|
60671
60687
|
key: stringType(),
|
|
60672
60688
|
display_name: stringType().optional(),
|
|
@@ -60693,7 +60709,7 @@ var init_getalltools = __esm(() => {
|
|
|
60693
60709
|
});
|
|
60694
60710
|
});
|
|
60695
60711
|
Data3$outboundSchema = objectType({
|
|
60696
|
-
id: stringType().default("
|
|
60712
|
+
id: stringType().default("01K83NPC2Z7CZXV4YSGK7KKCHB"),
|
|
60697
60713
|
path: stringType(),
|
|
60698
60714
|
key: stringType(),
|
|
60699
60715
|
displayName: stringType().optional(),
|
|
@@ -60752,7 +60768,7 @@ var init_getalltools = __esm(() => {
|
|
|
60752
60768
|
DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
|
|
60753
60769
|
})(DataJsonSchema$ ||= {});
|
|
60754
60770
|
Data2$inboundSchema = objectType({
|
|
60755
|
-
_id: stringType().default("
|
|
60771
|
+
_id: stringType().default("01K83NPC2ZH3NBCP2K4YXKACJF"),
|
|
60756
60772
|
path: stringType(),
|
|
60757
60773
|
key: stringType(),
|
|
60758
60774
|
display_name: stringType().optional(),
|
|
@@ -60780,7 +60796,7 @@ var init_getalltools = __esm(() => {
|
|
|
60780
60796
|
});
|
|
60781
60797
|
});
|
|
60782
60798
|
Data2$outboundSchema = objectType({
|
|
60783
|
-
id: stringType().default("
|
|
60799
|
+
id: stringType().default("01K83NPC2ZH3NBCP2K4YXKACJF"),
|
|
60784
60800
|
path: stringType(),
|
|
60785
60801
|
key: stringType(),
|
|
60786
60802
|
displayName: stringType().optional(),
|
|
@@ -60840,7 +60856,7 @@ var init_getalltools = __esm(() => {
|
|
|
60840
60856
|
GetAllToolsDataFunction$.outboundSchema = GetAllToolsDataFunction$outboundSchema;
|
|
60841
60857
|
})(GetAllToolsDataFunction$ ||= {});
|
|
60842
60858
|
Data1$inboundSchema = objectType({
|
|
60843
|
-
_id: stringType().default("
|
|
60859
|
+
_id: stringType().default("01K83NPC2Y02ZAPGD6QKFVA0P9"),
|
|
60844
60860
|
path: stringType(),
|
|
60845
60861
|
key: stringType(),
|
|
60846
60862
|
display_name: stringType().optional(),
|
|
@@ -60867,7 +60883,7 @@ var init_getalltools = __esm(() => {
|
|
|
60867
60883
|
});
|
|
60868
60884
|
});
|
|
60869
60885
|
Data1$outboundSchema = objectType({
|
|
60870
|
-
id: stringType().default("
|
|
60886
|
+
id: stringType().default("01K83NPC2Y02ZAPGD6QKFVA0P9"),
|
|
60871
60887
|
path: stringType(),
|
|
60872
60888
|
key: stringType(),
|
|
60873
60889
|
displayName: stringType().optional(),
|
|
@@ -61039,7 +61055,7 @@ var init_getbudget = __esm(() => {
|
|
|
61039
61055
|
is_active: booleanType(),
|
|
61040
61056
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
61041
61057
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61042
|
-
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))
|
|
61043
61059
|
}).transform((v2) => {
|
|
61044
61060
|
return remap(v2, {
|
|
61045
61061
|
_id: "id",
|
|
@@ -61055,7 +61071,7 @@ var init_getbudget = __esm(() => {
|
|
|
61055
61071
|
isActive: booleanType(),
|
|
61056
61072
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
61057
61073
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61058
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
61074
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
61059
61075
|
}).transform((v2) => {
|
|
61060
61076
|
return remap(v2, {
|
|
61061
61077
|
id: "_id",
|
|
@@ -61418,8 +61434,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61418
61434
|
DataTypescript$inboundSchema = objectType({
|
|
61419
61435
|
_id: stringType(),
|
|
61420
61436
|
description: stringType(),
|
|
61421
|
-
created: stringType().default("2025-10-
|
|
61422
|
-
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"),
|
|
61423
61439
|
guardrail_config: unionType([
|
|
61424
61440
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
61425
61441
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -61436,8 +61452,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61436
61452
|
DataTypescript$outboundSchema = objectType({
|
|
61437
61453
|
id: stringType(),
|
|
61438
61454
|
description: stringType(),
|
|
61439
|
-
created: stringType().default("2025-10-
|
|
61440
|
-
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"),
|
|
61441
61457
|
guardrailConfig: unionType([
|
|
61442
61458
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
61443
61459
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -61530,8 +61546,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61530
61546
|
DataRagas$inboundSchema = objectType({
|
|
61531
61547
|
_id: stringType(),
|
|
61532
61548
|
description: stringType(),
|
|
61533
|
-
created: stringType().default("2025-10-
|
|
61534
|
-
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"),
|
|
61535
61551
|
guardrail_config: unionType([
|
|
61536
61552
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
61537
61553
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -61550,8 +61566,8 @@ var init_getevals2 = __esm(() => {
|
|
|
61550
61566
|
DataRagas$outboundSchema = objectType({
|
|
61551
61567
|
id: stringType(),
|
|
61552
61568
|
description: stringType(),
|
|
61553
|
-
created: stringType().default("2025-10-
|
|
61554
|
-
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"),
|
|
61555
61571
|
guardrailConfig: unionType([
|
|
61556
61572
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
61557
61573
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -62304,8 +62320,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62304
62320
|
DataFunction$inboundSchema = objectType({
|
|
62305
62321
|
_id: stringType(),
|
|
62306
62322
|
description: stringType(),
|
|
62307
|
-
created: stringType().default("2025-10-
|
|
62308
|
-
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"),
|
|
62309
62325
|
guardrail_config: unionType([
|
|
62310
62326
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
62311
62327
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -62359,8 +62375,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62359
62375
|
DataFunction$outboundSchema = objectType({
|
|
62360
62376
|
id: stringType(),
|
|
62361
62377
|
description: stringType(),
|
|
62362
|
-
created: stringType().default("2025-10-
|
|
62363
|
-
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"),
|
|
62364
62380
|
guardrailConfig: unionType([
|
|
62365
62381
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
62366
62382
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -62484,8 +62500,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62484
62500
|
DataPython$inboundSchema = objectType({
|
|
62485
62501
|
_id: stringType(),
|
|
62486
62502
|
description: stringType(),
|
|
62487
|
-
created: stringType().default("2025-10-
|
|
62488
|
-
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"),
|
|
62489
62505
|
guardrail_config: unionType([
|
|
62490
62506
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
62491
62507
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -62502,8 +62518,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62502
62518
|
DataPython$outboundSchema = objectType({
|
|
62503
62519
|
id: stringType(),
|
|
62504
62520
|
description: stringType(),
|
|
62505
|
-
created: stringType().default("2025-10-
|
|
62506
|
-
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"),
|
|
62507
62523
|
guardrailConfig: unionType([
|
|
62508
62524
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
62509
62525
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -62596,8 +62612,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62596
62612
|
DataHTTP$inboundSchema = objectType({
|
|
62597
62613
|
_id: stringType(),
|
|
62598
62614
|
description: stringType(),
|
|
62599
|
-
created: stringType().default("2025-10-
|
|
62600
|
-
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"),
|
|
62601
62617
|
guardrail_config: unionType([
|
|
62602
62618
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
62603
62619
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -62617,8 +62633,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62617
62633
|
DataHTTP$outboundSchema = objectType({
|
|
62618
62634
|
id: stringType(),
|
|
62619
62635
|
description: stringType(),
|
|
62620
|
-
created: stringType().default("2025-10-
|
|
62621
|
-
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"),
|
|
62622
62638
|
guardrailConfig: unionType([
|
|
62623
62639
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
62624
62640
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -62708,8 +62724,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62708
62724
|
DataJSON$inboundSchema = objectType({
|
|
62709
62725
|
_id: stringType(),
|
|
62710
62726
|
description: stringType(),
|
|
62711
|
-
created: stringType().default("2025-10-
|
|
62712
|
-
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"),
|
|
62713
62729
|
guardrail_config: unionType([
|
|
62714
62730
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
62715
62731
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -62726,8 +62742,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62726
62742
|
DataJSON$outboundSchema = objectType({
|
|
62727
62743
|
id: stringType(),
|
|
62728
62744
|
description: stringType(),
|
|
62729
|
-
created: stringType().default("2025-10-
|
|
62730
|
-
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"),
|
|
62731
62747
|
guardrailConfig: unionType([
|
|
62732
62748
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
62733
62749
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -62814,8 +62830,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62814
62830
|
DataLLM$inboundSchema = objectType({
|
|
62815
62831
|
_id: stringType(),
|
|
62816
62832
|
description: stringType(),
|
|
62817
|
-
created: stringType().default("2025-10-
|
|
62818
|
-
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"),
|
|
62819
62835
|
guardrail_config: unionType([
|
|
62820
62836
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
62821
62837
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -62833,8 +62849,8 @@ var init_getevals2 = __esm(() => {
|
|
|
62833
62849
|
DataLLM$outboundSchema = objectType({
|
|
62834
62850
|
id: stringType(),
|
|
62835
62851
|
description: stringType(),
|
|
62836
|
-
created: stringType().default("2025-10-
|
|
62837
|
-
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"),
|
|
62838
62854
|
guardrailConfig: unionType([
|
|
62839
62855
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
62840
62856
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -66627,7 +66643,7 @@ var init_listbudgets = __esm(() => {
|
|
|
66627
66643
|
is_active: booleanType(),
|
|
66628
66644
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
66629
66645
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
66630
|
-
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))
|
|
66631
66647
|
}).transform((v2) => {
|
|
66632
66648
|
return remap(v2, {
|
|
66633
66649
|
_id: "id",
|
|
@@ -66643,7 +66659,7 @@ var init_listbudgets = __esm(() => {
|
|
|
66643
66659
|
isActive: booleanType(),
|
|
66644
66660
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
66645
66661
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
66646
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
66662
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
66647
66663
|
}).transform((v2) => {
|
|
66648
66664
|
return remap(v2, {
|
|
66649
66665
|
id: "_id",
|
|
@@ -66911,7 +66927,7 @@ var init_listcontacts = __esm(() => {
|
|
|
66911
66927
|
tags: arrayType(stringType()).optional(),
|
|
66912
66928
|
metadata: recordType(anyType()).optional(),
|
|
66913
66929
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
66914
|
-
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)),
|
|
66915
66931
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
66916
66932
|
}).transform((v2) => {
|
|
66917
66933
|
return remap(v2, {
|
|
@@ -66930,7 +66946,7 @@ var init_listcontacts = __esm(() => {
|
|
|
66930
66946
|
tags: arrayType(stringType()).optional(),
|
|
66931
66947
|
metadata: recordType(anyType()).optional(),
|
|
66932
66948
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
66933
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
66949
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString()),
|
|
66934
66950
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
66935
66951
|
}).transform((v2) => {
|
|
66936
66952
|
return remap(v2, {
|
|
@@ -67681,7 +67697,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
67681
67697
|
created_by_id: stringType().optional(),
|
|
67682
67698
|
updated_by_id: stringType().optional(),
|
|
67683
67699
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67684
|
-
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))
|
|
67685
67701
|
}).transform((v2) => {
|
|
67686
67702
|
return remap(v2, {
|
|
67687
67703
|
_id: "id",
|
|
@@ -67708,7 +67724,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
67708
67724
|
createdById: stringType().optional(),
|
|
67709
67725
|
updatedById: stringType().optional(),
|
|
67710
67726
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67711
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
67727
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
67712
67728
|
}).transform((v2) => {
|
|
67713
67729
|
return remap(v2, {
|
|
67714
67730
|
id: "_id",
|
|
@@ -67816,7 +67832,7 @@ var init_listdatasets = __esm(() => {
|
|
|
67816
67832
|
updated_by_id: stringType().optional(),
|
|
67817
67833
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
67818
67834
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67819
|
-
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))
|
|
67820
67836
|
}).transform((v2) => {
|
|
67821
67837
|
return remap(v2, {
|
|
67822
67838
|
_id: "id",
|
|
@@ -67836,7 +67852,7 @@ var init_listdatasets = __esm(() => {
|
|
|
67836
67852
|
updatedById: stringType().optional(),
|
|
67837
67853
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
67838
67854
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67839
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
67855
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
67840
67856
|
}).transform((v2) => {
|
|
67841
67857
|
return remap(v2, {
|
|
67842
67858
|
id: "_id",
|
|
@@ -67941,7 +67957,7 @@ var init_listdatasources = __esm(() => {
|
|
|
67941
67957
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
67942
67958
|
})(ListDatasourcesStatus$ ||= {});
|
|
67943
67959
|
ListDatasourcesData$inboundSchema = objectType({
|
|
67944
|
-
_id: stringType().default("
|
|
67960
|
+
_id: stringType().default("01K83NPC012M3EWV0HWK1Q0ZFG"),
|
|
67945
67961
|
display_name: stringType(),
|
|
67946
67962
|
description: stringType().optional(),
|
|
67947
67963
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -67964,7 +67980,7 @@ var init_listdatasources = __esm(() => {
|
|
|
67964
67980
|
});
|
|
67965
67981
|
});
|
|
67966
67982
|
ListDatasourcesData$outboundSchema = objectType({
|
|
67967
|
-
id: stringType().default("
|
|
67983
|
+
id: stringType().default("01K83NPC012M3EWV0HWK1Q0ZFG"),
|
|
67968
67984
|
displayName: stringType(),
|
|
67969
67985
|
description: stringType().optional(),
|
|
67970
67986
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -69651,7 +69667,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
69651
69667
|
tags: arrayType(stringType()).optional(),
|
|
69652
69668
|
metadata: recordType(anyType()).optional(),
|
|
69653
69669
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
69654
|
-
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))
|
|
69655
69671
|
}).transform((v2) => {
|
|
69656
69672
|
return remap(v2, {
|
|
69657
69673
|
_id: "id",
|
|
@@ -69669,7 +69685,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
69669
69685
|
tags: arrayType(stringType()).optional(),
|
|
69670
69686
|
metadata: recordType(anyType()).optional(),
|
|
69671
69687
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
69672
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
69688
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
69673
69689
|
}).transform((v2) => {
|
|
69674
69690
|
return remap(v2, {
|
|
69675
69691
|
id: "_id",
|
|
@@ -70382,7 +70398,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
70382
70398
|
created_by_id: stringType().optional(),
|
|
70383
70399
|
updated_by_id: stringType().optional(),
|
|
70384
70400
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70385
|
-
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))
|
|
70386
70402
|
}).transform((v2) => {
|
|
70387
70403
|
return remap(v2, {
|
|
70388
70404
|
_id: "id",
|
|
@@ -70409,7 +70425,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
70409
70425
|
createdById: stringType().optional(),
|
|
70410
70426
|
updatedById: stringType().optional(),
|
|
70411
70427
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70412
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
70428
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
70413
70429
|
}).transform((v2) => {
|
|
70414
70430
|
return remap(v2, {
|
|
70415
70431
|
id: "_id",
|
|
@@ -70480,7 +70496,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
70480
70496
|
updated_by_id: stringType().optional(),
|
|
70481
70497
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
70482
70498
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70483
|
-
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))
|
|
70484
70500
|
}).transform((v2) => {
|
|
70485
70501
|
return remap(v2, {
|
|
70486
70502
|
_id: "id",
|
|
@@ -70500,7 +70516,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
70500
70516
|
updatedById: stringType().optional(),
|
|
70501
70517
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
70502
70518
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70503
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
70519
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
70504
70520
|
}).transform((v2) => {
|
|
70505
70521
|
return remap(v2, {
|
|
70506
70522
|
id: "_id",
|
|
@@ -70558,7 +70574,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
70558
70574
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
70559
70575
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
70560
70576
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
70561
|
-
_id: stringType().default("
|
|
70577
|
+
_id: stringType().default("01K83NPC02KAQ1NCCWJRZD8XCC"),
|
|
70562
70578
|
display_name: stringType(),
|
|
70563
70579
|
description: stringType().optional(),
|
|
70564
70580
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -70581,7 +70597,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
70581
70597
|
});
|
|
70582
70598
|
});
|
|
70583
70599
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
70584
|
-
id: stringType().default("
|
|
70600
|
+
id: stringType().default("01K83NPC02KAQ1NCCWJRZD8XCC"),
|
|
70585
70601
|
displayName: stringType(),
|
|
70586
70602
|
description: stringType().optional(),
|
|
70587
70603
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -71254,7 +71270,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71254
71270
|
RetrieveToolResponseBodyCodeTool$.outboundSchema = RetrieveToolResponseBodyCodeTool$outboundSchema;
|
|
71255
71271
|
})(RetrieveToolResponseBodyCodeTool$ ||= {});
|
|
71256
71272
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
71257
|
-
_id: stringType().default("
|
|
71273
|
+
_id: stringType().default("01K83NPC3ZCE6A8SJYB68M3G4M"),
|
|
71258
71274
|
path: stringType(),
|
|
71259
71275
|
key: stringType(),
|
|
71260
71276
|
display_name: stringType().optional(),
|
|
@@ -71282,7 +71298,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71282
71298
|
});
|
|
71283
71299
|
});
|
|
71284
71300
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
71285
|
-
id: stringType().default("
|
|
71301
|
+
id: stringType().default("01K83NPC3ZCE6A8SJYB68M3G4M"),
|
|
71286
71302
|
path: stringType(),
|
|
71287
71303
|
key: stringType(),
|
|
71288
71304
|
displayName: stringType().optional(),
|
|
@@ -71400,7 +71416,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71400
71416
|
RetrieveToolResponseBodyMcp$.outboundSchema = RetrieveToolResponseBodyMcp$outboundSchema;
|
|
71401
71417
|
})(RetrieveToolResponseBodyMcp$ ||= {});
|
|
71402
71418
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
71403
|
-
_id: stringType().default("
|
|
71419
|
+
_id: stringType().default("01K83NPC3Z9QPJYHDMJN9C9TAW"),
|
|
71404
71420
|
path: stringType(),
|
|
71405
71421
|
key: stringType(),
|
|
71406
71422
|
display_name: stringType().optional(),
|
|
@@ -71427,7 +71443,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71427
71443
|
});
|
|
71428
71444
|
});
|
|
71429
71445
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
71430
|
-
id: stringType().default("
|
|
71446
|
+
id: stringType().default("01K83NPC3Z9QPJYHDMJN9C9TAW"),
|
|
71431
71447
|
path: stringType(),
|
|
71432
71448
|
key: stringType(),
|
|
71433
71449
|
displayName: stringType().optional(),
|
|
@@ -71542,7 +71558,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71542
71558
|
RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
|
|
71543
71559
|
})(RetrieveToolResponseBodyHttp$ ||= {});
|
|
71544
71560
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
71545
|
-
_id: stringType().default("
|
|
71561
|
+
_id: stringType().default("01K83NPC3Y27GKB546C8YQ6C8S"),
|
|
71546
71562
|
path: stringType(),
|
|
71547
71563
|
key: stringType(),
|
|
71548
71564
|
display_name: stringType().optional(),
|
|
@@ -71569,7 +71585,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71569
71585
|
});
|
|
71570
71586
|
});
|
|
71571
71587
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
71572
|
-
id: stringType().default("
|
|
71588
|
+
id: stringType().default("01K83NPC3Y27GKB546C8YQ6C8S"),
|
|
71573
71589
|
path: stringType(),
|
|
71574
71590
|
key: stringType(),
|
|
71575
71591
|
displayName: stringType().optional(),
|
|
@@ -71628,7 +71644,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71628
71644
|
RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
|
|
71629
71645
|
})(RetrieveToolResponseBodyJsonSchema$ ||= {});
|
|
71630
71646
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
71631
|
-
_id: stringType().default("
|
|
71647
|
+
_id: stringType().default("01K83NPC3YB6V2ZTFNWSNBSZ04"),
|
|
71632
71648
|
path: stringType(),
|
|
71633
71649
|
key: stringType(),
|
|
71634
71650
|
display_name: stringType().optional(),
|
|
@@ -71656,7 +71672,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71656
71672
|
});
|
|
71657
71673
|
});
|
|
71658
71674
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
71659
|
-
id: stringType().default("
|
|
71675
|
+
id: stringType().default("01K83NPC3YB6V2ZTFNWSNBSZ04"),
|
|
71660
71676
|
path: stringType(),
|
|
71661
71677
|
key: stringType(),
|
|
71662
71678
|
displayName: stringType().optional(),
|
|
@@ -71716,7 +71732,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71716
71732
|
RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
|
|
71717
71733
|
})(RetrieveToolResponseBodyFunction$ ||= {});
|
|
71718
71734
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
71719
|
-
_id: stringType().default("
|
|
71735
|
+
_id: stringType().default("01K83NPC3YWM2TB6DE9RSEAEP2"),
|
|
71720
71736
|
path: stringType(),
|
|
71721
71737
|
key: stringType(),
|
|
71722
71738
|
display_name: stringType().optional(),
|
|
@@ -71743,7 +71759,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71743
71759
|
});
|
|
71744
71760
|
});
|
|
71745
71761
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
71746
|
-
id: stringType().default("
|
|
71762
|
+
id: stringType().default("01K83NPC3YWM2TB6DE9RSEAEP2"),
|
|
71747
71763
|
path: stringType(),
|
|
71748
71764
|
key: stringType(),
|
|
71749
71765
|
displayName: stringType().optional(),
|
|
@@ -71794,7 +71810,7 @@ var init_retrievetool = __esm(() => {
|
|
|
71794
71810
|
});
|
|
71795
71811
|
|
|
71796
71812
|
// src/models/operations/runagent.ts
|
|
71797
|
-
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$;
|
|
71798
71814
|
var init_runagent = __esm(() => {
|
|
71799
71815
|
init_esm();
|
|
71800
71816
|
init_primitives();
|
|
@@ -72155,18 +72171,18 @@ var init_runagent = __esm(() => {
|
|
|
72155
72171
|
RunAgentKnowledgeBases$.inboundSchema = RunAgentKnowledgeBases$inboundSchema;
|
|
72156
72172
|
RunAgentKnowledgeBases$.outboundSchema = RunAgentKnowledgeBases$outboundSchema;
|
|
72157
72173
|
})(RunAgentKnowledgeBases$ ||= {});
|
|
72158
|
-
|
|
72174
|
+
RunAgentTeamOfAgents$inboundSchema = objectType({
|
|
72159
72175
|
key: stringType(),
|
|
72160
72176
|
role: stringType().optional()
|
|
72161
72177
|
});
|
|
72162
|
-
|
|
72178
|
+
RunAgentTeamOfAgents$outboundSchema = objectType({
|
|
72163
72179
|
key: stringType(),
|
|
72164
72180
|
role: stringType().optional()
|
|
72165
72181
|
});
|
|
72166
|
-
((
|
|
72167
|
-
|
|
72168
|
-
|
|
72169
|
-
})(
|
|
72182
|
+
((RunAgentTeamOfAgents$) => {
|
|
72183
|
+
RunAgentTeamOfAgents$.inboundSchema = RunAgentTeamOfAgents$inboundSchema;
|
|
72184
|
+
RunAgentTeamOfAgents$.outboundSchema = RunAgentTeamOfAgents$outboundSchema;
|
|
72185
|
+
})(RunAgentTeamOfAgents$ ||= {});
|
|
72170
72186
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema = nativeEnumType(RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type);
|
|
72171
72187
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema;
|
|
72172
72188
|
((RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$) => {
|
|
@@ -72800,7 +72816,7 @@ var init_runagent = __esm(() => {
|
|
|
72800
72816
|
system_prompt: stringType().optional(),
|
|
72801
72817
|
memory_stores: arrayType(stringType()).optional(),
|
|
72802
72818
|
knowledge_bases: arrayType(lazyType(() => RunAgentKnowledgeBases$inboundSchema)).optional(),
|
|
72803
|
-
team_of_agents: arrayType(lazyType(() =>
|
|
72819
|
+
team_of_agents: arrayType(lazyType(() => RunAgentTeamOfAgents$inboundSchema)).optional(),
|
|
72804
72820
|
settings: lazyType(() => RunAgentSettings$inboundSchema),
|
|
72805
72821
|
metadata: recordType(anyType()).optional()
|
|
72806
72822
|
}).transform((v2) => {
|
|
@@ -72830,7 +72846,7 @@ var init_runagent = __esm(() => {
|
|
|
72830
72846
|
systemPrompt: stringType().optional(),
|
|
72831
72847
|
memoryStores: arrayType(stringType()).optional(),
|
|
72832
72848
|
knowledgeBases: arrayType(lazyType(() => RunAgentKnowledgeBases$outboundSchema)).optional(),
|
|
72833
|
-
teamOfAgents: arrayType(lazyType(() =>
|
|
72849
|
+
teamOfAgents: arrayType(lazyType(() => RunAgentTeamOfAgents$outboundSchema)).optional(),
|
|
72834
72850
|
settings: lazyType(() => RunAgentSettings$outboundSchema),
|
|
72835
72851
|
metadata: recordType(anyType()).optional()
|
|
72836
72852
|
}).transform((v2) => {
|
|
@@ -75027,7 +75043,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
75027
75043
|
});
|
|
75028
75044
|
|
|
75029
75045
|
// src/models/operations/updateagent.ts
|
|
75030
|
-
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;
|
|
75031
75047
|
var init_updateagent2 = __esm(() => {
|
|
75032
75048
|
init_esm();
|
|
75033
75049
|
init_primitives();
|
|
@@ -75590,6 +75606,18 @@ var init_updateagent2 = __esm(() => {
|
|
|
75590
75606
|
UpdateAgentKnowledgeBases$.inboundSchema = UpdateAgentKnowledgeBases$inboundSchema;
|
|
75591
75607
|
UpdateAgentKnowledgeBases$.outboundSchema = UpdateAgentKnowledgeBases$outboundSchema;
|
|
75592
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$ ||= {});
|
|
75593
75621
|
UpdateAgentRequestBody$inboundSchema = objectType({
|
|
75594
75622
|
key: stringType().optional(),
|
|
75595
75623
|
project_id: stringType().optional(),
|
|
@@ -75602,14 +75630,16 @@ var init_updateagent2 = __esm(() => {
|
|
|
75602
75630
|
settings: lazyType(() => UpdateAgentSettings$inboundSchema).optional(),
|
|
75603
75631
|
path: stringType().optional(),
|
|
75604
75632
|
memory_stores: arrayType(stringType()).optional(),
|
|
75605
|
-
knowledge_bases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$inboundSchema)).optional()
|
|
75633
|
+
knowledge_bases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$inboundSchema)).optional(),
|
|
75634
|
+
team_of_agents: arrayType(lazyType(() => UpdateAgentTeamOfAgents$inboundSchema)).optional()
|
|
75606
75635
|
}).transform((v2) => {
|
|
75607
75636
|
return remap(v2, {
|
|
75608
75637
|
project_id: "projectId",
|
|
75609
75638
|
system_prompt: "systemPrompt",
|
|
75610
75639
|
fallback_models: "fallbackModels",
|
|
75611
75640
|
memory_stores: "memoryStores",
|
|
75612
|
-
knowledge_bases: "knowledgeBases"
|
|
75641
|
+
knowledge_bases: "knowledgeBases",
|
|
75642
|
+
team_of_agents: "teamOfAgents"
|
|
75613
75643
|
});
|
|
75614
75644
|
});
|
|
75615
75645
|
UpdateAgentRequestBody$outboundSchema = objectType({
|
|
@@ -75624,14 +75654,16 @@ var init_updateagent2 = __esm(() => {
|
|
|
75624
75654
|
settings: lazyType(() => UpdateAgentSettings$outboundSchema).optional(),
|
|
75625
75655
|
path: stringType().optional(),
|
|
75626
75656
|
memoryStores: arrayType(stringType()).optional(),
|
|
75627
|
-
knowledgeBases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$outboundSchema)).optional()
|
|
75657
|
+
knowledgeBases: arrayType(lazyType(() => UpdateAgentKnowledgeBases$outboundSchema)).optional(),
|
|
75658
|
+
teamOfAgents: arrayType(lazyType(() => UpdateAgentTeamOfAgents$outboundSchema)).optional()
|
|
75628
75659
|
}).transform((v2) => {
|
|
75629
75660
|
return remap(v2, {
|
|
75630
75661
|
projectId: "project_id",
|
|
75631
75662
|
systemPrompt: "system_prompt",
|
|
75632
75663
|
fallbackModels: "fallback_models",
|
|
75633
75664
|
memoryStores: "memory_stores",
|
|
75634
|
-
knowledgeBases: "knowledge_bases"
|
|
75665
|
+
knowledgeBases: "knowledge_bases",
|
|
75666
|
+
teamOfAgents: "team_of_agents"
|
|
75635
75667
|
});
|
|
75636
75668
|
});
|
|
75637
75669
|
((UpdateAgentRequestBody$) => {
|
|
@@ -75780,18 +75812,18 @@ var init_updateagent2 = __esm(() => {
|
|
|
75780
75812
|
UpdateAgentModel$.inboundSchema = UpdateAgentModel$inboundSchema;
|
|
75781
75813
|
UpdateAgentModel$.outboundSchema = UpdateAgentModel$outboundSchema;
|
|
75782
75814
|
})(UpdateAgentModel$ ||= {});
|
|
75783
|
-
|
|
75815
|
+
UpdateAgentAgentsTeamOfAgents$inboundSchema = objectType({
|
|
75784
75816
|
key: stringType(),
|
|
75785
75817
|
role: stringType().optional()
|
|
75786
75818
|
});
|
|
75787
|
-
|
|
75819
|
+
UpdateAgentAgentsTeamOfAgents$outboundSchema = objectType({
|
|
75788
75820
|
key: stringType(),
|
|
75789
75821
|
role: stringType().optional()
|
|
75790
75822
|
});
|
|
75791
|
-
((
|
|
75792
|
-
|
|
75793
|
-
|
|
75794
|
-
})(
|
|
75823
|
+
((UpdateAgentAgentsTeamOfAgents$) => {
|
|
75824
|
+
UpdateAgentAgentsTeamOfAgents$.inboundSchema = UpdateAgentAgentsTeamOfAgents$inboundSchema;
|
|
75825
|
+
UpdateAgentAgentsTeamOfAgents$.outboundSchema = UpdateAgentAgentsTeamOfAgents$outboundSchema;
|
|
75826
|
+
})(UpdateAgentAgentsTeamOfAgents$ ||= {});
|
|
75795
75827
|
UpdateAgentMetrics$inboundSchema = objectType({
|
|
75796
75828
|
total_cost: numberType().default(0)
|
|
75797
75829
|
}).transform((v2) => {
|
|
@@ -75853,7 +75885,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
75853
75885
|
version_hash: stringType().optional(),
|
|
75854
75886
|
path: stringType(),
|
|
75855
75887
|
memory_stores: arrayType(stringType()),
|
|
75856
|
-
team_of_agents: arrayType(lazyType(() =>
|
|
75888
|
+
team_of_agents: arrayType(lazyType(() => UpdateAgentAgentsTeamOfAgents$inboundSchema)),
|
|
75857
75889
|
metrics: lazyType(() => UpdateAgentMetrics$inboundSchema).optional(),
|
|
75858
75890
|
variables: recordType(anyType()).optional(),
|
|
75859
75891
|
knowledge_bases: arrayType(lazyType(() => UpdateAgentAgentsKnowledgeBases$inboundSchema)).optional(),
|
|
@@ -75892,7 +75924,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
75892
75924
|
versionHash: stringType().optional(),
|
|
75893
75925
|
path: stringType(),
|
|
75894
75926
|
memoryStores: arrayType(stringType()),
|
|
75895
|
-
teamOfAgents: arrayType(lazyType(() =>
|
|
75927
|
+
teamOfAgents: arrayType(lazyType(() => UpdateAgentAgentsTeamOfAgents$outboundSchema)),
|
|
75896
75928
|
metrics: lazyType(() => UpdateAgentMetrics$outboundSchema).optional(),
|
|
75897
75929
|
variables: recordType(anyType()).optional(),
|
|
75898
75930
|
knowledgeBases: arrayType(lazyType(() => UpdateAgentAgentsKnowledgeBases$outboundSchema)).optional(),
|
|
@@ -76060,7 +76092,7 @@ var init_updatebudget = __esm(() => {
|
|
|
76060
76092
|
is_active: booleanType(),
|
|
76061
76093
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
76062
76094
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
76063
|
-
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))
|
|
76064
76096
|
}).transform((v2) => {
|
|
76065
76097
|
return remap(v2, {
|
|
76066
76098
|
_id: "id",
|
|
@@ -76076,7 +76108,7 @@ var init_updatebudget = __esm(() => {
|
|
|
76076
76108
|
isActive: booleanType(),
|
|
76077
76109
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
76078
76110
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
76079
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
76111
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
76080
76112
|
}).transform((v2) => {
|
|
76081
76113
|
return remap(v2, {
|
|
76082
76114
|
id: "_id",
|
|
@@ -76266,7 +76298,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
76266
76298
|
tags: arrayType(stringType()).optional(),
|
|
76267
76299
|
metadata: recordType(anyType()).optional(),
|
|
76268
76300
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
76269
|
-
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))
|
|
76270
76302
|
}).transform((v2) => {
|
|
76271
76303
|
return remap(v2, {
|
|
76272
76304
|
_id: "id",
|
|
@@ -76284,7 +76316,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
76284
76316
|
tags: arrayType(stringType()).optional(),
|
|
76285
76317
|
metadata: recordType(anyType()).optional(),
|
|
76286
76318
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
76287
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
76319
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
76288
76320
|
}).transform((v2) => {
|
|
76289
76321
|
return remap(v2, {
|
|
76290
76322
|
id: "_id",
|
|
@@ -77690,7 +77722,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
77690
77722
|
created_by_id: stringType().optional(),
|
|
77691
77723
|
updated_by_id: stringType().optional(),
|
|
77692
77724
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
77693
|
-
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))
|
|
77694
77726
|
}).transform((v2) => {
|
|
77695
77727
|
return remap(v2, {
|
|
77696
77728
|
_id: "id",
|
|
@@ -77717,7 +77749,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
77717
77749
|
createdById: stringType().optional(),
|
|
77718
77750
|
updatedById: stringType().optional(),
|
|
77719
77751
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
77720
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
77752
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
77721
77753
|
}).transform((v2) => {
|
|
77722
77754
|
return remap(v2, {
|
|
77723
77755
|
id: "_id",
|
|
@@ -77818,7 +77850,7 @@ var init_updatedataset = __esm(() => {
|
|
|
77818
77850
|
parent_id: stringType().optional(),
|
|
77819
77851
|
version: stringType().optional(),
|
|
77820
77852
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
77821
|
-
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))
|
|
77822
77854
|
}).transform((v2) => {
|
|
77823
77855
|
return remap(v2, {
|
|
77824
77856
|
_id: "id",
|
|
@@ -77841,7 +77873,7 @@ var init_updatedataset = __esm(() => {
|
|
|
77841
77873
|
parentId: stringType().optional(),
|
|
77842
77874
|
version: stringType().optional(),
|
|
77843
77875
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
77844
|
-
updated: dateType().default(() => new Date("2025-10-
|
|
77876
|
+
updated: dateType().default(() => new Date("2025-10-21T15:19:58.203Z")).transform((v2) => v2.toISOString())
|
|
77845
77877
|
}).transform((v2) => {
|
|
77846
77878
|
return remap(v2, {
|
|
77847
77879
|
id: "_id",
|
|
@@ -77922,7 +77954,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
77922
77954
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
77923
77955
|
})(UpdateDatasourceStatus$ ||= {});
|
|
77924
77956
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
77925
|
-
_id: stringType().default("
|
|
77957
|
+
_id: stringType().default("01K83NPC03MC3HJKZQZ2VFBZQM"),
|
|
77926
77958
|
display_name: stringType(),
|
|
77927
77959
|
description: stringType().optional(),
|
|
77928
77960
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -77945,7 +77977,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
77945
77977
|
});
|
|
77946
77978
|
});
|
|
77947
77979
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
77948
|
-
id: stringType().default("
|
|
77980
|
+
id: stringType().default("01K83NPC03MC3HJKZQZ2VFBZQM"),
|
|
77949
77981
|
displayName: stringType(),
|
|
77950
77982
|
description: stringType().optional(),
|
|
77951
77983
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -78878,8 +78910,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78878
78910
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
78879
78911
|
_id: stringType(),
|
|
78880
78912
|
description: stringType(),
|
|
78881
|
-
created: stringType().default("2025-10-
|
|
78882
|
-
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"),
|
|
78883
78915
|
guardrail_config: unionType([
|
|
78884
78916
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
78885
78917
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -78896,8 +78928,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78896
78928
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
78897
78929
|
id: stringType(),
|
|
78898
78930
|
description: stringType(),
|
|
78899
|
-
created: stringType().default("2025-10-
|
|
78900
|
-
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"),
|
|
78901
78933
|
guardrailConfig: unionType([
|
|
78902
78934
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
78903
78935
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -78990,8 +79022,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
78990
79022
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
78991
79023
|
_id: stringType(),
|
|
78992
79024
|
description: stringType(),
|
|
78993
|
-
created: stringType().default("2025-10-
|
|
78994
|
-
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"),
|
|
78995
79027
|
guardrail_config: unionType([
|
|
78996
79028
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
78997
79029
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -79010,8 +79042,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79010
79042
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
79011
79043
|
id: stringType(),
|
|
79012
79044
|
description: stringType(),
|
|
79013
|
-
created: stringType().default("2025-10-
|
|
79014
|
-
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"),
|
|
79015
79047
|
guardrailConfig: unionType([
|
|
79016
79048
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
79017
79049
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -79764,8 +79796,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79764
79796
|
UpdateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
79765
79797
|
_id: stringType(),
|
|
79766
79798
|
description: stringType(),
|
|
79767
|
-
created: stringType().default("2025-10-
|
|
79768
|
-
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"),
|
|
79769
79801
|
guardrail_config: unionType([
|
|
79770
79802
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
79771
79803
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -79819,8 +79851,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79819
79851
|
UpdateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
79820
79852
|
id: stringType(),
|
|
79821
79853
|
description: stringType(),
|
|
79822
|
-
created: stringType().default("2025-10-
|
|
79823
|
-
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"),
|
|
79824
79856
|
guardrailConfig: unionType([
|
|
79825
79857
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
79826
79858
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -79944,8 +79976,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79944
79976
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
79945
79977
|
_id: stringType(),
|
|
79946
79978
|
description: stringType(),
|
|
79947
|
-
created: stringType().default("2025-10-
|
|
79948
|
-
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"),
|
|
79949
79981
|
guardrail_config: unionType([
|
|
79950
79982
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
79951
79983
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -79962,8 +79994,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
79962
79994
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
79963
79995
|
id: stringType(),
|
|
79964
79996
|
description: stringType(),
|
|
79965
|
-
created: stringType().default("2025-10-
|
|
79966
|
-
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"),
|
|
79967
79999
|
guardrailConfig: unionType([
|
|
79968
80000
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
79969
80001
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -80056,8 +80088,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80056
80088
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
80057
80089
|
_id: stringType(),
|
|
80058
80090
|
description: stringType(),
|
|
80059
|
-
created: stringType().default("2025-10-
|
|
80060
|
-
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"),
|
|
80061
80093
|
guardrail_config: unionType([
|
|
80062
80094
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
80063
80095
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -80077,8 +80109,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80077
80109
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
80078
80110
|
id: stringType(),
|
|
80079
80111
|
description: stringType(),
|
|
80080
|
-
created: stringType().default("2025-10-
|
|
80081
|
-
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"),
|
|
80082
80114
|
guardrailConfig: unionType([
|
|
80083
80115
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
80084
80116
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -80168,8 +80200,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80168
80200
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
80169
80201
|
_id: stringType(),
|
|
80170
80202
|
description: stringType(),
|
|
80171
|
-
created: stringType().default("2025-10-
|
|
80172
|
-
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"),
|
|
80173
80205
|
guardrail_config: unionType([
|
|
80174
80206
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
80175
80207
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -80186,8 +80218,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80186
80218
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
80187
80219
|
id: stringType(),
|
|
80188
80220
|
description: stringType(),
|
|
80189
|
-
created: stringType().default("2025-10-
|
|
80190
|
-
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"),
|
|
80191
80223
|
guardrailConfig: unionType([
|
|
80192
80224
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
80193
80225
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -80274,8 +80306,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80274
80306
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
80275
80307
|
_id: stringType(),
|
|
80276
80308
|
description: stringType(),
|
|
80277
|
-
created: stringType().default("2025-10-
|
|
80278
|
-
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"),
|
|
80279
80311
|
guardrail_config: unionType([
|
|
80280
80312
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
80281
80313
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -80293,8 +80325,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
80293
80325
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
80294
80326
|
id: stringType(),
|
|
80295
80327
|
description: stringType(),
|
|
80296
|
-
created: stringType().default("2025-10-
|
|
80297
|
-
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"),
|
|
80298
80330
|
guardrailConfig: unionType([
|
|
80299
80331
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
80300
80332
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -83101,7 +83133,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83101
83133
|
UpdateToolRequestBodyHttp$.outboundSchema = UpdateToolRequestBodyHttp$outboundSchema;
|
|
83102
83134
|
})(UpdateToolRequestBodyHttp$ ||= {});
|
|
83103
83135
|
UpdateToolRequestBody3$inboundSchema = objectType({
|
|
83104
|
-
_id: stringType().default("
|
|
83136
|
+
_id: stringType().default("01K83NPC3M07ZX67B927MCEWWZ"),
|
|
83105
83137
|
path: stringType().optional(),
|
|
83106
83138
|
display_name: stringType().optional(),
|
|
83107
83139
|
description: stringType().optional(),
|
|
@@ -83115,7 +83147,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83115
83147
|
});
|
|
83116
83148
|
});
|
|
83117
83149
|
UpdateToolRequestBody3$outboundSchema = objectType({
|
|
83118
|
-
id: stringType().default("
|
|
83150
|
+
id: stringType().default("01K83NPC3M07ZX67B927MCEWWZ"),
|
|
83119
83151
|
path: stringType().optional(),
|
|
83120
83152
|
displayName: stringType().optional(),
|
|
83121
83153
|
description: stringType().optional(),
|
|
@@ -83161,7 +83193,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83161
83193
|
UpdateToolRequestBodyJsonSchema$.outboundSchema = UpdateToolRequestBodyJsonSchema$outboundSchema;
|
|
83162
83194
|
})(UpdateToolRequestBodyJsonSchema$ ||= {});
|
|
83163
83195
|
UpdateToolRequestBody2$inboundSchema = objectType({
|
|
83164
|
-
_id: stringType().default("
|
|
83196
|
+
_id: stringType().default("01K83NPC3KYTZE9B4FRGWF0FYJ"),
|
|
83165
83197
|
path: stringType().optional(),
|
|
83166
83198
|
display_name: stringType().optional(),
|
|
83167
83199
|
description: stringType().optional(),
|
|
@@ -83176,7 +83208,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83176
83208
|
});
|
|
83177
83209
|
});
|
|
83178
83210
|
UpdateToolRequestBody2$outboundSchema = objectType({
|
|
83179
|
-
id: stringType().default("
|
|
83211
|
+
id: stringType().default("01K83NPC3KYTZE9B4FRGWF0FYJ"),
|
|
83180
83212
|
path: stringType().optional(),
|
|
83181
83213
|
displayName: stringType().optional(),
|
|
83182
83214
|
description: stringType().optional(),
|
|
@@ -83335,7 +83367,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83335
83367
|
UpdateToolResponseBodyCodeTool$.outboundSchema = UpdateToolResponseBodyCodeTool$outboundSchema;
|
|
83336
83368
|
})(UpdateToolResponseBodyCodeTool$ ||= {});
|
|
83337
83369
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
83338
|
-
_id: stringType().default("
|
|
83370
|
+
_id: stringType().default("01K83NPC3K65SQVDCZAN2DRRY8"),
|
|
83339
83371
|
path: stringType(),
|
|
83340
83372
|
key: stringType(),
|
|
83341
83373
|
display_name: stringType().optional(),
|
|
@@ -83363,7 +83395,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83363
83395
|
});
|
|
83364
83396
|
});
|
|
83365
83397
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
83366
|
-
id: stringType().default("
|
|
83398
|
+
id: stringType().default("01K83NPC3K65SQVDCZAN2DRRY8"),
|
|
83367
83399
|
path: stringType(),
|
|
83368
83400
|
key: stringType(),
|
|
83369
83401
|
displayName: stringType().optional(),
|
|
@@ -83481,7 +83513,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83481
83513
|
UpdateToolResponseBodyMcp$.outboundSchema = UpdateToolResponseBodyMcp$outboundSchema;
|
|
83482
83514
|
})(UpdateToolResponseBodyMcp$ ||= {});
|
|
83483
83515
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
83484
|
-
_id: stringType().default("
|
|
83516
|
+
_id: stringType().default("01K83NPC3JKGNC80CX8RT14H98"),
|
|
83485
83517
|
path: stringType(),
|
|
83486
83518
|
key: stringType(),
|
|
83487
83519
|
display_name: stringType().optional(),
|
|
@@ -83508,7 +83540,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83508
83540
|
});
|
|
83509
83541
|
});
|
|
83510
83542
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
83511
|
-
id: stringType().default("
|
|
83543
|
+
id: stringType().default("01K83NPC3JKGNC80CX8RT14H98"),
|
|
83512
83544
|
path: stringType(),
|
|
83513
83545
|
key: stringType(),
|
|
83514
83546
|
displayName: stringType().optional(),
|
|
@@ -83623,7 +83655,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83623
83655
|
UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
|
|
83624
83656
|
})(UpdateToolResponseBodyHttp$ ||= {});
|
|
83625
83657
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
83626
|
-
_id: stringType().default("
|
|
83658
|
+
_id: stringType().default("01K83NPC3JA8A594T35HXVFVH6"),
|
|
83627
83659
|
path: stringType(),
|
|
83628
83660
|
key: stringType(),
|
|
83629
83661
|
display_name: stringType().optional(),
|
|
@@ -83650,7 +83682,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83650
83682
|
});
|
|
83651
83683
|
});
|
|
83652
83684
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
83653
|
-
id: stringType().default("
|
|
83685
|
+
id: stringType().default("01K83NPC3JA8A594T35HXVFVH6"),
|
|
83654
83686
|
path: stringType(),
|
|
83655
83687
|
key: stringType(),
|
|
83656
83688
|
displayName: stringType().optional(),
|
|
@@ -83709,7 +83741,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83709
83741
|
UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
|
|
83710
83742
|
})(UpdateToolResponseBodyJsonSchema$ ||= {});
|
|
83711
83743
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
83712
|
-
_id: stringType().default("
|
|
83744
|
+
_id: stringType().default("01K83NPC3JDMEKXFG2C3M22F5P"),
|
|
83713
83745
|
path: stringType(),
|
|
83714
83746
|
key: stringType(),
|
|
83715
83747
|
display_name: stringType().optional(),
|
|
@@ -83737,7 +83769,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83737
83769
|
});
|
|
83738
83770
|
});
|
|
83739
83771
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
83740
|
-
id: stringType().default("
|
|
83772
|
+
id: stringType().default("01K83NPC3JDMEKXFG2C3M22F5P"),
|
|
83741
83773
|
path: stringType(),
|
|
83742
83774
|
key: stringType(),
|
|
83743
83775
|
displayName: stringType().optional(),
|
|
@@ -83797,7 +83829,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83797
83829
|
UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
|
|
83798
83830
|
})(UpdateToolResponseBodyFunction$ ||= {});
|
|
83799
83831
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
83800
|
-
_id: stringType().default("
|
|
83832
|
+
_id: stringType().default("01K83NPC3H69KR800GH8GY3HGS"),
|
|
83801
83833
|
path: stringType(),
|
|
83802
83834
|
key: stringType(),
|
|
83803
83835
|
display_name: stringType().optional(),
|
|
@@ -83824,7 +83856,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
83824
83856
|
});
|
|
83825
83857
|
});
|
|
83826
83858
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
83827
|
-
id: stringType().default("
|
|
83859
|
+
id: stringType().default("01K83NPC3H69KR800GH8GY3HGS"),
|
|
83828
83860
|
path: stringType(),
|
|
83829
83861
|
key: stringType(),
|
|
83830
83862
|
displayName: stringType().optional(),
|
|
@@ -100185,7 +100217,7 @@ Updates a tool in the workspace.`,
|
|
|
100185
100217
|
function createMCPServer(deps) {
|
|
100186
100218
|
const server = new McpServer({
|
|
100187
100219
|
name: "Orq",
|
|
100188
|
-
version: "3.13.
|
|
100220
|
+
version: "3.13.13"
|
|
100189
100221
|
});
|
|
100190
100222
|
const client = new OrqCore({
|
|
100191
100223
|
apiKey: deps.apiKey,
|
|
@@ -101671,7 +101703,7 @@ var routes = rn({
|
|
|
101671
101703
|
var app = Ve(routes, {
|
|
101672
101704
|
name: "mcp",
|
|
101673
101705
|
versionInfo: {
|
|
101674
|
-
currentVersion: "3.13.
|
|
101706
|
+
currentVersion: "3.13.13"
|
|
101675
101707
|
}
|
|
101676
101708
|
});
|
|
101677
101709
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -101679,5 +101711,5 @@ export {
|
|
|
101679
101711
|
app
|
|
101680
101712
|
};
|
|
101681
101713
|
|
|
101682
|
-
//# debugId=
|
|
101714
|
+
//# debugId=E0E58DDA6D58BBA964756E2164756E21
|
|
101683
101715
|
//# sourceMappingURL=mcp-server.js.map
|