@orq-ai/node 3.8.7 → 3.8.8

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.
Files changed (95) hide show
  1. package/bin/mcp-server.js +113 -103
  2. package/bin/mcp-server.js.map +35 -35
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +2 -2
  5. package/lib/config.js +2 -2
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/operations/createcontact.js +2 -2
  9. package/models/operations/createdataset.js +2 -2
  10. package/models/operations/createdatasetitem.js +2 -2
  11. package/models/operations/createdatasource.js +2 -2
  12. package/models/operations/createeval.js +16 -16
  13. package/models/operations/createprompt.d.ts +6 -0
  14. package/models/operations/createprompt.d.ts.map +1 -1
  15. package/models/operations/createprompt.js +2 -0
  16. package/models/operations/createprompt.js.map +1 -1
  17. package/models/operations/deploymentgetconfig.d.ts +3 -0
  18. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  19. package/models/operations/deploymentgetconfig.js +1 -0
  20. package/models/operations/deploymentgetconfig.js.map +1 -1
  21. package/models/operations/deployments.d.ts +3 -0
  22. package/models/operations/deployments.d.ts.map +1 -1
  23. package/models/operations/deployments.js +1 -0
  24. package/models/operations/deployments.js.map +1 -1
  25. package/models/operations/fileget.js +2 -2
  26. package/models/operations/filelist.js +2 -2
  27. package/models/operations/fileupload.js +2 -2
  28. package/models/operations/getallprompts.d.ts +3 -0
  29. package/models/operations/getallprompts.d.ts.map +1 -1
  30. package/models/operations/getallprompts.js +1 -0
  31. package/models/operations/getallprompts.js.map +1 -1
  32. package/models/operations/getevals.js +28 -28
  33. package/models/operations/getoneprompt.d.ts +3 -0
  34. package/models/operations/getoneprompt.d.ts.map +1 -1
  35. package/models/operations/getoneprompt.js +1 -0
  36. package/models/operations/getoneprompt.js.map +1 -1
  37. package/models/operations/getpromptversion.d.ts +3 -0
  38. package/models/operations/getpromptversion.d.ts.map +1 -1
  39. package/models/operations/getpromptversion.js +1 -0
  40. package/models/operations/getpromptversion.js.map +1 -1
  41. package/models/operations/listcontacts.js +2 -2
  42. package/models/operations/listdatasetdatapoints.js +2 -2
  43. package/models/operations/listdatasets.js +2 -2
  44. package/models/operations/listdatasources.js +2 -2
  45. package/models/operations/listpromptversions.d.ts +3 -0
  46. package/models/operations/listpromptversions.d.ts.map +1 -1
  47. package/models/operations/listpromptversions.js +1 -0
  48. package/models/operations/listpromptversions.js.map +1 -1
  49. package/models/operations/retrievecontact.js +2 -2
  50. package/models/operations/retrievedatapoint.js +2 -2
  51. package/models/operations/retrievedataset.js +2 -2
  52. package/models/operations/retrievedatasource.js +2 -2
  53. package/models/operations/updatecontact.js +2 -2
  54. package/models/operations/updatedatapoint.js +2 -2
  55. package/models/operations/updatedataset.js +2 -2
  56. package/models/operations/updatedatasource.js +2 -2
  57. package/models/operations/updateeval.js +16 -16
  58. package/models/operations/updateprompt.d.ts +6 -0
  59. package/models/operations/updateprompt.d.ts.map +1 -1
  60. package/models/operations/updateprompt.js +2 -0
  61. package/models/operations/updateprompt.js.map +1 -1
  62. package/package.json +1 -1
  63. package/src/lib/config.ts +2 -2
  64. package/src/mcp-server/mcp-server.ts +1 -1
  65. package/src/mcp-server/server.ts +1 -1
  66. package/src/models/operations/createcontact.ts +2 -2
  67. package/src/models/operations/createdataset.ts +2 -2
  68. package/src/models/operations/createdatasetitem.ts +2 -2
  69. package/src/models/operations/createdatasource.ts +2 -2
  70. package/src/models/operations/createeval.ts +16 -16
  71. package/src/models/operations/createprompt.ts +2 -0
  72. package/src/models/operations/deploymentgetconfig.ts +1 -0
  73. package/src/models/operations/deployments.ts +1 -0
  74. package/src/models/operations/fileget.ts +2 -2
  75. package/src/models/operations/filelist.ts +2 -2
  76. package/src/models/operations/fileupload.ts +2 -2
  77. package/src/models/operations/getallprompts.ts +1 -0
  78. package/src/models/operations/getevals.ts +28 -28
  79. package/src/models/operations/getoneprompt.ts +1 -0
  80. package/src/models/operations/getpromptversion.ts +1 -0
  81. package/src/models/operations/listcontacts.ts +2 -2
  82. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  83. package/src/models/operations/listdatasets.ts +2 -2
  84. package/src/models/operations/listdatasources.ts +2 -2
  85. package/src/models/operations/listpromptversions.ts +1 -0
  86. package/src/models/operations/retrievecontact.ts +2 -2
  87. package/src/models/operations/retrievedatapoint.ts +2 -2
  88. package/src/models/operations/retrievedataset.ts +2 -2
  89. package/src/models/operations/retrievedatasource.ts +2 -2
  90. package/src/models/operations/updatecontact.ts +2 -2
  91. package/src/models/operations/updatedatapoint.ts +2 -2
  92. package/src/models/operations/updatedataset.ts +2 -2
  93. package/src/models/operations/updatedatasource.ts +2 -2
  94. package/src/models/operations/updateeval.ts +16 -16
  95. package/src/models/operations/updateprompt.ts +2 -0
package/bin/mcp-server.js CHANGED
@@ -34275,9 +34275,9 @@ var init_config = __esm(() => {
34275
34275
  SDK_METADATA = {
34276
34276
  language: "typescript",
34277
34277
  openapiDocVersion: "2.0",
34278
- sdkVersion: "3.8.7",
34278
+ sdkVersion: "3.8.8",
34279
34279
  genVersion: "2.634.2",
34280
- userAgent: "speakeasy-sdk/typescript 3.8.7 2.634.2 2.0 @orq-ai/node"
34280
+ userAgent: "speakeasy-sdk/typescript 3.8.8 2.634.2 2.0 @orq-ai/node"
34281
34281
  };
34282
34282
  });
34283
34283
 
@@ -36149,7 +36149,7 @@ var init_createcontact = __esm(() => {
36149
36149
  tags: arrayType(stringType()).optional(),
36150
36150
  metadata: recordType(anyType()).optional(),
36151
36151
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36152
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
36152
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
36153
36153
  }).transform((v2) => {
36154
36154
  return remap(v2, {
36155
36155
  _id: "id",
@@ -36169,7 +36169,7 @@ var init_createcontact = __esm(() => {
36169
36169
  tags: arrayType(stringType()).optional(),
36170
36170
  metadata: recordType(anyType()).optional(),
36171
36171
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36172
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
36172
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
36173
36173
  }).transform((v2) => {
36174
36174
  return remap(v2, {
36175
36175
  id: "_id",
@@ -36241,7 +36241,7 @@ var init_createdataset = __esm(() => {
36241
36241
  updated_by_id: stringType().optional(),
36242
36242
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36243
36243
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36244
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
36244
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
36245
36245
  }).transform((v2) => {
36246
36246
  return remap(v2, {
36247
36247
  _id: "id",
@@ -36261,7 +36261,7 @@ var init_createdataset = __esm(() => {
36261
36261
  updatedById: stringType().optional(),
36262
36262
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36263
36263
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36264
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
36264
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
36265
36265
  }).transform((v2) => {
36266
36266
  return remap(v2, {
36267
36267
  id: "_id",
@@ -37393,7 +37393,7 @@ var init_createdatasetitem = __esm(() => {
37393
37393
  created_by_id: stringType().optional(),
37394
37394
  updated_by_id: stringType().optional(),
37395
37395
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37396
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
37396
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
37397
37397
  }).transform((v2) => {
37398
37398
  return remap(v2, {
37399
37399
  _id: "id",
@@ -37420,7 +37420,7 @@ var init_createdatasetitem = __esm(() => {
37420
37420
  createdById: stringType().optional(),
37421
37421
  updatedById: stringType().optional(),
37422
37422
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37423
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
37423
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
37424
37424
  }).transform((v2) => {
37425
37425
  return remap(v2, {
37426
37426
  id: "_id",
@@ -37642,7 +37642,7 @@ var init_createdatasource = __esm(() => {
37642
37642
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37643
37643
  })(CreateDatasourceStatus$ ||= {});
37644
37644
  CreateDatasourceResponseBody$inboundSchema = objectType({
37645
- _id: stringType().default("01JYGX27H0ZY6CVDM6QNH6KY5V"),
37645
+ _id: stringType().default("01JYH76KR42Q33670F129F5Y4K"),
37646
37646
  display_name: stringType(),
37647
37647
  description: stringType().optional(),
37648
37648
  status: CreateDatasourceStatus$inboundSchema,
@@ -37665,7 +37665,7 @@ var init_createdatasource = __esm(() => {
37665
37665
  });
37666
37666
  });
37667
37667
  CreateDatasourceResponseBody$outboundSchema = objectType({
37668
- id: stringType().default("01JYGX27H0ZY6CVDM6QNH6KY5V"),
37668
+ id: stringType().default("01JYH76KR42Q33670F129F5Y4K"),
37669
37669
  displayName: stringType(),
37670
37670
  description: stringType().optional(),
37671
37671
  status: CreateDatasourceStatus$outboundSchema,
@@ -38341,8 +38341,8 @@ var init_createeval = __esm(() => {
38341
38341
  ResponseBodyPython$inboundSchema = objectType({
38342
38342
  _id: stringType(),
38343
38343
  description: stringType(),
38344
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38345
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38344
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38345
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38346
38346
  guardrail_config: unionType([
38347
38347
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
38348
38348
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -38359,8 +38359,8 @@ var init_createeval = __esm(() => {
38359
38359
  ResponseBodyPython$outboundSchema = objectType({
38360
38360
  id: stringType(),
38361
38361
  description: stringType(),
38362
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38363
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38362
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38363
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38364
38364
  guardrailConfig: unionType([
38365
38365
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
38366
38366
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -38453,8 +38453,8 @@ var init_createeval = __esm(() => {
38453
38453
  ResponseBodyHTTP$inboundSchema = objectType({
38454
38454
  _id: stringType(),
38455
38455
  description: stringType(),
38456
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38457
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38456
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38457
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38458
38458
  guardrail_config: unionType([
38459
38459
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
38460
38460
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -38474,8 +38474,8 @@ var init_createeval = __esm(() => {
38474
38474
  ResponseBodyHTTP$outboundSchema = objectType({
38475
38475
  id: stringType(),
38476
38476
  description: stringType(),
38477
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38478
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38477
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38478
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38479
38479
  guardrailConfig: unionType([
38480
38480
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
38481
38481
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -38565,8 +38565,8 @@ var init_createeval = __esm(() => {
38565
38565
  ResponseBodyJSON$inboundSchema = objectType({
38566
38566
  _id: stringType(),
38567
38567
  description: stringType(),
38568
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38569
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38568
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38569
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38570
38570
  guardrail_config: unionType([
38571
38571
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
38572
38572
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -38583,8 +38583,8 @@ var init_createeval = __esm(() => {
38583
38583
  ResponseBodyJSON$outboundSchema = objectType({
38584
38584
  id: stringType(),
38585
38585
  description: stringType(),
38586
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38587
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38586
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38587
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38588
38588
  guardrailConfig: unionType([
38589
38589
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
38590
38590
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -38671,8 +38671,8 @@ var init_createeval = __esm(() => {
38671
38671
  ResponseBodyLLM$inboundSchema = objectType({
38672
38672
  _id: stringType(),
38673
38673
  description: stringType(),
38674
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38675
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38674
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38675
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38676
38676
  guardrail_config: unionType([
38677
38677
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
38678
38678
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -38690,8 +38690,8 @@ var init_createeval = __esm(() => {
38690
38690
  ResponseBodyLLM$outboundSchema = objectType({
38691
38691
  id: stringType(),
38692
38692
  description: stringType(),
38693
- created: stringType().default("2025-06-24T12:01:59.969Z"),
38694
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
38693
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
38694
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
38695
38695
  guardrailConfig: unionType([
38696
38696
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
38697
38697
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -39063,6 +39063,7 @@ var init_createprompt = __esm(() => {
39063
39063
  Base64: "base64"
39064
39064
  };
39065
39065
  ReasoningEffort = {
39066
+ Disable: "disable",
39066
39067
  Low: "low",
39067
39068
  Medium: "medium",
39068
39069
  High: "high"
@@ -39176,6 +39177,7 @@ var init_createprompt = __esm(() => {
39176
39177
  Base64: "base64"
39177
39178
  };
39178
39179
  CreatePromptReasoningEffort = {
39180
+ Disable: "disable",
39179
39181
  Low: "low",
39180
39182
  Medium: "medium",
39181
39183
  High: "high"
@@ -41727,6 +41729,7 @@ var init_deploymentgetconfig = __esm(() => {
41727
41729
  Base64: "base64"
41728
41730
  };
41729
41731
  DeploymentGetConfigReasoningEffort = {
41732
+ Disable: "disable",
41730
41733
  Low: "low",
41731
41734
  Medium: "medium",
41732
41735
  High: "high"
@@ -44226,6 +44229,7 @@ var init_deployments = __esm(() => {
44226
44229
  Base64: "base64"
44227
44230
  };
44228
44231
  DeploymentsReasoningEffort = {
44232
+ Disable: "disable",
44229
44233
  Low: "low",
44230
44234
  Medium: "medium",
44231
44235
  High: "high"
@@ -48387,7 +48391,7 @@ var init_fileget = __esm(() => {
48387
48391
  bytes: numberType(),
48388
48392
  file_name: stringType(),
48389
48393
  workspace_id: stringType(),
48390
- created: stringType().datetime({ offset: true }).default("2025-06-24T12:02:01.052Z").transform((v2) => new Date(v2))
48394
+ created: stringType().datetime({ offset: true }).default("2025-06-24T14:59:10.803Z").transform((v2) => new Date(v2))
48391
48395
  }).transform((v2) => {
48392
48396
  return remap(v2, {
48393
48397
  _id: "id",
@@ -48403,7 +48407,7 @@ var init_fileget = __esm(() => {
48403
48407
  bytes: numberType(),
48404
48408
  fileName: stringType(),
48405
48409
  workspaceId: stringType(),
48406
- created: dateType().default(() => new Date("2025-06-24T12:02:01.052Z")).transform((v2) => v2.toISOString())
48410
+ created: dateType().default(() => new Date("2025-06-24T14:59:10.803Z")).transform((v2) => v2.toISOString())
48407
48411
  }).transform((v2) => {
48408
48412
  return remap(v2, {
48409
48413
  id: "_id",
@@ -48474,7 +48478,7 @@ var init_filelist = __esm(() => {
48474
48478
  bytes: numberType(),
48475
48479
  file_name: stringType(),
48476
48480
  workspace_id: stringType(),
48477
- created: stringType().datetime({ offset: true }).default("2025-06-24T12:02:01.052Z").transform((v2) => new Date(v2))
48481
+ created: stringType().datetime({ offset: true }).default("2025-06-24T14:59:10.803Z").transform((v2) => new Date(v2))
48478
48482
  }).transform((v2) => {
48479
48483
  return remap(v2, {
48480
48484
  _id: "id",
@@ -48490,7 +48494,7 @@ var init_filelist = __esm(() => {
48490
48494
  bytes: numberType(),
48491
48495
  fileName: stringType(),
48492
48496
  workspaceId: stringType(),
48493
- created: dateType().default(() => new Date("2025-06-24T12:02:01.052Z")).transform((v2) => v2.toISOString())
48497
+ created: dateType().default(() => new Date("2025-06-24T14:59:10.803Z")).transform((v2) => v2.toISOString())
48494
48498
  }).transform((v2) => {
48495
48499
  return remap(v2, {
48496
48500
  id: "_id",
@@ -48622,7 +48626,7 @@ var init_fileupload = __esm(() => {
48622
48626
  bytes: numberType(),
48623
48627
  file_name: stringType(),
48624
48628
  workspace_id: stringType(),
48625
- created: stringType().datetime({ offset: true }).default("2025-06-24T12:02:01.052Z").transform((v2) => new Date(v2))
48629
+ created: stringType().datetime({ offset: true }).default("2025-06-24T14:59:10.803Z").transform((v2) => new Date(v2))
48626
48630
  }).transform((v2) => {
48627
48631
  return remap(v2, {
48628
48632
  _id: "id",
@@ -48638,7 +48642,7 @@ var init_fileupload = __esm(() => {
48638
48642
  bytes: numberType(),
48639
48643
  fileName: stringType(),
48640
48644
  workspaceId: stringType(),
48641
- created: dateType().default(() => new Date("2025-06-24T12:02:01.052Z")).transform((v2) => v2.toISOString())
48645
+ created: dateType().default(() => new Date("2025-06-24T14:59:10.803Z")).transform((v2) => v2.toISOString())
48642
48646
  }).transform((v2) => {
48643
48647
  return remap(v2, {
48644
48648
  id: "_id",
@@ -48696,6 +48700,7 @@ var init_getallprompts = __esm(() => {
48696
48700
  Base64: "base64"
48697
48701
  };
48698
48702
  GetAllPromptsReasoningEffort = {
48703
+ Disable: "disable",
48699
48704
  Low: "low",
48700
48705
  Medium: "medium",
48701
48706
  High: "high"
@@ -49641,8 +49646,8 @@ var init_getevals = __esm(() => {
49641
49646
  Typescript$inboundSchema = objectType({
49642
49647
  _id: stringType(),
49643
49648
  description: stringType(),
49644
- created: stringType().default("2025-06-24T12:01:59.969Z"),
49645
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
49649
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
49650
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
49646
49651
  guardrail_config: unionType([
49647
49652
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
49648
49653
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -49659,8 +49664,8 @@ var init_getevals = __esm(() => {
49659
49664
  Typescript$outboundSchema = objectType({
49660
49665
  id: stringType(),
49661
49666
  description: stringType(),
49662
- created: stringType().default("2025-06-24T12:01:59.969Z"),
49663
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
49667
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
49668
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
49664
49669
  guardrailConfig: unionType([
49665
49670
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
49666
49671
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -49753,8 +49758,8 @@ var init_getevals = __esm(() => {
49753
49758
  Ragas$inboundSchema = objectType({
49754
49759
  _id: stringType(),
49755
49760
  description: stringType(),
49756
- created: stringType().default("2025-06-24T12:01:59.969Z"),
49757
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
49761
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
49762
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
49758
49763
  guardrail_config: unionType([
49759
49764
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
49760
49765
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -49773,8 +49778,8 @@ var init_getevals = __esm(() => {
49773
49778
  Ragas$outboundSchema = objectType({
49774
49779
  id: stringType(),
49775
49780
  description: stringType(),
49776
- created: stringType().default("2025-06-24T12:01:59.969Z"),
49777
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
49781
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
49782
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
49778
49783
  guardrailConfig: unionType([
49779
49784
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
49780
49785
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -50325,8 +50330,8 @@ var init_getevals = __esm(() => {
50325
50330
  DataFunction$inboundSchema = objectType({
50326
50331
  _id: stringType(),
50327
50332
  description: stringType(),
50328
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50329
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50333
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50334
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50330
50335
  guardrail_config: unionType([
50331
50336
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
50332
50337
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -50369,8 +50374,8 @@ var init_getevals = __esm(() => {
50369
50374
  DataFunction$outboundSchema = objectType({
50370
50375
  id: stringType(),
50371
50376
  description: stringType(),
50372
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50373
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50377
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50378
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50374
50379
  guardrailConfig: unionType([
50375
50380
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
50376
50381
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -50483,8 +50488,8 @@ var init_getevals = __esm(() => {
50483
50488
  DataPython$inboundSchema = objectType({
50484
50489
  _id: stringType(),
50485
50490
  description: stringType(),
50486
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50487
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50491
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50492
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50488
50493
  guardrail_config: unionType([
50489
50494
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
50490
50495
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -50501,8 +50506,8 @@ var init_getevals = __esm(() => {
50501
50506
  DataPython$outboundSchema = objectType({
50502
50507
  id: stringType(),
50503
50508
  description: stringType(),
50504
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50505
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50509
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50510
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50506
50511
  guardrailConfig: unionType([
50507
50512
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
50508
50513
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -50595,8 +50600,8 @@ var init_getevals = __esm(() => {
50595
50600
  DataHTTP$inboundSchema = objectType({
50596
50601
  _id: stringType(),
50597
50602
  description: stringType(),
50598
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50599
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50603
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50604
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50600
50605
  guardrail_config: unionType([
50601
50606
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
50602
50607
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -50616,8 +50621,8 @@ var init_getevals = __esm(() => {
50616
50621
  DataHTTP$outboundSchema = objectType({
50617
50622
  id: stringType(),
50618
50623
  description: stringType(),
50619
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50620
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50624
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50625
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50621
50626
  guardrailConfig: unionType([
50622
50627
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
50623
50628
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -50707,8 +50712,8 @@ var init_getevals = __esm(() => {
50707
50712
  DataJSON$inboundSchema = objectType({
50708
50713
  _id: stringType(),
50709
50714
  description: stringType(),
50710
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50711
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50715
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50716
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50712
50717
  guardrail_config: unionType([
50713
50718
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
50714
50719
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -50725,8 +50730,8 @@ var init_getevals = __esm(() => {
50725
50730
  DataJSON$outboundSchema = objectType({
50726
50731
  id: stringType(),
50727
50732
  description: stringType(),
50728
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50729
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50733
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50734
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50730
50735
  guardrailConfig: unionType([
50731
50736
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
50732
50737
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -50813,8 +50818,8 @@ var init_getevals = __esm(() => {
50813
50818
  DataLLM$inboundSchema = objectType({
50814
50819
  _id: stringType(),
50815
50820
  description: stringType(),
50816
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50817
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50821
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50822
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50818
50823
  guardrail_config: unionType([
50819
50824
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
50820
50825
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -50832,8 +50837,8 @@ var init_getevals = __esm(() => {
50832
50837
  DataLLM$outboundSchema = objectType({
50833
50838
  id: stringType(),
50834
50839
  description: stringType(),
50835
- created: stringType().default("2025-06-24T12:01:59.969Z"),
50836
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
50840
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
50841
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
50837
50842
  guardrailConfig: unionType([
50838
50843
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
50839
50844
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -51190,6 +51195,7 @@ var init_getoneprompt = __esm(() => {
51190
51195
  Base64: "base64"
51191
51196
  };
51192
51197
  GetOnePromptReasoningEffort = {
51198
+ Disable: "disable",
51193
51199
  Low: "low",
51194
51200
  Medium: "medium",
51195
51201
  High: "high"
@@ -51815,6 +51821,7 @@ var init_getpromptversion = __esm(() => {
51815
51821
  Base64: "base64"
51816
51822
  };
51817
51823
  GetPromptVersionReasoningEffort = {
51824
+ Disable: "disable",
51818
51825
  Low: "low",
51819
51826
  Medium: "medium",
51820
51827
  High: "high"
@@ -53228,7 +53235,7 @@ var init_listcontacts = __esm(() => {
53228
53235
  tags: arrayType(stringType()).optional(),
53229
53236
  metadata: recordType(anyType()).optional(),
53230
53237
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53231
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2)),
53238
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2)),
53232
53239
  metrics: lazyType(() => Metrics$inboundSchema)
53233
53240
  }).transform((v2) => {
53234
53241
  return remap(v2, {
@@ -53247,7 +53254,7 @@ var init_listcontacts = __esm(() => {
53247
53254
  tags: arrayType(stringType()).optional(),
53248
53255
  metadata: recordType(anyType()).optional(),
53249
53256
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53250
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString()),
53257
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString()),
53251
53258
  metrics: lazyType(() => Metrics$outboundSchema)
53252
53259
  }).transform((v2) => {
53253
53260
  return remap(v2, {
@@ -53862,7 +53869,7 @@ var init_listdatasetdatapoints = __esm(() => {
53862
53869
  created_by_id: stringType().optional(),
53863
53870
  updated_by_id: stringType().optional(),
53864
53871
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53865
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
53872
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
53866
53873
  }).transform((v2) => {
53867
53874
  return remap(v2, {
53868
53875
  _id: "id",
@@ -53889,7 +53896,7 @@ var init_listdatasetdatapoints = __esm(() => {
53889
53896
  createdById: stringType().optional(),
53890
53897
  updatedById: stringType().optional(),
53891
53898
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53892
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
53899
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
53893
53900
  }).transform((v2) => {
53894
53901
  return remap(v2, {
53895
53902
  id: "_id",
@@ -53997,7 +54004,7 @@ var init_listdatasets = __esm(() => {
53997
54004
  updated_by_id: stringType().optional(),
53998
54005
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
53999
54006
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54000
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
54007
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
54001
54008
  }).transform((v2) => {
54002
54009
  return remap(v2, {
54003
54010
  _id: "id",
@@ -54017,7 +54024,7 @@ var init_listdatasets = __esm(() => {
54017
54024
  updatedById: stringType().optional(),
54018
54025
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
54019
54026
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54020
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
54027
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
54021
54028
  }).transform((v2) => {
54022
54029
  return remap(v2, {
54023
54030
  id: "_id",
@@ -54122,7 +54129,7 @@ var init_listdatasources = __esm(() => {
54122
54129
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
54123
54130
  })(ListDatasourcesStatus$ ||= {});
54124
54131
  ListDatasourcesData$inboundSchema = objectType({
54125
- _id: stringType().default("01JYGX27GZMAW7J65D7AWKQGQR"),
54132
+ _id: stringType().default("01JYH76KR20QMA47C1TMSQ8ZWW"),
54126
54133
  display_name: stringType(),
54127
54134
  description: stringType().optional(),
54128
54135
  status: ListDatasourcesStatus$inboundSchema,
@@ -54145,7 +54152,7 @@ var init_listdatasources = __esm(() => {
54145
54152
  });
54146
54153
  });
54147
54154
  ListDatasourcesData$outboundSchema = objectType({
54148
- id: stringType().default("01JYGX27GZMAW7J65D7AWKQGQR"),
54155
+ id: stringType().default("01JYH76KR20QMA47C1TMSQ8ZWW"),
54149
54156
  displayName: stringType(),
54150
54157
  description: stringType().optional(),
54151
54158
  status: ListDatasourcesStatus$outboundSchema,
@@ -54507,6 +54514,7 @@ var init_listpromptversions = __esm(() => {
54507
54514
  Base64: "base64"
54508
54515
  };
54509
54516
  ListPromptVersionsReasoningEffort = {
54517
+ Disable: "disable",
54510
54518
  Low: "low",
54511
54519
  Medium: "medium",
54512
54520
  High: "high"
@@ -55192,7 +55200,7 @@ var init_retrievecontact = __esm(() => {
55192
55200
  tags: arrayType(stringType()).optional(),
55193
55201
  metadata: recordType(anyType()).optional(),
55194
55202
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55195
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
55203
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
55196
55204
  }).transform((v2) => {
55197
55205
  return remap(v2, {
55198
55206
  _id: "id",
@@ -55210,7 +55218,7 @@ var init_retrievecontact = __esm(() => {
55210
55218
  tags: arrayType(stringType()).optional(),
55211
55219
  metadata: recordType(anyType()).optional(),
55212
55220
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55213
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
55221
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
55214
55222
  }).transform((v2) => {
55215
55223
  return remap(v2, {
55216
55224
  id: "_id",
@@ -55787,7 +55795,7 @@ var init_retrievedatapoint = __esm(() => {
55787
55795
  created_by_id: stringType().optional(),
55788
55796
  updated_by_id: stringType().optional(),
55789
55797
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55790
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
55798
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
55791
55799
  }).transform((v2) => {
55792
55800
  return remap(v2, {
55793
55801
  _id: "id",
@@ -55814,7 +55822,7 @@ var init_retrievedatapoint = __esm(() => {
55814
55822
  createdById: stringType().optional(),
55815
55823
  updatedById: stringType().optional(),
55816
55824
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55817
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
55825
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
55818
55826
  }).transform((v2) => {
55819
55827
  return remap(v2, {
55820
55828
  id: "_id",
@@ -55885,7 +55893,7 @@ var init_retrievedataset = __esm(() => {
55885
55893
  updated_by_id: stringType().optional(),
55886
55894
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
55887
55895
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55888
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
55896
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
55889
55897
  }).transform((v2) => {
55890
55898
  return remap(v2, {
55891
55899
  _id: "id",
@@ -55905,7 +55913,7 @@ var init_retrievedataset = __esm(() => {
55905
55913
  updatedById: stringType().optional(),
55906
55914
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
55907
55915
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55908
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
55916
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
55909
55917
  }).transform((v2) => {
55910
55918
  return remap(v2, {
55911
55919
  id: "_id",
@@ -55963,7 +55971,7 @@ var init_retrievedatasource = __esm(() => {
55963
55971
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
55964
55972
  })(RetrieveDatasourceStatus$ ||= {});
55965
55973
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
55966
- _id: stringType().default("01JYGX27GZBSQNJ21964ME9Q36"),
55974
+ _id: stringType().default("01JYH76KR31566P6G8VC36822A"),
55967
55975
  display_name: stringType(),
55968
55976
  description: stringType().optional(),
55969
55977
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -55986,7 +55994,7 @@ var init_retrievedatasource = __esm(() => {
55986
55994
  });
55987
55995
  });
55988
55996
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
55989
- id: stringType().default("01JYGX27GZBSQNJ21964ME9Q36"),
55997
+ id: stringType().default("01JYH76KR31566P6G8VC36822A"),
55990
55998
  displayName: stringType(),
55991
55999
  description: stringType().optional(),
55992
56000
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -56867,7 +56875,7 @@ var init_updatecontact = __esm(() => {
56867
56875
  tags: arrayType(stringType()).optional(),
56868
56876
  metadata: recordType(anyType()).optional(),
56869
56877
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56870
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
56878
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
56871
56879
  }).transform((v2) => {
56872
56880
  return remap(v2, {
56873
56881
  _id: "id",
@@ -56885,7 +56893,7 @@ var init_updatecontact = __esm(() => {
56885
56893
  tags: arrayType(stringType()).optional(),
56886
56894
  metadata: recordType(anyType()).optional(),
56887
56895
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56888
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
56896
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
56889
56897
  }).transform((v2) => {
56890
56898
  return remap(v2, {
56891
56899
  id: "_id",
@@ -58019,7 +58027,7 @@ var init_updatedatapoint = __esm(() => {
58019
58027
  created_by_id: stringType().optional(),
58020
58028
  updated_by_id: stringType().optional(),
58021
58029
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58022
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
58030
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
58023
58031
  }).transform((v2) => {
58024
58032
  return remap(v2, {
58025
58033
  _id: "id",
@@ -58046,7 +58054,7 @@ var init_updatedatapoint = __esm(() => {
58046
58054
  createdById: stringType().optional(),
58047
58055
  updatedById: stringType().optional(),
58048
58056
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58049
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
58057
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
58050
58058
  }).transform((v2) => {
58051
58059
  return remap(v2, {
58052
58060
  id: "_id",
@@ -58147,7 +58155,7 @@ var init_updatedataset = __esm(() => {
58147
58155
  parent_id: stringType().optional(),
58148
58156
  version: stringType().optional(),
58149
58157
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58150
- updated: stringType().datetime({ offset: true }).default("2025-06-24T12:01:57.787Z").transform((v2) => new Date(v2))
58158
+ updated: stringType().datetime({ offset: true }).default("2025-06-24T14:59:07.719Z").transform((v2) => new Date(v2))
58151
58159
  }).transform((v2) => {
58152
58160
  return remap(v2, {
58153
58161
  _id: "id",
@@ -58170,7 +58178,7 @@ var init_updatedataset = __esm(() => {
58170
58178
  parentId: stringType().optional(),
58171
58179
  version: stringType().optional(),
58172
58180
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58173
- updated: dateType().default(() => new Date("2025-06-24T12:01:57.787Z")).transform((v2) => v2.toISOString())
58181
+ updated: dateType().default(() => new Date("2025-06-24T14:59:07.719Z")).transform((v2) => v2.toISOString())
58174
58182
  }).transform((v2) => {
58175
58183
  return remap(v2, {
58176
58184
  id: "_id",
@@ -58251,7 +58259,7 @@ var init_updatedatasource = __esm(() => {
58251
58259
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
58252
58260
  })(UpdateDatasourceStatus$ ||= {});
58253
58261
  UpdateDatasourceResponseBody$inboundSchema = objectType({
58254
- _id: stringType().default("01JYGX27H1WHD9DWGDXJPDKEM0"),
58262
+ _id: stringType().default("01JYH76KR59Q39MYFH9CG27045"),
58255
58263
  display_name: stringType(),
58256
58264
  description: stringType().optional(),
58257
58265
  status: UpdateDatasourceStatus$inboundSchema,
@@ -58274,7 +58282,7 @@ var init_updatedatasource = __esm(() => {
58274
58282
  });
58275
58283
  });
58276
58284
  UpdateDatasourceResponseBody$outboundSchema = objectType({
58277
- id: stringType().default("01JYGX27H1WHD9DWGDXJPDKEM0"),
58285
+ id: stringType().default("01JYH76KR59Q39MYFH9CG27045"),
58278
58286
  displayName: stringType(),
58279
58287
  description: stringType().optional(),
58280
58288
  status: UpdateDatasourceStatus$outboundSchema,
@@ -58980,8 +58988,8 @@ var init_updateeval = __esm(() => {
58980
58988
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
58981
58989
  _id: stringType(),
58982
58990
  description: stringType(),
58983
- created: stringType().default("2025-06-24T12:01:59.969Z"),
58984
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
58991
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
58992
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
58985
58993
  guardrail_config: unionType([
58986
58994
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
58987
58995
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -58998,8 +59006,8 @@ var init_updateeval = __esm(() => {
58998
59006
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
58999
59007
  id: stringType(),
59000
59008
  description: stringType(),
59001
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59002
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59009
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59010
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59003
59011
  guardrailConfig: unionType([
59004
59012
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
59005
59013
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -59092,8 +59100,8 @@ var init_updateeval = __esm(() => {
59092
59100
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
59093
59101
  _id: stringType(),
59094
59102
  description: stringType(),
59095
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59096
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59103
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59104
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59097
59105
  guardrail_config: unionType([
59098
59106
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
59099
59107
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -59113,8 +59121,8 @@ var init_updateeval = __esm(() => {
59113
59121
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
59114
59122
  id: stringType(),
59115
59123
  description: stringType(),
59116
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59117
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59124
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59125
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59118
59126
  guardrailConfig: unionType([
59119
59127
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
59120
59128
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -59204,8 +59212,8 @@ var init_updateeval = __esm(() => {
59204
59212
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
59205
59213
  _id: stringType(),
59206
59214
  description: stringType(),
59207
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59208
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59215
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59216
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59209
59217
  guardrail_config: unionType([
59210
59218
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
59211
59219
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -59222,8 +59230,8 @@ var init_updateeval = __esm(() => {
59222
59230
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
59223
59231
  id: stringType(),
59224
59232
  description: stringType(),
59225
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59226
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59233
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59234
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59227
59235
  guardrailConfig: unionType([
59228
59236
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
59229
59237
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -59310,8 +59318,8 @@ var init_updateeval = __esm(() => {
59310
59318
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
59311
59319
  _id: stringType(),
59312
59320
  description: stringType(),
59313
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59314
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59321
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59322
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59315
59323
  guardrail_config: unionType([
59316
59324
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
59317
59325
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -59329,8 +59337,8 @@ var init_updateeval = __esm(() => {
59329
59337
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
59330
59338
  id: stringType(),
59331
59339
  description: stringType(),
59332
- created: stringType().default("2025-06-24T12:01:59.969Z"),
59333
- updated: stringType().default("2025-06-24T12:01:59.969Z"),
59340
+ created: stringType().default("2025-06-24T14:59:09.809Z"),
59341
+ updated: stringType().default("2025-06-24T14:59:09.809Z"),
59334
59342
  guardrailConfig: unionType([
59335
59343
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
59336
59344
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -59644,6 +59652,7 @@ var init_updateprompt = __esm(() => {
59644
59652
  Base64: "base64"
59645
59653
  };
59646
59654
  UpdatePromptReasoningEffort = {
59655
+ Disable: "disable",
59647
59656
  Low: "low",
59648
59657
  Medium: "medium",
59649
59658
  High: "high"
@@ -59757,6 +59766,7 @@ var init_updateprompt = __esm(() => {
59757
59766
  Base64: "base64"
59758
59767
  };
59759
59768
  UpdatePromptPromptsReasoningEffort = {
59769
+ Disable: "disable",
59760
59770
  Low: "low",
59761
59771
  Medium: "medium",
59762
59772
  High: "high"
@@ -74770,7 +74780,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
74770
74780
  function createMCPServer(deps) {
74771
74781
  const server = new McpServer({
74772
74782
  name: "Orq",
74773
- version: "3.8.7"
74783
+ version: "3.8.8"
74774
74784
  });
74775
74785
  const client = new OrqCore({
74776
74786
  apiKey: deps.apiKey,
@@ -76186,7 +76196,7 @@ var routes = rn({
76186
76196
  var app = Ve(routes, {
76187
76197
  name: "mcp",
76188
76198
  versionInfo: {
76189
- currentVersion: "3.8.7"
76199
+ currentVersion: "3.8.8"
76190
76200
  }
76191
76201
  });
76192
76202
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -76194,5 +76204,5 @@ export {
76194
76204
  app
76195
76205
  };
76196
76206
 
76197
- //# debugId=6C1852797D64A82B64756E2164756E21
76207
+ //# debugId=EDBEBD19713784A664756E2164756E21
76198
76208
  //# sourceMappingURL=mcp-server.js.map