@orq-ai/node 3.14.25 → 3.14.27
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 +302 -300
- package/bin/mcp-server.js.map +41 -41
- 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 +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +10 -10
- 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/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- 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 +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/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/getalltools.ts +10 -10
- 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/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/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- 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 +33 -33
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +10 -10
- 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/listagenttasks.ts +4 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +10 -10
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.14.
|
|
34210
|
-
genVersion: "2.743.
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 3.14.
|
|
34209
|
+
sdkVersion: "3.14.27",
|
|
34210
|
+
genVersion: "2.743.9",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.14.27 2.743.9 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -37196,7 +37196,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37196
37196
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
37197
37197
|
CurrentDateTool$inboundSchema = objectType({
|
|
37198
37198
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
37199
|
-
requires_approval: booleanType().
|
|
37199
|
+
requires_approval: booleanType().optional()
|
|
37200
37200
|
}).transform((v2) => {
|
|
37201
37201
|
return remap(v2, {
|
|
37202
37202
|
requires_approval: "requiresApproval"
|
|
@@ -37204,7 +37204,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37204
37204
|
});
|
|
37205
37205
|
CurrentDateTool$outboundSchema = objectType({
|
|
37206
37206
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
37207
|
-
requiresApproval: booleanType().
|
|
37207
|
+
requiresApproval: booleanType().optional()
|
|
37208
37208
|
}).transform((v2) => {
|
|
37209
37209
|
return remap(v2, {
|
|
37210
37210
|
requiresApproval: "requires_approval"
|
|
@@ -37214,7 +37214,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37214
37214
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
37215
37215
|
QueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
37216
37216
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
37217
|
-
requires_approval: booleanType().
|
|
37217
|
+
requires_approval: booleanType().optional()
|
|
37218
37218
|
}).transform((v2) => {
|
|
37219
37219
|
return remap(v2, {
|
|
37220
37220
|
requires_approval: "requiresApproval"
|
|
@@ -37222,7 +37222,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37222
37222
|
});
|
|
37223
37223
|
QueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
37224
37224
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
37225
|
-
requiresApproval: booleanType().
|
|
37225
|
+
requiresApproval: booleanType().optional()
|
|
37226
37226
|
}).transform((v2) => {
|
|
37227
37227
|
return remap(v2, {
|
|
37228
37228
|
requiresApproval: "requires_approval"
|
|
@@ -37232,7 +37232,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37232
37232
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
37233
37233
|
RetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
37234
37234
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
37235
|
-
requires_approval: booleanType().
|
|
37235
|
+
requires_approval: booleanType().optional()
|
|
37236
37236
|
}).transform((v2) => {
|
|
37237
37237
|
return remap(v2, {
|
|
37238
37238
|
requires_approval: "requiresApproval"
|
|
@@ -37240,7 +37240,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37240
37240
|
});
|
|
37241
37241
|
RetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
37242
37242
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
37243
|
-
requiresApproval: booleanType().
|
|
37243
|
+
requiresApproval: booleanType().optional()
|
|
37244
37244
|
}).transform((v2) => {
|
|
37245
37245
|
return remap(v2, {
|
|
37246
37246
|
requiresApproval: "requires_approval"
|
|
@@ -37250,7 +37250,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37250
37250
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
37251
37251
|
DeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
37252
37252
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
37253
|
-
requires_approval: booleanType().
|
|
37253
|
+
requires_approval: booleanType().optional()
|
|
37254
37254
|
}).transform((v2) => {
|
|
37255
37255
|
return remap(v2, {
|
|
37256
37256
|
requires_approval: "requiresApproval"
|
|
@@ -37258,7 +37258,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37258
37258
|
});
|
|
37259
37259
|
DeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
37260
37260
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
37261
|
-
requiresApproval: booleanType().
|
|
37261
|
+
requiresApproval: booleanType().optional()
|
|
37262
37262
|
}).transform((v2) => {
|
|
37263
37263
|
return remap(v2, {
|
|
37264
37264
|
requiresApproval: "requires_approval"
|
|
@@ -37268,7 +37268,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37268
37268
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
37269
37269
|
RetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
37270
37270
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
37271
|
-
requires_approval: booleanType().
|
|
37271
|
+
requires_approval: booleanType().optional()
|
|
37272
37272
|
}).transform((v2) => {
|
|
37273
37273
|
return remap(v2, {
|
|
37274
37274
|
requires_approval: "requiresApproval"
|
|
@@ -37276,7 +37276,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37276
37276
|
});
|
|
37277
37277
|
RetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
37278
37278
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
37279
|
-
requiresApproval: booleanType().
|
|
37279
|
+
requiresApproval: booleanType().optional()
|
|
37280
37280
|
}).transform((v2) => {
|
|
37281
37281
|
return remap(v2, {
|
|
37282
37282
|
requiresApproval: "requires_approval"
|
|
@@ -37286,7 +37286,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37286
37286
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
37287
37287
|
WriteMemoryStoreTool$inboundSchema = objectType({
|
|
37288
37288
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
37289
|
-
requires_approval: booleanType().
|
|
37289
|
+
requires_approval: booleanType().optional()
|
|
37290
37290
|
}).transform((v2) => {
|
|
37291
37291
|
return remap(v2, {
|
|
37292
37292
|
requires_approval: "requiresApproval"
|
|
@@ -37294,7 +37294,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37294
37294
|
});
|
|
37295
37295
|
WriteMemoryStoreTool$outboundSchema = objectType({
|
|
37296
37296
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
37297
|
-
requiresApproval: booleanType().
|
|
37297
|
+
requiresApproval: booleanType().optional()
|
|
37298
37298
|
}).transform((v2) => {
|
|
37299
37299
|
return remap(v2, {
|
|
37300
37300
|
requiresApproval: "requires_approval"
|
|
@@ -37304,7 +37304,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37304
37304
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema;
|
|
37305
37305
|
QueryMemoryStoreTool$inboundSchema = objectType({
|
|
37306
37306
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
37307
|
-
requires_approval: booleanType().
|
|
37307
|
+
requires_approval: booleanType().optional()
|
|
37308
37308
|
}).transform((v2) => {
|
|
37309
37309
|
return remap(v2, {
|
|
37310
37310
|
requires_approval: "requiresApproval"
|
|
@@ -37312,7 +37312,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37312
37312
|
});
|
|
37313
37313
|
QueryMemoryStoreTool$outboundSchema = objectType({
|
|
37314
37314
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
37315
|
-
requiresApproval: booleanType().
|
|
37315
|
+
requiresApproval: booleanType().optional()
|
|
37316
37316
|
}).transform((v2) => {
|
|
37317
37317
|
return remap(v2, {
|
|
37318
37318
|
requiresApproval: "requires_approval"
|
|
@@ -37322,7 +37322,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37322
37322
|
CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema;
|
|
37323
37323
|
RetrieveAgentsTool$inboundSchema = objectType({
|
|
37324
37324
|
type: CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
37325
|
-
requires_approval: booleanType().
|
|
37325
|
+
requires_approval: booleanType().optional()
|
|
37326
37326
|
}).transform((v2) => {
|
|
37327
37327
|
return remap(v2, {
|
|
37328
37328
|
requires_approval: "requiresApproval"
|
|
@@ -37330,7 +37330,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37330
37330
|
});
|
|
37331
37331
|
RetrieveAgentsTool$outboundSchema = objectType({
|
|
37332
37332
|
type: CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
37333
|
-
requiresApproval: booleanType().
|
|
37333
|
+
requiresApproval: booleanType().optional()
|
|
37334
37334
|
}).transform((v2) => {
|
|
37335
37335
|
return remap(v2, {
|
|
37336
37336
|
requiresApproval: "requires_approval"
|
|
@@ -37340,7 +37340,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37340
37340
|
CreateAgentAgentToolInputCRUDAgentsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsType$inboundSchema;
|
|
37341
37341
|
CallSubAgentTool$inboundSchema = objectType({
|
|
37342
37342
|
type: CreateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
37343
|
-
requires_approval: booleanType().
|
|
37343
|
+
requires_approval: booleanType().optional()
|
|
37344
37344
|
}).transform((v2) => {
|
|
37345
37345
|
return remap(v2, {
|
|
37346
37346
|
requires_approval: "requiresApproval"
|
|
@@ -37348,7 +37348,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37348
37348
|
});
|
|
37349
37349
|
CallSubAgentTool$outboundSchema = objectType({
|
|
37350
37350
|
type: CreateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
37351
|
-
requiresApproval: booleanType().
|
|
37351
|
+
requiresApproval: booleanType().optional()
|
|
37352
37352
|
}).transform((v2) => {
|
|
37353
37353
|
return remap(v2, {
|
|
37354
37354
|
requiresApproval: "requires_approval"
|
|
@@ -37358,7 +37358,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37358
37358
|
CreateAgentAgentToolInputCRUDType$outboundSchema = CreateAgentAgentToolInputCRUDType$inboundSchema;
|
|
37359
37359
|
WebScraperTool$inboundSchema = objectType({
|
|
37360
37360
|
type: CreateAgentAgentToolInputCRUDType$inboundSchema,
|
|
37361
|
-
requires_approval: booleanType().
|
|
37361
|
+
requires_approval: booleanType().optional()
|
|
37362
37362
|
}).transform((v2) => {
|
|
37363
37363
|
return remap(v2, {
|
|
37364
37364
|
requires_approval: "requiresApproval"
|
|
@@ -37366,7 +37366,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37366
37366
|
});
|
|
37367
37367
|
WebScraperTool$outboundSchema = objectType({
|
|
37368
37368
|
type: CreateAgentAgentToolInputCRUDType$outboundSchema,
|
|
37369
|
-
requiresApproval: booleanType().
|
|
37369
|
+
requiresApproval: booleanType().optional()
|
|
37370
37370
|
}).transform((v2) => {
|
|
37371
37371
|
return remap(v2, {
|
|
37372
37372
|
requiresApproval: "requires_approval"
|
|
@@ -37376,7 +37376,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37376
37376
|
AgentToolInputCRUDType$outboundSchema = AgentToolInputCRUDType$inboundSchema;
|
|
37377
37377
|
GoogleSearchTool$inboundSchema = objectType({
|
|
37378
37378
|
type: AgentToolInputCRUDType$inboundSchema,
|
|
37379
|
-
requires_approval: booleanType().
|
|
37379
|
+
requires_approval: booleanType().optional()
|
|
37380
37380
|
}).transform((v2) => {
|
|
37381
37381
|
return remap(v2, {
|
|
37382
37382
|
requires_approval: "requiresApproval"
|
|
@@ -37384,7 +37384,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37384
37384
|
});
|
|
37385
37385
|
GoogleSearchTool$outboundSchema = objectType({
|
|
37386
37386
|
type: AgentToolInputCRUDType$outboundSchema,
|
|
37387
|
-
requiresApproval: booleanType().
|
|
37387
|
+
requiresApproval: booleanType().optional()
|
|
37388
37388
|
}).transform((v2) => {
|
|
37389
37389
|
return remap(v2, {
|
|
37390
37390
|
requiresApproval: "requires_approval"
|
|
@@ -38403,7 +38403,7 @@ var init_createbudget = __esm(() => {
|
|
|
38403
38403
|
is_active: booleanType(),
|
|
38404
38404
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38405
38405
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38406
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38406
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.603Z").transform((v2) => new Date(v2))
|
|
38407
38407
|
}).transform((v2) => {
|
|
38408
38408
|
return remap(v2, {
|
|
38409
38409
|
_id: "id",
|
|
@@ -38421,7 +38421,7 @@ var init_createbudget = __esm(() => {
|
|
|
38421
38421
|
isActive: booleanType(),
|
|
38422
38422
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38423
38423
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38424
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38424
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.603Z")).transform((v2) => v2.toISOString())
|
|
38425
38425
|
}).transform((v2) => {
|
|
38426
38426
|
return remap(v2, {
|
|
38427
38427
|
id: "_id",
|
|
@@ -38561,7 +38561,7 @@ var init_createcontact = __esm(() => {
|
|
|
38561
38561
|
tags: arrayType(stringType()).optional(),
|
|
38562
38562
|
metadata: recordType(anyType()).optional(),
|
|
38563
38563
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38564
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38564
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
38565
38565
|
}).transform((v2) => {
|
|
38566
38566
|
return remap(v2, {
|
|
38567
38567
|
_id: "id",
|
|
@@ -38581,7 +38581,7 @@ var init_createcontact = __esm(() => {
|
|
|
38581
38581
|
tags: arrayType(stringType()).optional(),
|
|
38582
38582
|
metadata: recordType(anyType()).optional(),
|
|
38583
38583
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38584
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38584
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
38585
38585
|
}).transform((v2) => {
|
|
38586
38586
|
return remap(v2, {
|
|
38587
38587
|
id: "_id",
|
|
@@ -38641,7 +38641,7 @@ var init_createdataset = __esm(() => {
|
|
|
38641
38641
|
created_by_id: stringType().optional(),
|
|
38642
38642
|
updated_by_id: stringType().optional(),
|
|
38643
38643
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38644
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38644
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
38645
38645
|
}).transform((v2) => {
|
|
38646
38646
|
return remap(v2, {
|
|
38647
38647
|
_id: "id",
|
|
@@ -38661,7 +38661,7 @@ var init_createdataset = __esm(() => {
|
|
|
38661
38661
|
createdById: stringType().optional(),
|
|
38662
38662
|
updatedById: stringType().optional(),
|
|
38663
38663
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38664
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38664
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
38665
38665
|
}).transform((v2) => {
|
|
38666
38666
|
return remap(v2, {
|
|
38667
38667
|
id: "_id",
|
|
@@ -39735,7 +39735,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39735
39735
|
human_review_id: stringType(),
|
|
39736
39736
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39737
39737
|
reviewed_by_id: stringType(),
|
|
39738
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39738
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.774Z").transform((v2) => new Date(v2)),
|
|
39739
39739
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39740
39740
|
values: arrayType(stringType())
|
|
39741
39741
|
}).transform((v2) => {
|
|
@@ -39752,7 +39752,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39752
39752
|
humanReviewId: stringType(),
|
|
39753
39753
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39754
39754
|
reviewedById: stringType(),
|
|
39755
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39755
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.774Z")).transform((v2) => v2.toISOString()),
|
|
39756
39756
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39757
39757
|
values: arrayType(stringType())
|
|
39758
39758
|
}).transform((v2) => {
|
|
@@ -39775,7 +39775,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39775
39775
|
human_review_id: stringType(),
|
|
39776
39776
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39777
39777
|
reviewed_by_id: stringType(),
|
|
39778
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39778
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.762Z").transform((v2) => new Date(v2)),
|
|
39779
39779
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39780
39780
|
value: numberType()
|
|
39781
39781
|
}).transform((v2) => {
|
|
@@ -39792,7 +39792,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39792
39792
|
humanReviewId: stringType(),
|
|
39793
39793
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39794
39794
|
reviewedById: stringType(),
|
|
39795
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39795
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.762Z")).transform((v2) => v2.toISOString()),
|
|
39796
39796
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39797
39797
|
value: numberType()
|
|
39798
39798
|
}).transform((v2) => {
|
|
@@ -39815,7 +39815,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39815
39815
|
human_review_id: stringType(),
|
|
39816
39816
|
source: Source$inboundSchema.default("orq"),
|
|
39817
39817
|
reviewed_by_id: stringType(),
|
|
39818
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39818
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.761Z").transform((v2) => new Date(v2)),
|
|
39819
39819
|
type: EvaluationsType$inboundSchema,
|
|
39820
39820
|
value: stringType()
|
|
39821
39821
|
}).transform((v2) => {
|
|
@@ -39832,7 +39832,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39832
39832
|
humanReviewId: stringType(),
|
|
39833
39833
|
source: Source$outboundSchema.default("orq"),
|
|
39834
39834
|
reviewedById: stringType(),
|
|
39835
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39835
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.761Z")).transform((v2) => v2.toISOString()),
|
|
39836
39836
|
type: EvaluationsType$outboundSchema,
|
|
39837
39837
|
value: stringType()
|
|
39838
39838
|
}).transform((v2) => {
|
|
@@ -39875,7 +39875,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39875
39875
|
created_by_id: stringType().optional(),
|
|
39876
39876
|
updated_by_id: stringType().optional(),
|
|
39877
39877
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39878
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39878
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
39879
39879
|
}).transform((v2) => {
|
|
39880
39880
|
return remap(v2, {
|
|
39881
39881
|
_id: "id",
|
|
@@ -39909,7 +39909,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39909
39909
|
createdById: stringType().optional(),
|
|
39910
39910
|
updatedById: stringType().optional(),
|
|
39911
39911
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39912
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
39912
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
39913
39913
|
}).transform((v2) => {
|
|
39914
39914
|
return remap(v2, {
|
|
39915
39915
|
id: "_id",
|
|
@@ -40088,7 +40088,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40088
40088
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40089
40089
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40090
40090
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40091
|
-
_id: stringType().default("
|
|
40091
|
+
_id: stringType().default("01K9FVXBVM6KRJ9X81DFXT0HC5"),
|
|
40092
40092
|
display_name: stringType(),
|
|
40093
40093
|
description: stringType().optional(),
|
|
40094
40094
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40111,7 +40111,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40111
40111
|
});
|
|
40112
40112
|
});
|
|
40113
40113
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40114
|
-
id: stringType().default("
|
|
40114
|
+
id: stringType().default("01K9FVXBVM6KRJ9X81DFXT0HC5"),
|
|
40115
40115
|
displayName: stringType(),
|
|
40116
40116
|
description: stringType().optional(),
|
|
40117
40117
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -40830,8 +40830,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40830
40830
|
Typescript$inboundSchema = objectType({
|
|
40831
40831
|
_id: stringType(),
|
|
40832
40832
|
description: stringType(),
|
|
40833
|
-
created: stringType().default("2025-11-
|
|
40834
|
-
updated: stringType().default("2025-11-
|
|
40833
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40834
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40835
40835
|
guardrail_config: unionType([
|
|
40836
40836
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
40837
40837
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -40848,8 +40848,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40848
40848
|
Typescript$outboundSchema = objectType({
|
|
40849
40849
|
id: stringType(),
|
|
40850
40850
|
description: stringType(),
|
|
40851
|
-
created: stringType().default("2025-11-
|
|
40852
|
-
updated: stringType().default("2025-11-
|
|
40851
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40852
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40853
40853
|
guardrailConfig: unionType([
|
|
40854
40854
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
40855
40855
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -40906,8 +40906,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40906
40906
|
Ragas$inboundSchema = objectType({
|
|
40907
40907
|
_id: stringType(),
|
|
40908
40908
|
description: stringType(),
|
|
40909
|
-
created: stringType().default("2025-11-
|
|
40910
|
-
updated: stringType().default("2025-11-
|
|
40909
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40910
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40911
40911
|
guardrail_config: unionType([
|
|
40912
40912
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
40913
40913
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -40926,8 +40926,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40926
40926
|
Ragas$outboundSchema = objectType({
|
|
40927
40927
|
id: stringType(),
|
|
40928
40928
|
description: stringType(),
|
|
40929
|
-
created: stringType().default("2025-11-
|
|
40930
|
-
updated: stringType().default("2025-11-
|
|
40929
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40930
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
40931
40931
|
guardrailConfig: unionType([
|
|
40932
40932
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
40933
40933
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41364,8 +41364,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41364
41364
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41365
41365
|
_id: stringType(),
|
|
41366
41366
|
description: stringType(),
|
|
41367
|
-
created: stringType().default("2025-11-
|
|
41368
|
-
updated: stringType().default("2025-11-
|
|
41367
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41368
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41369
41369
|
guardrail_config: unionType([
|
|
41370
41370
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41371
41371
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41419,8 +41419,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41419
41419
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41420
41420
|
id: stringType(),
|
|
41421
41421
|
description: stringType(),
|
|
41422
|
-
created: stringType().default("2025-11-
|
|
41423
|
-
updated: stringType().default("2025-11-
|
|
41422
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41423
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41424
41424
|
guardrailConfig: unionType([
|
|
41425
41425
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41426
41426
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41512,8 +41512,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41512
41512
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41513
41513
|
_id: stringType(),
|
|
41514
41514
|
description: stringType(),
|
|
41515
|
-
created: stringType().default("2025-11-
|
|
41516
|
-
updated: stringType().default("2025-11-
|
|
41515
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41516
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41517
41517
|
guardrail_config: unionType([
|
|
41518
41518
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41519
41519
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41530,8 +41530,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41530
41530
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41531
41531
|
id: stringType(),
|
|
41532
41532
|
description: stringType(),
|
|
41533
|
-
created: stringType().default("2025-11-
|
|
41534
|
-
updated: stringType().default("2025-11-
|
|
41533
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41534
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41535
41535
|
guardrailConfig: unionType([
|
|
41536
41536
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41537
41537
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41588,8 +41588,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41588
41588
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41589
41589
|
_id: stringType(),
|
|
41590
41590
|
description: stringType(),
|
|
41591
|
-
created: stringType().default("2025-11-
|
|
41592
|
-
updated: stringType().default("2025-11-
|
|
41591
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41592
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41593
41593
|
guardrail_config: unionType([
|
|
41594
41594
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41595
41595
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41609,8 +41609,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41609
41609
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41610
41610
|
id: stringType(),
|
|
41611
41611
|
description: stringType(),
|
|
41612
|
-
created: stringType().default("2025-11-
|
|
41613
|
-
updated: stringType().default("2025-11-
|
|
41612
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41613
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41614
41614
|
guardrailConfig: unionType([
|
|
41615
41615
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41616
41616
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41668,8 +41668,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41668
41668
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41669
41669
|
_id: stringType(),
|
|
41670
41670
|
description: stringType(),
|
|
41671
|
-
created: stringType().default("2025-11-
|
|
41672
|
-
updated: stringType().default("2025-11-
|
|
41671
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41672
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41673
41673
|
guardrail_config: unionType([
|
|
41674
41674
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41675
41675
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41686,8 +41686,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41686
41686
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41687
41687
|
id: stringType(),
|
|
41688
41688
|
description: stringType(),
|
|
41689
|
-
created: stringType().default("2025-11-
|
|
41690
|
-
updated: stringType().default("2025-11-
|
|
41689
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41690
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41691
41691
|
guardrailConfig: unionType([
|
|
41692
41692
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41693
41693
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41742,8 +41742,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41742
41742
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41743
41743
|
_id: stringType(),
|
|
41744
41744
|
description: stringType(),
|
|
41745
|
-
created: stringType().default("2025-11-
|
|
41746
|
-
updated: stringType().default("2025-11-
|
|
41745
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41746
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41747
41747
|
guardrail_config: unionType([
|
|
41748
41748
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41749
41749
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41761,8 +41761,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41761
41761
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41762
41762
|
id: stringType(),
|
|
41763
41763
|
description: stringType(),
|
|
41764
|
-
created: stringType().default("2025-11-
|
|
41765
|
-
updated: stringType().default("2025-11-
|
|
41764
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41765
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
41766
41766
|
guardrailConfig: unionType([
|
|
41767
41767
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41768
41768
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -44959,7 +44959,7 @@ var init_createtool = __esm(() => {
|
|
|
44959
44959
|
code: stringType()
|
|
44960
44960
|
});
|
|
44961
44961
|
ResponseBody5$inboundSchema = objectType({
|
|
44962
|
-
_id: stringType().default("
|
|
44962
|
+
_id: stringType().default("01K9FVXBP8AN0HH69KM2HB9W13"),
|
|
44963
44963
|
path: stringType(),
|
|
44964
44964
|
key: stringType(),
|
|
44965
44965
|
display_name: stringType().optional(),
|
|
@@ -44987,7 +44987,7 @@ var init_createtool = __esm(() => {
|
|
|
44987
44987
|
});
|
|
44988
44988
|
});
|
|
44989
44989
|
ResponseBody5$outboundSchema = objectType({
|
|
44990
|
-
id: stringType().default("
|
|
44990
|
+
id: stringType().default("01K9FVXBP8AN0HH69KM2HB9W13"),
|
|
44991
44991
|
path: stringType(),
|
|
44992
44992
|
key: stringType(),
|
|
44993
44993
|
displayName: stringType().optional(),
|
|
@@ -45073,7 +45073,7 @@ var init_createtool = __esm(() => {
|
|
|
45073
45073
|
});
|
|
45074
45074
|
});
|
|
45075
45075
|
ResponseBody4$inboundSchema = objectType({
|
|
45076
|
-
_id: stringType().default("
|
|
45076
|
+
_id: stringType().default("01K9FVXBP6J7FFAXAK1AS5FS8H"),
|
|
45077
45077
|
path: stringType(),
|
|
45078
45078
|
key: stringType(),
|
|
45079
45079
|
display_name: stringType().optional(),
|
|
@@ -45100,7 +45100,7 @@ var init_createtool = __esm(() => {
|
|
|
45100
45100
|
});
|
|
45101
45101
|
});
|
|
45102
45102
|
ResponseBody4$outboundSchema = objectType({
|
|
45103
|
-
id: stringType().default("
|
|
45103
|
+
id: stringType().default("01K9FVXBP6J7FFAXAK1AS5FS8H"),
|
|
45104
45104
|
path: stringType(),
|
|
45105
45105
|
key: stringType(),
|
|
45106
45106
|
displayName: stringType().optional(),
|
|
@@ -45179,7 +45179,7 @@ var init_createtool = __esm(() => {
|
|
|
45179
45179
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45180
45180
|
});
|
|
45181
45181
|
ResponseBody3$inboundSchema = objectType({
|
|
45182
|
-
_id: stringType().default("
|
|
45182
|
+
_id: stringType().default("01K9FVXBP4B0CG77ZCACDCAA4Q"),
|
|
45183
45183
|
path: stringType(),
|
|
45184
45184
|
key: stringType(),
|
|
45185
45185
|
display_name: stringType().optional(),
|
|
@@ -45206,7 +45206,7 @@ var init_createtool = __esm(() => {
|
|
|
45206
45206
|
});
|
|
45207
45207
|
});
|
|
45208
45208
|
ResponseBody3$outboundSchema = objectType({
|
|
45209
|
-
id: stringType().default("
|
|
45209
|
+
id: stringType().default("01K9FVXBP4B0CG77ZCACDCAA4Q"),
|
|
45210
45210
|
path: stringType(),
|
|
45211
45211
|
key: stringType(),
|
|
45212
45212
|
displayName: stringType().optional(),
|
|
@@ -45249,7 +45249,7 @@ var init_createtool = __esm(() => {
|
|
|
45249
45249
|
strict: booleanType().optional()
|
|
45250
45250
|
});
|
|
45251
45251
|
ResponseBody2$inboundSchema = objectType({
|
|
45252
|
-
_id: stringType().default("
|
|
45252
|
+
_id: stringType().default("01K9FVXBP3Q83XEFY5YGP8HW0H"),
|
|
45253
45253
|
path: stringType(),
|
|
45254
45254
|
key: stringType(),
|
|
45255
45255
|
display_name: stringType().optional(),
|
|
@@ -45277,7 +45277,7 @@ var init_createtool = __esm(() => {
|
|
|
45277
45277
|
});
|
|
45278
45278
|
});
|
|
45279
45279
|
ResponseBody2$outboundSchema = objectType({
|
|
45280
|
-
id: stringType().default("
|
|
45280
|
+
id: stringType().default("01K9FVXBP3Q83XEFY5YGP8HW0H"),
|
|
45281
45281
|
path: stringType(),
|
|
45282
45282
|
key: stringType(),
|
|
45283
45283
|
displayName: stringType().optional(),
|
|
@@ -45321,7 +45321,7 @@ var init_createtool = __esm(() => {
|
|
|
45321
45321
|
parameters: recordType(anyType()).optional()
|
|
45322
45322
|
});
|
|
45323
45323
|
ResponseBody1$inboundSchema = objectType({
|
|
45324
|
-
_id: stringType().default("
|
|
45324
|
+
_id: stringType().default("01K9FVXBP2YR3XEJVVKFHST32X"),
|
|
45325
45325
|
path: stringType(),
|
|
45326
45326
|
key: stringType(),
|
|
45327
45327
|
display_name: stringType().optional(),
|
|
@@ -45348,7 +45348,7 @@ var init_createtool = __esm(() => {
|
|
|
45348
45348
|
});
|
|
45349
45349
|
});
|
|
45350
45350
|
ResponseBody1$outboundSchema = objectType({
|
|
45351
|
-
id: stringType().default("
|
|
45351
|
+
id: stringType().default("01K9FVXBP2YR3XEJVVKFHST32X"),
|
|
45352
45352
|
path: stringType(),
|
|
45353
45353
|
key: stringType(),
|
|
45354
45354
|
displayName: stringType().optional(),
|
|
@@ -51441,7 +51441,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51441
51441
|
code: stringType()
|
|
51442
51442
|
});
|
|
51443
51443
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
51444
|
-
_id: stringType().default("
|
|
51444
|
+
_id: stringType().default("01K9FVXBQH8GCR6V9E766AKVSN"),
|
|
51445
51445
|
path: stringType(),
|
|
51446
51446
|
key: stringType(),
|
|
51447
51447
|
display_name: stringType().optional(),
|
|
@@ -51469,7 +51469,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51469
51469
|
});
|
|
51470
51470
|
});
|
|
51471
51471
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
51472
|
-
id: stringType().default("
|
|
51472
|
+
id: stringType().default("01K9FVXBQH8GCR6V9E766AKVSN"),
|
|
51473
51473
|
path: stringType(),
|
|
51474
51474
|
key: stringType(),
|
|
51475
51475
|
displayName: stringType().optional(),
|
|
@@ -51555,7 +51555,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51555
51555
|
});
|
|
51556
51556
|
});
|
|
51557
51557
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
51558
|
-
_id: stringType().default("
|
|
51558
|
+
_id: stringType().default("01K9FVXBQFGJHTNPP9JZVD1P56"),
|
|
51559
51559
|
path: stringType(),
|
|
51560
51560
|
key: stringType(),
|
|
51561
51561
|
display_name: stringType().optional(),
|
|
@@ -51582,7 +51582,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51582
51582
|
});
|
|
51583
51583
|
});
|
|
51584
51584
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
51585
|
-
id: stringType().default("
|
|
51585
|
+
id: stringType().default("01K9FVXBQFGJHTNPP9JZVD1P56"),
|
|
51586
51586
|
path: stringType(),
|
|
51587
51587
|
key: stringType(),
|
|
51588
51588
|
displayName: stringType().optional(),
|
|
@@ -51661,7 +51661,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51661
51661
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
51662
51662
|
});
|
|
51663
51663
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
51664
|
-
_id: stringType().default("
|
|
51664
|
+
_id: stringType().default("01K9FVXBQCM9VMH96V59JS098A"),
|
|
51665
51665
|
path: stringType(),
|
|
51666
51666
|
key: stringType(),
|
|
51667
51667
|
display_name: stringType().optional(),
|
|
@@ -51688,7 +51688,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51688
51688
|
});
|
|
51689
51689
|
});
|
|
51690
51690
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
51691
|
-
id: stringType().default("
|
|
51691
|
+
id: stringType().default("01K9FVXBQCM9VMH96V59JS098A"),
|
|
51692
51692
|
path: stringType(),
|
|
51693
51693
|
key: stringType(),
|
|
51694
51694
|
displayName: stringType().optional(),
|
|
@@ -51731,7 +51731,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51731
51731
|
strict: booleanType().optional()
|
|
51732
51732
|
});
|
|
51733
51733
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
51734
|
-
_id: stringType().default("
|
|
51734
|
+
_id: stringType().default("01K9FVXBQBVCKYM7E3FETRYAY8"),
|
|
51735
51735
|
path: stringType(),
|
|
51736
51736
|
key: stringType(),
|
|
51737
51737
|
display_name: stringType().optional(),
|
|
@@ -51759,7 +51759,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51759
51759
|
});
|
|
51760
51760
|
});
|
|
51761
51761
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
51762
|
-
id: stringType().default("
|
|
51762
|
+
id: stringType().default("01K9FVXBQBVCKYM7E3FETRYAY8"),
|
|
51763
51763
|
path: stringType(),
|
|
51764
51764
|
key: stringType(),
|
|
51765
51765
|
displayName: stringType().optional(),
|
|
@@ -51803,7 +51803,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51803
51803
|
parameters: recordType(anyType()).optional()
|
|
51804
51804
|
});
|
|
51805
51805
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
51806
|
-
_id: stringType().default("
|
|
51806
|
+
_id: stringType().default("01K9FVXBQ96XNH76G068G5XK7R"),
|
|
51807
51807
|
path: stringType(),
|
|
51808
51808
|
key: stringType(),
|
|
51809
51809
|
display_name: stringType().optional(),
|
|
@@ -51830,7 +51830,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51830
51830
|
});
|
|
51831
51831
|
});
|
|
51832
51832
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
51833
|
-
id: stringType().default("
|
|
51833
|
+
id: stringType().default("01K9FVXBQ96XNH76G068G5XK7R"),
|
|
51834
51834
|
path: stringType(),
|
|
51835
51835
|
key: stringType(),
|
|
51836
51836
|
displayName: stringType().optional(),
|
|
@@ -51926,7 +51926,7 @@ var init_fileget = __esm(() => {
|
|
|
51926
51926
|
bytes: numberType(),
|
|
51927
51927
|
file_name: stringType(),
|
|
51928
51928
|
workspace_id: stringType(),
|
|
51929
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51929
|
+
created: stringType().datetime({ offset: true }).default("2025-11-07T19:15:15.015Z").transform((v2) => new Date(v2))
|
|
51930
51930
|
}).transform((v2) => {
|
|
51931
51931
|
return remap(v2, {
|
|
51932
51932
|
_id: "id",
|
|
@@ -51942,7 +51942,7 @@ var init_fileget = __esm(() => {
|
|
|
51942
51942
|
bytes: numberType(),
|
|
51943
51943
|
fileName: stringType(),
|
|
51944
51944
|
workspaceId: stringType(),
|
|
51945
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51945
|
+
created: dateType().default(() => new Date("2025-11-07T19:15:15.015Z")).transform((v2) => v2.toISOString())
|
|
51946
51946
|
}).transform((v2) => {
|
|
51947
51947
|
return remap(v2, {
|
|
51948
51948
|
id: "_id",
|
|
@@ -51997,7 +51997,7 @@ var init_filelist = __esm(() => {
|
|
|
51997
51997
|
bytes: numberType(),
|
|
51998
51998
|
file_name: stringType(),
|
|
51999
51999
|
workspace_id: stringType(),
|
|
52000
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52000
|
+
created: stringType().datetime({ offset: true }).default("2025-11-07T19:15:15.015Z").transform((v2) => new Date(v2))
|
|
52001
52001
|
}).transform((v2) => {
|
|
52002
52002
|
return remap(v2, {
|
|
52003
52003
|
_id: "id",
|
|
@@ -52013,7 +52013,7 @@ var init_filelist = __esm(() => {
|
|
|
52013
52013
|
bytes: numberType(),
|
|
52014
52014
|
fileName: stringType(),
|
|
52015
52015
|
workspaceId: stringType(),
|
|
52016
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52016
|
+
created: dateType().default(() => new Date("2025-11-07T19:15:15.015Z")).transform((v2) => v2.toISOString())
|
|
52017
52017
|
}).transform((v2) => {
|
|
52018
52018
|
return remap(v2, {
|
|
52019
52019
|
id: "_id",
|
|
@@ -52121,7 +52121,7 @@ var init_fileupload = __esm(() => {
|
|
|
52121
52121
|
bytes: numberType(),
|
|
52122
52122
|
file_name: stringType(),
|
|
52123
52123
|
workspace_id: stringType(),
|
|
52124
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52124
|
+
created: stringType().datetime({ offset: true }).default("2025-11-07T19:15:15.015Z").transform((v2) => new Date(v2))
|
|
52125
52125
|
}).transform((v2) => {
|
|
52126
52126
|
return remap(v2, {
|
|
52127
52127
|
_id: "id",
|
|
@@ -52137,7 +52137,7 @@ var init_fileupload = __esm(() => {
|
|
|
52137
52137
|
bytes: numberType(),
|
|
52138
52138
|
fileName: stringType(),
|
|
52139
52139
|
workspaceId: stringType(),
|
|
52140
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52140
|
+
created: dateType().default(() => new Date("2025-11-07T19:15:15.015Z")).transform((v2) => v2.toISOString())
|
|
52141
52141
|
}).transform((v2) => {
|
|
52142
52142
|
return remap(v2, {
|
|
52143
52143
|
id: "_id",
|
|
@@ -54229,7 +54229,7 @@ var init_getalltools = __esm(() => {
|
|
|
54229
54229
|
code: stringType()
|
|
54230
54230
|
});
|
|
54231
54231
|
Data5$inboundSchema = objectType({
|
|
54232
|
-
_id: stringType().default("
|
|
54232
|
+
_id: stringType().default("01K9FVXBMKFXGYHKTVKWZ5R4H2"),
|
|
54233
54233
|
path: stringType(),
|
|
54234
54234
|
key: stringType(),
|
|
54235
54235
|
display_name: stringType().optional(),
|
|
@@ -54257,7 +54257,7 @@ var init_getalltools = __esm(() => {
|
|
|
54257
54257
|
});
|
|
54258
54258
|
});
|
|
54259
54259
|
Data5$outboundSchema = objectType({
|
|
54260
|
-
id: stringType().default("
|
|
54260
|
+
id: stringType().default("01K9FVXBMKFXGYHKTVKWZ5R4H2"),
|
|
54261
54261
|
path: stringType(),
|
|
54262
54262
|
key: stringType(),
|
|
54263
54263
|
displayName: stringType().optional(),
|
|
@@ -54343,7 +54343,7 @@ var init_getalltools = __esm(() => {
|
|
|
54343
54343
|
});
|
|
54344
54344
|
});
|
|
54345
54345
|
Data4$inboundSchema = objectType({
|
|
54346
|
-
_id: stringType().default("
|
|
54346
|
+
_id: stringType().default("01K9FVXBM5NE0FVKRZ626Q53ZA"),
|
|
54347
54347
|
path: stringType(),
|
|
54348
54348
|
key: stringType(),
|
|
54349
54349
|
display_name: stringType().optional(),
|
|
@@ -54370,7 +54370,7 @@ var init_getalltools = __esm(() => {
|
|
|
54370
54370
|
});
|
|
54371
54371
|
});
|
|
54372
54372
|
Data4$outboundSchema = objectType({
|
|
54373
|
-
id: stringType().default("
|
|
54373
|
+
id: stringType().default("01K9FVXBM5NE0FVKRZ626Q53ZA"),
|
|
54374
54374
|
path: stringType(),
|
|
54375
54375
|
key: stringType(),
|
|
54376
54376
|
displayName: stringType().optional(),
|
|
@@ -54449,7 +54449,7 @@ var init_getalltools = __esm(() => {
|
|
|
54449
54449
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
54450
54450
|
});
|
|
54451
54451
|
Data3$inboundSchema = objectType({
|
|
54452
|
-
_id: stringType().default("
|
|
54452
|
+
_id: stringType().default("01K9FVXBM2DWVPMBHWRE6KWSJ3"),
|
|
54453
54453
|
path: stringType(),
|
|
54454
54454
|
key: stringType(),
|
|
54455
54455
|
display_name: stringType().optional(),
|
|
@@ -54476,7 +54476,7 @@ var init_getalltools = __esm(() => {
|
|
|
54476
54476
|
});
|
|
54477
54477
|
});
|
|
54478
54478
|
Data3$outboundSchema = objectType({
|
|
54479
|
-
id: stringType().default("
|
|
54479
|
+
id: stringType().default("01K9FVXBM2DWVPMBHWRE6KWSJ3"),
|
|
54480
54480
|
path: stringType(),
|
|
54481
54481
|
key: stringType(),
|
|
54482
54482
|
displayName: stringType().optional(),
|
|
@@ -54519,7 +54519,7 @@ var init_getalltools = __esm(() => {
|
|
|
54519
54519
|
strict: booleanType().optional()
|
|
54520
54520
|
});
|
|
54521
54521
|
Data2$inboundSchema = objectType({
|
|
54522
|
-
_id: stringType().default("
|
|
54522
|
+
_id: stringType().default("01K9FVXBKZ3K08S3XXXK54NAYE"),
|
|
54523
54523
|
path: stringType(),
|
|
54524
54524
|
key: stringType(),
|
|
54525
54525
|
display_name: stringType().optional(),
|
|
@@ -54547,7 +54547,7 @@ var init_getalltools = __esm(() => {
|
|
|
54547
54547
|
});
|
|
54548
54548
|
});
|
|
54549
54549
|
Data2$outboundSchema = objectType({
|
|
54550
|
-
id: stringType().default("
|
|
54550
|
+
id: stringType().default("01K9FVXBKZ3K08S3XXXK54NAYE"),
|
|
54551
54551
|
path: stringType(),
|
|
54552
54552
|
key: stringType(),
|
|
54553
54553
|
displayName: stringType().optional(),
|
|
@@ -54591,7 +54591,7 @@ var init_getalltools = __esm(() => {
|
|
|
54591
54591
|
parameters: recordType(anyType()).optional()
|
|
54592
54592
|
});
|
|
54593
54593
|
Data1$inboundSchema = objectType({
|
|
54594
|
-
_id: stringType().default("
|
|
54594
|
+
_id: stringType().default("01K9FVXBKXREHTPC3V1PE17GR2"),
|
|
54595
54595
|
path: stringType(),
|
|
54596
54596
|
key: stringType(),
|
|
54597
54597
|
display_name: stringType().optional(),
|
|
@@ -54618,7 +54618,7 @@ var init_getalltools = __esm(() => {
|
|
|
54618
54618
|
});
|
|
54619
54619
|
});
|
|
54620
54620
|
Data1$outboundSchema = objectType({
|
|
54621
|
-
id: stringType().default("
|
|
54621
|
+
id: stringType().default("01K9FVXBKXREHTPC3V1PE17GR2"),
|
|
54622
54622
|
path: stringType(),
|
|
54623
54623
|
key: stringType(),
|
|
54624
54624
|
displayName: stringType().optional(),
|
|
@@ -54760,7 +54760,7 @@ var init_getbudget = __esm(() => {
|
|
|
54760
54760
|
is_active: booleanType(),
|
|
54761
54761
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
54762
54762
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54763
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
54763
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.603Z").transform((v2) => new Date(v2))
|
|
54764
54764
|
}).transform((v2) => {
|
|
54765
54765
|
return remap(v2, {
|
|
54766
54766
|
_id: "id",
|
|
@@ -54778,7 +54778,7 @@ var init_getbudget = __esm(() => {
|
|
|
54778
54778
|
isActive: booleanType(),
|
|
54779
54779
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
54780
54780
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54781
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
54781
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.603Z")).transform((v2) => v2.toISOString())
|
|
54782
54782
|
}).transform((v2) => {
|
|
54783
54783
|
return remap(v2, {
|
|
54784
54784
|
id: "_id",
|
|
@@ -55147,8 +55147,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55147
55147
|
DataTypescript$inboundSchema = objectType({
|
|
55148
55148
|
_id: stringType(),
|
|
55149
55149
|
description: stringType(),
|
|
55150
|
-
created: stringType().default("2025-11-
|
|
55151
|
-
updated: stringType().default("2025-11-
|
|
55150
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55151
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55152
55152
|
guardrail_config: unionType([
|
|
55153
55153
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
55154
55154
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -55165,8 +55165,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55165
55165
|
DataTypescript$outboundSchema = objectType({
|
|
55166
55166
|
id: stringType(),
|
|
55167
55167
|
description: stringType(),
|
|
55168
|
-
created: stringType().default("2025-11-
|
|
55169
|
-
updated: stringType().default("2025-11-
|
|
55168
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55169
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55170
55170
|
guardrailConfig: unionType([
|
|
55171
55171
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
55172
55172
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -55223,8 +55223,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55223
55223
|
DataRagas$inboundSchema = objectType({
|
|
55224
55224
|
_id: stringType(),
|
|
55225
55225
|
description: stringType(),
|
|
55226
|
-
created: stringType().default("2025-11-
|
|
55227
|
-
updated: stringType().default("2025-11-
|
|
55226
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55227
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55228
55228
|
guardrail_config: unionType([
|
|
55229
55229
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
55230
55230
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -55243,8 +55243,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55243
55243
|
DataRagas$outboundSchema = objectType({
|
|
55244
55244
|
id: stringType(),
|
|
55245
55245
|
description: stringType(),
|
|
55246
|
-
created: stringType().default("2025-11-
|
|
55247
|
-
updated: stringType().default("2025-11-
|
|
55246
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55247
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55248
55248
|
guardrailConfig: unionType([
|
|
55249
55249
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
55250
55250
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -55681,8 +55681,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55681
55681
|
DataFunction$inboundSchema = objectType({
|
|
55682
55682
|
_id: stringType(),
|
|
55683
55683
|
description: stringType(),
|
|
55684
|
-
created: stringType().default("2025-11-
|
|
55685
|
-
updated: stringType().default("2025-11-
|
|
55684
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55685
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55686
55686
|
guardrail_config: unionType([
|
|
55687
55687
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
55688
55688
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -55736,8 +55736,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55736
55736
|
DataFunction$outboundSchema = objectType({
|
|
55737
55737
|
id: stringType(),
|
|
55738
55738
|
description: stringType(),
|
|
55739
|
-
created: stringType().default("2025-11-
|
|
55740
|
-
updated: stringType().default("2025-11-
|
|
55739
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55740
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55741
55741
|
guardrailConfig: unionType([
|
|
55742
55742
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
55743
55743
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -55829,8 +55829,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55829
55829
|
DataPython$inboundSchema = objectType({
|
|
55830
55830
|
_id: stringType(),
|
|
55831
55831
|
description: stringType(),
|
|
55832
|
-
created: stringType().default("2025-11-
|
|
55833
|
-
updated: stringType().default("2025-11-
|
|
55832
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55833
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55834
55834
|
guardrail_config: unionType([
|
|
55835
55835
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
55836
55836
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -55847,8 +55847,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55847
55847
|
DataPython$outboundSchema = objectType({
|
|
55848
55848
|
id: stringType(),
|
|
55849
55849
|
description: stringType(),
|
|
55850
|
-
created: stringType().default("2025-11-
|
|
55851
|
-
updated: stringType().default("2025-11-
|
|
55850
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55851
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55852
55852
|
guardrailConfig: unionType([
|
|
55853
55853
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
55854
55854
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -55905,8 +55905,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55905
55905
|
DataHTTP$inboundSchema = objectType({
|
|
55906
55906
|
_id: stringType(),
|
|
55907
55907
|
description: stringType(),
|
|
55908
|
-
created: stringType().default("2025-11-
|
|
55909
|
-
updated: stringType().default("2025-11-
|
|
55908
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55909
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55910
55910
|
guardrail_config: unionType([
|
|
55911
55911
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
55912
55912
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -55926,8 +55926,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55926
55926
|
DataHTTP$outboundSchema = objectType({
|
|
55927
55927
|
id: stringType(),
|
|
55928
55928
|
description: stringType(),
|
|
55929
|
-
created: stringType().default("2025-11-
|
|
55930
|
-
updated: stringType().default("2025-11-
|
|
55929
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55930
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55931
55931
|
guardrailConfig: unionType([
|
|
55932
55932
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
55933
55933
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -55985,8 +55985,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55985
55985
|
DataJSON$inboundSchema = objectType({
|
|
55986
55986
|
_id: stringType(),
|
|
55987
55987
|
description: stringType(),
|
|
55988
|
-
created: stringType().default("2025-11-
|
|
55989
|
-
updated: stringType().default("2025-11-
|
|
55988
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55989
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
55990
55990
|
guardrail_config: unionType([
|
|
55991
55991
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
55992
55992
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -56003,8 +56003,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56003
56003
|
DataJSON$outboundSchema = objectType({
|
|
56004
56004
|
id: stringType(),
|
|
56005
56005
|
description: stringType(),
|
|
56006
|
-
created: stringType().default("2025-11-
|
|
56007
|
-
updated: stringType().default("2025-11-
|
|
56006
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56007
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56008
56008
|
guardrailConfig: unionType([
|
|
56009
56009
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
56010
56010
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -56059,8 +56059,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56059
56059
|
DataLLM$inboundSchema = objectType({
|
|
56060
56060
|
_id: stringType(),
|
|
56061
56061
|
description: stringType(),
|
|
56062
|
-
created: stringType().default("2025-11-
|
|
56063
|
-
updated: stringType().default("2025-11-
|
|
56062
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56063
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56064
56064
|
guardrail_config: unionType([
|
|
56065
56065
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
56066
56066
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -56078,8 +56078,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56078
56078
|
DataLLM$outboundSchema = objectType({
|
|
56079
56079
|
id: stringType(),
|
|
56080
56080
|
description: stringType(),
|
|
56081
|
-
created: stringType().default("2025-11-
|
|
56082
|
-
updated: stringType().default("2025-11-
|
|
56081
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56082
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
56083
56083
|
guardrailConfig: unionType([
|
|
56084
56084
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
56085
56085
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59649,7 +59649,8 @@ var init_listagenttasks2 = __esm(() => {
|
|
|
59649
59649
|
inactive: booleanType().default(true),
|
|
59650
59650
|
error: stringType().optional(),
|
|
59651
59651
|
iteration: numberType().int().default(1),
|
|
59652
|
-
accumulated_execution_time: numberType().default(0)
|
|
59652
|
+
accumulated_execution_time: numberType().default(0),
|
|
59653
|
+
variables: recordType(anyType()).optional()
|
|
59653
59654
|
}).transform((v2) => {
|
|
59654
59655
|
return remap(v2, {
|
|
59655
59656
|
waiting_for_approval: "waitingForApproval",
|
|
@@ -59661,7 +59662,8 @@ var init_listagenttasks2 = __esm(() => {
|
|
|
59661
59662
|
inactive: booleanType().default(true),
|
|
59662
59663
|
error: stringType().optional(),
|
|
59663
59664
|
iteration: numberType().int().default(1),
|
|
59664
|
-
accumulatedExecutionTime: numberType().default(0)
|
|
59665
|
+
accumulatedExecutionTime: numberType().default(0),
|
|
59666
|
+
variables: recordType(anyType()).optional()
|
|
59665
59667
|
}).transform((v2) => {
|
|
59666
59668
|
return remap(v2, {
|
|
59667
59669
|
waitingForApproval: "waiting_for_approval",
|
|
@@ -59868,7 +59870,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59868
59870
|
is_active: booleanType(),
|
|
59869
59871
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
59870
59872
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59871
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
59873
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.603Z").transform((v2) => new Date(v2))
|
|
59872
59874
|
}).transform((v2) => {
|
|
59873
59875
|
return remap(v2, {
|
|
59874
59876
|
_id: "id",
|
|
@@ -59884,7 +59886,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59884
59886
|
isActive: booleanType(),
|
|
59885
59887
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
59886
59888
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59887
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
59889
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.603Z")).transform((v2) => v2.toISOString())
|
|
59888
59890
|
}).transform((v2) => {
|
|
59889
59891
|
return remap(v2, {
|
|
59890
59892
|
id: "_id",
|
|
@@ -60211,7 +60213,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60211
60213
|
tags: arrayType(stringType()).optional(),
|
|
60212
60214
|
metadata: recordType(anyType()).optional(),
|
|
60213
60215
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60214
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60216
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2)),
|
|
60215
60217
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60216
60218
|
}).transform((v2) => {
|
|
60217
60219
|
return remap(v2, {
|
|
@@ -60230,7 +60232,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60230
60232
|
tags: arrayType(stringType()).optional(),
|
|
60231
60233
|
metadata: recordType(anyType()).optional(),
|
|
60232
60234
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60233
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60235
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString()),
|
|
60234
60236
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
60235
60237
|
}).transform((v2) => {
|
|
60236
60238
|
return remap(v2, {
|
|
@@ -60819,7 +60821,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60819
60821
|
human_review_id: stringType(),
|
|
60820
60822
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
60821
60823
|
reviewed_by_id: stringType(),
|
|
60822
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60824
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.737Z").transform((v2) => new Date(v2)),
|
|
60823
60825
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
60824
60826
|
values: arrayType(stringType())
|
|
60825
60827
|
}).transform((v2) => {
|
|
@@ -60836,7 +60838,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60836
60838
|
humanReviewId: stringType(),
|
|
60837
60839
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
60838
60840
|
reviewedById: stringType(),
|
|
60839
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60841
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.737Z")).transform((v2) => v2.toISOString()),
|
|
60840
60842
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
60841
60843
|
values: arrayType(stringType())
|
|
60842
60844
|
}).transform((v2) => {
|
|
@@ -60859,7 +60861,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60859
60861
|
human_review_id: stringType(),
|
|
60860
60862
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
60861
60863
|
reviewed_by_id: stringType(),
|
|
60862
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60864
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.736Z").transform((v2) => new Date(v2)),
|
|
60863
60865
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
60864
60866
|
value: numberType()
|
|
60865
60867
|
}).transform((v2) => {
|
|
@@ -60876,7 +60878,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60876
60878
|
humanReviewId: stringType(),
|
|
60877
60879
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
60878
60880
|
reviewedById: stringType(),
|
|
60879
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60881
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.736Z")).transform((v2) => v2.toISOString()),
|
|
60880
60882
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
60881
60883
|
value: numberType()
|
|
60882
60884
|
}).transform((v2) => {
|
|
@@ -60899,7 +60901,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60899
60901
|
human_review_id: stringType(),
|
|
60900
60902
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
60901
60903
|
reviewed_by_id: stringType(),
|
|
60902
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60904
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.735Z").transform((v2) => new Date(v2)),
|
|
60903
60905
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
60904
60906
|
value: stringType()
|
|
60905
60907
|
}).transform((v2) => {
|
|
@@ -60916,7 +60918,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60916
60918
|
humanReviewId: stringType(),
|
|
60917
60919
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
60918
60920
|
reviewedById: stringType(),
|
|
60919
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60921
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.735Z")).transform((v2) => v2.toISOString()),
|
|
60920
60922
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
60921
60923
|
value: stringType()
|
|
60922
60924
|
}).transform((v2) => {
|
|
@@ -60959,7 +60961,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60959
60961
|
created_by_id: stringType().optional(),
|
|
60960
60962
|
updated_by_id: stringType().optional(),
|
|
60961
60963
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60962
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60964
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
60963
60965
|
}).transform((v2) => {
|
|
60964
60966
|
return remap(v2, {
|
|
60965
60967
|
_id: "id",
|
|
@@ -60993,7 +60995,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60993
60995
|
createdById: stringType().optional(),
|
|
60994
60996
|
updatedById: stringType().optional(),
|
|
60995
60997
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60996
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60998
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
60997
60999
|
}).transform((v2) => {
|
|
60998
61000
|
return remap(v2, {
|
|
60999
61001
|
id: "_id",
|
|
@@ -61082,7 +61084,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61082
61084
|
created_by_id: stringType().optional(),
|
|
61083
61085
|
updated_by_id: stringType().optional(),
|
|
61084
61086
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61085
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61087
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
61086
61088
|
}).transform((v2) => {
|
|
61087
61089
|
return remap(v2, {
|
|
61088
61090
|
_id: "id",
|
|
@@ -61102,7 +61104,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61102
61104
|
createdById: stringType().optional(),
|
|
61103
61105
|
updatedById: stringType().optional(),
|
|
61104
61106
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61105
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61107
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
61106
61108
|
}).transform((v2) => {
|
|
61107
61109
|
return remap(v2, {
|
|
61108
61110
|
id: "_id",
|
|
@@ -61183,7 +61185,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61183
61185
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
61184
61186
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
61185
61187
|
ListDatasourcesData$inboundSchema = objectType({
|
|
61186
|
-
_id: stringType().default("
|
|
61188
|
+
_id: stringType().default("01K9FVXBVG3711NAW9NS146J7Q"),
|
|
61187
61189
|
display_name: stringType(),
|
|
61188
61190
|
description: stringType().optional(),
|
|
61189
61191
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -61206,7 +61208,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61206
61208
|
});
|
|
61207
61209
|
});
|
|
61208
61210
|
ListDatasourcesData$outboundSchema = objectType({
|
|
61209
|
-
id: stringType().default("
|
|
61211
|
+
id: stringType().default("01K9FVXBVG3711NAW9NS146J7Q"),
|
|
61210
61212
|
displayName: stringType(),
|
|
61211
61213
|
description: stringType().optional(),
|
|
61212
61214
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -62666,7 +62668,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
62666
62668
|
tags: arrayType(stringType()).optional(),
|
|
62667
62669
|
metadata: recordType(anyType()).optional(),
|
|
62668
62670
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62669
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62671
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
62670
62672
|
}).transform((v2) => {
|
|
62671
62673
|
return remap(v2, {
|
|
62672
62674
|
_id: "id",
|
|
@@ -62684,7 +62686,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
62684
62686
|
tags: arrayType(stringType()).optional(),
|
|
62685
62687
|
metadata: recordType(anyType()).optional(),
|
|
62686
62688
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62687
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62689
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
62688
62690
|
}).transform((v2) => {
|
|
62689
62691
|
return remap(v2, {
|
|
62690
62692
|
id: "_id",
|
|
@@ -63243,7 +63245,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63243
63245
|
human_review_id: stringType(),
|
|
63244
63246
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
63245
63247
|
reviewed_by_id: stringType(),
|
|
63246
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63248
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.752Z").transform((v2) => new Date(v2)),
|
|
63247
63249
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
63248
63250
|
values: arrayType(stringType())
|
|
63249
63251
|
}).transform((v2) => {
|
|
@@ -63260,7 +63262,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63260
63262
|
humanReviewId: stringType(),
|
|
63261
63263
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
63262
63264
|
reviewedById: stringType(),
|
|
63263
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63265
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.752Z")).transform((v2) => v2.toISOString()),
|
|
63264
63266
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
63265
63267
|
values: arrayType(stringType())
|
|
63266
63268
|
}).transform((v2) => {
|
|
@@ -63283,7 +63285,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63283
63285
|
human_review_id: stringType(),
|
|
63284
63286
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
63285
63287
|
reviewed_by_id: stringType(),
|
|
63286
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63288
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.751Z").transform((v2) => new Date(v2)),
|
|
63287
63289
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
63288
63290
|
value: numberType()
|
|
63289
63291
|
}).transform((v2) => {
|
|
@@ -63300,7 +63302,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63300
63302
|
humanReviewId: stringType(),
|
|
63301
63303
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
63302
63304
|
reviewedById: stringType(),
|
|
63303
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63305
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.751Z")).transform((v2) => v2.toISOString()),
|
|
63304
63306
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
63305
63307
|
value: numberType()
|
|
63306
63308
|
}).transform((v2) => {
|
|
@@ -63323,7 +63325,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63323
63325
|
human_review_id: stringType(),
|
|
63324
63326
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
63325
63327
|
reviewed_by_id: stringType(),
|
|
63326
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63328
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.750Z").transform((v2) => new Date(v2)),
|
|
63327
63329
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
63328
63330
|
value: stringType()
|
|
63329
63331
|
}).transform((v2) => {
|
|
@@ -63340,7 +63342,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63340
63342
|
humanReviewId: stringType(),
|
|
63341
63343
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
63342
63344
|
reviewedById: stringType(),
|
|
63343
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63345
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.750Z")).transform((v2) => v2.toISOString()),
|
|
63344
63346
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
63345
63347
|
value: stringType()
|
|
63346
63348
|
}).transform((v2) => {
|
|
@@ -63383,7 +63385,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63383
63385
|
created_by_id: stringType().optional(),
|
|
63384
63386
|
updated_by_id: stringType().optional(),
|
|
63385
63387
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63386
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63388
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
63387
63389
|
}).transform((v2) => {
|
|
63388
63390
|
return remap(v2, {
|
|
63389
63391
|
_id: "id",
|
|
@@ -63417,7 +63419,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63417
63419
|
createdById: stringType().optional(),
|
|
63418
63420
|
updatedById: stringType().optional(),
|
|
63419
63421
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63420
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63422
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
63421
63423
|
}).transform((v2) => {
|
|
63422
63424
|
return remap(v2, {
|
|
63423
63425
|
id: "_id",
|
|
@@ -63477,7 +63479,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63477
63479
|
created_by_id: stringType().optional(),
|
|
63478
63480
|
updated_by_id: stringType().optional(),
|
|
63479
63481
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63480
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63482
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
63481
63483
|
}).transform((v2) => {
|
|
63482
63484
|
return remap(v2, {
|
|
63483
63485
|
_id: "id",
|
|
@@ -63497,7 +63499,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63497
63499
|
createdById: stringType().optional(),
|
|
63498
63500
|
updatedById: stringType().optional(),
|
|
63499
63501
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63500
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63502
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
63501
63503
|
}).transform((v2) => {
|
|
63502
63504
|
return remap(v2, {
|
|
63503
63505
|
id: "_id",
|
|
@@ -63543,7 +63545,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63543
63545
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
63544
63546
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
63545
63547
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
63546
|
-
_id: stringType().default("
|
|
63548
|
+
_id: stringType().default("01K9FVXBVKPEK72Y68E086STWS"),
|
|
63547
63549
|
display_name: stringType(),
|
|
63548
63550
|
description: stringType().optional(),
|
|
63549
63551
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -63566,7 +63568,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63566
63568
|
});
|
|
63567
63569
|
});
|
|
63568
63570
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
63569
|
-
id: stringType().default("
|
|
63571
|
+
id: stringType().default("01K9FVXBVKPEK72Y68E086STWS"),
|
|
63570
63572
|
displayName: stringType(),
|
|
63571
63573
|
description: stringType().optional(),
|
|
63572
63574
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64104,7 +64106,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64104
64106
|
code: stringType()
|
|
64105
64107
|
});
|
|
64106
64108
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
64107
|
-
_id: stringType().default("
|
|
64109
|
+
_id: stringType().default("01K9FVXBR6J9K693T27271FP7R"),
|
|
64108
64110
|
path: stringType(),
|
|
64109
64111
|
key: stringType(),
|
|
64110
64112
|
display_name: stringType().optional(),
|
|
@@ -64132,7 +64134,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64132
64134
|
});
|
|
64133
64135
|
});
|
|
64134
64136
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
64135
|
-
id: stringType().default("
|
|
64137
|
+
id: stringType().default("01K9FVXBR6J9K693T27271FP7R"),
|
|
64136
64138
|
path: stringType(),
|
|
64137
64139
|
key: stringType(),
|
|
64138
64140
|
displayName: stringType().optional(),
|
|
@@ -64218,7 +64220,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64218
64220
|
});
|
|
64219
64221
|
});
|
|
64220
64222
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
64221
|
-
_id: stringType().default("
|
|
64223
|
+
_id: stringType().default("01K9FVXBR35QJSP23FBZ2Y4KWK"),
|
|
64222
64224
|
path: stringType(),
|
|
64223
64225
|
key: stringType(),
|
|
64224
64226
|
display_name: stringType().optional(),
|
|
@@ -64245,7 +64247,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64245
64247
|
});
|
|
64246
64248
|
});
|
|
64247
64249
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
64248
|
-
id: stringType().default("
|
|
64250
|
+
id: stringType().default("01K9FVXBR35QJSP23FBZ2Y4KWK"),
|
|
64249
64251
|
path: stringType(),
|
|
64250
64252
|
key: stringType(),
|
|
64251
64253
|
displayName: stringType().optional(),
|
|
@@ -64324,7 +64326,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64324
64326
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64325
64327
|
});
|
|
64326
64328
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
64327
|
-
_id: stringType().default("
|
|
64329
|
+
_id: stringType().default("01K9FVXBR1X1KRPFDJWWC5ZQSQ"),
|
|
64328
64330
|
path: stringType(),
|
|
64329
64331
|
key: stringType(),
|
|
64330
64332
|
display_name: stringType().optional(),
|
|
@@ -64351,7 +64353,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64351
64353
|
});
|
|
64352
64354
|
});
|
|
64353
64355
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
64354
|
-
id: stringType().default("
|
|
64356
|
+
id: stringType().default("01K9FVXBR1X1KRPFDJWWC5ZQSQ"),
|
|
64355
64357
|
path: stringType(),
|
|
64356
64358
|
key: stringType(),
|
|
64357
64359
|
displayName: stringType().optional(),
|
|
@@ -64394,7 +64396,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64394
64396
|
strict: booleanType().optional()
|
|
64395
64397
|
});
|
|
64396
64398
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
64397
|
-
_id: stringType().default("
|
|
64399
|
+
_id: stringType().default("01K9FVXBQQ2YMEQP994ER1QSAY"),
|
|
64398
64400
|
path: stringType(),
|
|
64399
64401
|
key: stringType(),
|
|
64400
64402
|
display_name: stringType().optional(),
|
|
@@ -64422,7 +64424,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64422
64424
|
});
|
|
64423
64425
|
});
|
|
64424
64426
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
64425
|
-
id: stringType().default("
|
|
64427
|
+
id: stringType().default("01K9FVXBQQ2YMEQP994ER1QSAY"),
|
|
64426
64428
|
path: stringType(),
|
|
64427
64429
|
key: stringType(),
|
|
64428
64430
|
displayName: stringType().optional(),
|
|
@@ -64466,7 +64468,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64466
64468
|
parameters: recordType(anyType()).optional()
|
|
64467
64469
|
});
|
|
64468
64470
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
64469
|
-
_id: stringType().default("
|
|
64471
|
+
_id: stringType().default("01K9FVXBQNB1THQTS655SCD8P3"),
|
|
64470
64472
|
path: stringType(),
|
|
64471
64473
|
key: stringType(),
|
|
64472
64474
|
display_name: stringType().optional(),
|
|
@@ -64493,7 +64495,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64493
64495
|
});
|
|
64494
64496
|
});
|
|
64495
64497
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
64496
|
-
id: stringType().default("
|
|
64498
|
+
id: stringType().default("01K9FVXBQNB1THQTS655SCD8P3"),
|
|
64497
64499
|
path: stringType(),
|
|
64498
64500
|
key: stringType(),
|
|
64499
64501
|
displayName: stringType().optional(),
|
|
@@ -65587,7 +65589,7 @@ var init_runagent = __esm(() => {
|
|
|
65587
65589
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
65588
65590
|
AgentToolInputRunCurrentDateTool$inboundSchema = objectType({
|
|
65589
65591
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
65590
|
-
requires_approval: booleanType().
|
|
65592
|
+
requires_approval: booleanType().optional()
|
|
65591
65593
|
}).transform((v2) => {
|
|
65592
65594
|
return remap(v2, {
|
|
65593
65595
|
requires_approval: "requiresApproval"
|
|
@@ -65595,7 +65597,7 @@ var init_runagent = __esm(() => {
|
|
|
65595
65597
|
});
|
|
65596
65598
|
AgentToolInputRunCurrentDateTool$outboundSchema = objectType({
|
|
65597
65599
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
65598
|
-
requiresApproval: booleanType().
|
|
65600
|
+
requiresApproval: booleanType().optional()
|
|
65599
65601
|
}).transform((v2) => {
|
|
65600
65602
|
return remap(v2, {
|
|
65601
65603
|
requiresApproval: "requires_approval"
|
|
@@ -65605,7 +65607,7 @@ var init_runagent = __esm(() => {
|
|
|
65605
65607
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
65606
65608
|
AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
65607
65609
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
65608
|
-
requires_approval: booleanType().
|
|
65610
|
+
requires_approval: booleanType().optional()
|
|
65609
65611
|
}).transform((v2) => {
|
|
65610
65612
|
return remap(v2, {
|
|
65611
65613
|
requires_approval: "requiresApproval"
|
|
@@ -65613,7 +65615,7 @@ var init_runagent = __esm(() => {
|
|
|
65613
65615
|
});
|
|
65614
65616
|
AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
65615
65617
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
65616
|
-
requiresApproval: booleanType().
|
|
65618
|
+
requiresApproval: booleanType().optional()
|
|
65617
65619
|
}).transform((v2) => {
|
|
65618
65620
|
return remap(v2, {
|
|
65619
65621
|
requiresApproval: "requires_approval"
|
|
@@ -65623,7 +65625,7 @@ var init_runagent = __esm(() => {
|
|
|
65623
65625
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
65624
65626
|
AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
65625
65627
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
65626
|
-
requires_approval: booleanType().
|
|
65628
|
+
requires_approval: booleanType().optional()
|
|
65627
65629
|
}).transform((v2) => {
|
|
65628
65630
|
return remap(v2, {
|
|
65629
65631
|
requires_approval: "requiresApproval"
|
|
@@ -65631,7 +65633,7 @@ var init_runagent = __esm(() => {
|
|
|
65631
65633
|
});
|
|
65632
65634
|
AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
65633
65635
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
65634
|
-
requiresApproval: booleanType().
|
|
65636
|
+
requiresApproval: booleanType().optional()
|
|
65635
65637
|
}).transform((v2) => {
|
|
65636
65638
|
return remap(v2, {
|
|
65637
65639
|
requiresApproval: "requires_approval"
|
|
@@ -65641,7 +65643,7 @@ var init_runagent = __esm(() => {
|
|
|
65641
65643
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
65642
65644
|
AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
65643
65645
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
65644
|
-
requires_approval: booleanType().
|
|
65646
|
+
requires_approval: booleanType().optional()
|
|
65645
65647
|
}).transform((v2) => {
|
|
65646
65648
|
return remap(v2, {
|
|
65647
65649
|
requires_approval: "requiresApproval"
|
|
@@ -65649,7 +65651,7 @@ var init_runagent = __esm(() => {
|
|
|
65649
65651
|
});
|
|
65650
65652
|
AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
65651
65653
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
65652
|
-
requiresApproval: booleanType().
|
|
65654
|
+
requiresApproval: booleanType().optional()
|
|
65653
65655
|
}).transform((v2) => {
|
|
65654
65656
|
return remap(v2, {
|
|
65655
65657
|
requiresApproval: "requires_approval"
|
|
@@ -65659,7 +65661,7 @@ var init_runagent = __esm(() => {
|
|
|
65659
65661
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
65660
65662
|
AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
65661
65663
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
65662
|
-
requires_approval: booleanType().
|
|
65664
|
+
requires_approval: booleanType().optional()
|
|
65663
65665
|
}).transform((v2) => {
|
|
65664
65666
|
return remap(v2, {
|
|
65665
65667
|
requires_approval: "requiresApproval"
|
|
@@ -65667,7 +65669,7 @@ var init_runagent = __esm(() => {
|
|
|
65667
65669
|
});
|
|
65668
65670
|
AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
65669
65671
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
65670
|
-
requiresApproval: booleanType().
|
|
65672
|
+
requiresApproval: booleanType().optional()
|
|
65671
65673
|
}).transform((v2) => {
|
|
65672
65674
|
return remap(v2, {
|
|
65673
65675
|
requiresApproval: "requires_approval"
|
|
@@ -65677,7 +65679,7 @@ var init_runagent = __esm(() => {
|
|
|
65677
65679
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
65678
65680
|
AgentToolInputRunWriteMemoryStoreTool$inboundSchema = objectType({
|
|
65679
65681
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
65680
|
-
requires_approval: booleanType().
|
|
65682
|
+
requires_approval: booleanType().optional()
|
|
65681
65683
|
}).transform((v2) => {
|
|
65682
65684
|
return remap(v2, {
|
|
65683
65685
|
requires_approval: "requiresApproval"
|
|
@@ -65685,7 +65687,7 @@ var init_runagent = __esm(() => {
|
|
|
65685
65687
|
});
|
|
65686
65688
|
AgentToolInputRunWriteMemoryStoreTool$outboundSchema = objectType({
|
|
65687
65689
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
65688
|
-
requiresApproval: booleanType().
|
|
65690
|
+
requiresApproval: booleanType().optional()
|
|
65689
65691
|
}).transform((v2) => {
|
|
65690
65692
|
return remap(v2, {
|
|
65691
65693
|
requiresApproval: "requires_approval"
|
|
@@ -65695,7 +65697,7 @@ var init_runagent = __esm(() => {
|
|
|
65695
65697
|
RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema;
|
|
65696
65698
|
AgentToolInputRunQueryMemoryStoreTool$inboundSchema = objectType({
|
|
65697
65699
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
65698
|
-
requires_approval: booleanType().
|
|
65700
|
+
requires_approval: booleanType().optional()
|
|
65699
65701
|
}).transform((v2) => {
|
|
65700
65702
|
return remap(v2, {
|
|
65701
65703
|
requires_approval: "requiresApproval"
|
|
@@ -65703,7 +65705,7 @@ var init_runagent = __esm(() => {
|
|
|
65703
65705
|
});
|
|
65704
65706
|
AgentToolInputRunQueryMemoryStoreTool$outboundSchema = objectType({
|
|
65705
65707
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
65706
|
-
requiresApproval: booleanType().
|
|
65708
|
+
requiresApproval: booleanType().optional()
|
|
65707
65709
|
}).transform((v2) => {
|
|
65708
65710
|
return remap(v2, {
|
|
65709
65711
|
requiresApproval: "requires_approval"
|
|
@@ -65713,7 +65715,7 @@ var init_runagent = __esm(() => {
|
|
|
65713
65715
|
RunAgentAgentToolInputRunAgentsRequestType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestType$inboundSchema;
|
|
65714
65716
|
AgentToolInputRunRetrieveAgentsTool$inboundSchema = objectType({
|
|
65715
65717
|
type: RunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
65716
|
-
requires_approval: booleanType().
|
|
65718
|
+
requires_approval: booleanType().optional()
|
|
65717
65719
|
}).transform((v2) => {
|
|
65718
65720
|
return remap(v2, {
|
|
65719
65721
|
requires_approval: "requiresApproval"
|
|
@@ -65721,7 +65723,7 @@ var init_runagent = __esm(() => {
|
|
|
65721
65723
|
});
|
|
65722
65724
|
AgentToolInputRunRetrieveAgentsTool$outboundSchema = objectType({
|
|
65723
65725
|
type: RunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
65724
|
-
requiresApproval: booleanType().
|
|
65726
|
+
requiresApproval: booleanType().optional()
|
|
65725
65727
|
}).transform((v2) => {
|
|
65726
65728
|
return remap(v2, {
|
|
65727
65729
|
requiresApproval: "requires_approval"
|
|
@@ -65731,7 +65733,7 @@ var init_runagent = __esm(() => {
|
|
|
65731
65733
|
RunAgentAgentToolInputRunAgentsType$outboundSchema = RunAgentAgentToolInputRunAgentsType$inboundSchema;
|
|
65732
65734
|
AgentToolInputRunCallSubAgentTool$inboundSchema = objectType({
|
|
65733
65735
|
type: RunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
65734
|
-
requires_approval: booleanType().
|
|
65736
|
+
requires_approval: booleanType().optional()
|
|
65735
65737
|
}).transform((v2) => {
|
|
65736
65738
|
return remap(v2, {
|
|
65737
65739
|
requires_approval: "requiresApproval"
|
|
@@ -65739,7 +65741,7 @@ var init_runagent = __esm(() => {
|
|
|
65739
65741
|
});
|
|
65740
65742
|
AgentToolInputRunCallSubAgentTool$outboundSchema = objectType({
|
|
65741
65743
|
type: RunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
65742
|
-
requiresApproval: booleanType().
|
|
65744
|
+
requiresApproval: booleanType().optional()
|
|
65743
65745
|
}).transform((v2) => {
|
|
65744
65746
|
return remap(v2, {
|
|
65745
65747
|
requiresApproval: "requires_approval"
|
|
@@ -65749,7 +65751,7 @@ var init_runagent = __esm(() => {
|
|
|
65749
65751
|
RunAgentAgentToolInputRunType$outboundSchema = RunAgentAgentToolInputRunType$inboundSchema;
|
|
65750
65752
|
AgentToolInputRunWebScraperTool$inboundSchema = objectType({
|
|
65751
65753
|
type: RunAgentAgentToolInputRunType$inboundSchema,
|
|
65752
|
-
requires_approval: booleanType().
|
|
65754
|
+
requires_approval: booleanType().optional()
|
|
65753
65755
|
}).transform((v2) => {
|
|
65754
65756
|
return remap(v2, {
|
|
65755
65757
|
requires_approval: "requiresApproval"
|
|
@@ -65757,7 +65759,7 @@ var init_runagent = __esm(() => {
|
|
|
65757
65759
|
});
|
|
65758
65760
|
AgentToolInputRunWebScraperTool$outboundSchema = objectType({
|
|
65759
65761
|
type: RunAgentAgentToolInputRunType$outboundSchema,
|
|
65760
|
-
requiresApproval: booleanType().
|
|
65762
|
+
requiresApproval: booleanType().optional()
|
|
65761
65763
|
}).transform((v2) => {
|
|
65762
65764
|
return remap(v2, {
|
|
65763
65765
|
requiresApproval: "requires_approval"
|
|
@@ -65767,7 +65769,7 @@ var init_runagent = __esm(() => {
|
|
|
65767
65769
|
AgentToolInputRunType$outboundSchema = AgentToolInputRunType$inboundSchema;
|
|
65768
65770
|
AgentToolInputRunGoogleSearchTool$inboundSchema = objectType({
|
|
65769
65771
|
type: AgentToolInputRunType$inboundSchema,
|
|
65770
|
-
requires_approval: booleanType().
|
|
65772
|
+
requires_approval: booleanType().optional()
|
|
65771
65773
|
}).transform((v2) => {
|
|
65772
65774
|
return remap(v2, {
|
|
65773
65775
|
requires_approval: "requiresApproval"
|
|
@@ -65775,7 +65777,7 @@ var init_runagent = __esm(() => {
|
|
|
65775
65777
|
});
|
|
65776
65778
|
AgentToolInputRunGoogleSearchTool$outboundSchema = objectType({
|
|
65777
65779
|
type: AgentToolInputRunType$outboundSchema,
|
|
65778
|
-
requiresApproval: booleanType().
|
|
65780
|
+
requiresApproval: booleanType().optional()
|
|
65779
65781
|
}).transform((v2) => {
|
|
65780
65782
|
return remap(v2, {
|
|
65781
65783
|
requiresApproval: "requires_approval"
|
|
@@ -67772,7 +67774,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67772
67774
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
67773
67775
|
StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema = objectType({
|
|
67774
67776
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
67775
|
-
requires_approval: booleanType().
|
|
67777
|
+
requires_approval: booleanType().optional()
|
|
67776
67778
|
}).transform((v2) => {
|
|
67777
67779
|
return remap(v2, {
|
|
67778
67780
|
requires_approval: "requiresApproval"
|
|
@@ -67780,7 +67782,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67780
67782
|
});
|
|
67781
67783
|
StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema = objectType({
|
|
67782
67784
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
67783
|
-
requiresApproval: booleanType().
|
|
67785
|
+
requiresApproval: booleanType().optional()
|
|
67784
67786
|
}).transform((v2) => {
|
|
67785
67787
|
return remap(v2, {
|
|
67786
67788
|
requiresApproval: "requires_approval"
|
|
@@ -67790,7 +67792,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67790
67792
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
67791
67793
|
StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
67792
67794
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
67793
|
-
requires_approval: booleanType().
|
|
67795
|
+
requires_approval: booleanType().optional()
|
|
67794
67796
|
}).transform((v2) => {
|
|
67795
67797
|
return remap(v2, {
|
|
67796
67798
|
requires_approval: "requiresApproval"
|
|
@@ -67798,7 +67800,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67798
67800
|
});
|
|
67799
67801
|
StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
67800
67802
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
67801
|
-
requiresApproval: booleanType().
|
|
67803
|
+
requiresApproval: booleanType().optional()
|
|
67802
67804
|
}).transform((v2) => {
|
|
67803
67805
|
return remap(v2, {
|
|
67804
67806
|
requiresApproval: "requires_approval"
|
|
@@ -67808,7 +67810,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67808
67810
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
67809
67811
|
StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
67810
67812
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
67811
|
-
requires_approval: booleanType().
|
|
67813
|
+
requires_approval: booleanType().optional()
|
|
67812
67814
|
}).transform((v2) => {
|
|
67813
67815
|
return remap(v2, {
|
|
67814
67816
|
requires_approval: "requiresApproval"
|
|
@@ -67816,7 +67818,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67816
67818
|
});
|
|
67817
67819
|
StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
67818
67820
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
67819
|
-
requiresApproval: booleanType().
|
|
67821
|
+
requiresApproval: booleanType().optional()
|
|
67820
67822
|
}).transform((v2) => {
|
|
67821
67823
|
return remap(v2, {
|
|
67822
67824
|
requiresApproval: "requires_approval"
|
|
@@ -67826,7 +67828,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67826
67828
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
67827
67829
|
StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
67828
67830
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
67829
|
-
requires_approval: booleanType().
|
|
67831
|
+
requires_approval: booleanType().optional()
|
|
67830
67832
|
}).transform((v2) => {
|
|
67831
67833
|
return remap(v2, {
|
|
67832
67834
|
requires_approval: "requiresApproval"
|
|
@@ -67834,7 +67836,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67834
67836
|
});
|
|
67835
67837
|
StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
67836
67838
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
67837
|
-
requiresApproval: booleanType().
|
|
67839
|
+
requiresApproval: booleanType().optional()
|
|
67838
67840
|
}).transform((v2) => {
|
|
67839
67841
|
return remap(v2, {
|
|
67840
67842
|
requiresApproval: "requires_approval"
|
|
@@ -67844,7 +67846,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67844
67846
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema;
|
|
67845
67847
|
StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
67846
67848
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
67847
|
-
requires_approval: booleanType().
|
|
67849
|
+
requires_approval: booleanType().optional()
|
|
67848
67850
|
}).transform((v2) => {
|
|
67849
67851
|
return remap(v2, {
|
|
67850
67852
|
requires_approval: "requiresApproval"
|
|
@@ -67852,7 +67854,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67852
67854
|
});
|
|
67853
67855
|
StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
67854
67856
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
67855
|
-
requiresApproval: booleanType().
|
|
67857
|
+
requiresApproval: booleanType().optional()
|
|
67856
67858
|
}).transform((v2) => {
|
|
67857
67859
|
return remap(v2, {
|
|
67858
67860
|
requiresApproval: "requires_approval"
|
|
@@ -67862,7 +67864,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67862
67864
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
67863
67865
|
StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema = objectType({
|
|
67864
67866
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
67865
|
-
requires_approval: booleanType().
|
|
67867
|
+
requires_approval: booleanType().optional()
|
|
67866
67868
|
}).transform((v2) => {
|
|
67867
67869
|
return remap(v2, {
|
|
67868
67870
|
requires_approval: "requiresApproval"
|
|
@@ -67870,7 +67872,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67870
67872
|
});
|
|
67871
67873
|
StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema = objectType({
|
|
67872
67874
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
67873
|
-
requiresApproval: booleanType().
|
|
67875
|
+
requiresApproval: booleanType().optional()
|
|
67874
67876
|
}).transform((v2) => {
|
|
67875
67877
|
return remap(v2, {
|
|
67876
67878
|
requiresApproval: "requires_approval"
|
|
@@ -67880,7 +67882,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67880
67882
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
67881
67883
|
StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema = objectType({
|
|
67882
67884
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
67883
|
-
requires_approval: booleanType().
|
|
67885
|
+
requires_approval: booleanType().optional()
|
|
67884
67886
|
}).transform((v2) => {
|
|
67885
67887
|
return remap(v2, {
|
|
67886
67888
|
requires_approval: "requiresApproval"
|
|
@@ -67888,7 +67890,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67888
67890
|
});
|
|
67889
67891
|
StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema = objectType({
|
|
67890
67892
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
67891
|
-
requiresApproval: booleanType().
|
|
67893
|
+
requiresApproval: booleanType().optional()
|
|
67892
67894
|
}).transform((v2) => {
|
|
67893
67895
|
return remap(v2, {
|
|
67894
67896
|
requiresApproval: "requires_approval"
|
|
@@ -67898,7 +67900,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67898
67900
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema;
|
|
67899
67901
|
StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema = objectType({
|
|
67900
67902
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
67901
|
-
requires_approval: booleanType().
|
|
67903
|
+
requires_approval: booleanType().optional()
|
|
67902
67904
|
}).transform((v2) => {
|
|
67903
67905
|
return remap(v2, {
|
|
67904
67906
|
requires_approval: "requiresApproval"
|
|
@@ -67906,7 +67908,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67906
67908
|
});
|
|
67907
67909
|
StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema = objectType({
|
|
67908
67910
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
67909
|
-
requiresApproval: booleanType().
|
|
67911
|
+
requiresApproval: booleanType().optional()
|
|
67910
67912
|
}).transform((v2) => {
|
|
67911
67913
|
return remap(v2, {
|
|
67912
67914
|
requiresApproval: "requires_approval"
|
|
@@ -67916,7 +67918,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67916
67918
|
StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema;
|
|
67917
67919
|
StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema = objectType({
|
|
67918
67920
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
67919
|
-
requires_approval: booleanType().
|
|
67921
|
+
requires_approval: booleanType().optional()
|
|
67920
67922
|
}).transform((v2) => {
|
|
67921
67923
|
return remap(v2, {
|
|
67922
67924
|
requires_approval: "requiresApproval"
|
|
@@ -67924,7 +67926,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67924
67926
|
});
|
|
67925
67927
|
StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema = objectType({
|
|
67926
67928
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
67927
|
-
requiresApproval: booleanType().
|
|
67929
|
+
requiresApproval: booleanType().optional()
|
|
67928
67930
|
}).transform((v2) => {
|
|
67929
67931
|
return remap(v2, {
|
|
67930
67932
|
requiresApproval: "requires_approval"
|
|
@@ -67934,7 +67936,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67934
67936
|
StreamRunAgentAgentToolInputRunAgentsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsType$inboundSchema;
|
|
67935
67937
|
StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema = objectType({
|
|
67936
67938
|
type: StreamRunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
67937
|
-
requires_approval: booleanType().
|
|
67939
|
+
requires_approval: booleanType().optional()
|
|
67938
67940
|
}).transform((v2) => {
|
|
67939
67941
|
return remap(v2, {
|
|
67940
67942
|
requires_approval: "requiresApproval"
|
|
@@ -67942,7 +67944,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67942
67944
|
});
|
|
67943
67945
|
StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema = objectType({
|
|
67944
67946
|
type: StreamRunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
67945
|
-
requiresApproval: booleanType().
|
|
67947
|
+
requiresApproval: booleanType().optional()
|
|
67946
67948
|
}).transform((v2) => {
|
|
67947
67949
|
return remap(v2, {
|
|
67948
67950
|
requiresApproval: "requires_approval"
|
|
@@ -67952,7 +67954,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67952
67954
|
StreamRunAgentAgentToolInputRunType$outboundSchema = StreamRunAgentAgentToolInputRunType$inboundSchema;
|
|
67953
67955
|
StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema = objectType({
|
|
67954
67956
|
type: StreamRunAgentAgentToolInputRunType$inboundSchema,
|
|
67955
|
-
requires_approval: booleanType().
|
|
67957
|
+
requires_approval: booleanType().optional()
|
|
67956
67958
|
}).transform((v2) => {
|
|
67957
67959
|
return remap(v2, {
|
|
67958
67960
|
requires_approval: "requiresApproval"
|
|
@@ -67960,7 +67962,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67960
67962
|
});
|
|
67961
67963
|
StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema = objectType({
|
|
67962
67964
|
type: StreamRunAgentAgentToolInputRunType$outboundSchema,
|
|
67963
|
-
requiresApproval: booleanType().
|
|
67965
|
+
requiresApproval: booleanType().optional()
|
|
67964
67966
|
}).transform((v2) => {
|
|
67965
67967
|
return remap(v2, {
|
|
67966
67968
|
requiresApproval: "requires_approval"
|
|
@@ -68946,7 +68948,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68946
68948
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
68947
68949
|
AgentToolInputCRUDCurrentDateTool$inboundSchema = objectType({
|
|
68948
68950
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
68949
|
-
requires_approval: booleanType().
|
|
68951
|
+
requires_approval: booleanType().optional()
|
|
68950
68952
|
}).transform((v2) => {
|
|
68951
68953
|
return remap(v2, {
|
|
68952
68954
|
requires_approval: "requiresApproval"
|
|
@@ -68954,7 +68956,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68954
68956
|
});
|
|
68955
68957
|
AgentToolInputCRUDCurrentDateTool$outboundSchema = objectType({
|
|
68956
68958
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
68957
|
-
requiresApproval: booleanType().
|
|
68959
|
+
requiresApproval: booleanType().optional()
|
|
68958
68960
|
}).transform((v2) => {
|
|
68959
68961
|
return remap(v2, {
|
|
68960
68962
|
requiresApproval: "requires_approval"
|
|
@@ -68964,7 +68966,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68964
68966
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
68965
68967
|
AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
68966
68968
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
68967
|
-
requires_approval: booleanType().
|
|
68969
|
+
requires_approval: booleanType().optional()
|
|
68968
68970
|
}).transform((v2) => {
|
|
68969
68971
|
return remap(v2, {
|
|
68970
68972
|
requires_approval: "requiresApproval"
|
|
@@ -68972,7 +68974,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68972
68974
|
});
|
|
68973
68975
|
AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
68974
68976
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
68975
|
-
requiresApproval: booleanType().
|
|
68977
|
+
requiresApproval: booleanType().optional()
|
|
68976
68978
|
}).transform((v2) => {
|
|
68977
68979
|
return remap(v2, {
|
|
68978
68980
|
requiresApproval: "requires_approval"
|
|
@@ -68982,7 +68984,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68982
68984
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
68983
68985
|
AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
68984
68986
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
68985
|
-
requires_approval: booleanType().
|
|
68987
|
+
requires_approval: booleanType().optional()
|
|
68986
68988
|
}).transform((v2) => {
|
|
68987
68989
|
return remap(v2, {
|
|
68988
68990
|
requires_approval: "requiresApproval"
|
|
@@ -68990,7 +68992,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68990
68992
|
});
|
|
68991
68993
|
AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
68992
68994
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
68993
|
-
requiresApproval: booleanType().
|
|
68995
|
+
requiresApproval: booleanType().optional()
|
|
68994
68996
|
}).transform((v2) => {
|
|
68995
68997
|
return remap(v2, {
|
|
68996
68998
|
requiresApproval: "requires_approval"
|
|
@@ -69000,7 +69002,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69000
69002
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
69001
69003
|
AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
69002
69004
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
69003
|
-
requires_approval: booleanType().
|
|
69005
|
+
requires_approval: booleanType().optional()
|
|
69004
69006
|
}).transform((v2) => {
|
|
69005
69007
|
return remap(v2, {
|
|
69006
69008
|
requires_approval: "requiresApproval"
|
|
@@ -69008,7 +69010,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69008
69010
|
});
|
|
69009
69011
|
AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
69010
69012
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
69011
|
-
requiresApproval: booleanType().
|
|
69013
|
+
requiresApproval: booleanType().optional()
|
|
69012
69014
|
}).transform((v2) => {
|
|
69013
69015
|
return remap(v2, {
|
|
69014
69016
|
requiresApproval: "requires_approval"
|
|
@@ -69018,7 +69020,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69018
69020
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema;
|
|
69019
69021
|
AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
69020
69022
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
69021
|
-
requires_approval: booleanType().
|
|
69023
|
+
requires_approval: booleanType().optional()
|
|
69022
69024
|
}).transform((v2) => {
|
|
69023
69025
|
return remap(v2, {
|
|
69024
69026
|
requires_approval: "requiresApproval"
|
|
@@ -69026,7 +69028,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69026
69028
|
});
|
|
69027
69029
|
AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
69028
69030
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
69029
|
-
requiresApproval: booleanType().
|
|
69031
|
+
requiresApproval: booleanType().optional()
|
|
69030
69032
|
}).transform((v2) => {
|
|
69031
69033
|
return remap(v2, {
|
|
69032
69034
|
requiresApproval: "requires_approval"
|
|
@@ -69036,7 +69038,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69036
69038
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
69037
69039
|
AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema = objectType({
|
|
69038
69040
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
69039
|
-
requires_approval: booleanType().
|
|
69041
|
+
requires_approval: booleanType().optional()
|
|
69040
69042
|
}).transform((v2) => {
|
|
69041
69043
|
return remap(v2, {
|
|
69042
69044
|
requires_approval: "requiresApproval"
|
|
@@ -69044,7 +69046,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69044
69046
|
});
|
|
69045
69047
|
AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema = objectType({
|
|
69046
69048
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
69047
|
-
requiresApproval: booleanType().
|
|
69049
|
+
requiresApproval: booleanType().optional()
|
|
69048
69050
|
}).transform((v2) => {
|
|
69049
69051
|
return remap(v2, {
|
|
69050
69052
|
requiresApproval: "requires_approval"
|
|
@@ -69054,7 +69056,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69054
69056
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
69055
69057
|
AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema = objectType({
|
|
69056
69058
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
69057
|
-
requires_approval: booleanType().
|
|
69059
|
+
requires_approval: booleanType().optional()
|
|
69058
69060
|
}).transform((v2) => {
|
|
69059
69061
|
return remap(v2, {
|
|
69060
69062
|
requires_approval: "requiresApproval"
|
|
@@ -69062,7 +69064,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69062
69064
|
});
|
|
69063
69065
|
AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema = objectType({
|
|
69064
69066
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
69065
|
-
requiresApproval: booleanType().
|
|
69067
|
+
requiresApproval: booleanType().optional()
|
|
69066
69068
|
}).transform((v2) => {
|
|
69067
69069
|
return remap(v2, {
|
|
69068
69070
|
requiresApproval: "requires_approval"
|
|
@@ -69072,7 +69074,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69072
69074
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema;
|
|
69073
69075
|
AgentToolInputCRUDRetrieveAgentsTool$inboundSchema = objectType({
|
|
69074
69076
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
69075
|
-
requires_approval: booleanType().
|
|
69077
|
+
requires_approval: booleanType().optional()
|
|
69076
69078
|
}).transform((v2) => {
|
|
69077
69079
|
return remap(v2, {
|
|
69078
69080
|
requires_approval: "requiresApproval"
|
|
@@ -69080,7 +69082,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69080
69082
|
});
|
|
69081
69083
|
AgentToolInputCRUDRetrieveAgentsTool$outboundSchema = objectType({
|
|
69082
69084
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
69083
|
-
requiresApproval: booleanType().
|
|
69085
|
+
requiresApproval: booleanType().optional()
|
|
69084
69086
|
}).transform((v2) => {
|
|
69085
69087
|
return remap(v2, {
|
|
69086
69088
|
requiresApproval: "requires_approval"
|
|
@@ -69090,7 +69092,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69090
69092
|
UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema;
|
|
69091
69093
|
AgentToolInputCRUDCallSubAgentTool$inboundSchema = objectType({
|
|
69092
69094
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
69093
|
-
requires_approval: booleanType().
|
|
69095
|
+
requires_approval: booleanType().optional()
|
|
69094
69096
|
}).transform((v2) => {
|
|
69095
69097
|
return remap(v2, {
|
|
69096
69098
|
requires_approval: "requiresApproval"
|
|
@@ -69098,7 +69100,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69098
69100
|
});
|
|
69099
69101
|
AgentToolInputCRUDCallSubAgentTool$outboundSchema = objectType({
|
|
69100
69102
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
69101
|
-
requiresApproval: booleanType().
|
|
69103
|
+
requiresApproval: booleanType().optional()
|
|
69102
69104
|
}).transform((v2) => {
|
|
69103
69105
|
return remap(v2, {
|
|
69104
69106
|
requiresApproval: "requires_approval"
|
|
@@ -69108,7 +69110,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69108
69110
|
UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema;
|
|
69109
69111
|
AgentToolInputCRUDWebScraperTool$inboundSchema = objectType({
|
|
69110
69112
|
type: UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
69111
|
-
requires_approval: booleanType().
|
|
69113
|
+
requires_approval: booleanType().optional()
|
|
69112
69114
|
}).transform((v2) => {
|
|
69113
69115
|
return remap(v2, {
|
|
69114
69116
|
requires_approval: "requiresApproval"
|
|
@@ -69116,7 +69118,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69116
69118
|
});
|
|
69117
69119
|
AgentToolInputCRUDWebScraperTool$outboundSchema = objectType({
|
|
69118
69120
|
type: UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
69119
|
-
requiresApproval: booleanType().
|
|
69121
|
+
requiresApproval: booleanType().optional()
|
|
69120
69122
|
}).transform((v2) => {
|
|
69121
69123
|
return remap(v2, {
|
|
69122
69124
|
requiresApproval: "requires_approval"
|
|
@@ -69126,7 +69128,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69126
69128
|
UpdateAgentAgentToolInputCRUDType$outboundSchema = UpdateAgentAgentToolInputCRUDType$inboundSchema;
|
|
69127
69129
|
AgentToolInputCRUDGoogleSearchTool$inboundSchema = objectType({
|
|
69128
69130
|
type: UpdateAgentAgentToolInputCRUDType$inboundSchema,
|
|
69129
|
-
requires_approval: booleanType().
|
|
69131
|
+
requires_approval: booleanType().optional()
|
|
69130
69132
|
}).transform((v2) => {
|
|
69131
69133
|
return remap(v2, {
|
|
69132
69134
|
requires_approval: "requiresApproval"
|
|
@@ -69134,7 +69136,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
69134
69136
|
});
|
|
69135
69137
|
AgentToolInputCRUDGoogleSearchTool$outboundSchema = objectType({
|
|
69136
69138
|
type: UpdateAgentAgentToolInputCRUDType$outboundSchema,
|
|
69137
|
-
requiresApproval: booleanType().
|
|
69139
|
+
requiresApproval: booleanType().optional()
|
|
69138
69140
|
}).transform((v2) => {
|
|
69139
69141
|
return remap(v2, {
|
|
69140
69142
|
requiresApproval: "requires_approval"
|
|
@@ -70134,7 +70136,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70134
70136
|
is_active: booleanType(),
|
|
70135
70137
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
70136
70138
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70137
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
70139
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.603Z").transform((v2) => new Date(v2))
|
|
70138
70140
|
}).transform((v2) => {
|
|
70139
70141
|
return remap(v2, {
|
|
70140
70142
|
_id: "id",
|
|
@@ -70152,7 +70154,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70152
70154
|
isActive: booleanType(),
|
|
70153
70155
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
70154
70156
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70155
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
70157
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.603Z")).transform((v2) => v2.toISOString())
|
|
70156
70158
|
}).transform((v2) => {
|
|
70157
70159
|
return remap(v2, {
|
|
70158
70160
|
id: "_id",
|
|
@@ -70307,7 +70309,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70307
70309
|
tags: arrayType(stringType()).optional(),
|
|
70308
70310
|
metadata: recordType(anyType()).optional(),
|
|
70309
70311
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70310
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
70312
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
70311
70313
|
}).transform((v2) => {
|
|
70312
70314
|
return remap(v2, {
|
|
70313
70315
|
_id: "id",
|
|
@@ -70325,7 +70327,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70325
70327
|
tags: arrayType(stringType()).optional(),
|
|
70326
70328
|
metadata: recordType(anyType()).optional(),
|
|
70327
70329
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70328
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
70330
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
70329
70331
|
}).transform((v2) => {
|
|
70330
70332
|
return remap(v2, {
|
|
70331
70333
|
id: "_id",
|
|
@@ -71401,7 +71403,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71401
71403
|
human_review_id: stringType(),
|
|
71402
71404
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
71403
71405
|
reviewed_by_id: stringType(),
|
|
71404
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71406
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.835Z").transform((v2) => new Date(v2)),
|
|
71405
71407
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
71406
71408
|
values: arrayType(stringType())
|
|
71407
71409
|
}).transform((v2) => {
|
|
@@ -71418,7 +71420,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71418
71420
|
humanReviewId: stringType(),
|
|
71419
71421
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
71420
71422
|
reviewedById: stringType(),
|
|
71421
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71423
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.835Z")).transform((v2) => v2.toISOString()),
|
|
71422
71424
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
71423
71425
|
values: arrayType(stringType())
|
|
71424
71426
|
}).transform((v2) => {
|
|
@@ -71441,7 +71443,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71441
71443
|
human_review_id: stringType(),
|
|
71442
71444
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
71443
71445
|
reviewed_by_id: stringType(),
|
|
71444
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71446
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.834Z").transform((v2) => new Date(v2)),
|
|
71445
71447
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
71446
71448
|
value: numberType()
|
|
71447
71449
|
}).transform((v2) => {
|
|
@@ -71458,7 +71460,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71458
71460
|
humanReviewId: stringType(),
|
|
71459
71461
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
71460
71462
|
reviewedById: stringType(),
|
|
71461
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71463
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.834Z")).transform((v2) => v2.toISOString()),
|
|
71462
71464
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
71463
71465
|
value: numberType()
|
|
71464
71466
|
}).transform((v2) => {
|
|
@@ -71481,7 +71483,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71481
71483
|
human_review_id: stringType(),
|
|
71482
71484
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
71483
71485
|
reviewed_by_id: stringType(),
|
|
71484
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71486
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-07T19:15:23.834Z").transform((v2) => new Date(v2)),
|
|
71485
71487
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
71486
71488
|
value: stringType()
|
|
71487
71489
|
}).transform((v2) => {
|
|
@@ -71498,7 +71500,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71498
71500
|
humanReviewId: stringType(),
|
|
71499
71501
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
71500
71502
|
reviewedById: stringType(),
|
|
71501
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71503
|
+
reviewedAt: dateType().default(() => new Date("2025-11-07T19:15:23.834Z")).transform((v2) => v2.toISOString()),
|
|
71502
71504
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
71503
71505
|
value: stringType()
|
|
71504
71506
|
}).transform((v2) => {
|
|
@@ -71541,7 +71543,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71541
71543
|
created_by_id: stringType().optional(),
|
|
71542
71544
|
updated_by_id: stringType().optional(),
|
|
71543
71545
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71544
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71546
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
71545
71547
|
}).transform((v2) => {
|
|
71546
71548
|
return remap(v2, {
|
|
71547
71549
|
_id: "id",
|
|
@@ -71575,7 +71577,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71575
71577
|
createdById: stringType().optional(),
|
|
71576
71578
|
updatedById: stringType().optional(),
|
|
71577
71579
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71578
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71580
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
71579
71581
|
}).transform((v2) => {
|
|
71580
71582
|
return remap(v2, {
|
|
71581
71583
|
id: "_id",
|
|
@@ -71659,7 +71661,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71659
71661
|
created_by_id: stringType().optional(),
|
|
71660
71662
|
updated_by_id: stringType().optional(),
|
|
71661
71663
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71662
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71664
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-07T19:15:11.176Z").transform((v2) => new Date(v2))
|
|
71663
71665
|
}).transform((v2) => {
|
|
71664
71666
|
return remap(v2, {
|
|
71665
71667
|
_id: "id",
|
|
@@ -71679,7 +71681,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71679
71681
|
createdById: stringType().optional(),
|
|
71680
71682
|
updatedById: stringType().optional(),
|
|
71681
71683
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71682
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71684
|
+
updated: dateType().default(() => new Date("2025-11-07T19:15:11.176Z")).transform((v2) => v2.toISOString())
|
|
71683
71685
|
}).transform((v2) => {
|
|
71684
71686
|
return remap(v2, {
|
|
71685
71687
|
id: "_id",
|
|
@@ -71743,7 +71745,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71743
71745
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
71744
71746
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
71745
71747
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
71746
|
-
_id: stringType().default("
|
|
71748
|
+
_id: stringType().default("01K9FVXBW1H0G4EGT9D2TT3EFP"),
|
|
71747
71749
|
display_name: stringType(),
|
|
71748
71750
|
description: stringType().optional(),
|
|
71749
71751
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -71766,7 +71768,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71766
71768
|
});
|
|
71767
71769
|
});
|
|
71768
71770
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
71769
|
-
id: stringType().default("
|
|
71771
|
+
id: stringType().default("01K9FVXBW1H0G4EGT9D2TT3EFP"),
|
|
71770
71772
|
displayName: stringType(),
|
|
71771
71773
|
description: stringType().optional(),
|
|
71772
71774
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -72511,8 +72513,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72511
72513
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
72512
72514
|
_id: stringType(),
|
|
72513
72515
|
description: stringType(),
|
|
72514
|
-
created: stringType().default("2025-11-
|
|
72515
|
-
updated: stringType().default("2025-11-
|
|
72516
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72517
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72516
72518
|
guardrail_config: unionType([
|
|
72517
72519
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
72518
72520
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -72529,8 +72531,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72529
72531
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
72530
72532
|
id: stringType(),
|
|
72531
72533
|
description: stringType(),
|
|
72532
|
-
created: stringType().default("2025-11-
|
|
72533
|
-
updated: stringType().default("2025-11-
|
|
72534
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72535
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72534
72536
|
guardrailConfig: unionType([
|
|
72535
72537
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
72536
72538
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -72587,8 +72589,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72587
72589
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
72588
72590
|
_id: stringType(),
|
|
72589
72591
|
description: stringType(),
|
|
72590
|
-
created: stringType().default("2025-11-
|
|
72591
|
-
updated: stringType().default("2025-11-
|
|
72592
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72593
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72592
72594
|
guardrail_config: unionType([
|
|
72593
72595
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
72594
72596
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -72607,8 +72609,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72607
72609
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
72608
72610
|
id: stringType(),
|
|
72609
72611
|
description: stringType(),
|
|
72610
|
-
created: stringType().default("2025-11-
|
|
72611
|
-
updated: stringType().default("2025-11-
|
|
72612
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72613
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
72612
72614
|
guardrailConfig: unionType([
|
|
72613
72615
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
72614
72616
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -73045,8 +73047,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73045
73047
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
73046
73048
|
_id: stringType(),
|
|
73047
73049
|
description: stringType(),
|
|
73048
|
-
created: stringType().default("2025-11-
|
|
73049
|
-
updated: stringType().default("2025-11-
|
|
73050
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73051
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73050
73052
|
guardrail_config: unionType([
|
|
73051
73053
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
73052
73054
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -73100,8 +73102,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73100
73102
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
73101
73103
|
id: stringType(),
|
|
73102
73104
|
description: stringType(),
|
|
73103
|
-
created: stringType().default("2025-11-
|
|
73104
|
-
updated: stringType().default("2025-11-
|
|
73105
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73106
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73105
73107
|
guardrailConfig: unionType([
|
|
73106
73108
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
73107
73109
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -73193,8 +73195,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73193
73195
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
73194
73196
|
_id: stringType(),
|
|
73195
73197
|
description: stringType(),
|
|
73196
|
-
created: stringType().default("2025-11-
|
|
73197
|
-
updated: stringType().default("2025-11-
|
|
73198
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73199
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73198
73200
|
guardrail_config: unionType([
|
|
73199
73201
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
73200
73202
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -73211,8 +73213,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73211
73213
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
73212
73214
|
id: stringType(),
|
|
73213
73215
|
description: stringType(),
|
|
73214
|
-
created: stringType().default("2025-11-
|
|
73215
|
-
updated: stringType().default("2025-11-
|
|
73216
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73217
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73216
73218
|
guardrailConfig: unionType([
|
|
73217
73219
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
73218
73220
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -73269,8 +73271,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73269
73271
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
73270
73272
|
_id: stringType(),
|
|
73271
73273
|
description: stringType(),
|
|
73272
|
-
created: stringType().default("2025-11-
|
|
73273
|
-
updated: stringType().default("2025-11-
|
|
73274
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73275
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73274
73276
|
guardrail_config: unionType([
|
|
73275
73277
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
73276
73278
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -73290,8 +73292,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73290
73292
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
73291
73293
|
id: stringType(),
|
|
73292
73294
|
description: stringType(),
|
|
73293
|
-
created: stringType().default("2025-11-
|
|
73294
|
-
updated: stringType().default("2025-11-
|
|
73295
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73296
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73295
73297
|
guardrailConfig: unionType([
|
|
73296
73298
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
73297
73299
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -73349,8 +73351,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73349
73351
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
73350
73352
|
_id: stringType(),
|
|
73351
73353
|
description: stringType(),
|
|
73352
|
-
created: stringType().default("2025-11-
|
|
73353
|
-
updated: stringType().default("2025-11-
|
|
73354
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73355
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73354
73356
|
guardrail_config: unionType([
|
|
73355
73357
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
73356
73358
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -73367,8 +73369,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73367
73369
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
73368
73370
|
id: stringType(),
|
|
73369
73371
|
description: stringType(),
|
|
73370
|
-
created: stringType().default("2025-11-
|
|
73371
|
-
updated: stringType().default("2025-11-
|
|
73372
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73373
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73372
73374
|
guardrailConfig: unionType([
|
|
73373
73375
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
73374
73376
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -73423,8 +73425,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73423
73425
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
73424
73426
|
_id: stringType(),
|
|
73425
73427
|
description: stringType(),
|
|
73426
|
-
created: stringType().default("2025-11-
|
|
73427
|
-
updated: stringType().default("2025-11-
|
|
73428
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73429
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73428
73430
|
guardrail_config: unionType([
|
|
73429
73431
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
73430
73432
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -73442,8 +73444,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73442
73444
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
73443
73445
|
id: stringType(),
|
|
73444
73446
|
description: stringType(),
|
|
73445
|
-
created: stringType().default("2025-11-
|
|
73446
|
-
updated: stringType().default("2025-11-
|
|
73447
|
+
created: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73448
|
+
updated: stringType().default("2025-11-07T19:15:13.898Z"),
|
|
73447
73449
|
guardrailConfig: unionType([
|
|
73448
73450
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
73449
73451
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -76647,7 +76649,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76647
76649
|
code: stringType()
|
|
76648
76650
|
});
|
|
76649
76651
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
76650
|
-
_id: stringType().default("
|
|
76652
|
+
_id: stringType().default("01K9FVXBPZ3PW4NWKWK8XENYVP"),
|
|
76651
76653
|
path: stringType(),
|
|
76652
76654
|
key: stringType(),
|
|
76653
76655
|
display_name: stringType().optional(),
|
|
@@ -76675,7 +76677,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76675
76677
|
});
|
|
76676
76678
|
});
|
|
76677
76679
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
76678
|
-
id: stringType().default("
|
|
76680
|
+
id: stringType().default("01K9FVXBPZ3PW4NWKWK8XENYVP"),
|
|
76679
76681
|
path: stringType(),
|
|
76680
76682
|
key: stringType(),
|
|
76681
76683
|
displayName: stringType().optional(),
|
|
@@ -76761,7 +76763,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76761
76763
|
});
|
|
76762
76764
|
});
|
|
76763
76765
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
76764
|
-
_id: stringType().default("
|
|
76766
|
+
_id: stringType().default("01K9FVXBPTA27D7QYB5DTX2G5D"),
|
|
76765
76767
|
path: stringType(),
|
|
76766
76768
|
key: stringType(),
|
|
76767
76769
|
display_name: stringType().optional(),
|
|
@@ -76788,7 +76790,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76788
76790
|
});
|
|
76789
76791
|
});
|
|
76790
76792
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
76791
|
-
id: stringType().default("
|
|
76793
|
+
id: stringType().default("01K9FVXBPTA27D7QYB5DTX2G5D"),
|
|
76792
76794
|
path: stringType(),
|
|
76793
76795
|
key: stringType(),
|
|
76794
76796
|
displayName: stringType().optional(),
|
|
@@ -76867,7 +76869,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76867
76869
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
76868
76870
|
});
|
|
76869
76871
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
76870
|
-
_id: stringType().default("
|
|
76872
|
+
_id: stringType().default("01K9FVXBPQVQWEZJHHVN1YTZR5"),
|
|
76871
76873
|
path: stringType(),
|
|
76872
76874
|
key: stringType(),
|
|
76873
76875
|
display_name: stringType().optional(),
|
|
@@ -76894,7 +76896,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76894
76896
|
});
|
|
76895
76897
|
});
|
|
76896
76898
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
76897
|
-
id: stringType().default("
|
|
76899
|
+
id: stringType().default("01K9FVXBPQVQWEZJHHVN1YTZR5"),
|
|
76898
76900
|
path: stringType(),
|
|
76899
76901
|
key: stringType(),
|
|
76900
76902
|
displayName: stringType().optional(),
|
|
@@ -76937,7 +76939,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76937
76939
|
strict: booleanType().optional()
|
|
76938
76940
|
});
|
|
76939
76941
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
76940
|
-
_id: stringType().default("
|
|
76942
|
+
_id: stringType().default("01K9FVXBPPJS5PDY8FEGBNT6XQ"),
|
|
76941
76943
|
path: stringType(),
|
|
76942
76944
|
key: stringType(),
|
|
76943
76945
|
display_name: stringType().optional(),
|
|
@@ -76965,7 +76967,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76965
76967
|
});
|
|
76966
76968
|
});
|
|
76967
76969
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
76968
|
-
id: stringType().default("
|
|
76970
|
+
id: stringType().default("01K9FVXBPPJS5PDY8FEGBNT6XQ"),
|
|
76969
76971
|
path: stringType(),
|
|
76970
76972
|
key: stringType(),
|
|
76971
76973
|
displayName: stringType().optional(),
|
|
@@ -77009,7 +77011,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77009
77011
|
parameters: recordType(anyType()).optional()
|
|
77010
77012
|
});
|
|
77011
77013
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
77012
|
-
_id: stringType().default("
|
|
77014
|
+
_id: stringType().default("01K9FVXBPKE8VJMEXQ9B9GB50Q"),
|
|
77013
77015
|
path: stringType(),
|
|
77014
77016
|
key: stringType(),
|
|
77015
77017
|
display_name: stringType().optional(),
|
|
@@ -77036,7 +77038,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77036
77038
|
});
|
|
77037
77039
|
});
|
|
77038
77040
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
77039
|
-
id: stringType().default("
|
|
77041
|
+
id: stringType().default("01K9FVXBPKE8VJMEXQ9B9GB50Q"),
|
|
77040
77042
|
path: stringType(),
|
|
77041
77043
|
key: stringType(),
|
|
77042
77044
|
displayName: stringType().optional(),
|
|
@@ -89283,7 +89285,7 @@ Updates a tool in the workspace.`,
|
|
|
89283
89285
|
function createMCPServer(deps) {
|
|
89284
89286
|
const server = new McpServer({
|
|
89285
89287
|
name: "Orq",
|
|
89286
|
-
version: "3.14.
|
|
89288
|
+
version: "3.14.27"
|
|
89287
89289
|
});
|
|
89288
89290
|
const client = new OrqCore({
|
|
89289
89291
|
apiKey: deps.apiKey,
|
|
@@ -90699,7 +90701,7 @@ var routes = rn({
|
|
|
90699
90701
|
var app = Ve(routes, {
|
|
90700
90702
|
name: "mcp",
|
|
90701
90703
|
versionInfo: {
|
|
90702
|
-
currentVersion: "3.14.
|
|
90704
|
+
currentVersion: "3.14.27"
|
|
90703
90705
|
}
|
|
90704
90706
|
});
|
|
90705
90707
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -90707,5 +90709,5 @@ export {
|
|
|
90707
90709
|
app
|
|
90708
90710
|
};
|
|
90709
90711
|
|
|
90710
|
-
//# debugId=
|
|
90712
|
+
//# debugId=53CEAE0AD2EE0D5964756E2164756E21
|
|
90711
90713
|
//# sourceMappingURL=mcp-server.js.map
|