@orq-ai/node 4.1.0-rc.38 → 4.1.0-rc.39
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 +227 -227
- package/bin/mcp-server.js.map +45 -45
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updateagent.d.ts +3 -0
- package/models/operations/updateagent.d.ts.map +1 -1
- 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/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updateagent.ts +3 -0
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.1.0-rc.
|
|
34206
|
+
sdkVersion: "4.1.0-rc.39",
|
|
34207
34207
|
genVersion: "2.779.2",
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.1.0-rc.
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.1.0-rc.39 2.779.2 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -37974,7 +37974,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
37974
37974
|
});
|
|
37975
37975
|
});
|
|
37976
37976
|
ConversationResponse$inboundSchema = objectType({
|
|
37977
|
-
_id: stringType().default("
|
|
37977
|
+
_id: stringType().default("conv_01kc8fgrpqxga0yrhvqv9jjhw3"),
|
|
37978
37978
|
entity_id: stringType(),
|
|
37979
37979
|
kind: ConversationResponseKind$inboundSchema,
|
|
37980
37980
|
display_name: stringType(),
|
|
@@ -37995,7 +37995,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
37995
37995
|
});
|
|
37996
37996
|
});
|
|
37997
37997
|
ConversationResponse$outboundSchema = objectType({
|
|
37998
|
-
id: stringType().default("
|
|
37998
|
+
id: stringType().default("conv_01kc8fgrpqxga0yrhvqv9jjhw3"),
|
|
37999
37999
|
entityId: stringType(),
|
|
38000
38000
|
kind: ConversationResponseKind$outboundSchema,
|
|
38001
38001
|
displayName: stringType(),
|
|
@@ -39495,7 +39495,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
39495
39495
|
init_esm();
|
|
39496
39496
|
init_primitives();
|
|
39497
39497
|
ReasoningPart$inboundSchema = objectType({
|
|
39498
|
-
_id: stringType().default("
|
|
39498
|
+
_id: stringType().default("reasoning_01kc8fgre1adjf755q2cfn9p5b"),
|
|
39499
39499
|
metadata: recordType(anyType()).optional(),
|
|
39500
39500
|
kind: literalType("reasoning"),
|
|
39501
39501
|
reasoning: stringType(),
|
|
@@ -39506,7 +39506,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
39506
39506
|
});
|
|
39507
39507
|
});
|
|
39508
39508
|
ReasoningPart$outboundSchema = objectType({
|
|
39509
|
-
id: stringType().default("
|
|
39509
|
+
id: stringType().default("reasoning_01kc8fgre1adjf755q2cfn9p5b"),
|
|
39510
39510
|
metadata: recordType(anyType()).optional(),
|
|
39511
39511
|
kind: literalType("reasoning"),
|
|
39512
39512
|
reasoning: stringType(),
|
|
@@ -39576,7 +39576,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
39576
39576
|
PartKind$inboundSchema = nativeEnumType(PartKind);
|
|
39577
39577
|
PartKind$outboundSchema = PartKind$inboundSchema;
|
|
39578
39578
|
PartReasoningPart$inboundSchema = objectType({
|
|
39579
|
-
_id: stringType().default("
|
|
39579
|
+
_id: stringType().default("reasoning_01kc8fgre81xm47e9gtsfya1ex"),
|
|
39580
39580
|
metadata: recordType(anyType()).optional(),
|
|
39581
39581
|
kind: PartKind$inboundSchema,
|
|
39582
39582
|
reasoning: stringType(),
|
|
@@ -39587,7 +39587,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
39587
39587
|
});
|
|
39588
39588
|
});
|
|
39589
39589
|
PartReasoningPart$outboundSchema = objectType({
|
|
39590
|
-
id: stringType().default("
|
|
39590
|
+
id: stringType().default("reasoning_01kc8fgre81xm47e9gtsfya1ex"),
|
|
39591
39591
|
metadata: recordType(anyType()).optional(),
|
|
39592
39592
|
kind: PartKind$outboundSchema,
|
|
39593
39593
|
reasoning: stringType(),
|
|
@@ -42784,7 +42784,7 @@ var init_createbudget = __esm(() => {
|
|
|
42784
42784
|
is_active: booleanType(),
|
|
42785
42785
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
42786
42786
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42787
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
42787
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.477Z").transform((v2) => new Date(v2))
|
|
42788
42788
|
}).transform((v2) => {
|
|
42789
42789
|
return remap(v2, {
|
|
42790
42790
|
_id: "id",
|
|
@@ -42804,7 +42804,7 @@ var init_createbudget = __esm(() => {
|
|
|
42804
42804
|
isActive: booleanType(),
|
|
42805
42805
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
42806
42806
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42807
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
42807
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.477Z")).transform((v2) => v2.toISOString())
|
|
42808
42808
|
}).transform((v2) => {
|
|
42809
42809
|
return remap(v2, {
|
|
42810
42810
|
id: "_id",
|
|
@@ -42945,7 +42945,7 @@ var init_createcontact = __esm(() => {
|
|
|
42945
42945
|
tags: arrayType(stringType()).optional(),
|
|
42946
42946
|
metadata: recordType(anyType()).optional(),
|
|
42947
42947
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42948
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
42948
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
42949
42949
|
}).transform((v2) => {
|
|
42950
42950
|
return remap(v2, {
|
|
42951
42951
|
_id: "id",
|
|
@@ -42965,7 +42965,7 @@ var init_createcontact = __esm(() => {
|
|
|
42965
42965
|
tags: arrayType(stringType()).optional(),
|
|
42966
42966
|
metadata: recordType(anyType()).optional(),
|
|
42967
42967
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42968
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
42968
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
42969
42969
|
}).transform((v2) => {
|
|
42970
42970
|
return remap(v2, {
|
|
42971
42971
|
id: "_id",
|
|
@@ -43040,7 +43040,7 @@ var init_createconversation = __esm(() => {
|
|
|
43040
43040
|
});
|
|
43041
43041
|
});
|
|
43042
43042
|
CreateConversationResponseBody$inboundSchema = objectType({
|
|
43043
|
-
_id: stringType().default("
|
|
43043
|
+
_id: stringType().default("conv_01kc8fgrptex8cfp31hg88q6ym"),
|
|
43044
43044
|
entity_id: stringType(),
|
|
43045
43045
|
kind: CreateConversationKind$inboundSchema,
|
|
43046
43046
|
display_name: stringType(),
|
|
@@ -43061,7 +43061,7 @@ var init_createconversation = __esm(() => {
|
|
|
43061
43061
|
});
|
|
43062
43062
|
});
|
|
43063
43063
|
CreateConversationResponseBody$outboundSchema = objectType({
|
|
43064
|
-
id: stringType().default("
|
|
43064
|
+
id: stringType().default("conv_01kc8fgrptex8cfp31hg88q6ym"),
|
|
43065
43065
|
entityId: stringType(),
|
|
43066
43066
|
kind: CreateConversationKind$outboundSchema,
|
|
43067
43067
|
displayName: stringType(),
|
|
@@ -43131,7 +43131,7 @@ var init_createdataset = __esm(() => {
|
|
|
43131
43131
|
created_by_id: stringType().optional(),
|
|
43132
43132
|
updated_by_id: stringType().optional(),
|
|
43133
43133
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
43134
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
43134
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
43135
43135
|
}).transform((v2) => {
|
|
43136
43136
|
return remap(v2, {
|
|
43137
43137
|
_id: "id",
|
|
@@ -43151,7 +43151,7 @@ var init_createdataset = __esm(() => {
|
|
|
43151
43151
|
createdById: stringType().optional(),
|
|
43152
43152
|
updatedById: stringType().optional(),
|
|
43153
43153
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
43154
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
43154
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
43155
43155
|
}).transform((v2) => {
|
|
43156
43156
|
return remap(v2, {
|
|
43157
43157
|
id: "_id",
|
|
@@ -43887,7 +43887,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43887
43887
|
human_review_id: stringType(),
|
|
43888
43888
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
43889
43889
|
reviewed_by_id: stringType(),
|
|
43890
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
43890
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.892Z").transform((v2) => new Date(v2)),
|
|
43891
43891
|
type: literalType("string_array"),
|
|
43892
43892
|
values: arrayType(stringType())
|
|
43893
43893
|
}).transform((v2) => {
|
|
@@ -43904,7 +43904,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43904
43904
|
humanReviewId: stringType(),
|
|
43905
43905
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
43906
43906
|
reviewedById: stringType(),
|
|
43907
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
43907
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.892Z")).transform((v2) => v2.toISOString()),
|
|
43908
43908
|
type: literalType("string_array"),
|
|
43909
43909
|
values: arrayType(stringType())
|
|
43910
43910
|
}).transform((v2) => {
|
|
@@ -43925,7 +43925,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43925
43925
|
human_review_id: stringType(),
|
|
43926
43926
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
43927
43927
|
reviewed_by_id: stringType(),
|
|
43928
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
43928
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.891Z").transform((v2) => new Date(v2)),
|
|
43929
43929
|
type: literalType("number"),
|
|
43930
43930
|
value: numberType()
|
|
43931
43931
|
}).transform((v2) => {
|
|
@@ -43942,7 +43942,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43942
43942
|
humanReviewId: stringType(),
|
|
43943
43943
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
43944
43944
|
reviewedById: stringType(),
|
|
43945
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
43945
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.891Z")).transform((v2) => v2.toISOString()),
|
|
43946
43946
|
type: literalType("number"),
|
|
43947
43947
|
value: numberType()
|
|
43948
43948
|
}).transform((v2) => {
|
|
@@ -43963,7 +43963,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43963
43963
|
human_review_id: stringType(),
|
|
43964
43964
|
source: Source$inboundSchema.default("orq"),
|
|
43965
43965
|
reviewed_by_id: stringType(),
|
|
43966
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
43966
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.891Z").transform((v2) => new Date(v2)),
|
|
43967
43967
|
type: literalType("string"),
|
|
43968
43968
|
value: stringType()
|
|
43969
43969
|
}).transform((v2) => {
|
|
@@ -43980,7 +43980,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
43980
43980
|
humanReviewId: stringType(),
|
|
43981
43981
|
source: Source$outboundSchema.default("orq"),
|
|
43982
43982
|
reviewedById: stringType(),
|
|
43983
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
43983
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.891Z")).transform((v2) => v2.toISOString()),
|
|
43984
43984
|
type: literalType("string"),
|
|
43985
43985
|
value: stringType()
|
|
43986
43986
|
}).transform((v2) => {
|
|
@@ -44023,7 +44023,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
44023
44023
|
created_by_id: stringType().optional(),
|
|
44024
44024
|
updated_by_id: stringType().optional(),
|
|
44025
44025
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
44026
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
44026
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
44027
44027
|
}).transform((v2) => {
|
|
44028
44028
|
return remap(v2, {
|
|
44029
44029
|
_id: "id",
|
|
@@ -44057,7 +44057,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
44057
44057
|
createdById: stringType().optional(),
|
|
44058
44058
|
updatedById: stringType().optional(),
|
|
44059
44059
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
44060
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
44060
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
44061
44061
|
}).transform((v2) => {
|
|
44062
44062
|
return remap(v2, {
|
|
44063
44063
|
id: "_id",
|
|
@@ -44226,7 +44226,7 @@ var init_createdatasource = __esm(() => {
|
|
|
44226
44226
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
44227
44227
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
44228
44228
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
44229
|
-
_id: stringType().default("
|
|
44229
|
+
_id: stringType().default("01KC8FGS4JY7BSFBRYZXMP4HWY"),
|
|
44230
44230
|
display_name: stringType(),
|
|
44231
44231
|
description: stringType().optional(),
|
|
44232
44232
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -44249,7 +44249,7 @@ var init_createdatasource = __esm(() => {
|
|
|
44249
44249
|
});
|
|
44250
44250
|
});
|
|
44251
44251
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
44252
|
-
id: stringType().default("
|
|
44252
|
+
id: stringType().default("01KC8FGS4JY7BSFBRYZXMP4HWY"),
|
|
44253
44253
|
displayName: stringType(),
|
|
44254
44254
|
description: stringType().optional(),
|
|
44255
44255
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -44736,8 +44736,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44736
44736
|
Typescript$inboundSchema = objectType({
|
|
44737
44737
|
_id: stringType(),
|
|
44738
44738
|
description: stringType(),
|
|
44739
|
-
created: stringType().default("2025-12-
|
|
44740
|
-
updated: stringType().default("2025-12-
|
|
44739
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44740
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44741
44741
|
guardrail_config: unionType([
|
|
44742
44742
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
44743
44743
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -44754,8 +44754,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44754
44754
|
Typescript$outboundSchema = objectType({
|
|
44755
44755
|
id: stringType(),
|
|
44756
44756
|
description: stringType(),
|
|
44757
|
-
created: stringType().default("2025-12-
|
|
44758
|
-
updated: stringType().default("2025-12-
|
|
44757
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44758
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44759
44759
|
guardrailConfig: unionType([
|
|
44760
44760
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
44761
44761
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -44806,8 +44806,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44806
44806
|
Ragas$inboundSchema = objectType({
|
|
44807
44807
|
_id: stringType(),
|
|
44808
44808
|
description: stringType(),
|
|
44809
|
-
created: stringType().default("2025-12-
|
|
44810
|
-
updated: stringType().default("2025-12-
|
|
44809
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44810
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44811
44811
|
guardrail_config: unionType([
|
|
44812
44812
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
44813
44813
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -44826,8 +44826,8 @@ var init_createeval2 = __esm(() => {
|
|
|
44826
44826
|
Ragas$outboundSchema = objectType({
|
|
44827
44827
|
id: stringType(),
|
|
44828
44828
|
description: stringType(),
|
|
44829
|
-
created: stringType().default("2025-12-
|
|
44830
|
-
updated: stringType().default("2025-12-
|
|
44829
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44830
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
44831
44831
|
guardrailConfig: unionType([
|
|
44832
44832
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
44833
44833
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -45162,8 +45162,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45162
45162
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
45163
45163
|
_id: stringType(),
|
|
45164
45164
|
description: stringType(),
|
|
45165
|
-
created: stringType().default("2025-12-
|
|
45166
|
-
updated: stringType().default("2025-12-
|
|
45165
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45166
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45167
45167
|
guardrail_config: unionType([
|
|
45168
45168
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
45169
45169
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -45214,8 +45214,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45214
45214
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
45215
45215
|
id: stringType(),
|
|
45216
45216
|
description: stringType(),
|
|
45217
|
-
created: stringType().default("2025-12-
|
|
45218
|
-
updated: stringType().default("2025-12-
|
|
45217
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45218
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45219
45219
|
guardrailConfig: unionType([
|
|
45220
45220
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
45221
45221
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -45298,8 +45298,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45298
45298
|
ResponseBodyPython$inboundSchema = objectType({
|
|
45299
45299
|
_id: stringType(),
|
|
45300
45300
|
description: stringType(),
|
|
45301
|
-
created: stringType().default("2025-12-
|
|
45302
|
-
updated: stringType().default("2025-12-
|
|
45301
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45302
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45303
45303
|
guardrail_config: unionType([
|
|
45304
45304
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
45305
45305
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -45316,8 +45316,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45316
45316
|
ResponseBodyPython$outboundSchema = objectType({
|
|
45317
45317
|
id: stringType(),
|
|
45318
45318
|
description: stringType(),
|
|
45319
|
-
created: stringType().default("2025-12-
|
|
45320
|
-
updated: stringType().default("2025-12-
|
|
45319
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45320
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45321
45321
|
guardrailConfig: unionType([
|
|
45322
45322
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
45323
45323
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -45368,8 +45368,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45368
45368
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
45369
45369
|
_id: stringType(),
|
|
45370
45370
|
description: stringType(),
|
|
45371
|
-
created: stringType().default("2025-12-
|
|
45372
|
-
updated: stringType().default("2025-12-
|
|
45371
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45372
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45373
45373
|
guardrail_config: unionType([
|
|
45374
45374
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
45375
45375
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -45389,8 +45389,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45389
45389
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
45390
45390
|
id: stringType(),
|
|
45391
45391
|
description: stringType(),
|
|
45392
|
-
created: stringType().default("2025-12-
|
|
45393
|
-
updated: stringType().default("2025-12-
|
|
45392
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45393
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45394
45394
|
guardrailConfig: unionType([
|
|
45395
45395
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
45396
45396
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -45442,8 +45442,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45442
45442
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
45443
45443
|
_id: stringType(),
|
|
45444
45444
|
description: stringType(),
|
|
45445
|
-
created: stringType().default("2025-12-
|
|
45446
|
-
updated: stringType().default("2025-12-
|
|
45445
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45446
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45447
45447
|
guardrail_config: unionType([
|
|
45448
45448
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
45449
45449
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -45460,8 +45460,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45460
45460
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
45461
45461
|
id: stringType(),
|
|
45462
45462
|
description: stringType(),
|
|
45463
|
-
created: stringType().default("2025-12-
|
|
45464
|
-
updated: stringType().default("2025-12-
|
|
45463
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45464
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45465
45465
|
guardrailConfig: unionType([
|
|
45466
45466
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
45467
45467
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -45510,8 +45510,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45510
45510
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
45511
45511
|
_id: stringType(),
|
|
45512
45512
|
description: stringType(),
|
|
45513
|
-
created: stringType().default("2025-12-
|
|
45514
|
-
updated: stringType().default("2025-12-
|
|
45513
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45514
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45515
45515
|
guardrail_config: unionType([
|
|
45516
45516
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
45517
45517
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -45529,8 +45529,8 @@ var init_createeval2 = __esm(() => {
|
|
|
45529
45529
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
45530
45530
|
id: stringType(),
|
|
45531
45531
|
description: stringType(),
|
|
45532
|
-
created: stringType().default("2025-12-
|
|
45533
|
-
updated: stringType().default("2025-12-
|
|
45532
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45533
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
45534
45534
|
guardrailConfig: unionType([
|
|
45535
45535
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
45536
45536
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -48144,7 +48144,7 @@ var init_createtool = __esm(() => {
|
|
|
48144
48144
|
code: stringType()
|
|
48145
48145
|
});
|
|
48146
48146
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
48147
|
-
_id: stringType().default("
|
|
48147
|
+
_id: stringType().default("tool_01KC8FGRZ46CX1MR3K9DEMVKCP"),
|
|
48148
48148
|
path: stringType(),
|
|
48149
48149
|
key: stringType(),
|
|
48150
48150
|
display_name: stringType().optional(),
|
|
@@ -48172,7 +48172,7 @@ var init_createtool = __esm(() => {
|
|
|
48172
48172
|
});
|
|
48173
48173
|
});
|
|
48174
48174
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
48175
|
-
id: stringType().default("
|
|
48175
|
+
id: stringType().default("tool_01KC8FGRZ46CX1MR3K9DEMVKCP"),
|
|
48176
48176
|
path: stringType(),
|
|
48177
48177
|
key: stringType(),
|
|
48178
48178
|
displayName: stringType().optional(),
|
|
@@ -48222,13 +48222,13 @@ var init_createtool = __esm(() => {
|
|
|
48222
48222
|
required: arrayType(stringType()).optional()
|
|
48223
48223
|
});
|
|
48224
48224
|
ResponseBodyTools$inboundSchema = objectType({
|
|
48225
|
-
id: stringType().default("
|
|
48225
|
+
id: stringType().default("01KC8FGRZ3Q3XQ0S9P2NY8T0NZ"),
|
|
48226
48226
|
name: stringType(),
|
|
48227
48227
|
description: stringType().optional(),
|
|
48228
48228
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
48229
48229
|
});
|
|
48230
48230
|
ResponseBodyTools$outboundSchema = objectType({
|
|
48231
|
-
id: stringType().default("
|
|
48231
|
+
id: stringType().default("01KC8FGRZ3Q3XQ0S9P2NY8T0NZ"),
|
|
48232
48232
|
name: stringType(),
|
|
48233
48233
|
description: stringType().optional(),
|
|
48234
48234
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -48258,7 +48258,7 @@ var init_createtool = __esm(() => {
|
|
|
48258
48258
|
});
|
|
48259
48259
|
});
|
|
48260
48260
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
48261
|
-
_id: stringType().default("
|
|
48261
|
+
_id: stringType().default("tool_01KC8FGRZ1H7BH9YZD3KQB2G28"),
|
|
48262
48262
|
path: stringType(),
|
|
48263
48263
|
key: stringType(),
|
|
48264
48264
|
display_name: stringType().optional(),
|
|
@@ -48285,7 +48285,7 @@ var init_createtool = __esm(() => {
|
|
|
48285
48285
|
});
|
|
48286
48286
|
});
|
|
48287
48287
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
48288
|
-
id: stringType().default("
|
|
48288
|
+
id: stringType().default("tool_01KC8FGRZ1H7BH9YZD3KQB2G28"),
|
|
48289
48289
|
path: stringType(),
|
|
48290
48290
|
key: stringType(),
|
|
48291
48291
|
displayName: stringType().optional(),
|
|
@@ -48372,7 +48372,7 @@ var init_createtool = __esm(() => {
|
|
|
48372
48372
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
48373
48373
|
});
|
|
48374
48374
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
48375
|
-
_id: stringType().default("
|
|
48375
|
+
_id: stringType().default("tool_01KC8FGRYX0ERM97Z6APP8S415"),
|
|
48376
48376
|
path: stringType(),
|
|
48377
48377
|
key: stringType(),
|
|
48378
48378
|
display_name: stringType().optional(),
|
|
@@ -48399,7 +48399,7 @@ var init_createtool = __esm(() => {
|
|
|
48399
48399
|
});
|
|
48400
48400
|
});
|
|
48401
48401
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
48402
|
-
id: stringType().default("
|
|
48402
|
+
id: stringType().default("tool_01KC8FGRYX0ERM97Z6APP8S415"),
|
|
48403
48403
|
path: stringType(),
|
|
48404
48404
|
key: stringType(),
|
|
48405
48405
|
displayName: stringType().optional(),
|
|
@@ -48458,7 +48458,7 @@ var init_createtool = __esm(() => {
|
|
|
48458
48458
|
strict: booleanType().optional()
|
|
48459
48459
|
});
|
|
48460
48460
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
48461
|
-
_id: stringType().default("
|
|
48461
|
+
_id: stringType().default("tool_01KC8FGRYKRME216BT5FNDTA93"),
|
|
48462
48462
|
path: stringType(),
|
|
48463
48463
|
key: stringType(),
|
|
48464
48464
|
display_name: stringType().optional(),
|
|
@@ -48486,7 +48486,7 @@ var init_createtool = __esm(() => {
|
|
|
48486
48486
|
});
|
|
48487
48487
|
});
|
|
48488
48488
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
48489
|
-
id: stringType().default("
|
|
48489
|
+
id: stringType().default("tool_01KC8FGRYKRME216BT5FNDTA93"),
|
|
48490
48490
|
path: stringType(),
|
|
48491
48491
|
key: stringType(),
|
|
48492
48492
|
displayName: stringType().optional(),
|
|
@@ -48548,7 +48548,7 @@ var init_createtool = __esm(() => {
|
|
|
48548
48548
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
48549
48549
|
});
|
|
48550
48550
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
48551
|
-
_id: stringType().default("
|
|
48551
|
+
_id: stringType().default("tool_01KC8FGRYG62QNJ11CAEQ3R1FP"),
|
|
48552
48552
|
path: stringType(),
|
|
48553
48553
|
key: stringType(),
|
|
48554
48554
|
display_name: stringType().optional(),
|
|
@@ -48575,7 +48575,7 @@ var init_createtool = __esm(() => {
|
|
|
48575
48575
|
});
|
|
48576
48576
|
});
|
|
48577
48577
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
48578
|
-
id: stringType().default("
|
|
48578
|
+
id: stringType().default("tool_01KC8FGRYG62QNJ11CAEQ3R1FP"),
|
|
48579
48579
|
path: stringType(),
|
|
48580
48580
|
key: stringType(),
|
|
48581
48581
|
displayName: stringType().optional(),
|
|
@@ -53695,7 +53695,7 @@ var init_fileget = __esm(() => {
|
|
|
53695
53695
|
bytes: numberType(),
|
|
53696
53696
|
file_name: stringType(),
|
|
53697
53697
|
workspace_id: stringType(),
|
|
53698
|
-
created: stringType().datetime({ offset: true }).default("2025-12-
|
|
53698
|
+
created: stringType().datetime({ offset: true }).default("2025-12-12T05:11:03.686Z").transform((v2) => new Date(v2))
|
|
53699
53699
|
}).transform((v2) => {
|
|
53700
53700
|
return remap(v2, {
|
|
53701
53701
|
_id: "id",
|
|
@@ -53711,7 +53711,7 @@ var init_fileget = __esm(() => {
|
|
|
53711
53711
|
bytes: numberType(),
|
|
53712
53712
|
fileName: stringType(),
|
|
53713
53713
|
workspaceId: stringType(),
|
|
53714
|
-
created: dateType().default(() => new Date("2025-12-
|
|
53714
|
+
created: dateType().default(() => new Date("2025-12-12T05:11:03.686Z")).transform((v2) => v2.toISOString())
|
|
53715
53715
|
}).transform((v2) => {
|
|
53716
53716
|
return remap(v2, {
|
|
53717
53717
|
id: "_id",
|
|
@@ -53766,7 +53766,7 @@ var init_filelist = __esm(() => {
|
|
|
53766
53766
|
bytes: numberType(),
|
|
53767
53767
|
file_name: stringType(),
|
|
53768
53768
|
workspace_id: stringType(),
|
|
53769
|
-
created: stringType().datetime({ offset: true }).default("2025-12-
|
|
53769
|
+
created: stringType().datetime({ offset: true }).default("2025-12-12T05:11:03.686Z").transform((v2) => new Date(v2))
|
|
53770
53770
|
}).transform((v2) => {
|
|
53771
53771
|
return remap(v2, {
|
|
53772
53772
|
_id: "id",
|
|
@@ -53782,7 +53782,7 @@ var init_filelist = __esm(() => {
|
|
|
53782
53782
|
bytes: numberType(),
|
|
53783
53783
|
fileName: stringType(),
|
|
53784
53784
|
workspaceId: stringType(),
|
|
53785
|
-
created: dateType().default(() => new Date("2025-12-
|
|
53785
|
+
created: dateType().default(() => new Date("2025-12-12T05:11:03.686Z")).transform((v2) => v2.toISOString())
|
|
53786
53786
|
}).transform((v2) => {
|
|
53787
53787
|
return remap(v2, {
|
|
53788
53788
|
id: "_id",
|
|
@@ -53890,7 +53890,7 @@ var init_fileupload = __esm(() => {
|
|
|
53890
53890
|
bytes: numberType(),
|
|
53891
53891
|
file_name: stringType(),
|
|
53892
53892
|
workspace_id: stringType(),
|
|
53893
|
-
created: stringType().datetime({ offset: true }).default("2025-12-
|
|
53893
|
+
created: stringType().datetime({ offset: true }).default("2025-12-12T05:11:03.686Z").transform((v2) => new Date(v2))
|
|
53894
53894
|
}).transform((v2) => {
|
|
53895
53895
|
return remap(v2, {
|
|
53896
53896
|
_id: "id",
|
|
@@ -53906,7 +53906,7 @@ var init_fileupload = __esm(() => {
|
|
|
53906
53906
|
bytes: numberType(),
|
|
53907
53907
|
fileName: stringType(),
|
|
53908
53908
|
workspaceId: stringType(),
|
|
53909
|
-
created: dateType().default(() => new Date("2025-12-
|
|
53909
|
+
created: dateType().default(() => new Date("2025-12-12T05:11:03.686Z")).transform((v2) => v2.toISOString())
|
|
53910
53910
|
}).transform((v2) => {
|
|
53911
53911
|
return remap(v2, {
|
|
53912
53912
|
id: "_id",
|
|
@@ -53970,7 +53970,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
53970
53970
|
});
|
|
53971
53971
|
});
|
|
53972
53972
|
GenerateConversationNameResponseBody$inboundSchema2 = objectType({
|
|
53973
|
-
_id: stringType().default("
|
|
53973
|
+
_id: stringType().default("conv_01kc8fgrpv6ajxhm1ph2918j31"),
|
|
53974
53974
|
entity_id: stringType(),
|
|
53975
53975
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
53976
53976
|
display_name: stringType(),
|
|
@@ -53991,7 +53991,7 @@ var init_generateconversationname2 = __esm(() => {
|
|
|
53991
53991
|
});
|
|
53992
53992
|
});
|
|
53993
53993
|
GenerateConversationNameResponseBody$outboundSchema2 = objectType({
|
|
53994
|
-
id: stringType().default("
|
|
53994
|
+
id: stringType().default("conv_01kc8fgrpv6ajxhm1ph2918j31"),
|
|
53995
53995
|
entityId: stringType(),
|
|
53996
53996
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
53997
53997
|
displayName: stringType(),
|
|
@@ -55034,7 +55034,7 @@ var init_getalltools = __esm(() => {
|
|
|
55034
55034
|
code: stringType()
|
|
55035
55035
|
});
|
|
55036
55036
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
55037
|
-
_id: stringType().default("
|
|
55037
|
+
_id: stringType().default("tool_01KC8FGRY2E14W9H7AV97AKTFK"),
|
|
55038
55038
|
path: stringType(),
|
|
55039
55039
|
key: stringType(),
|
|
55040
55040
|
display_name: stringType().optional(),
|
|
@@ -55062,7 +55062,7 @@ var init_getalltools = __esm(() => {
|
|
|
55062
55062
|
});
|
|
55063
55063
|
});
|
|
55064
55064
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
55065
|
-
id: stringType().default("
|
|
55065
|
+
id: stringType().default("tool_01KC8FGRY2E14W9H7AV97AKTFK"),
|
|
55066
55066
|
path: stringType(),
|
|
55067
55067
|
key: stringType(),
|
|
55068
55068
|
displayName: stringType().optional(),
|
|
@@ -55112,13 +55112,13 @@ var init_getalltools = __esm(() => {
|
|
|
55112
55112
|
required: arrayType(stringType()).optional()
|
|
55113
55113
|
});
|
|
55114
55114
|
DataTools$inboundSchema = objectType({
|
|
55115
|
-
id: stringType().default("
|
|
55115
|
+
id: stringType().default("01KC8FGRY1REDS9MNTK7T4PQP9"),
|
|
55116
55116
|
name: stringType(),
|
|
55117
55117
|
description: stringType().optional(),
|
|
55118
55118
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
55119
55119
|
});
|
|
55120
55120
|
DataTools$outboundSchema = objectType({
|
|
55121
|
-
id: stringType().default("
|
|
55121
|
+
id: stringType().default("01KC8FGRY1REDS9MNTK7T4PQP9"),
|
|
55122
55122
|
name: stringType(),
|
|
55123
55123
|
description: stringType().optional(),
|
|
55124
55124
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -55148,7 +55148,7 @@ var init_getalltools = __esm(() => {
|
|
|
55148
55148
|
});
|
|
55149
55149
|
});
|
|
55150
55150
|
DataMCPTool$inboundSchema = objectType({
|
|
55151
|
-
_id: stringType().default("
|
|
55151
|
+
_id: stringType().default("tool_01KC8FGRY01GQ1TZ5SQD6W3Y6R"),
|
|
55152
55152
|
path: stringType(),
|
|
55153
55153
|
key: stringType(),
|
|
55154
55154
|
display_name: stringType().optional(),
|
|
@@ -55175,7 +55175,7 @@ var init_getalltools = __esm(() => {
|
|
|
55175
55175
|
});
|
|
55176
55176
|
});
|
|
55177
55177
|
DataMCPTool$outboundSchema = objectType({
|
|
55178
|
-
id: stringType().default("
|
|
55178
|
+
id: stringType().default("tool_01KC8FGRY01GQ1TZ5SQD6W3Y6R"),
|
|
55179
55179
|
path: stringType(),
|
|
55180
55180
|
key: stringType(),
|
|
55181
55181
|
displayName: stringType().optional(),
|
|
@@ -55262,7 +55262,7 @@ var init_getalltools = __esm(() => {
|
|
|
55262
55262
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
55263
55263
|
});
|
|
55264
55264
|
DataHTTPTool$inboundSchema = objectType({
|
|
55265
|
-
_id: stringType().default("
|
|
55265
|
+
_id: stringType().default("tool_01KC8FGRXYZYW4FX7PR2ZFV1PF"),
|
|
55266
55266
|
path: stringType(),
|
|
55267
55267
|
key: stringType(),
|
|
55268
55268
|
display_name: stringType().optional(),
|
|
@@ -55289,7 +55289,7 @@ var init_getalltools = __esm(() => {
|
|
|
55289
55289
|
});
|
|
55290
55290
|
});
|
|
55291
55291
|
DataHTTPTool$outboundSchema = objectType({
|
|
55292
|
-
id: stringType().default("
|
|
55292
|
+
id: stringType().default("tool_01KC8FGRXYZYW4FX7PR2ZFV1PF"),
|
|
55293
55293
|
path: stringType(),
|
|
55294
55294
|
key: stringType(),
|
|
55295
55295
|
displayName: stringType().optional(),
|
|
@@ -55348,7 +55348,7 @@ var init_getalltools = __esm(() => {
|
|
|
55348
55348
|
strict: booleanType().optional()
|
|
55349
55349
|
});
|
|
55350
55350
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
55351
|
-
_id: stringType().default("
|
|
55351
|
+
_id: stringType().default("tool_01KC8FGRXXQC88P3CDN52ZNEFD"),
|
|
55352
55352
|
path: stringType(),
|
|
55353
55353
|
key: stringType(),
|
|
55354
55354
|
display_name: stringType().optional(),
|
|
@@ -55376,7 +55376,7 @@ var init_getalltools = __esm(() => {
|
|
|
55376
55376
|
});
|
|
55377
55377
|
});
|
|
55378
55378
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
55379
|
-
id: stringType().default("
|
|
55379
|
+
id: stringType().default("tool_01KC8FGRXXQC88P3CDN52ZNEFD"),
|
|
55380
55380
|
path: stringType(),
|
|
55381
55381
|
key: stringType(),
|
|
55382
55382
|
displayName: stringType().optional(),
|
|
@@ -55438,7 +55438,7 @@ var init_getalltools = __esm(() => {
|
|
|
55438
55438
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
55439
55439
|
});
|
|
55440
55440
|
DataFunctionTool$inboundSchema = objectType({
|
|
55441
|
-
_id: stringType().default("
|
|
55441
|
+
_id: stringType().default("tool_01KC8FGRXV63FBZDY0RA000QFF"),
|
|
55442
55442
|
path: stringType(),
|
|
55443
55443
|
key: stringType(),
|
|
55444
55444
|
display_name: stringType().optional(),
|
|
@@ -55465,7 +55465,7 @@ var init_getalltools = __esm(() => {
|
|
|
55465
55465
|
});
|
|
55466
55466
|
});
|
|
55467
55467
|
DataFunctionTool$outboundSchema = objectType({
|
|
55468
|
-
id: stringType().default("
|
|
55468
|
+
id: stringType().default("tool_01KC8FGRXV63FBZDY0RA000QFF"),
|
|
55469
55469
|
path: stringType(),
|
|
55470
55470
|
key: stringType(),
|
|
55471
55471
|
displayName: stringType().optional(),
|
|
@@ -55607,7 +55607,7 @@ var init_getbudget = __esm(() => {
|
|
|
55607
55607
|
is_active: booleanType(),
|
|
55608
55608
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
55609
55609
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55610
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
55610
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.477Z").transform((v2) => new Date(v2))
|
|
55611
55611
|
}).transform((v2) => {
|
|
55612
55612
|
return remap(v2, {
|
|
55613
55613
|
_id: "id",
|
|
@@ -55627,7 +55627,7 @@ var init_getbudget = __esm(() => {
|
|
|
55627
55627
|
isActive: booleanType(),
|
|
55628
55628
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
55629
55629
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55630
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
55630
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.477Z")).transform((v2) => v2.toISOString())
|
|
55631
55631
|
}).transform((v2) => {
|
|
55632
55632
|
return remap(v2, {
|
|
55633
55633
|
id: "_id",
|
|
@@ -55823,8 +55823,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55823
55823
|
DataTypescript$inboundSchema = objectType({
|
|
55824
55824
|
_id: stringType(),
|
|
55825
55825
|
description: stringType(),
|
|
55826
|
-
created: stringType().default("2025-12-
|
|
55827
|
-
updated: stringType().default("2025-12-
|
|
55826
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55827
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55828
55828
|
guardrail_config: unionType([
|
|
55829
55829
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
55830
55830
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -55841,8 +55841,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55841
55841
|
DataTypescript$outboundSchema = objectType({
|
|
55842
55842
|
id: stringType(),
|
|
55843
55843
|
description: stringType(),
|
|
55844
|
-
created: stringType().default("2025-12-
|
|
55845
|
-
updated: stringType().default("2025-12-
|
|
55844
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55845
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55846
55846
|
guardrailConfig: unionType([
|
|
55847
55847
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
55848
55848
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -55893,8 +55893,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55893
55893
|
DataRagas$inboundSchema = objectType({
|
|
55894
55894
|
_id: stringType(),
|
|
55895
55895
|
description: stringType(),
|
|
55896
|
-
created: stringType().default("2025-12-
|
|
55897
|
-
updated: stringType().default("2025-12-
|
|
55896
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55897
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55898
55898
|
guardrail_config: unionType([
|
|
55899
55899
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
55900
55900
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -55913,8 +55913,8 @@ var init_getevals2 = __esm(() => {
|
|
|
55913
55913
|
DataRagas$outboundSchema = objectType({
|
|
55914
55914
|
id: stringType(),
|
|
55915
55915
|
description: stringType(),
|
|
55916
|
-
created: stringType().default("2025-12-
|
|
55917
|
-
updated: stringType().default("2025-12-
|
|
55916
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55917
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
55918
55918
|
guardrailConfig: unionType([
|
|
55919
55919
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
55920
55920
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -56249,8 +56249,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56249
56249
|
DataFunction$inboundSchema = objectType({
|
|
56250
56250
|
_id: stringType(),
|
|
56251
56251
|
description: stringType(),
|
|
56252
|
-
created: stringType().default("2025-12-
|
|
56253
|
-
updated: stringType().default("2025-12-
|
|
56252
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56253
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56254
56254
|
guardrail_config: unionType([
|
|
56255
56255
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
56256
56256
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -56301,8 +56301,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56301
56301
|
DataFunction$outboundSchema = objectType({
|
|
56302
56302
|
id: stringType(),
|
|
56303
56303
|
description: stringType(),
|
|
56304
|
-
created: stringType().default("2025-12-
|
|
56305
|
-
updated: stringType().default("2025-12-
|
|
56304
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56305
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56306
56306
|
guardrailConfig: unionType([
|
|
56307
56307
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
56308
56308
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -56385,8 +56385,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56385
56385
|
DataPython$inboundSchema = objectType({
|
|
56386
56386
|
_id: stringType(),
|
|
56387
56387
|
description: stringType(),
|
|
56388
|
-
created: stringType().default("2025-12-
|
|
56389
|
-
updated: stringType().default("2025-12-
|
|
56388
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56389
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56390
56390
|
guardrail_config: unionType([
|
|
56391
56391
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
56392
56392
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
|
|
@@ -56403,8 +56403,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56403
56403
|
DataPython$outboundSchema = objectType({
|
|
56404
56404
|
id: stringType(),
|
|
56405
56405
|
description: stringType(),
|
|
56406
|
-
created: stringType().default("2025-12-
|
|
56407
|
-
updated: stringType().default("2025-12-
|
|
56406
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56407
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56408
56408
|
guardrailConfig: unionType([
|
|
56409
56409
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
56410
56410
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
|
|
@@ -56455,8 +56455,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56455
56455
|
DataHTTP$inboundSchema = objectType({
|
|
56456
56456
|
_id: stringType(),
|
|
56457
56457
|
description: stringType(),
|
|
56458
|
-
created: stringType().default("2025-12-
|
|
56459
|
-
updated: stringType().default("2025-12-
|
|
56458
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56459
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56460
56460
|
guardrail_config: unionType([
|
|
56461
56461
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
56462
56462
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
|
|
@@ -56476,8 +56476,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56476
56476
|
DataHTTP$outboundSchema = objectType({
|
|
56477
56477
|
id: stringType(),
|
|
56478
56478
|
description: stringType(),
|
|
56479
|
-
created: stringType().default("2025-12-
|
|
56480
|
-
updated: stringType().default("2025-12-
|
|
56479
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56480
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56481
56481
|
guardrailConfig: unionType([
|
|
56482
56482
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
56483
56483
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
|
|
@@ -56529,8 +56529,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56529
56529
|
DataJSON$inboundSchema = objectType({
|
|
56530
56530
|
_id: stringType(),
|
|
56531
56531
|
description: stringType(),
|
|
56532
|
-
created: stringType().default("2025-12-
|
|
56533
|
-
updated: stringType().default("2025-12-
|
|
56532
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56533
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56534
56534
|
guardrail_config: unionType([
|
|
56535
56535
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
56536
56536
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
|
|
@@ -56547,8 +56547,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56547
56547
|
DataJSON$outboundSchema = objectType({
|
|
56548
56548
|
id: stringType(),
|
|
56549
56549
|
description: stringType(),
|
|
56550
|
-
created: stringType().default("2025-12-
|
|
56551
|
-
updated: stringType().default("2025-12-
|
|
56550
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56551
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56552
56552
|
guardrailConfig: unionType([
|
|
56553
56553
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
56554
56554
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
|
|
@@ -56597,8 +56597,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56597
56597
|
DataLLM$inboundSchema = objectType({
|
|
56598
56598
|
_id: stringType(),
|
|
56599
56599
|
description: stringType(),
|
|
56600
|
-
created: stringType().default("2025-12-
|
|
56601
|
-
updated: stringType().default("2025-12-
|
|
56600
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56601
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56602
56602
|
guardrail_config: unionType([
|
|
56603
56603
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
56604
56604
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -56616,8 +56616,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56616
56616
|
DataLLM$outboundSchema = objectType({
|
|
56617
56617
|
id: stringType(),
|
|
56618
56618
|
description: stringType(),
|
|
56619
|
-
created: stringType().default("2025-12-
|
|
56620
|
-
updated: stringType().default("2025-12-
|
|
56619
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56620
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
56621
56621
|
guardrailConfig: unionType([
|
|
56622
56622
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
56623
56623
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -59769,7 +59769,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59769
59769
|
is_active: booleanType(),
|
|
59770
59770
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
59771
59771
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59772
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
59772
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.477Z").transform((v2) => new Date(v2))
|
|
59773
59773
|
}).transform((v2) => {
|
|
59774
59774
|
return remap(v2, {
|
|
59775
59775
|
_id: "id",
|
|
@@ -59787,7 +59787,7 @@ var init_listbudgets = __esm(() => {
|
|
|
59787
59787
|
isActive: booleanType(),
|
|
59788
59788
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
59789
59789
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59790
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
59790
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.477Z")).transform((v2) => v2.toISOString())
|
|
59791
59791
|
}).transform((v2) => {
|
|
59792
59792
|
return remap(v2, {
|
|
59793
59793
|
id: "_id",
|
|
@@ -60117,7 +60117,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60117
60117
|
tags: arrayType(stringType()).optional(),
|
|
60118
60118
|
metadata: recordType(anyType()).optional(),
|
|
60119
60119
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60120
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
60120
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2)),
|
|
60121
60121
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60122
60122
|
}).transform((v2) => {
|
|
60123
60123
|
return remap(v2, {
|
|
@@ -60136,7 +60136,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60136
60136
|
tags: arrayType(stringType()).optional(),
|
|
60137
60137
|
metadata: recordType(anyType()).optional(),
|
|
60138
60138
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60139
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
60139
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString()),
|
|
60140
60140
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
60141
60141
|
}).transform((v2) => {
|
|
60142
60142
|
return remap(v2, {
|
|
@@ -60602,7 +60602,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60602
60602
|
human_review_id: stringType(),
|
|
60603
60603
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
60604
60604
|
reviewed_by_id: stringType(),
|
|
60605
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
60605
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.863Z").transform((v2) => new Date(v2)),
|
|
60606
60606
|
type: literalType("string_array"),
|
|
60607
60607
|
values: arrayType(stringType())
|
|
60608
60608
|
}).transform((v2) => {
|
|
@@ -60619,7 +60619,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60619
60619
|
humanReviewId: stringType(),
|
|
60620
60620
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
60621
60621
|
reviewedById: stringType(),
|
|
60622
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
60622
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.863Z")).transform((v2) => v2.toISOString()),
|
|
60623
60623
|
type: literalType("string_array"),
|
|
60624
60624
|
values: arrayType(stringType())
|
|
60625
60625
|
}).transform((v2) => {
|
|
@@ -60640,7 +60640,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60640
60640
|
human_review_id: stringType(),
|
|
60641
60641
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
60642
60642
|
reviewed_by_id: stringType(),
|
|
60643
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
60643
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.863Z").transform((v2) => new Date(v2)),
|
|
60644
60644
|
type: literalType("number"),
|
|
60645
60645
|
value: numberType()
|
|
60646
60646
|
}).transform((v2) => {
|
|
@@ -60657,7 +60657,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60657
60657
|
humanReviewId: stringType(),
|
|
60658
60658
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
60659
60659
|
reviewedById: stringType(),
|
|
60660
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
60660
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.863Z")).transform((v2) => v2.toISOString()),
|
|
60661
60661
|
type: literalType("number"),
|
|
60662
60662
|
value: numberType()
|
|
60663
60663
|
}).transform((v2) => {
|
|
@@ -60678,7 +60678,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60678
60678
|
human_review_id: stringType(),
|
|
60679
60679
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
60680
60680
|
reviewed_by_id: stringType(),
|
|
60681
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
60681
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.862Z").transform((v2) => new Date(v2)),
|
|
60682
60682
|
type: literalType("string"),
|
|
60683
60683
|
value: stringType()
|
|
60684
60684
|
}).transform((v2) => {
|
|
@@ -60695,7 +60695,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60695
60695
|
humanReviewId: stringType(),
|
|
60696
60696
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
60697
60697
|
reviewedById: stringType(),
|
|
60698
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
60698
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.862Z")).transform((v2) => v2.toISOString()),
|
|
60699
60699
|
type: literalType("string"),
|
|
60700
60700
|
value: stringType()
|
|
60701
60701
|
}).transform((v2) => {
|
|
@@ -60738,7 +60738,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60738
60738
|
created_by_id: stringType().optional(),
|
|
60739
60739
|
updated_by_id: stringType().optional(),
|
|
60740
60740
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60741
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
60741
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
60742
60742
|
}).transform((v2) => {
|
|
60743
60743
|
return remap(v2, {
|
|
60744
60744
|
_id: "id",
|
|
@@ -60772,7 +60772,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
60772
60772
|
createdById: stringType().optional(),
|
|
60773
60773
|
updatedById: stringType().optional(),
|
|
60774
60774
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60775
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
60775
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
60776
60776
|
}).transform((v2) => {
|
|
60777
60777
|
return remap(v2, {
|
|
60778
60778
|
id: "_id",
|
|
@@ -60861,7 +60861,7 @@ var init_listdatasets = __esm(() => {
|
|
|
60861
60861
|
created_by_id: stringType().optional(),
|
|
60862
60862
|
updated_by_id: stringType().optional(),
|
|
60863
60863
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60864
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
60864
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
60865
60865
|
}).transform((v2) => {
|
|
60866
60866
|
return remap(v2, {
|
|
60867
60867
|
_id: "id",
|
|
@@ -60881,7 +60881,7 @@ var init_listdatasets = __esm(() => {
|
|
|
60881
60881
|
createdById: stringType().optional(),
|
|
60882
60882
|
updatedById: stringType().optional(),
|
|
60883
60883
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60884
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
60884
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
60885
60885
|
}).transform((v2) => {
|
|
60886
60886
|
return remap(v2, {
|
|
60887
60887
|
id: "_id",
|
|
@@ -60962,7 +60962,7 @@ var init_listdatasources = __esm(() => {
|
|
|
60962
60962
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
60963
60963
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
60964
60964
|
ListDatasourcesData$inboundSchema = objectType({
|
|
60965
|
-
_id: stringType().default("
|
|
60965
|
+
_id: stringType().default("01KC8FGS4EHE235GYKQTF9HZ4K"),
|
|
60966
60966
|
display_name: stringType(),
|
|
60967
60967
|
description: stringType().optional(),
|
|
60968
60968
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -60985,7 +60985,7 @@ var init_listdatasources = __esm(() => {
|
|
|
60985
60985
|
});
|
|
60986
60986
|
});
|
|
60987
60987
|
ListDatasourcesData$outboundSchema = objectType({
|
|
60988
|
-
id: stringType().default("
|
|
60988
|
+
id: stringType().default("01KC8FGS4EHE235GYKQTF9HZ4K"),
|
|
60989
60989
|
displayName: stringType(),
|
|
60990
60990
|
description: stringType().optional(),
|
|
60991
60991
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -63110,7 +63110,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63110
63110
|
tags: arrayType(stringType()).optional(),
|
|
63111
63111
|
metadata: recordType(anyType()).optional(),
|
|
63112
63112
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63113
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
63113
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
63114
63114
|
}).transform((v2) => {
|
|
63115
63115
|
return remap(v2, {
|
|
63116
63116
|
_id: "id",
|
|
@@ -63128,7 +63128,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63128
63128
|
tags: arrayType(stringType()).optional(),
|
|
63129
63129
|
metadata: recordType(anyType()).optional(),
|
|
63130
63130
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63131
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
63131
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
63132
63132
|
}).transform((v2) => {
|
|
63133
63133
|
return remap(v2, {
|
|
63134
63134
|
id: "_id",
|
|
@@ -63182,7 +63182,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
63182
63182
|
});
|
|
63183
63183
|
});
|
|
63184
63184
|
RetrieveConversationResponseBody$inboundSchema2 = objectType({
|
|
63185
|
-
_id: stringType().default("
|
|
63185
|
+
_id: stringType().default("conv_01kc8fgrpxstfzd0pjestxetvh"),
|
|
63186
63186
|
entity_id: stringType(),
|
|
63187
63187
|
kind: RetrieveConversationKind$inboundSchema,
|
|
63188
63188
|
display_name: stringType(),
|
|
@@ -63203,7 +63203,7 @@ var init_retrieveconversation2 = __esm(() => {
|
|
|
63203
63203
|
});
|
|
63204
63204
|
});
|
|
63205
63205
|
RetrieveConversationResponseBody$outboundSchema2 = objectType({
|
|
63206
|
-
id: stringType().default("
|
|
63206
|
+
id: stringType().default("conv_01kc8fgrpxstfzd0pjestxetvh"),
|
|
63207
63207
|
entityId: stringType(),
|
|
63208
63208
|
kind: RetrieveConversationKind$outboundSchema,
|
|
63209
63209
|
displayName: stringType(),
|
|
@@ -63599,7 +63599,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63599
63599
|
human_review_id: stringType(),
|
|
63600
63600
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
63601
63601
|
reviewed_by_id: stringType(),
|
|
63602
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
63602
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.880Z").transform((v2) => new Date(v2)),
|
|
63603
63603
|
type: literalType("string_array"),
|
|
63604
63604
|
values: arrayType(stringType())
|
|
63605
63605
|
}).transform((v2) => {
|
|
@@ -63616,7 +63616,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63616
63616
|
humanReviewId: stringType(),
|
|
63617
63617
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
63618
63618
|
reviewedById: stringType(),
|
|
63619
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
63619
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.880Z")).transform((v2) => v2.toISOString()),
|
|
63620
63620
|
type: literalType("string_array"),
|
|
63621
63621
|
values: arrayType(stringType())
|
|
63622
63622
|
}).transform((v2) => {
|
|
@@ -63637,7 +63637,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63637
63637
|
human_review_id: stringType(),
|
|
63638
63638
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
63639
63639
|
reviewed_by_id: stringType(),
|
|
63640
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
63640
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.880Z").transform((v2) => new Date(v2)),
|
|
63641
63641
|
type: literalType("number"),
|
|
63642
63642
|
value: numberType()
|
|
63643
63643
|
}).transform((v2) => {
|
|
@@ -63654,7 +63654,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63654
63654
|
humanReviewId: stringType(),
|
|
63655
63655
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
63656
63656
|
reviewedById: stringType(),
|
|
63657
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
63657
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.880Z")).transform((v2) => v2.toISOString()),
|
|
63658
63658
|
type: literalType("number"),
|
|
63659
63659
|
value: numberType()
|
|
63660
63660
|
}).transform((v2) => {
|
|
@@ -63675,7 +63675,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63675
63675
|
human_review_id: stringType(),
|
|
63676
63676
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
63677
63677
|
reviewed_by_id: stringType(),
|
|
63678
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
63678
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.879Z").transform((v2) => new Date(v2)),
|
|
63679
63679
|
type: literalType("string"),
|
|
63680
63680
|
value: stringType()
|
|
63681
63681
|
}).transform((v2) => {
|
|
@@ -63692,7 +63692,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63692
63692
|
humanReviewId: stringType(),
|
|
63693
63693
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
63694
63694
|
reviewedById: stringType(),
|
|
63695
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
63695
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.879Z")).transform((v2) => v2.toISOString()),
|
|
63696
63696
|
type: literalType("string"),
|
|
63697
63697
|
value: stringType()
|
|
63698
63698
|
}).transform((v2) => {
|
|
@@ -63735,7 +63735,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63735
63735
|
created_by_id: stringType().optional(),
|
|
63736
63736
|
updated_by_id: stringType().optional(),
|
|
63737
63737
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63738
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
63738
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
63739
63739
|
}).transform((v2) => {
|
|
63740
63740
|
return remap(v2, {
|
|
63741
63741
|
_id: "id",
|
|
@@ -63769,7 +63769,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63769
63769
|
createdById: stringType().optional(),
|
|
63770
63770
|
updatedById: stringType().optional(),
|
|
63771
63771
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63772
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
63772
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
63773
63773
|
}).transform((v2) => {
|
|
63774
63774
|
return remap(v2, {
|
|
63775
63775
|
id: "_id",
|
|
@@ -63829,7 +63829,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63829
63829
|
created_by_id: stringType().optional(),
|
|
63830
63830
|
updated_by_id: stringType().optional(),
|
|
63831
63831
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63832
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
63832
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
63833
63833
|
}).transform((v2) => {
|
|
63834
63834
|
return remap(v2, {
|
|
63835
63835
|
_id: "id",
|
|
@@ -63849,7 +63849,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
63849
63849
|
createdById: stringType().optional(),
|
|
63850
63850
|
updatedById: stringType().optional(),
|
|
63851
63851
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63852
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
63852
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
63853
63853
|
}).transform((v2) => {
|
|
63854
63854
|
return remap(v2, {
|
|
63855
63855
|
id: "_id",
|
|
@@ -63895,7 +63895,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63895
63895
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
63896
63896
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
63897
63897
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
63898
|
-
_id: stringType().default("
|
|
63898
|
+
_id: stringType().default("01KC8FGS4GZM7SJ5ST3BNY609R"),
|
|
63899
63899
|
display_name: stringType(),
|
|
63900
63900
|
description: stringType().optional(),
|
|
63901
63901
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -63918,7 +63918,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
63918
63918
|
});
|
|
63919
63919
|
});
|
|
63920
63920
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
63921
|
-
id: stringType().default("
|
|
63921
|
+
id: stringType().default("01KC8FGS4GZM7SJ5ST3BNY609R"),
|
|
63922
63922
|
displayName: stringType(),
|
|
63923
63923
|
description: stringType().optional(),
|
|
63924
63924
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64257,7 +64257,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64257
64257
|
code: stringType()
|
|
64258
64258
|
});
|
|
64259
64259
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
64260
|
-
_id: stringType().default("
|
|
64260
|
+
_id: stringType().default("tool_01KC8FGS18T92BGJ9KN6QZQ087"),
|
|
64261
64261
|
path: stringType(),
|
|
64262
64262
|
key: stringType(),
|
|
64263
64263
|
display_name: stringType().optional(),
|
|
@@ -64285,7 +64285,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64285
64285
|
});
|
|
64286
64286
|
});
|
|
64287
64287
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
64288
|
-
id: stringType().default("
|
|
64288
|
+
id: stringType().default("tool_01KC8FGS18T92BGJ9KN6QZQ087"),
|
|
64289
64289
|
path: stringType(),
|
|
64290
64290
|
key: stringType(),
|
|
64291
64291
|
displayName: stringType().optional(),
|
|
@@ -64335,13 +64335,13 @@ var init_retrievetool = __esm(() => {
|
|
|
64335
64335
|
required: arrayType(stringType()).optional()
|
|
64336
64336
|
});
|
|
64337
64337
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
64338
|
-
id: stringType().default("
|
|
64338
|
+
id: stringType().default("01KC8FGS17V69EEWH8C7XH2QHF"),
|
|
64339
64339
|
name: stringType(),
|
|
64340
64340
|
description: stringType().optional(),
|
|
64341
64341
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
64342
64342
|
});
|
|
64343
64343
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
64344
|
-
id: stringType().default("
|
|
64344
|
+
id: stringType().default("01KC8FGS17V69EEWH8C7XH2QHF"),
|
|
64345
64345
|
name: stringType(),
|
|
64346
64346
|
description: stringType().optional(),
|
|
64347
64347
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -64371,7 +64371,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64371
64371
|
});
|
|
64372
64372
|
});
|
|
64373
64373
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
64374
|
-
_id: stringType().default("
|
|
64374
|
+
_id: stringType().default("tool_01KC8FGS166YKRBEPCPYB1GYYK"),
|
|
64375
64375
|
path: stringType(),
|
|
64376
64376
|
key: stringType(),
|
|
64377
64377
|
display_name: stringType().optional(),
|
|
@@ -64398,7 +64398,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64398
64398
|
});
|
|
64399
64399
|
});
|
|
64400
64400
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
64401
|
-
id: stringType().default("
|
|
64401
|
+
id: stringType().default("tool_01KC8FGS166YKRBEPCPYB1GYYK"),
|
|
64402
64402
|
path: stringType(),
|
|
64403
64403
|
key: stringType(),
|
|
64404
64404
|
displayName: stringType().optional(),
|
|
@@ -64485,7 +64485,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64485
64485
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64486
64486
|
});
|
|
64487
64487
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
64488
|
-
_id: stringType().default("
|
|
64488
|
+
_id: stringType().default("tool_01KC8FGS14SK7741BTBVB52CRK"),
|
|
64489
64489
|
path: stringType(),
|
|
64490
64490
|
key: stringType(),
|
|
64491
64491
|
display_name: stringType().optional(),
|
|
@@ -64512,7 +64512,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64512
64512
|
});
|
|
64513
64513
|
});
|
|
64514
64514
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
64515
|
-
id: stringType().default("
|
|
64515
|
+
id: stringType().default("tool_01KC8FGS14SK7741BTBVB52CRK"),
|
|
64516
64516
|
path: stringType(),
|
|
64517
64517
|
key: stringType(),
|
|
64518
64518
|
displayName: stringType().optional(),
|
|
@@ -64571,7 +64571,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64571
64571
|
strict: booleanType().optional()
|
|
64572
64572
|
});
|
|
64573
64573
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
64574
|
-
_id: stringType().default("
|
|
64574
|
+
_id: stringType().default("tool_01KC8FGS0TJFTHQB2DBSE1SAQE"),
|
|
64575
64575
|
path: stringType(),
|
|
64576
64576
|
key: stringType(),
|
|
64577
64577
|
display_name: stringType().optional(),
|
|
@@ -64599,7 +64599,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64599
64599
|
});
|
|
64600
64600
|
});
|
|
64601
64601
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
64602
|
-
id: stringType().default("
|
|
64602
|
+
id: stringType().default("tool_01KC8FGS0TJFTHQB2DBSE1SAQE"),
|
|
64603
64603
|
path: stringType(),
|
|
64604
64604
|
key: stringType(),
|
|
64605
64605
|
displayName: stringType().optional(),
|
|
@@ -64661,7 +64661,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64661
64661
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
64662
64662
|
});
|
|
64663
64663
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
64664
|
-
_id: stringType().default("
|
|
64664
|
+
_id: stringType().default("tool_01KC8FGS0RP3CYQKW546V706AF"),
|
|
64665
64665
|
path: stringType(),
|
|
64666
64666
|
key: stringType(),
|
|
64667
64667
|
display_name: stringType().optional(),
|
|
@@ -64688,7 +64688,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64688
64688
|
});
|
|
64689
64689
|
});
|
|
64690
64690
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
64691
|
-
id: stringType().default("
|
|
64691
|
+
id: stringType().default("tool_01KC8FGS0RP3CYQKW546V706AF"),
|
|
64692
64692
|
path: stringType(),
|
|
64693
64693
|
key: stringType(),
|
|
64694
64694
|
displayName: stringType().optional(),
|
|
@@ -65466,13 +65466,13 @@ var init_runagent = __esm(() => {
|
|
|
65466
65466
|
required: arrayType(stringType()).optional()
|
|
65467
65467
|
});
|
|
65468
65468
|
Tools$inboundSchema2 = objectType({
|
|
65469
|
-
id: stringType().default("
|
|
65469
|
+
id: stringType().default("01KC8FGRK1CMK8G1B9P7JRFYJD"),
|
|
65470
65470
|
name: stringType(),
|
|
65471
65471
|
description: stringType().optional(),
|
|
65472
65472
|
schema: lazyType(() => Schema$inboundSchema)
|
|
65473
65473
|
});
|
|
65474
65474
|
Tools$outboundSchema2 = objectType({
|
|
65475
|
-
id: stringType().default("
|
|
65475
|
+
id: stringType().default("01KC8FGRK1CMK8G1B9P7JRFYJD"),
|
|
65476
65476
|
name: stringType(),
|
|
65477
65477
|
description: stringType().optional(),
|
|
65478
65478
|
schema: lazyType(() => Schema$outboundSchema)
|
|
@@ -67676,13 +67676,13 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67676
67676
|
required: arrayType(stringType()).optional()
|
|
67677
67677
|
});
|
|
67678
67678
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
67679
|
-
id: stringType().default("
|
|
67679
|
+
id: stringType().default("01KC8FGRMYM3VJ9EZZQGSV5TXA"),
|
|
67680
67680
|
name: stringType(),
|
|
67681
67681
|
description: stringType().optional(),
|
|
67682
67682
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
67683
67683
|
});
|
|
67684
67684
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
67685
|
-
id: stringType().default("
|
|
67685
|
+
id: stringType().default("01KC8FGRMYM3VJ9EZZQGSV5TXA"),
|
|
67686
67686
|
name: stringType(),
|
|
67687
67687
|
description: stringType().optional(),
|
|
67688
67688
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -70390,7 +70390,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70390
70390
|
is_active: booleanType(),
|
|
70391
70391
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
70392
70392
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70393
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
70393
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.477Z").transform((v2) => new Date(v2))
|
|
70394
70394
|
}).transform((v2) => {
|
|
70395
70395
|
return remap(v2, {
|
|
70396
70396
|
_id: "id",
|
|
@@ -70410,7 +70410,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70410
70410
|
isActive: booleanType(),
|
|
70411
70411
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
70412
70412
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70413
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
70413
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.477Z")).transform((v2) => v2.toISOString())
|
|
70414
70414
|
}).transform((v2) => {
|
|
70415
70415
|
return remap(v2, {
|
|
70416
70416
|
id: "_id",
|
|
@@ -70566,7 +70566,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70566
70566
|
tags: arrayType(stringType()).optional(),
|
|
70567
70567
|
metadata: recordType(anyType()).optional(),
|
|
70568
70568
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70569
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
70569
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
70570
70570
|
}).transform((v2) => {
|
|
70571
70571
|
return remap(v2, {
|
|
70572
70572
|
_id: "id",
|
|
@@ -70584,7 +70584,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
70584
70584
|
tags: arrayType(stringType()).optional(),
|
|
70585
70585
|
metadata: recordType(anyType()).optional(),
|
|
70586
70586
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70587
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
70587
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
70588
70588
|
}).transform((v2) => {
|
|
70589
70589
|
return remap(v2, {
|
|
70590
70590
|
id: "_id",
|
|
@@ -70676,7 +70676,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
70676
70676
|
});
|
|
70677
70677
|
});
|
|
70678
70678
|
UpdateConversationResponseBody$inboundSchema2 = objectType({
|
|
70679
|
-
_id: stringType().default("
|
|
70679
|
+
_id: stringType().default("conv_01kc8fgrpzpkv1yesxr9j73gfm"),
|
|
70680
70680
|
entity_id: stringType(),
|
|
70681
70681
|
kind: UpdateConversationKind$inboundSchema,
|
|
70682
70682
|
display_name: stringType(),
|
|
@@ -70697,7 +70697,7 @@ var init_updateconversation2 = __esm(() => {
|
|
|
70697
70697
|
});
|
|
70698
70698
|
});
|
|
70699
70699
|
UpdateConversationResponseBody$outboundSchema2 = objectType({
|
|
70700
|
-
id: stringType().default("
|
|
70700
|
+
id: stringType().default("conv_01kc8fgrpzpkv1yesxr9j73gfm"),
|
|
70701
70701
|
entityId: stringType(),
|
|
70702
70702
|
kind: UpdateConversationKind$outboundSchema,
|
|
70703
70703
|
displayName: stringType(),
|
|
@@ -71446,7 +71446,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71446
71446
|
human_review_id: stringType(),
|
|
71447
71447
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
71448
71448
|
reviewed_by_id: stringType(),
|
|
71449
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
71449
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.951Z").transform((v2) => new Date(v2)),
|
|
71450
71450
|
type: literalType("string_array"),
|
|
71451
71451
|
values: arrayType(stringType())
|
|
71452
71452
|
}).transform((v2) => {
|
|
@@ -71463,7 +71463,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71463
71463
|
humanReviewId: stringType(),
|
|
71464
71464
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
71465
71465
|
reviewedById: stringType(),
|
|
71466
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
71466
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.951Z")).transform((v2) => v2.toISOString()),
|
|
71467
71467
|
type: literalType("string_array"),
|
|
71468
71468
|
values: arrayType(stringType())
|
|
71469
71469
|
}).transform((v2) => {
|
|
@@ -71484,7 +71484,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71484
71484
|
human_review_id: stringType(),
|
|
71485
71485
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
71486
71486
|
reviewed_by_id: stringType(),
|
|
71487
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
71487
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.950Z").transform((v2) => new Date(v2)),
|
|
71488
71488
|
type: literalType("number"),
|
|
71489
71489
|
value: numberType()
|
|
71490
71490
|
}).transform((v2) => {
|
|
@@ -71501,7 +71501,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71501
71501
|
humanReviewId: stringType(),
|
|
71502
71502
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
71503
71503
|
reviewedById: stringType(),
|
|
71504
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
71504
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.950Z")).transform((v2) => v2.toISOString()),
|
|
71505
71505
|
type: literalType("number"),
|
|
71506
71506
|
value: numberType()
|
|
71507
71507
|
}).transform((v2) => {
|
|
@@ -71522,7 +71522,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71522
71522
|
human_review_id: stringType(),
|
|
71523
71523
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
71524
71524
|
reviewed_by_id: stringType(),
|
|
71525
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-
|
|
71525
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-12-12T05:11:12.949Z").transform((v2) => new Date(v2)),
|
|
71526
71526
|
type: literalType("string"),
|
|
71527
71527
|
value: stringType()
|
|
71528
71528
|
}).transform((v2) => {
|
|
@@ -71539,7 +71539,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71539
71539
|
humanReviewId: stringType(),
|
|
71540
71540
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
71541
71541
|
reviewedById: stringType(),
|
|
71542
|
-
reviewedAt: dateType().default(() => new Date("2025-12-
|
|
71542
|
+
reviewedAt: dateType().default(() => new Date("2025-12-12T05:11:12.949Z")).transform((v2) => v2.toISOString()),
|
|
71543
71543
|
type: literalType("string"),
|
|
71544
71544
|
value: stringType()
|
|
71545
71545
|
}).transform((v2) => {
|
|
@@ -71582,7 +71582,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71582
71582
|
created_by_id: stringType().optional(),
|
|
71583
71583
|
updated_by_id: stringType().optional(),
|
|
71584
71584
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71585
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
71585
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
71586
71586
|
}).transform((v2) => {
|
|
71587
71587
|
return remap(v2, {
|
|
71588
71588
|
_id: "id",
|
|
@@ -71616,7 +71616,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
71616
71616
|
createdById: stringType().optional(),
|
|
71617
71617
|
updatedById: stringType().optional(),
|
|
71618
71618
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71619
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
71619
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
71620
71620
|
}).transform((v2) => {
|
|
71621
71621
|
return remap(v2, {
|
|
71622
71622
|
id: "_id",
|
|
@@ -71700,7 +71700,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71700
71700
|
created_by_id: stringType().optional(),
|
|
71701
71701
|
updated_by_id: stringType().optional(),
|
|
71702
71702
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71703
|
-
updated: stringType().datetime({ offset: true }).default("2025-12-
|
|
71703
|
+
updated: stringType().datetime({ offset: true }).default("2025-12-12T05:10:58.091Z").transform((v2) => new Date(v2))
|
|
71704
71704
|
}).transform((v2) => {
|
|
71705
71705
|
return remap(v2, {
|
|
71706
71706
|
_id: "id",
|
|
@@ -71720,7 +71720,7 @@ var init_updatedataset = __esm(() => {
|
|
|
71720
71720
|
createdById: stringType().optional(),
|
|
71721
71721
|
updatedById: stringType().optional(),
|
|
71722
71722
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71723
|
-
updated: dateType().default(() => new Date("2025-12-
|
|
71723
|
+
updated: dateType().default(() => new Date("2025-12-12T05:10:58.091Z")).transform((v2) => v2.toISOString())
|
|
71724
71724
|
}).transform((v2) => {
|
|
71725
71725
|
return remap(v2, {
|
|
71726
71726
|
id: "_id",
|
|
@@ -71784,7 +71784,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71784
71784
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
71785
71785
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
71786
71786
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
71787
|
-
_id: stringType().default("
|
|
71787
|
+
_id: stringType().default("01KC8FGS4MPP1D9WN1XB9B9YB6"),
|
|
71788
71788
|
display_name: stringType(),
|
|
71789
71789
|
description: stringType().optional(),
|
|
71790
71790
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -71807,7 +71807,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71807
71807
|
});
|
|
71808
71808
|
});
|
|
71809
71809
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
71810
|
-
id: stringType().default("
|
|
71810
|
+
id: stringType().default("01KC8FGS4MPP1D9WN1XB9B9YB6"),
|
|
71811
71811
|
displayName: stringType(),
|
|
71812
71812
|
description: stringType().optional(),
|
|
71813
71813
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -72320,8 +72320,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72320
72320
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
72321
72321
|
_id: stringType(),
|
|
72322
72322
|
description: stringType(),
|
|
72323
|
-
created: stringType().default("2025-12-
|
|
72324
|
-
updated: stringType().default("2025-12-
|
|
72323
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72324
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72325
72325
|
guardrail_config: unionType([
|
|
72326
72326
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
72327
72327
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -72338,8 +72338,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72338
72338
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
72339
72339
|
id: stringType(),
|
|
72340
72340
|
description: stringType(),
|
|
72341
|
-
created: stringType().default("2025-12-
|
|
72342
|
-
updated: stringType().default("2025-12-
|
|
72341
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72342
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72343
72343
|
guardrailConfig: unionType([
|
|
72344
72344
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
72345
72345
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -72390,8 +72390,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72390
72390
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
72391
72391
|
_id: stringType(),
|
|
72392
72392
|
description: stringType(),
|
|
72393
|
-
created: stringType().default("2025-12-
|
|
72394
|
-
updated: stringType().default("2025-12-
|
|
72393
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72394
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72395
72395
|
guardrail_config: unionType([
|
|
72396
72396
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
72397
72397
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -72410,8 +72410,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72410
72410
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
72411
72411
|
id: stringType(),
|
|
72412
72412
|
description: stringType(),
|
|
72413
|
-
created: stringType().default("2025-12-
|
|
72414
|
-
updated: stringType().default("2025-12-
|
|
72413
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72414
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72415
72415
|
guardrailConfig: unionType([
|
|
72416
72416
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
72417
72417
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -72746,8 +72746,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72746
72746
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
72747
72747
|
_id: stringType(),
|
|
72748
72748
|
description: stringType(),
|
|
72749
|
-
created: stringType().default("2025-12-
|
|
72750
|
-
updated: stringType().default("2025-12-
|
|
72749
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72750
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72751
72751
|
guardrail_config: unionType([
|
|
72752
72752
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
72753
72753
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -72798,8 +72798,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72798
72798
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
72799
72799
|
id: stringType(),
|
|
72800
72800
|
description: stringType(),
|
|
72801
|
-
created: stringType().default("2025-12-
|
|
72802
|
-
updated: stringType().default("2025-12-
|
|
72801
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72802
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72803
72803
|
guardrailConfig: unionType([
|
|
72804
72804
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
72805
72805
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -72882,8 +72882,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72882
72882
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
72883
72883
|
_id: stringType(),
|
|
72884
72884
|
description: stringType(),
|
|
72885
|
-
created: stringType().default("2025-12-
|
|
72886
|
-
updated: stringType().default("2025-12-
|
|
72885
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72886
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72887
72887
|
guardrail_config: unionType([
|
|
72888
72888
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
72889
72889
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -72900,8 +72900,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72900
72900
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
72901
72901
|
id: stringType(),
|
|
72902
72902
|
description: stringType(),
|
|
72903
|
-
created: stringType().default("2025-12-
|
|
72904
|
-
updated: stringType().default("2025-12-
|
|
72903
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72904
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72905
72905
|
guardrailConfig: unionType([
|
|
72906
72906
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
72907
72907
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -72952,8 +72952,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72952
72952
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
72953
72953
|
_id: stringType(),
|
|
72954
72954
|
description: stringType(),
|
|
72955
|
-
created: stringType().default("2025-12-
|
|
72956
|
-
updated: stringType().default("2025-12-
|
|
72955
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72956
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72957
72957
|
guardrail_config: unionType([
|
|
72958
72958
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
72959
72959
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -72973,8 +72973,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
72973
72973
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
72974
72974
|
id: stringType(),
|
|
72975
72975
|
description: stringType(),
|
|
72976
|
-
created: stringType().default("2025-12-
|
|
72977
|
-
updated: stringType().default("2025-12-
|
|
72976
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72977
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
72978
72978
|
guardrailConfig: unionType([
|
|
72979
72979
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
72980
72980
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -73026,8 +73026,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73026
73026
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
73027
73027
|
_id: stringType(),
|
|
73028
73028
|
description: stringType(),
|
|
73029
|
-
created: stringType().default("2025-12-
|
|
73030
|
-
updated: stringType().default("2025-12-
|
|
73029
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73030
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73031
73031
|
guardrail_config: unionType([
|
|
73032
73032
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
73033
73033
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -73044,8 +73044,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73044
73044
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
73045
73045
|
id: stringType(),
|
|
73046
73046
|
description: stringType(),
|
|
73047
|
-
created: stringType().default("2025-12-
|
|
73048
|
-
updated: stringType().default("2025-12-
|
|
73047
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73048
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73049
73049
|
guardrailConfig: unionType([
|
|
73050
73050
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
73051
73051
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -73094,8 +73094,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73094
73094
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
73095
73095
|
_id: stringType(),
|
|
73096
73096
|
description: stringType(),
|
|
73097
|
-
created: stringType().default("2025-12-
|
|
73098
|
-
updated: stringType().default("2025-12-
|
|
73097
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73098
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73099
73099
|
guardrail_config: unionType([
|
|
73100
73100
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
73101
73101
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -73113,8 +73113,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73113
73113
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
73114
73114
|
id: stringType(),
|
|
73115
73115
|
description: stringType(),
|
|
73116
|
-
created: stringType().default("2025-12-
|
|
73117
|
-
updated: stringType().default("2025-12-
|
|
73116
|
+
created: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73117
|
+
updated: stringType().default("2025-12-12T05:11:01.439Z"),
|
|
73118
73118
|
guardrailConfig: unionType([
|
|
73119
73119
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
73120
73120
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -75629,13 +75629,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
75629
75629
|
required: arrayType(stringType()).optional()
|
|
75630
75630
|
});
|
|
75631
75631
|
RequestBodyTools$inboundSchema = objectType({
|
|
75632
|
-
id: stringType().default("
|
|
75632
|
+
id: stringType().default("01KC8FGS0673B6NJS95JW82172"),
|
|
75633
75633
|
name: stringType(),
|
|
75634
75634
|
description: stringType().optional(),
|
|
75635
75635
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
75636
75636
|
});
|
|
75637
75637
|
RequestBodyTools$outboundSchema = objectType({
|
|
75638
|
-
id: stringType().default("
|
|
75638
|
+
id: stringType().default("01KC8FGS0673B6NJS95JW82172"),
|
|
75639
75639
|
name: stringType(),
|
|
75640
75640
|
description: stringType().optional(),
|
|
75641
75641
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -75975,7 +75975,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
75975
75975
|
code: stringType()
|
|
75976
75976
|
});
|
|
75977
75977
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
75978
|
-
_id: stringType().default("
|
|
75978
|
+
_id: stringType().default("tool_01KC8FGRZWNNT8D4B99MR0ZQEY"),
|
|
75979
75979
|
path: stringType(),
|
|
75980
75980
|
key: stringType(),
|
|
75981
75981
|
display_name: stringType().optional(),
|
|
@@ -76003,7 +76003,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76003
76003
|
});
|
|
76004
76004
|
});
|
|
76005
76005
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
76006
|
-
id: stringType().default("
|
|
76006
|
+
id: stringType().default("tool_01KC8FGRZWNNT8D4B99MR0ZQEY"),
|
|
76007
76007
|
path: stringType(),
|
|
76008
76008
|
key: stringType(),
|
|
76009
76009
|
displayName: stringType().optional(),
|
|
@@ -76053,13 +76053,13 @@ var init_updatetool2 = __esm(() => {
|
|
|
76053
76053
|
required: arrayType(stringType()).optional()
|
|
76054
76054
|
});
|
|
76055
76055
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
76056
|
-
id: stringType().default("
|
|
76056
|
+
id: stringType().default("01KC8FGRZV0BRWQJ0RBJCXPMV5"),
|
|
76057
76057
|
name: stringType(),
|
|
76058
76058
|
description: stringType().optional(),
|
|
76059
76059
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
76060
76060
|
});
|
|
76061
76061
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
76062
|
-
id: stringType().default("
|
|
76062
|
+
id: stringType().default("01KC8FGRZV0BRWQJ0RBJCXPMV5"),
|
|
76063
76063
|
name: stringType(),
|
|
76064
76064
|
description: stringType().optional(),
|
|
76065
76065
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -76089,7 +76089,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76089
76089
|
});
|
|
76090
76090
|
});
|
|
76091
76091
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
76092
|
-
_id: stringType().default("
|
|
76092
|
+
_id: stringType().default("tool_01KC8FGRZSEDCJ2P3H9APXS6NF"),
|
|
76093
76093
|
path: stringType(),
|
|
76094
76094
|
key: stringType(),
|
|
76095
76095
|
display_name: stringType().optional(),
|
|
@@ -76116,7 +76116,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76116
76116
|
});
|
|
76117
76117
|
});
|
|
76118
76118
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
76119
|
-
id: stringType().default("
|
|
76119
|
+
id: stringType().default("tool_01KC8FGRZSEDCJ2P3H9APXS6NF"),
|
|
76120
76120
|
path: stringType(),
|
|
76121
76121
|
key: stringType(),
|
|
76122
76122
|
displayName: stringType().optional(),
|
|
@@ -76203,7 +76203,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76203
76203
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
76204
76204
|
});
|
|
76205
76205
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
76206
|
-
_id: stringType().default("
|
|
76206
|
+
_id: stringType().default("tool_01KC8FGRZPXCPXPREWCSGX979Q"),
|
|
76207
76207
|
path: stringType(),
|
|
76208
76208
|
key: stringType(),
|
|
76209
76209
|
display_name: stringType().optional(),
|
|
@@ -76230,7 +76230,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76230
76230
|
});
|
|
76231
76231
|
});
|
|
76232
76232
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
76233
|
-
id: stringType().default("
|
|
76233
|
+
id: stringType().default("tool_01KC8FGRZPXCPXPREWCSGX979Q"),
|
|
76234
76234
|
path: stringType(),
|
|
76235
76235
|
key: stringType(),
|
|
76236
76236
|
displayName: stringType().optional(),
|
|
@@ -76289,7 +76289,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76289
76289
|
strict: booleanType().optional()
|
|
76290
76290
|
});
|
|
76291
76291
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
76292
|
-
_id: stringType().default("
|
|
76292
|
+
_id: stringType().default("tool_01KC8FGRZKD95M6CERRFBV9CCE"),
|
|
76293
76293
|
path: stringType(),
|
|
76294
76294
|
key: stringType(),
|
|
76295
76295
|
display_name: stringType().optional(),
|
|
@@ -76317,7 +76317,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76317
76317
|
});
|
|
76318
76318
|
});
|
|
76319
76319
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
76320
|
-
id: stringType().default("
|
|
76320
|
+
id: stringType().default("tool_01KC8FGRZKD95M6CERRFBV9CCE"),
|
|
76321
76321
|
path: stringType(),
|
|
76322
76322
|
key: stringType(),
|
|
76323
76323
|
displayName: stringType().optional(),
|
|
@@ -76379,7 +76379,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76379
76379
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
76380
76380
|
});
|
|
76381
76381
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
76382
|
-
_id: stringType().default("
|
|
76382
|
+
_id: stringType().default("tool_01KC8FGRZHE3MCTAFRET9WEK82"),
|
|
76383
76383
|
path: stringType(),
|
|
76384
76384
|
key: stringType(),
|
|
76385
76385
|
display_name: stringType().optional(),
|
|
@@ -76406,7 +76406,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
76406
76406
|
});
|
|
76407
76407
|
});
|
|
76408
76408
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
76409
|
-
id: stringType().default("
|
|
76409
|
+
id: stringType().default("tool_01KC8FGRZHE3MCTAFRET9WEK82"),
|
|
76410
76410
|
path: stringType(),
|
|
76411
76411
|
key: stringType(),
|
|
76412
76412
|
displayName: stringType().optional(),
|
|
@@ -87404,7 +87404,7 @@ Updates a tool in the workspace.`,
|
|
|
87404
87404
|
function createMCPServer(deps) {
|
|
87405
87405
|
const server = new McpServer({
|
|
87406
87406
|
name: "Orq",
|
|
87407
|
-
version: "4.1.0-rc.
|
|
87407
|
+
version: "4.1.0-rc.39"
|
|
87408
87408
|
});
|
|
87409
87409
|
const client = new OrqCore({
|
|
87410
87410
|
apiKey: deps.apiKey,
|
|
@@ -88826,7 +88826,7 @@ var routes = rn({
|
|
|
88826
88826
|
var app = Ve(routes, {
|
|
88827
88827
|
name: "mcp",
|
|
88828
88828
|
versionInfo: {
|
|
88829
|
-
currentVersion: "4.1.0-rc.
|
|
88829
|
+
currentVersion: "4.1.0-rc.39"
|
|
88830
88830
|
}
|
|
88831
88831
|
});
|
|
88832
88832
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -88834,5 +88834,5 @@ export {
|
|
|
88834
88834
|
app
|
|
88835
88835
|
};
|
|
88836
88836
|
|
|
88837
|
-
//# debugId=
|
|
88837
|
+
//# debugId=53E00308A0AAD7AD64756E2164756E21
|
|
88838
88838
|
//# sourceMappingURL=mcp-server.js.map
|