@orq-ai/node 3.9.14 → 3.9.16
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 +124 -114
- package/bin/mcp-server.js.map +35 -35
- package/examples/README.md +5 -0
- package/examples/contactsCreate.example.ts +2 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/createprompt.d.ts +6 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +2 -0
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentinvoke.d.ts +3 -0
- package/models/operations/deploymentinvoke.d.ts.map +1 -1
- package/models/operations/deploymentinvoke.js +1 -0
- package/models/operations/deploymentinvoke.js.map +1 -1
- package/models/operations/deployments.d.ts +3 -0
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +1 -0
- package/models/operations/deployments.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +3 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +1 -0
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +3 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +1 -0
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +3 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +1 -0
- package/models/operations/getpromptversion.js.map +1 -1
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listpromptversions.d.ts +3 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +1 -0
- package/models/operations/listpromptversions.js.map +1 -1
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateprompt.d.ts +6 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +2 -0
- package/models/operations/updateprompt.js.map +1 -1
- package/package.json +1 -1
- package/packages/orq-rc/README.md +93 -91
- package/packages/orq-rc/docs/sdks/{knowledgebases → chunking}/README.md +10 -10
- package/packages/orq-rc/docs/sdks/knowledge/README.md +77 -0
- package/packages/orq-rc/examples/README.md +5 -0
- package/packages/orq-rc/examples/contactsCreate.example.ts +2 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/{knowledgeBasesChunkText.ts → chunkingParse.ts} +11 -11
- package/packages/orq-rc/src/funcs/knowledgeCreate.ts +158 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +5 -3
- package/packages/orq-rc/src/mcp-server/tools/{knowledgeBasesChunkText.ts → chunkingParse.ts} +6 -6
- package/packages/orq-rc/src/mcp-server/tools/knowledgeCreate.ts +35 -0
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/createknowledge.ts +846 -0
- package/packages/orq-rc/src/models/operations/createprompt.ts +4 -0
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +2 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +2 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getallprompts.ts +2 -0
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +2 -0
- package/packages/orq-rc/src/models/operations/index.ts +2 -1
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +2 -0
- package/packages/orq-rc/src/models/operations/{chunktext.ts → parse.ts} +164 -183
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +266 -206
- package/packages/orq-rc/src/models/operations/updateprompt.ts +4 -0
- package/packages/orq-rc/src/sdk/{knowledgebases.ts → chunking.ts} +7 -7
- package/packages/orq-rc/src/sdk/knowledge.ts +15 -0
- package/packages/orq-rc/src/sdk/sdk.ts +4 -4
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createprompt.ts +2 -0
- package/src/models/operations/deploymentinvoke.ts +1 -0
- package/src/models/operations/deployments.ts +1 -0
- 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/getallprompts.ts +1 -0
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +1 -0
- package/src/models/operations/getpromptversion.ts +1 -0
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +1 -0
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateprompt.ts +2 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
|
|
|
34206
34206
|
SDK_METADATA = {
|
|
34207
34207
|
language: "typescript",
|
|
34208
34208
|
openapiDocVersion: "2.0",
|
|
34209
|
-
sdkVersion: "3.9.
|
|
34210
|
-
genVersion: "2.
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 3.9.
|
|
34209
|
+
sdkVersion: "3.9.16",
|
|
34210
|
+
genVersion: "2.660.0",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.9.16 2.660.0 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -35881,7 +35881,7 @@ var init_createcontact = __esm(() => {
|
|
|
35881
35881
|
tags: arrayType(stringType()).optional(),
|
|
35882
35882
|
metadata: recordType(anyType()).optional(),
|
|
35883
35883
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35884
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
35884
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
35885
35885
|
}).transform((v2) => {
|
|
35886
35886
|
return remap(v2, {
|
|
35887
35887
|
_id: "id",
|
|
@@ -35901,7 +35901,7 @@ var init_createcontact = __esm(() => {
|
|
|
35901
35901
|
tags: arrayType(stringType()).optional(),
|
|
35902
35902
|
metadata: recordType(anyType()).optional(),
|
|
35903
35903
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35904
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
35904
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
35905
35905
|
}).transform((v2) => {
|
|
35906
35906
|
return remap(v2, {
|
|
35907
35907
|
id: "_id",
|
|
@@ -35973,7 +35973,7 @@ var init_createdataset = __esm(() => {
|
|
|
35973
35973
|
updated_by_id: stringType().optional(),
|
|
35974
35974
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
35975
35975
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35976
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
35976
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
35977
35977
|
}).transform((v2) => {
|
|
35978
35978
|
return remap(v2, {
|
|
35979
35979
|
_id: "id",
|
|
@@ -35993,7 +35993,7 @@ var init_createdataset = __esm(() => {
|
|
|
35993
35993
|
updatedById: stringType().optional(),
|
|
35994
35994
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
35995
35995
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35996
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
35996
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
35997
35997
|
}).transform((v2) => {
|
|
35998
35998
|
return remap(v2, {
|
|
35999
35999
|
id: "_id",
|
|
@@ -37125,7 +37125,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37125
37125
|
created_by_id: stringType().optional(),
|
|
37126
37126
|
updated_by_id: stringType().optional(),
|
|
37127
37127
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37128
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
37128
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
37129
37129
|
}).transform((v2) => {
|
|
37130
37130
|
return remap(v2, {
|
|
37131
37131
|
_id: "id",
|
|
@@ -37152,7 +37152,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37152
37152
|
createdById: stringType().optional(),
|
|
37153
37153
|
updatedById: stringType().optional(),
|
|
37154
37154
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37155
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
37155
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
37156
37156
|
}).transform((v2) => {
|
|
37157
37157
|
return remap(v2, {
|
|
37158
37158
|
id: "_id",
|
|
@@ -37374,7 +37374,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37374
37374
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37375
37375
|
})(CreateDatasourceStatus$ ||= {});
|
|
37376
37376
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37377
|
-
_id: stringType().default("
|
|
37377
|
+
_id: stringType().default("01K0RJ8MDG1ZGGZ35WDC47NKC4"),
|
|
37378
37378
|
display_name: stringType(),
|
|
37379
37379
|
description: stringType().optional(),
|
|
37380
37380
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37397,7 +37397,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37397
37397
|
});
|
|
37398
37398
|
});
|
|
37399
37399
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37400
|
-
id: stringType().default("
|
|
37400
|
+
id: stringType().default("01K0RJ8MDG1ZGGZ35WDC47NKC4"),
|
|
37401
37401
|
displayName: stringType(),
|
|
37402
37402
|
description: stringType().optional(),
|
|
37403
37403
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -38073,8 +38073,8 @@ var init_createeval = __esm(() => {
|
|
|
38073
38073
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38074
38074
|
_id: stringType(),
|
|
38075
38075
|
description: stringType(),
|
|
38076
|
-
created: stringType().default("2025-07-
|
|
38077
|
-
updated: stringType().default("2025-07-
|
|
38076
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38077
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38078
38078
|
guardrail_config: unionType([
|
|
38079
38079
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
38080
38080
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -38091,8 +38091,8 @@ var init_createeval = __esm(() => {
|
|
|
38091
38091
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38092
38092
|
id: stringType(),
|
|
38093
38093
|
description: stringType(),
|
|
38094
|
-
created: stringType().default("2025-07-
|
|
38095
|
-
updated: stringType().default("2025-07-
|
|
38094
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38095
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38096
38096
|
guardrailConfig: unionType([
|
|
38097
38097
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
38098
38098
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -38185,8 +38185,8 @@ var init_createeval = __esm(() => {
|
|
|
38185
38185
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38186
38186
|
_id: stringType(),
|
|
38187
38187
|
description: stringType(),
|
|
38188
|
-
created: stringType().default("2025-07-
|
|
38189
|
-
updated: stringType().default("2025-07-
|
|
38188
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38189
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38190
38190
|
guardrail_config: unionType([
|
|
38191
38191
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
38192
38192
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -38206,8 +38206,8 @@ var init_createeval = __esm(() => {
|
|
|
38206
38206
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38207
38207
|
id: stringType(),
|
|
38208
38208
|
description: stringType(),
|
|
38209
|
-
created: stringType().default("2025-07-
|
|
38210
|
-
updated: stringType().default("2025-07-
|
|
38209
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38210
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38211
38211
|
guardrailConfig: unionType([
|
|
38212
38212
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
38213
38213
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -38297,8 +38297,8 @@ var init_createeval = __esm(() => {
|
|
|
38297
38297
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38298
38298
|
_id: stringType(),
|
|
38299
38299
|
description: stringType(),
|
|
38300
|
-
created: stringType().default("2025-07-
|
|
38301
|
-
updated: stringType().default("2025-07-
|
|
38300
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38301
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38302
38302
|
guardrail_config: unionType([
|
|
38303
38303
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
38304
38304
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -38315,8 +38315,8 @@ var init_createeval = __esm(() => {
|
|
|
38315
38315
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38316
38316
|
id: stringType(),
|
|
38317
38317
|
description: stringType(),
|
|
38318
|
-
created: stringType().default("2025-07-
|
|
38319
|
-
updated: stringType().default("2025-07-
|
|
38318
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38319
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38320
38320
|
guardrailConfig: unionType([
|
|
38321
38321
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
38322
38322
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -38403,8 +38403,8 @@ var init_createeval = __esm(() => {
|
|
|
38403
38403
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38404
38404
|
_id: stringType(),
|
|
38405
38405
|
description: stringType(),
|
|
38406
|
-
created: stringType().default("2025-07-
|
|
38407
|
-
updated: stringType().default("2025-07-
|
|
38406
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38407
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38408
38408
|
guardrail_config: unionType([
|
|
38409
38409
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
38410
38410
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -38422,8 +38422,8 @@ var init_createeval = __esm(() => {
|
|
|
38422
38422
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38423
38423
|
id: stringType(),
|
|
38424
38424
|
description: stringType(),
|
|
38425
|
-
created: stringType().default("2025-07-
|
|
38426
|
-
updated: stringType().default("2025-07-
|
|
38425
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38426
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
38427
38427
|
guardrailConfig: unionType([
|
|
38428
38428
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
38429
38429
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -38819,7 +38819,8 @@ var init_createprompt = __esm(() => {
|
|
|
38819
38819
|
Jina: "jina",
|
|
38820
38820
|
Togetherai: "togetherai",
|
|
38821
38821
|
Elevenlabs: "elevenlabs",
|
|
38822
|
-
Litellm: "litellm"
|
|
38822
|
+
Litellm: "litellm",
|
|
38823
|
+
Openailike: "openailike"
|
|
38823
38824
|
};
|
|
38824
38825
|
CreatePromptRole = {
|
|
38825
38826
|
System: "system",
|
|
@@ -38933,7 +38934,8 @@ var init_createprompt = __esm(() => {
|
|
|
38933
38934
|
Jina: "jina",
|
|
38934
38935
|
Togetherai: "togetherai",
|
|
38935
38936
|
Elevenlabs: "elevenlabs",
|
|
38936
|
-
Litellm: "litellm"
|
|
38937
|
+
Litellm: "litellm",
|
|
38938
|
+
Openailike: "openailike"
|
|
38937
38939
|
};
|
|
38938
38940
|
CreatePromptPromptsRole = {
|
|
38939
38941
|
System: "system",
|
|
@@ -43561,7 +43563,8 @@ var init_deploymentinvoke = __esm(() => {
|
|
|
43561
43563
|
Jina: "jina",
|
|
43562
43564
|
Togetherai: "togetherai",
|
|
43563
43565
|
Elevenlabs: "elevenlabs",
|
|
43564
|
-
Litellm: "litellm"
|
|
43566
|
+
Litellm: "litellm",
|
|
43567
|
+
Openailike: "openailike"
|
|
43565
43568
|
};
|
|
43566
43569
|
DeploymentInvokeMessageDeploymentsType = {
|
|
43567
43570
|
Image: "image"
|
|
@@ -43985,7 +43988,8 @@ var init_deployments = __esm(() => {
|
|
|
43985
43988
|
Jina: "jina",
|
|
43986
43989
|
Togetherai: "togetherai",
|
|
43987
43990
|
Elevenlabs: "elevenlabs",
|
|
43988
|
-
Litellm: "litellm"
|
|
43991
|
+
Litellm: "litellm",
|
|
43992
|
+
Openailike: "openailike"
|
|
43989
43993
|
};
|
|
43990
43994
|
DeploymentsRole = {
|
|
43991
43995
|
System: "system",
|
|
@@ -48221,7 +48225,7 @@ var init_fileget = __esm(() => {
|
|
|
48221
48225
|
bytes: numberType(),
|
|
48222
48226
|
file_name: stringType(),
|
|
48223
48227
|
workspace_id: stringType(),
|
|
48224
|
-
created: stringType().datetime({ offset: true }).default("2025-07-
|
|
48228
|
+
created: stringType().datetime({ offset: true }).default("2025-07-22T07:58:35.173Z").transform((v2) => new Date(v2))
|
|
48225
48229
|
}).transform((v2) => {
|
|
48226
48230
|
return remap(v2, {
|
|
48227
48231
|
_id: "id",
|
|
@@ -48237,7 +48241,7 @@ var init_fileget = __esm(() => {
|
|
|
48237
48241
|
bytes: numberType(),
|
|
48238
48242
|
fileName: stringType(),
|
|
48239
48243
|
workspaceId: stringType(),
|
|
48240
|
-
created: dateType().default(() => new Date("2025-07-
|
|
48244
|
+
created: dateType().default(() => new Date("2025-07-22T07:58:35.173Z")).transform((v2) => v2.toISOString())
|
|
48241
48245
|
}).transform((v2) => {
|
|
48242
48246
|
return remap(v2, {
|
|
48243
48247
|
id: "_id",
|
|
@@ -48308,7 +48312,7 @@ var init_filelist = __esm(() => {
|
|
|
48308
48312
|
bytes: numberType(),
|
|
48309
48313
|
file_name: stringType(),
|
|
48310
48314
|
workspace_id: stringType(),
|
|
48311
|
-
created: stringType().datetime({ offset: true }).default("2025-07-
|
|
48315
|
+
created: stringType().datetime({ offset: true }).default("2025-07-22T07:58:35.173Z").transform((v2) => new Date(v2))
|
|
48312
48316
|
}).transform((v2) => {
|
|
48313
48317
|
return remap(v2, {
|
|
48314
48318
|
_id: "id",
|
|
@@ -48324,7 +48328,7 @@ var init_filelist = __esm(() => {
|
|
|
48324
48328
|
bytes: numberType(),
|
|
48325
48329
|
fileName: stringType(),
|
|
48326
48330
|
workspaceId: stringType(),
|
|
48327
|
-
created: dateType().default(() => new Date("2025-07-
|
|
48331
|
+
created: dateType().default(() => new Date("2025-07-22T07:58:35.173Z")).transform((v2) => v2.toISOString())
|
|
48328
48332
|
}).transform((v2) => {
|
|
48329
48333
|
return remap(v2, {
|
|
48330
48334
|
id: "_id",
|
|
@@ -48456,7 +48460,7 @@ var init_fileupload = __esm(() => {
|
|
|
48456
48460
|
bytes: numberType(),
|
|
48457
48461
|
file_name: stringType(),
|
|
48458
48462
|
workspace_id: stringType(),
|
|
48459
|
-
created: stringType().datetime({ offset: true }).default("2025-07-
|
|
48463
|
+
created: stringType().datetime({ offset: true }).default("2025-07-22T07:58:35.173Z").transform((v2) => new Date(v2))
|
|
48460
48464
|
}).transform((v2) => {
|
|
48461
48465
|
return remap(v2, {
|
|
48462
48466
|
_id: "id",
|
|
@@ -48472,7 +48476,7 @@ var init_fileupload = __esm(() => {
|
|
|
48472
48476
|
bytes: numberType(),
|
|
48473
48477
|
fileName: stringType(),
|
|
48474
48478
|
workspaceId: stringType(),
|
|
48475
|
-
created: dateType().default(() => new Date("2025-07-
|
|
48479
|
+
created: dateType().default(() => new Date("2025-07-22T07:58:35.173Z")).transform((v2) => v2.toISOString())
|
|
48476
48480
|
}).transform((v2) => {
|
|
48477
48481
|
return remap(v2, {
|
|
48478
48482
|
id: "_id",
|
|
@@ -48554,7 +48558,8 @@ var init_getallprompts = __esm(() => {
|
|
|
48554
48558
|
Jina: "jina",
|
|
48555
48559
|
Togetherai: "togetherai",
|
|
48556
48560
|
Elevenlabs: "elevenlabs",
|
|
48557
|
-
Litellm: "litellm"
|
|
48561
|
+
Litellm: "litellm",
|
|
48562
|
+
Openailike: "openailike"
|
|
48558
48563
|
};
|
|
48559
48564
|
GetAllPromptsRole = {
|
|
48560
48565
|
System: "system",
|
|
@@ -49477,8 +49482,8 @@ var init_getevals = __esm(() => {
|
|
|
49477
49482
|
Typescript$inboundSchema = objectType({
|
|
49478
49483
|
_id: stringType(),
|
|
49479
49484
|
description: stringType(),
|
|
49480
|
-
created: stringType().default("2025-07-
|
|
49481
|
-
updated: stringType().default("2025-07-
|
|
49485
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49486
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49482
49487
|
guardrail_config: unionType([
|
|
49483
49488
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
49484
49489
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -49495,8 +49500,8 @@ var init_getevals = __esm(() => {
|
|
|
49495
49500
|
Typescript$outboundSchema = objectType({
|
|
49496
49501
|
id: stringType(),
|
|
49497
49502
|
description: stringType(),
|
|
49498
|
-
created: stringType().default("2025-07-
|
|
49499
|
-
updated: stringType().default("2025-07-
|
|
49503
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49504
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49500
49505
|
guardrailConfig: unionType([
|
|
49501
49506
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
49502
49507
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -49589,8 +49594,8 @@ var init_getevals = __esm(() => {
|
|
|
49589
49594
|
Ragas$inboundSchema = objectType({
|
|
49590
49595
|
_id: stringType(),
|
|
49591
49596
|
description: stringType(),
|
|
49592
|
-
created: stringType().default("2025-07-
|
|
49593
|
-
updated: stringType().default("2025-07-
|
|
49597
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49598
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49594
49599
|
guardrail_config: unionType([
|
|
49595
49600
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
49596
49601
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -49609,8 +49614,8 @@ var init_getevals = __esm(() => {
|
|
|
49609
49614
|
Ragas$outboundSchema = objectType({
|
|
49610
49615
|
id: stringType(),
|
|
49611
49616
|
description: stringType(),
|
|
49612
|
-
created: stringType().default("2025-07-
|
|
49613
|
-
updated: stringType().default("2025-07-
|
|
49617
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49618
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
49614
49619
|
guardrailConfig: unionType([
|
|
49615
49620
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
49616
49621
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -50161,8 +50166,8 @@ var init_getevals = __esm(() => {
|
|
|
50161
50166
|
DataFunction$inboundSchema = objectType({
|
|
50162
50167
|
_id: stringType(),
|
|
50163
50168
|
description: stringType(),
|
|
50164
|
-
created: stringType().default("2025-07-
|
|
50165
|
-
updated: stringType().default("2025-07-
|
|
50169
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50170
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50166
50171
|
guardrail_config: unionType([
|
|
50167
50172
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
50168
50173
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -50205,8 +50210,8 @@ var init_getevals = __esm(() => {
|
|
|
50205
50210
|
DataFunction$outboundSchema = objectType({
|
|
50206
50211
|
id: stringType(),
|
|
50207
50212
|
description: stringType(),
|
|
50208
|
-
created: stringType().default("2025-07-
|
|
50209
|
-
updated: stringType().default("2025-07-
|
|
50213
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50214
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50210
50215
|
guardrailConfig: unionType([
|
|
50211
50216
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
50212
50217
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -50319,8 +50324,8 @@ var init_getevals = __esm(() => {
|
|
|
50319
50324
|
DataPython$inboundSchema = objectType({
|
|
50320
50325
|
_id: stringType(),
|
|
50321
50326
|
description: stringType(),
|
|
50322
|
-
created: stringType().default("2025-07-
|
|
50323
|
-
updated: stringType().default("2025-07-
|
|
50327
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50328
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50324
50329
|
guardrail_config: unionType([
|
|
50325
50330
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
50326
50331
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -50337,8 +50342,8 @@ var init_getevals = __esm(() => {
|
|
|
50337
50342
|
DataPython$outboundSchema = objectType({
|
|
50338
50343
|
id: stringType(),
|
|
50339
50344
|
description: stringType(),
|
|
50340
|
-
created: stringType().default("2025-07-
|
|
50341
|
-
updated: stringType().default("2025-07-
|
|
50345
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50346
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50342
50347
|
guardrailConfig: unionType([
|
|
50343
50348
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
50344
50349
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -50431,8 +50436,8 @@ var init_getevals = __esm(() => {
|
|
|
50431
50436
|
DataHTTP$inboundSchema = objectType({
|
|
50432
50437
|
_id: stringType(),
|
|
50433
50438
|
description: stringType(),
|
|
50434
|
-
created: stringType().default("2025-07-
|
|
50435
|
-
updated: stringType().default("2025-07-
|
|
50439
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50440
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50436
50441
|
guardrail_config: unionType([
|
|
50437
50442
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
50438
50443
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -50452,8 +50457,8 @@ var init_getevals = __esm(() => {
|
|
|
50452
50457
|
DataHTTP$outboundSchema = objectType({
|
|
50453
50458
|
id: stringType(),
|
|
50454
50459
|
description: stringType(),
|
|
50455
|
-
created: stringType().default("2025-07-
|
|
50456
|
-
updated: stringType().default("2025-07-
|
|
50460
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50461
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50457
50462
|
guardrailConfig: unionType([
|
|
50458
50463
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
50459
50464
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -50543,8 +50548,8 @@ var init_getevals = __esm(() => {
|
|
|
50543
50548
|
DataJSON$inboundSchema = objectType({
|
|
50544
50549
|
_id: stringType(),
|
|
50545
50550
|
description: stringType(),
|
|
50546
|
-
created: stringType().default("2025-07-
|
|
50547
|
-
updated: stringType().default("2025-07-
|
|
50551
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50552
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50548
50553
|
guardrail_config: unionType([
|
|
50549
50554
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
50550
50555
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -50561,8 +50566,8 @@ var init_getevals = __esm(() => {
|
|
|
50561
50566
|
DataJSON$outboundSchema = objectType({
|
|
50562
50567
|
id: stringType(),
|
|
50563
50568
|
description: stringType(),
|
|
50564
|
-
created: stringType().default("2025-07-
|
|
50565
|
-
updated: stringType().default("2025-07-
|
|
50569
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50570
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50566
50571
|
guardrailConfig: unionType([
|
|
50567
50572
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
50568
50573
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -50649,8 +50654,8 @@ var init_getevals = __esm(() => {
|
|
|
50649
50654
|
DataLLM$inboundSchema = objectType({
|
|
50650
50655
|
_id: stringType(),
|
|
50651
50656
|
description: stringType(),
|
|
50652
|
-
created: stringType().default("2025-07-
|
|
50653
|
-
updated: stringType().default("2025-07-
|
|
50657
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50658
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50654
50659
|
guardrail_config: unionType([
|
|
50655
50660
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
50656
50661
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -50668,8 +50673,8 @@ var init_getevals = __esm(() => {
|
|
|
50668
50673
|
DataLLM$outboundSchema = objectType({
|
|
50669
50674
|
id: stringType(),
|
|
50670
50675
|
description: stringType(),
|
|
50671
|
-
created: stringType().default("2025-07-
|
|
50672
|
-
updated: stringType().default("2025-07-
|
|
50676
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50677
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
50673
50678
|
guardrailConfig: unionType([
|
|
50674
50679
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
50675
50680
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -51050,7 +51055,8 @@ var init_getoneprompt = __esm(() => {
|
|
|
51050
51055
|
Jina: "jina",
|
|
51051
51056
|
Togetherai: "togetherai",
|
|
51052
51057
|
Elevenlabs: "elevenlabs",
|
|
51053
|
-
Litellm: "litellm"
|
|
51058
|
+
Litellm: "litellm",
|
|
51059
|
+
Openailike: "openailike"
|
|
51054
51060
|
};
|
|
51055
51061
|
GetOnePromptRole = {
|
|
51056
51062
|
System: "system",
|
|
@@ -51676,7 +51682,8 @@ var init_getpromptversion = __esm(() => {
|
|
|
51676
51682
|
Jina: "jina",
|
|
51677
51683
|
Togetherai: "togetherai",
|
|
51678
51684
|
Elevenlabs: "elevenlabs",
|
|
51679
|
-
Litellm: "litellm"
|
|
51685
|
+
Litellm: "litellm",
|
|
51686
|
+
Openailike: "openailike"
|
|
51680
51687
|
};
|
|
51681
51688
|
GetPromptVersionRole = {
|
|
51682
51689
|
System: "system",
|
|
@@ -53066,7 +53073,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53066
53073
|
tags: arrayType(stringType()).optional(),
|
|
53067
53074
|
metadata: recordType(anyType()).optional(),
|
|
53068
53075
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53069
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
53076
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2)),
|
|
53070
53077
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
53071
53078
|
}).transform((v2) => {
|
|
53072
53079
|
return remap(v2, {
|
|
@@ -53085,7 +53092,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53085
53092
|
tags: arrayType(stringType()).optional(),
|
|
53086
53093
|
metadata: recordType(anyType()).optional(),
|
|
53087
53094
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53088
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
53095
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString()),
|
|
53089
53096
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
53090
53097
|
}).transform((v2) => {
|
|
53091
53098
|
return remap(v2, {
|
|
@@ -53700,7 +53707,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
53700
53707
|
created_by_id: stringType().optional(),
|
|
53701
53708
|
updated_by_id: stringType().optional(),
|
|
53702
53709
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53703
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
53710
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
53704
53711
|
}).transform((v2) => {
|
|
53705
53712
|
return remap(v2, {
|
|
53706
53713
|
_id: "id",
|
|
@@ -53727,7 +53734,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
53727
53734
|
createdById: stringType().optional(),
|
|
53728
53735
|
updatedById: stringType().optional(),
|
|
53729
53736
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53730
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
53737
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
53731
53738
|
}).transform((v2) => {
|
|
53732
53739
|
return remap(v2, {
|
|
53733
53740
|
id: "_id",
|
|
@@ -53835,7 +53842,7 @@ var init_listdatasets = __esm(() => {
|
|
|
53835
53842
|
updated_by_id: stringType().optional(),
|
|
53836
53843
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
53837
53844
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53838
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
53845
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
53839
53846
|
}).transform((v2) => {
|
|
53840
53847
|
return remap(v2, {
|
|
53841
53848
|
_id: "id",
|
|
@@ -53855,7 +53862,7 @@ var init_listdatasets = __esm(() => {
|
|
|
53855
53862
|
updatedById: stringType().optional(),
|
|
53856
53863
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
53857
53864
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53858
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
53865
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
53859
53866
|
}).transform((v2) => {
|
|
53860
53867
|
return remap(v2, {
|
|
53861
53868
|
id: "_id",
|
|
@@ -53960,7 +53967,7 @@ var init_listdatasources = __esm(() => {
|
|
|
53960
53967
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
53961
53968
|
})(ListDatasourcesStatus$ ||= {});
|
|
53962
53969
|
ListDatasourcesData$inboundSchema = objectType({
|
|
53963
|
-
_id: stringType().default("
|
|
53970
|
+
_id: stringType().default("01K0RJ8MDFEHW0ZAA7ST91NYE2"),
|
|
53964
53971
|
display_name: stringType(),
|
|
53965
53972
|
description: stringType().optional(),
|
|
53966
53973
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -53983,7 +53990,7 @@ var init_listdatasources = __esm(() => {
|
|
|
53983
53990
|
});
|
|
53984
53991
|
});
|
|
53985
53992
|
ListDatasourcesData$outboundSchema = objectType({
|
|
53986
|
-
id: stringType().default("
|
|
53993
|
+
id: stringType().default("01K0RJ8MDFEHW0ZAA7ST91NYE2"),
|
|
53987
53994
|
displayName: stringType(),
|
|
53988
53995
|
description: stringType().optional(),
|
|
53989
53996
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -54369,7 +54376,8 @@ var init_listpromptversions = __esm(() => {
|
|
|
54369
54376
|
Jina: "jina",
|
|
54370
54377
|
Togetherai: "togetherai",
|
|
54371
54378
|
Elevenlabs: "elevenlabs",
|
|
54372
|
-
Litellm: "litellm"
|
|
54379
|
+
Litellm: "litellm",
|
|
54380
|
+
Openailike: "openailike"
|
|
54373
54381
|
};
|
|
54374
54382
|
ListPromptVersionsRole = {
|
|
54375
54383
|
System: "system",
|
|
@@ -55492,7 +55500,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55492
55500
|
tags: arrayType(stringType()).optional(),
|
|
55493
55501
|
metadata: recordType(anyType()).optional(),
|
|
55494
55502
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55495
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
55503
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
55496
55504
|
}).transform((v2) => {
|
|
55497
55505
|
return remap(v2, {
|
|
55498
55506
|
_id: "id",
|
|
@@ -55510,7 +55518,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55510
55518
|
tags: arrayType(stringType()).optional(),
|
|
55511
55519
|
metadata: recordType(anyType()).optional(),
|
|
55512
55520
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55513
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
55521
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
55514
55522
|
}).transform((v2) => {
|
|
55515
55523
|
return remap(v2, {
|
|
55516
55524
|
id: "_id",
|
|
@@ -56087,7 +56095,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56087
56095
|
created_by_id: stringType().optional(),
|
|
56088
56096
|
updated_by_id: stringType().optional(),
|
|
56089
56097
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56090
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
56098
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
56091
56099
|
}).transform((v2) => {
|
|
56092
56100
|
return remap(v2, {
|
|
56093
56101
|
_id: "id",
|
|
@@ -56114,7 +56122,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56114
56122
|
createdById: stringType().optional(),
|
|
56115
56123
|
updatedById: stringType().optional(),
|
|
56116
56124
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56117
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
56125
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
56118
56126
|
}).transform((v2) => {
|
|
56119
56127
|
return remap(v2, {
|
|
56120
56128
|
id: "_id",
|
|
@@ -56185,7 +56193,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56185
56193
|
updated_by_id: stringType().optional(),
|
|
56186
56194
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
56187
56195
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56188
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
56196
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
56189
56197
|
}).transform((v2) => {
|
|
56190
56198
|
return remap(v2, {
|
|
56191
56199
|
_id: "id",
|
|
@@ -56205,7 +56213,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56205
56213
|
updatedById: stringType().optional(),
|
|
56206
56214
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
56207
56215
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56208
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
56216
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
56209
56217
|
}).transform((v2) => {
|
|
56210
56218
|
return remap(v2, {
|
|
56211
56219
|
id: "_id",
|
|
@@ -56263,7 +56271,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56263
56271
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
56264
56272
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
56265
56273
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
56266
|
-
_id: stringType().default("
|
|
56274
|
+
_id: stringType().default("01K0RJ8MDG69N2HFQCT53HBYT5"),
|
|
56267
56275
|
display_name: stringType(),
|
|
56268
56276
|
description: stringType().optional(),
|
|
56269
56277
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -56286,7 +56294,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56286
56294
|
});
|
|
56287
56295
|
});
|
|
56288
56296
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
56289
|
-
id: stringType().default("
|
|
56297
|
+
id: stringType().default("01K0RJ8MDG69N2HFQCT53HBYT5"),
|
|
56290
56298
|
displayName: stringType(),
|
|
56291
56299
|
description: stringType().optional(),
|
|
56292
56300
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -57167,7 +57175,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57167
57175
|
tags: arrayType(stringType()).optional(),
|
|
57168
57176
|
metadata: recordType(anyType()).optional(),
|
|
57169
57177
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57170
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
57178
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
57171
57179
|
}).transform((v2) => {
|
|
57172
57180
|
return remap(v2, {
|
|
57173
57181
|
_id: "id",
|
|
@@ -57185,7 +57193,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57185
57193
|
tags: arrayType(stringType()).optional(),
|
|
57186
57194
|
metadata: recordType(anyType()).optional(),
|
|
57187
57195
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57188
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
57196
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
57189
57197
|
}).transform((v2) => {
|
|
57190
57198
|
return remap(v2, {
|
|
57191
57199
|
id: "_id",
|
|
@@ -58319,7 +58327,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58319
58327
|
created_by_id: stringType().optional(),
|
|
58320
58328
|
updated_by_id: stringType().optional(),
|
|
58321
58329
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58322
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
58330
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
58323
58331
|
}).transform((v2) => {
|
|
58324
58332
|
return remap(v2, {
|
|
58325
58333
|
_id: "id",
|
|
@@ -58346,7 +58354,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58346
58354
|
createdById: stringType().optional(),
|
|
58347
58355
|
updatedById: stringType().optional(),
|
|
58348
58356
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58349
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
58357
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
58350
58358
|
}).transform((v2) => {
|
|
58351
58359
|
return remap(v2, {
|
|
58352
58360
|
id: "_id",
|
|
@@ -58447,7 +58455,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58447
58455
|
parent_id: stringType().optional(),
|
|
58448
58456
|
version: stringType().optional(),
|
|
58449
58457
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58450
|
-
updated: stringType().datetime({ offset: true }).default("2025-07-
|
|
58458
|
+
updated: stringType().datetime({ offset: true }).default("2025-07-22T07:58:31.884Z").transform((v2) => new Date(v2))
|
|
58451
58459
|
}).transform((v2) => {
|
|
58452
58460
|
return remap(v2, {
|
|
58453
58461
|
_id: "id",
|
|
@@ -58470,7 +58478,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58470
58478
|
parentId: stringType().optional(),
|
|
58471
58479
|
version: stringType().optional(),
|
|
58472
58480
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58473
|
-
updated: dateType().default(() => new Date("2025-07-
|
|
58481
|
+
updated: dateType().default(() => new Date("2025-07-22T07:58:31.884Z")).transform((v2) => v2.toISOString())
|
|
58474
58482
|
}).transform((v2) => {
|
|
58475
58483
|
return remap(v2, {
|
|
58476
58484
|
id: "_id",
|
|
@@ -58551,7 +58559,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58551
58559
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
58552
58560
|
})(UpdateDatasourceStatus$ ||= {});
|
|
58553
58561
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
58554
|
-
_id: stringType().default("
|
|
58562
|
+
_id: stringType().default("01K0RJ8MDHKSQ1YYZEBRV6A4C5"),
|
|
58555
58563
|
display_name: stringType(),
|
|
58556
58564
|
description: stringType().optional(),
|
|
58557
58565
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -58574,7 +58582,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58574
58582
|
});
|
|
58575
58583
|
});
|
|
58576
58584
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
58577
|
-
id: stringType().default("
|
|
58585
|
+
id: stringType().default("01K0RJ8MDHKSQ1YYZEBRV6A4C5"),
|
|
58578
58586
|
displayName: stringType(),
|
|
58579
58587
|
description: stringType().optional(),
|
|
58580
58588
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59280,8 +59288,8 @@ var init_updateeval = __esm(() => {
|
|
|
59280
59288
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
59281
59289
|
_id: stringType(),
|
|
59282
59290
|
description: stringType(),
|
|
59283
|
-
created: stringType().default("2025-07-
|
|
59284
|
-
updated: stringType().default("2025-07-
|
|
59291
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59292
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59285
59293
|
guardrail_config: unionType([
|
|
59286
59294
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59287
59295
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59298,8 +59306,8 @@ var init_updateeval = __esm(() => {
|
|
|
59298
59306
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
59299
59307
|
id: stringType(),
|
|
59300
59308
|
description: stringType(),
|
|
59301
|
-
created: stringType().default("2025-07-
|
|
59302
|
-
updated: stringType().default("2025-07-
|
|
59309
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59310
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59303
59311
|
guardrailConfig: unionType([
|
|
59304
59312
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59305
59313
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59392,8 +59400,8 @@ var init_updateeval = __esm(() => {
|
|
|
59392
59400
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
59393
59401
|
_id: stringType(),
|
|
59394
59402
|
description: stringType(),
|
|
59395
|
-
created: stringType().default("2025-07-
|
|
59396
|
-
updated: stringType().default("2025-07-
|
|
59403
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59404
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59397
59405
|
guardrail_config: unionType([
|
|
59398
59406
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
59399
59407
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -59413,8 +59421,8 @@ var init_updateeval = __esm(() => {
|
|
|
59413
59421
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
59414
59422
|
id: stringType(),
|
|
59415
59423
|
description: stringType(),
|
|
59416
|
-
created: stringType().default("2025-07-
|
|
59417
|
-
updated: stringType().default("2025-07-
|
|
59424
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59425
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59418
59426
|
guardrailConfig: unionType([
|
|
59419
59427
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
59420
59428
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -59504,8 +59512,8 @@ var init_updateeval = __esm(() => {
|
|
|
59504
59512
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
59505
59513
|
_id: stringType(),
|
|
59506
59514
|
description: stringType(),
|
|
59507
|
-
created: stringType().default("2025-07-
|
|
59508
|
-
updated: stringType().default("2025-07-
|
|
59515
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59516
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59509
59517
|
guardrail_config: unionType([
|
|
59510
59518
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
59511
59519
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -59522,8 +59530,8 @@ var init_updateeval = __esm(() => {
|
|
|
59522
59530
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
59523
59531
|
id: stringType(),
|
|
59524
59532
|
description: stringType(),
|
|
59525
|
-
created: stringType().default("2025-07-
|
|
59526
|
-
updated: stringType().default("2025-07-
|
|
59533
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59534
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59527
59535
|
guardrailConfig: unionType([
|
|
59528
59536
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
59529
59537
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -59610,8 +59618,8 @@ var init_updateeval = __esm(() => {
|
|
|
59610
59618
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
59611
59619
|
_id: stringType(),
|
|
59612
59620
|
description: stringType(),
|
|
59613
|
-
created: stringType().default("2025-07-
|
|
59614
|
-
updated: stringType().default("2025-07-
|
|
59621
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59622
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59615
59623
|
guardrail_config: unionType([
|
|
59616
59624
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
59617
59625
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -59629,8 +59637,8 @@ var init_updateeval = __esm(() => {
|
|
|
59629
59637
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
59630
59638
|
id: stringType(),
|
|
59631
59639
|
description: stringType(),
|
|
59632
|
-
created: stringType().default("2025-07-
|
|
59633
|
-
updated: stringType().default("2025-07-
|
|
59640
|
+
created: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59641
|
+
updated: stringType().default("2025-07-22T07:58:34.267Z"),
|
|
59634
59642
|
guardrailConfig: unionType([
|
|
59635
59643
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
59636
59644
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -59968,7 +59976,8 @@ var init_updateprompt = __esm(() => {
|
|
|
59968
59976
|
Jina: "jina",
|
|
59969
59977
|
Togetherai: "togetherai",
|
|
59970
59978
|
Elevenlabs: "elevenlabs",
|
|
59971
|
-
Litellm: "litellm"
|
|
59979
|
+
Litellm: "litellm",
|
|
59980
|
+
Openailike: "openailike"
|
|
59972
59981
|
};
|
|
59973
59982
|
UpdatePromptRole = {
|
|
59974
59983
|
System: "system",
|
|
@@ -60082,7 +60091,8 @@ var init_updateprompt = __esm(() => {
|
|
|
60082
60091
|
Jina: "jina",
|
|
60083
60092
|
Togetherai: "togetherai",
|
|
60084
60093
|
Elevenlabs: "elevenlabs",
|
|
60085
|
-
Litellm: "litellm"
|
|
60094
|
+
Litellm: "litellm",
|
|
60095
|
+
Openailike: "openailike"
|
|
60086
60096
|
};
|
|
60087
60097
|
UpdatePromptPromptsRole = {
|
|
60088
60098
|
System: "system",
|
|
@@ -75799,7 +75809,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
75799
75809
|
function createMCPServer(deps) {
|
|
75800
75810
|
const server = new McpServer({
|
|
75801
75811
|
name: "Orq",
|
|
75802
|
-
version: "3.9.
|
|
75812
|
+
version: "3.9.16"
|
|
75803
75813
|
});
|
|
75804
75814
|
const client = new OrqCore({
|
|
75805
75815
|
apiKey: deps.apiKey,
|
|
@@ -77207,7 +77217,7 @@ var routes = rn({
|
|
|
77207
77217
|
var app = Ve(routes, {
|
|
77208
77218
|
name: "mcp",
|
|
77209
77219
|
versionInfo: {
|
|
77210
|
-
currentVersion: "3.9.
|
|
77220
|
+
currentVersion: "3.9.16"
|
|
77211
77221
|
}
|
|
77212
77222
|
});
|
|
77213
77223
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77215,5 +77225,5 @@ export {
|
|
|
77215
77225
|
app
|
|
77216
77226
|
};
|
|
77217
77227
|
|
|
77218
|
-
//# debugId=
|
|
77228
|
+
//# debugId=770E7700822E8F2264756E2164756E21
|
|
77219
77229
|
//# sourceMappingURL=mcp-server.js.map
|