@orq-ai/node 4.0.0-rc.40 → 4.0.0-rc.42
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 +306 -282
- package/bin/mcp-server.js.map +47 -47
- package/docs/sdks/agents/README.md +2 -0
- package/docs/sdks/knowledge/README.md +0 -2
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +15 -8
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +16 -8
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createknowledge.d.ts +1 -3
- package/models/operations/createknowledge.d.ts.map +1 -1
- package/models/operations/createknowledge.js +0 -4
- package/models/operations/createknowledge.js.map +1 -1
- package/models/operations/createprompt.d.ts +2 -2
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +2 -2
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/duplicateagent.d.ts +6 -4
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +8 -4
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.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/getagent.d.ts +6 -4
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +8 -4
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +6 -4
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +8 -4
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.d.ts +4 -4
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +6 -6
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +4 -4
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +6 -6
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/syncmcptool.js +12 -12
- package/models/operations/updateagent.d.ts +12 -8
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +16 -8
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updateprompt.d.ts +2 -2
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +2 -2
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +31 -16
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createknowledge.ts +1 -7
- package/src/models/operations/createprompt.ts +4 -4
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/duplicateagent.ts +14 -8
- package/src/models/operations/duplicatetool.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/getagent.ts +14 -8
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +14 -8
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +10 -10
- package/src/models/operations/streamrunagent.ts +10 -10
- package/src/models/operations/syncmcptool.ts +12 -12
- package/src/models/operations/updateagent.ts +28 -16
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updateprompt.ts +4 -4
- package/src/models/operations/updatetool.ts +14 -14
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34207
|
-
genVersion: "2.755.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.42",
|
|
34207
|
+
genVersion: "2.755.9",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.42 2.755.9 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -36728,13 +36728,13 @@ var init_createagent2 = __esm(() => {
|
|
|
36728
36728
|
description: stringType().optional(),
|
|
36729
36729
|
name: stringType(),
|
|
36730
36730
|
schema: anyType().optional(),
|
|
36731
|
-
strict: booleanType().optional()
|
|
36731
|
+
strict: nullableType(booleanType()).optional()
|
|
36732
36732
|
});
|
|
36733
36733
|
ResponseFormatJsonSchema$outboundSchema = objectType({
|
|
36734
36734
|
description: stringType().optional(),
|
|
36735
36735
|
name: stringType(),
|
|
36736
36736
|
schema: anyType().optional(),
|
|
36737
|
-
strict: booleanType().optional()
|
|
36737
|
+
strict: nullableType(booleanType()).optional()
|
|
36738
36738
|
});
|
|
36739
36739
|
JSONSchema$inboundSchema = objectType({
|
|
36740
36740
|
type: CreateAgentResponseFormatAgentsType$inboundSchema,
|
|
@@ -36976,13 +36976,13 @@ var init_createagent2 = __esm(() => {
|
|
|
36976
36976
|
description: stringType().optional(),
|
|
36977
36977
|
name: stringType(),
|
|
36978
36978
|
schema: anyType().optional(),
|
|
36979
|
-
strict: booleanType().optional()
|
|
36979
|
+
strict: nullableType(booleanType()).optional()
|
|
36980
36980
|
});
|
|
36981
36981
|
CreateAgentResponseFormatAgentsJsonSchema$outboundSchema = objectType({
|
|
36982
36982
|
description: stringType().optional(),
|
|
36983
36983
|
name: stringType(),
|
|
36984
36984
|
schema: anyType().optional(),
|
|
36985
|
-
strict: booleanType().optional()
|
|
36985
|
+
strict: nullableType(booleanType()).optional()
|
|
36986
36986
|
});
|
|
36987
36987
|
CreateAgentResponseFormatJSONSchema$inboundSchema = objectType({
|
|
36988
36988
|
type: CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema,
|
|
@@ -37644,6 +37644,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37644
37644
|
});
|
|
37645
37645
|
CreateAgentRequestBody$inboundSchema = objectType({
|
|
37646
37646
|
key: stringType(),
|
|
37647
|
+
display_name: stringType(),
|
|
37647
37648
|
role: stringType(),
|
|
37648
37649
|
description: stringType(),
|
|
37649
37650
|
instructions: stringType(),
|
|
@@ -37661,6 +37662,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37661
37662
|
variables: recordType(anyType()).optional()
|
|
37662
37663
|
}).transform((v2) => {
|
|
37663
37664
|
return remap(v2, {
|
|
37665
|
+
display_name: "displayName",
|
|
37664
37666
|
system_prompt: "systemPrompt",
|
|
37665
37667
|
fallback_models: "fallbackModels",
|
|
37666
37668
|
memory_stores: "memoryStores",
|
|
@@ -37670,6 +37672,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37670
37672
|
});
|
|
37671
37673
|
CreateAgentRequestBody$outboundSchema = objectType({
|
|
37672
37674
|
key: stringType(),
|
|
37675
|
+
displayName: stringType(),
|
|
37673
37676
|
role: stringType(),
|
|
37674
37677
|
description: stringType(),
|
|
37675
37678
|
instructions: stringType(),
|
|
@@ -37690,6 +37693,7 @@ var init_createagent2 = __esm(() => {
|
|
|
37690
37693
|
variables: recordType(anyType()).optional()
|
|
37691
37694
|
}).transform((v2) => {
|
|
37692
37695
|
return remap(v2, {
|
|
37696
|
+
displayName: "display_name",
|
|
37693
37697
|
systemPrompt: "system_prompt",
|
|
37694
37698
|
fallbackModels: "fallback_models",
|
|
37695
37699
|
memoryStores: "memory_stores",
|
|
@@ -37833,13 +37837,13 @@ var init_createagent2 = __esm(() => {
|
|
|
37833
37837
|
description: stringType().optional(),
|
|
37834
37838
|
name: stringType(),
|
|
37835
37839
|
schema: anyType().optional(),
|
|
37836
|
-
strict: booleanType().optional()
|
|
37840
|
+
strict: nullableType(booleanType()).optional()
|
|
37837
37841
|
});
|
|
37838
37842
|
CreateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema = objectType({
|
|
37839
37843
|
description: stringType().optional(),
|
|
37840
37844
|
name: stringType(),
|
|
37841
37845
|
schema: anyType().optional(),
|
|
37842
|
-
strict: booleanType().optional()
|
|
37846
|
+
strict: nullableType(booleanType()).optional()
|
|
37843
37847
|
});
|
|
37844
37848
|
CreateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema = objectType({
|
|
37845
37849
|
type: CreateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema,
|
|
@@ -38069,13 +38073,13 @@ var init_createagent2 = __esm(() => {
|
|
|
38069
38073
|
description: stringType().optional(),
|
|
38070
38074
|
name: stringType(),
|
|
38071
38075
|
schema: anyType().optional(),
|
|
38072
|
-
strict: booleanType().optional()
|
|
38076
|
+
strict: nullableType(booleanType()).optional()
|
|
38073
38077
|
});
|
|
38074
38078
|
CreateAgentResponseFormatAgentsResponse201ApplicationJSONJSONSchema$outboundSchema = objectType({
|
|
38075
38079
|
description: stringType().optional(),
|
|
38076
38080
|
name: stringType(),
|
|
38077
38081
|
schema: anyType().optional(),
|
|
38078
|
-
strict: booleanType().optional()
|
|
38082
|
+
strict: nullableType(booleanType()).optional()
|
|
38079
38083
|
});
|
|
38080
38084
|
CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$inboundSchema = objectType({
|
|
38081
38085
|
type: CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema,
|
|
@@ -38356,6 +38360,7 @@ var init_createagent2 = __esm(() => {
|
|
|
38356
38360
|
CreateAgentResponseBody$inboundSchema2 = objectType({
|
|
38357
38361
|
_id: stringType(),
|
|
38358
38362
|
key: stringType(),
|
|
38363
|
+
display_name: stringType(),
|
|
38359
38364
|
project_id: stringType(),
|
|
38360
38365
|
created_by_id: nullableType(stringType()).optional(),
|
|
38361
38366
|
updated_by_id: nullableType(stringType()).optional(),
|
|
@@ -38378,6 +38383,7 @@ var init_createagent2 = __esm(() => {
|
|
|
38378
38383
|
}).transform((v2) => {
|
|
38379
38384
|
return remap(v2, {
|
|
38380
38385
|
_id: "id",
|
|
38386
|
+
display_name: "displayName",
|
|
38381
38387
|
project_id: "projectId",
|
|
38382
38388
|
created_by_id: "createdById",
|
|
38383
38389
|
updated_by_id: "updatedById",
|
|
@@ -38391,6 +38397,7 @@ var init_createagent2 = __esm(() => {
|
|
|
38391
38397
|
CreateAgentResponseBody$outboundSchema2 = objectType({
|
|
38392
38398
|
id: stringType(),
|
|
38393
38399
|
key: stringType(),
|
|
38400
|
+
displayName: stringType(),
|
|
38394
38401
|
projectId: stringType(),
|
|
38395
38402
|
createdById: nullableType(stringType()).optional(),
|
|
38396
38403
|
updatedById: nullableType(stringType()).optional(),
|
|
@@ -38413,6 +38420,7 @@ var init_createagent2 = __esm(() => {
|
|
|
38413
38420
|
}).transform((v2) => {
|
|
38414
38421
|
return remap(v2, {
|
|
38415
38422
|
id: "_id",
|
|
38423
|
+
displayName: "display_name",
|
|
38416
38424
|
projectId: "project_id",
|
|
38417
38425
|
createdById: "created_by_id",
|
|
38418
38426
|
updatedById: "updated_by_id",
|
|
@@ -38584,7 +38592,7 @@ var init_createbudget = __esm(() => {
|
|
|
38584
38592
|
is_active: booleanType(),
|
|
38585
38593
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38586
38594
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38587
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38595
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.633Z").transform((v2) => new Date(v2))
|
|
38588
38596
|
}).transform((v2) => {
|
|
38589
38597
|
return remap(v2, {
|
|
38590
38598
|
_id: "id",
|
|
@@ -38602,7 +38610,7 @@ var init_createbudget = __esm(() => {
|
|
|
38602
38610
|
isActive: booleanType(),
|
|
38603
38611
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38604
38612
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38605
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38613
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.633Z")).transform((v2) => v2.toISOString())
|
|
38606
38614
|
}).transform((v2) => {
|
|
38607
38615
|
return remap(v2, {
|
|
38608
38616
|
id: "_id",
|
|
@@ -38742,7 +38750,7 @@ var init_createcontact = __esm(() => {
|
|
|
38742
38750
|
tags: arrayType(stringType()).optional(),
|
|
38743
38751
|
metadata: recordType(anyType()).optional(),
|
|
38744
38752
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38745
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38753
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
38746
38754
|
}).transform((v2) => {
|
|
38747
38755
|
return remap(v2, {
|
|
38748
38756
|
_id: "id",
|
|
@@ -38762,7 +38770,7 @@ var init_createcontact = __esm(() => {
|
|
|
38762
38770
|
tags: arrayType(stringType()).optional(),
|
|
38763
38771
|
metadata: recordType(anyType()).optional(),
|
|
38764
38772
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38765
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38773
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
38766
38774
|
}).transform((v2) => {
|
|
38767
38775
|
return remap(v2, {
|
|
38768
38776
|
id: "_id",
|
|
@@ -38822,7 +38830,7 @@ var init_createdataset = __esm(() => {
|
|
|
38822
38830
|
created_by_id: stringType().optional(),
|
|
38823
38831
|
updated_by_id: stringType().optional(),
|
|
38824
38832
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38825
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38833
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
38826
38834
|
}).transform((v2) => {
|
|
38827
38835
|
return remap(v2, {
|
|
38828
38836
|
_id: "id",
|
|
@@ -38842,7 +38850,7 @@ var init_createdataset = __esm(() => {
|
|
|
38842
38850
|
createdById: stringType().optional(),
|
|
38843
38851
|
updatedById: stringType().optional(),
|
|
38844
38852
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38845
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38853
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
38846
38854
|
}).transform((v2) => {
|
|
38847
38855
|
return remap(v2, {
|
|
38848
38856
|
id: "_id",
|
|
@@ -39916,7 +39924,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39916
39924
|
human_review_id: stringType(),
|
|
39917
39925
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39918
39926
|
reviewed_by_id: stringType(),
|
|
39919
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39927
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.871Z").transform((v2) => new Date(v2)),
|
|
39920
39928
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39921
39929
|
values: arrayType(stringType())
|
|
39922
39930
|
}).transform((v2) => {
|
|
@@ -39933,7 +39941,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39933
39941
|
humanReviewId: stringType(),
|
|
39934
39942
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39935
39943
|
reviewedById: stringType(),
|
|
39936
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39944
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.871Z")).transform((v2) => v2.toISOString()),
|
|
39937
39945
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39938
39946
|
values: arrayType(stringType())
|
|
39939
39947
|
}).transform((v2) => {
|
|
@@ -39956,7 +39964,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39956
39964
|
human_review_id: stringType(),
|
|
39957
39965
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39958
39966
|
reviewed_by_id: stringType(),
|
|
39959
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39967
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.870Z").transform((v2) => new Date(v2)),
|
|
39960
39968
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39961
39969
|
value: numberType()
|
|
39962
39970
|
}).transform((v2) => {
|
|
@@ -39973,7 +39981,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39973
39981
|
humanReviewId: stringType(),
|
|
39974
39982
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39975
39983
|
reviewedById: stringType(),
|
|
39976
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39984
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.870Z")).transform((v2) => v2.toISOString()),
|
|
39977
39985
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39978
39986
|
value: numberType()
|
|
39979
39987
|
}).transform((v2) => {
|
|
@@ -39996,7 +40004,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39996
40004
|
human_review_id: stringType(),
|
|
39997
40005
|
source: Source$inboundSchema.default("orq"),
|
|
39998
40006
|
reviewed_by_id: stringType(),
|
|
39999
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
40007
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.869Z").transform((v2) => new Date(v2)),
|
|
40000
40008
|
type: EvaluationsType$inboundSchema,
|
|
40001
40009
|
value: stringType()
|
|
40002
40010
|
}).transform((v2) => {
|
|
@@ -40013,7 +40021,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40013
40021
|
humanReviewId: stringType(),
|
|
40014
40022
|
source: Source$outboundSchema.default("orq"),
|
|
40015
40023
|
reviewedById: stringType(),
|
|
40016
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
40024
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.869Z")).transform((v2) => v2.toISOString()),
|
|
40017
40025
|
type: EvaluationsType$outboundSchema,
|
|
40018
40026
|
value: stringType()
|
|
40019
40027
|
}).transform((v2) => {
|
|
@@ -40056,7 +40064,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40056
40064
|
created_by_id: stringType().optional(),
|
|
40057
40065
|
updated_by_id: stringType().optional(),
|
|
40058
40066
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
40059
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
40067
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
40060
40068
|
}).transform((v2) => {
|
|
40061
40069
|
return remap(v2, {
|
|
40062
40070
|
_id: "id",
|
|
@@ -40090,7 +40098,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
40090
40098
|
createdById: stringType().optional(),
|
|
40091
40099
|
updatedById: stringType().optional(),
|
|
40092
40100
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
40093
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40101
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
40094
40102
|
}).transform((v2) => {
|
|
40095
40103
|
return remap(v2, {
|
|
40096
40104
|
id: "_id",
|
|
@@ -40269,7 +40277,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40269
40277
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40270
40278
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40271
40279
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40272
|
-
_id: stringType().default("
|
|
40280
|
+
_id: stringType().default("01KAA6WRTM42W0FSR6A97HJMXR"),
|
|
40273
40281
|
display_name: stringType(),
|
|
40274
40282
|
description: stringType().optional(),
|
|
40275
40283
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40292,7 +40300,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40292
40300
|
});
|
|
40293
40301
|
});
|
|
40294
40302
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40295
|
-
id: stringType().default("
|
|
40303
|
+
id: stringType().default("01KAA6WRTM42W0FSR6A97HJMXR"),
|
|
40296
40304
|
displayName: stringType(),
|
|
40297
40305
|
description: stringType().optional(),
|
|
40298
40306
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -41013,8 +41021,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41013
41021
|
Typescript$inboundSchema = objectType({
|
|
41014
41022
|
_id: stringType(),
|
|
41015
41023
|
description: stringType(),
|
|
41016
|
-
created: stringType().default("2025-11-
|
|
41017
|
-
updated: stringType().default("2025-11-
|
|
41024
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41025
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41018
41026
|
guardrail_config: unionType([
|
|
41019
41027
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
41020
41028
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -41031,8 +41039,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41031
41039
|
Typescript$outboundSchema = objectType({
|
|
41032
41040
|
id: stringType(),
|
|
41033
41041
|
description: stringType(),
|
|
41034
|
-
created: stringType().default("2025-11-
|
|
41035
|
-
updated: stringType().default("2025-11-
|
|
41042
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41043
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41036
41044
|
guardrailConfig: unionType([
|
|
41037
41045
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
41038
41046
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -41089,8 +41097,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41089
41097
|
Ragas$inboundSchema = objectType({
|
|
41090
41098
|
_id: stringType(),
|
|
41091
41099
|
description: stringType(),
|
|
41092
|
-
created: stringType().default("2025-11-
|
|
41093
|
-
updated: stringType().default("2025-11-
|
|
41100
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41101
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41094
41102
|
guardrail_config: unionType([
|
|
41095
41103
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
41096
41104
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -41109,8 +41117,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41109
41117
|
Ragas$outboundSchema = objectType({
|
|
41110
41118
|
id: stringType(),
|
|
41111
41119
|
description: stringType(),
|
|
41112
|
-
created: stringType().default("2025-11-
|
|
41113
|
-
updated: stringType().default("2025-11-
|
|
41120
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41121
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41114
41122
|
guardrailConfig: unionType([
|
|
41115
41123
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
41116
41124
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41547,8 +41555,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41547
41555
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41548
41556
|
_id: stringType(),
|
|
41549
41557
|
description: stringType(),
|
|
41550
|
-
created: stringType().default("2025-11-
|
|
41551
|
-
updated: stringType().default("2025-11-
|
|
41558
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41559
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41552
41560
|
guardrail_config: unionType([
|
|
41553
41561
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41554
41562
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41602,8 +41610,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41602
41610
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41603
41611
|
id: stringType(),
|
|
41604
41612
|
description: stringType(),
|
|
41605
|
-
created: stringType().default("2025-11-
|
|
41606
|
-
updated: stringType().default("2025-11-
|
|
41613
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41614
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41607
41615
|
guardrailConfig: unionType([
|
|
41608
41616
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41609
41617
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41695,8 +41703,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41695
41703
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41696
41704
|
_id: stringType(),
|
|
41697
41705
|
description: stringType(),
|
|
41698
|
-
created: stringType().default("2025-11-
|
|
41699
|
-
updated: stringType().default("2025-11-
|
|
41706
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41707
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41700
41708
|
guardrail_config: unionType([
|
|
41701
41709
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41702
41710
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41713,8 +41721,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41713
41721
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41714
41722
|
id: stringType(),
|
|
41715
41723
|
description: stringType(),
|
|
41716
|
-
created: stringType().default("2025-11-
|
|
41717
|
-
updated: stringType().default("2025-11-
|
|
41724
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41725
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41718
41726
|
guardrailConfig: unionType([
|
|
41719
41727
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41720
41728
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41771,8 +41779,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41771
41779
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41772
41780
|
_id: stringType(),
|
|
41773
41781
|
description: stringType(),
|
|
41774
|
-
created: stringType().default("2025-11-
|
|
41775
|
-
updated: stringType().default("2025-11-
|
|
41782
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41783
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41776
41784
|
guardrail_config: unionType([
|
|
41777
41785
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41778
41786
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41792,8 +41800,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41792
41800
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41793
41801
|
id: stringType(),
|
|
41794
41802
|
description: stringType(),
|
|
41795
|
-
created: stringType().default("2025-11-
|
|
41796
|
-
updated: stringType().default("2025-11-
|
|
41803
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41804
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41797
41805
|
guardrailConfig: unionType([
|
|
41798
41806
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41799
41807
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41851,8 +41859,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41851
41859
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41852
41860
|
_id: stringType(),
|
|
41853
41861
|
description: stringType(),
|
|
41854
|
-
created: stringType().default("2025-11-
|
|
41855
|
-
updated: stringType().default("2025-11-
|
|
41862
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41863
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41856
41864
|
guardrail_config: unionType([
|
|
41857
41865
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41858
41866
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41869,8 +41877,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41869
41877
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41870
41878
|
id: stringType(),
|
|
41871
41879
|
description: stringType(),
|
|
41872
|
-
created: stringType().default("2025-11-
|
|
41873
|
-
updated: stringType().default("2025-11-
|
|
41880
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41881
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41874
41882
|
guardrailConfig: unionType([
|
|
41875
41883
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41876
41884
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41925,8 +41933,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41925
41933
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41926
41934
|
_id: stringType(),
|
|
41927
41935
|
description: stringType(),
|
|
41928
|
-
created: stringType().default("2025-11-
|
|
41929
|
-
updated: stringType().default("2025-11-
|
|
41936
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41937
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41930
41938
|
guardrail_config: unionType([
|
|
41931
41939
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41932
41940
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41944,8 +41952,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41944
41952
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41945
41953
|
id: stringType(),
|
|
41946
41954
|
description: stringType(),
|
|
41947
|
-
created: stringType().default("2025-11-
|
|
41948
|
-
updated: stringType().default("2025-11-
|
|
41955
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41956
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
41949
41957
|
guardrailConfig: unionType([
|
|
41950
41958
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41951
41959
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -42165,13 +42173,11 @@ var init_createknowledge = __esm(() => {
|
|
|
42165
42173
|
key: stringType(),
|
|
42166
42174
|
description: stringType().optional(),
|
|
42167
42175
|
embedding_model: stringType(),
|
|
42168
|
-
is_private_model: booleanType().default(false),
|
|
42169
42176
|
retrieval_settings: lazyType(() => RetrievalSettings$inboundSchema).optional(),
|
|
42170
42177
|
path: stringType()
|
|
42171
42178
|
}).transform((v2) => {
|
|
42172
42179
|
return remap(v2, {
|
|
42173
42180
|
embedding_model: "embeddingModel",
|
|
42174
|
-
is_private_model: "isPrivateModel",
|
|
42175
42181
|
retrieval_settings: "retrievalSettings"
|
|
42176
42182
|
});
|
|
42177
42183
|
});
|
|
@@ -42180,13 +42186,11 @@ var init_createknowledge = __esm(() => {
|
|
|
42180
42186
|
key: stringType(),
|
|
42181
42187
|
description: stringType().optional(),
|
|
42182
42188
|
embeddingModel: stringType(),
|
|
42183
|
-
isPrivateModel: booleanType().default(false),
|
|
42184
42189
|
retrievalSettings: lazyType(() => RetrievalSettings$outboundSchema).optional(),
|
|
42185
42190
|
path: stringType()
|
|
42186
42191
|
}).transform((v2) => {
|
|
42187
42192
|
return remap(v2, {
|
|
42188
42193
|
embeddingModel: "embedding_model",
|
|
42189
|
-
isPrivateModel: "is_private_model",
|
|
42190
42194
|
retrievalSettings: "retrieval_settings"
|
|
42191
42195
|
});
|
|
42192
42196
|
});
|
|
@@ -44166,13 +44170,13 @@ var init_createprompt = __esm(() => {
|
|
|
44166
44170
|
description: stringType().optional(),
|
|
44167
44171
|
name: stringType(),
|
|
44168
44172
|
schema: anyType().optional(),
|
|
44169
|
-
strict: booleanType().optional()
|
|
44173
|
+
strict: nullableType(booleanType()).optional()
|
|
44170
44174
|
});
|
|
44171
44175
|
CreatePromptResponseFormatPromptsRequestJsonSchema$outboundSchema = objectType({
|
|
44172
44176
|
description: stringType().optional(),
|
|
44173
44177
|
name: stringType(),
|
|
44174
44178
|
schema: anyType().optional(),
|
|
44175
|
-
strict: booleanType().optional()
|
|
44179
|
+
strict: nullableType(booleanType()).optional()
|
|
44176
44180
|
});
|
|
44177
44181
|
CreatePromptResponseFormatPromptsJSONSchema$inboundSchema = objectType({
|
|
44178
44182
|
type: CreatePromptResponseFormatPromptsRequestRequestBodyPrompt3Type$inboundSchema,
|
|
@@ -45226,7 +45230,7 @@ var init_createtool = __esm(() => {
|
|
|
45226
45230
|
code: stringType()
|
|
45227
45231
|
});
|
|
45228
45232
|
ResponseBody5$inboundSchema = objectType({
|
|
45229
|
-
_id: stringType().default("
|
|
45233
|
+
_id: stringType().default("tool_01KAA6WRNEJFQFWYXDJAF4866X"),
|
|
45230
45234
|
path: stringType(),
|
|
45231
45235
|
key: stringType(),
|
|
45232
45236
|
display_name: stringType().optional(),
|
|
@@ -45254,7 +45258,7 @@ var init_createtool = __esm(() => {
|
|
|
45254
45258
|
});
|
|
45255
45259
|
});
|
|
45256
45260
|
ResponseBody5$outboundSchema = objectType({
|
|
45257
|
-
id: stringType().default("
|
|
45261
|
+
id: stringType().default("tool_01KAA6WRNEJFQFWYXDJAF4866X"),
|
|
45258
45262
|
path: stringType(),
|
|
45259
45263
|
key: stringType(),
|
|
45260
45264
|
displayName: stringType().optional(),
|
|
@@ -45306,13 +45310,13 @@ var init_createtool = __esm(() => {
|
|
|
45306
45310
|
required: arrayType(stringType()).optional()
|
|
45307
45311
|
});
|
|
45308
45312
|
ResponseBodyTools$inboundSchema = objectType({
|
|
45309
|
-
id: stringType().default("
|
|
45313
|
+
id: stringType().default("01KAA6WRNDVP738TFWR6WJRASN"),
|
|
45310
45314
|
name: stringType(),
|
|
45311
45315
|
description: stringType().optional(),
|
|
45312
45316
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
45313
45317
|
});
|
|
45314
45318
|
ResponseBodyTools$outboundSchema = objectType({
|
|
45315
|
-
id: stringType().default("
|
|
45319
|
+
id: stringType().default("01KAA6WRNDVP738TFWR6WJRASN"),
|
|
45316
45320
|
name: stringType(),
|
|
45317
45321
|
description: stringType().optional(),
|
|
45318
45322
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -45342,7 +45346,7 @@ var init_createtool = __esm(() => {
|
|
|
45342
45346
|
});
|
|
45343
45347
|
});
|
|
45344
45348
|
ResponseBody4$inboundSchema = objectType({
|
|
45345
|
-
_id: stringType().default("
|
|
45349
|
+
_id: stringType().default("tool_01KAA6WRN9C1HTQAQR9Z99CTH1"),
|
|
45346
45350
|
path: stringType(),
|
|
45347
45351
|
key: stringType(),
|
|
45348
45352
|
display_name: stringType().optional(),
|
|
@@ -45369,7 +45373,7 @@ var init_createtool = __esm(() => {
|
|
|
45369
45373
|
});
|
|
45370
45374
|
});
|
|
45371
45375
|
ResponseBody4$outboundSchema = objectType({
|
|
45372
|
-
id: stringType().default("
|
|
45376
|
+
id: stringType().default("tool_01KAA6WRN9C1HTQAQR9Z99CTH1"),
|
|
45373
45377
|
path: stringType(),
|
|
45374
45378
|
key: stringType(),
|
|
45375
45379
|
displayName: stringType().optional(),
|
|
@@ -45458,7 +45462,7 @@ var init_createtool = __esm(() => {
|
|
|
45458
45462
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45459
45463
|
});
|
|
45460
45464
|
ResponseBody3$inboundSchema = objectType({
|
|
45461
|
-
_id: stringType().default("
|
|
45465
|
+
_id: stringType().default("tool_01KAA6WRN2GMMA48ETQPN3NQ2A"),
|
|
45462
45466
|
path: stringType(),
|
|
45463
45467
|
key: stringType(),
|
|
45464
45468
|
display_name: stringType().optional(),
|
|
@@ -45485,7 +45489,7 @@ var init_createtool = __esm(() => {
|
|
|
45485
45489
|
});
|
|
45486
45490
|
});
|
|
45487
45491
|
ResponseBody3$outboundSchema = objectType({
|
|
45488
|
-
id: stringType().default("
|
|
45492
|
+
id: stringType().default("tool_01KAA6WRN2GMMA48ETQPN3NQ2A"),
|
|
45489
45493
|
path: stringType(),
|
|
45490
45494
|
key: stringType(),
|
|
45491
45495
|
displayName: stringType().optional(),
|
|
@@ -45546,7 +45550,7 @@ var init_createtool = __esm(() => {
|
|
|
45546
45550
|
strict: booleanType().optional()
|
|
45547
45551
|
});
|
|
45548
45552
|
ResponseBody2$inboundSchema = objectType({
|
|
45549
|
-
_id: stringType().default("
|
|
45553
|
+
_id: stringType().default("tool_01KAA6WRMTJ459G6E3MW2DAWZ2"),
|
|
45550
45554
|
path: stringType(),
|
|
45551
45555
|
key: stringType(),
|
|
45552
45556
|
display_name: stringType().optional(),
|
|
@@ -45574,7 +45578,7 @@ var init_createtool = __esm(() => {
|
|
|
45574
45578
|
});
|
|
45575
45579
|
});
|
|
45576
45580
|
ResponseBody2$outboundSchema = objectType({
|
|
45577
|
-
id: stringType().default("
|
|
45581
|
+
id: stringType().default("tool_01KAA6WRMTJ459G6E3MW2DAWZ2"),
|
|
45578
45582
|
path: stringType(),
|
|
45579
45583
|
key: stringType(),
|
|
45580
45584
|
displayName: stringType().optional(),
|
|
@@ -45638,7 +45642,7 @@ var init_createtool = __esm(() => {
|
|
|
45638
45642
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
45639
45643
|
});
|
|
45640
45644
|
ResponseBody1$inboundSchema = objectType({
|
|
45641
|
-
_id: stringType().default("
|
|
45645
|
+
_id: stringType().default("tool_01KAA6WRMKNWRATV7559A1EPT1"),
|
|
45642
45646
|
path: stringType(),
|
|
45643
45647
|
key: stringType(),
|
|
45644
45648
|
display_name: stringType().optional(),
|
|
@@ -45665,7 +45669,7 @@ var init_createtool = __esm(() => {
|
|
|
45665
45669
|
});
|
|
45666
45670
|
});
|
|
45667
45671
|
ResponseBody1$outboundSchema = objectType({
|
|
45668
|
-
id: stringType().default("
|
|
45672
|
+
id: stringType().default("tool_01KAA6WRMKNWRATV7559A1EPT1"),
|
|
45669
45673
|
path: stringType(),
|
|
45670
45674
|
key: stringType(),
|
|
45671
45675
|
displayName: stringType().optional(),
|
|
@@ -51922,13 +51926,13 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51922
51926
|
description: stringType().optional(),
|
|
51923
51927
|
name: stringType(),
|
|
51924
51928
|
schema: anyType().optional(),
|
|
51925
|
-
strict: booleanType().optional()
|
|
51929
|
+
strict: nullableType(booleanType()).optional()
|
|
51926
51930
|
});
|
|
51927
51931
|
DuplicateAgentResponseFormatJsonSchema$outboundSchema = objectType({
|
|
51928
51932
|
description: stringType().optional(),
|
|
51929
51933
|
name: stringType(),
|
|
51930
51934
|
schema: anyType().optional(),
|
|
51931
|
-
strict: booleanType().optional()
|
|
51935
|
+
strict: nullableType(booleanType()).optional()
|
|
51932
51936
|
});
|
|
51933
51937
|
DuplicateAgentResponseFormatAgentsJSONSchema$inboundSchema = objectType({
|
|
51934
51938
|
type: DuplicateAgentResponseFormatAgentsResponseType$inboundSchema,
|
|
@@ -52158,13 +52162,13 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52158
52162
|
description: stringType().optional(),
|
|
52159
52163
|
name: stringType(),
|
|
52160
52164
|
schema: anyType().optional(),
|
|
52161
|
-
strict: booleanType().optional()
|
|
52165
|
+
strict: nullableType(booleanType()).optional()
|
|
52162
52166
|
});
|
|
52163
52167
|
DuplicateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema = objectType({
|
|
52164
52168
|
description: stringType().optional(),
|
|
52165
52169
|
name: stringType(),
|
|
52166
52170
|
schema: anyType().optional(),
|
|
52167
|
-
strict: booleanType().optional()
|
|
52171
|
+
strict: nullableType(booleanType()).optional()
|
|
52168
52172
|
});
|
|
52169
52173
|
DuplicateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema = objectType({
|
|
52170
52174
|
type: DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema,
|
|
@@ -52445,6 +52449,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52445
52449
|
DuplicateAgentResponseBody$inboundSchema2 = objectType({
|
|
52446
52450
|
_id: stringType(),
|
|
52447
52451
|
key: stringType(),
|
|
52452
|
+
display_name: stringType(),
|
|
52448
52453
|
workspace_id: stringType(),
|
|
52449
52454
|
project_id: stringType(),
|
|
52450
52455
|
created_by_id: nullableType(stringType()).optional(),
|
|
@@ -52468,6 +52473,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52468
52473
|
}).transform((v2) => {
|
|
52469
52474
|
return remap(v2, {
|
|
52470
52475
|
_id: "id",
|
|
52476
|
+
display_name: "displayName",
|
|
52471
52477
|
workspace_id: "workspaceId",
|
|
52472
52478
|
project_id: "projectId",
|
|
52473
52479
|
created_by_id: "createdById",
|
|
@@ -52482,6 +52488,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52482
52488
|
DuplicateAgentResponseBody$outboundSchema2 = objectType({
|
|
52483
52489
|
id: stringType(),
|
|
52484
52490
|
key: stringType(),
|
|
52491
|
+
displayName: stringType(),
|
|
52485
52492
|
workspaceId: stringType(),
|
|
52486
52493
|
projectId: stringType(),
|
|
52487
52494
|
createdById: nullableType(stringType()).optional(),
|
|
@@ -52505,6 +52512,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52505
52512
|
}).transform((v2) => {
|
|
52506
52513
|
return remap(v2, {
|
|
52507
52514
|
id: "_id",
|
|
52515
|
+
displayName: "display_name",
|
|
52508
52516
|
workspaceId: "workspace_id",
|
|
52509
52517
|
projectId: "project_id",
|
|
52510
52518
|
createdById: "created_by_id",
|
|
@@ -52669,7 +52677,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52669
52677
|
code: stringType()
|
|
52670
52678
|
});
|
|
52671
52679
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52672
|
-
_id: stringType().default("
|
|
52680
|
+
_id: stringType().default("tool_01KAA6WRPQKZM4B9Z0CXK36G7N"),
|
|
52673
52681
|
path: stringType(),
|
|
52674
52682
|
key: stringType(),
|
|
52675
52683
|
display_name: stringType().optional(),
|
|
@@ -52697,7 +52705,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52697
52705
|
});
|
|
52698
52706
|
});
|
|
52699
52707
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52700
|
-
id: stringType().default("
|
|
52708
|
+
id: stringType().default("tool_01KAA6WRPQKZM4B9Z0CXK36G7N"),
|
|
52701
52709
|
path: stringType(),
|
|
52702
52710
|
key: stringType(),
|
|
52703
52711
|
displayName: stringType().optional(),
|
|
@@ -52749,13 +52757,13 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52749
52757
|
required: arrayType(stringType()).optional()
|
|
52750
52758
|
});
|
|
52751
52759
|
DuplicateToolResponseBodyTools$inboundSchema = objectType({
|
|
52752
|
-
id: stringType().default("
|
|
52760
|
+
id: stringType().default("01KAA6WRPQSBJBRQNDY7S5NJXP"),
|
|
52753
52761
|
name: stringType(),
|
|
52754
52762
|
description: stringType().optional(),
|
|
52755
52763
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$inboundSchema)
|
|
52756
52764
|
});
|
|
52757
52765
|
DuplicateToolResponseBodyTools$outboundSchema = objectType({
|
|
52758
|
-
id: stringType().default("
|
|
52766
|
+
id: stringType().default("01KAA6WRPQSBJBRQNDY7S5NJXP"),
|
|
52759
52767
|
name: stringType(),
|
|
52760
52768
|
description: stringType().optional(),
|
|
52761
52769
|
schema: lazyType(() => DuplicateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -52785,7 +52793,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52785
52793
|
});
|
|
52786
52794
|
});
|
|
52787
52795
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52788
|
-
_id: stringType().default("
|
|
52796
|
+
_id: stringType().default("tool_01KAA6WRPNCVV7Z0FV0KEEV937"),
|
|
52789
52797
|
path: stringType(),
|
|
52790
52798
|
key: stringType(),
|
|
52791
52799
|
display_name: stringType().optional(),
|
|
@@ -52812,7 +52820,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52812
52820
|
});
|
|
52813
52821
|
});
|
|
52814
52822
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52815
|
-
id: stringType().default("
|
|
52823
|
+
id: stringType().default("tool_01KAA6WRPNCVV7Z0FV0KEEV937"),
|
|
52816
52824
|
path: stringType(),
|
|
52817
52825
|
key: stringType(),
|
|
52818
52826
|
displayName: stringType().optional(),
|
|
@@ -52901,7 +52909,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52901
52909
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52902
52910
|
});
|
|
52903
52911
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52904
|
-
_id: stringType().default("
|
|
52912
|
+
_id: stringType().default("tool_01KAA6WRPKZ9CS1XCP72E9DCQR"),
|
|
52905
52913
|
path: stringType(),
|
|
52906
52914
|
key: stringType(),
|
|
52907
52915
|
display_name: stringType().optional(),
|
|
@@ -52928,7 +52936,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52928
52936
|
});
|
|
52929
52937
|
});
|
|
52930
52938
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52931
|
-
id: stringType().default("
|
|
52939
|
+
id: stringType().default("tool_01KAA6WRPKZ9CS1XCP72E9DCQR"),
|
|
52932
52940
|
path: stringType(),
|
|
52933
52941
|
key: stringType(),
|
|
52934
52942
|
displayName: stringType().optional(),
|
|
@@ -52989,7 +52997,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52989
52997
|
strict: booleanType().optional()
|
|
52990
52998
|
});
|
|
52991
52999
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52992
|
-
_id: stringType().default("
|
|
53000
|
+
_id: stringType().default("tool_01KAA6WRPJWN7JGC4NAS1MAAQX"),
|
|
52993
53001
|
path: stringType(),
|
|
52994
53002
|
key: stringType(),
|
|
52995
53003
|
display_name: stringType().optional(),
|
|
@@ -53017,7 +53025,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53017
53025
|
});
|
|
53018
53026
|
});
|
|
53019
53027
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
53020
|
-
id: stringType().default("
|
|
53028
|
+
id: stringType().default("tool_01KAA6WRPJWN7JGC4NAS1MAAQX"),
|
|
53021
53029
|
path: stringType(),
|
|
53022
53030
|
key: stringType(),
|
|
53023
53031
|
displayName: stringType().optional(),
|
|
@@ -53081,7 +53089,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53081
53089
|
parameters: lazyType(() => DuplicateToolResponseBodyParameters$outboundSchema).optional()
|
|
53082
53090
|
});
|
|
53083
53091
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
53084
|
-
_id: stringType().default("
|
|
53092
|
+
_id: stringType().default("tool_01KAA6WRPHHX2KZFGN5106EDND"),
|
|
53085
53093
|
path: stringType(),
|
|
53086
53094
|
key: stringType(),
|
|
53087
53095
|
display_name: stringType().optional(),
|
|
@@ -53108,7 +53116,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
53108
53116
|
});
|
|
53109
53117
|
});
|
|
53110
53118
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
53111
|
-
id: stringType().default("
|
|
53119
|
+
id: stringType().default("tool_01KAA6WRPHHX2KZFGN5106EDND"),
|
|
53112
53120
|
path: stringType(),
|
|
53113
53121
|
key: stringType(),
|
|
53114
53122
|
displayName: stringType().optional(),
|
|
@@ -53204,7 +53212,7 @@ var init_fileget = __esm(() => {
|
|
|
53204
53212
|
bytes: numberType(),
|
|
53205
53213
|
file_name: stringType(),
|
|
53206
53214
|
workspace_id: stringType(),
|
|
53207
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53215
|
+
created: stringType().datetime({ offset: true }).default("2025-11-18T00:47:24.260Z").transform((v2) => new Date(v2))
|
|
53208
53216
|
}).transform((v2) => {
|
|
53209
53217
|
return remap(v2, {
|
|
53210
53218
|
_id: "id",
|
|
@@ -53220,7 +53228,7 @@ var init_fileget = __esm(() => {
|
|
|
53220
53228
|
bytes: numberType(),
|
|
53221
53229
|
fileName: stringType(),
|
|
53222
53230
|
workspaceId: stringType(),
|
|
53223
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53231
|
+
created: dateType().default(() => new Date("2025-11-18T00:47:24.260Z")).transform((v2) => v2.toISOString())
|
|
53224
53232
|
}).transform((v2) => {
|
|
53225
53233
|
return remap(v2, {
|
|
53226
53234
|
id: "_id",
|
|
@@ -53275,7 +53283,7 @@ var init_filelist = __esm(() => {
|
|
|
53275
53283
|
bytes: numberType(),
|
|
53276
53284
|
file_name: stringType(),
|
|
53277
53285
|
workspace_id: stringType(),
|
|
53278
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53286
|
+
created: stringType().datetime({ offset: true }).default("2025-11-18T00:47:24.260Z").transform((v2) => new Date(v2))
|
|
53279
53287
|
}).transform((v2) => {
|
|
53280
53288
|
return remap(v2, {
|
|
53281
53289
|
_id: "id",
|
|
@@ -53291,7 +53299,7 @@ var init_filelist = __esm(() => {
|
|
|
53291
53299
|
bytes: numberType(),
|
|
53292
53300
|
fileName: stringType(),
|
|
53293
53301
|
workspaceId: stringType(),
|
|
53294
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53302
|
+
created: dateType().default(() => new Date("2025-11-18T00:47:24.260Z")).transform((v2) => v2.toISOString())
|
|
53295
53303
|
}).transform((v2) => {
|
|
53296
53304
|
return remap(v2, {
|
|
53297
53305
|
id: "_id",
|
|
@@ -53399,7 +53407,7 @@ var init_fileupload = __esm(() => {
|
|
|
53399
53407
|
bytes: numberType(),
|
|
53400
53408
|
file_name: stringType(),
|
|
53401
53409
|
workspace_id: stringType(),
|
|
53402
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53410
|
+
created: stringType().datetime({ offset: true }).default("2025-11-18T00:47:24.260Z").transform((v2) => new Date(v2))
|
|
53403
53411
|
}).transform((v2) => {
|
|
53404
53412
|
return remap(v2, {
|
|
53405
53413
|
_id: "id",
|
|
@@ -53415,7 +53423,7 @@ var init_fileupload = __esm(() => {
|
|
|
53415
53423
|
bytes: numberType(),
|
|
53416
53424
|
fileName: stringType(),
|
|
53417
53425
|
workspaceId: stringType(),
|
|
53418
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53426
|
+
created: dateType().default(() => new Date("2025-11-18T00:47:24.260Z")).transform((v2) => v2.toISOString())
|
|
53419
53427
|
}).transform((v2) => {
|
|
53420
53428
|
return remap(v2, {
|
|
53421
53429
|
id: "_id",
|
|
@@ -53680,13 +53688,13 @@ var init_getagent2 = __esm(() => {
|
|
|
53680
53688
|
description: stringType().optional(),
|
|
53681
53689
|
name: stringType(),
|
|
53682
53690
|
schema: anyType().optional(),
|
|
53683
|
-
strict: booleanType().optional()
|
|
53691
|
+
strict: nullableType(booleanType()).optional()
|
|
53684
53692
|
});
|
|
53685
53693
|
GetAgentResponseFormatJsonSchema$outboundSchema = objectType({
|
|
53686
53694
|
description: stringType().optional(),
|
|
53687
53695
|
name: stringType(),
|
|
53688
53696
|
schema: anyType().optional(),
|
|
53689
|
-
strict: booleanType().optional()
|
|
53697
|
+
strict: nullableType(booleanType()).optional()
|
|
53690
53698
|
});
|
|
53691
53699
|
GetAgentResponseFormatAgentsJSONSchema$inboundSchema = objectType({
|
|
53692
53700
|
type: GetAgentResponseFormatAgentsResponseType$inboundSchema,
|
|
@@ -53916,13 +53924,13 @@ var init_getagent2 = __esm(() => {
|
|
|
53916
53924
|
description: stringType().optional(),
|
|
53917
53925
|
name: stringType(),
|
|
53918
53926
|
schema: anyType().optional(),
|
|
53919
|
-
strict: booleanType().optional()
|
|
53927
|
+
strict: nullableType(booleanType()).optional()
|
|
53920
53928
|
});
|
|
53921
53929
|
GetAgentResponseFormatAgentsResponseJsonSchema$outboundSchema = objectType({
|
|
53922
53930
|
description: stringType().optional(),
|
|
53923
53931
|
name: stringType(),
|
|
53924
53932
|
schema: anyType().optional(),
|
|
53925
|
-
strict: booleanType().optional()
|
|
53933
|
+
strict: nullableType(booleanType()).optional()
|
|
53926
53934
|
});
|
|
53927
53935
|
GetAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema = objectType({
|
|
53928
53936
|
type: GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
@@ -54203,6 +54211,7 @@ var init_getagent2 = __esm(() => {
|
|
|
54203
54211
|
GetAgentResponseBody$inboundSchema2 = objectType({
|
|
54204
54212
|
_id: stringType(),
|
|
54205
54213
|
key: stringType(),
|
|
54214
|
+
display_name: stringType(),
|
|
54206
54215
|
workspace_id: stringType(),
|
|
54207
54216
|
project_id: stringType(),
|
|
54208
54217
|
created_by_id: nullableType(stringType()).optional(),
|
|
@@ -54226,6 +54235,7 @@ var init_getagent2 = __esm(() => {
|
|
|
54226
54235
|
}).transform((v2) => {
|
|
54227
54236
|
return remap(v2, {
|
|
54228
54237
|
_id: "id",
|
|
54238
|
+
display_name: "displayName",
|
|
54229
54239
|
workspace_id: "workspaceId",
|
|
54230
54240
|
project_id: "projectId",
|
|
54231
54241
|
created_by_id: "createdById",
|
|
@@ -54240,6 +54250,7 @@ var init_getagent2 = __esm(() => {
|
|
|
54240
54250
|
GetAgentResponseBody$outboundSchema2 = objectType({
|
|
54241
54251
|
id: stringType(),
|
|
54242
54252
|
key: stringType(),
|
|
54253
|
+
displayName: stringType(),
|
|
54243
54254
|
workspaceId: stringType(),
|
|
54244
54255
|
projectId: stringType(),
|
|
54245
54256
|
createdById: nullableType(stringType()).optional(),
|
|
@@ -54263,6 +54274,7 @@ var init_getagent2 = __esm(() => {
|
|
|
54263
54274
|
}).transform((v2) => {
|
|
54264
54275
|
return remap(v2, {
|
|
54265
54276
|
id: "_id",
|
|
54277
|
+
displayName: "display_name",
|
|
54266
54278
|
workspaceId: "workspace_id",
|
|
54267
54279
|
projectId: "project_id",
|
|
54268
54280
|
createdById: "created_by_id",
|
|
@@ -55785,7 +55797,7 @@ var init_getalltools = __esm(() => {
|
|
|
55785
55797
|
code: stringType()
|
|
55786
55798
|
});
|
|
55787
55799
|
Data5$inboundSchema = objectType({
|
|
55788
|
-
_id: stringType().default("
|
|
55800
|
+
_id: stringType().default("tool_01KAA6WRKEQT98JJP8GNGZE2XN"),
|
|
55789
55801
|
path: stringType(),
|
|
55790
55802
|
key: stringType(),
|
|
55791
55803
|
display_name: stringType().optional(),
|
|
@@ -55813,7 +55825,7 @@ var init_getalltools = __esm(() => {
|
|
|
55813
55825
|
});
|
|
55814
55826
|
});
|
|
55815
55827
|
Data5$outboundSchema = objectType({
|
|
55816
|
-
id: stringType().default("
|
|
55828
|
+
id: stringType().default("tool_01KAA6WRKEQT98JJP8GNGZE2XN"),
|
|
55817
55829
|
path: stringType(),
|
|
55818
55830
|
key: stringType(),
|
|
55819
55831
|
displayName: stringType().optional(),
|
|
@@ -55865,13 +55877,13 @@ var init_getalltools = __esm(() => {
|
|
|
55865
55877
|
required: arrayType(stringType()).optional()
|
|
55866
55878
|
});
|
|
55867
55879
|
DataTools$inboundSchema = objectType({
|
|
55868
|
-
id: stringType().default("
|
|
55880
|
+
id: stringType().default("01KAA6WRK9S5BPPS4RDP3Y4R9N"),
|
|
55869
55881
|
name: stringType(),
|
|
55870
55882
|
description: stringType().optional(),
|
|
55871
55883
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55872
55884
|
});
|
|
55873
55885
|
DataTools$outboundSchema = objectType({
|
|
55874
|
-
id: stringType().default("
|
|
55886
|
+
id: stringType().default("01KAA6WRK9S5BPPS4RDP3Y4R9N"),
|
|
55875
55887
|
name: stringType(),
|
|
55876
55888
|
description: stringType().optional(),
|
|
55877
55889
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55901,7 +55913,7 @@ var init_getalltools = __esm(() => {
|
|
|
55901
55913
|
});
|
|
55902
55914
|
});
|
|
55903
55915
|
Data4$inboundSchema = objectType({
|
|
55904
|
-
_id: stringType().default("
|
|
55916
|
+
_id: stringType().default("tool_01KAA6WRK3ZDFMVWZDT72KX8TC"),
|
|
55905
55917
|
path: stringType(),
|
|
55906
55918
|
key: stringType(),
|
|
55907
55919
|
display_name: stringType().optional(),
|
|
@@ -55928,7 +55940,7 @@ var init_getalltools = __esm(() => {
|
|
|
55928
55940
|
});
|
|
55929
55941
|
});
|
|
55930
55942
|
Data4$outboundSchema = objectType({
|
|
55931
|
-
id: stringType().default("
|
|
55943
|
+
id: stringType().default("tool_01KAA6WRK3ZDFMVWZDT72KX8TC"),
|
|
55932
55944
|
path: stringType(),
|
|
55933
55945
|
key: stringType(),
|
|
55934
55946
|
displayName: stringType().optional(),
|
|
@@ -56017,7 +56029,7 @@ var init_getalltools = __esm(() => {
|
|
|
56017
56029
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
56018
56030
|
});
|
|
56019
56031
|
Data3$inboundSchema = objectType({
|
|
56020
|
-
_id: stringType().default("
|
|
56032
|
+
_id: stringType().default("tool_01KAA6WRJRAM82T674C8EFA5HN"),
|
|
56021
56033
|
path: stringType(),
|
|
56022
56034
|
key: stringType(),
|
|
56023
56035
|
display_name: stringType().optional(),
|
|
@@ -56044,7 +56056,7 @@ var init_getalltools = __esm(() => {
|
|
|
56044
56056
|
});
|
|
56045
56057
|
});
|
|
56046
56058
|
Data3$outboundSchema = objectType({
|
|
56047
|
-
id: stringType().default("
|
|
56059
|
+
id: stringType().default("tool_01KAA6WRJRAM82T674C8EFA5HN"),
|
|
56048
56060
|
path: stringType(),
|
|
56049
56061
|
key: stringType(),
|
|
56050
56062
|
displayName: stringType().optional(),
|
|
@@ -56105,7 +56117,7 @@ var init_getalltools = __esm(() => {
|
|
|
56105
56117
|
strict: booleanType().optional()
|
|
56106
56118
|
});
|
|
56107
56119
|
Data2$inboundSchema = objectType({
|
|
56108
|
-
_id: stringType().default("
|
|
56120
|
+
_id: stringType().default("tool_01KAA6WRHW1G04KKVZRCN0W3QN"),
|
|
56109
56121
|
path: stringType(),
|
|
56110
56122
|
key: stringType(),
|
|
56111
56123
|
display_name: stringType().optional(),
|
|
@@ -56133,7 +56145,7 @@ var init_getalltools = __esm(() => {
|
|
|
56133
56145
|
});
|
|
56134
56146
|
});
|
|
56135
56147
|
Data2$outboundSchema = objectType({
|
|
56136
|
-
id: stringType().default("
|
|
56148
|
+
id: stringType().default("tool_01KAA6WRHW1G04KKVZRCN0W3QN"),
|
|
56137
56149
|
path: stringType(),
|
|
56138
56150
|
key: stringType(),
|
|
56139
56151
|
displayName: stringType().optional(),
|
|
@@ -56197,7 +56209,7 @@ var init_getalltools = __esm(() => {
|
|
|
56197
56209
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
56198
56210
|
});
|
|
56199
56211
|
Data1$inboundSchema = objectType({
|
|
56200
|
-
_id: stringType().default("
|
|
56212
|
+
_id: stringType().default("tool_01KAA6WRHRRN0MHTDXTBJMRRWG"),
|
|
56201
56213
|
path: stringType(),
|
|
56202
56214
|
key: stringType(),
|
|
56203
56215
|
display_name: stringType().optional(),
|
|
@@ -56224,7 +56236,7 @@ var init_getalltools = __esm(() => {
|
|
|
56224
56236
|
});
|
|
56225
56237
|
});
|
|
56226
56238
|
Data1$outboundSchema = objectType({
|
|
56227
|
-
id: stringType().default("
|
|
56239
|
+
id: stringType().default("tool_01KAA6WRHRRN0MHTDXTBJMRRWG"),
|
|
56228
56240
|
path: stringType(),
|
|
56229
56241
|
key: stringType(),
|
|
56230
56242
|
displayName: stringType().optional(),
|
|
@@ -56366,7 +56378,7 @@ var init_getbudget = __esm(() => {
|
|
|
56366
56378
|
is_active: booleanType(),
|
|
56367
56379
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
56368
56380
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56369
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
56381
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.633Z").transform((v2) => new Date(v2))
|
|
56370
56382
|
}).transform((v2) => {
|
|
56371
56383
|
return remap(v2, {
|
|
56372
56384
|
_id: "id",
|
|
@@ -56384,7 +56396,7 @@ var init_getbudget = __esm(() => {
|
|
|
56384
56396
|
isActive: booleanType(),
|
|
56385
56397
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
56386
56398
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56387
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
56399
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.633Z")).transform((v2) => v2.toISOString())
|
|
56388
56400
|
}).transform((v2) => {
|
|
56389
56401
|
return remap(v2, {
|
|
56390
56402
|
id: "_id",
|
|
@@ -56753,8 +56765,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56753
56765
|
DataTypescript$inboundSchema = objectType({
|
|
56754
56766
|
_id: stringType(),
|
|
56755
56767
|
description: stringType(),
|
|
56756
|
-
created: stringType().default("2025-11-
|
|
56757
|
-
updated: stringType().default("2025-11-
|
|
56768
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56769
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56758
56770
|
guardrail_config: unionType([
|
|
56759
56771
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56760
56772
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56771,8 +56783,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56771
56783
|
DataTypescript$outboundSchema = objectType({
|
|
56772
56784
|
id: stringType(),
|
|
56773
56785
|
description: stringType(),
|
|
56774
|
-
created: stringType().default("2025-11-
|
|
56775
|
-
updated: stringType().default("2025-11-
|
|
56786
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56787
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56776
56788
|
guardrailConfig: unionType([
|
|
56777
56789
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56778
56790
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56829,8 +56841,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56829
56841
|
DataRagas$inboundSchema = objectType({
|
|
56830
56842
|
_id: stringType(),
|
|
56831
56843
|
description: stringType(),
|
|
56832
|
-
created: stringType().default("2025-11-
|
|
56833
|
-
updated: stringType().default("2025-11-
|
|
56844
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56845
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56834
56846
|
guardrail_config: unionType([
|
|
56835
56847
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56836
56848
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56849,8 +56861,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56849
56861
|
DataRagas$outboundSchema = objectType({
|
|
56850
56862
|
id: stringType(),
|
|
56851
56863
|
description: stringType(),
|
|
56852
|
-
created: stringType().default("2025-11-
|
|
56853
|
-
updated: stringType().default("2025-11-
|
|
56864
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56865
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
56854
56866
|
guardrailConfig: unionType([
|
|
56855
56867
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56856
56868
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -57287,8 +57299,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57287
57299
|
DataFunction$inboundSchema = objectType({
|
|
57288
57300
|
_id: stringType(),
|
|
57289
57301
|
description: stringType(),
|
|
57290
|
-
created: stringType().default("2025-11-
|
|
57291
|
-
updated: stringType().default("2025-11-
|
|
57302
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57303
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57292
57304
|
guardrail_config: unionType([
|
|
57293
57305
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
57294
57306
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -57342,8 +57354,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57342
57354
|
DataFunction$outboundSchema = objectType({
|
|
57343
57355
|
id: stringType(),
|
|
57344
57356
|
description: stringType(),
|
|
57345
|
-
created: stringType().default("2025-11-
|
|
57346
|
-
updated: stringType().default("2025-11-
|
|
57357
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57358
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57347
57359
|
guardrailConfig: unionType([
|
|
57348
57360
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
57349
57361
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -57435,8 +57447,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57435
57447
|
DataPython$inboundSchema = objectType({
|
|
57436
57448
|
_id: stringType(),
|
|
57437
57449
|
description: stringType(),
|
|
57438
|
-
created: stringType().default("2025-11-
|
|
57439
|
-
updated: stringType().default("2025-11-
|
|
57450
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57451
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57440
57452
|
guardrail_config: unionType([
|
|
57441
57453
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
57442
57454
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -57453,8 +57465,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57453
57465
|
DataPython$outboundSchema = objectType({
|
|
57454
57466
|
id: stringType(),
|
|
57455
57467
|
description: stringType(),
|
|
57456
|
-
created: stringType().default("2025-11-
|
|
57457
|
-
updated: stringType().default("2025-11-
|
|
57468
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57469
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57458
57470
|
guardrailConfig: unionType([
|
|
57459
57471
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
57460
57472
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -57511,8 +57523,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57511
57523
|
DataHTTP$inboundSchema = objectType({
|
|
57512
57524
|
_id: stringType(),
|
|
57513
57525
|
description: stringType(),
|
|
57514
|
-
created: stringType().default("2025-11-
|
|
57515
|
-
updated: stringType().default("2025-11-
|
|
57526
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57527
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57516
57528
|
guardrail_config: unionType([
|
|
57517
57529
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
57518
57530
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -57532,8 +57544,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57532
57544
|
DataHTTP$outboundSchema = objectType({
|
|
57533
57545
|
id: stringType(),
|
|
57534
57546
|
description: stringType(),
|
|
57535
|
-
created: stringType().default("2025-11-
|
|
57536
|
-
updated: stringType().default("2025-11-
|
|
57547
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57548
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57537
57549
|
guardrailConfig: unionType([
|
|
57538
57550
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
57539
57551
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57591,8 +57603,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57591
57603
|
DataJSON$inboundSchema = objectType({
|
|
57592
57604
|
_id: stringType(),
|
|
57593
57605
|
description: stringType(),
|
|
57594
|
-
created: stringType().default("2025-11-
|
|
57595
|
-
updated: stringType().default("2025-11-
|
|
57606
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57607
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57596
57608
|
guardrail_config: unionType([
|
|
57597
57609
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57598
57610
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57609,8 +57621,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57609
57621
|
DataJSON$outboundSchema = objectType({
|
|
57610
57622
|
id: stringType(),
|
|
57611
57623
|
description: stringType(),
|
|
57612
|
-
created: stringType().default("2025-11-
|
|
57613
|
-
updated: stringType().default("2025-11-
|
|
57624
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57625
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57614
57626
|
guardrailConfig: unionType([
|
|
57615
57627
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57616
57628
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57665,8 +57677,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57665
57677
|
DataLLM$inboundSchema = objectType({
|
|
57666
57678
|
_id: stringType(),
|
|
57667
57679
|
description: stringType(),
|
|
57668
|
-
created: stringType().default("2025-11-
|
|
57669
|
-
updated: stringType().default("2025-11-
|
|
57680
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57681
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57670
57682
|
guardrail_config: unionType([
|
|
57671
57683
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57672
57684
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57684,8 +57696,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57684
57696
|
DataLLM$outboundSchema = objectType({
|
|
57685
57697
|
id: stringType(),
|
|
57686
57698
|
description: stringType(),
|
|
57687
|
-
created: stringType().default("2025-11-
|
|
57688
|
-
updated: stringType().default("2025-11-
|
|
57699
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57700
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
57689
57701
|
guardrailConfig: unionType([
|
|
57690
57702
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57691
57703
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -60080,13 +60092,13 @@ var init_listagents = __esm(() => {
|
|
|
60080
60092
|
description: stringType().optional(),
|
|
60081
60093
|
name: stringType(),
|
|
60082
60094
|
schema: anyType().optional(),
|
|
60083
|
-
strict: booleanType().optional()
|
|
60095
|
+
strict: nullableType(booleanType()).optional()
|
|
60084
60096
|
});
|
|
60085
60097
|
ListAgentsResponseFormatJsonSchema$outboundSchema = objectType({
|
|
60086
60098
|
description: stringType().optional(),
|
|
60087
60099
|
name: stringType(),
|
|
60088
60100
|
schema: anyType().optional(),
|
|
60089
|
-
strict: booleanType().optional()
|
|
60101
|
+
strict: nullableType(booleanType()).optional()
|
|
60090
60102
|
});
|
|
60091
60103
|
ListAgentsResponseFormatAgentsJSONSchema$inboundSchema = objectType({
|
|
60092
60104
|
type: ListAgentsResponseFormatAgentsResponseType$inboundSchema,
|
|
@@ -60316,13 +60328,13 @@ var init_listagents = __esm(() => {
|
|
|
60316
60328
|
description: stringType().optional(),
|
|
60317
60329
|
name: stringType(),
|
|
60318
60330
|
schema: anyType().optional(),
|
|
60319
|
-
strict: booleanType().optional()
|
|
60331
|
+
strict: nullableType(booleanType()).optional()
|
|
60320
60332
|
});
|
|
60321
60333
|
ListAgentsResponseFormatAgentsResponseJsonSchema$outboundSchema = objectType({
|
|
60322
60334
|
description: stringType().optional(),
|
|
60323
60335
|
name: stringType(),
|
|
60324
60336
|
schema: anyType().optional(),
|
|
60325
|
-
strict: booleanType().optional()
|
|
60337
|
+
strict: nullableType(booleanType()).optional()
|
|
60326
60338
|
});
|
|
60327
60339
|
ListAgentsResponseFormatAgentsResponse200JSONSchema$inboundSchema = objectType({
|
|
60328
60340
|
type: ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
@@ -60603,6 +60615,7 @@ var init_listagents = __esm(() => {
|
|
|
60603
60615
|
ListAgentsData$inboundSchema = objectType({
|
|
60604
60616
|
_id: stringType(),
|
|
60605
60617
|
key: stringType(),
|
|
60618
|
+
display_name: stringType(),
|
|
60606
60619
|
workspace_id: stringType(),
|
|
60607
60620
|
project_id: stringType(),
|
|
60608
60621
|
created_by_id: nullableType(stringType()).optional(),
|
|
@@ -60626,6 +60639,7 @@ var init_listagents = __esm(() => {
|
|
|
60626
60639
|
}).transform((v2) => {
|
|
60627
60640
|
return remap(v2, {
|
|
60628
60641
|
_id: "id",
|
|
60642
|
+
display_name: "displayName",
|
|
60629
60643
|
workspace_id: "workspaceId",
|
|
60630
60644
|
project_id: "projectId",
|
|
60631
60645
|
created_by_id: "createdById",
|
|
@@ -60640,6 +60654,7 @@ var init_listagents = __esm(() => {
|
|
|
60640
60654
|
ListAgentsData$outboundSchema = objectType({
|
|
60641
60655
|
id: stringType(),
|
|
60642
60656
|
key: stringType(),
|
|
60657
|
+
displayName: stringType(),
|
|
60643
60658
|
workspaceId: stringType(),
|
|
60644
60659
|
projectId: stringType(),
|
|
60645
60660
|
createdById: nullableType(stringType()).optional(),
|
|
@@ -60663,6 +60678,7 @@ var init_listagents = __esm(() => {
|
|
|
60663
60678
|
}).transform((v2) => {
|
|
60664
60679
|
return remap(v2, {
|
|
60665
60680
|
id: "_id",
|
|
60681
|
+
displayName: "display_name",
|
|
60666
60682
|
workspaceId: "workspace_id",
|
|
60667
60683
|
projectId: "project_id",
|
|
60668
60684
|
createdById: "created_by_id",
|
|
@@ -61101,7 +61117,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61101
61117
|
is_active: booleanType(),
|
|
61102
61118
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
61103
61119
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61104
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61120
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.633Z").transform((v2) => new Date(v2))
|
|
61105
61121
|
}).transform((v2) => {
|
|
61106
61122
|
return remap(v2, {
|
|
61107
61123
|
_id: "id",
|
|
@@ -61117,7 +61133,7 @@ var init_listbudgets = __esm(() => {
|
|
|
61117
61133
|
isActive: booleanType(),
|
|
61118
61134
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
61119
61135
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61120
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61136
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.633Z")).transform((v2) => v2.toISOString())
|
|
61121
61137
|
}).transform((v2) => {
|
|
61122
61138
|
return remap(v2, {
|
|
61123
61139
|
id: "_id",
|
|
@@ -61444,7 +61460,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61444
61460
|
tags: arrayType(stringType()).optional(),
|
|
61445
61461
|
metadata: recordType(anyType()).optional(),
|
|
61446
61462
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61447
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61463
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2)),
|
|
61448
61464
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
61449
61465
|
}).transform((v2) => {
|
|
61450
61466
|
return remap(v2, {
|
|
@@ -61463,7 +61479,7 @@ var init_listcontacts = __esm(() => {
|
|
|
61463
61479
|
tags: arrayType(stringType()).optional(),
|
|
61464
61480
|
metadata: recordType(anyType()).optional(),
|
|
61465
61481
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61466
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61482
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString()),
|
|
61467
61483
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
61468
61484
|
}).transform((v2) => {
|
|
61469
61485
|
return remap(v2, {
|
|
@@ -62052,7 +62068,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62052
62068
|
human_review_id: stringType(),
|
|
62053
62069
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
62054
62070
|
reviewed_by_id: stringType(),
|
|
62055
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62071
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.798Z").transform((v2) => new Date(v2)),
|
|
62056
62072
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
62057
62073
|
values: arrayType(stringType())
|
|
62058
62074
|
}).transform((v2) => {
|
|
@@ -62069,7 +62085,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62069
62085
|
humanReviewId: stringType(),
|
|
62070
62086
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
62071
62087
|
reviewedById: stringType(),
|
|
62072
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62088
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.798Z")).transform((v2) => v2.toISOString()),
|
|
62073
62089
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
62074
62090
|
values: arrayType(stringType())
|
|
62075
62091
|
}).transform((v2) => {
|
|
@@ -62092,7 +62108,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62092
62108
|
human_review_id: stringType(),
|
|
62093
62109
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
62094
62110
|
reviewed_by_id: stringType(),
|
|
62095
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62111
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.797Z").transform((v2) => new Date(v2)),
|
|
62096
62112
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
62097
62113
|
value: numberType()
|
|
62098
62114
|
}).transform((v2) => {
|
|
@@ -62109,7 +62125,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62109
62125
|
humanReviewId: stringType(),
|
|
62110
62126
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
62111
62127
|
reviewedById: stringType(),
|
|
62112
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62128
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.797Z")).transform((v2) => v2.toISOString()),
|
|
62113
62129
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
62114
62130
|
value: numberType()
|
|
62115
62131
|
}).transform((v2) => {
|
|
@@ -62132,7 +62148,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62132
62148
|
human_review_id: stringType(),
|
|
62133
62149
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
62134
62150
|
reviewed_by_id: stringType(),
|
|
62135
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
62151
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.793Z").transform((v2) => new Date(v2)),
|
|
62136
62152
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
62137
62153
|
value: stringType()
|
|
62138
62154
|
}).transform((v2) => {
|
|
@@ -62149,7 +62165,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62149
62165
|
humanReviewId: stringType(),
|
|
62150
62166
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
62151
62167
|
reviewedById: stringType(),
|
|
62152
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
62168
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.793Z")).transform((v2) => v2.toISOString()),
|
|
62153
62169
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
62154
62170
|
value: stringType()
|
|
62155
62171
|
}).transform((v2) => {
|
|
@@ -62192,7 +62208,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62192
62208
|
created_by_id: stringType().optional(),
|
|
62193
62209
|
updated_by_id: stringType().optional(),
|
|
62194
62210
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62195
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62211
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
62196
62212
|
}).transform((v2) => {
|
|
62197
62213
|
return remap(v2, {
|
|
62198
62214
|
_id: "id",
|
|
@@ -62226,7 +62242,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
62226
62242
|
createdById: stringType().optional(),
|
|
62227
62243
|
updatedById: stringType().optional(),
|
|
62228
62244
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62229
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62245
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
62230
62246
|
}).transform((v2) => {
|
|
62231
62247
|
return remap(v2, {
|
|
62232
62248
|
id: "_id",
|
|
@@ -62315,7 +62331,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62315
62331
|
created_by_id: stringType().optional(),
|
|
62316
62332
|
updated_by_id: stringType().optional(),
|
|
62317
62333
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62318
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
62334
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
62319
62335
|
}).transform((v2) => {
|
|
62320
62336
|
return remap(v2, {
|
|
62321
62337
|
_id: "id",
|
|
@@ -62335,7 +62351,7 @@ var init_listdatasets = __esm(() => {
|
|
|
62335
62351
|
createdById: stringType().optional(),
|
|
62336
62352
|
updatedById: stringType().optional(),
|
|
62337
62353
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62338
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62354
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
62339
62355
|
}).transform((v2) => {
|
|
62340
62356
|
return remap(v2, {
|
|
62341
62357
|
id: "_id",
|
|
@@ -62416,7 +62432,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62416
62432
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
62417
62433
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
62418
62434
|
ListDatasourcesData$inboundSchema = objectType({
|
|
62419
|
-
_id: stringType().default("
|
|
62435
|
+
_id: stringType().default("01KAA6WRTJQTJGTVZ33TBWSDS7"),
|
|
62420
62436
|
display_name: stringType(),
|
|
62421
62437
|
description: stringType().optional(),
|
|
62422
62438
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -62439,7 +62455,7 @@ var init_listdatasources = __esm(() => {
|
|
|
62439
62455
|
});
|
|
62440
62456
|
});
|
|
62441
62457
|
ListDatasourcesData$outboundSchema = objectType({
|
|
62442
|
-
id: stringType().default("
|
|
62458
|
+
id: stringType().default("01KAA6WRTJQTJGTVZ33TBWSDS7"),
|
|
62443
62459
|
displayName: stringType(),
|
|
62444
62460
|
description: stringType().optional(),
|
|
62445
62461
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63904,7 +63920,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63904
63920
|
tags: arrayType(stringType()).optional(),
|
|
63905
63921
|
metadata: recordType(anyType()).optional(),
|
|
63906
63922
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63907
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63923
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
63908
63924
|
}).transform((v2) => {
|
|
63909
63925
|
return remap(v2, {
|
|
63910
63926
|
_id: "id",
|
|
@@ -63922,7 +63938,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63922
63938
|
tags: arrayType(stringType()).optional(),
|
|
63923
63939
|
metadata: recordType(anyType()).optional(),
|
|
63924
63940
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63925
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63941
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
63926
63942
|
}).transform((v2) => {
|
|
63927
63943
|
return remap(v2, {
|
|
63928
63944
|
id: "_id",
|
|
@@ -64481,7 +64497,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64481
64497
|
human_review_id: stringType(),
|
|
64482
64498
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
64483
64499
|
reviewed_by_id: stringType(),
|
|
64484
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64500
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.834Z").transform((v2) => new Date(v2)),
|
|
64485
64501
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
64486
64502
|
values: arrayType(stringType())
|
|
64487
64503
|
}).transform((v2) => {
|
|
@@ -64498,7 +64514,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64498
64514
|
humanReviewId: stringType(),
|
|
64499
64515
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
64500
64516
|
reviewedById: stringType(),
|
|
64501
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64517
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.834Z")).transform((v2) => v2.toISOString()),
|
|
64502
64518
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
64503
64519
|
values: arrayType(stringType())
|
|
64504
64520
|
}).transform((v2) => {
|
|
@@ -64521,7 +64537,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64521
64537
|
human_review_id: stringType(),
|
|
64522
64538
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64523
64539
|
reviewed_by_id: stringType(),
|
|
64524
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64540
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.830Z").transform((v2) => new Date(v2)),
|
|
64525
64541
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
64526
64542
|
value: numberType()
|
|
64527
64543
|
}).transform((v2) => {
|
|
@@ -64538,7 +64554,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64538
64554
|
humanReviewId: stringType(),
|
|
64539
64555
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64540
64556
|
reviewedById: stringType(),
|
|
64541
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64557
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.830Z")).transform((v2) => v2.toISOString()),
|
|
64542
64558
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
64543
64559
|
value: numberType()
|
|
64544
64560
|
}).transform((v2) => {
|
|
@@ -64561,7 +64577,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64561
64577
|
human_review_id: stringType(),
|
|
64562
64578
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
64563
64579
|
reviewed_by_id: stringType(),
|
|
64564
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64580
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.829Z").transform((v2) => new Date(v2)),
|
|
64565
64581
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
64566
64582
|
value: stringType()
|
|
64567
64583
|
}).transform((v2) => {
|
|
@@ -64578,7 +64594,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64578
64594
|
humanReviewId: stringType(),
|
|
64579
64595
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
64580
64596
|
reviewedById: stringType(),
|
|
64581
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64597
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.829Z")).transform((v2) => v2.toISOString()),
|
|
64582
64598
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
64583
64599
|
value: stringType()
|
|
64584
64600
|
}).transform((v2) => {
|
|
@@ -64621,7 +64637,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64621
64637
|
created_by_id: stringType().optional(),
|
|
64622
64638
|
updated_by_id: stringType().optional(),
|
|
64623
64639
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64624
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64640
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
64625
64641
|
}).transform((v2) => {
|
|
64626
64642
|
return remap(v2, {
|
|
64627
64643
|
_id: "id",
|
|
@@ -64655,7 +64671,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64655
64671
|
createdById: stringType().optional(),
|
|
64656
64672
|
updatedById: stringType().optional(),
|
|
64657
64673
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64658
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64674
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
64659
64675
|
}).transform((v2) => {
|
|
64660
64676
|
return remap(v2, {
|
|
64661
64677
|
id: "_id",
|
|
@@ -64715,7 +64731,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64715
64731
|
created_by_id: stringType().optional(),
|
|
64716
64732
|
updated_by_id: stringType().optional(),
|
|
64717
64733
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64718
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64734
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
64719
64735
|
}).transform((v2) => {
|
|
64720
64736
|
return remap(v2, {
|
|
64721
64737
|
_id: "id",
|
|
@@ -64735,7 +64751,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64735
64751
|
createdById: stringType().optional(),
|
|
64736
64752
|
updatedById: stringType().optional(),
|
|
64737
64753
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64738
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64754
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
64739
64755
|
}).transform((v2) => {
|
|
64740
64756
|
return remap(v2, {
|
|
64741
64757
|
id: "_id",
|
|
@@ -64781,7 +64797,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64781
64797
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64782
64798
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64783
64799
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64784
|
-
_id: stringType().default("
|
|
64800
|
+
_id: stringType().default("01KAA6WRTKJ254Q32TJKEPSHFG"),
|
|
64785
64801
|
display_name: stringType(),
|
|
64786
64802
|
description: stringType().optional(),
|
|
64787
64803
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64804,7 +64820,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64804
64820
|
});
|
|
64805
64821
|
});
|
|
64806
64822
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64807
|
-
id: stringType().default("
|
|
64823
|
+
id: stringType().default("01KAA6WRTKJ254Q32TJKEPSHFG"),
|
|
64808
64824
|
displayName: stringType(),
|
|
64809
64825
|
description: stringType().optional(),
|
|
64810
64826
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -65369,7 +65385,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65369
65385
|
code: stringType()
|
|
65370
65386
|
});
|
|
65371
65387
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
65372
|
-
_id: stringType().default("
|
|
65388
|
+
_id: stringType().default("tool_01KAA6WRQ0TTCMBET3V7PW51Z1"),
|
|
65373
65389
|
path: stringType(),
|
|
65374
65390
|
key: stringType(),
|
|
65375
65391
|
display_name: stringType().optional(),
|
|
@@ -65397,7 +65413,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65397
65413
|
});
|
|
65398
65414
|
});
|
|
65399
65415
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
65400
|
-
id: stringType().default("
|
|
65416
|
+
id: stringType().default("tool_01KAA6WRQ0TTCMBET3V7PW51Z1"),
|
|
65401
65417
|
path: stringType(),
|
|
65402
65418
|
key: stringType(),
|
|
65403
65419
|
displayName: stringType().optional(),
|
|
@@ -65449,13 +65465,13 @@ var init_retrievetool = __esm(() => {
|
|
|
65449
65465
|
required: arrayType(stringType()).optional()
|
|
65450
65466
|
});
|
|
65451
65467
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
65452
|
-
id: stringType().default("
|
|
65468
|
+
id: stringType().default("01KAA6WRPZW66MFF82Z6MJRZY8"),
|
|
65453
65469
|
name: stringType(),
|
|
65454
65470
|
description: stringType().optional(),
|
|
65455
65471
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
65456
65472
|
});
|
|
65457
65473
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
65458
|
-
id: stringType().default("
|
|
65474
|
+
id: stringType().default("01KAA6WRPZW66MFF82Z6MJRZY8"),
|
|
65459
65475
|
name: stringType(),
|
|
65460
65476
|
description: stringType().optional(),
|
|
65461
65477
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -65485,7 +65501,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65485
65501
|
});
|
|
65486
65502
|
});
|
|
65487
65503
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
65488
|
-
_id: stringType().default("
|
|
65504
|
+
_id: stringType().default("tool_01KAA6WRPYPYVCJTJCS5ZY8P67"),
|
|
65489
65505
|
path: stringType(),
|
|
65490
65506
|
key: stringType(),
|
|
65491
65507
|
display_name: stringType().optional(),
|
|
@@ -65512,7 +65528,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65512
65528
|
});
|
|
65513
65529
|
});
|
|
65514
65530
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
65515
|
-
id: stringType().default("
|
|
65531
|
+
id: stringType().default("tool_01KAA6WRPYPYVCJTJCS5ZY8P67"),
|
|
65516
65532
|
path: stringType(),
|
|
65517
65533
|
key: stringType(),
|
|
65518
65534
|
displayName: stringType().optional(),
|
|
@@ -65601,7 +65617,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65601
65617
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
65602
65618
|
});
|
|
65603
65619
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
65604
|
-
_id: stringType().default("
|
|
65620
|
+
_id: stringType().default("tool_01KAA6WRPW412RM8A9FYRYWKFX"),
|
|
65605
65621
|
path: stringType(),
|
|
65606
65622
|
key: stringType(),
|
|
65607
65623
|
display_name: stringType().optional(),
|
|
@@ -65628,7 +65644,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65628
65644
|
});
|
|
65629
65645
|
});
|
|
65630
65646
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
65631
|
-
id: stringType().default("
|
|
65647
|
+
id: stringType().default("tool_01KAA6WRPW412RM8A9FYRYWKFX"),
|
|
65632
65648
|
path: stringType(),
|
|
65633
65649
|
key: stringType(),
|
|
65634
65650
|
displayName: stringType().optional(),
|
|
@@ -65689,7 +65705,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65689
65705
|
strict: booleanType().optional()
|
|
65690
65706
|
});
|
|
65691
65707
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65692
|
-
_id: stringType().default("
|
|
65708
|
+
_id: stringType().default("tool_01KAA6WRPVHA57NBM948Y1H3P8"),
|
|
65693
65709
|
path: stringType(),
|
|
65694
65710
|
key: stringType(),
|
|
65695
65711
|
display_name: stringType().optional(),
|
|
@@ -65717,7 +65733,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65717
65733
|
});
|
|
65718
65734
|
});
|
|
65719
65735
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65720
|
-
id: stringType().default("
|
|
65736
|
+
id: stringType().default("tool_01KAA6WRPVHA57NBM948Y1H3P8"),
|
|
65721
65737
|
path: stringType(),
|
|
65722
65738
|
key: stringType(),
|
|
65723
65739
|
displayName: stringType().optional(),
|
|
@@ -65781,7 +65797,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65781
65797
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
65782
65798
|
});
|
|
65783
65799
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65784
|
-
_id: stringType().default("
|
|
65800
|
+
_id: stringType().default("tool_01KAA6WRPSD2ZP53WWFXWAMEJE"),
|
|
65785
65801
|
path: stringType(),
|
|
65786
65802
|
key: stringType(),
|
|
65787
65803
|
display_name: stringType().optional(),
|
|
@@ -65808,7 +65824,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65808
65824
|
});
|
|
65809
65825
|
});
|
|
65810
65826
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65811
|
-
id: stringType().default("
|
|
65827
|
+
id: stringType().default("tool_01KAA6WRPSD2ZP53WWFXWAMEJE"),
|
|
65812
65828
|
path: stringType(),
|
|
65813
65829
|
key: stringType(),
|
|
65814
65830
|
displayName: stringType().optional(),
|
|
@@ -66092,13 +66108,13 @@ var init_runagent = __esm(() => {
|
|
|
66092
66108
|
description: stringType().optional(),
|
|
66093
66109
|
name: stringType(),
|
|
66094
66110
|
schema: anyType().optional(),
|
|
66095
|
-
strict: booleanType().optional()
|
|
66111
|
+
strict: nullableType(booleanType()).optional()
|
|
66096
66112
|
});
|
|
66097
66113
|
RunAgentResponseFormatAgentsJsonSchema$outboundSchema = objectType({
|
|
66098
66114
|
description: stringType().optional(),
|
|
66099
66115
|
name: stringType(),
|
|
66100
66116
|
schema: anyType().optional(),
|
|
66101
|
-
strict: booleanType().optional()
|
|
66117
|
+
strict: nullableType(booleanType()).optional()
|
|
66102
66118
|
});
|
|
66103
66119
|
RunAgentResponseFormatJSONSchema$inboundSchema = objectType({
|
|
66104
66120
|
type: RunAgentResponseFormatAgentsRequestType$inboundSchema,
|
|
@@ -66346,13 +66362,13 @@ var init_runagent = __esm(() => {
|
|
|
66346
66362
|
description: stringType().optional(),
|
|
66347
66363
|
name: stringType(),
|
|
66348
66364
|
schema: anyType().optional(),
|
|
66349
|
-
strict: booleanType().optional()
|
|
66365
|
+
strict: nullableType(booleanType()).optional()
|
|
66350
66366
|
});
|
|
66351
66367
|
RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema = objectType({
|
|
66352
66368
|
description: stringType().optional(),
|
|
66353
66369
|
name: stringType(),
|
|
66354
66370
|
schema: anyType().optional(),
|
|
66355
|
-
strict: booleanType().optional()
|
|
66371
|
+
strict: nullableType(booleanType()).optional()
|
|
66356
66372
|
});
|
|
66357
66373
|
RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema = objectType({
|
|
66358
66374
|
type: RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema,
|
|
@@ -66781,13 +66797,13 @@ var init_runagent = __esm(() => {
|
|
|
66781
66797
|
required: arrayType(stringType()).optional()
|
|
66782
66798
|
});
|
|
66783
66799
|
Tools$inboundSchema = objectType({
|
|
66784
|
-
id: stringType().default("
|
|
66800
|
+
id: stringType().default("01KAA6WQT5G82EQ126G76K5R78"),
|
|
66785
66801
|
name: stringType(),
|
|
66786
66802
|
description: stringType().optional(),
|
|
66787
66803
|
schema: lazyType(() => Schema$inboundSchema)
|
|
66788
66804
|
});
|
|
66789
66805
|
Tools$outboundSchema = objectType({
|
|
66790
|
-
id: stringType().default("
|
|
66806
|
+
id: stringType().default("01KAA6WQT5G82EQ126G76K5R78"),
|
|
66791
66807
|
name: stringType(),
|
|
66792
66808
|
description: stringType().optional(),
|
|
66793
66809
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -68630,13 +68646,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68630
68646
|
description: stringType().optional(),
|
|
68631
68647
|
name: stringType(),
|
|
68632
68648
|
schema: anyType().optional(),
|
|
68633
|
-
strict: booleanType().optional()
|
|
68649
|
+
strict: nullableType(booleanType()).optional()
|
|
68634
68650
|
});
|
|
68635
68651
|
StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema = objectType({
|
|
68636
68652
|
description: stringType().optional(),
|
|
68637
68653
|
name: stringType(),
|
|
68638
68654
|
schema: anyType().optional(),
|
|
68639
|
-
strict: booleanType().optional()
|
|
68655
|
+
strict: nullableType(booleanType()).optional()
|
|
68640
68656
|
});
|
|
68641
68657
|
StreamRunAgentResponseFormatJSONSchema$inboundSchema = objectType({
|
|
68642
68658
|
type: StreamRunAgentResponseFormatAgentsRequestType$inboundSchema,
|
|
@@ -68884,13 +68900,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68884
68900
|
description: stringType().optional(),
|
|
68885
68901
|
name: stringType(),
|
|
68886
68902
|
schema: anyType().optional(),
|
|
68887
|
-
strict: booleanType().optional()
|
|
68903
|
+
strict: nullableType(booleanType()).optional()
|
|
68888
68904
|
});
|
|
68889
68905
|
StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema = objectType({
|
|
68890
68906
|
description: stringType().optional(),
|
|
68891
68907
|
name: stringType(),
|
|
68892
68908
|
schema: anyType().optional(),
|
|
68893
|
-
strict: booleanType().optional()
|
|
68909
|
+
strict: nullableType(booleanType()).optional()
|
|
68894
68910
|
});
|
|
68895
68911
|
StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema = objectType({
|
|
68896
68912
|
type: StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema,
|
|
@@ -69319,13 +69335,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
69319
69335
|
required: arrayType(stringType()).optional()
|
|
69320
69336
|
});
|
|
69321
69337
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
69322
|
-
id: stringType().default("
|
|
69338
|
+
id: stringType().default("01KAA6WQXCNX79B4C9W9BFD6VS"),
|
|
69323
69339
|
name: stringType(),
|
|
69324
69340
|
description: stringType().optional(),
|
|
69325
69341
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
69326
69342
|
});
|
|
69327
69343
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
69328
|
-
id: stringType().default("
|
|
69344
|
+
id: stringType().default("01KAA6WQXCNX79B4C9W9BFD6VS"),
|
|
69329
69345
|
name: stringType(),
|
|
69330
69346
|
description: stringType().optional(),
|
|
69331
69347
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -70167,7 +70183,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70167
70183
|
errors: arrayType(stringType())
|
|
70168
70184
|
});
|
|
70169
70185
|
SyncMcpToolResponseBody5$inboundSchema = objectType({
|
|
70170
|
-
_id: stringType().default("
|
|
70186
|
+
_id: stringType().default("tool_01KAA6WRQCYGN4JCQBAQHVZHC8"),
|
|
70171
70187
|
path: stringType(),
|
|
70172
70188
|
key: stringType(),
|
|
70173
70189
|
display_name: stringType().optional(),
|
|
@@ -70196,7 +70212,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70196
70212
|
});
|
|
70197
70213
|
});
|
|
70198
70214
|
SyncMcpToolResponseBody5$outboundSchema = objectType({
|
|
70199
|
-
id: stringType().default("
|
|
70215
|
+
id: stringType().default("tool_01KAA6WRQCYGN4JCQBAQHVZHC8"),
|
|
70200
70216
|
path: stringType(),
|
|
70201
70217
|
key: stringType(),
|
|
70202
70218
|
displayName: stringType().optional(),
|
|
@@ -70249,13 +70265,13 @@ var init_syncmcptool = __esm(() => {
|
|
|
70249
70265
|
required: arrayType(stringType()).optional()
|
|
70250
70266
|
});
|
|
70251
70267
|
SyncMcpToolResponseBodyTools$inboundSchema = objectType({
|
|
70252
|
-
id: stringType().default("
|
|
70268
|
+
id: stringType().default("01KAA6WRQB2PBSS9PY6G84TZ8S"),
|
|
70253
70269
|
name: stringType(),
|
|
70254
70270
|
description: stringType().optional(),
|
|
70255
70271
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema)
|
|
70256
70272
|
});
|
|
70257
70273
|
SyncMcpToolResponseBodyTools$outboundSchema = objectType({
|
|
70258
|
-
id: stringType().default("
|
|
70274
|
+
id: stringType().default("01KAA6WRQB2PBSS9PY6G84TZ8S"),
|
|
70259
70275
|
name: stringType(),
|
|
70260
70276
|
description: stringType().optional(),
|
|
70261
70277
|
schema: lazyType(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -70297,7 +70313,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70297
70313
|
errors: arrayType(stringType())
|
|
70298
70314
|
});
|
|
70299
70315
|
SyncMcpToolResponseBody4$inboundSchema = objectType({
|
|
70300
|
-
_id: stringType().default("
|
|
70316
|
+
_id: stringType().default("tool_01KAA6WRQ9MF2W2PN9T3FVBED0"),
|
|
70301
70317
|
path: stringType(),
|
|
70302
70318
|
key: stringType(),
|
|
70303
70319
|
display_name: stringType().optional(),
|
|
@@ -70325,7 +70341,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70325
70341
|
});
|
|
70326
70342
|
});
|
|
70327
70343
|
SyncMcpToolResponseBody4$outboundSchema = objectType({
|
|
70328
|
-
id: stringType().default("
|
|
70344
|
+
id: stringType().default("tool_01KAA6WRQ9MF2W2PN9T3FVBED0"),
|
|
70329
70345
|
path: stringType(),
|
|
70330
70346
|
key: stringType(),
|
|
70331
70347
|
displayName: stringType().optional(),
|
|
@@ -70427,7 +70443,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70427
70443
|
errors: arrayType(stringType())
|
|
70428
70444
|
});
|
|
70429
70445
|
SyncMcpToolResponseBody3$inboundSchema = objectType({
|
|
70430
|
-
_id: stringType().default("
|
|
70446
|
+
_id: stringType().default("tool_01KAA6WRQ6T1KWRNRT3RQ9JTH3"),
|
|
70431
70447
|
path: stringType(),
|
|
70432
70448
|
key: stringType(),
|
|
70433
70449
|
display_name: stringType().optional(),
|
|
@@ -70455,7 +70471,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70455
70471
|
});
|
|
70456
70472
|
});
|
|
70457
70473
|
SyncMcpToolResponseBody3$outboundSchema = objectType({
|
|
70458
|
-
id: stringType().default("
|
|
70474
|
+
id: stringType().default("tool_01KAA6WRQ6T1KWRNRT3RQ9JTH3"),
|
|
70459
70475
|
path: stringType(),
|
|
70460
70476
|
key: stringType(),
|
|
70461
70477
|
displayName: stringType().optional(),
|
|
@@ -70529,7 +70545,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70529
70545
|
errors: arrayType(stringType())
|
|
70530
70546
|
});
|
|
70531
70547
|
SyncMcpToolResponseBody2$inboundSchema = objectType({
|
|
70532
|
-
_id: stringType().default("
|
|
70548
|
+
_id: stringType().default("tool_01KAA6WRQ3NQSCVQ3E1JE9PZXE"),
|
|
70533
70549
|
path: stringType(),
|
|
70534
70550
|
key: stringType(),
|
|
70535
70551
|
display_name: stringType().optional(),
|
|
@@ -70558,7 +70574,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70558
70574
|
});
|
|
70559
70575
|
});
|
|
70560
70576
|
SyncMcpToolResponseBody2$outboundSchema = objectType({
|
|
70561
|
-
id: stringType().default("
|
|
70577
|
+
id: stringType().default("tool_01KAA6WRQ3NQSCVQ3E1JE9PZXE"),
|
|
70562
70578
|
path: stringType(),
|
|
70563
70579
|
key: stringType(),
|
|
70564
70580
|
displayName: stringType().optional(),
|
|
@@ -70635,7 +70651,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70635
70651
|
errors: arrayType(stringType())
|
|
70636
70652
|
});
|
|
70637
70653
|
SyncMcpToolResponseBody1$inboundSchema = objectType({
|
|
70638
|
-
_id: stringType().default("
|
|
70654
|
+
_id: stringType().default("tool_01KAA6WRQ2XYRPN63YB8KH3CBR"),
|
|
70639
70655
|
path: stringType(),
|
|
70640
70656
|
key: stringType(),
|
|
70641
70657
|
display_name: stringType().optional(),
|
|
@@ -70663,7 +70679,7 @@ var init_syncmcptool = __esm(() => {
|
|
|
70663
70679
|
});
|
|
70664
70680
|
});
|
|
70665
70681
|
SyncMcpToolResponseBody1$outboundSchema = objectType({
|
|
70666
|
-
id: stringType().default("
|
|
70682
|
+
id: stringType().default("tool_01KAA6WRQ2XYRPN63YB8KH3CBR"),
|
|
70667
70683
|
path: stringType(),
|
|
70668
70684
|
key: stringType(),
|
|
70669
70685
|
displayName: stringType().optional(),
|
|
@@ -70966,13 +70982,13 @@ var init_updateagent2 = __esm(() => {
|
|
|
70966
70982
|
description: stringType().optional(),
|
|
70967
70983
|
name: stringType(),
|
|
70968
70984
|
schema: anyType().optional(),
|
|
70969
|
-
strict: booleanType().optional()
|
|
70985
|
+
strict: nullableType(booleanType()).optional()
|
|
70970
70986
|
});
|
|
70971
70987
|
UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema = objectType({
|
|
70972
70988
|
description: stringType().optional(),
|
|
70973
70989
|
name: stringType(),
|
|
70974
70990
|
schema: anyType().optional(),
|
|
70975
|
-
strict: booleanType().optional()
|
|
70991
|
+
strict: nullableType(booleanType()).optional()
|
|
70976
70992
|
});
|
|
70977
70993
|
UpdateAgentResponseFormatJSONSchema$inboundSchema = objectType({
|
|
70978
70994
|
type: UpdateAgentResponseFormatAgentsRequestType$inboundSchema,
|
|
@@ -71220,13 +71236,13 @@ var init_updateagent2 = __esm(() => {
|
|
|
71220
71236
|
description: stringType().optional(),
|
|
71221
71237
|
name: stringType(),
|
|
71222
71238
|
schema: anyType().optional(),
|
|
71223
|
-
strict: booleanType().optional()
|
|
71239
|
+
strict: nullableType(booleanType()).optional()
|
|
71224
71240
|
});
|
|
71225
71241
|
UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema = objectType({
|
|
71226
71242
|
description: stringType().optional(),
|
|
71227
71243
|
name: stringType(),
|
|
71228
71244
|
schema: anyType().optional(),
|
|
71229
|
-
strict: booleanType().optional()
|
|
71245
|
+
strict: nullableType(booleanType()).optional()
|
|
71230
71246
|
});
|
|
71231
71247
|
UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema = objectType({
|
|
71232
71248
|
type: UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema,
|
|
@@ -71888,6 +71904,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71888
71904
|
});
|
|
71889
71905
|
UpdateAgentRequestBody$inboundSchema = objectType({
|
|
71890
71906
|
key: stringType().optional(),
|
|
71907
|
+
display_name: stringType().optional(),
|
|
71891
71908
|
project_id: stringType().optional(),
|
|
71892
71909
|
role: stringType().optional(),
|
|
71893
71910
|
description: stringType().optional(),
|
|
@@ -71909,6 +71926,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71909
71926
|
variables: recordType(anyType()).optional()
|
|
71910
71927
|
}).transform((v2) => {
|
|
71911
71928
|
return remap(v2, {
|
|
71929
|
+
display_name: "displayName",
|
|
71912
71930
|
project_id: "projectId",
|
|
71913
71931
|
system_prompt: "systemPrompt",
|
|
71914
71932
|
fallback_models: "fallbackModels",
|
|
@@ -71919,6 +71937,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71919
71937
|
});
|
|
71920
71938
|
UpdateAgentRequestBody$outboundSchema = objectType({
|
|
71921
71939
|
key: stringType().optional(),
|
|
71940
|
+
displayName: stringType().optional(),
|
|
71922
71941
|
projectId: stringType().optional(),
|
|
71923
71942
|
role: stringType().optional(),
|
|
71924
71943
|
description: stringType().optional(),
|
|
@@ -71940,6 +71959,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
71940
71959
|
variables: recordType(anyType()).optional()
|
|
71941
71960
|
}).transform((v2) => {
|
|
71942
71961
|
return remap(v2, {
|
|
71962
|
+
displayName: "display_name",
|
|
71943
71963
|
projectId: "project_id",
|
|
71944
71964
|
systemPrompt: "system_prompt",
|
|
71945
71965
|
fallbackModels: "fallback_models",
|
|
@@ -72102,13 +72122,13 @@ var init_updateagent2 = __esm(() => {
|
|
|
72102
72122
|
description: stringType().optional(),
|
|
72103
72123
|
name: stringType(),
|
|
72104
72124
|
schema: anyType().optional(),
|
|
72105
|
-
strict: booleanType().optional()
|
|
72125
|
+
strict: nullableType(booleanType()).optional()
|
|
72106
72126
|
});
|
|
72107
72127
|
UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema = objectType({
|
|
72108
72128
|
description: stringType().optional(),
|
|
72109
72129
|
name: stringType(),
|
|
72110
72130
|
schema: anyType().optional(),
|
|
72111
|
-
strict: booleanType().optional()
|
|
72131
|
+
strict: nullableType(booleanType()).optional()
|
|
72112
72132
|
});
|
|
72113
72133
|
UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema = objectType({
|
|
72114
72134
|
type: UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema,
|
|
@@ -72338,13 +72358,13 @@ var init_updateagent2 = __esm(() => {
|
|
|
72338
72358
|
description: stringType().optional(),
|
|
72339
72359
|
name: stringType(),
|
|
72340
72360
|
schema: anyType().optional(),
|
|
72341
|
-
strict: booleanType().optional()
|
|
72361
|
+
strict: nullableType(booleanType()).optional()
|
|
72342
72362
|
});
|
|
72343
72363
|
UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema = objectType({
|
|
72344
72364
|
description: stringType().optional(),
|
|
72345
72365
|
name: stringType(),
|
|
72346
72366
|
schema: anyType().optional(),
|
|
72347
|
-
strict: booleanType().optional()
|
|
72367
|
+
strict: nullableType(booleanType()).optional()
|
|
72348
72368
|
});
|
|
72349
72369
|
UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema = objectType({
|
|
72350
72370
|
type: UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema,
|
|
@@ -72625,6 +72645,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
72625
72645
|
UpdateAgentResponseBody$inboundSchema2 = objectType({
|
|
72626
72646
|
_id: stringType(),
|
|
72627
72647
|
key: stringType(),
|
|
72648
|
+
display_name: stringType(),
|
|
72628
72649
|
workspace_id: stringType(),
|
|
72629
72650
|
project_id: stringType(),
|
|
72630
72651
|
created_by_id: nullableType(stringType()).optional(),
|
|
@@ -72648,6 +72669,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
72648
72669
|
}).transform((v2) => {
|
|
72649
72670
|
return remap(v2, {
|
|
72650
72671
|
_id: "id",
|
|
72672
|
+
display_name: "displayName",
|
|
72651
72673
|
workspace_id: "workspaceId",
|
|
72652
72674
|
project_id: "projectId",
|
|
72653
72675
|
created_by_id: "createdById",
|
|
@@ -72662,6 +72684,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
72662
72684
|
UpdateAgentResponseBody$outboundSchema2 = objectType({
|
|
72663
72685
|
id: stringType(),
|
|
72664
72686
|
key: stringType(),
|
|
72687
|
+
displayName: stringType(),
|
|
72665
72688
|
workspaceId: stringType(),
|
|
72666
72689
|
projectId: stringType(),
|
|
72667
72690
|
createdById: nullableType(stringType()).optional(),
|
|
@@ -72685,6 +72708,7 @@ var init_updateagent2 = __esm(() => {
|
|
|
72685
72708
|
}).transform((v2) => {
|
|
72686
72709
|
return remap(v2, {
|
|
72687
72710
|
id: "_id",
|
|
72711
|
+
displayName: "display_name",
|
|
72688
72712
|
workspaceId: "workspace_id",
|
|
72689
72713
|
projectId: "project_id",
|
|
72690
72714
|
createdById: "created_by_id",
|
|
@@ -72810,7 +72834,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72810
72834
|
is_active: booleanType(),
|
|
72811
72835
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
72812
72836
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72813
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72837
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.633Z").transform((v2) => new Date(v2))
|
|
72814
72838
|
}).transform((v2) => {
|
|
72815
72839
|
return remap(v2, {
|
|
72816
72840
|
_id: "id",
|
|
@@ -72828,7 +72852,7 @@ var init_updatebudget = __esm(() => {
|
|
|
72828
72852
|
isActive: booleanType(),
|
|
72829
72853
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
72830
72854
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72831
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72855
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.633Z")).transform((v2) => v2.toISOString())
|
|
72832
72856
|
}).transform((v2) => {
|
|
72833
72857
|
return remap(v2, {
|
|
72834
72858
|
id: "_id",
|
|
@@ -72983,7 +73007,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
72983
73007
|
tags: arrayType(stringType()).optional(),
|
|
72984
73008
|
metadata: recordType(anyType()).optional(),
|
|
72985
73009
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72986
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
73010
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
72987
73011
|
}).transform((v2) => {
|
|
72988
73012
|
return remap(v2, {
|
|
72989
73013
|
_id: "id",
|
|
@@ -73001,7 +73025,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
73001
73025
|
tags: arrayType(stringType()).optional(),
|
|
73002
73026
|
metadata: recordType(anyType()).optional(),
|
|
73003
73027
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
73004
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
73028
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
73005
73029
|
}).transform((v2) => {
|
|
73006
73030
|
return remap(v2, {
|
|
73007
73031
|
id: "_id",
|
|
@@ -74077,7 +74101,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74077
74101
|
human_review_id: stringType(),
|
|
74078
74102
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
74079
74103
|
reviewed_by_id: stringType(),
|
|
74080
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74104
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.967Z").transform((v2) => new Date(v2)),
|
|
74081
74105
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
74082
74106
|
values: arrayType(stringType())
|
|
74083
74107
|
}).transform((v2) => {
|
|
@@ -74094,7 +74118,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74094
74118
|
humanReviewId: stringType(),
|
|
74095
74119
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
74096
74120
|
reviewedById: stringType(),
|
|
74097
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74121
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.967Z")).transform((v2) => v2.toISOString()),
|
|
74098
74122
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
74099
74123
|
values: arrayType(stringType())
|
|
74100
74124
|
}).transform((v2) => {
|
|
@@ -74117,7 +74141,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74117
74141
|
human_review_id: stringType(),
|
|
74118
74142
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
74119
74143
|
reviewed_by_id: stringType(),
|
|
74120
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74144
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.967Z").transform((v2) => new Date(v2)),
|
|
74121
74145
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
74122
74146
|
value: numberType()
|
|
74123
74147
|
}).transform((v2) => {
|
|
@@ -74134,7 +74158,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74134
74158
|
humanReviewId: stringType(),
|
|
74135
74159
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
74136
74160
|
reviewedById: stringType(),
|
|
74137
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74161
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.967Z")).transform((v2) => v2.toISOString()),
|
|
74138
74162
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
74139
74163
|
value: numberType()
|
|
74140
74164
|
}).transform((v2) => {
|
|
@@ -74157,7 +74181,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74157
74181
|
human_review_id: stringType(),
|
|
74158
74182
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
74159
74183
|
reviewed_by_id: stringType(),
|
|
74160
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
74184
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-18T00:47:33.966Z").transform((v2) => new Date(v2)),
|
|
74161
74185
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
74162
74186
|
value: stringType()
|
|
74163
74187
|
}).transform((v2) => {
|
|
@@ -74174,7 +74198,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74174
74198
|
humanReviewId: stringType(),
|
|
74175
74199
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
74176
74200
|
reviewedById: stringType(),
|
|
74177
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
74201
|
+
reviewedAt: dateType().default(() => new Date("2025-11-18T00:47:33.966Z")).transform((v2) => v2.toISOString()),
|
|
74178
74202
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
74179
74203
|
value: stringType()
|
|
74180
74204
|
}).transform((v2) => {
|
|
@@ -74217,7 +74241,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74217
74241
|
created_by_id: stringType().optional(),
|
|
74218
74242
|
updated_by_id: stringType().optional(),
|
|
74219
74243
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74220
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74244
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
74221
74245
|
}).transform((v2) => {
|
|
74222
74246
|
return remap(v2, {
|
|
74223
74247
|
_id: "id",
|
|
@@ -74251,7 +74275,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
74251
74275
|
createdById: stringType().optional(),
|
|
74252
74276
|
updatedById: stringType().optional(),
|
|
74253
74277
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74254
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74278
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
74255
74279
|
}).transform((v2) => {
|
|
74256
74280
|
return remap(v2, {
|
|
74257
74281
|
id: "_id",
|
|
@@ -74335,7 +74359,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74335
74359
|
created_by_id: stringType().optional(),
|
|
74336
74360
|
updated_by_id: stringType().optional(),
|
|
74337
74361
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
74338
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
74362
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-18T00:47:21.290Z").transform((v2) => new Date(v2))
|
|
74339
74363
|
}).transform((v2) => {
|
|
74340
74364
|
return remap(v2, {
|
|
74341
74365
|
_id: "id",
|
|
@@ -74355,7 +74379,7 @@ var init_updatedataset = __esm(() => {
|
|
|
74355
74379
|
createdById: stringType().optional(),
|
|
74356
74380
|
updatedById: stringType().optional(),
|
|
74357
74381
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
74358
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
74382
|
+
updated: dateType().default(() => new Date("2025-11-18T00:47:21.290Z")).transform((v2) => v2.toISOString())
|
|
74359
74383
|
}).transform((v2) => {
|
|
74360
74384
|
return remap(v2, {
|
|
74361
74385
|
id: "_id",
|
|
@@ -74419,7 +74443,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74419
74443
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
74420
74444
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
74421
74445
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
74422
|
-
_id: stringType().default("
|
|
74446
|
+
_id: stringType().default("01KAA6WRTQ8739D363Z45PZ5DS"),
|
|
74423
74447
|
display_name: stringType(),
|
|
74424
74448
|
description: stringType().optional(),
|
|
74425
74449
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -74442,7 +74466,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
74442
74466
|
});
|
|
74443
74467
|
});
|
|
74444
74468
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
74445
|
-
id: stringType().default("
|
|
74469
|
+
id: stringType().default("01KAA6WRTQ8739D363Z45PZ5DS"),
|
|
74446
74470
|
displayName: stringType(),
|
|
74447
74471
|
description: stringType().optional(),
|
|
74448
74472
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -75189,8 +75213,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75189
75213
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
75190
75214
|
_id: stringType(),
|
|
75191
75215
|
description: stringType(),
|
|
75192
|
-
created: stringType().default("2025-11-
|
|
75193
|
-
updated: stringType().default("2025-11-
|
|
75216
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75217
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75194
75218
|
guardrail_config: unionType([
|
|
75195
75219
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
75196
75220
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -75207,8 +75231,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75207
75231
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
75208
75232
|
id: stringType(),
|
|
75209
75233
|
description: stringType(),
|
|
75210
|
-
created: stringType().default("2025-11-
|
|
75211
|
-
updated: stringType().default("2025-11-
|
|
75234
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75235
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75212
75236
|
guardrailConfig: unionType([
|
|
75213
75237
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
75214
75238
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -75265,8 +75289,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75265
75289
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
75266
75290
|
_id: stringType(),
|
|
75267
75291
|
description: stringType(),
|
|
75268
|
-
created: stringType().default("2025-11-
|
|
75269
|
-
updated: stringType().default("2025-11-
|
|
75292
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75293
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75270
75294
|
guardrail_config: unionType([
|
|
75271
75295
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
75272
75296
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -75285,8 +75309,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75285
75309
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
75286
75310
|
id: stringType(),
|
|
75287
75311
|
description: stringType(),
|
|
75288
|
-
created: stringType().default("2025-11-
|
|
75289
|
-
updated: stringType().default("2025-11-
|
|
75312
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75313
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75290
75314
|
guardrailConfig: unionType([
|
|
75291
75315
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
75292
75316
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -75723,8 +75747,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75723
75747
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
75724
75748
|
_id: stringType(),
|
|
75725
75749
|
description: stringType(),
|
|
75726
|
-
created: stringType().default("2025-11-
|
|
75727
|
-
updated: stringType().default("2025-11-
|
|
75750
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75751
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75728
75752
|
guardrail_config: unionType([
|
|
75729
75753
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
75730
75754
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -75778,8 +75802,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75778
75802
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
75779
75803
|
id: stringType(),
|
|
75780
75804
|
description: stringType(),
|
|
75781
|
-
created: stringType().default("2025-11-
|
|
75782
|
-
updated: stringType().default("2025-11-
|
|
75805
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75806
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75783
75807
|
guardrailConfig: unionType([
|
|
75784
75808
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
75785
75809
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -75871,8 +75895,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75871
75895
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
75872
75896
|
_id: stringType(),
|
|
75873
75897
|
description: stringType(),
|
|
75874
|
-
created: stringType().default("2025-11-
|
|
75875
|
-
updated: stringType().default("2025-11-
|
|
75898
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75899
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75876
75900
|
guardrail_config: unionType([
|
|
75877
75901
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
75878
75902
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -75889,8 +75913,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75889
75913
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
75890
75914
|
id: stringType(),
|
|
75891
75915
|
description: stringType(),
|
|
75892
|
-
created: stringType().default("2025-11-
|
|
75893
|
-
updated: stringType().default("2025-11-
|
|
75916
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75917
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75894
75918
|
guardrailConfig: unionType([
|
|
75895
75919
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
75896
75920
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -75947,8 +75971,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75947
75971
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
75948
75972
|
_id: stringType(),
|
|
75949
75973
|
description: stringType(),
|
|
75950
|
-
created: stringType().default("2025-11-
|
|
75951
|
-
updated: stringType().default("2025-11-
|
|
75974
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75975
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75952
75976
|
guardrail_config: unionType([
|
|
75953
75977
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
75954
75978
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -75968,8 +75992,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
75968
75992
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
75969
75993
|
id: stringType(),
|
|
75970
75994
|
description: stringType(),
|
|
75971
|
-
created: stringType().default("2025-11-
|
|
75972
|
-
updated: stringType().default("2025-11-
|
|
75995
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75996
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
75973
75997
|
guardrailConfig: unionType([
|
|
75974
75998
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
75975
75999
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -76027,8 +76051,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76027
76051
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
76028
76052
|
_id: stringType(),
|
|
76029
76053
|
description: stringType(),
|
|
76030
|
-
created: stringType().default("2025-11-
|
|
76031
|
-
updated: stringType().default("2025-11-
|
|
76054
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76055
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76032
76056
|
guardrail_config: unionType([
|
|
76033
76057
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
76034
76058
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -76045,8 +76069,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76045
76069
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
76046
76070
|
id: stringType(),
|
|
76047
76071
|
description: stringType(),
|
|
76048
|
-
created: stringType().default("2025-11-
|
|
76049
|
-
updated: stringType().default("2025-11-
|
|
76072
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76073
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76050
76074
|
guardrailConfig: unionType([
|
|
76051
76075
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
76052
76076
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -76101,8 +76125,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76101
76125
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
76102
76126
|
_id: stringType(),
|
|
76103
76127
|
description: stringType(),
|
|
76104
|
-
created: stringType().default("2025-11-
|
|
76105
|
-
updated: stringType().default("2025-11-
|
|
76128
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76129
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76106
76130
|
guardrail_config: unionType([
|
|
76107
76131
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
76108
76132
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -76120,8 +76144,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
76120
76144
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
76121
76145
|
id: stringType(),
|
|
76122
76146
|
description: stringType(),
|
|
76123
|
-
created: stringType().default("2025-11-
|
|
76124
|
-
updated: stringType().default("2025-11-
|
|
76147
|
+
created: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76148
|
+
updated: stringType().default("2025-11-18T00:47:23.326Z"),
|
|
76125
76149
|
guardrailConfig: unionType([
|
|
76126
76150
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
76127
76151
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -78283,13 +78307,13 @@ var init_updateprompt2 = __esm(() => {
|
|
|
78283
78307
|
description: stringType().optional(),
|
|
78284
78308
|
name: stringType(),
|
|
78285
78309
|
schema: anyType().optional(),
|
|
78286
|
-
strict: booleanType().optional()
|
|
78310
|
+
strict: nullableType(booleanType()).optional()
|
|
78287
78311
|
});
|
|
78288
78312
|
UpdatePromptResponseFormatPromptsRequestJsonSchema$outboundSchema = objectType({
|
|
78289
78313
|
description: stringType().optional(),
|
|
78290
78314
|
name: stringType(),
|
|
78291
78315
|
schema: anyType().optional(),
|
|
78292
|
-
strict: booleanType().optional()
|
|
78316
|
+
strict: nullableType(booleanType()).optional()
|
|
78293
78317
|
});
|
|
78294
78318
|
UpdatePromptResponseFormatPromptsJSONSchema$inboundSchema = objectType({
|
|
78295
78319
|
type: UpdatePromptResponseFormatPromptsRequestRequestBodyPrompt3Type$inboundSchema,
|
|
@@ -79086,13 +79110,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79086
79110
|
required: arrayType(stringType()).optional()
|
|
79087
79111
|
});
|
|
79088
79112
|
RequestBodyTools$inboundSchema = objectType({
|
|
79089
|
-
id: stringType().default("
|
|
79113
|
+
id: stringType().default("01KAA6WRPEZ307HGWCEBHB9DWY"),
|
|
79090
79114
|
name: stringType(),
|
|
79091
79115
|
description: stringType().optional(),
|
|
79092
79116
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
79093
79117
|
});
|
|
79094
79118
|
RequestBodyTools$outboundSchema = objectType({
|
|
79095
|
-
id: stringType().default("
|
|
79119
|
+
id: stringType().default("01KAA6WRPEZ307HGWCEBHB9DWY"),
|
|
79096
79120
|
name: stringType(),
|
|
79097
79121
|
description: stringType().optional(),
|
|
79098
79122
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -79440,7 +79464,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79440
79464
|
code: stringType()
|
|
79441
79465
|
});
|
|
79442
79466
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
79443
|
-
_id: stringType().default("
|
|
79467
|
+
_id: stringType().default("tool_01KAA6WRNXN543QMKNFXFDJ5BS"),
|
|
79444
79468
|
path: stringType(),
|
|
79445
79469
|
key: stringType(),
|
|
79446
79470
|
display_name: stringType().optional(),
|
|
@@ -79468,7 +79492,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79468
79492
|
});
|
|
79469
79493
|
});
|
|
79470
79494
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
79471
|
-
id: stringType().default("
|
|
79495
|
+
id: stringType().default("tool_01KAA6WRNXN543QMKNFXFDJ5BS"),
|
|
79472
79496
|
path: stringType(),
|
|
79473
79497
|
key: stringType(),
|
|
79474
79498
|
displayName: stringType().optional(),
|
|
@@ -79520,13 +79544,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
79520
79544
|
required: arrayType(stringType()).optional()
|
|
79521
79545
|
});
|
|
79522
79546
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
79523
|
-
id: stringType().default("
|
|
79547
|
+
id: stringType().default("01KAA6WRNXBWARDAG1QPQEN9Z4"),
|
|
79524
79548
|
name: stringType(),
|
|
79525
79549
|
description: stringType().optional(),
|
|
79526
79550
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
79527
79551
|
});
|
|
79528
79552
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
79529
|
-
id: stringType().default("
|
|
79553
|
+
id: stringType().default("01KAA6WRNXBWARDAG1QPQEN9Z4"),
|
|
79530
79554
|
name: stringType(),
|
|
79531
79555
|
description: stringType().optional(),
|
|
79532
79556
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -79556,7 +79580,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79556
79580
|
});
|
|
79557
79581
|
});
|
|
79558
79582
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
79559
|
-
_id: stringType().default("
|
|
79583
|
+
_id: stringType().default("tool_01KAA6WRNW2Y29PN2EFVHHM34R"),
|
|
79560
79584
|
path: stringType(),
|
|
79561
79585
|
key: stringType(),
|
|
79562
79586
|
display_name: stringType().optional(),
|
|
@@ -79583,7 +79607,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79583
79607
|
});
|
|
79584
79608
|
});
|
|
79585
79609
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
79586
|
-
id: stringType().default("
|
|
79610
|
+
id: stringType().default("tool_01KAA6WRNW2Y29PN2EFVHHM34R"),
|
|
79587
79611
|
path: stringType(),
|
|
79588
79612
|
key: stringType(),
|
|
79589
79613
|
displayName: stringType().optional(),
|
|
@@ -79672,7 +79696,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79672
79696
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
79673
79697
|
});
|
|
79674
79698
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
79675
|
-
_id: stringType().default("
|
|
79699
|
+
_id: stringType().default("tool_01KAA6WRNT6E66C4MQDHG9V5KR"),
|
|
79676
79700
|
path: stringType(),
|
|
79677
79701
|
key: stringType(),
|
|
79678
79702
|
display_name: stringType().optional(),
|
|
@@ -79699,7 +79723,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79699
79723
|
});
|
|
79700
79724
|
});
|
|
79701
79725
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
79702
|
-
id: stringType().default("
|
|
79726
|
+
id: stringType().default("tool_01KAA6WRNT6E66C4MQDHG9V5KR"),
|
|
79703
79727
|
path: stringType(),
|
|
79704
79728
|
key: stringType(),
|
|
79705
79729
|
displayName: stringType().optional(),
|
|
@@ -79760,7 +79784,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79760
79784
|
strict: booleanType().optional()
|
|
79761
79785
|
});
|
|
79762
79786
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
79763
|
-
_id: stringType().default("
|
|
79787
|
+
_id: stringType().default("tool_01KAA6WRNQNA23KZN6897NEYP9"),
|
|
79764
79788
|
path: stringType(),
|
|
79765
79789
|
key: stringType(),
|
|
79766
79790
|
display_name: stringType().optional(),
|
|
@@ -79788,7 +79812,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79788
79812
|
});
|
|
79789
79813
|
});
|
|
79790
79814
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
79791
|
-
id: stringType().default("
|
|
79815
|
+
id: stringType().default("tool_01KAA6WRNQNA23KZN6897NEYP9"),
|
|
79792
79816
|
path: stringType(),
|
|
79793
79817
|
key: stringType(),
|
|
79794
79818
|
displayName: stringType().optional(),
|
|
@@ -79852,7 +79876,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79852
79876
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
79853
79877
|
});
|
|
79854
79878
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
79855
|
-
_id: stringType().default("
|
|
79879
|
+
_id: stringType().default("tool_01KAA6WRNPJRW0KMQXT8VSFQH0"),
|
|
79856
79880
|
path: stringType(),
|
|
79857
79881
|
key: stringType(),
|
|
79858
79882
|
display_name: stringType().optional(),
|
|
@@ -79879,7 +79903,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
79879
79903
|
});
|
|
79880
79904
|
});
|
|
79881
79905
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
79882
|
-
id: stringType().default("
|
|
79906
|
+
id: stringType().default("tool_01KAA6WRNPJRW0KMQXT8VSFQH0"),
|
|
79883
79907
|
path: stringType(),
|
|
79884
79908
|
key: stringType(),
|
|
79885
79909
|
displayName: stringType().optional(),
|
|
@@ -92351,7 +92375,7 @@ Updates a tool in the workspace.`,
|
|
|
92351
92375
|
function createMCPServer(deps) {
|
|
92352
92376
|
const server = new McpServer({
|
|
92353
92377
|
name: "Orq",
|
|
92354
|
-
version: "4.0.0-rc.
|
|
92378
|
+
version: "4.0.0-rc.42"
|
|
92355
92379
|
});
|
|
92356
92380
|
const client = new OrqCore({
|
|
92357
92381
|
apiKey: deps.apiKey,
|
|
@@ -93771,7 +93795,7 @@ var routes = rn({
|
|
|
93771
93795
|
var app = Ve(routes, {
|
|
93772
93796
|
name: "mcp",
|
|
93773
93797
|
versionInfo: {
|
|
93774
|
-
currentVersion: "4.0.0-rc.
|
|
93798
|
+
currentVersion: "4.0.0-rc.42"
|
|
93775
93799
|
}
|
|
93776
93800
|
});
|
|
93777
93801
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -93779,5 +93803,5 @@ export {
|
|
|
93779
93803
|
app
|
|
93780
93804
|
};
|
|
93781
93805
|
|
|
93782
|
-
//# debugId=
|
|
93806
|
+
//# debugId=2BF334E3D25519C764756E2164756E21
|
|
93783
93807
|
//# sourceMappingURL=mcp-server.js.map
|