@orq-ai/node 4.2.0-rc.52 → 4.2.0-rc.54
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 +292 -250
- package/bin/mcp-server.js.map +47 -47
- 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/conversationwithmessagesresponse.js +2 -2
- package/models/components/createagentresponse.d.ts +71 -0
- package/models/components/createagentresponse.d.ts.map +1 -1
- package/models/components/createagentresponse.js +72 -1
- package/models/components/createagentresponse.js.map +1 -1
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/components/responsedoneevent.d.ts +21 -21
- package/models/components/responsedoneevent.d.ts.map +1 -1
- package/models/components/responsedoneevent.js +26 -28
- package/models/components/responsedoneevent.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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/createidentity.js +2 -2
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listidentities.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrieveidentity.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updateidentity.js +2 -2
- 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/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/createagentresponse.ts +155 -0
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/components/responsedoneevent.ts +60 -46
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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/createidentity.ts +2 -2
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listidentities.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrieveidentity.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updateidentity.ts +2 -2
- package/src/models/operations/updatetool.ts +14 -14
package/bin/mcp-server.js
CHANGED
|
@@ -52904,9 +52904,9 @@ var init_config = __esm(() => {
|
|
|
52904
52904
|
SDK_METADATA = {
|
|
52905
52905
|
language: "typescript",
|
|
52906
52906
|
openapiDocVersion: "2.0",
|
|
52907
|
-
sdkVersion: "4.2.0-rc.
|
|
52907
|
+
sdkVersion: "4.2.0-rc.54",
|
|
52908
52908
|
genVersion: "2.797.1",
|
|
52909
|
-
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
52909
|
+
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.54 2.797.1 2.0 @orq-ai/node"
|
|
52910
52910
|
};
|
|
52911
52911
|
});
|
|
52912
52912
|
|
|
@@ -55970,7 +55970,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
55970
55970
|
model: nullableType(stringType()).optional()
|
|
55971
55971
|
});
|
|
55972
55972
|
ConversationResponse$inboundSchema = objectType({
|
|
55973
|
-
_id: stringType().default("
|
|
55973
|
+
_id: stringType().default("conv_01kfg037949f418k8a99tx43tw"),
|
|
55974
55974
|
kind: ConversationResponseKind$inboundSchema,
|
|
55975
55975
|
displayName: stringType(),
|
|
55976
55976
|
createdAt: numberType(),
|
|
@@ -55984,7 +55984,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
55984
55984
|
});
|
|
55985
55985
|
});
|
|
55986
55986
|
ConversationResponse$outboundSchema = objectType({
|
|
55987
|
-
id: stringType().default("
|
|
55987
|
+
id: stringType().default("conv_01kfg037949f418k8a99tx43tw"),
|
|
55988
55988
|
kind: ConversationResponseKind$outboundSchema,
|
|
55989
55989
|
displayName: stringType(),
|
|
55990
55990
|
createdAt: numberType(),
|
|
@@ -56084,7 +56084,7 @@ var init_conversationwithmessagesresponse = __esm(() => {
|
|
|
56084
56084
|
model: nullableType(stringType()).optional()
|
|
56085
56085
|
});
|
|
56086
56086
|
ConversationWithMessagesResponse$inboundSchema = objectType({
|
|
56087
|
-
_id: stringType().default("
|
|
56087
|
+
_id: stringType().default("conv_01kfg037989m13dewbgt6gzfvx"),
|
|
56088
56088
|
kind: ConversationWithMessagesResponseKind$inboundSchema,
|
|
56089
56089
|
displayName: stringType(),
|
|
56090
56090
|
createdAt: numberType(),
|
|
@@ -56099,7 +56099,7 @@ var init_conversationwithmessagesresponse = __esm(() => {
|
|
|
56099
56099
|
});
|
|
56100
56100
|
});
|
|
56101
56101
|
ConversationWithMessagesResponse$outboundSchema = objectType({
|
|
56102
|
-
id: stringType().default("
|
|
56102
|
+
id: stringType().default("conv_01kfg037989m13dewbgt6gzfvx"),
|
|
56103
56103
|
kind: ConversationWithMessagesResponseKind$outboundSchema,
|
|
56104
56104
|
displayName: stringType(),
|
|
56105
56105
|
createdAt: numberType(),
|
|
@@ -56116,11 +56116,23 @@ var init_conversationwithmessagesresponse = __esm(() => {
|
|
|
56116
56116
|
});
|
|
56117
56117
|
|
|
56118
56118
|
// src/models/components/createagentresponse.ts
|
|
56119
|
-
var PromptTokensDetails$inboundSchema, PromptTokensDetails$outboundSchema, CompletionTokensDetails$inboundSchema, CompletionTokensDetails$outboundSchema, Usage$inboundSchema, Usage$outboundSchema, CreateAgentResponse$inboundSchema, CreateAgentResponse$outboundSchema;
|
|
56119
|
+
var FinishReason, CreateAgentResponseType, PromptTokensDetails$inboundSchema, PromptTokensDetails$outboundSchema, CompletionTokensDetails$inboundSchema, CompletionTokensDetails$outboundSchema, Usage$inboundSchema, Usage$outboundSchema, FinishReason$inboundSchema, FinishReason$outboundSchema, CreateAgentResponseType$inboundSchema, CreateAgentResponseType$outboundSchema, FunctionT$inboundSchema, FunctionT$outboundSchema, PendingToolCalls$inboundSchema, PendingToolCalls$outboundSchema, CreateAgentResponse$inboundSchema, CreateAgentResponse$outboundSchema;
|
|
56120
56120
|
var init_createagentresponse = __esm(() => {
|
|
56121
56121
|
init_esm();
|
|
56122
56122
|
init_primitives();
|
|
56123
56123
|
init_agentresponsemessage();
|
|
56124
|
+
FinishReason = {
|
|
56125
|
+
Stop: "stop",
|
|
56126
|
+
Length: "length",
|
|
56127
|
+
ToolCalls: "tool_calls",
|
|
56128
|
+
ContentFilter: "content_filter",
|
|
56129
|
+
FunctionCall: "function_call",
|
|
56130
|
+
MaxIterations: "max_iterations",
|
|
56131
|
+
MaxTime: "max_time"
|
|
56132
|
+
};
|
|
56133
|
+
CreateAgentResponseType = {
|
|
56134
|
+
Function: "function"
|
|
56135
|
+
};
|
|
56124
56136
|
PromptTokensDetails$inboundSchema = objectType({
|
|
56125
56137
|
cached_tokens: nullableType(numberType().int()).optional(),
|
|
56126
56138
|
cache_creation_tokens: nullableType(numberType().int()).optional(),
|
|
@@ -56199,18 +56211,44 @@ var init_createagentresponse = __esm(() => {
|
|
|
56199
56211
|
completionTokensDetails: "completion_tokens_details"
|
|
56200
56212
|
});
|
|
56201
56213
|
});
|
|
56214
|
+
FinishReason$inboundSchema = nativeEnumType(FinishReason);
|
|
56215
|
+
FinishReason$outboundSchema = FinishReason$inboundSchema;
|
|
56216
|
+
CreateAgentResponseType$inboundSchema = nativeEnumType(CreateAgentResponseType);
|
|
56217
|
+
CreateAgentResponseType$outboundSchema = CreateAgentResponseType$inboundSchema;
|
|
56218
|
+
FunctionT$inboundSchema = objectType({
|
|
56219
|
+
name: stringType().optional(),
|
|
56220
|
+
arguments: stringType().optional()
|
|
56221
|
+
});
|
|
56222
|
+
FunctionT$outboundSchema = objectType({
|
|
56223
|
+
name: stringType().optional(),
|
|
56224
|
+
arguments: stringType().optional()
|
|
56225
|
+
});
|
|
56226
|
+
PendingToolCalls$inboundSchema = objectType({
|
|
56227
|
+
id: stringType(),
|
|
56228
|
+
type: CreateAgentResponseType$inboundSchema,
|
|
56229
|
+
function: lazyType(() => FunctionT$inboundSchema)
|
|
56230
|
+
});
|
|
56231
|
+
PendingToolCalls$outboundSchema = objectType({
|
|
56232
|
+
id: stringType(),
|
|
56233
|
+
type: CreateAgentResponseType$outboundSchema,
|
|
56234
|
+
function: lazyType(() => FunctionT$outboundSchema)
|
|
56235
|
+
});
|
|
56202
56236
|
CreateAgentResponse$inboundSchema = objectType({
|
|
56203
56237
|
_id: stringType(),
|
|
56204
56238
|
task_id: stringType(),
|
|
56205
56239
|
output: arrayType(AgentResponseMessage$inboundSchema),
|
|
56206
56240
|
created_at: stringType(),
|
|
56207
56241
|
model: stringType(),
|
|
56208
|
-
usage: nullableType(lazyType(() => Usage$inboundSchema)).optional()
|
|
56242
|
+
usage: nullableType(lazyType(() => Usage$inboundSchema)).optional(),
|
|
56243
|
+
finish_reason: FinishReason$inboundSchema.optional(),
|
|
56244
|
+
pending_tool_calls: arrayType(lazyType(() => PendingToolCalls$inboundSchema)).optional()
|
|
56209
56245
|
}).transform((v2) => {
|
|
56210
56246
|
return remap(v2, {
|
|
56211
56247
|
_id: "id",
|
|
56212
56248
|
task_id: "taskId",
|
|
56213
|
-
created_at: "createdAt"
|
|
56249
|
+
created_at: "createdAt",
|
|
56250
|
+
finish_reason: "finishReason",
|
|
56251
|
+
pending_tool_calls: "pendingToolCalls"
|
|
56214
56252
|
});
|
|
56215
56253
|
});
|
|
56216
56254
|
CreateAgentResponse$outboundSchema = objectType({
|
|
@@ -56219,12 +56257,16 @@ var init_createagentresponse = __esm(() => {
|
|
|
56219
56257
|
output: arrayType(AgentResponseMessage$outboundSchema),
|
|
56220
56258
|
createdAt: stringType(),
|
|
56221
56259
|
model: stringType(),
|
|
56222
|
-
usage: nullableType(lazyType(() => Usage$outboundSchema)).optional()
|
|
56260
|
+
usage: nullableType(lazyType(() => Usage$outboundSchema)).optional(),
|
|
56261
|
+
finishReason: FinishReason$outboundSchema.optional(),
|
|
56262
|
+
pendingToolCalls: arrayType(lazyType(() => PendingToolCalls$outboundSchema)).optional()
|
|
56223
56263
|
}).transform((v2) => {
|
|
56224
56264
|
return remap(v2, {
|
|
56225
56265
|
id: "_id",
|
|
56226
56266
|
taskId: "task_id",
|
|
56227
|
-
createdAt: "created_at"
|
|
56267
|
+
createdAt: "created_at",
|
|
56268
|
+
finishReason: "finish_reason",
|
|
56269
|
+
pendingToolCalls: "pending_tool_calls"
|
|
56228
56270
|
});
|
|
56229
56271
|
});
|
|
56230
56272
|
});
|
|
@@ -57593,7 +57635,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57593
57635
|
init_esm();
|
|
57594
57636
|
init_primitives();
|
|
57595
57637
|
ReasoningPart$inboundSchema = objectType({
|
|
57596
|
-
_id: stringType().default("
|
|
57638
|
+
_id: stringType().default("reasoning_01kfg036x3m6xskhdmjrkz2jjg"),
|
|
57597
57639
|
metadata: recordType(anyType()).optional(),
|
|
57598
57640
|
kind: literalType("reasoning"),
|
|
57599
57641
|
reasoning: stringType(),
|
|
@@ -57604,7 +57646,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57604
57646
|
});
|
|
57605
57647
|
});
|
|
57606
57648
|
ReasoningPart$outboundSchema = objectType({
|
|
57607
|
-
id: stringType().default("
|
|
57649
|
+
id: stringType().default("reasoning_01kfg036x3m6xskhdmjrkz2jjg"),
|
|
57608
57650
|
metadata: recordType(anyType()).optional(),
|
|
57609
57651
|
kind: literalType("reasoning"),
|
|
57610
57652
|
reasoning: stringType(),
|
|
@@ -57674,7 +57716,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57674
57716
|
PartKind$inboundSchema = nativeEnumType(PartKind);
|
|
57675
57717
|
PartKind$outboundSchema = PartKind$inboundSchema;
|
|
57676
57718
|
PartReasoningPart$inboundSchema = objectType({
|
|
57677
|
-
_id: stringType().default("
|
|
57719
|
+
_id: stringType().default("reasoning_01kfg036xgkrepbh43thtavq3f"),
|
|
57678
57720
|
metadata: recordType(anyType()).optional(),
|
|
57679
57721
|
kind: PartKind$inboundSchema,
|
|
57680
57722
|
reasoning: stringType(),
|
|
@@ -57685,7 +57727,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57685
57727
|
});
|
|
57686
57728
|
});
|
|
57687
57729
|
PartReasoningPart$outboundSchema = objectType({
|
|
57688
|
-
id: stringType().default("
|
|
57730
|
+
id: stringType().default("reasoning_01kfg036xgkrepbh43thtavq3f"),
|
|
57689
57731
|
metadata: recordType(anyType()).optional(),
|
|
57690
57732
|
kind: PartKind$outboundSchema,
|
|
57691
57733
|
reasoning: stringType(),
|
|
@@ -57749,11 +57791,11 @@ var init_publiccontact = __esm(() => {
|
|
|
57749
57791
|
});
|
|
57750
57792
|
|
|
57751
57793
|
// src/models/components/responsedoneevent.ts
|
|
57752
|
-
var
|
|
57794
|
+
var ResponseDoneEventFinishReason, ResponseDoneEventDataType, ResponseDoneEventFinishReason$inboundSchema, ResponseDoneEventFinishReason$outboundSchema, ResponseDoneEventPromptTokensDetails$inboundSchema, ResponseDoneEventPromptTokensDetails$outboundSchema, ResponseDoneEventCompletionTokensDetails$inboundSchema, ResponseDoneEventCompletionTokensDetails$outboundSchema, ResponseDoneEventUsage$inboundSchema, ResponseDoneEventUsage$outboundSchema, ResponseDoneEventDataType$inboundSchema, ResponseDoneEventDataType$outboundSchema, ResponseDoneEventFunction$inboundSchema, ResponseDoneEventFunction$outboundSchema, ResponseDoneEventPendingToolCalls$inboundSchema, ResponseDoneEventPendingToolCalls$outboundSchema, ResponseDoneEventData$inboundSchema, ResponseDoneEventData$outboundSchema, ResponseDoneEvent$inboundSchema, ResponseDoneEvent$outboundSchema;
|
|
57753
57795
|
var init_responsedoneevent = __esm(() => {
|
|
57754
57796
|
init_esm();
|
|
57755
57797
|
init_primitives();
|
|
57756
|
-
|
|
57798
|
+
ResponseDoneEventFinishReason = {
|
|
57757
57799
|
Stop: "stop",
|
|
57758
57800
|
Length: "length",
|
|
57759
57801
|
ToolCalls: "tool_calls",
|
|
@@ -57765,8 +57807,8 @@ var init_responsedoneevent = __esm(() => {
|
|
|
57765
57807
|
ResponseDoneEventDataType = {
|
|
57766
57808
|
Function: "function"
|
|
57767
57809
|
};
|
|
57768
|
-
|
|
57769
|
-
|
|
57810
|
+
ResponseDoneEventFinishReason$inboundSchema = nativeEnumType(ResponseDoneEventFinishReason);
|
|
57811
|
+
ResponseDoneEventFinishReason$outboundSchema = ResponseDoneEventFinishReason$inboundSchema;
|
|
57770
57812
|
ResponseDoneEventPromptTokensDetails$inboundSchema = objectType({
|
|
57771
57813
|
cached_tokens: nullableType(numberType().int()).optional(),
|
|
57772
57814
|
cache_creation_tokens: nullableType(numberType().int()).optional(),
|
|
@@ -57847,33 +57889,33 @@ var init_responsedoneevent = __esm(() => {
|
|
|
57847
57889
|
});
|
|
57848
57890
|
ResponseDoneEventDataType$inboundSchema = nativeEnumType(ResponseDoneEventDataType);
|
|
57849
57891
|
ResponseDoneEventDataType$outboundSchema = ResponseDoneEventDataType$inboundSchema;
|
|
57850
|
-
|
|
57892
|
+
ResponseDoneEventFunction$inboundSchema = objectType({
|
|
57851
57893
|
name: stringType().optional(),
|
|
57852
57894
|
arguments: stringType().optional()
|
|
57853
57895
|
});
|
|
57854
|
-
|
|
57896
|
+
ResponseDoneEventFunction$outboundSchema = objectType({
|
|
57855
57897
|
name: stringType().optional(),
|
|
57856
57898
|
arguments: stringType().optional()
|
|
57857
57899
|
});
|
|
57858
|
-
|
|
57900
|
+
ResponseDoneEventPendingToolCalls$inboundSchema = objectType({
|
|
57859
57901
|
id: stringType(),
|
|
57860
57902
|
type: ResponseDoneEventDataType$inboundSchema,
|
|
57861
|
-
function: lazyType(() =>
|
|
57903
|
+
function: lazyType(() => ResponseDoneEventFunction$inboundSchema)
|
|
57862
57904
|
});
|
|
57863
|
-
|
|
57905
|
+
ResponseDoneEventPendingToolCalls$outboundSchema = objectType({
|
|
57864
57906
|
id: stringType(),
|
|
57865
57907
|
type: ResponseDoneEventDataType$outboundSchema,
|
|
57866
|
-
function: lazyType(() =>
|
|
57908
|
+
function: lazyType(() => ResponseDoneEventFunction$outboundSchema)
|
|
57867
57909
|
});
|
|
57868
57910
|
ResponseDoneEventData$inboundSchema = objectType({
|
|
57869
|
-
finishReason:
|
|
57911
|
+
finishReason: ResponseDoneEventFinishReason$inboundSchema,
|
|
57870
57912
|
usage: lazyType(() => ResponseDoneEventUsage$inboundSchema).optional(),
|
|
57871
|
-
pendingToolCalls: arrayType(lazyType(() =>
|
|
57913
|
+
pendingToolCalls: arrayType(lazyType(() => ResponseDoneEventPendingToolCalls$inboundSchema)).optional()
|
|
57872
57914
|
});
|
|
57873
57915
|
ResponseDoneEventData$outboundSchema = objectType({
|
|
57874
|
-
finishReason:
|
|
57916
|
+
finishReason: ResponseDoneEventFinishReason$outboundSchema,
|
|
57875
57917
|
usage: lazyType(() => ResponseDoneEventUsage$outboundSchema).optional(),
|
|
57876
|
-
pendingToolCalls: arrayType(lazyType(() =>
|
|
57918
|
+
pendingToolCalls: arrayType(lazyType(() => ResponseDoneEventPendingToolCalls$outboundSchema)).optional()
|
|
57877
57919
|
});
|
|
57878
57920
|
ResponseDoneEvent$inboundSchema = objectType({
|
|
57879
57921
|
type: literalType("response.done"),
|
|
@@ -63252,7 +63294,7 @@ var init_createcontact = __esm(() => {
|
|
|
63252
63294
|
tags: arrayType(stringType()).optional(),
|
|
63253
63295
|
metadata: recordType(anyType()).optional(),
|
|
63254
63296
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63255
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63297
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
63256
63298
|
}).transform((v2) => {
|
|
63257
63299
|
return remap(v2, {
|
|
63258
63300
|
_id: "id",
|
|
@@ -63272,7 +63314,7 @@ var init_createcontact = __esm(() => {
|
|
|
63272
63314
|
tags: arrayType(stringType()).optional(),
|
|
63273
63315
|
metadata: recordType(anyType()).optional(),
|
|
63274
63316
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63275
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63317
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
63276
63318
|
}).transform((v2) => {
|
|
63277
63319
|
return remap(v2, {
|
|
63278
63320
|
id: "_id",
|
|
@@ -63325,7 +63367,7 @@ var init_createconversation = __esm(() => {
|
|
|
63325
63367
|
model: nullableType(stringType()).optional()
|
|
63326
63368
|
});
|
|
63327
63369
|
CreateConversationResponseBody$inboundSchema = objectType({
|
|
63328
|
-
_id: stringType().default("
|
|
63370
|
+
_id: stringType().default("conv_01kfg037957qts609ny87x1bp8"),
|
|
63329
63371
|
kind: CreateConversationKind$inboundSchema,
|
|
63330
63372
|
displayName: stringType(),
|
|
63331
63373
|
createdAt: numberType(),
|
|
@@ -63339,7 +63381,7 @@ var init_createconversation = __esm(() => {
|
|
|
63339
63381
|
});
|
|
63340
63382
|
});
|
|
63341
63383
|
CreateConversationResponseBody$outboundSchema = objectType({
|
|
63342
|
-
id: stringType().default("
|
|
63384
|
+
id: stringType().default("conv_01kfg037957qts609ny87x1bp8"),
|
|
63343
63385
|
kind: CreateConversationKind$outboundSchema,
|
|
63344
63386
|
displayName: stringType(),
|
|
63345
63387
|
createdAt: numberType(),
|
|
@@ -63415,7 +63457,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63415
63457
|
PartKind$inboundSchema2 = nativeEnumType(PartKind2);
|
|
63416
63458
|
PartKind$outboundSchema2 = PartKind$inboundSchema2;
|
|
63417
63459
|
PartReasoningPart$inboundSchema2 = objectType({
|
|
63418
|
-
_id: stringType().default("
|
|
63460
|
+
_id: stringType().default("reasoning_01kfg0379v46kd78p305h27zg4"),
|
|
63419
63461
|
metadata: recordType(anyType()).optional(),
|
|
63420
63462
|
kind: PartKind$inboundSchema2,
|
|
63421
63463
|
reasoning: stringType(),
|
|
@@ -63426,7 +63468,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63426
63468
|
});
|
|
63427
63469
|
});
|
|
63428
63470
|
PartReasoningPart$outboundSchema2 = objectType({
|
|
63429
|
-
id: stringType().default("
|
|
63471
|
+
id: stringType().default("reasoning_01kfg0379v46kd78p305h27zg4"),
|
|
63430
63472
|
metadata: recordType(anyType()).optional(),
|
|
63431
63473
|
kind: PartKind$outboundSchema2,
|
|
63432
63474
|
reasoning: stringType(),
|
|
@@ -63459,7 +63501,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63459
63501
|
DeltaKind$inboundSchema = nativeEnumType(DeltaKind);
|
|
63460
63502
|
DeltaKind$outboundSchema = DeltaKind$inboundSchema;
|
|
63461
63503
|
ReasoningPart$inboundSchema2 = objectType({
|
|
63462
|
-
_id: stringType().default("
|
|
63504
|
+
_id: stringType().default("reasoning_01kfg0379meegwa9t23tne9pmj"),
|
|
63463
63505
|
metadata: recordType(anyType()).optional(),
|
|
63464
63506
|
kind: DeltaKind$inboundSchema,
|
|
63465
63507
|
reasoning: stringType(),
|
|
@@ -63470,7 +63512,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63470
63512
|
});
|
|
63471
63513
|
});
|
|
63472
63514
|
ReasoningPart$outboundSchema2 = objectType({
|
|
63473
|
-
id: stringType().default("
|
|
63515
|
+
id: stringType().default("reasoning_01kfg0379meegwa9t23tne9pmj"),
|
|
63474
63516
|
metadata: recordType(anyType()).optional(),
|
|
63475
63517
|
kind: DeltaKind$outboundSchema,
|
|
63476
63518
|
reasoning: stringType(),
|
|
@@ -63609,7 +63651,7 @@ var init_createdataset = __esm(() => {
|
|
|
63609
63651
|
created_by_id: stringType().optional(),
|
|
63610
63652
|
updated_by_id: stringType().optional(),
|
|
63611
63653
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63612
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63654
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
63613
63655
|
}).transform((v2) => {
|
|
63614
63656
|
return remap(v2, {
|
|
63615
63657
|
_id: "id",
|
|
@@ -63629,7 +63671,7 @@ var init_createdataset = __esm(() => {
|
|
|
63629
63671
|
createdById: stringType().optional(),
|
|
63630
63672
|
updatedById: stringType().optional(),
|
|
63631
63673
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63632
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63674
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
63633
63675
|
}).transform((v2) => {
|
|
63634
63676
|
return remap(v2, {
|
|
63635
63677
|
id: "_id",
|
|
@@ -64365,7 +64407,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64365
64407
|
human_review_id: stringType(),
|
|
64366
64408
|
source: CreateDatasetItemEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64367
64409
|
reviewed_by_id: stringType(),
|
|
64368
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64410
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.523Z").transform((v2) => new Date(v2)),
|
|
64369
64411
|
type: literalType("string_array"),
|
|
64370
64412
|
values: arrayType(stringType())
|
|
64371
64413
|
}).transform((v2) => {
|
|
@@ -64382,7 +64424,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64382
64424
|
humanReviewId: stringType(),
|
|
64383
64425
|
source: CreateDatasetItemEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64384
64426
|
reviewedById: stringType(),
|
|
64385
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64427
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.523Z")).transform((v2) => v2.toISOString()),
|
|
64386
64428
|
type: literalType("string_array"),
|
|
64387
64429
|
values: arrayType(stringType())
|
|
64388
64430
|
}).transform((v2) => {
|
|
@@ -64403,7 +64445,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64403
64445
|
human_review_id: stringType(),
|
|
64404
64446
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
64405
64447
|
reviewed_by_id: stringType(),
|
|
64406
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64448
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.522Z").transform((v2) => new Date(v2)),
|
|
64407
64449
|
type: literalType("number"),
|
|
64408
64450
|
value: numberType()
|
|
64409
64451
|
}).transform((v2) => {
|
|
@@ -64420,7 +64462,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64420
64462
|
humanReviewId: stringType(),
|
|
64421
64463
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
64422
64464
|
reviewedById: stringType(),
|
|
64423
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64465
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.522Z")).transform((v2) => v2.toISOString()),
|
|
64424
64466
|
type: literalType("number"),
|
|
64425
64467
|
value: numberType()
|
|
64426
64468
|
}).transform((v2) => {
|
|
@@ -64441,7 +64483,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64441
64483
|
human_review_id: stringType(),
|
|
64442
64484
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
64443
64485
|
reviewed_by_id: stringType(),
|
|
64444
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64486
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.521Z").transform((v2) => new Date(v2)),
|
|
64445
64487
|
type: literalType("string"),
|
|
64446
64488
|
value: stringType()
|
|
64447
64489
|
}).transform((v2) => {
|
|
@@ -64458,7 +64500,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64458
64500
|
humanReviewId: stringType(),
|
|
64459
64501
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
64460
64502
|
reviewedById: stringType(),
|
|
64461
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64503
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.521Z")).transform((v2) => v2.toISOString()),
|
|
64462
64504
|
type: literalType("string"),
|
|
64463
64505
|
value: stringType()
|
|
64464
64506
|
}).transform((v2) => {
|
|
@@ -64501,7 +64543,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64501
64543
|
created_by_id: stringType().optional(),
|
|
64502
64544
|
updated_by_id: stringType().optional(),
|
|
64503
64545
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64504
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
64546
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
64505
64547
|
}).transform((v2) => {
|
|
64506
64548
|
return remap(v2, {
|
|
64507
64549
|
_id: "id",
|
|
@@ -64535,7 +64577,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64535
64577
|
createdById: stringType().optional(),
|
|
64536
64578
|
updatedById: stringType().optional(),
|
|
64537
64579
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64538
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
64580
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
64539
64581
|
}).transform((v2) => {
|
|
64540
64582
|
return remap(v2, {
|
|
64541
64583
|
id: "_id",
|
|
@@ -64704,7 +64746,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64704
64746
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
64705
64747
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
64706
64748
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
64707
|
-
_id: stringType().default("
|
|
64749
|
+
_id: stringType().default("01KFG037VYM7GV89YSBF2RMH0V"),
|
|
64708
64750
|
display_name: stringType(),
|
|
64709
64751
|
description: stringType().optional(),
|
|
64710
64752
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -64727,7 +64769,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64727
64769
|
});
|
|
64728
64770
|
});
|
|
64729
64771
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
64730
|
-
id: stringType().default("
|
|
64772
|
+
id: stringType().default("01KFG037VYM7GV89YSBF2RMH0V"),
|
|
64731
64773
|
displayName: stringType(),
|
|
64732
64774
|
description: stringType().optional(),
|
|
64733
64775
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -65314,8 +65356,8 @@ var init_createeval = __esm(() => {
|
|
|
65314
65356
|
Typescript$inboundSchema = objectType({
|
|
65315
65357
|
_id: stringType(),
|
|
65316
65358
|
description: stringType(),
|
|
65317
|
-
created: stringType().default("2026-01-
|
|
65318
|
-
updated: stringType().default("2026-01-
|
|
65359
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65360
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65319
65361
|
guardrail_config: unionType([
|
|
65320
65362
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
65321
65363
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -65332,8 +65374,8 @@ var init_createeval = __esm(() => {
|
|
|
65332
65374
|
Typescript$outboundSchema = objectType({
|
|
65333
65375
|
id: stringType(),
|
|
65334
65376
|
description: stringType(),
|
|
65335
|
-
created: stringType().default("2026-01-
|
|
65336
|
-
updated: stringType().default("2026-01-
|
|
65377
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65378
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65337
65379
|
guardrailConfig: unionType([
|
|
65338
65380
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
65339
65381
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -65404,8 +65446,8 @@ var init_createeval = __esm(() => {
|
|
|
65404
65446
|
Ragas$inboundSchema = objectType({
|
|
65405
65447
|
_id: stringType(),
|
|
65406
65448
|
description: stringType(),
|
|
65407
|
-
created: stringType().default("2026-01-
|
|
65408
|
-
updated: stringType().default("2026-01-
|
|
65449
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65450
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65409
65451
|
guardrail_config: unionType([
|
|
65410
65452
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
65411
65453
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -65424,8 +65466,8 @@ var init_createeval = __esm(() => {
|
|
|
65424
65466
|
Ragas$outboundSchema = objectType({
|
|
65425
65467
|
id: stringType(),
|
|
65426
65468
|
description: stringType(),
|
|
65427
|
-
created: stringType().default("2026-01-
|
|
65428
|
-
updated: stringType().default("2026-01-
|
|
65469
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65470
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65429
65471
|
guardrailConfig: unionType([
|
|
65430
65472
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
65431
65473
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -65780,8 +65822,8 @@ var init_createeval = __esm(() => {
|
|
|
65780
65822
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
65781
65823
|
_id: stringType(),
|
|
65782
65824
|
description: stringType(),
|
|
65783
|
-
created: stringType().default("2026-01-
|
|
65784
|
-
updated: stringType().default("2026-01-
|
|
65825
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65826
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65785
65827
|
guardrail_config: unionType([
|
|
65786
65828
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
65787
65829
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -65832,8 +65874,8 @@ var init_createeval = __esm(() => {
|
|
|
65832
65874
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
65833
65875
|
id: stringType(),
|
|
65834
65876
|
description: stringType(),
|
|
65835
|
-
created: stringType().default("2026-01-
|
|
65836
|
-
updated: stringType().default("2026-01-
|
|
65877
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65878
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65837
65879
|
guardrailConfig: unionType([
|
|
65838
65880
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
65839
65881
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -65936,8 +65978,8 @@ var init_createeval = __esm(() => {
|
|
|
65936
65978
|
ResponseBodyPython$inboundSchema = objectType({
|
|
65937
65979
|
_id: stringType(),
|
|
65938
65980
|
description: stringType(),
|
|
65939
|
-
created: stringType().default("2026-01-
|
|
65940
|
-
updated: stringType().default("2026-01-
|
|
65981
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65982
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65941
65983
|
guardrail_config: unionType([
|
|
65942
65984
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
65943
65985
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -65954,8 +65996,8 @@ var init_createeval = __esm(() => {
|
|
|
65954
65996
|
ResponseBodyPython$outboundSchema = objectType({
|
|
65955
65997
|
id: stringType(),
|
|
65956
65998
|
description: stringType(),
|
|
65957
|
-
created: stringType().default("2026-01-
|
|
65958
|
-
updated: stringType().default("2026-01-
|
|
65999
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66000
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
65959
66001
|
guardrailConfig: unionType([
|
|
65960
66002
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
65961
66003
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -66026,8 +66068,8 @@ var init_createeval = __esm(() => {
|
|
|
66026
66068
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
66027
66069
|
_id: stringType(),
|
|
66028
66070
|
description: stringType(),
|
|
66029
|
-
created: stringType().default("2026-01-
|
|
66030
|
-
updated: stringType().default("2026-01-
|
|
66071
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66072
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66031
66073
|
guardrail_config: unionType([
|
|
66032
66074
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
66033
66075
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -66047,8 +66089,8 @@ var init_createeval = __esm(() => {
|
|
|
66047
66089
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
66048
66090
|
id: stringType(),
|
|
66049
66091
|
description: stringType(),
|
|
66050
|
-
created: stringType().default("2026-01-
|
|
66051
|
-
updated: stringType().default("2026-01-
|
|
66092
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66093
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66052
66094
|
guardrailConfig: unionType([
|
|
66053
66095
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
66054
66096
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -66120,8 +66162,8 @@ var init_createeval = __esm(() => {
|
|
|
66120
66162
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
66121
66163
|
_id: stringType(),
|
|
66122
66164
|
description: stringType(),
|
|
66123
|
-
created: stringType().default("2026-01-
|
|
66124
|
-
updated: stringType().default("2026-01-
|
|
66165
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66166
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66125
66167
|
guardrail_config: unionType([
|
|
66126
66168
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
66127
66169
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -66138,8 +66180,8 @@ var init_createeval = __esm(() => {
|
|
|
66138
66180
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
66139
66181
|
id: stringType(),
|
|
66140
66182
|
description: stringType(),
|
|
66141
|
-
created: stringType().default("2026-01-
|
|
66142
|
-
updated: stringType().default("2026-01-
|
|
66183
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66184
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66143
66185
|
guardrailConfig: unionType([
|
|
66144
66186
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
66145
66187
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -66208,8 +66250,8 @@ var init_createeval = __esm(() => {
|
|
|
66208
66250
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
66209
66251
|
_id: stringType(),
|
|
66210
66252
|
description: stringType(),
|
|
66211
|
-
created: stringType().default("2026-01-
|
|
66212
|
-
updated: stringType().default("2026-01-
|
|
66253
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66254
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66213
66255
|
guardrail_config: unionType([
|
|
66214
66256
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
66215
66257
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -66227,8 +66269,8 @@ var init_createeval = __esm(() => {
|
|
|
66227
66269
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
66228
66270
|
id: stringType(),
|
|
66229
66271
|
description: stringType(),
|
|
66230
|
-
created: stringType().default("2026-01-
|
|
66231
|
-
updated: stringType().default("2026-01-
|
|
66272
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66273
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
66232
66274
|
guardrailConfig: unionType([
|
|
66233
66275
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
66234
66276
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -66357,7 +66399,7 @@ var init_createidentity = __esm(() => {
|
|
|
66357
66399
|
tags: arrayType(stringType()).optional(),
|
|
66358
66400
|
metadata: recordType(anyType()).optional(),
|
|
66359
66401
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
66360
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
66402
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
66361
66403
|
}).transform((v2) => {
|
|
66362
66404
|
return remap(v2, {
|
|
66363
66405
|
_id: "id",
|
|
@@ -66377,7 +66419,7 @@ var init_createidentity = __esm(() => {
|
|
|
66377
66419
|
tags: arrayType(stringType()).optional(),
|
|
66378
66420
|
metadata: recordType(anyType()).optional(),
|
|
66379
66421
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
66380
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
66422
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
66381
66423
|
}).transform((v2) => {
|
|
66382
66424
|
return remap(v2, {
|
|
66383
66425
|
id: "_id",
|
|
@@ -69603,7 +69645,7 @@ var init_createtool = __esm(() => {
|
|
|
69603
69645
|
code: stringType()
|
|
69604
69646
|
});
|
|
69605
69647
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
69606
|
-
_id: stringType().default("
|
|
69648
|
+
_id: stringType().default("tool_01KFG037N0DMSVAS6KKA1GV9ZV"),
|
|
69607
69649
|
path: stringType(),
|
|
69608
69650
|
key: stringType(),
|
|
69609
69651
|
display_name: stringType().optional(),
|
|
@@ -69631,7 +69673,7 @@ var init_createtool = __esm(() => {
|
|
|
69631
69673
|
});
|
|
69632
69674
|
});
|
|
69633
69675
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
69634
|
-
id: stringType().default("
|
|
69676
|
+
id: stringType().default("tool_01KFG037N0DMSVAS6KKA1GV9ZV"),
|
|
69635
69677
|
path: stringType(),
|
|
69636
69678
|
key: stringType(),
|
|
69637
69679
|
displayName: stringType().optional(),
|
|
@@ -69681,13 +69723,13 @@ var init_createtool = __esm(() => {
|
|
|
69681
69723
|
required: arrayType(stringType()).optional()
|
|
69682
69724
|
});
|
|
69683
69725
|
ResponseBodyTools$inboundSchema = objectType({
|
|
69684
|
-
id: stringType().default("
|
|
69726
|
+
id: stringType().default("01KFG037MZ7DNDF07H8P0CYYMW"),
|
|
69685
69727
|
name: stringType(),
|
|
69686
69728
|
description: stringType().optional(),
|
|
69687
69729
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
69688
69730
|
});
|
|
69689
69731
|
ResponseBodyTools$outboundSchema = objectType({
|
|
69690
|
-
id: stringType().default("
|
|
69732
|
+
id: stringType().default("01KFG037MZ7DNDF07H8P0CYYMW"),
|
|
69691
69733
|
name: stringType(),
|
|
69692
69734
|
description: stringType().optional(),
|
|
69693
69735
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -69717,7 +69759,7 @@ var init_createtool = __esm(() => {
|
|
|
69717
69759
|
});
|
|
69718
69760
|
});
|
|
69719
69761
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
69720
|
-
_id: stringType().default("
|
|
69762
|
+
_id: stringType().default("tool_01KFG037MXWB07N86KA2CYRB4B"),
|
|
69721
69763
|
path: stringType(),
|
|
69722
69764
|
key: stringType(),
|
|
69723
69765
|
display_name: stringType().optional(),
|
|
@@ -69744,7 +69786,7 @@ var init_createtool = __esm(() => {
|
|
|
69744
69786
|
});
|
|
69745
69787
|
});
|
|
69746
69788
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
69747
|
-
id: stringType().default("
|
|
69789
|
+
id: stringType().default("tool_01KFG037MXWB07N86KA2CYRB4B"),
|
|
69748
69790
|
path: stringType(),
|
|
69749
69791
|
key: stringType(),
|
|
69750
69792
|
displayName: stringType().optional(),
|
|
@@ -69831,7 +69873,7 @@ var init_createtool = __esm(() => {
|
|
|
69831
69873
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
69832
69874
|
});
|
|
69833
69875
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
69834
|
-
_id: stringType().default("
|
|
69876
|
+
_id: stringType().default("tool_01KFG037MT5P8XZT86J8DVVV3E"),
|
|
69835
69877
|
path: stringType(),
|
|
69836
69878
|
key: stringType(),
|
|
69837
69879
|
display_name: stringType().optional(),
|
|
@@ -69858,7 +69900,7 @@ var init_createtool = __esm(() => {
|
|
|
69858
69900
|
});
|
|
69859
69901
|
});
|
|
69860
69902
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
69861
|
-
id: stringType().default("
|
|
69903
|
+
id: stringType().default("tool_01KFG037MT5P8XZT86J8DVVV3E"),
|
|
69862
69904
|
path: stringType(),
|
|
69863
69905
|
key: stringType(),
|
|
69864
69906
|
displayName: stringType().optional(),
|
|
@@ -69917,7 +69959,7 @@ var init_createtool = __esm(() => {
|
|
|
69917
69959
|
strict: booleanType().optional()
|
|
69918
69960
|
});
|
|
69919
69961
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
69920
|
-
_id: stringType().default("
|
|
69962
|
+
_id: stringType().default("tool_01KFG037MR3F99J9BJRHBK31X7"),
|
|
69921
69963
|
path: stringType(),
|
|
69922
69964
|
key: stringType(),
|
|
69923
69965
|
display_name: stringType().optional(),
|
|
@@ -69945,7 +69987,7 @@ var init_createtool = __esm(() => {
|
|
|
69945
69987
|
});
|
|
69946
69988
|
});
|
|
69947
69989
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
69948
|
-
id: stringType().default("
|
|
69990
|
+
id: stringType().default("tool_01KFG037MR3F99J9BJRHBK31X7"),
|
|
69949
69991
|
path: stringType(),
|
|
69950
69992
|
key: stringType(),
|
|
69951
69993
|
displayName: stringType().optional(),
|
|
@@ -70007,7 +70049,7 @@ var init_createtool = __esm(() => {
|
|
|
70007
70049
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
70008
70050
|
});
|
|
70009
70051
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
70010
|
-
_id: stringType().default("
|
|
70052
|
+
_id: stringType().default("tool_01KFG037MN73VPNMM1C2Z23N5K"),
|
|
70011
70053
|
path: stringType(),
|
|
70012
70054
|
key: stringType(),
|
|
70013
70055
|
display_name: stringType().optional(),
|
|
@@ -70034,7 +70076,7 @@ var init_createtool = __esm(() => {
|
|
|
70034
70076
|
});
|
|
70035
70077
|
});
|
|
70036
70078
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
70037
|
-
id: stringType().default("
|
|
70079
|
+
id: stringType().default("tool_01KFG037MN73VPNMM1C2Z23N5K"),
|
|
70038
70080
|
path: stringType(),
|
|
70039
70081
|
key: stringType(),
|
|
70040
70082
|
displayName: stringType().optional(),
|
|
@@ -75231,7 +75273,7 @@ var init_fileget = __esm(() => {
|
|
|
75231
75273
|
bytes: numberType(),
|
|
75232
75274
|
file_name: stringType(),
|
|
75233
75275
|
workspace_id: stringType(),
|
|
75234
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
75276
|
+
created: stringType().datetime({ offset: true }).default("2026-01-21T10:02:31.078Z").transform((v2) => new Date(v2))
|
|
75235
75277
|
}).transform((v2) => {
|
|
75236
75278
|
return remap(v2, {
|
|
75237
75279
|
_id: "id",
|
|
@@ -75247,7 +75289,7 @@ var init_fileget = __esm(() => {
|
|
|
75247
75289
|
bytes: numberType(),
|
|
75248
75290
|
fileName: stringType(),
|
|
75249
75291
|
workspaceId: stringType(),
|
|
75250
|
-
created: dateType().default(() => new Date("2026-01-
|
|
75292
|
+
created: dateType().default(() => new Date("2026-01-21T10:02:31.078Z")).transform((v2) => v2.toISOString())
|
|
75251
75293
|
}).transform((v2) => {
|
|
75252
75294
|
return remap(v2, {
|
|
75253
75295
|
id: "_id",
|
|
@@ -75302,7 +75344,7 @@ var init_filelist = __esm(() => {
|
|
|
75302
75344
|
bytes: numberType(),
|
|
75303
75345
|
file_name: stringType(),
|
|
75304
75346
|
workspace_id: stringType(),
|
|
75305
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
75347
|
+
created: stringType().datetime({ offset: true }).default("2026-01-21T10:02:31.078Z").transform((v2) => new Date(v2))
|
|
75306
75348
|
}).transform((v2) => {
|
|
75307
75349
|
return remap(v2, {
|
|
75308
75350
|
_id: "id",
|
|
@@ -75318,7 +75360,7 @@ var init_filelist = __esm(() => {
|
|
|
75318
75360
|
bytes: numberType(),
|
|
75319
75361
|
fileName: stringType(),
|
|
75320
75362
|
workspaceId: stringType(),
|
|
75321
|
-
created: dateType().default(() => new Date("2026-01-
|
|
75363
|
+
created: dateType().default(() => new Date("2026-01-21T10:02:31.078Z")).transform((v2) => v2.toISOString())
|
|
75322
75364
|
}).transform((v2) => {
|
|
75323
75365
|
return remap(v2, {
|
|
75324
75366
|
id: "_id",
|
|
@@ -75426,7 +75468,7 @@ var init_fileupload = __esm(() => {
|
|
|
75426
75468
|
bytes: numberType(),
|
|
75427
75469
|
file_name: stringType(),
|
|
75428
75470
|
workspace_id: stringType(),
|
|
75429
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
75471
|
+
created: stringType().datetime({ offset: true }).default("2026-01-21T10:02:31.078Z").transform((v2) => new Date(v2))
|
|
75430
75472
|
}).transform((v2) => {
|
|
75431
75473
|
return remap(v2, {
|
|
75432
75474
|
_id: "id",
|
|
@@ -75442,7 +75484,7 @@ var init_fileupload = __esm(() => {
|
|
|
75442
75484
|
bytes: numberType(),
|
|
75443
75485
|
fileName: stringType(),
|
|
75444
75486
|
workspaceId: stringType(),
|
|
75445
|
-
created: dateType().default(() => new Date("2026-01-
|
|
75487
|
+
created: dateType().default(() => new Date("2026-01-21T10:02:31.078Z")).transform((v2) => v2.toISOString())
|
|
75446
75488
|
}).transform((v2) => {
|
|
75447
75489
|
return remap(v2, {
|
|
75448
75490
|
id: "_id",
|
|
@@ -75498,7 +75540,7 @@ var init_generateconversationname = __esm(() => {
|
|
|
75498
75540
|
model: nullableType(stringType()).optional()
|
|
75499
75541
|
});
|
|
75500
75542
|
GenerateConversationNameResponseBody$inboundSchema = objectType({
|
|
75501
|
-
_id: stringType().default("
|
|
75543
|
+
_id: stringType().default("conv_01kfg03797kejdxnj0k67528vk"),
|
|
75502
75544
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
75503
75545
|
displayName: stringType(),
|
|
75504
75546
|
createdAt: numberType(),
|
|
@@ -75512,7 +75554,7 @@ var init_generateconversationname = __esm(() => {
|
|
|
75512
75554
|
});
|
|
75513
75555
|
});
|
|
75514
75556
|
GenerateConversationNameResponseBody$outboundSchema = objectType({
|
|
75515
|
-
id: stringType().default("
|
|
75557
|
+
id: stringType().default("conv_01kfg03797kejdxnj0k67528vk"),
|
|
75516
75558
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
75517
75559
|
displayName: stringType(),
|
|
75518
75560
|
createdAt: numberType(),
|
|
@@ -77139,7 +77181,7 @@ var init_getalltools = __esm(() => {
|
|
|
77139
77181
|
code: stringType()
|
|
77140
77182
|
});
|
|
77141
77183
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
77142
|
-
_id: stringType().default("
|
|
77184
|
+
_id: stringType().default("tool_01KFG037M6KAE7NTCN2EEKWZ1Y"),
|
|
77143
77185
|
path: stringType(),
|
|
77144
77186
|
key: stringType(),
|
|
77145
77187
|
display_name: stringType().optional(),
|
|
@@ -77167,7 +77209,7 @@ var init_getalltools = __esm(() => {
|
|
|
77167
77209
|
});
|
|
77168
77210
|
});
|
|
77169
77211
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
77170
|
-
id: stringType().default("
|
|
77212
|
+
id: stringType().default("tool_01KFG037M6KAE7NTCN2EEKWZ1Y"),
|
|
77171
77213
|
path: stringType(),
|
|
77172
77214
|
key: stringType(),
|
|
77173
77215
|
displayName: stringType().optional(),
|
|
@@ -77217,13 +77259,13 @@ var init_getalltools = __esm(() => {
|
|
|
77217
77259
|
required: arrayType(stringType()).optional()
|
|
77218
77260
|
});
|
|
77219
77261
|
DataTools$inboundSchema = objectType({
|
|
77220
|
-
id: stringType().default("
|
|
77262
|
+
id: stringType().default("01KFG037M5M0EDHWGGV0F0DHZK"),
|
|
77221
77263
|
name: stringType(),
|
|
77222
77264
|
description: stringType().optional(),
|
|
77223
77265
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
77224
77266
|
});
|
|
77225
77267
|
DataTools$outboundSchema = objectType({
|
|
77226
|
-
id: stringType().default("
|
|
77268
|
+
id: stringType().default("01KFG037M5M0EDHWGGV0F0DHZK"),
|
|
77227
77269
|
name: stringType(),
|
|
77228
77270
|
description: stringType().optional(),
|
|
77229
77271
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -77253,7 +77295,7 @@ var init_getalltools = __esm(() => {
|
|
|
77253
77295
|
});
|
|
77254
77296
|
});
|
|
77255
77297
|
DataMCPTool$inboundSchema = objectType({
|
|
77256
|
-
_id: stringType().default("
|
|
77298
|
+
_id: stringType().default("tool_01KFG037M44J34EAGE19JD27XK"),
|
|
77257
77299
|
path: stringType(),
|
|
77258
77300
|
key: stringType(),
|
|
77259
77301
|
display_name: stringType().optional(),
|
|
@@ -77280,7 +77322,7 @@ var init_getalltools = __esm(() => {
|
|
|
77280
77322
|
});
|
|
77281
77323
|
});
|
|
77282
77324
|
DataMCPTool$outboundSchema = objectType({
|
|
77283
|
-
id: stringType().default("
|
|
77325
|
+
id: stringType().default("tool_01KFG037M44J34EAGE19JD27XK"),
|
|
77284
77326
|
path: stringType(),
|
|
77285
77327
|
key: stringType(),
|
|
77286
77328
|
displayName: stringType().optional(),
|
|
@@ -77367,7 +77409,7 @@ var init_getalltools = __esm(() => {
|
|
|
77367
77409
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
77368
77410
|
});
|
|
77369
77411
|
DataHTTPTool$inboundSchema = objectType({
|
|
77370
|
-
_id: stringType().default("
|
|
77412
|
+
_id: stringType().default("tool_01KFG037M2TANCHP72ZF8F2MS9"),
|
|
77371
77413
|
path: stringType(),
|
|
77372
77414
|
key: stringType(),
|
|
77373
77415
|
display_name: stringType().optional(),
|
|
@@ -77394,7 +77436,7 @@ var init_getalltools = __esm(() => {
|
|
|
77394
77436
|
});
|
|
77395
77437
|
});
|
|
77396
77438
|
DataHTTPTool$outboundSchema = objectType({
|
|
77397
|
-
id: stringType().default("
|
|
77439
|
+
id: stringType().default("tool_01KFG037M2TANCHP72ZF8F2MS9"),
|
|
77398
77440
|
path: stringType(),
|
|
77399
77441
|
key: stringType(),
|
|
77400
77442
|
displayName: stringType().optional(),
|
|
@@ -77453,7 +77495,7 @@ var init_getalltools = __esm(() => {
|
|
|
77453
77495
|
strict: booleanType().optional()
|
|
77454
77496
|
});
|
|
77455
77497
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
77456
|
-
_id: stringType().default("
|
|
77498
|
+
_id: stringType().default("tool_01KFG037KSN1KXAXP98Q98V9PV"),
|
|
77457
77499
|
path: stringType(),
|
|
77458
77500
|
key: stringType(),
|
|
77459
77501
|
display_name: stringType().optional(),
|
|
@@ -77481,7 +77523,7 @@ var init_getalltools = __esm(() => {
|
|
|
77481
77523
|
});
|
|
77482
77524
|
});
|
|
77483
77525
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
77484
|
-
id: stringType().default("
|
|
77526
|
+
id: stringType().default("tool_01KFG037KSN1KXAXP98Q98V9PV"),
|
|
77485
77527
|
path: stringType(),
|
|
77486
77528
|
key: stringType(),
|
|
77487
77529
|
displayName: stringType().optional(),
|
|
@@ -77543,7 +77585,7 @@ var init_getalltools = __esm(() => {
|
|
|
77543
77585
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
77544
77586
|
});
|
|
77545
77587
|
DataFunctionTool$inboundSchema = objectType({
|
|
77546
|
-
_id: stringType().default("
|
|
77588
|
+
_id: stringType().default("tool_01KFG037KQ6FGKN5B6FDB75D6V"),
|
|
77547
77589
|
path: stringType(),
|
|
77548
77590
|
key: stringType(),
|
|
77549
77591
|
display_name: stringType().optional(),
|
|
@@ -77570,7 +77612,7 @@ var init_getalltools = __esm(() => {
|
|
|
77570
77612
|
});
|
|
77571
77613
|
});
|
|
77572
77614
|
DataFunctionTool$outboundSchema = objectType({
|
|
77573
|
-
id: stringType().default("
|
|
77615
|
+
id: stringType().default("tool_01KFG037KQ6FGKN5B6FDB75D6V"),
|
|
77574
77616
|
path: stringType(),
|
|
77575
77617
|
key: stringType(),
|
|
77576
77618
|
displayName: stringType().optional(),
|
|
@@ -77846,8 +77888,8 @@ var init_getevals = __esm(() => {
|
|
|
77846
77888
|
DataTypescript$inboundSchema = objectType({
|
|
77847
77889
|
_id: stringType(),
|
|
77848
77890
|
description: stringType(),
|
|
77849
|
-
created: stringType().default("2026-01-
|
|
77850
|
-
updated: stringType().default("2026-01-
|
|
77891
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77892
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77851
77893
|
guardrail_config: unionType([
|
|
77852
77894
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
77853
77895
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -77864,8 +77906,8 @@ var init_getevals = __esm(() => {
|
|
|
77864
77906
|
DataTypescript$outboundSchema = objectType({
|
|
77865
77907
|
id: stringType(),
|
|
77866
77908
|
description: stringType(),
|
|
77867
|
-
created: stringType().default("2026-01-
|
|
77868
|
-
updated: stringType().default("2026-01-
|
|
77909
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77910
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77869
77911
|
guardrailConfig: unionType([
|
|
77870
77912
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
77871
77913
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -77936,8 +77978,8 @@ var init_getevals = __esm(() => {
|
|
|
77936
77978
|
DataRagas$inboundSchema = objectType({
|
|
77937
77979
|
_id: stringType(),
|
|
77938
77980
|
description: stringType(),
|
|
77939
|
-
created: stringType().default("2026-01-
|
|
77940
|
-
updated: stringType().default("2026-01-
|
|
77981
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77982
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77941
77983
|
guardrail_config: unionType([
|
|
77942
77984
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
77943
77985
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -77956,8 +77998,8 @@ var init_getevals = __esm(() => {
|
|
|
77956
77998
|
DataRagas$outboundSchema = objectType({
|
|
77957
77999
|
id: stringType(),
|
|
77958
78000
|
description: stringType(),
|
|
77959
|
-
created: stringType().default("2026-01-
|
|
77960
|
-
updated: stringType().default("2026-01-
|
|
78001
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78002
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
77961
78003
|
guardrailConfig: unionType([
|
|
77962
78004
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
77963
78005
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -78312,8 +78354,8 @@ var init_getevals = __esm(() => {
|
|
|
78312
78354
|
DataFunction$inboundSchema = objectType({
|
|
78313
78355
|
_id: stringType(),
|
|
78314
78356
|
description: stringType(),
|
|
78315
|
-
created: stringType().default("2026-01-
|
|
78316
|
-
updated: stringType().default("2026-01-
|
|
78357
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78358
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78317
78359
|
guardrail_config: unionType([
|
|
78318
78360
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
78319
78361
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -78364,8 +78406,8 @@ var init_getevals = __esm(() => {
|
|
|
78364
78406
|
DataFunction$outboundSchema = objectType({
|
|
78365
78407
|
id: stringType(),
|
|
78366
78408
|
description: stringType(),
|
|
78367
|
-
created: stringType().default("2026-01-
|
|
78368
|
-
updated: stringType().default("2026-01-
|
|
78409
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78410
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78369
78411
|
guardrailConfig: unionType([
|
|
78370
78412
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
78371
78413
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -78468,8 +78510,8 @@ var init_getevals = __esm(() => {
|
|
|
78468
78510
|
DataPython$inboundSchema = objectType({
|
|
78469
78511
|
_id: stringType(),
|
|
78470
78512
|
description: stringType(),
|
|
78471
|
-
created: stringType().default("2026-01-
|
|
78472
|
-
updated: stringType().default("2026-01-
|
|
78513
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78514
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78473
78515
|
guardrail_config: unionType([
|
|
78474
78516
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
78475
78517
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
|
|
@@ -78486,8 +78528,8 @@ var init_getevals = __esm(() => {
|
|
|
78486
78528
|
DataPython$outboundSchema = objectType({
|
|
78487
78529
|
id: stringType(),
|
|
78488
78530
|
description: stringType(),
|
|
78489
|
-
created: stringType().default("2026-01-
|
|
78490
|
-
updated: stringType().default("2026-01-
|
|
78531
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78532
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78491
78533
|
guardrailConfig: unionType([
|
|
78492
78534
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
78493
78535
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
|
|
@@ -78558,8 +78600,8 @@ var init_getevals = __esm(() => {
|
|
|
78558
78600
|
DataHTTP$inboundSchema = objectType({
|
|
78559
78601
|
_id: stringType(),
|
|
78560
78602
|
description: stringType(),
|
|
78561
|
-
created: stringType().default("2026-01-
|
|
78562
|
-
updated: stringType().default("2026-01-
|
|
78603
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78604
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78563
78605
|
guardrail_config: unionType([
|
|
78564
78606
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
78565
78607
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
|
|
@@ -78579,8 +78621,8 @@ var init_getevals = __esm(() => {
|
|
|
78579
78621
|
DataHTTP$outboundSchema = objectType({
|
|
78580
78622
|
id: stringType(),
|
|
78581
78623
|
description: stringType(),
|
|
78582
|
-
created: stringType().default("2026-01-
|
|
78583
|
-
updated: stringType().default("2026-01-
|
|
78624
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78625
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78584
78626
|
guardrailConfig: unionType([
|
|
78585
78627
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
78586
78628
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
|
|
@@ -78652,8 +78694,8 @@ var init_getevals = __esm(() => {
|
|
|
78652
78694
|
DataJSON$inboundSchema = objectType({
|
|
78653
78695
|
_id: stringType(),
|
|
78654
78696
|
description: stringType(),
|
|
78655
|
-
created: stringType().default("2026-01-
|
|
78656
|
-
updated: stringType().default("2026-01-
|
|
78697
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78698
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78657
78699
|
guardrail_config: unionType([
|
|
78658
78700
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
78659
78701
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
|
|
@@ -78670,8 +78712,8 @@ var init_getevals = __esm(() => {
|
|
|
78670
78712
|
DataJSON$outboundSchema = objectType({
|
|
78671
78713
|
id: stringType(),
|
|
78672
78714
|
description: stringType(),
|
|
78673
|
-
created: stringType().default("2026-01-
|
|
78674
|
-
updated: stringType().default("2026-01-
|
|
78715
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78716
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78675
78717
|
guardrailConfig: unionType([
|
|
78676
78718
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
78677
78719
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
|
|
@@ -78740,8 +78782,8 @@ var init_getevals = __esm(() => {
|
|
|
78740
78782
|
DataLLM$inboundSchema = objectType({
|
|
78741
78783
|
_id: stringType(),
|
|
78742
78784
|
description: stringType(),
|
|
78743
|
-
created: stringType().default("2026-01-
|
|
78744
|
-
updated: stringType().default("2026-01-
|
|
78785
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78786
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78745
78787
|
guardrail_config: unionType([
|
|
78746
78788
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
78747
78789
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -78759,8 +78801,8 @@ var init_getevals = __esm(() => {
|
|
|
78759
78801
|
DataLLM$outboundSchema = objectType({
|
|
78760
78802
|
id: stringType(),
|
|
78761
78803
|
description: stringType(),
|
|
78762
|
-
created: stringType().default("2026-01-
|
|
78763
|
-
updated: stringType().default("2026-01-
|
|
78804
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78805
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
78764
78806
|
guardrailConfig: unionType([
|
|
78765
78807
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
78766
78808
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -83713,7 +83755,7 @@ var init_listcontacts = __esm(() => {
|
|
|
83713
83755
|
tags: arrayType(stringType()).optional(),
|
|
83714
83756
|
metadata: recordType(anyType()).optional(),
|
|
83715
83757
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
83716
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
83758
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2)),
|
|
83717
83759
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
83718
83760
|
}).transform((v2) => {
|
|
83719
83761
|
return remap(v2, {
|
|
@@ -83732,7 +83774,7 @@ var init_listcontacts = __esm(() => {
|
|
|
83732
83774
|
tags: arrayType(stringType()).optional(),
|
|
83733
83775
|
metadata: recordType(anyType()).optional(),
|
|
83734
83776
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
83735
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
83777
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString()),
|
|
83736
83778
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
83737
83779
|
}).transform((v2) => {
|
|
83738
83780
|
return remap(v2, {
|
|
@@ -84190,7 +84232,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84190
84232
|
human_review_id: stringType(),
|
|
84191
84233
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
84192
84234
|
reviewed_by_id: stringType(),
|
|
84193
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84235
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.494Z").transform((v2) => new Date(v2)),
|
|
84194
84236
|
type: literalType("string_array"),
|
|
84195
84237
|
values: arrayType(stringType())
|
|
84196
84238
|
}).transform((v2) => {
|
|
@@ -84207,7 +84249,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84207
84249
|
humanReviewId: stringType(),
|
|
84208
84250
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
84209
84251
|
reviewedById: stringType(),
|
|
84210
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84252
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.494Z")).transform((v2) => v2.toISOString()),
|
|
84211
84253
|
type: literalType("string_array"),
|
|
84212
84254
|
values: arrayType(stringType())
|
|
84213
84255
|
}).transform((v2) => {
|
|
@@ -84228,7 +84270,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84228
84270
|
human_review_id: stringType(),
|
|
84229
84271
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
84230
84272
|
reviewed_by_id: stringType(),
|
|
84231
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84273
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.493Z").transform((v2) => new Date(v2)),
|
|
84232
84274
|
type: literalType("number"),
|
|
84233
84275
|
value: numberType()
|
|
84234
84276
|
}).transform((v2) => {
|
|
@@ -84245,7 +84287,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84245
84287
|
humanReviewId: stringType(),
|
|
84246
84288
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
84247
84289
|
reviewedById: stringType(),
|
|
84248
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84290
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.493Z")).transform((v2) => v2.toISOString()),
|
|
84249
84291
|
type: literalType("number"),
|
|
84250
84292
|
value: numberType()
|
|
84251
84293
|
}).transform((v2) => {
|
|
@@ -84266,7 +84308,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84266
84308
|
human_review_id: stringType(),
|
|
84267
84309
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
84268
84310
|
reviewed_by_id: stringType(),
|
|
84269
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84311
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.493Z").transform((v2) => new Date(v2)),
|
|
84270
84312
|
type: literalType("string"),
|
|
84271
84313
|
value: stringType()
|
|
84272
84314
|
}).transform((v2) => {
|
|
@@ -84283,7 +84325,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84283
84325
|
humanReviewId: stringType(),
|
|
84284
84326
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
84285
84327
|
reviewedById: stringType(),
|
|
84286
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
84328
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.493Z")).transform((v2) => v2.toISOString()),
|
|
84287
84329
|
type: literalType("string"),
|
|
84288
84330
|
value: stringType()
|
|
84289
84331
|
}).transform((v2) => {
|
|
@@ -84326,7 +84368,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84326
84368
|
created_by_id: stringType().optional(),
|
|
84327
84369
|
updated_by_id: stringType().optional(),
|
|
84328
84370
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84329
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84371
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
84330
84372
|
}).transform((v2) => {
|
|
84331
84373
|
return remap(v2, {
|
|
84332
84374
|
_id: "id",
|
|
@@ -84360,7 +84402,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
84360
84402
|
createdById: stringType().optional(),
|
|
84361
84403
|
updatedById: stringType().optional(),
|
|
84362
84404
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84363
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84405
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
84364
84406
|
}).transform((v2) => {
|
|
84365
84407
|
return remap(v2, {
|
|
84366
84408
|
id: "_id",
|
|
@@ -84449,7 +84491,7 @@ var init_listdatasets = __esm(() => {
|
|
|
84449
84491
|
created_by_id: stringType().optional(),
|
|
84450
84492
|
updated_by_id: stringType().optional(),
|
|
84451
84493
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84452
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84494
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
84453
84495
|
}).transform((v2) => {
|
|
84454
84496
|
return remap(v2, {
|
|
84455
84497
|
_id: "id",
|
|
@@ -84469,7 +84511,7 @@ var init_listdatasets = __esm(() => {
|
|
|
84469
84511
|
createdById: stringType().optional(),
|
|
84470
84512
|
updatedById: stringType().optional(),
|
|
84471
84513
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84472
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84514
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
84473
84515
|
}).transform((v2) => {
|
|
84474
84516
|
return remap(v2, {
|
|
84475
84517
|
id: "_id",
|
|
@@ -84550,7 +84592,7 @@ var init_listdatasources = __esm(() => {
|
|
|
84550
84592
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
84551
84593
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
84552
84594
|
ListDatasourcesData$inboundSchema = objectType({
|
|
84553
|
-
_id: stringType().default("
|
|
84595
|
+
_id: stringType().default("01KFG037VVTTK70QJ5CDNYNTC7"),
|
|
84554
84596
|
display_name: stringType(),
|
|
84555
84597
|
description: stringType().optional(),
|
|
84556
84598
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -84573,7 +84615,7 @@ var init_listdatasources = __esm(() => {
|
|
|
84573
84615
|
});
|
|
84574
84616
|
});
|
|
84575
84617
|
ListDatasourcesData$outboundSchema = objectType({
|
|
84576
|
-
id: stringType().default("
|
|
84618
|
+
id: stringType().default("01KFG037VVTTK70QJ5CDNYNTC7"),
|
|
84577
84619
|
displayName: stringType(),
|
|
84578
84620
|
description: stringType().optional(),
|
|
84579
84621
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -84696,7 +84738,7 @@ var init_listidentities = __esm(() => {
|
|
|
84696
84738
|
tags: arrayType(stringType()).optional(),
|
|
84697
84739
|
metadata: recordType(anyType()).optional(),
|
|
84698
84740
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84699
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84741
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2)),
|
|
84700
84742
|
metrics: lazyType(() => ListIdentitiesMetrics$inboundSchema)
|
|
84701
84743
|
}).transform((v2) => {
|
|
84702
84744
|
return remap(v2, {
|
|
@@ -84715,7 +84757,7 @@ var init_listidentities = __esm(() => {
|
|
|
84715
84757
|
tags: arrayType(stringType()).optional(),
|
|
84716
84758
|
metadata: recordType(anyType()).optional(),
|
|
84717
84759
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84718
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84760
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString()),
|
|
84719
84761
|
metrics: lazyType(() => ListIdentitiesMetrics$outboundSchema)
|
|
84720
84762
|
}).transform((v2) => {
|
|
84721
84763
|
return remap(v2, {
|
|
@@ -87580,7 +87622,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
87580
87622
|
tags: arrayType(stringType()).optional(),
|
|
87581
87623
|
metadata: recordType(anyType()).optional(),
|
|
87582
87624
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
87583
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
87625
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
87584
87626
|
}).transform((v2) => {
|
|
87585
87627
|
return remap(v2, {
|
|
87586
87628
|
_id: "id",
|
|
@@ -87598,7 +87640,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
87598
87640
|
tags: arrayType(stringType()).optional(),
|
|
87599
87641
|
metadata: recordType(anyType()).optional(),
|
|
87600
87642
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
87601
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
87643
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
87602
87644
|
}).transform((v2) => {
|
|
87603
87645
|
return remap(v2, {
|
|
87604
87646
|
id: "_id",
|
|
@@ -88004,7 +88046,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88004
88046
|
human_review_id: stringType(),
|
|
88005
88047
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
88006
88048
|
reviewed_by_id: stringType(),
|
|
88007
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
88049
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.509Z").transform((v2) => new Date(v2)),
|
|
88008
88050
|
type: literalType("string_array"),
|
|
88009
88051
|
values: arrayType(stringType())
|
|
88010
88052
|
}).transform((v2) => {
|
|
@@ -88021,7 +88063,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88021
88063
|
humanReviewId: stringType(),
|
|
88022
88064
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
88023
88065
|
reviewedById: stringType(),
|
|
88024
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
88066
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.509Z")).transform((v2) => v2.toISOString()),
|
|
88025
88067
|
type: literalType("string_array"),
|
|
88026
88068
|
values: arrayType(stringType())
|
|
88027
88069
|
}).transform((v2) => {
|
|
@@ -88042,7 +88084,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88042
88084
|
human_review_id: stringType(),
|
|
88043
88085
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
88044
88086
|
reviewed_by_id: stringType(),
|
|
88045
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
88087
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.508Z").transform((v2) => new Date(v2)),
|
|
88046
88088
|
type: literalType("number"),
|
|
88047
88089
|
value: numberType()
|
|
88048
88090
|
}).transform((v2) => {
|
|
@@ -88059,7 +88101,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88059
88101
|
humanReviewId: stringType(),
|
|
88060
88102
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
88061
88103
|
reviewedById: stringType(),
|
|
88062
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
88104
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.508Z")).transform((v2) => v2.toISOString()),
|
|
88063
88105
|
type: literalType("number"),
|
|
88064
88106
|
value: numberType()
|
|
88065
88107
|
}).transform((v2) => {
|
|
@@ -88080,7 +88122,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88080
88122
|
human_review_id: stringType(),
|
|
88081
88123
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
88082
88124
|
reviewed_by_id: stringType(),
|
|
88083
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
88125
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.507Z").transform((v2) => new Date(v2)),
|
|
88084
88126
|
type: literalType("string"),
|
|
88085
88127
|
value: stringType()
|
|
88086
88128
|
}).transform((v2) => {
|
|
@@ -88097,7 +88139,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88097
88139
|
humanReviewId: stringType(),
|
|
88098
88140
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
88099
88141
|
reviewedById: stringType(),
|
|
88100
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
88142
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.507Z")).transform((v2) => v2.toISOString()),
|
|
88101
88143
|
type: literalType("string"),
|
|
88102
88144
|
value: stringType()
|
|
88103
88145
|
}).transform((v2) => {
|
|
@@ -88140,7 +88182,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88140
88182
|
created_by_id: stringType().optional(),
|
|
88141
88183
|
updated_by_id: stringType().optional(),
|
|
88142
88184
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
88143
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
88185
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
88144
88186
|
}).transform((v2) => {
|
|
88145
88187
|
return remap(v2, {
|
|
88146
88188
|
_id: "id",
|
|
@@ -88174,7 +88216,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
88174
88216
|
createdById: stringType().optional(),
|
|
88175
88217
|
updatedById: stringType().optional(),
|
|
88176
88218
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
88177
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
88219
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
88178
88220
|
}).transform((v2) => {
|
|
88179
88221
|
return remap(v2, {
|
|
88180
88222
|
id: "_id",
|
|
@@ -88234,7 +88276,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
88234
88276
|
created_by_id: stringType().optional(),
|
|
88235
88277
|
updated_by_id: stringType().optional(),
|
|
88236
88278
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
88237
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
88279
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
88238
88280
|
}).transform((v2) => {
|
|
88239
88281
|
return remap(v2, {
|
|
88240
88282
|
_id: "id",
|
|
@@ -88254,7 +88296,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
88254
88296
|
createdById: stringType().optional(),
|
|
88255
88297
|
updatedById: stringType().optional(),
|
|
88256
88298
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
88257
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
88299
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
88258
88300
|
}).transform((v2) => {
|
|
88259
88301
|
return remap(v2, {
|
|
88260
88302
|
id: "_id",
|
|
@@ -88300,7 +88342,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
88300
88342
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
88301
88343
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
88302
88344
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
88303
|
-
_id: stringType().default("
|
|
88345
|
+
_id: stringType().default("01KFG037VXAN5NXX4AV2X58EHH"),
|
|
88304
88346
|
display_name: stringType(),
|
|
88305
88347
|
description: stringType().optional(),
|
|
88306
88348
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -88323,7 +88365,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
88323
88365
|
});
|
|
88324
88366
|
});
|
|
88325
88367
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
88326
|
-
id: stringType().default("
|
|
88368
|
+
id: stringType().default("01KFG037VXAN5NXX4AV2X58EHH"),
|
|
88327
88369
|
displayName: stringType(),
|
|
88328
88370
|
description: stringType().optional(),
|
|
88329
88371
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -88367,7 +88409,7 @@ var init_retrieveidentity = __esm(() => {
|
|
|
88367
88409
|
tags: arrayType(stringType()).optional(),
|
|
88368
88410
|
metadata: recordType(anyType()).optional(),
|
|
88369
88411
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
88370
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
88412
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
88371
88413
|
}).transform((v2) => {
|
|
88372
88414
|
return remap(v2, {
|
|
88373
88415
|
_id: "id",
|
|
@@ -88385,7 +88427,7 @@ var init_retrieveidentity = __esm(() => {
|
|
|
88385
88427
|
tags: arrayType(stringType()).optional(),
|
|
88386
88428
|
metadata: recordType(anyType()).optional(),
|
|
88387
88429
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
88388
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
88430
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
88389
88431
|
}).transform((v2) => {
|
|
88390
88432
|
return remap(v2, {
|
|
88391
88433
|
id: "_id",
|
|
@@ -88709,7 +88751,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88709
88751
|
code: stringType()
|
|
88710
88752
|
});
|
|
88711
88753
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
88712
|
-
_id: stringType().default("
|
|
88754
|
+
_id: stringType().default("tool_01KFG037R0ENCVJH3GGX05F07P"),
|
|
88713
88755
|
path: stringType(),
|
|
88714
88756
|
key: stringType(),
|
|
88715
88757
|
display_name: stringType().optional(),
|
|
@@ -88737,7 +88779,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88737
88779
|
});
|
|
88738
88780
|
});
|
|
88739
88781
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
88740
|
-
id: stringType().default("
|
|
88782
|
+
id: stringType().default("tool_01KFG037R0ENCVJH3GGX05F07P"),
|
|
88741
88783
|
path: stringType(),
|
|
88742
88784
|
key: stringType(),
|
|
88743
88785
|
displayName: stringType().optional(),
|
|
@@ -88787,13 +88829,13 @@ var init_retrievetool = __esm(() => {
|
|
|
88787
88829
|
required: arrayType(stringType()).optional()
|
|
88788
88830
|
});
|
|
88789
88831
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
88790
|
-
id: stringType().default("
|
|
88832
|
+
id: stringType().default("01KFG037QZ38C5T8XY5ZVKC888"),
|
|
88791
88833
|
name: stringType(),
|
|
88792
88834
|
description: stringType().optional(),
|
|
88793
88835
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
88794
88836
|
});
|
|
88795
88837
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
88796
|
-
id: stringType().default("
|
|
88838
|
+
id: stringType().default("01KFG037QZ38C5T8XY5ZVKC888"),
|
|
88797
88839
|
name: stringType(),
|
|
88798
88840
|
description: stringType().optional(),
|
|
88799
88841
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -88823,7 +88865,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88823
88865
|
});
|
|
88824
88866
|
});
|
|
88825
88867
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
88826
|
-
_id: stringType().default("
|
|
88868
|
+
_id: stringType().default("tool_01KFG037QXD15XFZC62K6JT5HH"),
|
|
88827
88869
|
path: stringType(),
|
|
88828
88870
|
key: stringType(),
|
|
88829
88871
|
display_name: stringType().optional(),
|
|
@@ -88850,7 +88892,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88850
88892
|
});
|
|
88851
88893
|
});
|
|
88852
88894
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
88853
|
-
id: stringType().default("
|
|
88895
|
+
id: stringType().default("tool_01KFG037QXD15XFZC62K6JT5HH"),
|
|
88854
88896
|
path: stringType(),
|
|
88855
88897
|
key: stringType(),
|
|
88856
88898
|
displayName: stringType().optional(),
|
|
@@ -88937,7 +88979,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88937
88979
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
88938
88980
|
});
|
|
88939
88981
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
88940
|
-
_id: stringType().default("
|
|
88982
|
+
_id: stringType().default("tool_01KFG037QJBJXTTXR4A9RERGAK"),
|
|
88941
88983
|
path: stringType(),
|
|
88942
88984
|
key: stringType(),
|
|
88943
88985
|
display_name: stringType().optional(),
|
|
@@ -88964,7 +89006,7 @@ var init_retrievetool = __esm(() => {
|
|
|
88964
89006
|
});
|
|
88965
89007
|
});
|
|
88966
89008
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
88967
|
-
id: stringType().default("
|
|
89009
|
+
id: stringType().default("tool_01KFG037QJBJXTTXR4A9RERGAK"),
|
|
88968
89010
|
path: stringType(),
|
|
88969
89011
|
key: stringType(),
|
|
88970
89012
|
displayName: stringType().optional(),
|
|
@@ -89023,7 +89065,7 @@ var init_retrievetool = __esm(() => {
|
|
|
89023
89065
|
strict: booleanType().optional()
|
|
89024
89066
|
});
|
|
89025
89067
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
89026
|
-
_id: stringType().default("
|
|
89068
|
+
_id: stringType().default("tool_01KFG037QEQ89RPSNNNJW9NZCB"),
|
|
89027
89069
|
path: stringType(),
|
|
89028
89070
|
key: stringType(),
|
|
89029
89071
|
display_name: stringType().optional(),
|
|
@@ -89051,7 +89093,7 @@ var init_retrievetool = __esm(() => {
|
|
|
89051
89093
|
});
|
|
89052
89094
|
});
|
|
89053
89095
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
89054
|
-
id: stringType().default("
|
|
89096
|
+
id: stringType().default("tool_01KFG037QEQ89RPSNNNJW9NZCB"),
|
|
89055
89097
|
path: stringType(),
|
|
89056
89098
|
key: stringType(),
|
|
89057
89099
|
displayName: stringType().optional(),
|
|
@@ -89113,7 +89155,7 @@ var init_retrievetool = __esm(() => {
|
|
|
89113
89155
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
89114
89156
|
});
|
|
89115
89157
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
89116
|
-
_id: stringType().default("
|
|
89158
|
+
_id: stringType().default("tool_01KFG037Q953ZSHQV04TBS5AZ0"),
|
|
89117
89159
|
path: stringType(),
|
|
89118
89160
|
key: stringType(),
|
|
89119
89161
|
display_name: stringType().optional(),
|
|
@@ -89140,7 +89182,7 @@ var init_retrievetool = __esm(() => {
|
|
|
89140
89182
|
});
|
|
89141
89183
|
});
|
|
89142
89184
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
89143
|
-
id: stringType().default("
|
|
89185
|
+
id: stringType().default("tool_01KFG037Q953ZSHQV04TBS5AZ0"),
|
|
89144
89186
|
path: stringType(),
|
|
89145
89187
|
key: stringType(),
|
|
89146
89188
|
displayName: stringType().optional(),
|
|
@@ -90052,13 +90094,13 @@ var init_runagent = __esm(() => {
|
|
|
90052
90094
|
required: arrayType(stringType()).optional()
|
|
90053
90095
|
});
|
|
90054
90096
|
Tools$inboundSchema2 = objectType({
|
|
90055
|
-
id: stringType().default("
|
|
90097
|
+
id: stringType().default("01KFG0373B46NYKHXJYGS64SB4"),
|
|
90056
90098
|
name: stringType(),
|
|
90057
90099
|
description: stringType().optional(),
|
|
90058
90100
|
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
90059
90101
|
});
|
|
90060
90102
|
Tools$outboundSchema2 = objectType({
|
|
90061
|
-
id: stringType().default("
|
|
90103
|
+
id: stringType().default("01KFG0373B46NYKHXJYGS64SB4"),
|
|
90062
90104
|
name: stringType(),
|
|
90063
90105
|
description: stringType().optional(),
|
|
90064
90106
|
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
@@ -92500,13 +92542,13 @@ var init_streamrunagent = __esm(() => {
|
|
|
92500
92542
|
required: arrayType(stringType()).optional()
|
|
92501
92543
|
});
|
|
92502
92544
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
92503
|
-
id: stringType().default("
|
|
92545
|
+
id: stringType().default("01KFG0376RA322YYWE73ZSDMFG"),
|
|
92504
92546
|
name: stringType(),
|
|
92505
92547
|
description: stringType().optional(),
|
|
92506
92548
|
schema: lazyType(() => StreamRunAgentAgentToolInputRunAgentsSchema$inboundSchema)
|
|
92507
92549
|
});
|
|
92508
92550
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
92509
|
-
id: stringType().default("
|
|
92551
|
+
id: stringType().default("01KFG0376RA322YYWE73ZSDMFG"),
|
|
92510
92552
|
name: stringType(),
|
|
92511
92553
|
description: stringType().optional(),
|
|
92512
92554
|
schema: lazyType(() => StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema)
|
|
@@ -95635,7 +95677,7 @@ var init_updatecontact = __esm(() => {
|
|
|
95635
95677
|
tags: arrayType(stringType()).optional(),
|
|
95636
95678
|
metadata: recordType(anyType()).optional(),
|
|
95637
95679
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
95638
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
95680
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
95639
95681
|
}).transform((v2) => {
|
|
95640
95682
|
return remap(v2, {
|
|
95641
95683
|
_id: "id",
|
|
@@ -95653,7 +95695,7 @@ var init_updatecontact = __esm(() => {
|
|
|
95653
95695
|
tags: arrayType(stringType()).optional(),
|
|
95654
95696
|
metadata: recordType(anyType()).optional(),
|
|
95655
95697
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
95656
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
95698
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
95657
95699
|
}).transform((v2) => {
|
|
95658
95700
|
return remap(v2, {
|
|
95659
95701
|
id: "_id",
|
|
@@ -95719,7 +95761,7 @@ var init_updateconversation = __esm(() => {
|
|
|
95719
95761
|
model: nullableType(stringType()).optional()
|
|
95720
95762
|
});
|
|
95721
95763
|
UpdateConversationResponseBody$inboundSchema = objectType({
|
|
95722
|
-
_id: stringType().default("
|
|
95764
|
+
_id: stringType().default("conv_01kfg0379cq05pra7z81qp3hcf"),
|
|
95723
95765
|
kind: UpdateConversationKind$inboundSchema,
|
|
95724
95766
|
displayName: stringType(),
|
|
95725
95767
|
createdAt: numberType(),
|
|
@@ -95733,7 +95775,7 @@ var init_updateconversation = __esm(() => {
|
|
|
95733
95775
|
});
|
|
95734
95776
|
});
|
|
95735
95777
|
UpdateConversationResponseBody$outboundSchema = objectType({
|
|
95736
|
-
id: stringType().default("
|
|
95778
|
+
id: stringType().default("conv_01kfg0379cq05pra7z81qp3hcf"),
|
|
95737
95779
|
kind: UpdateConversationKind$outboundSchema,
|
|
95738
95780
|
displayName: stringType(),
|
|
95739
95781
|
createdAt: numberType(),
|
|
@@ -96475,7 +96517,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96475
96517
|
human_review_id: stringType(),
|
|
96476
96518
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
96477
96519
|
reviewed_by_id: stringType(),
|
|
96478
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
96520
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.581Z").transform((v2) => new Date(v2)),
|
|
96479
96521
|
type: literalType("string_array"),
|
|
96480
96522
|
values: arrayType(stringType())
|
|
96481
96523
|
}).transform((v2) => {
|
|
@@ -96492,7 +96534,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96492
96534
|
humanReviewId: stringType(),
|
|
96493
96535
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
96494
96536
|
reviewedById: stringType(),
|
|
96495
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
96537
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.581Z")).transform((v2) => v2.toISOString()),
|
|
96496
96538
|
type: literalType("string_array"),
|
|
96497
96539
|
values: arrayType(stringType())
|
|
96498
96540
|
}).transform((v2) => {
|
|
@@ -96513,7 +96555,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96513
96555
|
human_review_id: stringType(),
|
|
96514
96556
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
96515
96557
|
reviewed_by_id: stringType(),
|
|
96516
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
96558
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.581Z").transform((v2) => new Date(v2)),
|
|
96517
96559
|
type: literalType("number"),
|
|
96518
96560
|
value: numberType()
|
|
96519
96561
|
}).transform((v2) => {
|
|
@@ -96530,7 +96572,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96530
96572
|
humanReviewId: stringType(),
|
|
96531
96573
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
96532
96574
|
reviewedById: stringType(),
|
|
96533
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
96575
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.581Z")).transform((v2) => v2.toISOString()),
|
|
96534
96576
|
type: literalType("number"),
|
|
96535
96577
|
value: numberType()
|
|
96536
96578
|
}).transform((v2) => {
|
|
@@ -96551,7 +96593,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96551
96593
|
human_review_id: stringType(),
|
|
96552
96594
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
96553
96595
|
reviewed_by_id: stringType(),
|
|
96554
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
96596
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-21T10:02:41.580Z").transform((v2) => new Date(v2)),
|
|
96555
96597
|
type: literalType("string"),
|
|
96556
96598
|
value: stringType()
|
|
96557
96599
|
}).transform((v2) => {
|
|
@@ -96568,7 +96610,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96568
96610
|
humanReviewId: stringType(),
|
|
96569
96611
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
96570
96612
|
reviewedById: stringType(),
|
|
96571
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
96613
|
+
reviewedAt: dateType().default(() => new Date("2026-01-21T10:02:41.580Z")).transform((v2) => v2.toISOString()),
|
|
96572
96614
|
type: literalType("string"),
|
|
96573
96615
|
value: stringType()
|
|
96574
96616
|
}).transform((v2) => {
|
|
@@ -96611,7 +96653,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96611
96653
|
created_by_id: stringType().optional(),
|
|
96612
96654
|
updated_by_id: stringType().optional(),
|
|
96613
96655
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
96614
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
96656
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
96615
96657
|
}).transform((v2) => {
|
|
96616
96658
|
return remap(v2, {
|
|
96617
96659
|
_id: "id",
|
|
@@ -96645,7 +96687,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
96645
96687
|
createdById: stringType().optional(),
|
|
96646
96688
|
updatedById: stringType().optional(),
|
|
96647
96689
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
96648
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
96690
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
96649
96691
|
}).transform((v2) => {
|
|
96650
96692
|
return remap(v2, {
|
|
96651
96693
|
id: "_id",
|
|
@@ -96729,7 +96771,7 @@ var init_updatedataset = __esm(() => {
|
|
|
96729
96771
|
created_by_id: stringType().optional(),
|
|
96730
96772
|
updated_by_id: stringType().optional(),
|
|
96731
96773
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
96732
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
96774
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
96733
96775
|
}).transform((v2) => {
|
|
96734
96776
|
return remap(v2, {
|
|
96735
96777
|
_id: "id",
|
|
@@ -96749,7 +96791,7 @@ var init_updatedataset = __esm(() => {
|
|
|
96749
96791
|
createdById: stringType().optional(),
|
|
96750
96792
|
updatedById: stringType().optional(),
|
|
96751
96793
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
96752
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
96794
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
96753
96795
|
}).transform((v2) => {
|
|
96754
96796
|
return remap(v2, {
|
|
96755
96797
|
id: "_id",
|
|
@@ -96813,7 +96855,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
96813
96855
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
96814
96856
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
96815
96857
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
96816
|
-
_id: stringType().default("
|
|
96858
|
+
_id: stringType().default("01KFG037W0VPHKGFN9C44V81A9"),
|
|
96817
96859
|
display_name: stringType(),
|
|
96818
96860
|
description: stringType().optional(),
|
|
96819
96861
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -96836,7 +96878,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
96836
96878
|
});
|
|
96837
96879
|
});
|
|
96838
96880
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
96839
|
-
id: stringType().default("
|
|
96881
|
+
id: stringType().default("01KFG037W0VPHKGFN9C44V81A9"),
|
|
96840
96882
|
displayName: stringType(),
|
|
96841
96883
|
description: stringType().optional(),
|
|
96842
96884
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -97449,8 +97491,8 @@ var init_updateeval = __esm(() => {
|
|
|
97449
97491
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
97450
97492
|
_id: stringType(),
|
|
97451
97493
|
description: stringType(),
|
|
97452
|
-
created: stringType().default("2026-01-
|
|
97453
|
-
updated: stringType().default("2026-01-
|
|
97494
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97495
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97454
97496
|
guardrail_config: unionType([
|
|
97455
97497
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
97456
97498
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -97467,8 +97509,8 @@ var init_updateeval = __esm(() => {
|
|
|
97467
97509
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
97468
97510
|
id: stringType(),
|
|
97469
97511
|
description: stringType(),
|
|
97470
|
-
created: stringType().default("2026-01-
|
|
97471
|
-
updated: stringType().default("2026-01-
|
|
97512
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97513
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97472
97514
|
guardrailConfig: unionType([
|
|
97473
97515
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
97474
97516
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -97539,8 +97581,8 @@ var init_updateeval = __esm(() => {
|
|
|
97539
97581
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
97540
97582
|
_id: stringType(),
|
|
97541
97583
|
description: stringType(),
|
|
97542
|
-
created: stringType().default("2026-01-
|
|
97543
|
-
updated: stringType().default("2026-01-
|
|
97584
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97585
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97544
97586
|
guardrail_config: unionType([
|
|
97545
97587
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
97546
97588
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -97559,8 +97601,8 @@ var init_updateeval = __esm(() => {
|
|
|
97559
97601
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
97560
97602
|
id: stringType(),
|
|
97561
97603
|
description: stringType(),
|
|
97562
|
-
created: stringType().default("2026-01-
|
|
97563
|
-
updated: stringType().default("2026-01-
|
|
97604
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97605
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97564
97606
|
guardrailConfig: unionType([
|
|
97565
97607
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
97566
97608
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -97915,8 +97957,8 @@ var init_updateeval = __esm(() => {
|
|
|
97915
97957
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
97916
97958
|
_id: stringType(),
|
|
97917
97959
|
description: stringType(),
|
|
97918
|
-
created: stringType().default("2026-01-
|
|
97919
|
-
updated: stringType().default("2026-01-
|
|
97960
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97961
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97920
97962
|
guardrail_config: unionType([
|
|
97921
97963
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
97922
97964
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -97967,8 +98009,8 @@ var init_updateeval = __esm(() => {
|
|
|
97967
98009
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
97968
98010
|
id: stringType(),
|
|
97969
98011
|
description: stringType(),
|
|
97970
|
-
created: stringType().default("2026-01-
|
|
97971
|
-
updated: stringType().default("2026-01-
|
|
98012
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98013
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
97972
98014
|
guardrailConfig: unionType([
|
|
97973
98015
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
97974
98016
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -98071,8 +98113,8 @@ var init_updateeval = __esm(() => {
|
|
|
98071
98113
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
98072
98114
|
_id: stringType(),
|
|
98073
98115
|
description: stringType(),
|
|
98074
|
-
created: stringType().default("2026-01-
|
|
98075
|
-
updated: stringType().default("2026-01-
|
|
98116
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98117
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98076
98118
|
guardrail_config: unionType([
|
|
98077
98119
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
98078
98120
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -98089,8 +98131,8 @@ var init_updateeval = __esm(() => {
|
|
|
98089
98131
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
98090
98132
|
id: stringType(),
|
|
98091
98133
|
description: stringType(),
|
|
98092
|
-
created: stringType().default("2026-01-
|
|
98093
|
-
updated: stringType().default("2026-01-
|
|
98134
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98135
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98094
98136
|
guardrailConfig: unionType([
|
|
98095
98137
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
98096
98138
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -98161,8 +98203,8 @@ var init_updateeval = __esm(() => {
|
|
|
98161
98203
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
98162
98204
|
_id: stringType(),
|
|
98163
98205
|
description: stringType(),
|
|
98164
|
-
created: stringType().default("2026-01-
|
|
98165
|
-
updated: stringType().default("2026-01-
|
|
98206
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98207
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98166
98208
|
guardrail_config: unionType([
|
|
98167
98209
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
98168
98210
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -98182,8 +98224,8 @@ var init_updateeval = __esm(() => {
|
|
|
98182
98224
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
98183
98225
|
id: stringType(),
|
|
98184
98226
|
description: stringType(),
|
|
98185
|
-
created: stringType().default("2026-01-
|
|
98186
|
-
updated: stringType().default("2026-01-
|
|
98227
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98228
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98187
98229
|
guardrailConfig: unionType([
|
|
98188
98230
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
98189
98231
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -98255,8 +98297,8 @@ var init_updateeval = __esm(() => {
|
|
|
98255
98297
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
98256
98298
|
_id: stringType(),
|
|
98257
98299
|
description: stringType(),
|
|
98258
|
-
created: stringType().default("2026-01-
|
|
98259
|
-
updated: stringType().default("2026-01-
|
|
98300
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98301
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98260
98302
|
guardrail_config: unionType([
|
|
98261
98303
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
98262
98304
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -98273,8 +98315,8 @@ var init_updateeval = __esm(() => {
|
|
|
98273
98315
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
98274
98316
|
id: stringType(),
|
|
98275
98317
|
description: stringType(),
|
|
98276
|
-
created: stringType().default("2026-01-
|
|
98277
|
-
updated: stringType().default("2026-01-
|
|
98318
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98319
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98278
98320
|
guardrailConfig: unionType([
|
|
98279
98321
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
98280
98322
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -98343,8 +98385,8 @@ var init_updateeval = __esm(() => {
|
|
|
98343
98385
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
98344
98386
|
_id: stringType(),
|
|
98345
98387
|
description: stringType(),
|
|
98346
|
-
created: stringType().default("2026-01-
|
|
98347
|
-
updated: stringType().default("2026-01-
|
|
98388
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98389
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98348
98390
|
guardrail_config: unionType([
|
|
98349
98391
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
98350
98392
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -98362,8 +98404,8 @@ var init_updateeval = __esm(() => {
|
|
|
98362
98404
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
98363
98405
|
id: stringType(),
|
|
98364
98406
|
description: stringType(),
|
|
98365
|
-
created: stringType().default("2026-01-
|
|
98366
|
-
updated: stringType().default("2026-01-
|
|
98407
|
+
created: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98408
|
+
updated: stringType().default("2026-01-21T10:02:29.982Z"),
|
|
98367
98409
|
guardrailConfig: unionType([
|
|
98368
98410
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
98369
98411
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -98452,7 +98494,7 @@ var init_updateidentity = __esm(() => {
|
|
|
98452
98494
|
tags: arrayType(stringType()).optional(),
|
|
98453
98495
|
metadata: recordType(anyType()).optional(),
|
|
98454
98496
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
98455
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
98497
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-21T10:02:27.374Z").transform((v2) => new Date(v2))
|
|
98456
98498
|
}).transform((v2) => {
|
|
98457
98499
|
return remap(v2, {
|
|
98458
98500
|
_id: "id",
|
|
@@ -98470,7 +98512,7 @@ var init_updateidentity = __esm(() => {
|
|
|
98470
98512
|
tags: arrayType(stringType()).optional(),
|
|
98471
98513
|
metadata: recordType(anyType()).optional(),
|
|
98472
98514
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
98473
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
98515
|
+
updated: dateType().default(() => new Date("2026-01-21T10:02:27.374Z")).transform((v2) => v2.toISOString())
|
|
98474
98516
|
}).transform((v2) => {
|
|
98475
98517
|
return remap(v2, {
|
|
98476
98518
|
id: "_id",
|
|
@@ -101288,13 +101330,13 @@ var init_updatetool = __esm(() => {
|
|
|
101288
101330
|
required: arrayType(stringType()).optional()
|
|
101289
101331
|
});
|
|
101290
101332
|
RequestBodyTools$inboundSchema = objectType({
|
|
101291
|
-
id: stringType().default("
|
|
101333
|
+
id: stringType().default("01KFG037P89K3BQF96M6VMDCSM"),
|
|
101292
101334
|
name: stringType(),
|
|
101293
101335
|
description: stringType().optional(),
|
|
101294
101336
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
101295
101337
|
});
|
|
101296
101338
|
RequestBodyTools$outboundSchema = objectType({
|
|
101297
|
-
id: stringType().default("
|
|
101339
|
+
id: stringType().default("01KFG037P89K3BQF96M6VMDCSM"),
|
|
101298
101340
|
name: stringType(),
|
|
101299
101341
|
description: stringType().optional(),
|
|
101300
101342
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -101634,7 +101676,7 @@ var init_updatetool = __esm(() => {
|
|
|
101634
101676
|
code: stringType()
|
|
101635
101677
|
});
|
|
101636
101678
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
101637
|
-
_id: stringType().default("
|
|
101679
|
+
_id: stringType().default("tool_01KFG037NPBPJTZQZTEYGR6GM7"),
|
|
101638
101680
|
path: stringType(),
|
|
101639
101681
|
key: stringType(),
|
|
101640
101682
|
display_name: stringType().optional(),
|
|
@@ -101662,7 +101704,7 @@ var init_updatetool = __esm(() => {
|
|
|
101662
101704
|
});
|
|
101663
101705
|
});
|
|
101664
101706
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
101665
|
-
id: stringType().default("
|
|
101707
|
+
id: stringType().default("tool_01KFG037NPBPJTZQZTEYGR6GM7"),
|
|
101666
101708
|
path: stringType(),
|
|
101667
101709
|
key: stringType(),
|
|
101668
101710
|
displayName: stringType().optional(),
|
|
@@ -101712,13 +101754,13 @@ var init_updatetool = __esm(() => {
|
|
|
101712
101754
|
required: arrayType(stringType()).optional()
|
|
101713
101755
|
});
|
|
101714
101756
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
101715
|
-
id: stringType().default("
|
|
101757
|
+
id: stringType().default("01KFG037NNYNBRHJDFM9FGWGAK"),
|
|
101716
101758
|
name: stringType(),
|
|
101717
101759
|
description: stringType().optional(),
|
|
101718
101760
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
101719
101761
|
});
|
|
101720
101762
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
101721
|
-
id: stringType().default("
|
|
101763
|
+
id: stringType().default("01KFG037NNYNBRHJDFM9FGWGAK"),
|
|
101722
101764
|
name: stringType(),
|
|
101723
101765
|
description: stringType().optional(),
|
|
101724
101766
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -101748,7 +101790,7 @@ var init_updatetool = __esm(() => {
|
|
|
101748
101790
|
});
|
|
101749
101791
|
});
|
|
101750
101792
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
101751
|
-
_id: stringType().default("
|
|
101793
|
+
_id: stringType().default("tool_01KFG037NKHN427AT8PNM8GM2C"),
|
|
101752
101794
|
path: stringType(),
|
|
101753
101795
|
key: stringType(),
|
|
101754
101796
|
display_name: stringType().optional(),
|
|
@@ -101775,7 +101817,7 @@ var init_updatetool = __esm(() => {
|
|
|
101775
101817
|
});
|
|
101776
101818
|
});
|
|
101777
101819
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
101778
|
-
id: stringType().default("
|
|
101820
|
+
id: stringType().default("tool_01KFG037NKHN427AT8PNM8GM2C"),
|
|
101779
101821
|
path: stringType(),
|
|
101780
101822
|
key: stringType(),
|
|
101781
101823
|
displayName: stringType().optional(),
|
|
@@ -101862,7 +101904,7 @@ var init_updatetool = __esm(() => {
|
|
|
101862
101904
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
101863
101905
|
});
|
|
101864
101906
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
101865
|
-
_id: stringType().default("
|
|
101907
|
+
_id: stringType().default("tool_01KFG037NGEBEQP1R0X4Z1A03K"),
|
|
101866
101908
|
path: stringType(),
|
|
101867
101909
|
key: stringType(),
|
|
101868
101910
|
display_name: stringType().optional(),
|
|
@@ -101889,7 +101931,7 @@ var init_updatetool = __esm(() => {
|
|
|
101889
101931
|
});
|
|
101890
101932
|
});
|
|
101891
101933
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
101892
|
-
id: stringType().default("
|
|
101934
|
+
id: stringType().default("tool_01KFG037NGEBEQP1R0X4Z1A03K"),
|
|
101893
101935
|
path: stringType(),
|
|
101894
101936
|
key: stringType(),
|
|
101895
101937
|
displayName: stringType().optional(),
|
|
@@ -101948,7 +101990,7 @@ var init_updatetool = __esm(() => {
|
|
|
101948
101990
|
strict: booleanType().optional()
|
|
101949
101991
|
});
|
|
101950
101992
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
101951
|
-
_id: stringType().default("
|
|
101993
|
+
_id: stringType().default("tool_01KFG037NDCSZXX8RDRSJBZNSD"),
|
|
101952
101994
|
path: stringType(),
|
|
101953
101995
|
key: stringType(),
|
|
101954
101996
|
display_name: stringType().optional(),
|
|
@@ -101976,7 +102018,7 @@ var init_updatetool = __esm(() => {
|
|
|
101976
102018
|
});
|
|
101977
102019
|
});
|
|
101978
102020
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
101979
|
-
id: stringType().default("
|
|
102021
|
+
id: stringType().default("tool_01KFG037NDCSZXX8RDRSJBZNSD"),
|
|
101980
102022
|
path: stringType(),
|
|
101981
102023
|
key: stringType(),
|
|
101982
102024
|
displayName: stringType().optional(),
|
|
@@ -102038,7 +102080,7 @@ var init_updatetool = __esm(() => {
|
|
|
102038
102080
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
102039
102081
|
});
|
|
102040
102082
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
102041
|
-
_id: stringType().default("
|
|
102083
|
+
_id: stringType().default("tool_01KFG037NBMCYZ3MTW36ZA58RC"),
|
|
102042
102084
|
path: stringType(),
|
|
102043
102085
|
key: stringType(),
|
|
102044
102086
|
display_name: stringType().optional(),
|
|
@@ -102065,7 +102107,7 @@ var init_updatetool = __esm(() => {
|
|
|
102065
102107
|
});
|
|
102066
102108
|
});
|
|
102067
102109
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
102068
|
-
id: stringType().default("
|
|
102110
|
+
id: stringType().default("tool_01KFG037NBMCYZ3MTW36ZA58RC"),
|
|
102069
102111
|
path: stringType(),
|
|
102070
102112
|
key: stringType(),
|
|
102071
102113
|
displayName: stringType().optional(),
|
|
@@ -114678,7 +114720,7 @@ Updates a tool in the workspace.`,
|
|
|
114678
114720
|
function createMCPServer(deps) {
|
|
114679
114721
|
const server = new McpServer({
|
|
114680
114722
|
name: "Orq",
|
|
114681
|
-
version: "4.2.0-rc.
|
|
114723
|
+
version: "4.2.0-rc.54"
|
|
114682
114724
|
});
|
|
114683
114725
|
const client = new OrqCore({
|
|
114684
114726
|
apiKey: deps.apiKey,
|
|
@@ -116112,7 +116154,7 @@ var routes = rn({
|
|
|
116112
116154
|
var app = Ve(routes, {
|
|
116113
116155
|
name: "mcp",
|
|
116114
116156
|
versionInfo: {
|
|
116115
|
-
currentVersion: "4.2.0-rc.
|
|
116157
|
+
currentVersion: "4.2.0-rc.54"
|
|
116116
116158
|
}
|
|
116117
116159
|
});
|
|
116118
116160
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -116120,5 +116162,5 @@ export {
|
|
|
116120
116162
|
app
|
|
116121
116163
|
};
|
|
116122
116164
|
|
|
116123
|
-
//# debugId=
|
|
116165
|
+
//# debugId=4D8061D55DAFD6C664756E2164756E21
|
|
116124
116166
|
//# sourceMappingURL=mcp-server.js.map
|