@orq-ai/node 4.1.6 → 4.1.7
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 +219 -219
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +164 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagents.ts +84 -1
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +89 -1
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +85 -3
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +89 -3
- package/packages/orq-rc/src/models/operations/updateagent.ts +169 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
package/bin/mcp-server.js
CHANGED
|
@@ -52449,9 +52449,9 @@ var init_config = __esm(() => {
|
|
|
52449
52449
|
SDK_METADATA = {
|
|
52450
52450
|
language: "typescript",
|
|
52451
52451
|
openapiDocVersion: "2.0",
|
|
52452
|
-
sdkVersion: "4.1.
|
|
52452
|
+
sdkVersion: "4.1.7",
|
|
52453
52453
|
genVersion: "2.791.1",
|
|
52454
|
-
userAgent: "speakeasy-sdk/typescript 4.1.
|
|
52454
|
+
userAgent: "speakeasy-sdk/typescript 4.1.7 2.791.1 2.0 @orq-ai/node"
|
|
52455
52455
|
};
|
|
52456
52456
|
});
|
|
52457
52457
|
|
|
@@ -56338,7 +56338,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
56338
56338
|
entityId: stringType().optional()
|
|
56339
56339
|
});
|
|
56340
56340
|
ConversationResponse$inboundSchema = objectType({
|
|
56341
|
-
_id: stringType().default("
|
|
56341
|
+
_id: stringType().default("conv_01kecfq79c0c4vt2q5zth6y0nf"),
|
|
56342
56342
|
entityId: stringType(),
|
|
56343
56343
|
kind: ConversationResponseKind$inboundSchema,
|
|
56344
56344
|
displayName: stringType(),
|
|
@@ -56353,7 +56353,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
56353
56353
|
});
|
|
56354
56354
|
});
|
|
56355
56355
|
ConversationResponse$outboundSchema = objectType({
|
|
56356
|
-
id: stringType().default("
|
|
56356
|
+
id: stringType().default("conv_01kecfq79c0c4vt2q5zth6y0nf"),
|
|
56357
56357
|
entityId: stringType(),
|
|
56358
56358
|
kind: ConversationResponseKind$outboundSchema,
|
|
56359
56359
|
displayName: stringType(),
|
|
@@ -57847,7 +57847,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57847
57847
|
init_esm();
|
|
57848
57848
|
init_primitives();
|
|
57849
57849
|
ReasoningPart$inboundSchema = objectType({
|
|
57850
|
-
_id: stringType().default("
|
|
57850
|
+
_id: stringType().default("reasoning_01kecfq70mdesr2s3v7v21mjdy"),
|
|
57851
57851
|
metadata: recordType(anyType()).optional(),
|
|
57852
57852
|
kind: literalType("reasoning"),
|
|
57853
57853
|
reasoning: stringType(),
|
|
@@ -57858,7 +57858,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57858
57858
|
});
|
|
57859
57859
|
});
|
|
57860
57860
|
ReasoningPart$outboundSchema = objectType({
|
|
57861
|
-
id: stringType().default("
|
|
57861
|
+
id: stringType().default("reasoning_01kecfq70mdesr2s3v7v21mjdy"),
|
|
57862
57862
|
metadata: recordType(anyType()).optional(),
|
|
57863
57863
|
kind: literalType("reasoning"),
|
|
57864
57864
|
reasoning: stringType(),
|
|
@@ -57928,7 +57928,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57928
57928
|
PartKind$inboundSchema = nativeEnumType(PartKind);
|
|
57929
57929
|
PartKind$outboundSchema = PartKind$inboundSchema;
|
|
57930
57930
|
PartReasoningPart$inboundSchema = objectType({
|
|
57931
|
-
_id: stringType().default("
|
|
57931
|
+
_id: stringType().default("reasoning_01kecfq70vyt8pzz30v1nr6s8g"),
|
|
57932
57932
|
metadata: recordType(anyType()).optional(),
|
|
57933
57933
|
kind: PartKind$inboundSchema,
|
|
57934
57934
|
reasoning: stringType(),
|
|
@@ -57939,7 +57939,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57939
57939
|
});
|
|
57940
57940
|
});
|
|
57941
57941
|
PartReasoningPart$outboundSchema = objectType({
|
|
57942
|
-
id: stringType().default("
|
|
57942
|
+
id: stringType().default("reasoning_01kecfq70vyt8pzz30v1nr6s8g"),
|
|
57943
57943
|
metadata: recordType(anyType()).optional(),
|
|
57944
57944
|
kind: PartKind$outboundSchema,
|
|
57945
57945
|
reasoning: stringType(),
|
|
@@ -63305,7 +63305,7 @@ var init_createcontact = __esm(() => {
|
|
|
63305
63305
|
tags: arrayType(stringType()).optional(),
|
|
63306
63306
|
metadata: recordType(anyType()).optional(),
|
|
63307
63307
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63308
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63308
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
63309
63309
|
}).transform((v2) => {
|
|
63310
63310
|
return remap(v2, {
|
|
63311
63311
|
_id: "id",
|
|
@@ -63325,7 +63325,7 @@ var init_createcontact = __esm(() => {
|
|
|
63325
63325
|
tags: arrayType(stringType()).optional(),
|
|
63326
63326
|
metadata: recordType(anyType()).optional(),
|
|
63327
63327
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63328
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63328
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
63329
63329
|
}).transform((v2) => {
|
|
63330
63330
|
return remap(v2, {
|
|
63331
63331
|
id: "_id",
|
|
@@ -63372,7 +63372,7 @@ var init_createconversation = __esm(() => {
|
|
|
63372
63372
|
entityId: stringType().optional()
|
|
63373
63373
|
});
|
|
63374
63374
|
CreateConversationResponseBody$inboundSchema = objectType({
|
|
63375
|
-
_id: stringType().default("
|
|
63375
|
+
_id: stringType().default("conv_01kecfq79e981a0tj7ypef2vq1"),
|
|
63376
63376
|
entityId: stringType(),
|
|
63377
63377
|
kind: CreateConversationKind$inboundSchema,
|
|
63378
63378
|
displayName: stringType(),
|
|
@@ -63387,7 +63387,7 @@ var init_createconversation = __esm(() => {
|
|
|
63387
63387
|
});
|
|
63388
63388
|
});
|
|
63389
63389
|
CreateConversationResponseBody$outboundSchema = objectType({
|
|
63390
|
-
id: stringType().default("
|
|
63390
|
+
id: stringType().default("conv_01kecfq79e981a0tj7ypef2vq1"),
|
|
63391
63391
|
entityId: stringType(),
|
|
63392
63392
|
kind: CreateConversationKind$outboundSchema,
|
|
63393
63393
|
displayName: stringType(),
|
|
@@ -63451,7 +63451,7 @@ var init_createdataset = __esm(() => {
|
|
|
63451
63451
|
created_by_id: stringType().optional(),
|
|
63452
63452
|
updated_by_id: stringType().optional(),
|
|
63453
63453
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63454
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63454
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
63455
63455
|
}).transform((v2) => {
|
|
63456
63456
|
return remap(v2, {
|
|
63457
63457
|
_id: "id",
|
|
@@ -63471,7 +63471,7 @@ var init_createdataset = __esm(() => {
|
|
|
63471
63471
|
createdById: stringType().optional(),
|
|
63472
63472
|
updatedById: stringType().optional(),
|
|
63473
63473
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63474
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63474
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
63475
63475
|
}).transform((v2) => {
|
|
63476
63476
|
return remap(v2, {
|
|
63477
63477
|
id: "_id",
|
|
@@ -64207,7 +64207,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64207
64207
|
human_review_id: stringType(),
|
|
64208
64208
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
64209
64209
|
reviewed_by_id: stringType(),
|
|
64210
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64210
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.862Z").transform((v2) => new Date(v2)),
|
|
64211
64211
|
type: literalType("string_array"),
|
|
64212
64212
|
values: arrayType(stringType())
|
|
64213
64213
|
}).transform((v2) => {
|
|
@@ -64224,7 +64224,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64224
64224
|
humanReviewId: stringType(),
|
|
64225
64225
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
64226
64226
|
reviewedById: stringType(),
|
|
64227
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64227
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.862Z")).transform((v2) => v2.toISOString()),
|
|
64228
64228
|
type: literalType("string_array"),
|
|
64229
64229
|
values: arrayType(stringType())
|
|
64230
64230
|
}).transform((v2) => {
|
|
@@ -64245,7 +64245,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64245
64245
|
human_review_id: stringType(),
|
|
64246
64246
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
64247
64247
|
reviewed_by_id: stringType(),
|
|
64248
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64248
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.862Z").transform((v2) => new Date(v2)),
|
|
64249
64249
|
type: literalType("number"),
|
|
64250
64250
|
value: numberType()
|
|
64251
64251
|
}).transform((v2) => {
|
|
@@ -64262,7 +64262,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64262
64262
|
humanReviewId: stringType(),
|
|
64263
64263
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
64264
64264
|
reviewedById: stringType(),
|
|
64265
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64265
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.862Z")).transform((v2) => v2.toISOString()),
|
|
64266
64266
|
type: literalType("number"),
|
|
64267
64267
|
value: numberType()
|
|
64268
64268
|
}).transform((v2) => {
|
|
@@ -64283,7 +64283,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64283
64283
|
human_review_id: stringType(),
|
|
64284
64284
|
source: Source$inboundSchema.default("orq"),
|
|
64285
64285
|
reviewed_by_id: stringType(),
|
|
64286
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64286
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.861Z").transform((v2) => new Date(v2)),
|
|
64287
64287
|
type: literalType("string"),
|
|
64288
64288
|
value: stringType()
|
|
64289
64289
|
}).transform((v2) => {
|
|
@@ -64300,7 +64300,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64300
64300
|
humanReviewId: stringType(),
|
|
64301
64301
|
source: Source$outboundSchema.default("orq"),
|
|
64302
64302
|
reviewedById: stringType(),
|
|
64303
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64303
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.861Z")).transform((v2) => v2.toISOString()),
|
|
64304
64304
|
type: literalType("string"),
|
|
64305
64305
|
value: stringType()
|
|
64306
64306
|
}).transform((v2) => {
|
|
@@ -64343,7 +64343,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64343
64343
|
created_by_id: stringType().optional(),
|
|
64344
64344
|
updated_by_id: stringType().optional(),
|
|
64345
64345
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64346
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
64346
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
64347
64347
|
}).transform((v2) => {
|
|
64348
64348
|
return remap(v2, {
|
|
64349
64349
|
_id: "id",
|
|
@@ -64377,7 +64377,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64377
64377
|
createdById: stringType().optional(),
|
|
64378
64378
|
updatedById: stringType().optional(),
|
|
64379
64379
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64380
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
64380
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
64381
64381
|
}).transform((v2) => {
|
|
64382
64382
|
return remap(v2, {
|
|
64383
64383
|
id: "_id",
|
|
@@ -64546,7 +64546,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64546
64546
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
64547
64547
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
64548
64548
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
64549
|
-
_id: stringType().default("
|
|
64549
|
+
_id: stringType().default("01KECFQ7QG8SS7ZHEWAF2H41FF"),
|
|
64550
64550
|
display_name: stringType(),
|
|
64551
64551
|
description: stringType().optional(),
|
|
64552
64552
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -64569,7 +64569,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64569
64569
|
});
|
|
64570
64570
|
});
|
|
64571
64571
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
64572
|
-
id: stringType().default("
|
|
64572
|
+
id: stringType().default("01KECFQ7QG8SS7ZHEWAF2H41FF"),
|
|
64573
64573
|
displayName: stringType(),
|
|
64574
64574
|
description: stringType().optional(),
|
|
64575
64575
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -65156,8 +65156,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65156
65156
|
Typescript$inboundSchema = objectType({
|
|
65157
65157
|
_id: stringType(),
|
|
65158
65158
|
description: stringType(),
|
|
65159
|
-
created: stringType().default("2026-01-
|
|
65160
|
-
updated: stringType().default("2026-01-
|
|
65159
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65160
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65161
65161
|
guardrail_config: unionType([
|
|
65162
65162
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
65163
65163
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -65174,8 +65174,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65174
65174
|
Typescript$outboundSchema = objectType({
|
|
65175
65175
|
id: stringType(),
|
|
65176
65176
|
description: stringType(),
|
|
65177
|
-
created: stringType().default("2026-01-
|
|
65178
|
-
updated: stringType().default("2026-01-
|
|
65177
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65178
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65179
65179
|
guardrailConfig: unionType([
|
|
65180
65180
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
65181
65181
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -65246,8 +65246,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65246
65246
|
Ragas$inboundSchema = objectType({
|
|
65247
65247
|
_id: stringType(),
|
|
65248
65248
|
description: stringType(),
|
|
65249
|
-
created: stringType().default("2026-01-
|
|
65250
|
-
updated: stringType().default("2026-01-
|
|
65249
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65250
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65251
65251
|
guardrail_config: unionType([
|
|
65252
65252
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
65253
65253
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -65266,8 +65266,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65266
65266
|
Ragas$outboundSchema = objectType({
|
|
65267
65267
|
id: stringType(),
|
|
65268
65268
|
description: stringType(),
|
|
65269
|
-
created: stringType().default("2026-01-
|
|
65270
|
-
updated: stringType().default("2026-01-
|
|
65269
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65270
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65271
65271
|
guardrailConfig: unionType([
|
|
65272
65272
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
65273
65273
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -65622,8 +65622,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65622
65622
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
65623
65623
|
_id: stringType(),
|
|
65624
65624
|
description: stringType(),
|
|
65625
|
-
created: stringType().default("2026-01-
|
|
65626
|
-
updated: stringType().default("2026-01-
|
|
65625
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65626
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65627
65627
|
guardrail_config: unionType([
|
|
65628
65628
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
65629
65629
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -65674,8 +65674,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65674
65674
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
65675
65675
|
id: stringType(),
|
|
65676
65676
|
description: stringType(),
|
|
65677
|
-
created: stringType().default("2026-01-
|
|
65678
|
-
updated: stringType().default("2026-01-
|
|
65677
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65678
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65679
65679
|
guardrailConfig: unionType([
|
|
65680
65680
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
65681
65681
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -65778,8 +65778,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65778
65778
|
ResponseBodyPython$inboundSchema = objectType({
|
|
65779
65779
|
_id: stringType(),
|
|
65780
65780
|
description: stringType(),
|
|
65781
|
-
created: stringType().default("2026-01-
|
|
65782
|
-
updated: stringType().default("2026-01-
|
|
65781
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65782
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65783
65783
|
guardrail_config: unionType([
|
|
65784
65784
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
65785
65785
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -65796,8 +65796,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65796
65796
|
ResponseBodyPython$outboundSchema = objectType({
|
|
65797
65797
|
id: stringType(),
|
|
65798
65798
|
description: stringType(),
|
|
65799
|
-
created: stringType().default("2026-01-
|
|
65800
|
-
updated: stringType().default("2026-01-
|
|
65799
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65800
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65801
65801
|
guardrailConfig: unionType([
|
|
65802
65802
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
65803
65803
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -65868,8 +65868,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65868
65868
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
65869
65869
|
_id: stringType(),
|
|
65870
65870
|
description: stringType(),
|
|
65871
|
-
created: stringType().default("2026-01-
|
|
65872
|
-
updated: stringType().default("2026-01-
|
|
65871
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65872
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65873
65873
|
guardrail_config: unionType([
|
|
65874
65874
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
65875
65875
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -65889,8 +65889,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65889
65889
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
65890
65890
|
id: stringType(),
|
|
65891
65891
|
description: stringType(),
|
|
65892
|
-
created: stringType().default("2026-01-
|
|
65893
|
-
updated: stringType().default("2026-01-
|
|
65892
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65893
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65894
65894
|
guardrailConfig: unionType([
|
|
65895
65895
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
65896
65896
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -65962,8 +65962,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65962
65962
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
65963
65963
|
_id: stringType(),
|
|
65964
65964
|
description: stringType(),
|
|
65965
|
-
created: stringType().default("2026-01-
|
|
65966
|
-
updated: stringType().default("2026-01-
|
|
65965
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65966
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65967
65967
|
guardrail_config: unionType([
|
|
65968
65968
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
65969
65969
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -65980,8 +65980,8 @@ var init_createeval2 = __esm(() => {
|
|
|
65980
65980
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
65981
65981
|
id: stringType(),
|
|
65982
65982
|
description: stringType(),
|
|
65983
|
-
created: stringType().default("2026-01-
|
|
65984
|
-
updated: stringType().default("2026-01-
|
|
65983
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65984
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
65985
65985
|
guardrailConfig: unionType([
|
|
65986
65986
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
65987
65987
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -66050,8 +66050,8 @@ var init_createeval2 = __esm(() => {
|
|
|
66050
66050
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
66051
66051
|
_id: stringType(),
|
|
66052
66052
|
description: stringType(),
|
|
66053
|
-
created: stringType().default("2026-01-
|
|
66054
|
-
updated: stringType().default("2026-01-
|
|
66053
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
66054
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
66055
66055
|
guardrail_config: unionType([
|
|
66056
66056
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
66057
66057
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -66069,8 +66069,8 @@ var init_createeval2 = __esm(() => {
|
|
|
66069
66069
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
66070
66070
|
id: stringType(),
|
|
66071
66071
|
description: stringType(),
|
|
66072
|
-
created: stringType().default("2026-01-
|
|
66073
|
-
updated: stringType().default("2026-01-
|
|
66072
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
66073
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
66074
66074
|
guardrailConfig: unionType([
|
|
66075
66075
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
66076
66076
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -68941,7 +68941,7 @@ var init_createtool = __esm(() => {
|
|
|
68941
68941
|
code: stringType()
|
|
68942
68942
|
});
|
|
68943
68943
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
68944
|
-
_id: stringType().default("
|
|
68944
|
+
_id: stringType().default("tool_01KECFQ7HNEMQBT9WYMMMPB6FV"),
|
|
68945
68945
|
path: stringType(),
|
|
68946
68946
|
key: stringType(),
|
|
68947
68947
|
display_name: stringType().optional(),
|
|
@@ -68969,7 +68969,7 @@ var init_createtool = __esm(() => {
|
|
|
68969
68969
|
});
|
|
68970
68970
|
});
|
|
68971
68971
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
68972
|
-
id: stringType().default("
|
|
68972
|
+
id: stringType().default("tool_01KECFQ7HNEMQBT9WYMMMPB6FV"),
|
|
68973
68973
|
path: stringType(),
|
|
68974
68974
|
key: stringType(),
|
|
68975
68975
|
displayName: stringType().optional(),
|
|
@@ -69019,13 +69019,13 @@ var init_createtool = __esm(() => {
|
|
|
69019
69019
|
required: arrayType(stringType()).optional()
|
|
69020
69020
|
});
|
|
69021
69021
|
ResponseBodyTools$inboundSchema = objectType({
|
|
69022
|
-
id: stringType().default("
|
|
69022
|
+
id: stringType().default("01KECFQ7HM0FGA8JD7R8THH8M6"),
|
|
69023
69023
|
name: stringType(),
|
|
69024
69024
|
description: stringType().optional(),
|
|
69025
69025
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
69026
69026
|
});
|
|
69027
69027
|
ResponseBodyTools$outboundSchema = objectType({
|
|
69028
|
-
id: stringType().default("
|
|
69028
|
+
id: stringType().default("01KECFQ7HM0FGA8JD7R8THH8M6"),
|
|
69029
69029
|
name: stringType(),
|
|
69030
69030
|
description: stringType().optional(),
|
|
69031
69031
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -69055,7 +69055,7 @@ var init_createtool = __esm(() => {
|
|
|
69055
69055
|
});
|
|
69056
69056
|
});
|
|
69057
69057
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
69058
|
-
_id: stringType().default("
|
|
69058
|
+
_id: stringType().default("tool_01KECFQ7HJPE2GECBXPRDVG5N5"),
|
|
69059
69059
|
path: stringType(),
|
|
69060
69060
|
key: stringType(),
|
|
69061
69061
|
display_name: stringType().optional(),
|
|
@@ -69082,7 +69082,7 @@ var init_createtool = __esm(() => {
|
|
|
69082
69082
|
});
|
|
69083
69083
|
});
|
|
69084
69084
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
69085
|
-
id: stringType().default("
|
|
69085
|
+
id: stringType().default("tool_01KECFQ7HJPE2GECBXPRDVG5N5"),
|
|
69086
69086
|
path: stringType(),
|
|
69087
69087
|
key: stringType(),
|
|
69088
69088
|
displayName: stringType().optional(),
|
|
@@ -69169,7 +69169,7 @@ var init_createtool = __esm(() => {
|
|
|
69169
69169
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
69170
69170
|
});
|
|
69171
69171
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
69172
|
-
_id: stringType().default("
|
|
69172
|
+
_id: stringType().default("tool_01KECFQ7HFPBC7PMPFN9GCTGNG"),
|
|
69173
69173
|
path: stringType(),
|
|
69174
69174
|
key: stringType(),
|
|
69175
69175
|
display_name: stringType().optional(),
|
|
@@ -69196,7 +69196,7 @@ var init_createtool = __esm(() => {
|
|
|
69196
69196
|
});
|
|
69197
69197
|
});
|
|
69198
69198
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
69199
|
-
id: stringType().default("
|
|
69199
|
+
id: stringType().default("tool_01KECFQ7HFPBC7PMPFN9GCTGNG"),
|
|
69200
69200
|
path: stringType(),
|
|
69201
69201
|
key: stringType(),
|
|
69202
69202
|
displayName: stringType().optional(),
|
|
@@ -69255,7 +69255,7 @@ var init_createtool = __esm(() => {
|
|
|
69255
69255
|
strict: booleanType().optional()
|
|
69256
69256
|
});
|
|
69257
69257
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
69258
|
-
_id: stringType().default("
|
|
69258
|
+
_id: stringType().default("tool_01KECFQ7HCJJ1H1QXSA384VN3A"),
|
|
69259
69259
|
path: stringType(),
|
|
69260
69260
|
key: stringType(),
|
|
69261
69261
|
display_name: stringType().optional(),
|
|
@@ -69283,7 +69283,7 @@ var init_createtool = __esm(() => {
|
|
|
69283
69283
|
});
|
|
69284
69284
|
});
|
|
69285
69285
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
69286
|
-
id: stringType().default("
|
|
69286
|
+
id: stringType().default("tool_01KECFQ7HCJJ1H1QXSA384VN3A"),
|
|
69287
69287
|
path: stringType(),
|
|
69288
69288
|
key: stringType(),
|
|
69289
69289
|
displayName: stringType().optional(),
|
|
@@ -69345,7 +69345,7 @@ var init_createtool = __esm(() => {
|
|
|
69345
69345
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
69346
69346
|
});
|
|
69347
69347
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
69348
|
-
_id: stringType().default("
|
|
69348
|
+
_id: stringType().default("tool_01KECFQ7HAS4E6XAN201MC46X7"),
|
|
69349
69349
|
path: stringType(),
|
|
69350
69350
|
key: stringType(),
|
|
69351
69351
|
display_name: stringType().optional(),
|
|
@@ -69372,7 +69372,7 @@ var init_createtool = __esm(() => {
|
|
|
69372
69372
|
});
|
|
69373
69373
|
});
|
|
69374
69374
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
69375
|
-
id: stringType().default("
|
|
69375
|
+
id: stringType().default("tool_01KECFQ7HAS4E6XAN201MC46X7"),
|
|
69376
69376
|
path: stringType(),
|
|
69377
69377
|
key: stringType(),
|
|
69378
69378
|
displayName: stringType().optional(),
|
|
@@ -74557,7 +74557,7 @@ var init_fileget = __esm(() => {
|
|
|
74557
74557
|
bytes: numberType(),
|
|
74558
74558
|
file_name: stringType(),
|
|
74559
74559
|
workspace_id: stringType(),
|
|
74560
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74560
|
+
created: stringType().datetime({ offset: true }).default("2026-01-07T15:02:56.368Z").transform((v2) => new Date(v2))
|
|
74561
74561
|
}).transform((v2) => {
|
|
74562
74562
|
return remap(v2, {
|
|
74563
74563
|
_id: "id",
|
|
@@ -74573,7 +74573,7 @@ var init_fileget = __esm(() => {
|
|
|
74573
74573
|
bytes: numberType(),
|
|
74574
74574
|
fileName: stringType(),
|
|
74575
74575
|
workspaceId: stringType(),
|
|
74576
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74576
|
+
created: dateType().default(() => new Date("2026-01-07T15:02:56.368Z")).transform((v2) => v2.toISOString())
|
|
74577
74577
|
}).transform((v2) => {
|
|
74578
74578
|
return remap(v2, {
|
|
74579
74579
|
id: "_id",
|
|
@@ -74628,7 +74628,7 @@ var init_filelist = __esm(() => {
|
|
|
74628
74628
|
bytes: numberType(),
|
|
74629
74629
|
file_name: stringType(),
|
|
74630
74630
|
workspace_id: stringType(),
|
|
74631
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74631
|
+
created: stringType().datetime({ offset: true }).default("2026-01-07T15:02:56.368Z").transform((v2) => new Date(v2))
|
|
74632
74632
|
}).transform((v2) => {
|
|
74633
74633
|
return remap(v2, {
|
|
74634
74634
|
_id: "id",
|
|
@@ -74644,7 +74644,7 @@ var init_filelist = __esm(() => {
|
|
|
74644
74644
|
bytes: numberType(),
|
|
74645
74645
|
fileName: stringType(),
|
|
74646
74646
|
workspaceId: stringType(),
|
|
74647
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74647
|
+
created: dateType().default(() => new Date("2026-01-07T15:02:56.368Z")).transform((v2) => v2.toISOString())
|
|
74648
74648
|
}).transform((v2) => {
|
|
74649
74649
|
return remap(v2, {
|
|
74650
74650
|
id: "_id",
|
|
@@ -74752,7 +74752,7 @@ var init_fileupload = __esm(() => {
|
|
|
74752
74752
|
bytes: numberType(),
|
|
74753
74753
|
file_name: stringType(),
|
|
74754
74754
|
workspace_id: stringType(),
|
|
74755
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74755
|
+
created: stringType().datetime({ offset: true }).default("2026-01-07T15:02:56.368Z").transform((v2) => new Date(v2))
|
|
74756
74756
|
}).transform((v2) => {
|
|
74757
74757
|
return remap(v2, {
|
|
74758
74758
|
_id: "id",
|
|
@@ -74768,7 +74768,7 @@ var init_fileupload = __esm(() => {
|
|
|
74768
74768
|
bytes: numberType(),
|
|
74769
74769
|
fileName: stringType(),
|
|
74770
74770
|
workspaceId: stringType(),
|
|
74771
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74771
|
+
created: dateType().default(() => new Date("2026-01-07T15:02:56.368Z")).transform((v2) => v2.toISOString())
|
|
74772
74772
|
}).transform((v2) => {
|
|
74773
74773
|
return remap(v2, {
|
|
74774
74774
|
id: "_id",
|
|
@@ -74822,7 +74822,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
74822
74822
|
entityId: stringType().optional()
|
|
74823
74823
|
});
|
|
74824
74824
|
GenerateConversationNameResponseBody$inboundSchema2 = objectType({
|
|
74825
|
-
_id: stringType().default("
|
|
74825
|
+
_id: stringType().default("conv_01kecfq79gt8ffy8q95ag06mh4"),
|
|
74826
74826
|
entityId: stringType(),
|
|
74827
74827
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
74828
74828
|
displayName: stringType(),
|
|
@@ -74837,7 +74837,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
74837
74837
|
});
|
|
74838
74838
|
});
|
|
74839
74839
|
GenerateConversationNameResponseBody$outboundSchema2 = objectType({
|
|
74840
|
-
id: stringType().default("
|
|
74840
|
+
id: stringType().default("conv_01kecfq79gt8ffy8q95ag06mh4"),
|
|
74841
74841
|
entityId: stringType(),
|
|
74842
74842
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
74843
74843
|
displayName: stringType(),
|
|
@@ -75875,7 +75875,7 @@ var init_getalltools = __esm(() => {
|
|
|
75875
75875
|
code: stringType()
|
|
75876
75876
|
});
|
|
75877
75877
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
75878
|
-
_id: stringType().default("
|
|
75878
|
+
_id: stringType().default("tool_01KECFQ7GRSFND6XTG9KQ6BJBQ"),
|
|
75879
75879
|
path: stringType(),
|
|
75880
75880
|
key: stringType(),
|
|
75881
75881
|
display_name: stringType().optional(),
|
|
@@ -75903,7 +75903,7 @@ var init_getalltools = __esm(() => {
|
|
|
75903
75903
|
});
|
|
75904
75904
|
});
|
|
75905
75905
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
75906
|
-
id: stringType().default("
|
|
75906
|
+
id: stringType().default("tool_01KECFQ7GRSFND6XTG9KQ6BJBQ"),
|
|
75907
75907
|
path: stringType(),
|
|
75908
75908
|
key: stringType(),
|
|
75909
75909
|
displayName: stringType().optional(),
|
|
@@ -75953,13 +75953,13 @@ var init_getalltools = __esm(() => {
|
|
|
75953
75953
|
required: arrayType(stringType()).optional()
|
|
75954
75954
|
});
|
|
75955
75955
|
DataTools$inboundSchema = objectType({
|
|
75956
|
-
id: stringType().default("
|
|
75956
|
+
id: stringType().default("01KECFQ7GQGDM6CPY82N183BYH"),
|
|
75957
75957
|
name: stringType(),
|
|
75958
75958
|
description: stringType().optional(),
|
|
75959
75959
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
75960
75960
|
});
|
|
75961
75961
|
DataTools$outboundSchema = objectType({
|
|
75962
|
-
id: stringType().default("
|
|
75962
|
+
id: stringType().default("01KECFQ7GQGDM6CPY82N183BYH"),
|
|
75963
75963
|
name: stringType(),
|
|
75964
75964
|
description: stringType().optional(),
|
|
75965
75965
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -75989,7 +75989,7 @@ var init_getalltools = __esm(() => {
|
|
|
75989
75989
|
});
|
|
75990
75990
|
});
|
|
75991
75991
|
DataMCPTool$inboundSchema = objectType({
|
|
75992
|
-
_id: stringType().default("
|
|
75992
|
+
_id: stringType().default("tool_01KECFQ7GNEV7DA9MEXR1CCT3P"),
|
|
75993
75993
|
path: stringType(),
|
|
75994
75994
|
key: stringType(),
|
|
75995
75995
|
display_name: stringType().optional(),
|
|
@@ -76016,7 +76016,7 @@ var init_getalltools = __esm(() => {
|
|
|
76016
76016
|
});
|
|
76017
76017
|
});
|
|
76018
76018
|
DataMCPTool$outboundSchema = objectType({
|
|
76019
|
-
id: stringType().default("
|
|
76019
|
+
id: stringType().default("tool_01KECFQ7GNEV7DA9MEXR1CCT3P"),
|
|
76020
76020
|
path: stringType(),
|
|
76021
76021
|
key: stringType(),
|
|
76022
76022
|
displayName: stringType().optional(),
|
|
@@ -76103,7 +76103,7 @@ var init_getalltools = __esm(() => {
|
|
|
76103
76103
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
76104
76104
|
});
|
|
76105
76105
|
DataHTTPTool$inboundSchema = objectType({
|
|
76106
|
-
_id: stringType().default("
|
|
76106
|
+
_id: stringType().default("tool_01KECFQ7GK5XK0JHRXW8REK6PQ"),
|
|
76107
76107
|
path: stringType(),
|
|
76108
76108
|
key: stringType(),
|
|
76109
76109
|
display_name: stringType().optional(),
|
|
@@ -76130,7 +76130,7 @@ var init_getalltools = __esm(() => {
|
|
|
76130
76130
|
});
|
|
76131
76131
|
});
|
|
76132
76132
|
DataHTTPTool$outboundSchema = objectType({
|
|
76133
|
-
id: stringType().default("
|
|
76133
|
+
id: stringType().default("tool_01KECFQ7GK5XK0JHRXW8REK6PQ"),
|
|
76134
76134
|
path: stringType(),
|
|
76135
76135
|
key: stringType(),
|
|
76136
76136
|
displayName: stringType().optional(),
|
|
@@ -76189,7 +76189,7 @@ var init_getalltools = __esm(() => {
|
|
|
76189
76189
|
strict: booleanType().optional()
|
|
76190
76190
|
});
|
|
76191
76191
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
76192
|
-
_id: stringType().default("
|
|
76192
|
+
_id: stringType().default("tool_01KECFQ7GHF44X3TSC2FB3F9GX"),
|
|
76193
76193
|
path: stringType(),
|
|
76194
76194
|
key: stringType(),
|
|
76195
76195
|
display_name: stringType().optional(),
|
|
@@ -76217,7 +76217,7 @@ var init_getalltools = __esm(() => {
|
|
|
76217
76217
|
});
|
|
76218
76218
|
});
|
|
76219
76219
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
76220
|
-
id: stringType().default("
|
|
76220
|
+
id: stringType().default("tool_01KECFQ7GHF44X3TSC2FB3F9GX"),
|
|
76221
76221
|
path: stringType(),
|
|
76222
76222
|
key: stringType(),
|
|
76223
76223
|
displayName: stringType().optional(),
|
|
@@ -76279,7 +76279,7 @@ var init_getalltools = __esm(() => {
|
|
|
76279
76279
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
76280
76280
|
});
|
|
76281
76281
|
DataFunctionTool$inboundSchema = objectType({
|
|
76282
|
-
_id: stringType().default("
|
|
76282
|
+
_id: stringType().default("tool_01KECFQ7GG9BFTPA10C5VD3NTW"),
|
|
76283
76283
|
path: stringType(),
|
|
76284
76284
|
key: stringType(),
|
|
76285
76285
|
display_name: stringType().optional(),
|
|
@@ -76306,7 +76306,7 @@ var init_getalltools = __esm(() => {
|
|
|
76306
76306
|
});
|
|
76307
76307
|
});
|
|
76308
76308
|
DataFunctionTool$outboundSchema = objectType({
|
|
76309
|
-
id: stringType().default("
|
|
76309
|
+
id: stringType().default("tool_01KECFQ7GG9BFTPA10C5VD3NTW"),
|
|
76310
76310
|
path: stringType(),
|
|
76311
76311
|
key: stringType(),
|
|
76312
76312
|
displayName: stringType().optional(),
|
|
@@ -76582,8 +76582,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76582
76582
|
DataTypescript$inboundSchema = objectType({
|
|
76583
76583
|
_id: stringType(),
|
|
76584
76584
|
description: stringType(),
|
|
76585
|
-
created: stringType().default("2026-01-
|
|
76586
|
-
updated: stringType().default("2026-01-
|
|
76585
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76586
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76587
76587
|
guardrail_config: unionType([
|
|
76588
76588
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
76589
76589
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -76600,8 +76600,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76600
76600
|
DataTypescript$outboundSchema = objectType({
|
|
76601
76601
|
id: stringType(),
|
|
76602
76602
|
description: stringType(),
|
|
76603
|
-
created: stringType().default("2026-01-
|
|
76604
|
-
updated: stringType().default("2026-01-
|
|
76603
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76604
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76605
76605
|
guardrailConfig: unionType([
|
|
76606
76606
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
76607
76607
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -76672,8 +76672,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76672
76672
|
DataRagas$inboundSchema = objectType({
|
|
76673
76673
|
_id: stringType(),
|
|
76674
76674
|
description: stringType(),
|
|
76675
|
-
created: stringType().default("2026-01-
|
|
76676
|
-
updated: stringType().default("2026-01-
|
|
76675
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76676
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76677
76677
|
guardrail_config: unionType([
|
|
76678
76678
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
76679
76679
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -76692,8 +76692,8 @@ var init_getevals2 = __esm(() => {
|
|
|
76692
76692
|
DataRagas$outboundSchema = objectType({
|
|
76693
76693
|
id: stringType(),
|
|
76694
76694
|
description: stringType(),
|
|
76695
|
-
created: stringType().default("2026-01-
|
|
76696
|
-
updated: stringType().default("2026-01-
|
|
76695
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76696
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
76697
76697
|
guardrailConfig: unionType([
|
|
76698
76698
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
76699
76699
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -77048,8 +77048,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77048
77048
|
DataFunction$inboundSchema = objectType({
|
|
77049
77049
|
_id: stringType(),
|
|
77050
77050
|
description: stringType(),
|
|
77051
|
-
created: stringType().default("2026-01-
|
|
77052
|
-
updated: stringType().default("2026-01-
|
|
77051
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77052
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77053
77053
|
guardrail_config: unionType([
|
|
77054
77054
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
77055
77055
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -77100,8 +77100,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77100
77100
|
DataFunction$outboundSchema = objectType({
|
|
77101
77101
|
id: stringType(),
|
|
77102
77102
|
description: stringType(),
|
|
77103
|
-
created: stringType().default("2026-01-
|
|
77104
|
-
updated: stringType().default("2026-01-
|
|
77103
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77104
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77105
77105
|
guardrailConfig: unionType([
|
|
77106
77106
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
77107
77107
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -77204,8 +77204,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77204
77204
|
DataPython$inboundSchema = objectType({
|
|
77205
77205
|
_id: stringType(),
|
|
77206
77206
|
description: stringType(),
|
|
77207
|
-
created: stringType().default("2026-01-
|
|
77208
|
-
updated: stringType().default("2026-01-
|
|
77207
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77208
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77209
77209
|
guardrail_config: unionType([
|
|
77210
77210
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
77211
77211
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
|
|
@@ -77222,8 +77222,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77222
77222
|
DataPython$outboundSchema = objectType({
|
|
77223
77223
|
id: stringType(),
|
|
77224
77224
|
description: stringType(),
|
|
77225
|
-
created: stringType().default("2026-01-
|
|
77226
|
-
updated: stringType().default("2026-01-
|
|
77225
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77226
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77227
77227
|
guardrailConfig: unionType([
|
|
77228
77228
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
77229
77229
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
|
|
@@ -77294,8 +77294,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77294
77294
|
DataHTTP$inboundSchema = objectType({
|
|
77295
77295
|
_id: stringType(),
|
|
77296
77296
|
description: stringType(),
|
|
77297
|
-
created: stringType().default("2026-01-
|
|
77298
|
-
updated: stringType().default("2026-01-
|
|
77297
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77298
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77299
77299
|
guardrail_config: unionType([
|
|
77300
77300
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
77301
77301
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
|
|
@@ -77315,8 +77315,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77315
77315
|
DataHTTP$outboundSchema = objectType({
|
|
77316
77316
|
id: stringType(),
|
|
77317
77317
|
description: stringType(),
|
|
77318
|
-
created: stringType().default("2026-01-
|
|
77319
|
-
updated: stringType().default("2026-01-
|
|
77318
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77319
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77320
77320
|
guardrailConfig: unionType([
|
|
77321
77321
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
77322
77322
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
|
|
@@ -77388,8 +77388,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77388
77388
|
DataJSON$inboundSchema = objectType({
|
|
77389
77389
|
_id: stringType(),
|
|
77390
77390
|
description: stringType(),
|
|
77391
|
-
created: stringType().default("2026-01-
|
|
77392
|
-
updated: stringType().default("2026-01-
|
|
77391
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77392
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77393
77393
|
guardrail_config: unionType([
|
|
77394
77394
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
77395
77395
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
|
|
@@ -77406,8 +77406,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77406
77406
|
DataJSON$outboundSchema = objectType({
|
|
77407
77407
|
id: stringType(),
|
|
77408
77408
|
description: stringType(),
|
|
77409
|
-
created: stringType().default("2026-01-
|
|
77410
|
-
updated: stringType().default("2026-01-
|
|
77409
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77410
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77411
77411
|
guardrailConfig: unionType([
|
|
77412
77412
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
77413
77413
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
|
|
@@ -77476,8 +77476,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77476
77476
|
DataLLM$inboundSchema = objectType({
|
|
77477
77477
|
_id: stringType(),
|
|
77478
77478
|
description: stringType(),
|
|
77479
|
-
created: stringType().default("2026-01-
|
|
77480
|
-
updated: stringType().default("2026-01-
|
|
77479
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77480
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77481
77481
|
guardrail_config: unionType([
|
|
77482
77482
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
77483
77483
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -77495,8 +77495,8 @@ var init_getevals2 = __esm(() => {
|
|
|
77495
77495
|
DataLLM$outboundSchema = objectType({
|
|
77496
77496
|
id: stringType(),
|
|
77497
77497
|
description: stringType(),
|
|
77498
|
-
created: stringType().default("2026-01-
|
|
77499
|
-
updated: stringType().default("2026-01-
|
|
77498
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77499
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
77500
77500
|
guardrailConfig: unionType([
|
|
77501
77501
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
77502
77502
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -81271,7 +81271,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81271
81271
|
tags: arrayType(stringType()).optional(),
|
|
81272
81272
|
metadata: recordType(anyType()).optional(),
|
|
81273
81273
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81274
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
81274
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2)),
|
|
81275
81275
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
81276
81276
|
}).transform((v2) => {
|
|
81277
81277
|
return remap(v2, {
|
|
@@ -81290,7 +81290,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81290
81290
|
tags: arrayType(stringType()).optional(),
|
|
81291
81291
|
metadata: recordType(anyType()).optional(),
|
|
81292
81292
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
81293
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
81293
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString()),
|
|
81294
81294
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
81295
81295
|
}).transform((v2) => {
|
|
81296
81296
|
return remap(v2, {
|
|
@@ -81746,7 +81746,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81746
81746
|
human_review_id: stringType(),
|
|
81747
81747
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
81748
81748
|
reviewed_by_id: stringType(),
|
|
81749
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81749
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.816Z").transform((v2) => new Date(v2)),
|
|
81750
81750
|
type: literalType("string_array"),
|
|
81751
81751
|
values: arrayType(stringType())
|
|
81752
81752
|
}).transform((v2) => {
|
|
@@ -81763,7 +81763,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81763
81763
|
humanReviewId: stringType(),
|
|
81764
81764
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
81765
81765
|
reviewedById: stringType(),
|
|
81766
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81766
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.816Z")).transform((v2) => v2.toISOString()),
|
|
81767
81767
|
type: literalType("string_array"),
|
|
81768
81768
|
values: arrayType(stringType())
|
|
81769
81769
|
}).transform((v2) => {
|
|
@@ -81784,7 +81784,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81784
81784
|
human_review_id: stringType(),
|
|
81785
81785
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
81786
81786
|
reviewed_by_id: stringType(),
|
|
81787
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81787
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.815Z").transform((v2) => new Date(v2)),
|
|
81788
81788
|
type: literalType("number"),
|
|
81789
81789
|
value: numberType()
|
|
81790
81790
|
}).transform((v2) => {
|
|
@@ -81801,7 +81801,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81801
81801
|
humanReviewId: stringType(),
|
|
81802
81802
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
81803
81803
|
reviewedById: stringType(),
|
|
81804
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81804
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.815Z")).transform((v2) => v2.toISOString()),
|
|
81805
81805
|
type: literalType("number"),
|
|
81806
81806
|
value: numberType()
|
|
81807
81807
|
}).transform((v2) => {
|
|
@@ -81822,7 +81822,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81822
81822
|
human_review_id: stringType(),
|
|
81823
81823
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
81824
81824
|
reviewed_by_id: stringType(),
|
|
81825
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81825
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.815Z").transform((v2) => new Date(v2)),
|
|
81826
81826
|
type: literalType("string"),
|
|
81827
81827
|
value: stringType()
|
|
81828
81828
|
}).transform((v2) => {
|
|
@@ -81839,7 +81839,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81839
81839
|
humanReviewId: stringType(),
|
|
81840
81840
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
81841
81841
|
reviewedById: stringType(),
|
|
81842
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81842
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.815Z")).transform((v2) => v2.toISOString()),
|
|
81843
81843
|
type: literalType("string"),
|
|
81844
81844
|
value: stringType()
|
|
81845
81845
|
}).transform((v2) => {
|
|
@@ -81882,7 +81882,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81882
81882
|
created_by_id: stringType().optional(),
|
|
81883
81883
|
updated_by_id: stringType().optional(),
|
|
81884
81884
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81885
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
81885
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
81886
81886
|
}).transform((v2) => {
|
|
81887
81887
|
return remap(v2, {
|
|
81888
81888
|
_id: "id",
|
|
@@ -81916,7 +81916,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81916
81916
|
createdById: stringType().optional(),
|
|
81917
81917
|
updatedById: stringType().optional(),
|
|
81918
81918
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
81919
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
81919
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
81920
81920
|
}).transform((v2) => {
|
|
81921
81921
|
return remap(v2, {
|
|
81922
81922
|
id: "_id",
|
|
@@ -82005,7 +82005,7 @@ var init_listdatasets = __esm(() => {
|
|
|
82005
82005
|
created_by_id: stringType().optional(),
|
|
82006
82006
|
updated_by_id: stringType().optional(),
|
|
82007
82007
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
82008
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
82008
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
82009
82009
|
}).transform((v2) => {
|
|
82010
82010
|
return remap(v2, {
|
|
82011
82011
|
_id: "id",
|
|
@@ -82025,7 +82025,7 @@ var init_listdatasets = __esm(() => {
|
|
|
82025
82025
|
createdById: stringType().optional(),
|
|
82026
82026
|
updatedById: stringType().optional(),
|
|
82027
82027
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
82028
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
82028
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
82029
82029
|
}).transform((v2) => {
|
|
82030
82030
|
return remap(v2, {
|
|
82031
82031
|
id: "_id",
|
|
@@ -82106,7 +82106,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82106
82106
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
82107
82107
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
82108
82108
|
ListDatasourcesData$inboundSchema = objectType({
|
|
82109
|
-
_id: stringType().default("
|
|
82109
|
+
_id: stringType().default("01KECFQ7QC7CXBE5KMADRY2XME"),
|
|
82110
82110
|
display_name: stringType(),
|
|
82111
82111
|
description: stringType().optional(),
|
|
82112
82112
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -82129,7 +82129,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82129
82129
|
});
|
|
82130
82130
|
});
|
|
82131
82131
|
ListDatasourcesData$outboundSchema = objectType({
|
|
82132
|
-
id: stringType().default("
|
|
82132
|
+
id: stringType().default("01KECFQ7QC7CXBE5KMADRY2XME"),
|
|
82133
82133
|
displayName: stringType(),
|
|
82134
82134
|
description: stringType().optional(),
|
|
82135
82135
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -84341,7 +84341,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
84341
84341
|
tags: arrayType(stringType()).optional(),
|
|
84342
84342
|
metadata: recordType(anyType()).optional(),
|
|
84343
84343
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84344
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84344
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
84345
84345
|
}).transform((v2) => {
|
|
84346
84346
|
return remap(v2, {
|
|
84347
84347
|
_id: "id",
|
|
@@ -84359,7 +84359,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
84359
84359
|
tags: arrayType(stringType()).optional(),
|
|
84360
84360
|
metadata: recordType(anyType()).optional(),
|
|
84361
84361
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84362
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84362
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
84363
84363
|
}).transform((v2) => {
|
|
84364
84364
|
return remap(v2, {
|
|
84365
84365
|
id: "_id",
|
|
@@ -84403,7 +84403,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
84403
84403
|
entityId: stringType().optional()
|
|
84404
84404
|
});
|
|
84405
84405
|
RetrieveConversationResponseBody$inboundSchema2 = objectType({
|
|
84406
|
-
_id: stringType().default("
|
|
84406
|
+
_id: stringType().default("conv_01kecfq79jhp69py672t3yjdyp"),
|
|
84407
84407
|
entityId: stringType(),
|
|
84408
84408
|
kind: RetrieveConversationKind$inboundSchema,
|
|
84409
84409
|
displayName: stringType(),
|
|
@@ -84418,7 +84418,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
84418
84418
|
});
|
|
84419
84419
|
});
|
|
84420
84420
|
RetrieveConversationResponseBody$outboundSchema2 = objectType({
|
|
84421
|
-
id: stringType().default("
|
|
84421
|
+
id: stringType().default("conv_01kecfq79jhp69py672t3yjdyp"),
|
|
84422
84422
|
entityId: stringType(),
|
|
84423
84423
|
kind: RetrieveConversationKind$outboundSchema,
|
|
84424
84424
|
displayName: stringType(),
|
|
@@ -84808,7 +84808,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84808
84808
|
human_review_id: stringType(),
|
|
84809
84809
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
84810
84810
|
reviewed_by_id: stringType(),
|
|
84811
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84811
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.837Z").transform((v2) => new Date(v2)),
|
|
84812
84812
|
type: literalType("string_array"),
|
|
84813
84813
|
values: arrayType(stringType())
|
|
84814
84814
|
}).transform((v2) => {
|
|
@@ -84825,7 +84825,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84825
84825
|
humanReviewId: stringType(),
|
|
84826
84826
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
84827
84827
|
reviewedById: stringType(),
|
|
84828
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84828
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.837Z")).transform((v2) => v2.toISOString()),
|
|
84829
84829
|
type: literalType("string_array"),
|
|
84830
84830
|
values: arrayType(stringType())
|
|
84831
84831
|
}).transform((v2) => {
|
|
@@ -84846,7 +84846,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84846
84846
|
human_review_id: stringType(),
|
|
84847
84847
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
84848
84848
|
reviewed_by_id: stringType(),
|
|
84849
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84849
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.836Z").transform((v2) => new Date(v2)),
|
|
84850
84850
|
type: literalType("number"),
|
|
84851
84851
|
value: numberType()
|
|
84852
84852
|
}).transform((v2) => {
|
|
@@ -84863,7 +84863,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84863
84863
|
humanReviewId: stringType(),
|
|
84864
84864
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
84865
84865
|
reviewedById: stringType(),
|
|
84866
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84866
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.836Z")).transform((v2) => v2.toISOString()),
|
|
84867
84867
|
type: literalType("number"),
|
|
84868
84868
|
value: numberType()
|
|
84869
84869
|
}).transform((v2) => {
|
|
@@ -84884,7 +84884,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84884
84884
|
human_review_id: stringType(),
|
|
84885
84885
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
84886
84886
|
reviewed_by_id: stringType(),
|
|
84887
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84887
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.826Z").transform((v2) => new Date(v2)),
|
|
84888
84888
|
type: literalType("string"),
|
|
84889
84889
|
value: stringType()
|
|
84890
84890
|
}).transform((v2) => {
|
|
@@ -84901,7 +84901,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84901
84901
|
humanReviewId: stringType(),
|
|
84902
84902
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
84903
84903
|
reviewedById: stringType(),
|
|
84904
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84904
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.826Z")).transform((v2) => v2.toISOString()),
|
|
84905
84905
|
type: literalType("string"),
|
|
84906
84906
|
value: stringType()
|
|
84907
84907
|
}).transform((v2) => {
|
|
@@ -84944,7 +84944,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84944
84944
|
created_by_id: stringType().optional(),
|
|
84945
84945
|
updated_by_id: stringType().optional(),
|
|
84946
84946
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84947
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84947
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
84948
84948
|
}).transform((v2) => {
|
|
84949
84949
|
return remap(v2, {
|
|
84950
84950
|
_id: "id",
|
|
@@ -84978,7 +84978,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84978
84978
|
createdById: stringType().optional(),
|
|
84979
84979
|
updatedById: stringType().optional(),
|
|
84980
84980
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84981
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84981
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
84982
84982
|
}).transform((v2) => {
|
|
84983
84983
|
return remap(v2, {
|
|
84984
84984
|
id: "_id",
|
|
@@ -85038,7 +85038,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85038
85038
|
created_by_id: stringType().optional(),
|
|
85039
85039
|
updated_by_id: stringType().optional(),
|
|
85040
85040
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
85041
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
85041
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
85042
85042
|
}).transform((v2) => {
|
|
85043
85043
|
return remap(v2, {
|
|
85044
85044
|
_id: "id",
|
|
@@ -85058,7 +85058,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85058
85058
|
createdById: stringType().optional(),
|
|
85059
85059
|
updatedById: stringType().optional(),
|
|
85060
85060
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
85061
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
85061
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
85062
85062
|
}).transform((v2) => {
|
|
85063
85063
|
return remap(v2, {
|
|
85064
85064
|
id: "_id",
|
|
@@ -85104,7 +85104,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85104
85104
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
85105
85105
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
85106
85106
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
85107
|
-
_id: stringType().default("
|
|
85107
|
+
_id: stringType().default("01KECFQ7QE2X3CJ16JBGRPQS2D"),
|
|
85108
85108
|
display_name: stringType(),
|
|
85109
85109
|
description: stringType().optional(),
|
|
85110
85110
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -85127,7 +85127,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85127
85127
|
});
|
|
85128
85128
|
});
|
|
85129
85129
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
85130
|
-
id: stringType().default("
|
|
85130
|
+
id: stringType().default("01KECFQ7QE2X3CJ16JBGRPQS2D"),
|
|
85131
85131
|
displayName: stringType(),
|
|
85132
85132
|
description: stringType().optional(),
|
|
85133
85133
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -85466,7 +85466,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85466
85466
|
code: stringType()
|
|
85467
85467
|
});
|
|
85468
85468
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
85469
|
-
_id: stringType().default("
|
|
85469
|
+
_id: stringType().default("tool_01KECFQ7KBXTSJ8ZQ8A0DT259K"),
|
|
85470
85470
|
path: stringType(),
|
|
85471
85471
|
key: stringType(),
|
|
85472
85472
|
display_name: stringType().optional(),
|
|
@@ -85494,7 +85494,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85494
85494
|
});
|
|
85495
85495
|
});
|
|
85496
85496
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
85497
|
-
id: stringType().default("
|
|
85497
|
+
id: stringType().default("tool_01KECFQ7KBXTSJ8ZQ8A0DT259K"),
|
|
85498
85498
|
path: stringType(),
|
|
85499
85499
|
key: stringType(),
|
|
85500
85500
|
displayName: stringType().optional(),
|
|
@@ -85544,13 +85544,13 @@ var init_retrievetool = __esm(() => {
|
|
|
85544
85544
|
required: arrayType(stringType()).optional()
|
|
85545
85545
|
});
|
|
85546
85546
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
85547
|
-
id: stringType().default("
|
|
85547
|
+
id: stringType().default("01KECFQ7KAN1D2HNHF6982QPGQ"),
|
|
85548
85548
|
name: stringType(),
|
|
85549
85549
|
description: stringType().optional(),
|
|
85550
85550
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
85551
85551
|
});
|
|
85552
85552
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
85553
|
-
id: stringType().default("
|
|
85553
|
+
id: stringType().default("01KECFQ7KAN1D2HNHF6982QPGQ"),
|
|
85554
85554
|
name: stringType(),
|
|
85555
85555
|
description: stringType().optional(),
|
|
85556
85556
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -85580,7 +85580,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85580
85580
|
});
|
|
85581
85581
|
});
|
|
85582
85582
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
85583
|
-
_id: stringType().default("
|
|
85583
|
+
_id: stringType().default("tool_01KECFQ7K9JD7YD2KJAK8FGKGN"),
|
|
85584
85584
|
path: stringType(),
|
|
85585
85585
|
key: stringType(),
|
|
85586
85586
|
display_name: stringType().optional(),
|
|
@@ -85607,7 +85607,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85607
85607
|
});
|
|
85608
85608
|
});
|
|
85609
85609
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
85610
|
-
id: stringType().default("
|
|
85610
|
+
id: stringType().default("tool_01KECFQ7K9JD7YD2KJAK8FGKGN"),
|
|
85611
85611
|
path: stringType(),
|
|
85612
85612
|
key: stringType(),
|
|
85613
85613
|
displayName: stringType().optional(),
|
|
@@ -85694,7 +85694,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85694
85694
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
85695
85695
|
});
|
|
85696
85696
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
85697
|
-
_id: stringType().default("
|
|
85697
|
+
_id: stringType().default("tool_01KECFQ7K7EFAS49H4541WFY72"),
|
|
85698
85698
|
path: stringType(),
|
|
85699
85699
|
key: stringType(),
|
|
85700
85700
|
display_name: stringType().optional(),
|
|
@@ -85721,7 +85721,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85721
85721
|
});
|
|
85722
85722
|
});
|
|
85723
85723
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
85724
|
-
id: stringType().default("
|
|
85724
|
+
id: stringType().default("tool_01KECFQ7K7EFAS49H4541WFY72"),
|
|
85725
85725
|
path: stringType(),
|
|
85726
85726
|
key: stringType(),
|
|
85727
85727
|
displayName: stringType().optional(),
|
|
@@ -85780,7 +85780,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85780
85780
|
strict: booleanType().optional()
|
|
85781
85781
|
});
|
|
85782
85782
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
85783
|
-
_id: stringType().default("
|
|
85783
|
+
_id: stringType().default("tool_01KECFQ7K6WY2CAP7249WXG6MY"),
|
|
85784
85784
|
path: stringType(),
|
|
85785
85785
|
key: stringType(),
|
|
85786
85786
|
display_name: stringType().optional(),
|
|
@@ -85808,7 +85808,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85808
85808
|
});
|
|
85809
85809
|
});
|
|
85810
85810
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
85811
|
-
id: stringType().default("
|
|
85811
|
+
id: stringType().default("tool_01KECFQ7K6WY2CAP7249WXG6MY"),
|
|
85812
85812
|
path: stringType(),
|
|
85813
85813
|
key: stringType(),
|
|
85814
85814
|
displayName: stringType().optional(),
|
|
@@ -85870,7 +85870,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85870
85870
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
85871
85871
|
});
|
|
85872
85872
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
85873
|
-
_id: stringType().default("
|
|
85873
|
+
_id: stringType().default("tool_01KECFQ7K5EMJ5E1MTT6DA5F92"),
|
|
85874
85874
|
path: stringType(),
|
|
85875
85875
|
key: stringType(),
|
|
85876
85876
|
display_name: stringType().optional(),
|
|
@@ -85897,7 +85897,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85897
85897
|
});
|
|
85898
85898
|
});
|
|
85899
85899
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
85900
|
-
id: stringType().default("
|
|
85900
|
+
id: stringType().default("tool_01KECFQ7K5EMJ5E1MTT6DA5F92"),
|
|
85901
85901
|
path: stringType(),
|
|
85902
85902
|
key: stringType(),
|
|
85903
85903
|
displayName: stringType().optional(),
|
|
@@ -86761,13 +86761,13 @@ var init_runagent = __esm(() => {
|
|
|
86761
86761
|
required: arrayType(stringType()).optional()
|
|
86762
86762
|
});
|
|
86763
86763
|
Tools$inboundSchema2 = objectType({
|
|
86764
|
-
id: stringType().default("
|
|
86764
|
+
id: stringType().default("01KECFQ75J7R0P26QYVBDBT240"),
|
|
86765
86765
|
name: stringType(),
|
|
86766
86766
|
description: stringType().optional(),
|
|
86767
86767
|
schema: lazyType(() => Schema$inboundSchema)
|
|
86768
86768
|
});
|
|
86769
86769
|
Tools$outboundSchema2 = objectType({
|
|
86770
|
-
id: stringType().default("
|
|
86770
|
+
id: stringType().default("01KECFQ75J7R0P26QYVBDBT240"),
|
|
86771
86771
|
name: stringType(),
|
|
86772
86772
|
description: stringType().optional(),
|
|
86773
86773
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -89057,13 +89057,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
89057
89057
|
required: arrayType(stringType()).optional()
|
|
89058
89058
|
});
|
|
89059
89059
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
89060
|
-
id: stringType().default("
|
|
89060
|
+
id: stringType().default("01KECFQ77EQ8NJNJSP03K80JPQ"),
|
|
89061
89061
|
name: stringType(),
|
|
89062
89062
|
description: stringType().optional(),
|
|
89063
89063
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
89064
89064
|
});
|
|
89065
89065
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
89066
|
-
id: stringType().default("
|
|
89066
|
+
id: stringType().default("01KECFQ77EQ8NJNJSP03K80JPQ"),
|
|
89067
89067
|
name: stringType(),
|
|
89068
89068
|
description: stringType().optional(),
|
|
89069
89069
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -92050,7 +92050,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
92050
92050
|
tags: arrayType(stringType()).optional(),
|
|
92051
92051
|
metadata: recordType(anyType()).optional(),
|
|
92052
92052
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
92053
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
92053
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
92054
92054
|
}).transform((v2) => {
|
|
92055
92055
|
return remap(v2, {
|
|
92056
92056
|
_id: "id",
|
|
@@ -92068,7 +92068,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
92068
92068
|
tags: arrayType(stringType()).optional(),
|
|
92069
92069
|
metadata: recordType(anyType()).optional(),
|
|
92070
92070
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
92071
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
92071
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
92072
92072
|
}).transform((v2) => {
|
|
92073
92073
|
return remap(v2, {
|
|
92074
92074
|
id: "_id",
|
|
@@ -92132,7 +92132,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
92132
92132
|
entityId: stringType().optional()
|
|
92133
92133
|
});
|
|
92134
92134
|
UpdateConversationResponseBody$inboundSchema2 = objectType({
|
|
92135
|
-
_id: stringType().default("
|
|
92135
|
+
_id: stringType().default("conv_01kecfq79meyghmvytc8q8stg3"),
|
|
92136
92136
|
entityId: stringType(),
|
|
92137
92137
|
kind: UpdateConversationKind$inboundSchema,
|
|
92138
92138
|
displayName: stringType(),
|
|
@@ -92147,7 +92147,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
92147
92147
|
});
|
|
92148
92148
|
});
|
|
92149
92149
|
UpdateConversationResponseBody$outboundSchema2 = objectType({
|
|
92150
|
-
id: stringType().default("
|
|
92150
|
+
id: stringType().default("conv_01kecfq79meyghmvytc8q8stg3"),
|
|
92151
92151
|
entityId: stringType(),
|
|
92152
92152
|
kind: UpdateConversationKind$outboundSchema,
|
|
92153
92153
|
displayName: stringType(),
|
|
@@ -92890,7 +92890,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92890
92890
|
human_review_id: stringType(),
|
|
92891
92891
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
92892
92892
|
reviewed_by_id: stringType(),
|
|
92893
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92893
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.918Z").transform((v2) => new Date(v2)),
|
|
92894
92894
|
type: literalType("string_array"),
|
|
92895
92895
|
values: arrayType(stringType())
|
|
92896
92896
|
}).transform((v2) => {
|
|
@@ -92907,7 +92907,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92907
92907
|
humanReviewId: stringType(),
|
|
92908
92908
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
92909
92909
|
reviewedById: stringType(),
|
|
92910
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92910
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.918Z")).transform((v2) => v2.toISOString()),
|
|
92911
92911
|
type: literalType("string_array"),
|
|
92912
92912
|
values: arrayType(stringType())
|
|
92913
92913
|
}).transform((v2) => {
|
|
@@ -92928,7 +92928,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92928
92928
|
human_review_id: stringType(),
|
|
92929
92929
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
92930
92930
|
reviewed_by_id: stringType(),
|
|
92931
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92931
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.918Z").transform((v2) => new Date(v2)),
|
|
92932
92932
|
type: literalType("number"),
|
|
92933
92933
|
value: numberType()
|
|
92934
92934
|
}).transform((v2) => {
|
|
@@ -92945,7 +92945,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92945
92945
|
humanReviewId: stringType(),
|
|
92946
92946
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
92947
92947
|
reviewedById: stringType(),
|
|
92948
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92948
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.918Z")).transform((v2) => v2.toISOString()),
|
|
92949
92949
|
type: literalType("number"),
|
|
92950
92950
|
value: numberType()
|
|
92951
92951
|
}).transform((v2) => {
|
|
@@ -92966,7 +92966,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92966
92966
|
human_review_id: stringType(),
|
|
92967
92967
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
92968
92968
|
reviewed_by_id: stringType(),
|
|
92969
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
92969
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-07T15:03:05.917Z").transform((v2) => new Date(v2)),
|
|
92970
92970
|
type: literalType("string"),
|
|
92971
92971
|
value: stringType()
|
|
92972
92972
|
}).transform((v2) => {
|
|
@@ -92983,7 +92983,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
92983
92983
|
humanReviewId: stringType(),
|
|
92984
92984
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
92985
92985
|
reviewedById: stringType(),
|
|
92986
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
92986
|
+
reviewedAt: dateType().default(() => new Date("2026-01-07T15:03:05.917Z")).transform((v2) => v2.toISOString()),
|
|
92987
92987
|
type: literalType("string"),
|
|
92988
92988
|
value: stringType()
|
|
92989
92989
|
}).transform((v2) => {
|
|
@@ -93026,7 +93026,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93026
93026
|
created_by_id: stringType().optional(),
|
|
93027
93027
|
updated_by_id: stringType().optional(),
|
|
93028
93028
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93029
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93029
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
93030
93030
|
}).transform((v2) => {
|
|
93031
93031
|
return remap(v2, {
|
|
93032
93032
|
_id: "id",
|
|
@@ -93060,7 +93060,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93060
93060
|
createdById: stringType().optional(),
|
|
93061
93061
|
updatedById: stringType().optional(),
|
|
93062
93062
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93063
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93063
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
93064
93064
|
}).transform((v2) => {
|
|
93065
93065
|
return remap(v2, {
|
|
93066
93066
|
id: "_id",
|
|
@@ -93144,7 +93144,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93144
93144
|
created_by_id: stringType().optional(),
|
|
93145
93145
|
updated_by_id: stringType().optional(),
|
|
93146
93146
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93147
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93147
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-07T15:02:52.634Z").transform((v2) => new Date(v2))
|
|
93148
93148
|
}).transform((v2) => {
|
|
93149
93149
|
return remap(v2, {
|
|
93150
93150
|
_id: "id",
|
|
@@ -93164,7 +93164,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93164
93164
|
createdById: stringType().optional(),
|
|
93165
93165
|
updatedById: stringType().optional(),
|
|
93166
93166
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93167
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93167
|
+
updated: dateType().default(() => new Date("2026-01-07T15:02:52.634Z")).transform((v2) => v2.toISOString())
|
|
93168
93168
|
}).transform((v2) => {
|
|
93169
93169
|
return remap(v2, {
|
|
93170
93170
|
id: "_id",
|
|
@@ -93228,7 +93228,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93228
93228
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
93229
93229
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
93230
93230
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
93231
|
-
_id: stringType().default("
|
|
93231
|
+
_id: stringType().default("01KECFQ7QKMKKV4TBHRBP79X2N"),
|
|
93232
93232
|
display_name: stringType(),
|
|
93233
93233
|
description: stringType().optional(),
|
|
93234
93234
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -93251,7 +93251,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93251
93251
|
});
|
|
93252
93252
|
});
|
|
93253
93253
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
93254
|
-
id: stringType().default("
|
|
93254
|
+
id: stringType().default("01KECFQ7QKMKKV4TBHRBP79X2N"),
|
|
93255
93255
|
displayName: stringType(),
|
|
93256
93256
|
description: stringType().optional(),
|
|
93257
93257
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -93864,8 +93864,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93864
93864
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
93865
93865
|
_id: stringType(),
|
|
93866
93866
|
description: stringType(),
|
|
93867
|
-
created: stringType().default("2026-01-
|
|
93868
|
-
updated: stringType().default("2026-01-
|
|
93867
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93868
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93869
93869
|
guardrail_config: unionType([
|
|
93870
93870
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
93871
93871
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -93882,8 +93882,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93882
93882
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
93883
93883
|
id: stringType(),
|
|
93884
93884
|
description: stringType(),
|
|
93885
|
-
created: stringType().default("2026-01-
|
|
93886
|
-
updated: stringType().default("2026-01-
|
|
93885
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93886
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93887
93887
|
guardrailConfig: unionType([
|
|
93888
93888
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
93889
93889
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -93954,8 +93954,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93954
93954
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
93955
93955
|
_id: stringType(),
|
|
93956
93956
|
description: stringType(),
|
|
93957
|
-
created: stringType().default("2026-01-
|
|
93958
|
-
updated: stringType().default("2026-01-
|
|
93957
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93958
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93959
93959
|
guardrail_config: unionType([
|
|
93960
93960
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
93961
93961
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -93974,8 +93974,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
93974
93974
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
93975
93975
|
id: stringType(),
|
|
93976
93976
|
description: stringType(),
|
|
93977
|
-
created: stringType().default("2026-01-
|
|
93978
|
-
updated: stringType().default("2026-01-
|
|
93977
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93978
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
93979
93979
|
guardrailConfig: unionType([
|
|
93980
93980
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
93981
93981
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -94330,8 +94330,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94330
94330
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
94331
94331
|
_id: stringType(),
|
|
94332
94332
|
description: stringType(),
|
|
94333
|
-
created: stringType().default("2026-01-
|
|
94334
|
-
updated: stringType().default("2026-01-
|
|
94333
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94334
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94335
94335
|
guardrail_config: unionType([
|
|
94336
94336
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
94337
94337
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -94382,8 +94382,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94382
94382
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
94383
94383
|
id: stringType(),
|
|
94384
94384
|
description: stringType(),
|
|
94385
|
-
created: stringType().default("2026-01-
|
|
94386
|
-
updated: stringType().default("2026-01-
|
|
94385
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94386
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94387
94387
|
guardrailConfig: unionType([
|
|
94388
94388
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
94389
94389
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -94486,8 +94486,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94486
94486
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
94487
94487
|
_id: stringType(),
|
|
94488
94488
|
description: stringType(),
|
|
94489
|
-
created: stringType().default("2026-01-
|
|
94490
|
-
updated: stringType().default("2026-01-
|
|
94489
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94490
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94491
94491
|
guardrail_config: unionType([
|
|
94492
94492
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
94493
94493
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -94504,8 +94504,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94504
94504
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
94505
94505
|
id: stringType(),
|
|
94506
94506
|
description: stringType(),
|
|
94507
|
-
created: stringType().default("2026-01-
|
|
94508
|
-
updated: stringType().default("2026-01-
|
|
94507
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94508
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94509
94509
|
guardrailConfig: unionType([
|
|
94510
94510
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
94511
94511
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -94576,8 +94576,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94576
94576
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
94577
94577
|
_id: stringType(),
|
|
94578
94578
|
description: stringType(),
|
|
94579
|
-
created: stringType().default("2026-01-
|
|
94580
|
-
updated: stringType().default("2026-01-
|
|
94579
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94580
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94581
94581
|
guardrail_config: unionType([
|
|
94582
94582
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
94583
94583
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -94597,8 +94597,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94597
94597
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
94598
94598
|
id: stringType(),
|
|
94599
94599
|
description: stringType(),
|
|
94600
|
-
created: stringType().default("2026-01-
|
|
94601
|
-
updated: stringType().default("2026-01-
|
|
94600
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94601
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94602
94602
|
guardrailConfig: unionType([
|
|
94603
94603
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
94604
94604
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -94670,8 +94670,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94670
94670
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
94671
94671
|
_id: stringType(),
|
|
94672
94672
|
description: stringType(),
|
|
94673
|
-
created: stringType().default("2026-01-
|
|
94674
|
-
updated: stringType().default("2026-01-
|
|
94673
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94674
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94675
94675
|
guardrail_config: unionType([
|
|
94676
94676
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
94677
94677
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -94688,8 +94688,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94688
94688
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
94689
94689
|
id: stringType(),
|
|
94690
94690
|
description: stringType(),
|
|
94691
|
-
created: stringType().default("2026-01-
|
|
94692
|
-
updated: stringType().default("2026-01-
|
|
94691
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94692
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94693
94693
|
guardrailConfig: unionType([
|
|
94694
94694
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
94695
94695
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -94758,8 +94758,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94758
94758
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
94759
94759
|
_id: stringType(),
|
|
94760
94760
|
description: stringType(),
|
|
94761
|
-
created: stringType().default("2026-01-
|
|
94762
|
-
updated: stringType().default("2026-01-
|
|
94761
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94762
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94763
94763
|
guardrail_config: unionType([
|
|
94764
94764
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
94765
94765
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -94777,8 +94777,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
94777
94777
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
94778
94778
|
id: stringType(),
|
|
94779
94779
|
description: stringType(),
|
|
94780
|
-
created: stringType().default("2026-01-
|
|
94781
|
-
updated: stringType().default("2026-01-
|
|
94780
|
+
created: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94781
|
+
updated: stringType().default("2026-01-07T15:02:55.078Z"),
|
|
94782
94782
|
guardrailConfig: unionType([
|
|
94783
94783
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
94784
94784
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -97296,13 +97296,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
97296
97296
|
required: arrayType(stringType()).optional()
|
|
97297
97297
|
});
|
|
97298
97298
|
RequestBodyTools$inboundSchema = objectType({
|
|
97299
|
-
id: stringType().default("
|
|
97299
|
+
id: stringType().default("01KECFQ7JQ8Q4P4PTY5EEJDXV0"),
|
|
97300
97300
|
name: stringType(),
|
|
97301
97301
|
description: stringType().optional(),
|
|
97302
97302
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
97303
97303
|
});
|
|
97304
97304
|
RequestBodyTools$outboundSchema = objectType({
|
|
97305
|
-
id: stringType().default("
|
|
97305
|
+
id: stringType().default("01KECFQ7JQ8Q4P4PTY5EEJDXV0"),
|
|
97306
97306
|
name: stringType(),
|
|
97307
97307
|
description: stringType().optional(),
|
|
97308
97308
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -97642,7 +97642,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97642
97642
|
code: stringType()
|
|
97643
97643
|
});
|
|
97644
97644
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
97645
|
-
_id: stringType().default("
|
|
97645
|
+
_id: stringType().default("tool_01KECFQ7JG7DSYRW3JHD5NNETX"),
|
|
97646
97646
|
path: stringType(),
|
|
97647
97647
|
key: stringType(),
|
|
97648
97648
|
display_name: stringType().optional(),
|
|
@@ -97670,7 +97670,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97670
97670
|
});
|
|
97671
97671
|
});
|
|
97672
97672
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
97673
|
-
id: stringType().default("
|
|
97673
|
+
id: stringType().default("tool_01KECFQ7JG7DSYRW3JHD5NNETX"),
|
|
97674
97674
|
path: stringType(),
|
|
97675
97675
|
key: stringType(),
|
|
97676
97676
|
displayName: stringType().optional(),
|
|
@@ -97720,13 +97720,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
97720
97720
|
required: arrayType(stringType()).optional()
|
|
97721
97721
|
});
|
|
97722
97722
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
97723
|
-
id: stringType().default("
|
|
97723
|
+
id: stringType().default("01KECFQ7JGJE1V20Q31SRXGEVT"),
|
|
97724
97724
|
name: stringType(),
|
|
97725
97725
|
description: stringType().optional(),
|
|
97726
97726
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
97727
97727
|
});
|
|
97728
97728
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
97729
|
-
id: stringType().default("
|
|
97729
|
+
id: stringType().default("01KECFQ7JGJE1V20Q31SRXGEVT"),
|
|
97730
97730
|
name: stringType(),
|
|
97731
97731
|
description: stringType().optional(),
|
|
97732
97732
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -97756,7 +97756,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97756
97756
|
});
|
|
97757
97757
|
});
|
|
97758
97758
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
97759
|
-
_id: stringType().default("
|
|
97759
|
+
_id: stringType().default("tool_01KECFQ7JE1REPHFS7ND2RHZ0B"),
|
|
97760
97760
|
path: stringType(),
|
|
97761
97761
|
key: stringType(),
|
|
97762
97762
|
display_name: stringType().optional(),
|
|
@@ -97783,7 +97783,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97783
97783
|
});
|
|
97784
97784
|
});
|
|
97785
97785
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
97786
|
-
id: stringType().default("
|
|
97786
|
+
id: stringType().default("tool_01KECFQ7JE1REPHFS7ND2RHZ0B"),
|
|
97787
97787
|
path: stringType(),
|
|
97788
97788
|
key: stringType(),
|
|
97789
97789
|
displayName: stringType().optional(),
|
|
@@ -97870,7 +97870,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97870
97870
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
97871
97871
|
});
|
|
97872
97872
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
97873
|
-
_id: stringType().default("
|
|
97873
|
+
_id: stringType().default("tool_01KECFQ7JC9488NXZZ04M5XGR4"),
|
|
97874
97874
|
path: stringType(),
|
|
97875
97875
|
key: stringType(),
|
|
97876
97876
|
display_name: stringType().optional(),
|
|
@@ -97897,7 +97897,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97897
97897
|
});
|
|
97898
97898
|
});
|
|
97899
97899
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
97900
|
-
id: stringType().default("
|
|
97900
|
+
id: stringType().default("tool_01KECFQ7JC9488NXZZ04M5XGR4"),
|
|
97901
97901
|
path: stringType(),
|
|
97902
97902
|
key: stringType(),
|
|
97903
97903
|
displayName: stringType().optional(),
|
|
@@ -97956,7 +97956,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97956
97956
|
strict: booleanType().optional()
|
|
97957
97957
|
});
|
|
97958
97958
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
97959
|
-
_id: stringType().default("
|
|
97959
|
+
_id: stringType().default("tool_01KECFQ7JAY8BF26JQBFGXG8TX"),
|
|
97960
97960
|
path: stringType(),
|
|
97961
97961
|
key: stringType(),
|
|
97962
97962
|
display_name: stringType().optional(),
|
|
@@ -97984,7 +97984,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
97984
97984
|
});
|
|
97985
97985
|
});
|
|
97986
97986
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
97987
|
-
id: stringType().default("
|
|
97987
|
+
id: stringType().default("tool_01KECFQ7JAY8BF26JQBFGXG8TX"),
|
|
97988
97988
|
path: stringType(),
|
|
97989
97989
|
key: stringType(),
|
|
97990
97990
|
displayName: stringType().optional(),
|
|
@@ -98046,7 +98046,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
98046
98046
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
98047
98047
|
});
|
|
98048
98048
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
98049
|
-
_id: stringType().default("
|
|
98049
|
+
_id: stringType().default("tool_01KECFQ7J8VK7F7M677G5BJ9P1"),
|
|
98050
98050
|
path: stringType(),
|
|
98051
98051
|
key: stringType(),
|
|
98052
98052
|
display_name: stringType().optional(),
|
|
@@ -98073,7 +98073,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
98073
98073
|
});
|
|
98074
98074
|
});
|
|
98075
98075
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
98076
|
-
id: stringType().default("
|
|
98076
|
+
id: stringType().default("tool_01KECFQ7J8VK7F7M677G5BJ9P1"),
|
|
98077
98077
|
path: stringType(),
|
|
98078
98078
|
key: stringType(),
|
|
98079
98079
|
displayName: stringType().optional(),
|
|
@@ -109203,7 +109203,7 @@ Updates a tool in the workspace.`,
|
|
|
109203
109203
|
function createMCPServer(deps) {
|
|
109204
109204
|
const server = new McpServer({
|
|
109205
109205
|
name: "Orq",
|
|
109206
|
-
version: "4.1.
|
|
109206
|
+
version: "4.1.7"
|
|
109207
109207
|
});
|
|
109208
109208
|
const client = new OrqCore({
|
|
109209
109209
|
apiKey: deps.apiKey,
|
|
@@ -110627,7 +110627,7 @@ var routes = rn({
|
|
|
110627
110627
|
var app = Ve(routes, {
|
|
110628
110628
|
name: "mcp",
|
|
110629
110629
|
versionInfo: {
|
|
110630
|
-
currentVersion: "4.1.
|
|
110630
|
+
currentVersion: "4.1.7"
|
|
110631
110631
|
}
|
|
110632
110632
|
});
|
|
110633
110633
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -110635,5 +110635,5 @@ export {
|
|
|
110635
110635
|
app
|
|
110636
110636
|
};
|
|
110637
110637
|
|
|
110638
|
-
//# debugId=
|
|
110638
|
+
//# debugId=621AB9887D2CF45464756E2164756E21
|
|
110639
110639
|
//# sourceMappingURL=mcp-server.js.map
|