@orq-ai/node 4.0.0-rc.16 → 4.0.0-rc.18
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/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
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34207
|
-
genVersion: "2.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.18",
|
|
34207
|
+
genVersion: "2.745.2",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.18 2.745.2 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -37159,7 +37159,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37159
37159
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
37160
37160
|
CurrentDateTool$inboundSchema = objectType({
|
|
37161
37161
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
37162
|
-
requires_approval: booleanType().
|
|
37162
|
+
requires_approval: booleanType().optional()
|
|
37163
37163
|
}).transform((v2) => {
|
|
37164
37164
|
return remap(v2, {
|
|
37165
37165
|
requires_approval: "requiresApproval"
|
|
@@ -37167,7 +37167,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37167
37167
|
});
|
|
37168
37168
|
CurrentDateTool$outboundSchema = objectType({
|
|
37169
37169
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
37170
|
-
requiresApproval: booleanType().
|
|
37170
|
+
requiresApproval: booleanType().optional()
|
|
37171
37171
|
}).transform((v2) => {
|
|
37172
37172
|
return remap(v2, {
|
|
37173
37173
|
requiresApproval: "requires_approval"
|
|
@@ -37177,7 +37177,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37177
37177
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
37178
37178
|
QueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
37179
37179
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
37180
|
-
requires_approval: booleanType().
|
|
37180
|
+
requires_approval: booleanType().optional()
|
|
37181
37181
|
}).transform((v2) => {
|
|
37182
37182
|
return remap(v2, {
|
|
37183
37183
|
requires_approval: "requiresApproval"
|
|
@@ -37185,7 +37185,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37185
37185
|
});
|
|
37186
37186
|
QueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
37187
37187
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
37188
|
-
requiresApproval: booleanType().
|
|
37188
|
+
requiresApproval: booleanType().optional()
|
|
37189
37189
|
}).transform((v2) => {
|
|
37190
37190
|
return remap(v2, {
|
|
37191
37191
|
requiresApproval: "requires_approval"
|
|
@@ -37195,7 +37195,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37195
37195
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
37196
37196
|
RetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
37197
37197
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
37198
|
-
requires_approval: booleanType().
|
|
37198
|
+
requires_approval: booleanType().optional()
|
|
37199
37199
|
}).transform((v2) => {
|
|
37200
37200
|
return remap(v2, {
|
|
37201
37201
|
requires_approval: "requiresApproval"
|
|
@@ -37203,7 +37203,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37203
37203
|
});
|
|
37204
37204
|
RetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
37205
37205
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
37206
|
-
requiresApproval: booleanType().
|
|
37206
|
+
requiresApproval: booleanType().optional()
|
|
37207
37207
|
}).transform((v2) => {
|
|
37208
37208
|
return remap(v2, {
|
|
37209
37209
|
requiresApproval: "requires_approval"
|
|
@@ -37213,7 +37213,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37213
37213
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
37214
37214
|
DeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
37215
37215
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
37216
|
-
requires_approval: booleanType().
|
|
37216
|
+
requires_approval: booleanType().optional()
|
|
37217
37217
|
}).transform((v2) => {
|
|
37218
37218
|
return remap(v2, {
|
|
37219
37219
|
requires_approval: "requiresApproval"
|
|
@@ -37221,7 +37221,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37221
37221
|
});
|
|
37222
37222
|
DeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
37223
37223
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
37224
|
-
requiresApproval: booleanType().
|
|
37224
|
+
requiresApproval: booleanType().optional()
|
|
37225
37225
|
}).transform((v2) => {
|
|
37226
37226
|
return remap(v2, {
|
|
37227
37227
|
requiresApproval: "requires_approval"
|
|
@@ -37231,7 +37231,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37231
37231
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
37232
37232
|
RetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
37233
37233
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
37234
|
-
requires_approval: booleanType().
|
|
37234
|
+
requires_approval: booleanType().optional()
|
|
37235
37235
|
}).transform((v2) => {
|
|
37236
37236
|
return remap(v2, {
|
|
37237
37237
|
requires_approval: "requiresApproval"
|
|
@@ -37239,7 +37239,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37239
37239
|
});
|
|
37240
37240
|
RetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
37241
37241
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
37242
|
-
requiresApproval: booleanType().
|
|
37242
|
+
requiresApproval: booleanType().optional()
|
|
37243
37243
|
}).transform((v2) => {
|
|
37244
37244
|
return remap(v2, {
|
|
37245
37245
|
requiresApproval: "requires_approval"
|
|
@@ -37249,7 +37249,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37249
37249
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
37250
37250
|
WriteMemoryStoreTool$inboundSchema = objectType({
|
|
37251
37251
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
37252
|
-
requires_approval: booleanType().
|
|
37252
|
+
requires_approval: booleanType().optional()
|
|
37253
37253
|
}).transform((v2) => {
|
|
37254
37254
|
return remap(v2, {
|
|
37255
37255
|
requires_approval: "requiresApproval"
|
|
@@ -37257,7 +37257,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37257
37257
|
});
|
|
37258
37258
|
WriteMemoryStoreTool$outboundSchema = objectType({
|
|
37259
37259
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
37260
|
-
requiresApproval: booleanType().
|
|
37260
|
+
requiresApproval: booleanType().optional()
|
|
37261
37261
|
}).transform((v2) => {
|
|
37262
37262
|
return remap(v2, {
|
|
37263
37263
|
requiresApproval: "requires_approval"
|
|
@@ -37267,7 +37267,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37267
37267
|
CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema;
|
|
37268
37268
|
QueryMemoryStoreTool$inboundSchema = objectType({
|
|
37269
37269
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
37270
|
-
requires_approval: booleanType().
|
|
37270
|
+
requires_approval: booleanType().optional()
|
|
37271
37271
|
}).transform((v2) => {
|
|
37272
37272
|
return remap(v2, {
|
|
37273
37273
|
requires_approval: "requiresApproval"
|
|
@@ -37275,7 +37275,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37275
37275
|
});
|
|
37276
37276
|
QueryMemoryStoreTool$outboundSchema = objectType({
|
|
37277
37277
|
type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
37278
|
-
requiresApproval: booleanType().
|
|
37278
|
+
requiresApproval: booleanType().optional()
|
|
37279
37279
|
}).transform((v2) => {
|
|
37280
37280
|
return remap(v2, {
|
|
37281
37281
|
requiresApproval: "requires_approval"
|
|
@@ -37285,7 +37285,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37285
37285
|
CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema;
|
|
37286
37286
|
RetrieveAgentsTool$inboundSchema = objectType({
|
|
37287
37287
|
type: CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
37288
|
-
requires_approval: booleanType().
|
|
37288
|
+
requires_approval: booleanType().optional()
|
|
37289
37289
|
}).transform((v2) => {
|
|
37290
37290
|
return remap(v2, {
|
|
37291
37291
|
requires_approval: "requiresApproval"
|
|
@@ -37293,7 +37293,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37293
37293
|
});
|
|
37294
37294
|
RetrieveAgentsTool$outboundSchema = objectType({
|
|
37295
37295
|
type: CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
37296
|
-
requiresApproval: booleanType().
|
|
37296
|
+
requiresApproval: booleanType().optional()
|
|
37297
37297
|
}).transform((v2) => {
|
|
37298
37298
|
return remap(v2, {
|
|
37299
37299
|
requiresApproval: "requires_approval"
|
|
@@ -37303,7 +37303,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37303
37303
|
CreateAgentAgentToolInputCRUDAgentsType$outboundSchema = CreateAgentAgentToolInputCRUDAgentsType$inboundSchema;
|
|
37304
37304
|
CallSubAgentTool$inboundSchema = objectType({
|
|
37305
37305
|
type: CreateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
37306
|
-
requires_approval: booleanType().
|
|
37306
|
+
requires_approval: booleanType().optional()
|
|
37307
37307
|
}).transform((v2) => {
|
|
37308
37308
|
return remap(v2, {
|
|
37309
37309
|
requires_approval: "requiresApproval"
|
|
@@ -37311,7 +37311,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37311
37311
|
});
|
|
37312
37312
|
CallSubAgentTool$outboundSchema = objectType({
|
|
37313
37313
|
type: CreateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
37314
|
-
requiresApproval: booleanType().
|
|
37314
|
+
requiresApproval: booleanType().optional()
|
|
37315
37315
|
}).transform((v2) => {
|
|
37316
37316
|
return remap(v2, {
|
|
37317
37317
|
requiresApproval: "requires_approval"
|
|
@@ -37321,7 +37321,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37321
37321
|
CreateAgentAgentToolInputCRUDType$outboundSchema = CreateAgentAgentToolInputCRUDType$inboundSchema;
|
|
37322
37322
|
WebScraperTool$inboundSchema = objectType({
|
|
37323
37323
|
type: CreateAgentAgentToolInputCRUDType$inboundSchema,
|
|
37324
|
-
requires_approval: booleanType().
|
|
37324
|
+
requires_approval: booleanType().optional()
|
|
37325
37325
|
}).transform((v2) => {
|
|
37326
37326
|
return remap(v2, {
|
|
37327
37327
|
requires_approval: "requiresApproval"
|
|
@@ -37329,7 +37329,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37329
37329
|
});
|
|
37330
37330
|
WebScraperTool$outboundSchema = objectType({
|
|
37331
37331
|
type: CreateAgentAgentToolInputCRUDType$outboundSchema,
|
|
37332
|
-
requiresApproval: booleanType().
|
|
37332
|
+
requiresApproval: booleanType().optional()
|
|
37333
37333
|
}).transform((v2) => {
|
|
37334
37334
|
return remap(v2, {
|
|
37335
37335
|
requiresApproval: "requires_approval"
|
|
@@ -37339,7 +37339,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37339
37339
|
AgentToolInputCRUDType$outboundSchema = AgentToolInputCRUDType$inboundSchema;
|
|
37340
37340
|
GoogleSearchTool$inboundSchema = objectType({
|
|
37341
37341
|
type: AgentToolInputCRUDType$inboundSchema,
|
|
37342
|
-
requires_approval: booleanType().
|
|
37342
|
+
requires_approval: booleanType().optional()
|
|
37343
37343
|
}).transform((v2) => {
|
|
37344
37344
|
return remap(v2, {
|
|
37345
37345
|
requires_approval: "requiresApproval"
|
|
@@ -37347,7 +37347,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37347
37347
|
});
|
|
37348
37348
|
GoogleSearchTool$outboundSchema = objectType({
|
|
37349
37349
|
type: AgentToolInputCRUDType$outboundSchema,
|
|
37350
|
-
requiresApproval: booleanType().
|
|
37350
|
+
requiresApproval: booleanType().optional()
|
|
37351
37351
|
}).transform((v2) => {
|
|
37352
37352
|
return remap(v2, {
|
|
37353
37353
|
requiresApproval: "requires_approval"
|
|
@@ -38345,7 +38345,7 @@ var init_createbudget = __esm(() => {
|
|
|
38345
38345
|
is_active: booleanType(),
|
|
38346
38346
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38347
38347
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38348
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38348
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.562Z").transform((v2) => new Date(v2))
|
|
38349
38349
|
}).transform((v2) => {
|
|
38350
38350
|
return remap(v2, {
|
|
38351
38351
|
_id: "id",
|
|
@@ -38363,7 +38363,7 @@ var init_createbudget = __esm(() => {
|
|
|
38363
38363
|
isActive: booleanType(),
|
|
38364
38364
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38365
38365
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38366
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38366
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.562Z")).transform((v2) => v2.toISOString())
|
|
38367
38367
|
}).transform((v2) => {
|
|
38368
38368
|
return remap(v2, {
|
|
38369
38369
|
id: "_id",
|
|
@@ -38503,7 +38503,7 @@ var init_createcontact = __esm(() => {
|
|
|
38503
38503
|
tags: arrayType(stringType()).optional(),
|
|
38504
38504
|
metadata: recordType(anyType()).optional(),
|
|
38505
38505
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38506
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38506
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
38507
38507
|
}).transform((v2) => {
|
|
38508
38508
|
return remap(v2, {
|
|
38509
38509
|
_id: "id",
|
|
@@ -38523,7 +38523,7 @@ var init_createcontact = __esm(() => {
|
|
|
38523
38523
|
tags: arrayType(stringType()).optional(),
|
|
38524
38524
|
metadata: recordType(anyType()).optional(),
|
|
38525
38525
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38526
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38526
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
38527
38527
|
}).transform((v2) => {
|
|
38528
38528
|
return remap(v2, {
|
|
38529
38529
|
id: "_id",
|
|
@@ -38583,7 +38583,7 @@ var init_createdataset = __esm(() => {
|
|
|
38583
38583
|
created_by_id: stringType().optional(),
|
|
38584
38584
|
updated_by_id: stringType().optional(),
|
|
38585
38585
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38586
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38586
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
38587
38587
|
}).transform((v2) => {
|
|
38588
38588
|
return remap(v2, {
|
|
38589
38589
|
_id: "id",
|
|
@@ -38603,7 +38603,7 @@ var init_createdataset = __esm(() => {
|
|
|
38603
38603
|
createdById: stringType().optional(),
|
|
38604
38604
|
updatedById: stringType().optional(),
|
|
38605
38605
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38606
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38606
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
38607
38607
|
}).transform((v2) => {
|
|
38608
38608
|
return remap(v2, {
|
|
38609
38609
|
id: "_id",
|
|
@@ -39677,7 +39677,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39677
39677
|
human_review_id: stringType(),
|
|
39678
39678
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39679
39679
|
reviewed_by_id: stringType(),
|
|
39680
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39680
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.952Z").transform((v2) => new Date(v2)),
|
|
39681
39681
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39682
39682
|
values: arrayType(stringType())
|
|
39683
39683
|
}).transform((v2) => {
|
|
@@ -39694,7 +39694,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39694
39694
|
humanReviewId: stringType(),
|
|
39695
39695
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39696
39696
|
reviewedById: stringType(),
|
|
39697
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39697
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.952Z")).transform((v2) => v2.toISOString()),
|
|
39698
39698
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39699
39699
|
values: arrayType(stringType())
|
|
39700
39700
|
}).transform((v2) => {
|
|
@@ -39717,7 +39717,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39717
39717
|
human_review_id: stringType(),
|
|
39718
39718
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39719
39719
|
reviewed_by_id: stringType(),
|
|
39720
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39720
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.951Z").transform((v2) => new Date(v2)),
|
|
39721
39721
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39722
39722
|
value: numberType()
|
|
39723
39723
|
}).transform((v2) => {
|
|
@@ -39734,7 +39734,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39734
39734
|
humanReviewId: stringType(),
|
|
39735
39735
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39736
39736
|
reviewedById: stringType(),
|
|
39737
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39737
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.951Z")).transform((v2) => v2.toISOString()),
|
|
39738
39738
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39739
39739
|
value: numberType()
|
|
39740
39740
|
}).transform((v2) => {
|
|
@@ -39757,7 +39757,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39757
39757
|
human_review_id: stringType(),
|
|
39758
39758
|
source: Source$inboundSchema.default("orq"),
|
|
39759
39759
|
reviewed_by_id: stringType(),
|
|
39760
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39760
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.950Z").transform((v2) => new Date(v2)),
|
|
39761
39761
|
type: EvaluationsType$inboundSchema,
|
|
39762
39762
|
value: stringType()
|
|
39763
39763
|
}).transform((v2) => {
|
|
@@ -39774,7 +39774,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39774
39774
|
humanReviewId: stringType(),
|
|
39775
39775
|
source: Source$outboundSchema.default("orq"),
|
|
39776
39776
|
reviewedById: stringType(),
|
|
39777
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39777
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.950Z")).transform((v2) => v2.toISOString()),
|
|
39778
39778
|
type: EvaluationsType$outboundSchema,
|
|
39779
39779
|
value: stringType()
|
|
39780
39780
|
}).transform((v2) => {
|
|
@@ -39817,7 +39817,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39817
39817
|
created_by_id: stringType().optional(),
|
|
39818
39818
|
updated_by_id: stringType().optional(),
|
|
39819
39819
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39820
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39820
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
39821
39821
|
}).transform((v2) => {
|
|
39822
39822
|
return remap(v2, {
|
|
39823
39823
|
_id: "id",
|
|
@@ -39851,7 +39851,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39851
39851
|
createdById: stringType().optional(),
|
|
39852
39852
|
updatedById: stringType().optional(),
|
|
39853
39853
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39854
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
39854
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
39855
39855
|
}).transform((v2) => {
|
|
39856
39856
|
return remap(v2, {
|
|
39857
39857
|
id: "_id",
|
|
@@ -40030,7 +40030,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40030
40030
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40031
40031
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40032
40032
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40033
|
-
_id: stringType().default("
|
|
40033
|
+
_id: stringType().default("01K9P3D69773Z2Q4JDZP0V8P70"),
|
|
40034
40034
|
display_name: stringType(),
|
|
40035
40035
|
description: stringType().optional(),
|
|
40036
40036
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40053,7 +40053,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40053
40053
|
});
|
|
40054
40054
|
});
|
|
40055
40055
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40056
|
-
id: stringType().default("
|
|
40056
|
+
id: stringType().default("01K9P3D69773Z2Q4JDZP0V8P70"),
|
|
40057
40057
|
displayName: stringType(),
|
|
40058
40058
|
description: stringType().optional(),
|
|
40059
40059
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -40772,8 +40772,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40772
40772
|
Typescript$inboundSchema = objectType({
|
|
40773
40773
|
_id: stringType(),
|
|
40774
40774
|
description: stringType(),
|
|
40775
|
-
created: stringType().default("2025-11-
|
|
40776
|
-
updated: stringType().default("2025-11-
|
|
40775
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40776
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40777
40777
|
guardrail_config: unionType([
|
|
40778
40778
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
40779
40779
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -40790,8 +40790,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40790
40790
|
Typescript$outboundSchema = objectType({
|
|
40791
40791
|
id: stringType(),
|
|
40792
40792
|
description: stringType(),
|
|
40793
|
-
created: stringType().default("2025-11-
|
|
40794
|
-
updated: stringType().default("2025-11-
|
|
40793
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40794
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40795
40795
|
guardrailConfig: unionType([
|
|
40796
40796
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
40797
40797
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -40848,8 +40848,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40848
40848
|
Ragas$inboundSchema = 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-10T05:21:37.815Z"),
|
|
40852
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40853
40853
|
guardrail_config: unionType([
|
|
40854
40854
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
40855
40855
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -40868,8 +40868,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40868
40868
|
Ragas$outboundSchema = objectType({
|
|
40869
40869
|
id: stringType(),
|
|
40870
40870
|
description: stringType(),
|
|
40871
|
-
created: stringType().default("2025-11-
|
|
40872
|
-
updated: stringType().default("2025-11-
|
|
40871
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40872
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
40873
40873
|
guardrailConfig: unionType([
|
|
40874
40874
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
40875
40875
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41306,8 +41306,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41306
41306
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41307
41307
|
_id: stringType(),
|
|
41308
41308
|
description: stringType(),
|
|
41309
|
-
created: stringType().default("2025-11-
|
|
41310
|
-
updated: stringType().default("2025-11-
|
|
41309
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41310
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41311
41311
|
guardrail_config: unionType([
|
|
41312
41312
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41313
41313
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41361,8 +41361,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41361
41361
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41362
41362
|
id: stringType(),
|
|
41363
41363
|
description: stringType(),
|
|
41364
|
-
created: stringType().default("2025-11-
|
|
41365
|
-
updated: stringType().default("2025-11-
|
|
41364
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41365
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41366
41366
|
guardrailConfig: unionType([
|
|
41367
41367
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41368
41368
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41454,8 +41454,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41454
41454
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41455
41455
|
_id: stringType(),
|
|
41456
41456
|
description: stringType(),
|
|
41457
|
-
created: stringType().default("2025-11-
|
|
41458
|
-
updated: stringType().default("2025-11-
|
|
41457
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41458
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41459
41459
|
guardrail_config: unionType([
|
|
41460
41460
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41461
41461
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41472,8 +41472,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41472
41472
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41473
41473
|
id: stringType(),
|
|
41474
41474
|
description: stringType(),
|
|
41475
|
-
created: stringType().default("2025-11-
|
|
41476
|
-
updated: stringType().default("2025-11-
|
|
41475
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41476
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41477
41477
|
guardrailConfig: unionType([
|
|
41478
41478
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41479
41479
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41530,8 +41530,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41530
41530
|
ResponseBodyHTTP$inboundSchema = 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-10T05:21:37.815Z"),
|
|
41534
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41535
41535
|
guardrail_config: unionType([
|
|
41536
41536
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41537
41537
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41551,8 +41551,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41551
41551
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41552
41552
|
id: stringType(),
|
|
41553
41553
|
description: stringType(),
|
|
41554
|
-
created: stringType().default("2025-11-
|
|
41555
|
-
updated: stringType().default("2025-11-
|
|
41554
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41555
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41556
41556
|
guardrailConfig: unionType([
|
|
41557
41557
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41558
41558
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41610,8 +41610,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41610
41610
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41611
41611
|
_id: stringType(),
|
|
41612
41612
|
description: stringType(),
|
|
41613
|
-
created: stringType().default("2025-11-
|
|
41614
|
-
updated: stringType().default("2025-11-
|
|
41613
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41614
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41615
41615
|
guardrail_config: unionType([
|
|
41616
41616
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41617
41617
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41628,8 +41628,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41628
41628
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41629
41629
|
id: stringType(),
|
|
41630
41630
|
description: stringType(),
|
|
41631
|
-
created: stringType().default("2025-11-
|
|
41632
|
-
updated: stringType().default("2025-11-
|
|
41631
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41632
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41633
41633
|
guardrailConfig: unionType([
|
|
41634
41634
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41635
41635
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41684,8 +41684,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41684
41684
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41685
41685
|
_id: stringType(),
|
|
41686
41686
|
description: stringType(),
|
|
41687
|
-
created: stringType().default("2025-11-
|
|
41688
|
-
updated: stringType().default("2025-11-
|
|
41687
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41688
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41689
41689
|
guardrail_config: unionType([
|
|
41690
41690
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41691
41691
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41703,8 +41703,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41703
41703
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41704
41704
|
id: stringType(),
|
|
41705
41705
|
description: stringType(),
|
|
41706
|
-
created: stringType().default("2025-11-
|
|
41707
|
-
updated: stringType().default("2025-11-
|
|
41706
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41707
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
41708
41708
|
guardrailConfig: unionType([
|
|
41709
41709
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41710
41710
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -44909,7 +44909,7 @@ var init_createtool = __esm(() => {
|
|
|
44909
44909
|
code: stringType()
|
|
44910
44910
|
});
|
|
44911
44911
|
ResponseBody5$inboundSchema = objectType({
|
|
44912
|
-
_id: stringType().default("
|
|
44912
|
+
_id: stringType().default("01K9P3D650HAJMGVW69DDH057E"),
|
|
44913
44913
|
path: stringType(),
|
|
44914
44914
|
key: stringType(),
|
|
44915
44915
|
display_name: stringType().optional(),
|
|
@@ -44937,7 +44937,7 @@ var init_createtool = __esm(() => {
|
|
|
44937
44937
|
});
|
|
44938
44938
|
});
|
|
44939
44939
|
ResponseBody5$outboundSchema = objectType({
|
|
44940
|
-
id: stringType().default("
|
|
44940
|
+
id: stringType().default("01K9P3D650HAJMGVW69DDH057E"),
|
|
44941
44941
|
path: stringType(),
|
|
44942
44942
|
key: stringType(),
|
|
44943
44943
|
displayName: stringType().optional(),
|
|
@@ -45023,7 +45023,7 @@ var init_createtool = __esm(() => {
|
|
|
45023
45023
|
});
|
|
45024
45024
|
});
|
|
45025
45025
|
ResponseBody4$inboundSchema = objectType({
|
|
45026
|
-
_id: stringType().default("
|
|
45026
|
+
_id: stringType().default("01K9P3D64Z8W0507H7J8FFQTDY"),
|
|
45027
45027
|
path: stringType(),
|
|
45028
45028
|
key: stringType(),
|
|
45029
45029
|
display_name: stringType().optional(),
|
|
@@ -45050,7 +45050,7 @@ var init_createtool = __esm(() => {
|
|
|
45050
45050
|
});
|
|
45051
45051
|
});
|
|
45052
45052
|
ResponseBody4$outboundSchema = objectType({
|
|
45053
|
-
id: stringType().default("
|
|
45053
|
+
id: stringType().default("01K9P3D64Z8W0507H7J8FFQTDY"),
|
|
45054
45054
|
path: stringType(),
|
|
45055
45055
|
key: stringType(),
|
|
45056
45056
|
displayName: stringType().optional(),
|
|
@@ -45129,7 +45129,7 @@ var init_createtool = __esm(() => {
|
|
|
45129
45129
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45130
45130
|
});
|
|
45131
45131
|
ResponseBody3$inboundSchema = objectType({
|
|
45132
|
-
_id: stringType().default("
|
|
45132
|
+
_id: stringType().default("01K9P3D64X90J1CHQH2ZCQT5JR"),
|
|
45133
45133
|
path: stringType(),
|
|
45134
45134
|
key: stringType(),
|
|
45135
45135
|
display_name: stringType().optional(),
|
|
@@ -45156,7 +45156,7 @@ var init_createtool = __esm(() => {
|
|
|
45156
45156
|
});
|
|
45157
45157
|
});
|
|
45158
45158
|
ResponseBody3$outboundSchema = objectType({
|
|
45159
|
-
id: stringType().default("
|
|
45159
|
+
id: stringType().default("01K9P3D64X90J1CHQH2ZCQT5JR"),
|
|
45160
45160
|
path: stringType(),
|
|
45161
45161
|
key: stringType(),
|
|
45162
45162
|
displayName: stringType().optional(),
|
|
@@ -45199,7 +45199,7 @@ var init_createtool = __esm(() => {
|
|
|
45199
45199
|
strict: booleanType().optional()
|
|
45200
45200
|
});
|
|
45201
45201
|
ResponseBody2$inboundSchema = objectType({
|
|
45202
|
-
_id: stringType().default("
|
|
45202
|
+
_id: stringType().default("01K9P3D64WERJ8TBEXQR35C3HB"),
|
|
45203
45203
|
path: stringType(),
|
|
45204
45204
|
key: stringType(),
|
|
45205
45205
|
display_name: stringType().optional(),
|
|
@@ -45227,7 +45227,7 @@ var init_createtool = __esm(() => {
|
|
|
45227
45227
|
});
|
|
45228
45228
|
});
|
|
45229
45229
|
ResponseBody2$outboundSchema = objectType({
|
|
45230
|
-
id: stringType().default("
|
|
45230
|
+
id: stringType().default("01K9P3D64WERJ8TBEXQR35C3HB"),
|
|
45231
45231
|
path: stringType(),
|
|
45232
45232
|
key: stringType(),
|
|
45233
45233
|
displayName: stringType().optional(),
|
|
@@ -45271,7 +45271,7 @@ var init_createtool = __esm(() => {
|
|
|
45271
45271
|
parameters: recordType(anyType()).optional()
|
|
45272
45272
|
});
|
|
45273
45273
|
ResponseBody1$inboundSchema = objectType({
|
|
45274
|
-
_id: stringType().default("
|
|
45274
|
+
_id: stringType().default("01K9P3D64VK947QZ59N1GZ50QD"),
|
|
45275
45275
|
path: stringType(),
|
|
45276
45276
|
key: stringType(),
|
|
45277
45277
|
display_name: stringType().optional(),
|
|
@@ -45298,7 +45298,7 @@ var init_createtool = __esm(() => {
|
|
|
45298
45298
|
});
|
|
45299
45299
|
});
|
|
45300
45300
|
ResponseBody1$outboundSchema = objectType({
|
|
45301
|
-
id: stringType().default("
|
|
45301
|
+
id: stringType().default("01K9P3D64VK947QZ59N1GZ50QD"),
|
|
45302
45302
|
path: stringType(),
|
|
45303
45303
|
key: stringType(),
|
|
45304
45304
|
displayName: stringType().optional(),
|
|
@@ -51409,7 +51409,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51409
51409
|
code: stringType()
|
|
51410
51410
|
});
|
|
51411
51411
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
51412
|
-
_id: stringType().default("
|
|
51412
|
+
_id: stringType().default("01K9P3D6633GXYDKXWVYN6X504"),
|
|
51413
51413
|
path: stringType(),
|
|
51414
51414
|
key: stringType(),
|
|
51415
51415
|
display_name: stringType().optional(),
|
|
@@ -51437,7 +51437,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51437
51437
|
});
|
|
51438
51438
|
});
|
|
51439
51439
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
51440
|
-
id: stringType().default("
|
|
51440
|
+
id: stringType().default("01K9P3D6633GXYDKXWVYN6X504"),
|
|
51441
51441
|
path: stringType(),
|
|
51442
51442
|
key: stringType(),
|
|
51443
51443
|
displayName: stringType().optional(),
|
|
@@ -51523,7 +51523,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51523
51523
|
});
|
|
51524
51524
|
});
|
|
51525
51525
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
51526
|
-
_id: stringType().default("
|
|
51526
|
+
_id: stringType().default("01K9P3D661CSSJR6F99NVTT2S9"),
|
|
51527
51527
|
path: stringType(),
|
|
51528
51528
|
key: stringType(),
|
|
51529
51529
|
display_name: stringType().optional(),
|
|
@@ -51550,7 +51550,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51550
51550
|
});
|
|
51551
51551
|
});
|
|
51552
51552
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
51553
|
-
id: stringType().default("
|
|
51553
|
+
id: stringType().default("01K9P3D661CSSJR6F99NVTT2S9"),
|
|
51554
51554
|
path: stringType(),
|
|
51555
51555
|
key: stringType(),
|
|
51556
51556
|
displayName: stringType().optional(),
|
|
@@ -51629,7 +51629,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51629
51629
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
51630
51630
|
});
|
|
51631
51631
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
51632
|
-
_id: stringType().default("
|
|
51632
|
+
_id: stringType().default("01K9P3D65SYERV2A24EFVJJKBG"),
|
|
51633
51633
|
path: stringType(),
|
|
51634
51634
|
key: stringType(),
|
|
51635
51635
|
display_name: stringType().optional(),
|
|
@@ -51656,7 +51656,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51656
51656
|
});
|
|
51657
51657
|
});
|
|
51658
51658
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
51659
|
-
id: stringType().default("
|
|
51659
|
+
id: stringType().default("01K9P3D65SYERV2A24EFVJJKBG"),
|
|
51660
51660
|
path: stringType(),
|
|
51661
51661
|
key: stringType(),
|
|
51662
51662
|
displayName: stringType().optional(),
|
|
@@ -51699,7 +51699,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51699
51699
|
strict: booleanType().optional()
|
|
51700
51700
|
});
|
|
51701
51701
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
51702
|
-
_id: stringType().default("
|
|
51702
|
+
_id: stringType().default("01K9P3D65RQQCKSK2TQTR3T51C"),
|
|
51703
51703
|
path: stringType(),
|
|
51704
51704
|
key: stringType(),
|
|
51705
51705
|
display_name: stringType().optional(),
|
|
@@ -51727,7 +51727,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51727
51727
|
});
|
|
51728
51728
|
});
|
|
51729
51729
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
51730
|
-
id: stringType().default("
|
|
51730
|
+
id: stringType().default("01K9P3D65RQQCKSK2TQTR3T51C"),
|
|
51731
51731
|
path: stringType(),
|
|
51732
51732
|
key: stringType(),
|
|
51733
51733
|
displayName: stringType().optional(),
|
|
@@ -51771,7 +51771,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51771
51771
|
parameters: recordType(anyType()).optional()
|
|
51772
51772
|
});
|
|
51773
51773
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
51774
|
-
_id: stringType().default("
|
|
51774
|
+
_id: stringType().default("01K9P3D65QZFH0CZ9HC0TJ4MPS"),
|
|
51775
51775
|
path: stringType(),
|
|
51776
51776
|
key: stringType(),
|
|
51777
51777
|
display_name: stringType().optional(),
|
|
@@ -51798,7 +51798,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
51798
51798
|
});
|
|
51799
51799
|
});
|
|
51800
51800
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
51801
|
-
id: stringType().default("
|
|
51801
|
+
id: stringType().default("01K9P3D65QZFH0CZ9HC0TJ4MPS"),
|
|
51802
51802
|
path: stringType(),
|
|
51803
51803
|
key: stringType(),
|
|
51804
51804
|
displayName: stringType().optional(),
|
|
@@ -51894,7 +51894,7 @@ var init_fileget = __esm(() => {
|
|
|
51894
51894
|
bytes: numberType(),
|
|
51895
51895
|
file_name: stringType(),
|
|
51896
51896
|
workspace_id: stringType(),
|
|
51897
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51897
|
+
created: stringType().datetime({ offset: true }).default("2025-11-10T05:21:38.890Z").transform((v2) => new Date(v2))
|
|
51898
51898
|
}).transform((v2) => {
|
|
51899
51899
|
return remap(v2, {
|
|
51900
51900
|
_id: "id",
|
|
@@ -51910,7 +51910,7 @@ var init_fileget = __esm(() => {
|
|
|
51910
51910
|
bytes: numberType(),
|
|
51911
51911
|
fileName: stringType(),
|
|
51912
51912
|
workspaceId: stringType(),
|
|
51913
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51913
|
+
created: dateType().default(() => new Date("2025-11-10T05:21:38.890Z")).transform((v2) => v2.toISOString())
|
|
51914
51914
|
}).transform((v2) => {
|
|
51915
51915
|
return remap(v2, {
|
|
51916
51916
|
id: "_id",
|
|
@@ -51965,7 +51965,7 @@ var init_filelist = __esm(() => {
|
|
|
51965
51965
|
bytes: numberType(),
|
|
51966
51966
|
file_name: stringType(),
|
|
51967
51967
|
workspace_id: stringType(),
|
|
51968
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
51968
|
+
created: stringType().datetime({ offset: true }).default("2025-11-10T05:21:38.890Z").transform((v2) => new Date(v2))
|
|
51969
51969
|
}).transform((v2) => {
|
|
51970
51970
|
return remap(v2, {
|
|
51971
51971
|
_id: "id",
|
|
@@ -51981,7 +51981,7 @@ var init_filelist = __esm(() => {
|
|
|
51981
51981
|
bytes: numberType(),
|
|
51982
51982
|
fileName: stringType(),
|
|
51983
51983
|
workspaceId: stringType(),
|
|
51984
|
-
created: dateType().default(() => new Date("2025-11-
|
|
51984
|
+
created: dateType().default(() => new Date("2025-11-10T05:21:38.890Z")).transform((v2) => v2.toISOString())
|
|
51985
51985
|
}).transform((v2) => {
|
|
51986
51986
|
return remap(v2, {
|
|
51987
51987
|
id: "_id",
|
|
@@ -52089,7 +52089,7 @@ var init_fileupload = __esm(() => {
|
|
|
52089
52089
|
bytes: numberType(),
|
|
52090
52090
|
file_name: stringType(),
|
|
52091
52091
|
workspace_id: stringType(),
|
|
52092
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52092
|
+
created: stringType().datetime({ offset: true }).default("2025-11-10T05:21:38.890Z").transform((v2) => new Date(v2))
|
|
52093
52093
|
}).transform((v2) => {
|
|
52094
52094
|
return remap(v2, {
|
|
52095
52095
|
_id: "id",
|
|
@@ -52105,7 +52105,7 @@ var init_fileupload = __esm(() => {
|
|
|
52105
52105
|
bytes: numberType(),
|
|
52106
52106
|
fileName: stringType(),
|
|
52107
52107
|
workspaceId: stringType(),
|
|
52108
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52108
|
+
created: dateType().default(() => new Date("2025-11-10T05:21:38.890Z")).transform((v2) => v2.toISOString())
|
|
52109
52109
|
}).transform((v2) => {
|
|
52110
52110
|
return remap(v2, {
|
|
52111
52111
|
id: "_id",
|
|
@@ -54177,7 +54177,7 @@ var init_getalltools = __esm(() => {
|
|
|
54177
54177
|
code: stringType()
|
|
54178
54178
|
});
|
|
54179
54179
|
Data5$inboundSchema = objectType({
|
|
54180
|
-
_id: stringType().default("
|
|
54180
|
+
_id: stringType().default("01K9P3D64E5CT4KZ9PX74N4P7A"),
|
|
54181
54181
|
path: stringType(),
|
|
54182
54182
|
key: stringType(),
|
|
54183
54183
|
display_name: stringType().optional(),
|
|
@@ -54205,7 +54205,7 @@ var init_getalltools = __esm(() => {
|
|
|
54205
54205
|
});
|
|
54206
54206
|
});
|
|
54207
54207
|
Data5$outboundSchema = objectType({
|
|
54208
|
-
id: stringType().default("
|
|
54208
|
+
id: stringType().default("01K9P3D64E5CT4KZ9PX74N4P7A"),
|
|
54209
54209
|
path: stringType(),
|
|
54210
54210
|
key: stringType(),
|
|
54211
54211
|
displayName: stringType().optional(),
|
|
@@ -54291,7 +54291,7 @@ var init_getalltools = __esm(() => {
|
|
|
54291
54291
|
});
|
|
54292
54292
|
});
|
|
54293
54293
|
Data4$inboundSchema = objectType({
|
|
54294
|
-
_id: stringType().default("
|
|
54294
|
+
_id: stringType().default("01K9P3D6463G4S20N7TR6HNM3Y"),
|
|
54295
54295
|
path: stringType(),
|
|
54296
54296
|
key: stringType(),
|
|
54297
54297
|
display_name: stringType().optional(),
|
|
@@ -54318,7 +54318,7 @@ var init_getalltools = __esm(() => {
|
|
|
54318
54318
|
});
|
|
54319
54319
|
});
|
|
54320
54320
|
Data4$outboundSchema = objectType({
|
|
54321
|
-
id: stringType().default("
|
|
54321
|
+
id: stringType().default("01K9P3D6463G4S20N7TR6HNM3Y"),
|
|
54322
54322
|
path: stringType(),
|
|
54323
54323
|
key: stringType(),
|
|
54324
54324
|
displayName: stringType().optional(),
|
|
@@ -54397,7 +54397,7 @@ var init_getalltools = __esm(() => {
|
|
|
54397
54397
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
54398
54398
|
});
|
|
54399
54399
|
Data3$inboundSchema = objectType({
|
|
54400
|
-
_id: stringType().default("
|
|
54400
|
+
_id: stringType().default("01K9P3D64380AR8M77TBATFRAN"),
|
|
54401
54401
|
path: stringType(),
|
|
54402
54402
|
key: stringType(),
|
|
54403
54403
|
display_name: stringType().optional(),
|
|
@@ -54424,7 +54424,7 @@ var init_getalltools = __esm(() => {
|
|
|
54424
54424
|
});
|
|
54425
54425
|
});
|
|
54426
54426
|
Data3$outboundSchema = objectType({
|
|
54427
|
-
id: stringType().default("
|
|
54427
|
+
id: stringType().default("01K9P3D64380AR8M77TBATFRAN"),
|
|
54428
54428
|
path: stringType(),
|
|
54429
54429
|
key: stringType(),
|
|
54430
54430
|
displayName: stringType().optional(),
|
|
@@ -54467,7 +54467,7 @@ var init_getalltools = __esm(() => {
|
|
|
54467
54467
|
strict: booleanType().optional()
|
|
54468
54468
|
});
|
|
54469
54469
|
Data2$inboundSchema = objectType({
|
|
54470
|
-
_id: stringType().default("
|
|
54470
|
+
_id: stringType().default("01K9P3D641T829Z2T0JRSSF3MQ"),
|
|
54471
54471
|
path: stringType(),
|
|
54472
54472
|
key: stringType(),
|
|
54473
54473
|
display_name: stringType().optional(),
|
|
@@ -54495,7 +54495,7 @@ var init_getalltools = __esm(() => {
|
|
|
54495
54495
|
});
|
|
54496
54496
|
});
|
|
54497
54497
|
Data2$outboundSchema = objectType({
|
|
54498
|
-
id: stringType().default("
|
|
54498
|
+
id: stringType().default("01K9P3D641T829Z2T0JRSSF3MQ"),
|
|
54499
54499
|
path: stringType(),
|
|
54500
54500
|
key: stringType(),
|
|
54501
54501
|
displayName: stringType().optional(),
|
|
@@ -54539,7 +54539,7 @@ var init_getalltools = __esm(() => {
|
|
|
54539
54539
|
parameters: recordType(anyType()).optional()
|
|
54540
54540
|
});
|
|
54541
54541
|
Data1$inboundSchema = objectType({
|
|
54542
|
-
_id: stringType().default("
|
|
54542
|
+
_id: stringType().default("01K9P3D63ZS2Z8G6KWR1YHBS64"),
|
|
54543
54543
|
path: stringType(),
|
|
54544
54544
|
key: stringType(),
|
|
54545
54545
|
display_name: stringType().optional(),
|
|
@@ -54566,7 +54566,7 @@ var init_getalltools = __esm(() => {
|
|
|
54566
54566
|
});
|
|
54567
54567
|
});
|
|
54568
54568
|
Data1$outboundSchema = objectType({
|
|
54569
|
-
id: stringType().default("
|
|
54569
|
+
id: stringType().default("01K9P3D63ZS2Z8G6KWR1YHBS64"),
|
|
54570
54570
|
path: stringType(),
|
|
54571
54571
|
key: stringType(),
|
|
54572
54572
|
displayName: stringType().optional(),
|
|
@@ -54708,7 +54708,7 @@ var init_getbudget = __esm(() => {
|
|
|
54708
54708
|
is_active: booleanType(),
|
|
54709
54709
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
54710
54710
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54711
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
54711
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.562Z").transform((v2) => new Date(v2))
|
|
54712
54712
|
}).transform((v2) => {
|
|
54713
54713
|
return remap(v2, {
|
|
54714
54714
|
_id: "id",
|
|
@@ -54726,7 +54726,7 @@ var init_getbudget = __esm(() => {
|
|
|
54726
54726
|
isActive: booleanType(),
|
|
54727
54727
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
54728
54728
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54729
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
54729
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.562Z")).transform((v2) => v2.toISOString())
|
|
54730
54730
|
}).transform((v2) => {
|
|
54731
54731
|
return remap(v2, {
|
|
54732
54732
|
id: "_id",
|
|
@@ -55095,8 +55095,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55095
55095
|
DataTypescript$inboundSchema = objectType({
|
|
55096
55096
|
_id: stringType(),
|
|
55097
55097
|
description: stringType(),
|
|
55098
|
-
created: stringType().default("2025-11-
|
|
55099
|
-
updated: stringType().default("2025-11-
|
|
55098
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55099
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55100
55100
|
guardrail_config: unionType([
|
|
55101
55101
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
55102
55102
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -55113,8 +55113,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55113
55113
|
DataTypescript$outboundSchema = objectType({
|
|
55114
55114
|
id: stringType(),
|
|
55115
55115
|
description: stringType(),
|
|
55116
|
-
created: stringType().default("2025-11-
|
|
55117
|
-
updated: stringType().default("2025-11-
|
|
55116
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55117
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55118
55118
|
guardrailConfig: unionType([
|
|
55119
55119
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
55120
55120
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -55171,8 +55171,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55171
55171
|
DataRagas$inboundSchema = objectType({
|
|
55172
55172
|
_id: stringType(),
|
|
55173
55173
|
description: stringType(),
|
|
55174
|
-
created: stringType().default("2025-11-
|
|
55175
|
-
updated: stringType().default("2025-11-
|
|
55174
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55175
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55176
55176
|
guardrail_config: unionType([
|
|
55177
55177
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
55178
55178
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -55191,8 +55191,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55191
55191
|
DataRagas$outboundSchema = objectType({
|
|
55192
55192
|
id: stringType(),
|
|
55193
55193
|
description: stringType(),
|
|
55194
|
-
created: stringType().default("2025-11-
|
|
55195
|
-
updated: stringType().default("2025-11-
|
|
55194
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55195
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55196
55196
|
guardrailConfig: unionType([
|
|
55197
55197
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
55198
55198
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -55629,8 +55629,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55629
55629
|
DataFunction$inboundSchema = objectType({
|
|
55630
55630
|
_id: stringType(),
|
|
55631
55631
|
description: stringType(),
|
|
55632
|
-
created: stringType().default("2025-11-
|
|
55633
|
-
updated: stringType().default("2025-11-
|
|
55632
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55633
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55634
55634
|
guardrail_config: unionType([
|
|
55635
55635
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
55636
55636
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -55684,8 +55684,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55684
55684
|
DataFunction$outboundSchema = objectType({
|
|
55685
55685
|
id: stringType(),
|
|
55686
55686
|
description: stringType(),
|
|
55687
|
-
created: stringType().default("2025-11-
|
|
55688
|
-
updated: stringType().default("2025-11-
|
|
55687
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55688
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55689
55689
|
guardrailConfig: unionType([
|
|
55690
55690
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
55691
55691
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -55777,8 +55777,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55777
55777
|
DataPython$inboundSchema = objectType({
|
|
55778
55778
|
_id: stringType(),
|
|
55779
55779
|
description: stringType(),
|
|
55780
|
-
created: stringType().default("2025-11-
|
|
55781
|
-
updated: stringType().default("2025-11-
|
|
55780
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55781
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55782
55782
|
guardrail_config: unionType([
|
|
55783
55783
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
55784
55784
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -55795,8 +55795,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55795
55795
|
DataPython$outboundSchema = objectType({
|
|
55796
55796
|
id: stringType(),
|
|
55797
55797
|
description: stringType(),
|
|
55798
|
-
created: stringType().default("2025-11-
|
|
55799
|
-
updated: stringType().default("2025-11-
|
|
55798
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55799
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55800
55800
|
guardrailConfig: unionType([
|
|
55801
55801
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
55802
55802
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -55853,8 +55853,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55853
55853
|
DataHTTP$inboundSchema = objectType({
|
|
55854
55854
|
_id: stringType(),
|
|
55855
55855
|
description: stringType(),
|
|
55856
|
-
created: stringType().default("2025-11-
|
|
55857
|
-
updated: stringType().default("2025-11-
|
|
55856
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55857
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55858
55858
|
guardrail_config: unionType([
|
|
55859
55859
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
55860
55860
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -55874,8 +55874,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55874
55874
|
DataHTTP$outboundSchema = objectType({
|
|
55875
55875
|
id: stringType(),
|
|
55876
55876
|
description: stringType(),
|
|
55877
|
-
created: stringType().default("2025-11-
|
|
55878
|
-
updated: stringType().default("2025-11-
|
|
55877
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55878
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55879
55879
|
guardrailConfig: unionType([
|
|
55880
55880
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
55881
55881
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -55933,8 +55933,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55933
55933
|
DataJSON$inboundSchema = objectType({
|
|
55934
55934
|
_id: stringType(),
|
|
55935
55935
|
description: stringType(),
|
|
55936
|
-
created: stringType().default("2025-11-
|
|
55937
|
-
updated: stringType().default("2025-11-
|
|
55936
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55937
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55938
55938
|
guardrail_config: unionType([
|
|
55939
55939
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
55940
55940
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -55951,8 +55951,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55951
55951
|
DataJSON$outboundSchema = objectType({
|
|
55952
55952
|
id: stringType(),
|
|
55953
55953
|
description: stringType(),
|
|
55954
|
-
created: stringType().default("2025-11-
|
|
55955
|
-
updated: stringType().default("2025-11-
|
|
55954
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55955
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
55956
55956
|
guardrailConfig: unionType([
|
|
55957
55957
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
55958
55958
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -56007,8 +56007,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56007
56007
|
DataLLM$inboundSchema = objectType({
|
|
56008
56008
|
_id: stringType(),
|
|
56009
56009
|
description: stringType(),
|
|
56010
|
-
created: stringType().default("2025-11-
|
|
56011
|
-
updated: stringType().default("2025-11-
|
|
56010
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
56011
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
56012
56012
|
guardrail_config: unionType([
|
|
56013
56013
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
56014
56014
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -56026,8 +56026,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56026
56026
|
DataLLM$outboundSchema = objectType({
|
|
56027
56027
|
id: stringType(),
|
|
56028
56028
|
description: stringType(),
|
|
56029
|
-
created: stringType().default("2025-11-
|
|
56030
|
-
updated: stringType().default("2025-11-
|
|
56029
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
56030
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
56031
56031
|
guardrailConfig: unionType([
|
|
56032
56032
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
56033
56033
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59545,7 +59545,8 @@ var init_listagenttasks2 = __esm(() => {
|
|
|
59545
59545
|
inactive: booleanType().default(true),
|
|
59546
59546
|
error: stringType().optional(),
|
|
59547
59547
|
iteration: numberType().int().default(1),
|
|
59548
|
-
accumulated_execution_time: numberType().default(0)
|
|
59548
|
+
accumulated_execution_time: numberType().default(0),
|
|
59549
|
+
variables: recordType(anyType()).optional()
|
|
59549
59550
|
}).transform((v2) => {
|
|
59550
59551
|
return remap(v2, {
|
|
59551
59552
|
waiting_for_approval: "waitingForApproval",
|
|
@@ -59557,7 +59558,8 @@ var init_listagenttasks2 = __esm(() => {
|
|
|
59557
59558
|
inactive: booleanType().default(true),
|
|
59558
59559
|
error: stringType().optional(),
|
|
59559
59560
|
iteration: numberType().int().default(1),
|
|
59560
|
-
accumulatedExecutionTime: numberType().default(0)
|
|
59561
|
+
accumulatedExecutionTime: numberType().default(0),
|
|
59562
|
+
variables: recordType(anyType()).optional()
|
|
59561
59563
|
}).transform((v2) => {
|
|
59562
59564
|
return remap(v2, {
|
|
59563
59565
|
waitingForApproval: "waiting_for_approval",
|
|
@@ -59764,7 +59766,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59764
59766
|
is_active: booleanType(),
|
|
59765
59767
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
59766
59768
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59767
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
59769
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.562Z").transform((v2) => new Date(v2))
|
|
59768
59770
|
}).transform((v2) => {
|
|
59769
59771
|
return remap(v2, {
|
|
59770
59772
|
_id: "id",
|
|
@@ -59780,7 +59782,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59780
59782
|
isActive: booleanType(),
|
|
59781
59783
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
59782
59784
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59783
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
59785
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.562Z")).transform((v2) => v2.toISOString())
|
|
59784
59786
|
}).transform((v2) => {
|
|
59785
59787
|
return remap(v2, {
|
|
59786
59788
|
id: "_id",
|
|
@@ -60107,7 +60109,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60107
60109
|
tags: arrayType(stringType()).optional(),
|
|
60108
60110
|
metadata: recordType(anyType()).optional(),
|
|
60109
60111
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60110
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60112
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2)),
|
|
60111
60113
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60112
60114
|
}).transform((v2) => {
|
|
60113
60115
|
return remap(v2, {
|
|
@@ -60126,7 +60128,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60126
60128
|
tags: arrayType(stringType()).optional(),
|
|
60127
60129
|
metadata: recordType(anyType()).optional(),
|
|
60128
60130
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60129
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60131
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString()),
|
|
60130
60132
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
60131
60133
|
}).transform((v2) => {
|
|
60132
60134
|
return remap(v2, {
|
|
@@ -60715,7 +60717,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60715
60717
|
human_review_id: stringType(),
|
|
60716
60718
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
60717
60719
|
reviewed_by_id: stringType(),
|
|
60718
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60720
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.923Z").transform((v2) => new Date(v2)),
|
|
60719
60721
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
60720
60722
|
values: arrayType(stringType())
|
|
60721
60723
|
}).transform((v2) => {
|
|
@@ -60732,7 +60734,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60732
60734
|
humanReviewId: stringType(),
|
|
60733
60735
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
60734
60736
|
reviewedById: stringType(),
|
|
60735
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60737
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.923Z")).transform((v2) => v2.toISOString()),
|
|
60736
60738
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
60737
60739
|
values: arrayType(stringType())
|
|
60738
60740
|
}).transform((v2) => {
|
|
@@ -60755,7 +60757,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60755
60757
|
human_review_id: stringType(),
|
|
60756
60758
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
60757
60759
|
reviewed_by_id: stringType(),
|
|
60758
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60760
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.923Z").transform((v2) => new Date(v2)),
|
|
60759
60761
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
60760
60762
|
value: numberType()
|
|
60761
60763
|
}).transform((v2) => {
|
|
@@ -60772,7 +60774,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60772
60774
|
humanReviewId: stringType(),
|
|
60773
60775
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
60774
60776
|
reviewedById: stringType(),
|
|
60775
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60777
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.923Z")).transform((v2) => v2.toISOString()),
|
|
60776
60778
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
60777
60779
|
value: numberType()
|
|
60778
60780
|
}).transform((v2) => {
|
|
@@ -60795,7 +60797,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60795
60797
|
human_review_id: stringType(),
|
|
60796
60798
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
60797
60799
|
reviewed_by_id: stringType(),
|
|
60798
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
60800
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.922Z").transform((v2) => new Date(v2)),
|
|
60799
60801
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
60800
60802
|
value: stringType()
|
|
60801
60803
|
}).transform((v2) => {
|
|
@@ -60812,7 +60814,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60812
60814
|
humanReviewId: stringType(),
|
|
60813
60815
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
60814
60816
|
reviewedById: stringType(),
|
|
60815
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
60817
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.922Z")).transform((v2) => v2.toISOString()),
|
|
60816
60818
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
60817
60819
|
value: stringType()
|
|
60818
60820
|
}).transform((v2) => {
|
|
@@ -60855,7 +60857,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60855
60857
|
created_by_id: stringType().optional(),
|
|
60856
60858
|
updated_by_id: stringType().optional(),
|
|
60857
60859
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60858
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60860
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
60859
60861
|
}).transform((v2) => {
|
|
60860
60862
|
return remap(v2, {
|
|
60861
60863
|
_id: "id",
|
|
@@ -60889,7 +60891,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60889
60891
|
createdById: stringType().optional(),
|
|
60890
60892
|
updatedById: stringType().optional(),
|
|
60891
60893
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60892
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60894
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
60893
60895
|
}).transform((v2) => {
|
|
60894
60896
|
return remap(v2, {
|
|
60895
60897
|
id: "_id",
|
|
@@ -60978,7 +60980,7 @@ var init_listdatasets = __esm(() => {
|
|
|
60978
60980
|
created_by_id: stringType().optional(),
|
|
60979
60981
|
updated_by_id: stringType().optional(),
|
|
60980
60982
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60981
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60983
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
60982
60984
|
}).transform((v2) => {
|
|
60983
60985
|
return remap(v2, {
|
|
60984
60986
|
_id: "id",
|
|
@@ -60998,7 +61000,7 @@ var init_listdatasets = __esm(() => {
|
|
|
60998
61000
|
createdById: stringType().optional(),
|
|
60999
61001
|
updatedById: stringType().optional(),
|
|
61000
61002
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61001
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61003
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
61002
61004
|
}).transform((v2) => {
|
|
61003
61005
|
return remap(v2, {
|
|
61004
61006
|
id: "_id",
|
|
@@ -61079,7 +61081,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61079
61081
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
61080
61082
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
61081
61083
|
ListDatasourcesData$inboundSchema = objectType({
|
|
61082
|
-
_id: stringType().default("
|
|
61084
|
+
_id: stringType().default("01K9P3D694Z8HCEFYBBQWZWV84"),
|
|
61083
61085
|
display_name: stringType(),
|
|
61084
61086
|
description: stringType().optional(),
|
|
61085
61087
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -61102,7 +61104,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61102
61104
|
});
|
|
61103
61105
|
});
|
|
61104
61106
|
ListDatasourcesData$outboundSchema = objectType({
|
|
61105
|
-
id: stringType().default("
|
|
61107
|
+
id: stringType().default("01K9P3D694Z8HCEFYBBQWZWV84"),
|
|
61106
61108
|
displayName: stringType(),
|
|
61107
61109
|
description: stringType().optional(),
|
|
61108
61110
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -62566,7 +62568,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
62566
62568
|
tags: arrayType(stringType()).optional(),
|
|
62567
62569
|
metadata: recordType(anyType()).optional(),
|
|
62568
62570
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62569
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62571
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
62570
62572
|
}).transform((v2) => {
|
|
62571
62573
|
return remap(v2, {
|
|
62572
62574
|
_id: "id",
|
|
@@ -62584,7 +62586,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
62584
62586
|
tags: arrayType(stringType()).optional(),
|
|
62585
62587
|
metadata: recordType(anyType()).optional(),
|
|
62586
62588
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62587
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62589
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
62588
62590
|
}).transform((v2) => {
|
|
62589
62591
|
return remap(v2, {
|
|
62590
62592
|
id: "_id",
|
|
@@ -63143,7 +63145,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63143
63145
|
human_review_id: stringType(),
|
|
63144
63146
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
63145
63147
|
reviewed_by_id: stringType(),
|
|
63146
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63148
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.933Z").transform((v2) => new Date(v2)),
|
|
63147
63149
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
63148
63150
|
values: arrayType(stringType())
|
|
63149
63151
|
}).transform((v2) => {
|
|
@@ -63160,7 +63162,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63160
63162
|
humanReviewId: stringType(),
|
|
63161
63163
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
63162
63164
|
reviewedById: stringType(),
|
|
63163
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63165
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.933Z")).transform((v2) => v2.toISOString()),
|
|
63164
63166
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
63165
63167
|
values: arrayType(stringType())
|
|
63166
63168
|
}).transform((v2) => {
|
|
@@ -63183,7 +63185,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63183
63185
|
human_review_id: stringType(),
|
|
63184
63186
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
63185
63187
|
reviewed_by_id: stringType(),
|
|
63186
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63188
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.933Z").transform((v2) => new Date(v2)),
|
|
63187
63189
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
63188
63190
|
value: numberType()
|
|
63189
63191
|
}).transform((v2) => {
|
|
@@ -63200,7 +63202,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63200
63202
|
humanReviewId: stringType(),
|
|
63201
63203
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
63202
63204
|
reviewedById: stringType(),
|
|
63203
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63205
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.933Z")).transform((v2) => v2.toISOString()),
|
|
63204
63206
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
63205
63207
|
value: numberType()
|
|
63206
63208
|
}).transform((v2) => {
|
|
@@ -63223,7 +63225,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63223
63225
|
human_review_id: stringType(),
|
|
63224
63226
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
63225
63227
|
reviewed_by_id: stringType(),
|
|
63226
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
63228
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.932Z").transform((v2) => new Date(v2)),
|
|
63227
63229
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
63228
63230
|
value: stringType()
|
|
63229
63231
|
}).transform((v2) => {
|
|
@@ -63240,7 +63242,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63240
63242
|
humanReviewId: stringType(),
|
|
63241
63243
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
63242
63244
|
reviewedById: stringType(),
|
|
63243
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
63245
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.932Z")).transform((v2) => v2.toISOString()),
|
|
63244
63246
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
63245
63247
|
value: stringType()
|
|
63246
63248
|
}).transform((v2) => {
|
|
@@ -63283,7 +63285,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63283
63285
|
created_by_id: stringType().optional(),
|
|
63284
63286
|
updated_by_id: stringType().optional(),
|
|
63285
63287
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63286
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63288
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
63287
63289
|
}).transform((v2) => {
|
|
63288
63290
|
return remap(v2, {
|
|
63289
63291
|
_id: "id",
|
|
@@ -63317,7 +63319,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63317
63319
|
createdById: stringType().optional(),
|
|
63318
63320
|
updatedById: stringType().optional(),
|
|
63319
63321
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63320
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63322
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
63321
63323
|
}).transform((v2) => {
|
|
63322
63324
|
return remap(v2, {
|
|
63323
63325
|
id: "_id",
|
|
@@ -63377,7 +63379,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63377
63379
|
created_by_id: stringType().optional(),
|
|
63378
63380
|
updated_by_id: stringType().optional(),
|
|
63379
63381
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63380
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63382
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
63381
63383
|
}).transform((v2) => {
|
|
63382
63384
|
return remap(v2, {
|
|
63383
63385
|
_id: "id",
|
|
@@ -63397,7 +63399,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63397
63399
|
createdById: stringType().optional(),
|
|
63398
63400
|
updatedById: stringType().optional(),
|
|
63399
63401
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63400
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63402
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
63401
63403
|
}).transform((v2) => {
|
|
63402
63404
|
return remap(v2, {
|
|
63403
63405
|
id: "_id",
|
|
@@ -63443,7 +63445,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63443
63445
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
63444
63446
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
63445
63447
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
63446
|
-
_id: stringType().default("
|
|
63448
|
+
_id: stringType().default("01K9P3D696C8W5VCDZSC9AB5DK"),
|
|
63447
63449
|
display_name: stringType(),
|
|
63448
63450
|
description: stringType().optional(),
|
|
63449
63451
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -63466,7 +63468,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63466
63468
|
});
|
|
63467
63469
|
});
|
|
63468
63470
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
63469
|
-
id: stringType().default("
|
|
63471
|
+
id: stringType().default("01K9P3D696C8W5VCDZSC9AB5DK"),
|
|
63470
63472
|
displayName: stringType(),
|
|
63471
63473
|
description: stringType().optional(),
|
|
63472
63474
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64004,7 +64006,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64004
64006
|
code: stringType()
|
|
64005
64007
|
});
|
|
64006
64008
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
64007
|
-
_id: stringType().default("
|
|
64009
|
+
_id: stringType().default("01K9P3D66BM6REZG4N1FNNBBNK"),
|
|
64008
64010
|
path: stringType(),
|
|
64009
64011
|
key: stringType(),
|
|
64010
64012
|
display_name: stringType().optional(),
|
|
@@ -64032,7 +64034,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64032
64034
|
});
|
|
64033
64035
|
});
|
|
64034
64036
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
64035
|
-
id: stringType().default("
|
|
64037
|
+
id: stringType().default("01K9P3D66BM6REZG4N1FNNBBNK"),
|
|
64036
64038
|
path: stringType(),
|
|
64037
64039
|
key: stringType(),
|
|
64038
64040
|
displayName: stringType().optional(),
|
|
@@ -64118,7 +64120,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64118
64120
|
});
|
|
64119
64121
|
});
|
|
64120
64122
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
64121
|
-
_id: stringType().default("
|
|
64123
|
+
_id: stringType().default("01K9P3D669E79P357RBWC0WPTN"),
|
|
64122
64124
|
path: stringType(),
|
|
64123
64125
|
key: stringType(),
|
|
64124
64126
|
display_name: stringType().optional(),
|
|
@@ -64145,7 +64147,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64145
64147
|
});
|
|
64146
64148
|
});
|
|
64147
64149
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
64148
|
-
id: stringType().default("
|
|
64150
|
+
id: stringType().default("01K9P3D669E79P357RBWC0WPTN"),
|
|
64149
64151
|
path: stringType(),
|
|
64150
64152
|
key: stringType(),
|
|
64151
64153
|
displayName: stringType().optional(),
|
|
@@ -64224,7 +64226,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64224
64226
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64225
64227
|
});
|
|
64226
64228
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
64227
|
-
_id: stringType().default("
|
|
64229
|
+
_id: stringType().default("01K9P3D668XD7PHTCFK6E0E060"),
|
|
64228
64230
|
path: stringType(),
|
|
64229
64231
|
key: stringType(),
|
|
64230
64232
|
display_name: stringType().optional(),
|
|
@@ -64251,7 +64253,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64251
64253
|
});
|
|
64252
64254
|
});
|
|
64253
64255
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
64254
|
-
id: stringType().default("
|
|
64256
|
+
id: stringType().default("01K9P3D668XD7PHTCFK6E0E060"),
|
|
64255
64257
|
path: stringType(),
|
|
64256
64258
|
key: stringType(),
|
|
64257
64259
|
displayName: stringType().optional(),
|
|
@@ -64294,7 +64296,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64294
64296
|
strict: booleanType().optional()
|
|
64295
64297
|
});
|
|
64296
64298
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
64297
|
-
_id: stringType().default("
|
|
64299
|
+
_id: stringType().default("01K9P3D667CCN8BB9NJMJAZ9CA"),
|
|
64298
64300
|
path: stringType(),
|
|
64299
64301
|
key: stringType(),
|
|
64300
64302
|
display_name: stringType().optional(),
|
|
@@ -64322,7 +64324,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64322
64324
|
});
|
|
64323
64325
|
});
|
|
64324
64326
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
64325
|
-
id: stringType().default("
|
|
64327
|
+
id: stringType().default("01K9P3D667CCN8BB9NJMJAZ9CA"),
|
|
64326
64328
|
path: stringType(),
|
|
64327
64329
|
key: stringType(),
|
|
64328
64330
|
displayName: stringType().optional(),
|
|
@@ -64366,7 +64368,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64366
64368
|
parameters: recordType(anyType()).optional()
|
|
64367
64369
|
});
|
|
64368
64370
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
64369
|
-
_id: stringType().default("
|
|
64371
|
+
_id: stringType().default("01K9P3D665NN1PGMMEZCP62GZ1"),
|
|
64370
64372
|
path: stringType(),
|
|
64371
64373
|
key: stringType(),
|
|
64372
64374
|
display_name: stringType().optional(),
|
|
@@ -64393,7 +64395,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64393
64395
|
});
|
|
64394
64396
|
});
|
|
64395
64397
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
64396
|
-
id: stringType().default("
|
|
64398
|
+
id: stringType().default("01K9P3D665NN1PGMMEZCP62GZ1"),
|
|
64397
64399
|
path: stringType(),
|
|
64398
64400
|
key: stringType(),
|
|
64399
64401
|
displayName: stringType().optional(),
|
|
@@ -65459,7 +65461,7 @@ var init_runagent = __esm(() => {
|
|
|
65459
65461
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
65460
65462
|
AgentToolInputRunCurrentDateTool$inboundSchema = objectType({
|
|
65461
65463
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
65462
|
-
requires_approval: booleanType().
|
|
65464
|
+
requires_approval: booleanType().optional()
|
|
65463
65465
|
}).transform((v2) => {
|
|
65464
65466
|
return remap(v2, {
|
|
65465
65467
|
requires_approval: "requiresApproval"
|
|
@@ -65467,7 +65469,7 @@ var init_runagent = __esm(() => {
|
|
|
65467
65469
|
});
|
|
65468
65470
|
AgentToolInputRunCurrentDateTool$outboundSchema = objectType({
|
|
65469
65471
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
65470
|
-
requiresApproval: booleanType().
|
|
65472
|
+
requiresApproval: booleanType().optional()
|
|
65471
65473
|
}).transform((v2) => {
|
|
65472
65474
|
return remap(v2, {
|
|
65473
65475
|
requiresApproval: "requires_approval"
|
|
@@ -65477,7 +65479,7 @@ var init_runagent = __esm(() => {
|
|
|
65477
65479
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
65478
65480
|
AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
65479
65481
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
65480
|
-
requires_approval: booleanType().
|
|
65482
|
+
requires_approval: booleanType().optional()
|
|
65481
65483
|
}).transform((v2) => {
|
|
65482
65484
|
return remap(v2, {
|
|
65483
65485
|
requires_approval: "requiresApproval"
|
|
@@ -65485,7 +65487,7 @@ var init_runagent = __esm(() => {
|
|
|
65485
65487
|
});
|
|
65486
65488
|
AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
65487
65489
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
65488
|
-
requiresApproval: booleanType().
|
|
65490
|
+
requiresApproval: booleanType().optional()
|
|
65489
65491
|
}).transform((v2) => {
|
|
65490
65492
|
return remap(v2, {
|
|
65491
65493
|
requiresApproval: "requires_approval"
|
|
@@ -65495,7 +65497,7 @@ var init_runagent = __esm(() => {
|
|
|
65495
65497
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
65496
65498
|
AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
65497
65499
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
65498
|
-
requires_approval: booleanType().
|
|
65500
|
+
requires_approval: booleanType().optional()
|
|
65499
65501
|
}).transform((v2) => {
|
|
65500
65502
|
return remap(v2, {
|
|
65501
65503
|
requires_approval: "requiresApproval"
|
|
@@ -65503,7 +65505,7 @@ var init_runagent = __esm(() => {
|
|
|
65503
65505
|
});
|
|
65504
65506
|
AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
65505
65507
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
65506
|
-
requiresApproval: booleanType().
|
|
65508
|
+
requiresApproval: booleanType().optional()
|
|
65507
65509
|
}).transform((v2) => {
|
|
65508
65510
|
return remap(v2, {
|
|
65509
65511
|
requiresApproval: "requires_approval"
|
|
@@ -65513,7 +65515,7 @@ var init_runagent = __esm(() => {
|
|
|
65513
65515
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
65514
65516
|
AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
65515
65517
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
65516
|
-
requires_approval: booleanType().
|
|
65518
|
+
requires_approval: booleanType().optional()
|
|
65517
65519
|
}).transform((v2) => {
|
|
65518
65520
|
return remap(v2, {
|
|
65519
65521
|
requires_approval: "requiresApproval"
|
|
@@ -65521,7 +65523,7 @@ var init_runagent = __esm(() => {
|
|
|
65521
65523
|
});
|
|
65522
65524
|
AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
65523
65525
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
65524
|
-
requiresApproval: booleanType().
|
|
65526
|
+
requiresApproval: booleanType().optional()
|
|
65525
65527
|
}).transform((v2) => {
|
|
65526
65528
|
return remap(v2, {
|
|
65527
65529
|
requiresApproval: "requires_approval"
|
|
@@ -65531,7 +65533,7 @@ var init_runagent = __esm(() => {
|
|
|
65531
65533
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
65532
65534
|
AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
65533
65535
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
65534
|
-
requires_approval: booleanType().
|
|
65536
|
+
requires_approval: booleanType().optional()
|
|
65535
65537
|
}).transform((v2) => {
|
|
65536
65538
|
return remap(v2, {
|
|
65537
65539
|
requires_approval: "requiresApproval"
|
|
@@ -65539,7 +65541,7 @@ var init_runagent = __esm(() => {
|
|
|
65539
65541
|
});
|
|
65540
65542
|
AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
65541
65543
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
65542
|
-
requiresApproval: booleanType().
|
|
65544
|
+
requiresApproval: booleanType().optional()
|
|
65543
65545
|
}).transform((v2) => {
|
|
65544
65546
|
return remap(v2, {
|
|
65545
65547
|
requiresApproval: "requires_approval"
|
|
@@ -65549,7 +65551,7 @@ var init_runagent = __esm(() => {
|
|
|
65549
65551
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
65550
65552
|
AgentToolInputRunWriteMemoryStoreTool$inboundSchema = objectType({
|
|
65551
65553
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
65552
|
-
requires_approval: booleanType().
|
|
65554
|
+
requires_approval: booleanType().optional()
|
|
65553
65555
|
}).transform((v2) => {
|
|
65554
65556
|
return remap(v2, {
|
|
65555
65557
|
requires_approval: "requiresApproval"
|
|
@@ -65557,7 +65559,7 @@ var init_runagent = __esm(() => {
|
|
|
65557
65559
|
});
|
|
65558
65560
|
AgentToolInputRunWriteMemoryStoreTool$outboundSchema = objectType({
|
|
65559
65561
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
65560
|
-
requiresApproval: booleanType().
|
|
65562
|
+
requiresApproval: booleanType().optional()
|
|
65561
65563
|
}).transform((v2) => {
|
|
65562
65564
|
return remap(v2, {
|
|
65563
65565
|
requiresApproval: "requires_approval"
|
|
@@ -65567,7 +65569,7 @@ var init_runagent = __esm(() => {
|
|
|
65567
65569
|
RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema;
|
|
65568
65570
|
AgentToolInputRunQueryMemoryStoreTool$inboundSchema = objectType({
|
|
65569
65571
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
65570
|
-
requires_approval: booleanType().
|
|
65572
|
+
requires_approval: booleanType().optional()
|
|
65571
65573
|
}).transform((v2) => {
|
|
65572
65574
|
return remap(v2, {
|
|
65573
65575
|
requires_approval: "requiresApproval"
|
|
@@ -65575,7 +65577,7 @@ var init_runagent = __esm(() => {
|
|
|
65575
65577
|
});
|
|
65576
65578
|
AgentToolInputRunQueryMemoryStoreTool$outboundSchema = objectType({
|
|
65577
65579
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
65578
|
-
requiresApproval: booleanType().
|
|
65580
|
+
requiresApproval: booleanType().optional()
|
|
65579
65581
|
}).transform((v2) => {
|
|
65580
65582
|
return remap(v2, {
|
|
65581
65583
|
requiresApproval: "requires_approval"
|
|
@@ -65585,7 +65587,7 @@ var init_runagent = __esm(() => {
|
|
|
65585
65587
|
RunAgentAgentToolInputRunAgentsRequestType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestType$inboundSchema;
|
|
65586
65588
|
AgentToolInputRunRetrieveAgentsTool$inboundSchema = objectType({
|
|
65587
65589
|
type: RunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
65588
|
-
requires_approval: booleanType().
|
|
65590
|
+
requires_approval: booleanType().optional()
|
|
65589
65591
|
}).transform((v2) => {
|
|
65590
65592
|
return remap(v2, {
|
|
65591
65593
|
requires_approval: "requiresApproval"
|
|
@@ -65593,7 +65595,7 @@ var init_runagent = __esm(() => {
|
|
|
65593
65595
|
});
|
|
65594
65596
|
AgentToolInputRunRetrieveAgentsTool$outboundSchema = objectType({
|
|
65595
65597
|
type: RunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
65596
|
-
requiresApproval: booleanType().
|
|
65598
|
+
requiresApproval: booleanType().optional()
|
|
65597
65599
|
}).transform((v2) => {
|
|
65598
65600
|
return remap(v2, {
|
|
65599
65601
|
requiresApproval: "requires_approval"
|
|
@@ -65603,7 +65605,7 @@ var init_runagent = __esm(() => {
|
|
|
65603
65605
|
RunAgentAgentToolInputRunAgentsType$outboundSchema = RunAgentAgentToolInputRunAgentsType$inboundSchema;
|
|
65604
65606
|
AgentToolInputRunCallSubAgentTool$inboundSchema = objectType({
|
|
65605
65607
|
type: RunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
65606
|
-
requires_approval: booleanType().
|
|
65608
|
+
requires_approval: booleanType().optional()
|
|
65607
65609
|
}).transform((v2) => {
|
|
65608
65610
|
return remap(v2, {
|
|
65609
65611
|
requires_approval: "requiresApproval"
|
|
@@ -65611,7 +65613,7 @@ var init_runagent = __esm(() => {
|
|
|
65611
65613
|
});
|
|
65612
65614
|
AgentToolInputRunCallSubAgentTool$outboundSchema = objectType({
|
|
65613
65615
|
type: RunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
65614
|
-
requiresApproval: booleanType().
|
|
65616
|
+
requiresApproval: booleanType().optional()
|
|
65615
65617
|
}).transform((v2) => {
|
|
65616
65618
|
return remap(v2, {
|
|
65617
65619
|
requiresApproval: "requires_approval"
|
|
@@ -65621,7 +65623,7 @@ var init_runagent = __esm(() => {
|
|
|
65621
65623
|
RunAgentAgentToolInputRunType$outboundSchema = RunAgentAgentToolInputRunType$inboundSchema;
|
|
65622
65624
|
AgentToolInputRunWebScraperTool$inboundSchema = objectType({
|
|
65623
65625
|
type: RunAgentAgentToolInputRunType$inboundSchema,
|
|
65624
|
-
requires_approval: booleanType().
|
|
65626
|
+
requires_approval: booleanType().optional()
|
|
65625
65627
|
}).transform((v2) => {
|
|
65626
65628
|
return remap(v2, {
|
|
65627
65629
|
requires_approval: "requiresApproval"
|
|
@@ -65629,7 +65631,7 @@ var init_runagent = __esm(() => {
|
|
|
65629
65631
|
});
|
|
65630
65632
|
AgentToolInputRunWebScraperTool$outboundSchema = objectType({
|
|
65631
65633
|
type: RunAgentAgentToolInputRunType$outboundSchema,
|
|
65632
|
-
requiresApproval: booleanType().
|
|
65634
|
+
requiresApproval: booleanType().optional()
|
|
65633
65635
|
}).transform((v2) => {
|
|
65634
65636
|
return remap(v2, {
|
|
65635
65637
|
requiresApproval: "requires_approval"
|
|
@@ -65639,7 +65641,7 @@ var init_runagent = __esm(() => {
|
|
|
65639
65641
|
AgentToolInputRunType$outboundSchema = AgentToolInputRunType$inboundSchema;
|
|
65640
65642
|
AgentToolInputRunGoogleSearchTool$inboundSchema = objectType({
|
|
65641
65643
|
type: AgentToolInputRunType$inboundSchema,
|
|
65642
|
-
requires_approval: booleanType().
|
|
65644
|
+
requires_approval: booleanType().optional()
|
|
65643
65645
|
}).transform((v2) => {
|
|
65644
65646
|
return remap(v2, {
|
|
65645
65647
|
requires_approval: "requiresApproval"
|
|
@@ -65647,7 +65649,7 @@ var init_runagent = __esm(() => {
|
|
|
65647
65649
|
});
|
|
65648
65650
|
AgentToolInputRunGoogleSearchTool$outboundSchema = objectType({
|
|
65649
65651
|
type: AgentToolInputRunType$outboundSchema,
|
|
65650
|
-
requiresApproval: booleanType().
|
|
65652
|
+
requiresApproval: booleanType().optional()
|
|
65651
65653
|
}).transform((v2) => {
|
|
65652
65654
|
return remap(v2, {
|
|
65653
65655
|
requiresApproval: "requires_approval"
|
|
@@ -67622,7 +67624,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67622
67624
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
67623
67625
|
StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema = objectType({
|
|
67624
67626
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
67625
|
-
requires_approval: booleanType().
|
|
67627
|
+
requires_approval: booleanType().optional()
|
|
67626
67628
|
}).transform((v2) => {
|
|
67627
67629
|
return remap(v2, {
|
|
67628
67630
|
requires_approval: "requiresApproval"
|
|
@@ -67630,7 +67632,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67630
67632
|
});
|
|
67631
67633
|
StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema = objectType({
|
|
67632
67634
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
67633
|
-
requiresApproval: booleanType().
|
|
67635
|
+
requiresApproval: booleanType().optional()
|
|
67634
67636
|
}).transform((v2) => {
|
|
67635
67637
|
return remap(v2, {
|
|
67636
67638
|
requiresApproval: "requires_approval"
|
|
@@ -67640,7 +67642,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67640
67642
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
67641
67643
|
StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
67642
67644
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
67643
|
-
requires_approval: booleanType().
|
|
67645
|
+
requires_approval: booleanType().optional()
|
|
67644
67646
|
}).transform((v2) => {
|
|
67645
67647
|
return remap(v2, {
|
|
67646
67648
|
requires_approval: "requiresApproval"
|
|
@@ -67648,7 +67650,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67648
67650
|
});
|
|
67649
67651
|
StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
67650
67652
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
67651
|
-
requiresApproval: booleanType().
|
|
67653
|
+
requiresApproval: booleanType().optional()
|
|
67652
67654
|
}).transform((v2) => {
|
|
67653
67655
|
return remap(v2, {
|
|
67654
67656
|
requiresApproval: "requires_approval"
|
|
@@ -67658,7 +67660,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67658
67660
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
67659
67661
|
StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
67660
67662
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
67661
|
-
requires_approval: booleanType().
|
|
67663
|
+
requires_approval: booleanType().optional()
|
|
67662
67664
|
}).transform((v2) => {
|
|
67663
67665
|
return remap(v2, {
|
|
67664
67666
|
requires_approval: "requiresApproval"
|
|
@@ -67666,7 +67668,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67666
67668
|
});
|
|
67667
67669
|
StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
67668
67670
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
67669
|
-
requiresApproval: booleanType().
|
|
67671
|
+
requiresApproval: booleanType().optional()
|
|
67670
67672
|
}).transform((v2) => {
|
|
67671
67673
|
return remap(v2, {
|
|
67672
67674
|
requiresApproval: "requires_approval"
|
|
@@ -67676,7 +67678,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67676
67678
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
67677
67679
|
StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
67678
67680
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
67679
|
-
requires_approval: booleanType().
|
|
67681
|
+
requires_approval: booleanType().optional()
|
|
67680
67682
|
}).transform((v2) => {
|
|
67681
67683
|
return remap(v2, {
|
|
67682
67684
|
requires_approval: "requiresApproval"
|
|
@@ -67684,7 +67686,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67684
67686
|
});
|
|
67685
67687
|
StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
67686
67688
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
67687
|
-
requiresApproval: booleanType().
|
|
67689
|
+
requiresApproval: booleanType().optional()
|
|
67688
67690
|
}).transform((v2) => {
|
|
67689
67691
|
return remap(v2, {
|
|
67690
67692
|
requiresApproval: "requires_approval"
|
|
@@ -67694,7 +67696,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67694
67696
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema;
|
|
67695
67697
|
StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
67696
67698
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
67697
|
-
requires_approval: booleanType().
|
|
67699
|
+
requires_approval: booleanType().optional()
|
|
67698
67700
|
}).transform((v2) => {
|
|
67699
67701
|
return remap(v2, {
|
|
67700
67702
|
requires_approval: "requiresApproval"
|
|
@@ -67702,7 +67704,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67702
67704
|
});
|
|
67703
67705
|
StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
67704
67706
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
67705
|
-
requiresApproval: booleanType().
|
|
67707
|
+
requiresApproval: booleanType().optional()
|
|
67706
67708
|
}).transform((v2) => {
|
|
67707
67709
|
return remap(v2, {
|
|
67708
67710
|
requiresApproval: "requires_approval"
|
|
@@ -67712,7 +67714,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67712
67714
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
67713
67715
|
StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema = objectType({
|
|
67714
67716
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
67715
|
-
requires_approval: booleanType().
|
|
67717
|
+
requires_approval: booleanType().optional()
|
|
67716
67718
|
}).transform((v2) => {
|
|
67717
67719
|
return remap(v2, {
|
|
67718
67720
|
requires_approval: "requiresApproval"
|
|
@@ -67720,7 +67722,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67720
67722
|
});
|
|
67721
67723
|
StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema = objectType({
|
|
67722
67724
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
67723
|
-
requiresApproval: booleanType().
|
|
67725
|
+
requiresApproval: booleanType().optional()
|
|
67724
67726
|
}).transform((v2) => {
|
|
67725
67727
|
return remap(v2, {
|
|
67726
67728
|
requiresApproval: "requires_approval"
|
|
@@ -67730,7 +67732,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67730
67732
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
67731
67733
|
StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema = objectType({
|
|
67732
67734
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
67733
|
-
requires_approval: booleanType().
|
|
67735
|
+
requires_approval: booleanType().optional()
|
|
67734
67736
|
}).transform((v2) => {
|
|
67735
67737
|
return remap(v2, {
|
|
67736
67738
|
requires_approval: "requiresApproval"
|
|
@@ -67738,7 +67740,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67738
67740
|
});
|
|
67739
67741
|
StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema = objectType({
|
|
67740
67742
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
67741
|
-
requiresApproval: booleanType().
|
|
67743
|
+
requiresApproval: booleanType().optional()
|
|
67742
67744
|
}).transform((v2) => {
|
|
67743
67745
|
return remap(v2, {
|
|
67744
67746
|
requiresApproval: "requires_approval"
|
|
@@ -67748,7 +67750,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67748
67750
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema;
|
|
67749
67751
|
StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema = objectType({
|
|
67750
67752
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
67751
|
-
requires_approval: booleanType().
|
|
67753
|
+
requires_approval: booleanType().optional()
|
|
67752
67754
|
}).transform((v2) => {
|
|
67753
67755
|
return remap(v2, {
|
|
67754
67756
|
requires_approval: "requiresApproval"
|
|
@@ -67756,7 +67758,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67756
67758
|
});
|
|
67757
67759
|
StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema = objectType({
|
|
67758
67760
|
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
67759
|
-
requiresApproval: booleanType().
|
|
67761
|
+
requiresApproval: booleanType().optional()
|
|
67760
67762
|
}).transform((v2) => {
|
|
67761
67763
|
return remap(v2, {
|
|
67762
67764
|
requiresApproval: "requires_approval"
|
|
@@ -67766,7 +67768,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67766
67768
|
StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema;
|
|
67767
67769
|
StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema = objectType({
|
|
67768
67770
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
67769
|
-
requires_approval: booleanType().
|
|
67771
|
+
requires_approval: booleanType().optional()
|
|
67770
67772
|
}).transform((v2) => {
|
|
67771
67773
|
return remap(v2, {
|
|
67772
67774
|
requires_approval: "requiresApproval"
|
|
@@ -67774,7 +67776,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67774
67776
|
});
|
|
67775
67777
|
StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema = objectType({
|
|
67776
67778
|
type: StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
67777
|
-
requiresApproval: booleanType().
|
|
67779
|
+
requiresApproval: booleanType().optional()
|
|
67778
67780
|
}).transform((v2) => {
|
|
67779
67781
|
return remap(v2, {
|
|
67780
67782
|
requiresApproval: "requires_approval"
|
|
@@ -67784,7 +67786,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67784
67786
|
StreamRunAgentAgentToolInputRunAgentsType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsType$inboundSchema;
|
|
67785
67787
|
StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema = objectType({
|
|
67786
67788
|
type: StreamRunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
67787
|
-
requires_approval: booleanType().
|
|
67789
|
+
requires_approval: booleanType().optional()
|
|
67788
67790
|
}).transform((v2) => {
|
|
67789
67791
|
return remap(v2, {
|
|
67790
67792
|
requires_approval: "requiresApproval"
|
|
@@ -67792,7 +67794,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67792
67794
|
});
|
|
67793
67795
|
StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema = objectType({
|
|
67794
67796
|
type: StreamRunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
67795
|
-
requiresApproval: booleanType().
|
|
67797
|
+
requiresApproval: booleanType().optional()
|
|
67796
67798
|
}).transform((v2) => {
|
|
67797
67799
|
return remap(v2, {
|
|
67798
67800
|
requiresApproval: "requires_approval"
|
|
@@ -67802,7 +67804,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67802
67804
|
StreamRunAgentAgentToolInputRunType$outboundSchema = StreamRunAgentAgentToolInputRunType$inboundSchema;
|
|
67803
67805
|
StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema = objectType({
|
|
67804
67806
|
type: StreamRunAgentAgentToolInputRunType$inboundSchema,
|
|
67805
|
-
requires_approval: booleanType().
|
|
67807
|
+
requires_approval: booleanType().optional()
|
|
67806
67808
|
}).transform((v2) => {
|
|
67807
67809
|
return remap(v2, {
|
|
67808
67810
|
requires_approval: "requiresApproval"
|
|
@@ -67810,7 +67812,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67810
67812
|
});
|
|
67811
67813
|
StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema = objectType({
|
|
67812
67814
|
type: StreamRunAgentAgentToolInputRunType$outboundSchema,
|
|
67813
|
-
requiresApproval: booleanType().
|
|
67815
|
+
requiresApproval: booleanType().optional()
|
|
67814
67816
|
}).transform((v2) => {
|
|
67815
67817
|
return remap(v2, {
|
|
67816
67818
|
requiresApproval: "requires_approval"
|
|
@@ -68762,7 +68764,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68762
68764
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema;
|
|
68763
68765
|
AgentToolInputCRUDCurrentDateTool$inboundSchema = objectType({
|
|
68764
68766
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
68765
|
-
requires_approval: booleanType().
|
|
68767
|
+
requires_approval: booleanType().optional()
|
|
68766
68768
|
}).transform((v2) => {
|
|
68767
68769
|
return remap(v2, {
|
|
68768
68770
|
requires_approval: "requiresApproval"
|
|
@@ -68770,7 +68772,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68770
68772
|
});
|
|
68771
68773
|
AgentToolInputCRUDCurrentDateTool$outboundSchema = objectType({
|
|
68772
68774
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
68773
|
-
requiresApproval: booleanType().
|
|
68775
|
+
requiresApproval: booleanType().optional()
|
|
68774
68776
|
}).transform((v2) => {
|
|
68775
68777
|
return remap(v2, {
|
|
68776
68778
|
requiresApproval: "requires_approval"
|
|
@@ -68780,7 +68782,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68780
68782
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema;
|
|
68781
68783
|
AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema = objectType({
|
|
68782
68784
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
68783
|
-
requires_approval: booleanType().
|
|
68785
|
+
requires_approval: booleanType().optional()
|
|
68784
68786
|
}).transform((v2) => {
|
|
68785
68787
|
return remap(v2, {
|
|
68786
68788
|
requires_approval: "requiresApproval"
|
|
@@ -68788,7 +68790,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68788
68790
|
});
|
|
68789
68791
|
AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema = objectType({
|
|
68790
68792
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
68791
|
-
requiresApproval: booleanType().
|
|
68793
|
+
requiresApproval: booleanType().optional()
|
|
68792
68794
|
}).transform((v2) => {
|
|
68793
68795
|
return remap(v2, {
|
|
68794
68796
|
requiresApproval: "requires_approval"
|
|
@@ -68798,7 +68800,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68798
68800
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema;
|
|
68799
68801
|
AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema = objectType({
|
|
68800
68802
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
68801
|
-
requires_approval: booleanType().
|
|
68803
|
+
requires_approval: booleanType().optional()
|
|
68802
68804
|
}).transform((v2) => {
|
|
68803
68805
|
return remap(v2, {
|
|
68804
68806
|
requires_approval: "requiresApproval"
|
|
@@ -68806,7 +68808,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68806
68808
|
});
|
|
68807
68809
|
AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema = objectType({
|
|
68808
68810
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
68809
|
-
requiresApproval: booleanType().
|
|
68811
|
+
requiresApproval: booleanType().optional()
|
|
68810
68812
|
}).transform((v2) => {
|
|
68811
68813
|
return remap(v2, {
|
|
68812
68814
|
requiresApproval: "requires_approval"
|
|
@@ -68816,7 +68818,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68816
68818
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema;
|
|
68817
68819
|
AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema = objectType({
|
|
68818
68820
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
68819
|
-
requires_approval: booleanType().
|
|
68821
|
+
requires_approval: booleanType().optional()
|
|
68820
68822
|
}).transform((v2) => {
|
|
68821
68823
|
return remap(v2, {
|
|
68822
68824
|
requires_approval: "requiresApproval"
|
|
@@ -68824,7 +68826,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68824
68826
|
});
|
|
68825
68827
|
AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema = objectType({
|
|
68826
68828
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
68827
|
-
requiresApproval: booleanType().
|
|
68829
|
+
requiresApproval: booleanType().optional()
|
|
68828
68830
|
}).transform((v2) => {
|
|
68829
68831
|
return remap(v2, {
|
|
68830
68832
|
requiresApproval: "requires_approval"
|
|
@@ -68834,7 +68836,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68834
68836
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema;
|
|
68835
68837
|
AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema = objectType({
|
|
68836
68838
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema,
|
|
68837
|
-
requires_approval: booleanType().
|
|
68839
|
+
requires_approval: booleanType().optional()
|
|
68838
68840
|
}).transform((v2) => {
|
|
68839
68841
|
return remap(v2, {
|
|
68840
68842
|
requires_approval: "requiresApproval"
|
|
@@ -68842,7 +68844,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68842
68844
|
});
|
|
68843
68845
|
AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema = objectType({
|
|
68844
68846
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema,
|
|
68845
|
-
requiresApproval: booleanType().
|
|
68847
|
+
requiresApproval: booleanType().optional()
|
|
68846
68848
|
}).transform((v2) => {
|
|
68847
68849
|
return remap(v2, {
|
|
68848
68850
|
requiresApproval: "requires_approval"
|
|
@@ -68852,7 +68854,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68852
68854
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema;
|
|
68853
68855
|
AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema = objectType({
|
|
68854
68856
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
68855
|
-
requires_approval: booleanType().
|
|
68857
|
+
requires_approval: booleanType().optional()
|
|
68856
68858
|
}).transform((v2) => {
|
|
68857
68859
|
return remap(v2, {
|
|
68858
68860
|
requires_approval: "requiresApproval"
|
|
@@ -68860,7 +68862,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68860
68862
|
});
|
|
68861
68863
|
AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema = objectType({
|
|
68862
68864
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
68863
|
-
requiresApproval: booleanType().
|
|
68865
|
+
requiresApproval: booleanType().optional()
|
|
68864
68866
|
}).transform((v2) => {
|
|
68865
68867
|
return remap(v2, {
|
|
68866
68868
|
requiresApproval: "requires_approval"
|
|
@@ -68870,7 +68872,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68870
68872
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema;
|
|
68871
68873
|
AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema = objectType({
|
|
68872
68874
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
68873
|
-
requires_approval: booleanType().
|
|
68875
|
+
requires_approval: booleanType().optional()
|
|
68874
68876
|
}).transform((v2) => {
|
|
68875
68877
|
return remap(v2, {
|
|
68876
68878
|
requires_approval: "requiresApproval"
|
|
@@ -68878,7 +68880,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68878
68880
|
});
|
|
68879
68881
|
AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema = objectType({
|
|
68880
68882
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
68881
|
-
requiresApproval: booleanType().
|
|
68883
|
+
requiresApproval: booleanType().optional()
|
|
68882
68884
|
}).transform((v2) => {
|
|
68883
68885
|
return remap(v2, {
|
|
68884
68886
|
requiresApproval: "requires_approval"
|
|
@@ -68888,7 +68890,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68888
68890
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema;
|
|
68889
68891
|
AgentToolInputCRUDRetrieveAgentsTool$inboundSchema = objectType({
|
|
68890
68892
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
|
|
68891
|
-
requires_approval: booleanType().
|
|
68893
|
+
requires_approval: booleanType().optional()
|
|
68892
68894
|
}).transform((v2) => {
|
|
68893
68895
|
return remap(v2, {
|
|
68894
68896
|
requires_approval: "requiresApproval"
|
|
@@ -68896,7 +68898,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68896
68898
|
});
|
|
68897
68899
|
AgentToolInputCRUDRetrieveAgentsTool$outboundSchema = objectType({
|
|
68898
68900
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
68899
|
-
requiresApproval: booleanType().
|
|
68901
|
+
requiresApproval: booleanType().optional()
|
|
68900
68902
|
}).transform((v2) => {
|
|
68901
68903
|
return remap(v2, {
|
|
68902
68904
|
requiresApproval: "requires_approval"
|
|
@@ -68906,7 +68908,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68906
68908
|
UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema;
|
|
68907
68909
|
AgentToolInputCRUDCallSubAgentTool$inboundSchema = objectType({
|
|
68908
68910
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
|
|
68909
|
-
requires_approval: booleanType().
|
|
68911
|
+
requires_approval: booleanType().optional()
|
|
68910
68912
|
}).transform((v2) => {
|
|
68911
68913
|
return remap(v2, {
|
|
68912
68914
|
requires_approval: "requiresApproval"
|
|
@@ -68914,7 +68916,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68914
68916
|
});
|
|
68915
68917
|
AgentToolInputCRUDCallSubAgentTool$outboundSchema = objectType({
|
|
68916
68918
|
type: UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
68917
|
-
requiresApproval: booleanType().
|
|
68919
|
+
requiresApproval: booleanType().optional()
|
|
68918
68920
|
}).transform((v2) => {
|
|
68919
68921
|
return remap(v2, {
|
|
68920
68922
|
requiresApproval: "requires_approval"
|
|
@@ -68924,7 +68926,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68924
68926
|
UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema;
|
|
68925
68927
|
AgentToolInputCRUDWebScraperTool$inboundSchema = objectType({
|
|
68926
68928
|
type: UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema,
|
|
68927
|
-
requires_approval: booleanType().
|
|
68929
|
+
requires_approval: booleanType().optional()
|
|
68928
68930
|
}).transform((v2) => {
|
|
68929
68931
|
return remap(v2, {
|
|
68930
68932
|
requires_approval: "requiresApproval"
|
|
@@ -68932,7 +68934,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68932
68934
|
});
|
|
68933
68935
|
AgentToolInputCRUDWebScraperTool$outboundSchema = objectType({
|
|
68934
68936
|
type: UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema,
|
|
68935
|
-
requiresApproval: booleanType().
|
|
68937
|
+
requiresApproval: booleanType().optional()
|
|
68936
68938
|
}).transform((v2) => {
|
|
68937
68939
|
return remap(v2, {
|
|
68938
68940
|
requiresApproval: "requires_approval"
|
|
@@ -68942,7 +68944,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68942
68944
|
UpdateAgentAgentToolInputCRUDType$outboundSchema = UpdateAgentAgentToolInputCRUDType$inboundSchema;
|
|
68943
68945
|
AgentToolInputCRUDGoogleSearchTool$inboundSchema = objectType({
|
|
68944
68946
|
type: UpdateAgentAgentToolInputCRUDType$inboundSchema,
|
|
68945
|
-
requires_approval: booleanType().
|
|
68947
|
+
requires_approval: booleanType().optional()
|
|
68946
68948
|
}).transform((v2) => {
|
|
68947
68949
|
return remap(v2, {
|
|
68948
68950
|
requires_approval: "requiresApproval"
|
|
@@ -68950,7 +68952,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
68950
68952
|
});
|
|
68951
68953
|
AgentToolInputCRUDGoogleSearchTool$outboundSchema = objectType({
|
|
68952
68954
|
type: UpdateAgentAgentToolInputCRUDType$outboundSchema,
|
|
68953
|
-
requiresApproval: booleanType().
|
|
68955
|
+
requiresApproval: booleanType().optional()
|
|
68954
68956
|
}).transform((v2) => {
|
|
68955
68957
|
return remap(v2, {
|
|
68956
68958
|
requiresApproval: "requires_approval"
|
|
@@ -69926,7 +69928,7 @@ var init_updatebudget = __esm(() => {
|
|
|
69926
69928
|
is_active: booleanType(),
|
|
69927
69929
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
69928
69930
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
69929
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
69931
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.562Z").transform((v2) => new Date(v2))
|
|
69930
69932
|
}).transform((v2) => {
|
|
69931
69933
|
return remap(v2, {
|
|
69932
69934
|
_id: "id",
|
|
@@ -69944,7 +69946,7 @@ var init_updatebudget = __esm(() => {
|
|
|
69944
69946
|
isActive: booleanType(),
|
|
69945
69947
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
69946
69948
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
69947
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
69949
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.562Z")).transform((v2) => v2.toISOString())
|
|
69948
69950
|
}).transform((v2) => {
|
|
69949
69951
|
return remap(v2, {
|
|
69950
69952
|
id: "_id",
|
|
@@ -70099,7 +70101,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70099
70101
|
tags: arrayType(stringType()).optional(),
|
|
70100
70102
|
metadata: recordType(anyType()).optional(),
|
|
70101
70103
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70102
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
70104
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
70103
70105
|
}).transform((v2) => {
|
|
70104
70106
|
return remap(v2, {
|
|
70105
70107
|
_id: "id",
|
|
@@ -70117,7 +70119,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70117
70119
|
tags: arrayType(stringType()).optional(),
|
|
70118
70120
|
metadata: recordType(anyType()).optional(),
|
|
70119
70121
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70120
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
70122
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
70121
70123
|
}).transform((v2) => {
|
|
70122
70124
|
return remap(v2, {
|
|
70123
70125
|
id: "_id",
|
|
@@ -71193,7 +71195,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71193
71195
|
human_review_id: stringType(),
|
|
71194
71196
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
71195
71197
|
reviewed_by_id: stringType(),
|
|
71196
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71198
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.972Z").transform((v2) => new Date(v2)),
|
|
71197
71199
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
71198
71200
|
values: arrayType(stringType())
|
|
71199
71201
|
}).transform((v2) => {
|
|
@@ -71210,7 +71212,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71210
71212
|
humanReviewId: stringType(),
|
|
71211
71213
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
71212
71214
|
reviewedById: stringType(),
|
|
71213
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71215
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.972Z")).transform((v2) => v2.toISOString()),
|
|
71214
71216
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
71215
71217
|
values: arrayType(stringType())
|
|
71216
71218
|
}).transform((v2) => {
|
|
@@ -71233,7 +71235,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71233
71235
|
human_review_id: stringType(),
|
|
71234
71236
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
71235
71237
|
reviewed_by_id: stringType(),
|
|
71236
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71238
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.972Z").transform((v2) => new Date(v2)),
|
|
71237
71239
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
71238
71240
|
value: numberType()
|
|
71239
71241
|
}).transform((v2) => {
|
|
@@ -71250,7 +71252,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71250
71252
|
humanReviewId: stringType(),
|
|
71251
71253
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
71252
71254
|
reviewedById: stringType(),
|
|
71253
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71255
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.972Z")).transform((v2) => v2.toISOString()),
|
|
71254
71256
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
71255
71257
|
value: numberType()
|
|
71256
71258
|
}).transform((v2) => {
|
|
@@ -71273,7 +71275,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71273
71275
|
human_review_id: stringType(),
|
|
71274
71276
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
71275
71277
|
reviewed_by_id: stringType(),
|
|
71276
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
71278
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-10T05:21:48.971Z").transform((v2) => new Date(v2)),
|
|
71277
71279
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
71278
71280
|
value: stringType()
|
|
71279
71281
|
}).transform((v2) => {
|
|
@@ -71290,7 +71292,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71290
71292
|
humanReviewId: stringType(),
|
|
71291
71293
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
71292
71294
|
reviewedById: stringType(),
|
|
71293
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
71295
|
+
reviewedAt: dateType().default(() => new Date("2025-11-10T05:21:48.971Z")).transform((v2) => v2.toISOString()),
|
|
71294
71296
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
71295
71297
|
value: stringType()
|
|
71296
71298
|
}).transform((v2) => {
|
|
@@ -71333,7 +71335,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71333
71335
|
created_by_id: stringType().optional(),
|
|
71334
71336
|
updated_by_id: stringType().optional(),
|
|
71335
71337
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71336
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71338
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
71337
71339
|
}).transform((v2) => {
|
|
71338
71340
|
return remap(v2, {
|
|
71339
71341
|
_id: "id",
|
|
@@ -71367,7 +71369,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71367
71369
|
createdById: stringType().optional(),
|
|
71368
71370
|
updatedById: stringType().optional(),
|
|
71369
71371
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71370
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71372
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
71371
71373
|
}).transform((v2) => {
|
|
71372
71374
|
return remap(v2, {
|
|
71373
71375
|
id: "_id",
|
|
@@ -71451,7 +71453,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71451
71453
|
created_by_id: stringType().optional(),
|
|
71452
71454
|
updated_by_id: stringType().optional(),
|
|
71453
71455
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71454
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71456
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-10T05:21:35.242Z").transform((v2) => new Date(v2))
|
|
71455
71457
|
}).transform((v2) => {
|
|
71456
71458
|
return remap(v2, {
|
|
71457
71459
|
_id: "id",
|
|
@@ -71471,7 +71473,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71471
71473
|
createdById: stringType().optional(),
|
|
71472
71474
|
updatedById: stringType().optional(),
|
|
71473
71475
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71474
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71476
|
+
updated: dateType().default(() => new Date("2025-11-10T05:21:35.242Z")).transform((v2) => v2.toISOString())
|
|
71475
71477
|
}).transform((v2) => {
|
|
71476
71478
|
return remap(v2, {
|
|
71477
71479
|
id: "_id",
|
|
@@ -71535,7 +71537,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71535
71537
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
71536
71538
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
71537
71539
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
71538
|
-
_id: stringType().default("
|
|
71540
|
+
_id: stringType().default("01K9P3D69AYKR7DWGPND3HBNVK"),
|
|
71539
71541
|
display_name: stringType(),
|
|
71540
71542
|
description: stringType().optional(),
|
|
71541
71543
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -71558,7 +71560,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71558
71560
|
});
|
|
71559
71561
|
});
|
|
71560
71562
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
71561
|
-
id: stringType().default("
|
|
71563
|
+
id: stringType().default("01K9P3D69AYKR7DWGPND3HBNVK"),
|
|
71562
71564
|
displayName: stringType(),
|
|
71563
71565
|
description: stringType().optional(),
|
|
71564
71566
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -72303,8 +72305,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72303
72305
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
72304
72306
|
_id: stringType(),
|
|
72305
72307
|
description: stringType(),
|
|
72306
|
-
created: stringType().default("2025-11-
|
|
72307
|
-
updated: stringType().default("2025-11-
|
|
72308
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72309
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72308
72310
|
guardrail_config: unionType([
|
|
72309
72311
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
72310
72312
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -72321,8 +72323,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72321
72323
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
72322
72324
|
id: stringType(),
|
|
72323
72325
|
description: stringType(),
|
|
72324
|
-
created: stringType().default("2025-11-
|
|
72325
|
-
updated: stringType().default("2025-11-
|
|
72326
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72327
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72326
72328
|
guardrailConfig: unionType([
|
|
72327
72329
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
72328
72330
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -72379,8 +72381,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72379
72381
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
72380
72382
|
_id: stringType(),
|
|
72381
72383
|
description: stringType(),
|
|
72382
|
-
created: stringType().default("2025-11-
|
|
72383
|
-
updated: stringType().default("2025-11-
|
|
72384
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72385
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72384
72386
|
guardrail_config: unionType([
|
|
72385
72387
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
72386
72388
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -72399,8 +72401,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72399
72401
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
72400
72402
|
id: stringType(),
|
|
72401
72403
|
description: stringType(),
|
|
72402
|
-
created: stringType().default("2025-11-
|
|
72403
|
-
updated: stringType().default("2025-11-
|
|
72404
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72405
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72404
72406
|
guardrailConfig: unionType([
|
|
72405
72407
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
72406
72408
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -72837,8 +72839,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72837
72839
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
72838
72840
|
_id: stringType(),
|
|
72839
72841
|
description: stringType(),
|
|
72840
|
-
created: stringType().default("2025-11-
|
|
72841
|
-
updated: stringType().default("2025-11-
|
|
72842
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72843
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72842
72844
|
guardrail_config: unionType([
|
|
72843
72845
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
72844
72846
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -72892,8 +72894,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72892
72894
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
72893
72895
|
id: stringType(),
|
|
72894
72896
|
description: stringType(),
|
|
72895
|
-
created: stringType().default("2025-11-
|
|
72896
|
-
updated: stringType().default("2025-11-
|
|
72897
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72898
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72897
72899
|
guardrailConfig: unionType([
|
|
72898
72900
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
72899
72901
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -72985,8 +72987,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72985
72987
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
72986
72988
|
_id: stringType(),
|
|
72987
72989
|
description: stringType(),
|
|
72988
|
-
created: stringType().default("2025-11-
|
|
72989
|
-
updated: stringType().default("2025-11-
|
|
72990
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72991
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
72990
72992
|
guardrail_config: unionType([
|
|
72991
72993
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
72992
72994
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -73003,8 +73005,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73003
73005
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
73004
73006
|
id: stringType(),
|
|
73005
73007
|
description: stringType(),
|
|
73006
|
-
created: stringType().default("2025-11-
|
|
73007
|
-
updated: stringType().default("2025-11-
|
|
73008
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73009
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73008
73010
|
guardrailConfig: unionType([
|
|
73009
73011
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
73010
73012
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -73061,8 +73063,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73061
73063
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
73062
73064
|
_id: stringType(),
|
|
73063
73065
|
description: stringType(),
|
|
73064
|
-
created: stringType().default("2025-11-
|
|
73065
|
-
updated: stringType().default("2025-11-
|
|
73066
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73067
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73066
73068
|
guardrail_config: unionType([
|
|
73067
73069
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
73068
73070
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -73082,8 +73084,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73082
73084
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
73083
73085
|
id: stringType(),
|
|
73084
73086
|
description: stringType(),
|
|
73085
|
-
created: stringType().default("2025-11-
|
|
73086
|
-
updated: stringType().default("2025-11-
|
|
73087
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73088
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73087
73089
|
guardrailConfig: unionType([
|
|
73088
73090
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
73089
73091
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -73141,8 +73143,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73141
73143
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
73142
73144
|
_id: stringType(),
|
|
73143
73145
|
description: stringType(),
|
|
73144
|
-
created: stringType().default("2025-11-
|
|
73145
|
-
updated: stringType().default("2025-11-
|
|
73146
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73147
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73146
73148
|
guardrail_config: unionType([
|
|
73147
73149
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
73148
73150
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -73159,8 +73161,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73159
73161
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
73160
73162
|
id: stringType(),
|
|
73161
73163
|
description: stringType(),
|
|
73162
|
-
created: stringType().default("2025-11-
|
|
73163
|
-
updated: stringType().default("2025-11-
|
|
73164
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73165
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73164
73166
|
guardrailConfig: unionType([
|
|
73165
73167
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
73166
73168
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -73215,8 +73217,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73215
73217
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
73216
73218
|
_id: stringType(),
|
|
73217
73219
|
description: stringType(),
|
|
73218
|
-
created: stringType().default("2025-11-
|
|
73219
|
-
updated: stringType().default("2025-11-
|
|
73220
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73221
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73220
73222
|
guardrail_config: unionType([
|
|
73221
73223
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
73222
73224
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -73234,8 +73236,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73234
73236
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
73235
73237
|
id: stringType(),
|
|
73236
73238
|
description: stringType(),
|
|
73237
|
-
created: stringType().default("2025-11-
|
|
73238
|
-
updated: stringType().default("2025-11-
|
|
73239
|
+
created: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73240
|
+
updated: stringType().default("2025-11-10T05:21:37.815Z"),
|
|
73239
73241
|
guardrailConfig: unionType([
|
|
73240
73242
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
73241
73243
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -76447,7 +76449,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76447
76449
|
code: stringType()
|
|
76448
76450
|
});
|
|
76449
76451
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
76450
|
-
_id: stringType().default("
|
|
76452
|
+
_id: stringType().default("01K9P3D65HPKPQZ7MZ2ZGYJWPV"),
|
|
76451
76453
|
path: stringType(),
|
|
76452
76454
|
key: stringType(),
|
|
76453
76455
|
display_name: stringType().optional(),
|
|
@@ -76475,7 +76477,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76475
76477
|
});
|
|
76476
76478
|
});
|
|
76477
76479
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
76478
|
-
id: stringType().default("
|
|
76480
|
+
id: stringType().default("01K9P3D65HPKPQZ7MZ2ZGYJWPV"),
|
|
76479
76481
|
path: stringType(),
|
|
76480
76482
|
key: stringType(),
|
|
76481
76483
|
displayName: stringType().optional(),
|
|
@@ -76561,7 +76563,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76561
76563
|
});
|
|
76562
76564
|
});
|
|
76563
76565
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
76564
|
-
_id: stringType().default("
|
|
76566
|
+
_id: stringType().default("01K9P3D65FF0KDXVR4SB11WNNH"),
|
|
76565
76567
|
path: stringType(),
|
|
76566
76568
|
key: stringType(),
|
|
76567
76569
|
display_name: stringType().optional(),
|
|
@@ -76588,7 +76590,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76588
76590
|
});
|
|
76589
76591
|
});
|
|
76590
76592
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
76591
|
-
id: stringType().default("
|
|
76593
|
+
id: stringType().default("01K9P3D65FF0KDXVR4SB11WNNH"),
|
|
76592
76594
|
path: stringType(),
|
|
76593
76595
|
key: stringType(),
|
|
76594
76596
|
displayName: stringType().optional(),
|
|
@@ -76667,7 +76669,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76667
76669
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
76668
76670
|
});
|
|
76669
76671
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
76670
|
-
_id: stringType().default("
|
|
76672
|
+
_id: stringType().default("01K9P3D65DJRH7KTX4Q4E3YH7Q"),
|
|
76671
76673
|
path: stringType(),
|
|
76672
76674
|
key: stringType(),
|
|
76673
76675
|
display_name: stringType().optional(),
|
|
@@ -76694,7 +76696,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76694
76696
|
});
|
|
76695
76697
|
});
|
|
76696
76698
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
76697
|
-
id: stringType().default("
|
|
76699
|
+
id: stringType().default("01K9P3D65DJRH7KTX4Q4E3YH7Q"),
|
|
76698
76700
|
path: stringType(),
|
|
76699
76701
|
key: stringType(),
|
|
76700
76702
|
displayName: stringType().optional(),
|
|
@@ -76737,7 +76739,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76737
76739
|
strict: booleanType().optional()
|
|
76738
76740
|
});
|
|
76739
76741
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
76740
|
-
_id: stringType().default("
|
|
76742
|
+
_id: stringType().default("01K9P3D65BR1QZ0RHZ1PB5RW93"),
|
|
76741
76743
|
path: stringType(),
|
|
76742
76744
|
key: stringType(),
|
|
76743
76745
|
display_name: stringType().optional(),
|
|
@@ -76765,7 +76767,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76765
76767
|
});
|
|
76766
76768
|
});
|
|
76767
76769
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
76768
|
-
id: stringType().default("
|
|
76770
|
+
id: stringType().default("01K9P3D65BR1QZ0RHZ1PB5RW93"),
|
|
76769
76771
|
path: stringType(),
|
|
76770
76772
|
key: stringType(),
|
|
76771
76773
|
displayName: stringType().optional(),
|
|
@@ -76809,7 +76811,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76809
76811
|
parameters: recordType(anyType()).optional()
|
|
76810
76812
|
});
|
|
76811
76813
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
76812
|
-
_id: stringType().default("
|
|
76814
|
+
_id: stringType().default("01K9P3D658S1A3NGKTNE3YQW69"),
|
|
76813
76815
|
path: stringType(),
|
|
76814
76816
|
key: stringType(),
|
|
76815
76817
|
display_name: stringType().optional(),
|
|
@@ -76836,7 +76838,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76836
76838
|
});
|
|
76837
76839
|
});
|
|
76838
76840
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
76839
|
-
id: stringType().default("
|
|
76841
|
+
id: stringType().default("01K9P3D658S1A3NGKTNE3YQW69"),
|
|
76840
76842
|
path: stringType(),
|
|
76841
76843
|
key: stringType(),
|
|
76842
76844
|
displayName: stringType().optional(),
|
|
@@ -89083,7 +89085,7 @@ Updates a tool in the workspace.`,
|
|
|
89083
89085
|
function createMCPServer(deps) {
|
|
89084
89086
|
const server = new McpServer({
|
|
89085
89087
|
name: "Orq",
|
|
89086
|
-
version: "4.0.0-rc.
|
|
89088
|
+
version: "4.0.0-rc.18"
|
|
89087
89089
|
});
|
|
89088
89090
|
const client = new OrqCore({
|
|
89089
89091
|
apiKey: deps.apiKey,
|
|
@@ -90499,7 +90501,7 @@ var routes = rn({
|
|
|
90499
90501
|
var app = Ve(routes, {
|
|
90500
90502
|
name: "mcp",
|
|
90501
90503
|
versionInfo: {
|
|
90502
|
-
currentVersion: "4.0.0-rc.
|
|
90504
|
+
currentVersion: "4.0.0-rc.18"
|
|
90503
90505
|
}
|
|
90504
90506
|
});
|
|
90505
90507
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -90507,5 +90509,5 @@ export {
|
|
|
90507
90509
|
app
|
|
90508
90510
|
};
|
|
90509
90511
|
|
|
90510
|
-
//# debugId=
|
|
90512
|
+
//# debugId=45DD335F03DAEBDA64756E2164756E21
|
|
90511
90513
|
//# sourceMappingURL=mcp-server.js.map
|