@orq-ai/node 3.8.0-rc.21 → 3.8.0-rc.22

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 (100) hide show
  1. package/bin/mcp-server.js +131 -131
  2. package/bin/mcp-server.js.map +36 -36
  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/createfeedback.d.ts +8 -8
  14. package/models/operations/createfeedback.d.ts.map +1 -1
  15. package/models/operations/createfeedback.js +8 -8
  16. package/models/operations/createfeedback.js.map +1 -1
  17. package/models/operations/createprompt.d.ts +4 -4
  18. package/models/operations/createprompt.d.ts.map +1 -1
  19. package/models/operations/createprompt.js +4 -4
  20. package/models/operations/createprompt.js.map +1 -1
  21. package/models/operations/deploymentgetconfig.d.ts +2 -2
  22. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  23. package/models/operations/deploymentgetconfig.js +2 -2
  24. package/models/operations/deploymentgetconfig.js.map +1 -1
  25. package/models/operations/deployments.d.ts +2 -2
  26. package/models/operations/deployments.d.ts.map +1 -1
  27. package/models/operations/deployments.js +2 -2
  28. package/models/operations/deployments.js.map +1 -1
  29. package/models/operations/fileget.js +2 -2
  30. package/models/operations/filelist.js +2 -2
  31. package/models/operations/fileupload.js +2 -2
  32. package/models/operations/getallprompts.d.ts +2 -2
  33. package/models/operations/getallprompts.d.ts.map +1 -1
  34. package/models/operations/getallprompts.js +2 -2
  35. package/models/operations/getallprompts.js.map +1 -1
  36. package/models/operations/getevals.js +28 -28
  37. package/models/operations/getoneprompt.d.ts +2 -2
  38. package/models/operations/getoneprompt.d.ts.map +1 -1
  39. package/models/operations/getoneprompt.js +2 -2
  40. package/models/operations/getoneprompt.js.map +1 -1
  41. package/models/operations/getpromptversion.d.ts +2 -2
  42. package/models/operations/getpromptversion.d.ts.map +1 -1
  43. package/models/operations/getpromptversion.js +2 -2
  44. package/models/operations/getpromptversion.js.map +1 -1
  45. package/models/operations/listcontacts.js +2 -2
  46. package/models/operations/listdatasetdatapoints.js +2 -2
  47. package/models/operations/listdatasets.js +2 -2
  48. package/models/operations/listdatasources.js +2 -2
  49. package/models/operations/listpromptversions.d.ts +2 -2
  50. package/models/operations/listpromptversions.d.ts.map +1 -1
  51. package/models/operations/listpromptversions.js +2 -2
  52. package/models/operations/listpromptversions.js.map +1 -1
  53. package/models/operations/retrievecontact.js +2 -2
  54. package/models/operations/retrievedatapoint.js +2 -2
  55. package/models/operations/retrievedataset.js +2 -2
  56. package/models/operations/retrievedatasource.js +2 -2
  57. package/models/operations/updatecontact.js +2 -2
  58. package/models/operations/updatedatapoint.js +2 -2
  59. package/models/operations/updatedataset.js +2 -2
  60. package/models/operations/updatedatasource.js +2 -2
  61. package/models/operations/updateeval.js +16 -16
  62. package/models/operations/updateprompt.d.ts +4 -4
  63. package/models/operations/updateprompt.d.ts.map +1 -1
  64. package/models/operations/updateprompt.js +4 -4
  65. package/models/operations/updateprompt.js.map +1 -1
  66. package/package.json +1 -1
  67. package/src/lib/config.ts +2 -2
  68. package/src/mcp-server/mcp-server.ts +1 -1
  69. package/src/mcp-server/server.ts +1 -1
  70. package/src/models/operations/createcontact.ts +2 -2
  71. package/src/models/operations/createdataset.ts +2 -2
  72. package/src/models/operations/createdatasetitem.ts +2 -2
  73. package/src/models/operations/createdatasource.ts +2 -2
  74. package/src/models/operations/createeval.ts +16 -16
  75. package/src/models/operations/createfeedback.ts +16 -16
  76. package/src/models/operations/createprompt.ts +8 -8
  77. package/src/models/operations/deploymentgetconfig.ts +4 -4
  78. package/src/models/operations/deployments.ts +4 -4
  79. package/src/models/operations/fileget.ts +2 -2
  80. package/src/models/operations/filelist.ts +2 -2
  81. package/src/models/operations/fileupload.ts +2 -2
  82. package/src/models/operations/getallprompts.ts +4 -4
  83. package/src/models/operations/getevals.ts +28 -28
  84. package/src/models/operations/getoneprompt.ts +4 -4
  85. package/src/models/operations/getpromptversion.ts +4 -4
  86. package/src/models/operations/listcontacts.ts +2 -2
  87. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  88. package/src/models/operations/listdatasets.ts +2 -2
  89. package/src/models/operations/listdatasources.ts +2 -2
  90. package/src/models/operations/listpromptversions.ts +4 -4
  91. package/src/models/operations/retrievecontact.ts +2 -2
  92. package/src/models/operations/retrievedatapoint.ts +2 -2
  93. package/src/models/operations/retrievedataset.ts +2 -2
  94. package/src/models/operations/retrievedatasource.ts +2 -2
  95. package/src/models/operations/updatecontact.ts +2 -2
  96. package/src/models/operations/updatedatapoint.ts +2 -2
  97. package/src/models/operations/updatedataset.ts +2 -2
  98. package/src/models/operations/updatedatasource.ts +2 -2
  99. package/src/models/operations/updateeval.ts +16 -16
  100. package/src/models/operations/updateprompt.ts +8 -8
package/bin/mcp-server.js CHANGED
@@ -34272,9 +34272,9 @@ var init_config = __esm(() => {
34272
34272
  SDK_METADATA = {
34273
34273
  language: "typescript",
34274
34274
  openapiDocVersion: "2.0",
34275
- sdkVersion: "3.8.0-rc.21",
34275
+ sdkVersion: "3.8.0-rc.22",
34276
34276
  genVersion: "2.628.0",
34277
- userAgent: "speakeasy-sdk/typescript 3.8.0-rc.21 2.628.0 2.0 @orq-ai/node"
34277
+ userAgent: "speakeasy-sdk/typescript 3.8.0-rc.22 2.628.0 2.0 @orq-ai/node"
34278
34278
  };
34279
34279
  });
34280
34280
 
@@ -36146,7 +36146,7 @@ var init_createcontact = __esm(() => {
36146
36146
  tags: arrayType(stringType()).optional(),
36147
36147
  metadata: recordType(anyType()).optional(),
36148
36148
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36149
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
36149
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
36150
36150
  }).transform((v2) => {
36151
36151
  return remap(v2, {
36152
36152
  _id: "id",
@@ -36166,7 +36166,7 @@ var init_createcontact = __esm(() => {
36166
36166
  tags: arrayType(stringType()).optional(),
36167
36167
  metadata: recordType(anyType()).optional(),
36168
36168
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36169
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
36169
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
36170
36170
  }).transform((v2) => {
36171
36171
  return remap(v2, {
36172
36172
  id: "_id",
@@ -36238,7 +36238,7 @@ var init_createdataset = __esm(() => {
36238
36238
  updated_by_id: stringType().optional(),
36239
36239
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36240
36240
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36241
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
36241
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
36242
36242
  }).transform((v2) => {
36243
36243
  return remap(v2, {
36244
36244
  _id: "id",
@@ -36258,7 +36258,7 @@ var init_createdataset = __esm(() => {
36258
36258
  updatedById: stringType().optional(),
36259
36259
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36260
36260
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36261
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
36261
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
36262
36262
  }).transform((v2) => {
36263
36263
  return remap(v2, {
36264
36264
  id: "_id",
@@ -37480,7 +37480,7 @@ var init_createdatasetitem = __esm(() => {
37480
37480
  created_by_id: stringType().optional(),
37481
37481
  updated_by_id: stringType().optional(),
37482
37482
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37483
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
37483
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
37484
37484
  }).transform((v2) => {
37485
37485
  return remap(v2, {
37486
37486
  _id: "id",
@@ -37507,7 +37507,7 @@ var init_createdatasetitem = __esm(() => {
37507
37507
  createdById: stringType().optional(),
37508
37508
  updatedById: stringType().optional(),
37509
37509
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37510
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
37510
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
37511
37511
  }).transform((v2) => {
37512
37512
  return remap(v2, {
37513
37513
  id: "_id",
@@ -37729,7 +37729,7 @@ var init_createdatasource = __esm(() => {
37729
37729
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37730
37730
  })(CreateDatasourceStatus$ ||= {});
37731
37731
  CreateDatasourceResponseBody$inboundSchema = objectType({
37732
- _id: stringType().default("01JXJ5J5EJW9Y2N9VWPFPE36ZM"),
37732
+ _id: stringType().default("01JXK1JQAZ4DR811N9ASP841WA"),
37733
37733
  display_name: stringType(),
37734
37734
  description: stringType().optional(),
37735
37735
  status: CreateDatasourceStatus$inboundSchema,
@@ -37752,7 +37752,7 @@ var init_createdatasource = __esm(() => {
37752
37752
  });
37753
37753
  });
37754
37754
  CreateDatasourceResponseBody$outboundSchema = objectType({
37755
- id: stringType().default("01JXJ5J5EJW9Y2N9VWPFPE36ZM"),
37755
+ id: stringType().default("01JXK1JQAZ4DR811N9ASP841WA"),
37756
37756
  displayName: stringType(),
37757
37757
  description: stringType().optional(),
37758
37758
  status: CreateDatasourceStatus$outboundSchema,
@@ -38520,8 +38520,8 @@ var init_createeval = __esm(() => {
38520
38520
  ResponseBodyPython$inboundSchema = objectType({
38521
38521
  _id: stringType(),
38522
38522
  description: stringType(),
38523
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38524
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38523
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38524
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38525
38525
  guardrail_config: unionType([
38526
38526
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
38527
38527
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
@@ -38538,8 +38538,8 @@ var init_createeval = __esm(() => {
38538
38538
  ResponseBodyPython$outboundSchema = objectType({
38539
38539
  id: stringType(),
38540
38540
  description: stringType(),
38541
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38542
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38541
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38542
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38543
38543
  guardrailConfig: unionType([
38544
38544
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
38545
38545
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
@@ -38632,8 +38632,8 @@ var init_createeval = __esm(() => {
38632
38632
  ResponseBodyHTTP$inboundSchema = objectType({
38633
38633
  _id: stringType(),
38634
38634
  description: stringType(),
38635
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38636
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38635
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38636
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38637
38637
  guardrail_config: unionType([
38638
38638
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
38639
38639
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
@@ -38653,8 +38653,8 @@ var init_createeval = __esm(() => {
38653
38653
  ResponseBodyHTTP$outboundSchema = objectType({
38654
38654
  id: stringType(),
38655
38655
  description: stringType(),
38656
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38657
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38656
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38657
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38658
38658
  guardrailConfig: unionType([
38659
38659
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
38660
38660
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
@@ -38744,8 +38744,8 @@ var init_createeval = __esm(() => {
38744
38744
  ResponseBodyJSON$inboundSchema = objectType({
38745
38745
  _id: stringType(),
38746
38746
  description: stringType(),
38747
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38748
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38747
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38748
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38749
38749
  guardrail_config: unionType([
38750
38750
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
38751
38751
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
@@ -38762,8 +38762,8 @@ var init_createeval = __esm(() => {
38762
38762
  ResponseBodyJSON$outboundSchema = objectType({
38763
38763
  id: stringType(),
38764
38764
  description: stringType(),
38765
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38766
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38765
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38766
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38767
38767
  guardrailConfig: unionType([
38768
38768
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
38769
38769
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
@@ -38850,8 +38850,8 @@ var init_createeval = __esm(() => {
38850
38850
  ResponseBodyLLM$inboundSchema = objectType({
38851
38851
  _id: stringType(),
38852
38852
  description: stringType(),
38853
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38854
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38853
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38854
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38855
38855
  guardrail_config: unionType([
38856
38856
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
38857
38857
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
@@ -38869,8 +38869,8 @@ var init_createeval = __esm(() => {
38869
38869
  ResponseBodyLLM$outboundSchema = objectType({
38870
38870
  id: stringType(),
38871
38871
  description: stringType(),
38872
- created: stringType().default("2025-06-12T13:34:04.258Z"),
38873
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
38872
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
38873
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
38874
38874
  guardrailConfig: unionType([
38875
38875
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
38876
38876
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
@@ -38912,15 +38912,15 @@ var Value$inboundSchema, Value$outboundSchema, Value$, CreateFeedbackRequestBody
38912
38912
  var init_createfeedback = __esm(() => {
38913
38913
  init_esm();
38914
38914
  init_primitives();
38915
- Value$inboundSchema = unionType([stringType(), arrayType(stringType())]);
38916
- Value$outboundSchema = unionType([stringType(), arrayType(stringType())]);
38915
+ Value$inboundSchema = unionType([stringType(), numberType(), arrayType(stringType())]);
38916
+ Value$outboundSchema = unionType([stringType(), numberType(), arrayType(stringType())]);
38917
38917
  ((Value$) => {
38918
38918
  Value$.inboundSchema = Value$inboundSchema;
38919
38919
  Value$.outboundSchema = Value$outboundSchema;
38920
38920
  })(Value$ ||= {});
38921
38921
  CreateFeedbackRequestBody$inboundSchema = objectType({
38922
38922
  property: stringType(),
38923
- value: unionType([stringType(), arrayType(stringType())]),
38923
+ value: unionType([stringType(), numberType(), arrayType(stringType())]),
38924
38924
  trace_id: stringType()
38925
38925
  }).transform((v2) => {
38926
38926
  return remap(v2, {
@@ -38930,7 +38930,7 @@ var init_createfeedback = __esm(() => {
38930
38930
  });
38931
38931
  CreateFeedbackRequestBody$outboundSchema = objectType({
38932
38932
  field: stringType(),
38933
- value: unionType([stringType(), arrayType(stringType())]),
38933
+ value: unionType([stringType(), numberType(), arrayType(stringType())]),
38934
38934
  traceId: stringType()
38935
38935
  }).transform((v2) => {
38936
38936
  return remap(v2, {
@@ -38942,15 +38942,15 @@ var init_createfeedback = __esm(() => {
38942
38942
  CreateFeedbackRequestBody$.inboundSchema = CreateFeedbackRequestBody$inboundSchema;
38943
38943
  CreateFeedbackRequestBody$.outboundSchema = CreateFeedbackRequestBody$outboundSchema;
38944
38944
  })(CreateFeedbackRequestBody$ ||= {});
38945
- CreateFeedbackValue$inboundSchema = unionType([stringType(), arrayType(stringType())]);
38946
- CreateFeedbackValue$outboundSchema = unionType([stringType(), arrayType(stringType())]);
38945
+ CreateFeedbackValue$inboundSchema = unionType([stringType(), numberType(), arrayType(stringType())]);
38946
+ CreateFeedbackValue$outboundSchema = unionType([stringType(), numberType(), arrayType(stringType())]);
38947
38947
  ((CreateFeedbackValue$) => {
38948
38948
  CreateFeedbackValue$.inboundSchema = CreateFeedbackValue$inboundSchema;
38949
38949
  CreateFeedbackValue$.outboundSchema = CreateFeedbackValue$outboundSchema;
38950
38950
  })(CreateFeedbackValue$ ||= {});
38951
38951
  CreateFeedbackResponseBody$inboundSchema = objectType({
38952
38952
  property: stringType(),
38953
- value: unionType([stringType(), arrayType(stringType())]),
38953
+ value: unionType([stringType(), numberType(), arrayType(stringType())]),
38954
38954
  trace_id: stringType(),
38955
38955
  id: stringType()
38956
38956
  }).transform((v2) => {
@@ -38960,7 +38960,7 @@ var init_createfeedback = __esm(() => {
38960
38960
  });
38961
38961
  CreateFeedbackResponseBody$outboundSchema = objectType({
38962
38962
  property: stringType(),
38963
- value: unionType([stringType(), arrayType(stringType())]),
38963
+ value: unionType([stringType(), numberType(), arrayType(stringType())]),
38964
38964
  traceId: stringType(),
38965
38965
  id: stringType()
38966
38966
  }).transform((v2) => {
@@ -39469,12 +39469,12 @@ var init_createprompt = __esm(() => {
39469
39469
  })(ResponseFormatType$ ||= {});
39470
39470
  JsonSchema$inboundSchema = objectType({
39471
39471
  name: stringType(),
39472
- strict: booleanType(),
39472
+ strict: booleanType().optional(),
39473
39473
  schema: recordType(anyType())
39474
39474
  });
39475
39475
  JsonSchema$outboundSchema = objectType({
39476
39476
  name: stringType(),
39477
- strict: booleanType(),
39477
+ strict: booleanType().optional(),
39478
39478
  schema: recordType(anyType())
39479
39479
  });
39480
39480
  ((JsonSchema$) => {
@@ -39935,12 +39935,12 @@ var init_createprompt = __esm(() => {
39935
39935
  })(CreatePromptResponseFormatPromptsType$ ||= {});
39936
39936
  CreatePromptResponseFormatJsonSchema$inboundSchema = objectType({
39937
39937
  name: stringType(),
39938
- strict: booleanType(),
39938
+ strict: booleanType().optional(),
39939
39939
  schema: recordType(anyType())
39940
39940
  });
39941
39941
  CreatePromptResponseFormatJsonSchema$outboundSchema = objectType({
39942
39942
  name: stringType(),
39943
- strict: booleanType(),
39943
+ strict: booleanType().optional(),
39944
39944
  schema: recordType(anyType())
39945
39945
  });
39946
39946
  ((CreatePromptResponseFormatJsonSchema$) => {
@@ -43799,12 +43799,12 @@ var init_deploymentgetconfig = __esm(() => {
43799
43799
  })(DeploymentGetConfigResponseFormatDeploymentsType$ ||= {});
43800
43800
  DeploymentGetConfigResponseFormatJsonSchema$inboundSchema = objectType({
43801
43801
  name: stringType(),
43802
- strict: booleanType(),
43802
+ strict: booleanType().optional(),
43803
43803
  schema: recordType(anyType())
43804
43804
  });
43805
43805
  DeploymentGetConfigResponseFormatJsonSchema$outboundSchema = objectType({
43806
43806
  name: stringType(),
43807
- strict: booleanType(),
43807
+ strict: booleanType().optional(),
43808
43808
  schema: recordType(anyType())
43809
43809
  });
43810
43810
  ((DeploymentGetConfigResponseFormatJsonSchema$) => {
@@ -44576,12 +44576,12 @@ var init_deployments = __esm(() => {
44576
44576
  })(DeploymentsResponseFormatDeploymentsType$ ||= {});
44577
44577
  DeploymentsResponseFormatJsonSchema$inboundSchema = objectType({
44578
44578
  name: stringType(),
44579
- strict: booleanType(),
44579
+ strict: booleanType().optional(),
44580
44580
  schema: recordType(anyType())
44581
44581
  });
44582
44582
  DeploymentsResponseFormatJsonSchema$outboundSchema = objectType({
44583
44583
  name: stringType(),
44584
- strict: booleanType(),
44584
+ strict: booleanType().optional(),
44585
44585
  schema: recordType(anyType())
44586
44586
  });
44587
44587
  ((DeploymentsResponseFormatJsonSchema$) => {
@@ -48566,7 +48566,7 @@ var init_fileget = __esm(() => {
48566
48566
  bytes: numberType(),
48567
48567
  file_name: stringType(),
48568
48568
  workspace_id: stringType(),
48569
- created: stringType().datetime({ offset: true }).default("2025-06-12T13:34:05.044Z").transform((v2) => new Date(v2))
48569
+ created: stringType().datetime({ offset: true }).default("2025-06-12T21:43:43.392Z").transform((v2) => new Date(v2))
48570
48570
  }).transform((v2) => {
48571
48571
  return remap(v2, {
48572
48572
  _id: "id",
@@ -48582,7 +48582,7 @@ var init_fileget = __esm(() => {
48582
48582
  bytes: numberType(),
48583
48583
  fileName: stringType(),
48584
48584
  workspaceId: stringType(),
48585
- created: dateType().default(() => new Date("2025-06-12T13:34:05.044Z")).transform((v2) => v2.toISOString())
48585
+ created: dateType().default(() => new Date("2025-06-12T21:43:43.392Z")).transform((v2) => v2.toISOString())
48586
48586
  }).transform((v2) => {
48587
48587
  return remap(v2, {
48588
48588
  id: "_id",
@@ -48653,7 +48653,7 @@ var init_filelist = __esm(() => {
48653
48653
  bytes: numberType(),
48654
48654
  file_name: stringType(),
48655
48655
  workspace_id: stringType(),
48656
- created: stringType().datetime({ offset: true }).default("2025-06-12T13:34:05.044Z").transform((v2) => new Date(v2))
48656
+ created: stringType().datetime({ offset: true }).default("2025-06-12T21:43:43.392Z").transform((v2) => new Date(v2))
48657
48657
  }).transform((v2) => {
48658
48658
  return remap(v2, {
48659
48659
  _id: "id",
@@ -48669,7 +48669,7 @@ var init_filelist = __esm(() => {
48669
48669
  bytes: numberType(),
48670
48670
  fileName: stringType(),
48671
48671
  workspaceId: stringType(),
48672
- created: dateType().default(() => new Date("2025-06-12T13:34:05.044Z")).transform((v2) => v2.toISOString())
48672
+ created: dateType().default(() => new Date("2025-06-12T21:43:43.392Z")).transform((v2) => v2.toISOString())
48673
48673
  }).transform((v2) => {
48674
48674
  return remap(v2, {
48675
48675
  id: "_id",
@@ -48801,7 +48801,7 @@ var init_fileupload = __esm(() => {
48801
48801
  bytes: numberType(),
48802
48802
  file_name: stringType(),
48803
48803
  workspace_id: stringType(),
48804
- created: stringType().datetime({ offset: true }).default("2025-06-12T13:34:05.044Z").transform((v2) => new Date(v2))
48804
+ created: stringType().datetime({ offset: true }).default("2025-06-12T21:43:43.392Z").transform((v2) => new Date(v2))
48805
48805
  }).transform((v2) => {
48806
48806
  return remap(v2, {
48807
48807
  _id: "id",
@@ -48817,7 +48817,7 @@ var init_fileupload = __esm(() => {
48817
48817
  bytes: numberType(),
48818
48818
  fileName: stringType(),
48819
48819
  workspaceId: stringType(),
48820
- created: dateType().default(() => new Date("2025-06-12T13:34:05.044Z")).transform((v2) => v2.toISOString())
48820
+ created: dateType().default(() => new Date("2025-06-12T21:43:43.392Z")).transform((v2) => v2.toISOString())
48821
48821
  }).transform((v2) => {
48822
48822
  return remap(v2, {
48823
48823
  id: "_id",
@@ -49025,12 +49025,12 @@ var init_getallprompts = __esm(() => {
49025
49025
  })(GetAllPromptsResponseFormatType$ ||= {});
49026
49026
  GetAllPromptsResponseFormatJsonSchema$inboundSchema = objectType({
49027
49027
  name: stringType(),
49028
- strict: booleanType(),
49028
+ strict: booleanType().optional(),
49029
49029
  schema: recordType(anyType())
49030
49030
  });
49031
49031
  GetAllPromptsResponseFormatJsonSchema$outboundSchema = objectType({
49032
49032
  name: stringType(),
49033
- strict: booleanType(),
49033
+ strict: booleanType().optional(),
49034
49034
  schema: recordType(anyType())
49035
49035
  });
49036
49036
  ((GetAllPromptsResponseFormatJsonSchema$) => {
@@ -49820,8 +49820,8 @@ var init_getevals = __esm(() => {
49820
49820
  Typescript$inboundSchema = objectType({
49821
49821
  _id: stringType(),
49822
49822
  description: stringType(),
49823
- created: stringType().default("2025-06-12T13:34:04.258Z"),
49824
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
49823
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
49824
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
49825
49825
  guardrail_config: unionType([
49826
49826
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
49827
49827
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
@@ -49838,8 +49838,8 @@ var init_getevals = __esm(() => {
49838
49838
  Typescript$outboundSchema = objectType({
49839
49839
  id: stringType(),
49840
49840
  description: stringType(),
49841
- created: stringType().default("2025-06-12T13:34:04.258Z"),
49842
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
49841
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
49842
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
49843
49843
  guardrailConfig: unionType([
49844
49844
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
49845
49845
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
@@ -49932,8 +49932,8 @@ var init_getevals = __esm(() => {
49932
49932
  Ragas$inboundSchema = objectType({
49933
49933
  _id: stringType(),
49934
49934
  description: stringType(),
49935
- created: stringType().default("2025-06-12T13:34:04.258Z"),
49936
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
49935
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
49936
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
49937
49937
  guardrail_config: unionType([
49938
49938
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
49939
49939
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
@@ -49952,8 +49952,8 @@ var init_getevals = __esm(() => {
49952
49952
  Ragas$outboundSchema = objectType({
49953
49953
  id: stringType(),
49954
49954
  description: stringType(),
49955
- created: stringType().default("2025-06-12T13:34:04.258Z"),
49956
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
49955
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
49956
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
49957
49957
  guardrailConfig: unionType([
49958
49958
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
49959
49959
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
@@ -50504,8 +50504,8 @@ var init_getevals = __esm(() => {
50504
50504
  DataFunction$inboundSchema = objectType({
50505
50505
  _id: stringType(),
50506
50506
  description: stringType(),
50507
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50508
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50507
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50508
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50509
50509
  guardrail_config: unionType([
50510
50510
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
50511
50511
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
@@ -50548,8 +50548,8 @@ var init_getevals = __esm(() => {
50548
50548
  DataFunction$outboundSchema = objectType({
50549
50549
  id: stringType(),
50550
50550
  description: stringType(),
50551
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50552
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50551
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50552
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50553
50553
  guardrailConfig: unionType([
50554
50554
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
50555
50555
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
@@ -50662,8 +50662,8 @@ var init_getevals = __esm(() => {
50662
50662
  DataPython$inboundSchema = objectType({
50663
50663
  _id: stringType(),
50664
50664
  description: stringType(),
50665
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50666
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50665
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50666
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50667
50667
  guardrail_config: unionType([
50668
50668
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
50669
50669
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
@@ -50680,8 +50680,8 @@ var init_getevals = __esm(() => {
50680
50680
  DataPython$outboundSchema = objectType({
50681
50681
  id: stringType(),
50682
50682
  description: stringType(),
50683
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50684
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50683
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50684
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50685
50685
  guardrailConfig: unionType([
50686
50686
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
50687
50687
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
@@ -50774,8 +50774,8 @@ var init_getevals = __esm(() => {
50774
50774
  DataHTTP$inboundSchema = objectType({
50775
50775
  _id: stringType(),
50776
50776
  description: stringType(),
50777
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50778
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50777
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50778
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50779
50779
  guardrail_config: unionType([
50780
50780
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
50781
50781
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
@@ -50795,8 +50795,8 @@ var init_getevals = __esm(() => {
50795
50795
  DataHTTP$outboundSchema = objectType({
50796
50796
  id: stringType(),
50797
50797
  description: stringType(),
50798
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50799
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50798
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50799
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50800
50800
  guardrailConfig: unionType([
50801
50801
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
50802
50802
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
@@ -50886,8 +50886,8 @@ var init_getevals = __esm(() => {
50886
50886
  DataJSON$inboundSchema = objectType({
50887
50887
  _id: stringType(),
50888
50888
  description: stringType(),
50889
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50890
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50889
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50890
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50891
50891
  guardrail_config: unionType([
50892
50892
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
50893
50893
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
@@ -50904,8 +50904,8 @@ var init_getevals = __esm(() => {
50904
50904
  DataJSON$outboundSchema = objectType({
50905
50905
  id: stringType(),
50906
50906
  description: stringType(),
50907
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50908
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50907
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50908
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50909
50909
  guardrailConfig: unionType([
50910
50910
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
50911
50911
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
@@ -50992,8 +50992,8 @@ var init_getevals = __esm(() => {
50992
50992
  DataLLM$inboundSchema = objectType({
50993
50993
  _id: stringType(),
50994
50994
  description: stringType(),
50995
- created: stringType().default("2025-06-12T13:34:04.258Z"),
50996
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
50995
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
50996
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
50997
50997
  guardrail_config: unionType([
50998
50998
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
50999
50999
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
@@ -51011,8 +51011,8 @@ var init_getevals = __esm(() => {
51011
51011
  DataLLM$outboundSchema = objectType({
51012
51012
  id: stringType(),
51013
51013
  description: stringType(),
51014
- created: stringType().default("2025-06-12T13:34:04.258Z"),
51015
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
51014
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
51015
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
51016
51016
  guardrailConfig: unionType([
51017
51017
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
51018
51018
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
@@ -51499,12 +51499,12 @@ var init_getoneprompt = __esm(() => {
51499
51499
  })(GetOnePromptResponseFormatType$ ||= {});
51500
51500
  GetOnePromptResponseFormatJsonSchema$inboundSchema = objectType({
51501
51501
  name: stringType(),
51502
- strict: booleanType(),
51502
+ strict: booleanType().optional(),
51503
51503
  schema: recordType(anyType())
51504
51504
  });
51505
51505
  GetOnePromptResponseFormatJsonSchema$outboundSchema = objectType({
51506
51506
  name: stringType(),
51507
- strict: booleanType(),
51507
+ strict: booleanType().optional(),
51508
51508
  schema: recordType(anyType())
51509
51509
  });
51510
51510
  ((GetOnePromptResponseFormatJsonSchema$) => {
@@ -52130,12 +52130,12 @@ var init_getpromptversion = __esm(() => {
52130
52130
  })(GetPromptVersionResponseFormatType$ ||= {});
52131
52131
  GetPromptVersionResponseFormatJsonSchema$inboundSchema = objectType({
52132
52132
  name: stringType(),
52133
- strict: booleanType(),
52133
+ strict: booleanType().optional(),
52134
52134
  schema: recordType(anyType())
52135
52135
  });
52136
52136
  GetPromptVersionResponseFormatJsonSchema$outboundSchema = objectType({
52137
52137
  name: stringType(),
52138
- strict: booleanType(),
52138
+ strict: booleanType().optional(),
52139
52139
  schema: recordType(anyType())
52140
52140
  });
52141
52141
  ((GetPromptVersionResponseFormatJsonSchema$) => {
@@ -53668,7 +53668,7 @@ var init_listcontacts = __esm(() => {
53668
53668
  tags: arrayType(stringType()).optional(),
53669
53669
  metadata: recordType(anyType()).optional(),
53670
53670
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53671
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2)),
53671
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2)),
53672
53672
  metrics: lazyType(() => Metrics$inboundSchema)
53673
53673
  }).transform((v2) => {
53674
53674
  return remap(v2, {
@@ -53687,7 +53687,7 @@ var init_listcontacts = __esm(() => {
53687
53687
  tags: arrayType(stringType()).optional(),
53688
53688
  metadata: recordType(anyType()).optional(),
53689
53689
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53690
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString()),
53690
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString()),
53691
53691
  metrics: lazyType(() => Metrics$outboundSchema)
53692
53692
  }).transform((v2) => {
53693
53693
  return remap(v2, {
@@ -54302,7 +54302,7 @@ var init_listdatasetdatapoints = __esm(() => {
54302
54302
  created_by_id: stringType().optional(),
54303
54303
  updated_by_id: stringType().optional(),
54304
54304
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54305
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
54305
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
54306
54306
  }).transform((v2) => {
54307
54307
  return remap(v2, {
54308
54308
  _id: "id",
@@ -54329,7 +54329,7 @@ var init_listdatasetdatapoints = __esm(() => {
54329
54329
  createdById: stringType().optional(),
54330
54330
  updatedById: stringType().optional(),
54331
54331
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54332
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
54332
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
54333
54333
  }).transform((v2) => {
54334
54334
  return remap(v2, {
54335
54335
  id: "_id",
@@ -54437,7 +54437,7 @@ var init_listdatasets = __esm(() => {
54437
54437
  updated_by_id: stringType().optional(),
54438
54438
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
54439
54439
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54440
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
54440
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
54441
54441
  }).transform((v2) => {
54442
54442
  return remap(v2, {
54443
54443
  _id: "id",
@@ -54457,7 +54457,7 @@ var init_listdatasets = __esm(() => {
54457
54457
  updatedById: stringType().optional(),
54458
54458
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
54459
54459
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54460
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
54460
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
54461
54461
  }).transform((v2) => {
54462
54462
  return remap(v2, {
54463
54463
  id: "_id",
@@ -54562,7 +54562,7 @@ var init_listdatasources = __esm(() => {
54562
54562
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
54563
54563
  })(ListDatasourcesStatus$ ||= {});
54564
54564
  ListDatasourcesData$inboundSchema = objectType({
54565
- _id: stringType().default("01JXJ5J5EHDQRRCAEEYPP84612"),
54565
+ _id: stringType().default("01JXK1JQAYZFTKM9C3N1BY1ATH"),
54566
54566
  display_name: stringType(),
54567
54567
  description: stringType().optional(),
54568
54568
  status: ListDatasourcesStatus$inboundSchema,
@@ -54585,7 +54585,7 @@ var init_listdatasources = __esm(() => {
54585
54585
  });
54586
54586
  });
54587
54587
  ListDatasourcesData$outboundSchema = objectType({
54588
- id: stringType().default("01JXJ5J5EHDQRRCAEEYPP84612"),
54588
+ id: stringType().default("01JXK1JQAYZFTKM9C3N1BY1ATH"),
54589
54589
  displayName: stringType(),
54590
54590
  description: stringType().optional(),
54591
54591
  status: ListDatasourcesStatus$outboundSchema,
@@ -55095,12 +55095,12 @@ var init_listpromptversions = __esm(() => {
55095
55095
  })(ListPromptVersionsResponseFormatType$ ||= {});
55096
55096
  ListPromptVersionsResponseFormatJsonSchema$inboundSchema = objectType({
55097
55097
  name: stringType(),
55098
- strict: booleanType(),
55098
+ strict: booleanType().optional(),
55099
55099
  schema: recordType(anyType())
55100
55100
  });
55101
55101
  ListPromptVersionsResponseFormatJsonSchema$outboundSchema = objectType({
55102
55102
  name: stringType(),
55103
- strict: booleanType(),
55103
+ strict: booleanType().optional(),
55104
55104
  schema: recordType(anyType())
55105
55105
  });
55106
55106
  ((ListPromptVersionsResponseFormatJsonSchema$) => {
@@ -56549,7 +56549,7 @@ var init_retrievecontact = __esm(() => {
56549
56549
  tags: arrayType(stringType()).optional(),
56550
56550
  metadata: recordType(anyType()).optional(),
56551
56551
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56552
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
56552
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
56553
56553
  }).transform((v2) => {
56554
56554
  return remap(v2, {
56555
56555
  _id: "id",
@@ -56567,7 +56567,7 @@ var init_retrievecontact = __esm(() => {
56567
56567
  tags: arrayType(stringType()).optional(),
56568
56568
  metadata: recordType(anyType()).optional(),
56569
56569
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56570
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
56570
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
56571
56571
  }).transform((v2) => {
56572
56572
  return remap(v2, {
56573
56573
  id: "_id",
@@ -57144,7 +57144,7 @@ var init_retrievedatapoint = __esm(() => {
57144
57144
  created_by_id: stringType().optional(),
57145
57145
  updated_by_id: stringType().optional(),
57146
57146
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57147
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
57147
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
57148
57148
  }).transform((v2) => {
57149
57149
  return remap(v2, {
57150
57150
  _id: "id",
@@ -57171,7 +57171,7 @@ var init_retrievedatapoint = __esm(() => {
57171
57171
  createdById: stringType().optional(),
57172
57172
  updatedById: stringType().optional(),
57173
57173
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57174
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
57174
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
57175
57175
  }).transform((v2) => {
57176
57176
  return remap(v2, {
57177
57177
  id: "_id",
@@ -57242,7 +57242,7 @@ var init_retrievedataset = __esm(() => {
57242
57242
  updated_by_id: stringType().optional(),
57243
57243
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
57244
57244
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57245
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
57245
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
57246
57246
  }).transform((v2) => {
57247
57247
  return remap(v2, {
57248
57248
  _id: "id",
@@ -57262,7 +57262,7 @@ var init_retrievedataset = __esm(() => {
57262
57262
  updatedById: stringType().optional(),
57263
57263
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
57264
57264
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57265
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
57265
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
57266
57266
  }).transform((v2) => {
57267
57267
  return remap(v2, {
57268
57268
  id: "_id",
@@ -57320,7 +57320,7 @@ var init_retrievedatasource = __esm(() => {
57320
57320
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
57321
57321
  })(RetrieveDatasourceStatus$ ||= {});
57322
57322
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
57323
- _id: stringType().default("01JXJ5J5EHACCQGWAXWXMYH4KX"),
57323
+ _id: stringType().default("01JXK1JQAZY4VP5EFXS1N20YQB"),
57324
57324
  display_name: stringType(),
57325
57325
  description: stringType().optional(),
57326
57326
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -57343,7 +57343,7 @@ var init_retrievedatasource = __esm(() => {
57343
57343
  });
57344
57344
  });
57345
57345
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
57346
- id: stringType().default("01JXJ5J5EHACCQGWAXWXMYH4KX"),
57346
+ id: stringType().default("01JXK1JQAZY4VP5EFXS1N20YQB"),
57347
57347
  displayName: stringType(),
57348
57348
  description: stringType().optional(),
57349
57349
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -58224,7 +58224,7 @@ var init_updatecontact = __esm(() => {
58224
58224
  tags: arrayType(stringType()).optional(),
58225
58225
  metadata: recordType(anyType()).optional(),
58226
58226
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58227
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
58227
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
58228
58228
  }).transform((v2) => {
58229
58229
  return remap(v2, {
58230
58230
  _id: "id",
@@ -58242,7 +58242,7 @@ var init_updatecontact = __esm(() => {
58242
58242
  tags: arrayType(stringType()).optional(),
58243
58243
  metadata: recordType(anyType()).optional(),
58244
58244
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58245
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
58245
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
58246
58246
  }).transform((v2) => {
58247
58247
  return remap(v2, {
58248
58248
  id: "_id",
@@ -59376,7 +59376,7 @@ var init_updatedatapoint = __esm(() => {
59376
59376
  created_by_id: stringType().optional(),
59377
59377
  updated_by_id: stringType().optional(),
59378
59378
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
59379
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
59379
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
59380
59380
  }).transform((v2) => {
59381
59381
  return remap(v2, {
59382
59382
  _id: "id",
@@ -59403,7 +59403,7 @@ var init_updatedatapoint = __esm(() => {
59403
59403
  createdById: stringType().optional(),
59404
59404
  updatedById: stringType().optional(),
59405
59405
  created: dateType().transform((v2) => v2.toISOString()).optional(),
59406
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
59406
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
59407
59407
  }).transform((v2) => {
59408
59408
  return remap(v2, {
59409
59409
  id: "_id",
@@ -59504,7 +59504,7 @@ var init_updatedataset = __esm(() => {
59504
59504
  parent_id: stringType().optional(),
59505
59505
  version: stringType().optional(),
59506
59506
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
59507
- updated: stringType().datetime({ offset: true }).default("2025-06-12T13:34:02.080Z").transform((v2) => new Date(v2))
59507
+ updated: stringType().datetime({ offset: true }).default("2025-06-12T21:43:40.411Z").transform((v2) => new Date(v2))
59508
59508
  }).transform((v2) => {
59509
59509
  return remap(v2, {
59510
59510
  _id: "id",
@@ -59527,7 +59527,7 @@ var init_updatedataset = __esm(() => {
59527
59527
  parentId: stringType().optional(),
59528
59528
  version: stringType().optional(),
59529
59529
  created: dateType().transform((v2) => v2.toISOString()).optional(),
59530
- updated: dateType().default(() => new Date("2025-06-12T13:34:02.080Z")).transform((v2) => v2.toISOString())
59530
+ updated: dateType().default(() => new Date("2025-06-12T21:43:40.411Z")).transform((v2) => v2.toISOString())
59531
59531
  }).transform((v2) => {
59532
59532
  return remap(v2, {
59533
59533
  id: "_id",
@@ -59608,7 +59608,7 @@ var init_updatedatasource = __esm(() => {
59608
59608
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
59609
59609
  })(UpdateDatasourceStatus$ ||= {});
59610
59610
  UpdateDatasourceResponseBody$inboundSchema = objectType({
59611
- _id: stringType().default("01JXJ5J5EJHSRMS4NJ8H45J9B6"),
59611
+ _id: stringType().default("01JXK1JQB0C7CZCSDFBNKSSHKA"),
59612
59612
  display_name: stringType(),
59613
59613
  description: stringType().optional(),
59614
59614
  status: UpdateDatasourceStatus$inboundSchema,
@@ -59631,7 +59631,7 @@ var init_updatedatasource = __esm(() => {
59631
59631
  });
59632
59632
  });
59633
59633
  UpdateDatasourceResponseBody$outboundSchema = objectType({
59634
- id: stringType().default("01JXJ5J5EJHSRMS4NJ8H45J9B6"),
59634
+ id: stringType().default("01JXK1JQB0C7CZCSDFBNKSSHKA"),
59635
59635
  displayName: stringType(),
59636
59636
  description: stringType().optional(),
59637
59637
  status: UpdateDatasourceStatus$outboundSchema,
@@ -60337,8 +60337,8 @@ var init_updateeval = __esm(() => {
60337
60337
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
60338
60338
  _id: stringType(),
60339
60339
  description: stringType(),
60340
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60341
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60340
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60341
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60342
60342
  guardrail_config: unionType([
60343
60343
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
60344
60344
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
@@ -60355,8 +60355,8 @@ var init_updateeval = __esm(() => {
60355
60355
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
60356
60356
  id: stringType(),
60357
60357
  description: stringType(),
60358
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60359
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60358
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60359
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60360
60360
  guardrailConfig: unionType([
60361
60361
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
60362
60362
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
@@ -60449,8 +60449,8 @@ var init_updateeval = __esm(() => {
60449
60449
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
60450
60450
  _id: stringType(),
60451
60451
  description: stringType(),
60452
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60453
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60452
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60453
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60454
60454
  guardrail_config: unionType([
60455
60455
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
60456
60456
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
@@ -60470,8 +60470,8 @@ var init_updateeval = __esm(() => {
60470
60470
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
60471
60471
  id: stringType(),
60472
60472
  description: stringType(),
60473
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60474
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60473
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60474
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60475
60475
  guardrailConfig: unionType([
60476
60476
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
60477
60477
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
@@ -60561,8 +60561,8 @@ var init_updateeval = __esm(() => {
60561
60561
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
60562
60562
  _id: stringType(),
60563
60563
  description: stringType(),
60564
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60565
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60564
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60565
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60566
60566
  guardrail_config: unionType([
60567
60567
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
60568
60568
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
@@ -60579,8 +60579,8 @@ var init_updateeval = __esm(() => {
60579
60579
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
60580
60580
  id: stringType(),
60581
60581
  description: stringType(),
60582
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60583
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60582
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60583
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60584
60584
  guardrailConfig: unionType([
60585
60585
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
60586
60586
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
@@ -60667,8 +60667,8 @@ var init_updateeval = __esm(() => {
60667
60667
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
60668
60668
  _id: stringType(),
60669
60669
  description: stringType(),
60670
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60671
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60670
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60671
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60672
60672
  guardrail_config: unionType([
60673
60673
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
60674
60674
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
@@ -60686,8 +60686,8 @@ var init_updateeval = __esm(() => {
60686
60686
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
60687
60687
  id: stringType(),
60688
60688
  description: stringType(),
60689
- created: stringType().default("2025-06-12T13:34:04.258Z"),
60690
- updated: stringType().default("2025-06-12T13:34:04.258Z"),
60689
+ created: stringType().default("2025-06-12T21:43:42.613Z"),
60690
+ updated: stringType().default("2025-06-12T21:43:42.613Z"),
60691
60691
  guardrailConfig: unionType([
60692
60692
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
60693
60693
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
@@ -61239,12 +61239,12 @@ var init_updateprompt = __esm(() => {
61239
61239
  })(UpdatePromptResponseFormatType$ ||= {});
61240
61240
  ResponseFormatJsonSchema$inboundSchema = objectType({
61241
61241
  name: stringType(),
61242
- strict: booleanType(),
61242
+ strict: booleanType().optional(),
61243
61243
  schema: recordType(anyType())
61244
61244
  });
61245
61245
  ResponseFormatJsonSchema$outboundSchema = objectType({
61246
61246
  name: stringType(),
61247
- strict: booleanType(),
61247
+ strict: booleanType().optional(),
61248
61248
  schema: recordType(anyType())
61249
61249
  });
61250
61250
  ((ResponseFormatJsonSchema$) => {
@@ -61743,12 +61743,12 @@ var init_updateprompt = __esm(() => {
61743
61743
  })(UpdatePromptResponseFormatPromptsResponseType$ ||= {});
61744
61744
  UpdatePromptResponseFormatJsonSchema$inboundSchema = objectType({
61745
61745
  name: stringType(),
61746
- strict: booleanType(),
61746
+ strict: booleanType().optional(),
61747
61747
  schema: recordType(anyType())
61748
61748
  });
61749
61749
  UpdatePromptResponseFormatJsonSchema$outboundSchema = objectType({
61750
61750
  name: stringType(),
61751
- strict: booleanType(),
61751
+ strict: booleanType().optional(),
61752
61752
  schema: recordType(anyType())
61753
61753
  });
61754
61754
  ((UpdatePromptResponseFormatJsonSchema$) => {
@@ -76540,7 +76540,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
76540
76540
  function createMCPServer(deps) {
76541
76541
  const server = new McpServer({
76542
76542
  name: "Orq",
76543
- version: "3.8.0-rc.21"
76543
+ version: "3.8.0-rc.22"
76544
76544
  });
76545
76545
  const client = new OrqCore({
76546
76546
  apiKey: deps.apiKey,
@@ -77964,7 +77964,7 @@ var routes = rn({
77964
77964
  var app = Ve(routes, {
77965
77965
  name: "mcp",
77966
77966
  versionInfo: {
77967
- currentVersion: "3.8.0-rc.21"
77967
+ currentVersion: "3.8.0-rc.22"
77968
77968
  }
77969
77969
  });
77970
77970
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -77972,5 +77972,5 @@ export {
77972
77972
  app
77973
77973
  };
77974
77974
 
77975
- //# debugId=41D5740E447B858E64756E2164756E21
77975
+ //# debugId=8F96572D702C770B64756E2164756E21
77976
77976
  //# sourceMappingURL=mcp-server.js.map