@orq-ai/node 3.8.0-rc.26 → 3.8.0-rc.28

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 (88) hide show
  1. package/bin/mcp-server.js +150 -163
  2. package/bin/mcp-server.js.map +34 -34
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/security.d.ts +2 -2
  7. package/lib/security.d.ts.map +1 -1
  8. package/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/server.js +1 -1
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/createprompt.d.ts +6 -6
  16. package/models/operations/createprompt.d.ts.map +1 -1
  17. package/models/operations/createprompt.js +6 -6
  18. package/models/operations/createprompt.js.map +1 -1
  19. package/models/operations/fileget.js +2 -2
  20. package/models/operations/filelist.js +2 -2
  21. package/models/operations/fileupload.js +2 -2
  22. package/models/operations/getallprompts.d.ts +4 -4
  23. package/models/operations/getallprompts.d.ts.map +1 -1
  24. package/models/operations/getallprompts.js +4 -4
  25. package/models/operations/getallprompts.js.map +1 -1
  26. package/models/operations/getevals.js +28 -28
  27. package/models/operations/getoneprompt.d.ts +4 -4
  28. package/models/operations/getoneprompt.d.ts.map +1 -1
  29. package/models/operations/getoneprompt.js +4 -4
  30. package/models/operations/getoneprompt.js.map +1 -1
  31. package/models/operations/getpromptversion.d.ts +4 -4
  32. package/models/operations/getpromptversion.d.ts.map +1 -1
  33. package/models/operations/getpromptversion.js +4 -4
  34. package/models/operations/getpromptversion.js.map +1 -1
  35. package/models/operations/listcontacts.js +2 -2
  36. package/models/operations/listdatasetdatapoints.js +2 -2
  37. package/models/operations/listdatasets.js +2 -2
  38. package/models/operations/listdatasources.js +2 -2
  39. package/models/operations/listpromptversions.d.ts +4 -4
  40. package/models/operations/listpromptversions.d.ts.map +1 -1
  41. package/models/operations/listpromptversions.js +4 -4
  42. package/models/operations/listpromptversions.js.map +1 -1
  43. package/models/operations/retrievecontact.js +2 -2
  44. package/models/operations/retrievedatapoint.js +2 -2
  45. package/models/operations/retrievedataset.js +2 -2
  46. package/models/operations/retrievedatasource.js +2 -2
  47. package/models/operations/updatecontact.js +2 -2
  48. package/models/operations/updatedatapoint.js +2 -2
  49. package/models/operations/updatedataset.js +2 -2
  50. package/models/operations/updatedatasource.js +2 -2
  51. package/models/operations/updateeval.js +16 -16
  52. package/models/operations/updateprompt.d.ts +15 -74
  53. package/models/operations/updateprompt.d.ts.map +1 -1
  54. package/models/operations/updateprompt.js +27 -52
  55. package/models/operations/updateprompt.js.map +1 -1
  56. package/package.json +1 -1
  57. package/src/lib/config.ts +3 -3
  58. package/src/lib/security.ts +2 -2
  59. package/src/mcp-server/mcp-server.ts +1 -1
  60. package/src/mcp-server/server.ts +1 -1
  61. package/src/models/operations/createcontact.ts +2 -2
  62. package/src/models/operations/createdataset.ts +2 -2
  63. package/src/models/operations/createdatasetitem.ts +2 -2
  64. package/src/models/operations/createdatasource.ts +2 -2
  65. package/src/models/operations/createeval.ts +16 -16
  66. package/src/models/operations/createprompt.ts +12 -12
  67. package/src/models/operations/fileget.ts +2 -2
  68. package/src/models/operations/filelist.ts +2 -2
  69. package/src/models/operations/fileupload.ts +2 -2
  70. package/src/models/operations/getallprompts.ts +8 -8
  71. package/src/models/operations/getevals.ts +28 -28
  72. package/src/models/operations/getoneprompt.ts +8 -8
  73. package/src/models/operations/getpromptversion.ts +8 -8
  74. package/src/models/operations/listcontacts.ts +2 -2
  75. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  76. package/src/models/operations/listdatasets.ts +2 -2
  77. package/src/models/operations/listdatasources.ts +2 -2
  78. package/src/models/operations/listpromptversions.ts +8 -8
  79. package/src/models/operations/retrievecontact.ts +2 -2
  80. package/src/models/operations/retrievedatapoint.ts +2 -2
  81. package/src/models/operations/retrievedataset.ts +2 -2
  82. package/src/models/operations/retrievedatasource.ts +2 -2
  83. package/src/models/operations/updatecontact.ts +2 -2
  84. package/src/models/operations/updatedatapoint.ts +2 -2
  85. package/src/models/operations/updatedataset.ts +2 -2
  86. package/src/models/operations/updatedatasource.ts +2 -2
  87. package/src/models/operations/updateeval.ts +16 -16
  88. package/src/models/operations/updateprompt.ts +33 -78
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.26",
34276
- genVersion: "2.628.0",
34277
- userAgent: "speakeasy-sdk/typescript 3.8.0-rc.26 2.628.0 2.0 @orq-ai/node"
34275
+ sdkVersion: "3.8.0-rc.28",
34276
+ genVersion: "2.629.1",
34277
+ userAgent: "speakeasy-sdk/typescript 3.8.0-rc.28 2.629.1 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-13T11:58:10.339Z").transform((v2) => new Date(v2))
36149
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
36169
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
36241
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
36261
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
37483
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
37510
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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("01JXMJFBP08VQAP9SZJXQY7HCH"),
37732
+ _id: stringType().default("01JXSSKVV58W67A08VN0N4Q7BP"),
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("01JXMJFBP08VQAP9SZJXQY7HCH"),
37755
+ id: stringType().default("01JXSSKVV58W67A08VN0N4Q7BP"),
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-13T11:58:12.581Z"),
38524
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38523
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38524
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38542
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38541
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38542
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38636
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38635
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38636
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38657
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38656
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38657
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38748
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38747
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38748
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38766
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38765
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38766
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38854
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38853
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38854
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
38873
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
38872
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
38873
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
38874
38874
  guardrailConfig: unionType([
38875
38875
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
38876
38876
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
@@ -39804,7 +39804,7 @@ var init_createprompt = __esm(() => {
39804
39804
  PromptConfig$inboundSchema = objectType({
39805
39805
  stream: booleanType().optional(),
39806
39806
  model: stringType().optional(),
39807
- model_type: ModelType$inboundSchema.optional(),
39807
+ model_type: nullableType(ModelType$inboundSchema).optional(),
39808
39808
  model_parameters: lazyType(() => ModelParameters$inboundSchema).optional(),
39809
39809
  provider: Provider$inboundSchema.optional(),
39810
39810
  version: stringType().optional(),
@@ -39818,7 +39818,7 @@ var init_createprompt = __esm(() => {
39818
39818
  PromptConfig$outboundSchema = objectType({
39819
39819
  stream: booleanType().optional(),
39820
39820
  model: stringType().optional(),
39821
- modelType: ModelType$outboundSchema.optional(),
39821
+ modelType: nullableType(ModelType$outboundSchema).optional(),
39822
39822
  modelParameters: lazyType(() => ModelParameters$outboundSchema).optional(),
39823
39823
  provider: Provider$outboundSchema.optional(),
39824
39824
  version: stringType().optional(),
@@ -40272,8 +40272,8 @@ var init_createprompt = __esm(() => {
40272
40272
  CreatePromptPromptConfig$inboundSchema = objectType({
40273
40273
  stream: booleanType().optional(),
40274
40274
  model: stringType().optional(),
40275
- model_db_id: stringType().optional(),
40276
- model_type: CreatePromptModelType$inboundSchema.optional(),
40275
+ model_db_id: nullableType(stringType()).optional(),
40276
+ model_type: nullableType(CreatePromptModelType$inboundSchema).optional(),
40277
40277
  model_parameters: lazyType(() => CreatePromptModelParameters$inboundSchema).optional(),
40278
40278
  provider: CreatePromptProvider$inboundSchema.optional(),
40279
40279
  integration_id: nullableType(stringType()).optional(),
@@ -40290,8 +40290,8 @@ var init_createprompt = __esm(() => {
40290
40290
  CreatePromptPromptConfig$outboundSchema = objectType({
40291
40291
  stream: booleanType().optional(),
40292
40292
  model: stringType().optional(),
40293
- modelDbId: stringType().optional(),
40294
- modelType: CreatePromptModelType$outboundSchema.optional(),
40293
+ modelDbId: nullableType(stringType()).optional(),
40294
+ modelType: nullableType(CreatePromptModelType$outboundSchema).optional(),
40295
40295
  modelParameters: lazyType(() => CreatePromptModelParameters$outboundSchema).optional(),
40296
40296
  provider: CreatePromptProvider$outboundSchema.optional(),
40297
40297
  integrationId: nullableType(stringType()).optional(),
@@ -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-13T11:58:13.378Z").transform((v2) => new Date(v2))
48569
+ created: stringType().datetime({ offset: true }).default("2025-06-15T12:39:13.075Z").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-13T11:58:13.378Z")).transform((v2) => v2.toISOString())
48585
+ created: dateType().default(() => new Date("2025-06-15T12:39:13.075Z")).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-13T11:58:13.378Z").transform((v2) => new Date(v2))
48656
+ created: stringType().datetime({ offset: true }).default("2025-06-15T12:39:13.075Z").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-13T11:58:13.378Z")).transform((v2) => v2.toISOString())
48672
+ created: dateType().default(() => new Date("2025-06-15T12:39:13.075Z")).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-13T11:58:13.378Z").transform((v2) => new Date(v2))
48804
+ created: stringType().datetime({ offset: true }).default("2025-06-15T12:39:13.075Z").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-13T11:58:13.378Z")).transform((v2) => v2.toISOString())
48820
+ created: dateType().default(() => new Date("2025-06-15T12:39:13.075Z")).transform((v2) => v2.toISOString())
48821
48821
  }).transform((v2) => {
48822
48822
  return remap(v2, {
48823
48823
  id: "_id",
@@ -49362,8 +49362,8 @@ var init_getallprompts = __esm(() => {
49362
49362
  GetAllPromptsPromptConfig$inboundSchema = objectType({
49363
49363
  stream: booleanType().optional(),
49364
49364
  model: stringType().optional(),
49365
- model_db_id: stringType().optional(),
49366
- model_type: GetAllPromptsModelType$inboundSchema.optional(),
49365
+ model_db_id: nullableType(stringType()).optional(),
49366
+ model_type: nullableType(GetAllPromptsModelType$inboundSchema).optional(),
49367
49367
  model_parameters: lazyType(() => GetAllPromptsModelParameters$inboundSchema).optional(),
49368
49368
  provider: GetAllPromptsProvider$inboundSchema.optional(),
49369
49369
  integration_id: nullableType(stringType()).optional(),
@@ -49380,8 +49380,8 @@ var init_getallprompts = __esm(() => {
49380
49380
  GetAllPromptsPromptConfig$outboundSchema = objectType({
49381
49381
  stream: booleanType().optional(),
49382
49382
  model: stringType().optional(),
49383
- modelDbId: stringType().optional(),
49384
- modelType: GetAllPromptsModelType$outboundSchema.optional(),
49383
+ modelDbId: nullableType(stringType()).optional(),
49384
+ modelType: nullableType(GetAllPromptsModelType$outboundSchema).optional(),
49385
49385
  modelParameters: lazyType(() => GetAllPromptsModelParameters$outboundSchema).optional(),
49386
49386
  provider: GetAllPromptsProvider$outboundSchema.optional(),
49387
49387
  integrationId: nullableType(stringType()).optional(),
@@ -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-13T11:58:12.581Z"),
49824
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
49823
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
49824
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
49842
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
49841
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
49842
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
49936
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
49935
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
49936
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
49956
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
49955
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
49956
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50508
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50507
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50508
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50552
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50551
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50552
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50666
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50665
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50666
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50684
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50683
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50684
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50778
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50777
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50778
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50799
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50798
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50799
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50890
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50889
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50890
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50908
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50907
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50908
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
50996
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
50995
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
50996
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
51015
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
51014
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
51015
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
51016
51016
  guardrailConfig: unionType([
51017
51017
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
51018
51018
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
@@ -51836,8 +51836,8 @@ var init_getoneprompt = __esm(() => {
51836
51836
  GetOnePromptPromptConfig$inboundSchema = objectType({
51837
51837
  stream: booleanType().optional(),
51838
51838
  model: stringType().optional(),
51839
- model_db_id: stringType().optional(),
51840
- model_type: GetOnePromptModelType$inboundSchema.optional(),
51839
+ model_db_id: nullableType(stringType()).optional(),
51840
+ model_type: nullableType(GetOnePromptModelType$inboundSchema).optional(),
51841
51841
  model_parameters: lazyType(() => GetOnePromptModelParameters$inboundSchema).optional(),
51842
51842
  provider: GetOnePromptProvider$inboundSchema.optional(),
51843
51843
  integration_id: nullableType(stringType()).optional(),
@@ -51854,8 +51854,8 @@ var init_getoneprompt = __esm(() => {
51854
51854
  GetOnePromptPromptConfig$outboundSchema = objectType({
51855
51855
  stream: booleanType().optional(),
51856
51856
  model: stringType().optional(),
51857
- modelDbId: stringType().optional(),
51858
- modelType: GetOnePromptModelType$outboundSchema.optional(),
51857
+ modelDbId: nullableType(stringType()).optional(),
51858
+ modelType: nullableType(GetOnePromptModelType$outboundSchema).optional(),
51859
51859
  modelParameters: lazyType(() => GetOnePromptModelParameters$outboundSchema).optional(),
51860
51860
  provider: GetOnePromptProvider$outboundSchema.optional(),
51861
51861
  integrationId: nullableType(stringType()).optional(),
@@ -52467,8 +52467,8 @@ var init_getpromptversion = __esm(() => {
52467
52467
  GetPromptVersionPromptConfig$inboundSchema = objectType({
52468
52468
  stream: booleanType().optional(),
52469
52469
  model: stringType().optional(),
52470
- model_db_id: stringType().optional(),
52471
- model_type: GetPromptVersionModelType$inboundSchema.optional(),
52470
+ model_db_id: nullableType(stringType()).optional(),
52471
+ model_type: nullableType(GetPromptVersionModelType$inboundSchema).optional(),
52472
52472
  model_parameters: lazyType(() => GetPromptVersionModelParameters$inboundSchema).optional(),
52473
52473
  provider: GetPromptVersionProvider$inboundSchema.optional(),
52474
52474
  integration_id: nullableType(stringType()).optional(),
@@ -52485,8 +52485,8 @@ var init_getpromptversion = __esm(() => {
52485
52485
  GetPromptVersionPromptConfig$outboundSchema = objectType({
52486
52486
  stream: booleanType().optional(),
52487
52487
  model: stringType().optional(),
52488
- modelDbId: stringType().optional(),
52489
- modelType: GetPromptVersionModelType$outboundSchema.optional(),
52488
+ modelDbId: nullableType(stringType()).optional(),
52489
+ modelType: nullableType(GetPromptVersionModelType$outboundSchema).optional(),
52490
52490
  modelParameters: lazyType(() => GetPromptVersionModelParameters$outboundSchema).optional(),
52491
52491
  provider: GetPromptVersionProvider$outboundSchema.optional(),
52492
52492
  integrationId: nullableType(stringType()).optional(),
@@ -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-13T11:58:10.339Z").transform((v2) => new Date(v2)),
53671
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString()),
53690
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
54305
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
54332
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
54440
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
54460
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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("01JXMJFBNZG7ZR5Z3D00NC3GM8"),
54565
+ _id: stringType().default("01JXSSKVV409XPBYM8R3MC61XF"),
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("01JXMJFBNZG7ZR5Z3D00NC3GM8"),
54588
+ id: stringType().default("01JXSSKVV409XPBYM8R3MC61XF"),
54589
54589
  displayName: stringType(),
54590
54590
  description: stringType().optional(),
54591
54591
  status: ListDatasourcesStatus$outboundSchema,
@@ -55432,8 +55432,8 @@ var init_listpromptversions = __esm(() => {
55432
55432
  ListPromptVersionsPromptConfig$inboundSchema = objectType({
55433
55433
  stream: booleanType().optional(),
55434
55434
  model: stringType().optional(),
55435
- model_db_id: stringType().optional(),
55436
- model_type: ListPromptVersionsModelType$inboundSchema.optional(),
55435
+ model_db_id: nullableType(stringType()).optional(),
55436
+ model_type: nullableType(ListPromptVersionsModelType$inboundSchema).optional(),
55437
55437
  model_parameters: lazyType(() => ListPromptVersionsModelParameters$inboundSchema).optional(),
55438
55438
  provider: ListPromptVersionsProvider$inboundSchema.optional(),
55439
55439
  integration_id: nullableType(stringType()).optional(),
@@ -55450,8 +55450,8 @@ var init_listpromptversions = __esm(() => {
55450
55450
  ListPromptVersionsPromptConfig$outboundSchema = objectType({
55451
55451
  stream: booleanType().optional(),
55452
55452
  model: stringType().optional(),
55453
- modelDbId: stringType().optional(),
55454
- modelType: ListPromptVersionsModelType$outboundSchema.optional(),
55453
+ modelDbId: nullableType(stringType()).optional(),
55454
+ modelType: nullableType(ListPromptVersionsModelType$outboundSchema).optional(),
55455
55455
  modelParameters: lazyType(() => ListPromptVersionsModelParameters$outboundSchema).optional(),
55456
55456
  provider: ListPromptVersionsProvider$outboundSchema.optional(),
55457
55457
  integrationId: nullableType(stringType()).optional(),
@@ -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-13T11:58:10.339Z").transform((v2) => new Date(v2))
56552
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
56570
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
57147
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
57174
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
57245
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
57265
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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("01JXMJFBNZMX9CX4V31BPPK4D2"),
57323
+ _id: stringType().default("01JXSSKVV5DQZMVHNYSY709EDY"),
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("01JXMJFBNZMX9CX4V31BPPK4D2"),
57346
+ id: stringType().default("01JXSSKVV5DQZMVHNYSY709EDY"),
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-13T11:58:10.339Z").transform((v2) => new Date(v2))
58227
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
58245
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
59379
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
59406
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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-13T11:58:10.339Z").transform((v2) => new Date(v2))
59507
+ updated: stringType().datetime({ offset: true }).default("2025-06-15T12:39:10.053Z").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-13T11:58:10.339Z")).transform((v2) => v2.toISOString())
59530
+ updated: dateType().default(() => new Date("2025-06-15T12:39:10.053Z")).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("01JXMJFBP1B5SWFA8S3Q0QW8DG"),
59611
+ _id: stringType().default("01JXSSKVV6F1F1S5TNK26QMFQM"),
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("01JXMJFBP1B5SWFA8S3Q0QW8DG"),
59634
+ id: stringType().default("01JXSSKVV6F1F1S5TNK26QMFQM"),
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-13T11:58:12.581Z"),
60341
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60340
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60341
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60359
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60358
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60359
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60453
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60452
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60453
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60474
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60473
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60474
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60565
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60564
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60565
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60583
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60582
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60583
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60671
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60670
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60671
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
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-13T11:58:12.581Z"),
60690
- updated: stringType().default("2025-06-13T11:58:12.581Z"),
60689
+ created: stringType().default("2025-06-15T12:39:12.311Z"),
60690
+ updated: stringType().default("2025-06-15T12:39:12.311Z"),
60691
60691
  guardrailConfig: unionType([
60692
60692
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
60693
60693
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
@@ -60976,21 +60976,10 @@ var init_updateknowledge = __esm(() => {
60976
60976
  });
60977
60977
 
60978
60978
  // src/models/operations/updateprompt.ts
60979
- var UpdatePromptModelType, UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptPromptsModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptModelType$inboundSchema, UpdatePromptModelType$outboundSchema, UpdatePromptModelType$, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, UpdatePromptResponseFormatPromptsType$inboundSchema, UpdatePromptResponseFormatPromptsType$outboundSchema, UpdatePromptResponseFormatPromptsType$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, UpdatePromptResponseFormat1$inboundSchema, UpdatePromptResponseFormat1$outboundSchema, UpdatePromptResponseFormat1$, UpdatePromptResponseFormat$inboundSchema, UpdatePromptResponseFormat$outboundSchema, UpdatePromptResponseFormat$, UpdatePromptPhotoRealVersion$inboundSchema, UpdatePromptPhotoRealVersion$outboundSchema, UpdatePromptPhotoRealVersion$, UpdatePromptEncodingFormat$inboundSchema, UpdatePromptEncodingFormat$outboundSchema, UpdatePromptEncodingFormat$, UpdatePromptReasoningEffort$inboundSchema, UpdatePromptReasoningEffort$outboundSchema, UpdatePromptReasoningEffort$, UpdatePromptModelParameters$inboundSchema, UpdatePromptModelParameters$outboundSchema, UpdatePromptModelParameters$, UpdatePromptProvider$inboundSchema, UpdatePromptProvider$outboundSchema, UpdatePromptProvider$, UpdatePromptRole$inboundSchema, UpdatePromptRole$outboundSchema, UpdatePromptRole$, UpdatePrompt2PromptsRequestType$inboundSchema, UpdatePrompt2PromptsRequestType$outboundSchema, UpdatePrompt2PromptsRequestType$, UpdatePrompt2File$inboundSchema, UpdatePrompt2File$outboundSchema, UpdatePrompt2File$, UpdatePrompt23$inboundSchema, UpdatePrompt23$outboundSchema, UpdatePrompt23$, UpdatePrompt2PromptsType$inboundSchema, UpdatePrompt2PromptsType$outboundSchema, UpdatePrompt2PromptsType$, UpdatePrompt2ImageUrl$inboundSchema, UpdatePrompt2ImageUrl$outboundSchema, UpdatePrompt2ImageUrl$, UpdatePrompt22$inboundSchema, UpdatePrompt22$outboundSchema, UpdatePrompt22$, UpdatePrompt2Type$inboundSchema, UpdatePrompt2Type$outboundSchema, UpdatePrompt2Type$, UpdatePrompt21$inboundSchema, UpdatePrompt21$outboundSchema, UpdatePrompt21$, UpdatePromptContent2$inboundSchema, UpdatePromptContent2$outboundSchema, UpdatePromptContent2$, UpdatePromptContent$inboundSchema, UpdatePromptContent$outboundSchema, UpdatePromptContent$, UpdatePromptType$inboundSchema, UpdatePromptType$outboundSchema, UpdatePromptType$, UpdatePromptFunction$inboundSchema, UpdatePromptFunction$outboundSchema, UpdatePromptFunction$, UpdatePromptToolCalls$inboundSchema, UpdatePromptToolCalls$outboundSchema, UpdatePromptToolCalls$, UpdatePromptMessages$inboundSchema, UpdatePromptMessages$outboundSchema, UpdatePromptMessages$, UpdatePromptPromptConfig$inboundSchema, UpdatePromptPromptConfig$outboundSchema, UpdatePromptPromptConfig$, UpdatePromptUseCases$inboundSchema, UpdatePromptUseCases$outboundSchema, UpdatePromptUseCases$, UpdatePromptLanguage$inboundSchema, UpdatePromptLanguage$outboundSchema, UpdatePromptLanguage$, UpdatePromptMetadata$inboundSchema, UpdatePromptMetadata$outboundSchema, UpdatePromptMetadata$, UpdatePromptRequestBody$inboundSchema, UpdatePromptRequestBody$outboundSchema, UpdatePromptRequestBody$, UpdatePromptRequest$inboundSchema, UpdatePromptRequest$outboundSchema, UpdatePromptRequest$, UpdatePromptPromptsType$inboundSchema, UpdatePromptPromptsType$outboundSchema, UpdatePromptPromptsType$, UpdatePromptPromptsModelType$inboundSchema, UpdatePromptPromptsModelType$outboundSchema, UpdatePromptPromptsModelType$, UpdatePromptPromptsFormat$inboundSchema, UpdatePromptPromptsFormat$outboundSchema, UpdatePromptPromptsFormat$, UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, UpdatePromptResponseFormatPrompts1$inboundSchema, UpdatePromptResponseFormatPrompts1$outboundSchema, UpdatePromptResponseFormatPrompts1$, UpdatePromptPromptsResponseFormat$inboundSchema, UpdatePromptPromptsResponseFormat$outboundSchema, UpdatePromptPromptsResponseFormat$, UpdatePromptPromptsPhotoRealVersion$inboundSchema, UpdatePromptPromptsPhotoRealVersion$outboundSchema, UpdatePromptPromptsPhotoRealVersion$, UpdatePromptPromptsEncodingFormat$inboundSchema, UpdatePromptPromptsEncodingFormat$outboundSchema, UpdatePromptPromptsEncodingFormat$, UpdatePromptPromptsReasoningEffort$inboundSchema, UpdatePromptPromptsReasoningEffort$outboundSchema, UpdatePromptPromptsReasoningEffort$, UpdatePromptPromptsModelParameters$inboundSchema, UpdatePromptPromptsModelParameters$outboundSchema, UpdatePromptPromptsModelParameters$, UpdatePromptPromptsProvider$inboundSchema, UpdatePromptPromptsProvider$outboundSchema, UpdatePromptPromptsProvider$, UpdatePromptPromptsRole$inboundSchema, UpdatePromptPromptsRole$outboundSchema, UpdatePromptPromptsRole$, UpdatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$, UpdatePrompt2PromptsFile$inboundSchema, UpdatePrompt2PromptsFile$outboundSchema, UpdatePrompt2PromptsFile$, UpdatePrompt2Prompts3$inboundSchema, UpdatePrompt2Prompts3$outboundSchema, UpdatePrompt2Prompts3$, UpdatePrompt2PromptsResponse200Type$inboundSchema, UpdatePrompt2PromptsResponse200Type$outboundSchema, UpdatePrompt2PromptsResponse200Type$, UpdatePrompt2PromptsImageUrl$inboundSchema, UpdatePrompt2PromptsImageUrl$outboundSchema, UpdatePrompt2PromptsImageUrl$, UpdatePrompt2Prompts2$inboundSchema, UpdatePrompt2Prompts2$outboundSchema, UpdatePrompt2Prompts2$, UpdatePrompt2PromptsResponseType$inboundSchema, UpdatePrompt2PromptsResponseType$outboundSchema, UpdatePrompt2PromptsResponseType$, UpdatePrompt2Prompts1$inboundSchema, UpdatePrompt2Prompts1$outboundSchema, UpdatePrompt2Prompts1$, UpdatePromptContentPrompts2$inboundSchema, UpdatePromptContentPrompts2$outboundSchema, UpdatePromptContentPrompts2$, UpdatePromptPromptsContent$inboundSchema, UpdatePromptPromptsContent$outboundSchema, UpdatePromptPromptsContent$, UpdatePromptPromptsResponseType$inboundSchema, UpdatePromptPromptsResponseType$outboundSchema, UpdatePromptPromptsResponseType$, UpdatePromptPromptsFunction$inboundSchema, UpdatePromptPromptsFunction$outboundSchema, UpdatePromptPromptsFunction$, UpdatePromptPromptsToolCalls$inboundSchema, UpdatePromptPromptsToolCalls$outboundSchema, UpdatePromptPromptsToolCalls$, UpdatePromptPromptsMessages$inboundSchema, UpdatePromptPromptsMessages$outboundSchema, UpdatePromptPromptsMessages$, UpdatePromptPromptsPromptConfig$inboundSchema, UpdatePromptPromptsPromptConfig$outboundSchema, UpdatePromptPromptsPromptConfig$, UpdatePromptPromptsUseCases$inboundSchema, UpdatePromptPromptsUseCases$outboundSchema, UpdatePromptPromptsUseCases$, UpdatePromptPromptsLanguage$inboundSchema, UpdatePromptPromptsLanguage$outboundSchema, UpdatePromptPromptsLanguage$, UpdatePromptPromptsMetadata$inboundSchema, UpdatePromptPromptsMetadata$outboundSchema, UpdatePromptPromptsMetadata$, UpdatePromptResponseBody$inboundSchema, UpdatePromptResponseBody$outboundSchema, UpdatePromptResponseBody$;
60979
+ var UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, UpdatePromptResponseFormatPromptsType$inboundSchema, UpdatePromptResponseFormatPromptsType$outboundSchema, UpdatePromptResponseFormatPromptsType$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, UpdatePromptResponseFormat1$inboundSchema, UpdatePromptResponseFormat1$outboundSchema, UpdatePromptResponseFormat1$, UpdatePromptResponseFormat$inboundSchema, UpdatePromptResponseFormat$outboundSchema, UpdatePromptResponseFormat$, UpdatePromptPhotoRealVersion$inboundSchema, UpdatePromptPhotoRealVersion$outboundSchema, UpdatePromptPhotoRealVersion$, UpdatePromptEncodingFormat$inboundSchema, UpdatePromptEncodingFormat$outboundSchema, UpdatePromptEncodingFormat$, UpdatePromptReasoningEffort$inboundSchema, UpdatePromptReasoningEffort$outboundSchema, UpdatePromptReasoningEffort$, UpdatePromptModelParameters$inboundSchema, UpdatePromptModelParameters$outboundSchema, UpdatePromptModelParameters$, UpdatePromptProvider$inboundSchema, UpdatePromptProvider$outboundSchema, UpdatePromptProvider$, UpdatePromptRole$inboundSchema, UpdatePromptRole$outboundSchema, UpdatePromptRole$, UpdatePrompt2PromptsRequestType$inboundSchema, UpdatePrompt2PromptsRequestType$outboundSchema, UpdatePrompt2PromptsRequestType$, UpdatePrompt2File$inboundSchema, UpdatePrompt2File$outboundSchema, UpdatePrompt2File$, UpdatePrompt23$inboundSchema, UpdatePrompt23$outboundSchema, UpdatePrompt23$, UpdatePrompt2PromptsType$inboundSchema, UpdatePrompt2PromptsType$outboundSchema, UpdatePrompt2PromptsType$, UpdatePrompt2ImageUrl$inboundSchema, UpdatePrompt2ImageUrl$outboundSchema, UpdatePrompt2ImageUrl$, UpdatePrompt22$inboundSchema, UpdatePrompt22$outboundSchema, UpdatePrompt22$, UpdatePrompt2Type$inboundSchema, UpdatePrompt2Type$outboundSchema, UpdatePrompt2Type$, UpdatePrompt21$inboundSchema, UpdatePrompt21$outboundSchema, UpdatePrompt21$, UpdatePromptContent2$inboundSchema, UpdatePromptContent2$outboundSchema, UpdatePromptContent2$, UpdatePromptContent$inboundSchema, UpdatePromptContent$outboundSchema, UpdatePromptContent$, UpdatePromptType$inboundSchema, UpdatePromptType$outboundSchema, UpdatePromptType$, UpdatePromptFunction$inboundSchema, UpdatePromptFunction$outboundSchema, UpdatePromptFunction$, UpdatePromptToolCalls$inboundSchema, UpdatePromptToolCalls$outboundSchema, UpdatePromptToolCalls$, UpdatePromptMessages$inboundSchema, UpdatePromptMessages$outboundSchema, UpdatePromptMessages$, UpdatePromptPromptConfig$inboundSchema, UpdatePromptPromptConfig$outboundSchema, UpdatePromptPromptConfig$, UpdatePromptUseCases$inboundSchema, UpdatePromptUseCases$outboundSchema, UpdatePromptUseCases$, UpdatePromptLanguage$inboundSchema, UpdatePromptLanguage$outboundSchema, UpdatePromptLanguage$, UpdatePromptMetadata$inboundSchema, UpdatePromptMetadata$outboundSchema, UpdatePromptMetadata$, UpdatePromptRequestBody$inboundSchema, UpdatePromptRequestBody$outboundSchema, UpdatePromptRequestBody$, UpdatePromptRequest$inboundSchema, UpdatePromptRequest$outboundSchema, UpdatePromptRequest$, UpdatePromptPromptsType$inboundSchema, UpdatePromptPromptsType$outboundSchema, UpdatePromptPromptsType$, UpdatePromptModelType$inboundSchema, UpdatePromptModelType$outboundSchema, UpdatePromptModelType$, UpdatePromptPromptsFormat$inboundSchema, UpdatePromptPromptsFormat$outboundSchema, UpdatePromptPromptsFormat$, UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, UpdatePromptResponseFormatPrompts1$inboundSchema, UpdatePromptResponseFormatPrompts1$outboundSchema, UpdatePromptResponseFormatPrompts1$, UpdatePromptPromptsResponseFormat$inboundSchema, UpdatePromptPromptsResponseFormat$outboundSchema, UpdatePromptPromptsResponseFormat$, UpdatePromptPromptsPhotoRealVersion$inboundSchema, UpdatePromptPromptsPhotoRealVersion$outboundSchema, UpdatePromptPromptsPhotoRealVersion$, UpdatePromptPromptsEncodingFormat$inboundSchema, UpdatePromptPromptsEncodingFormat$outboundSchema, UpdatePromptPromptsEncodingFormat$, UpdatePromptPromptsReasoningEffort$inboundSchema, UpdatePromptPromptsReasoningEffort$outboundSchema, UpdatePromptPromptsReasoningEffort$, UpdatePromptPromptsModelParameters$inboundSchema, UpdatePromptPromptsModelParameters$outboundSchema, UpdatePromptPromptsModelParameters$, UpdatePromptPromptsProvider$inboundSchema, UpdatePromptPromptsProvider$outboundSchema, UpdatePromptPromptsProvider$, UpdatePromptPromptsRole$inboundSchema, UpdatePromptPromptsRole$outboundSchema, UpdatePromptPromptsRole$, UpdatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$, UpdatePrompt2PromptsFile$inboundSchema, UpdatePrompt2PromptsFile$outboundSchema, UpdatePrompt2PromptsFile$, UpdatePrompt2Prompts3$inboundSchema, UpdatePrompt2Prompts3$outboundSchema, UpdatePrompt2Prompts3$, UpdatePrompt2PromptsResponse200Type$inboundSchema, UpdatePrompt2PromptsResponse200Type$outboundSchema, UpdatePrompt2PromptsResponse200Type$, UpdatePrompt2PromptsImageUrl$inboundSchema, UpdatePrompt2PromptsImageUrl$outboundSchema, UpdatePrompt2PromptsImageUrl$, UpdatePrompt2Prompts2$inboundSchema, UpdatePrompt2Prompts2$outboundSchema, UpdatePrompt2Prompts2$, UpdatePrompt2PromptsResponseType$inboundSchema, UpdatePrompt2PromptsResponseType$outboundSchema, UpdatePrompt2PromptsResponseType$, UpdatePrompt2Prompts1$inboundSchema, UpdatePrompt2Prompts1$outboundSchema, UpdatePrompt2Prompts1$, UpdatePromptContentPrompts2$inboundSchema, UpdatePromptContentPrompts2$outboundSchema, UpdatePromptContentPrompts2$, UpdatePromptPromptsContent$inboundSchema, UpdatePromptPromptsContent$outboundSchema, UpdatePromptPromptsContent$, UpdatePromptPromptsResponseType$inboundSchema, UpdatePromptPromptsResponseType$outboundSchema, UpdatePromptPromptsResponseType$, UpdatePromptPromptsFunction$inboundSchema, UpdatePromptPromptsFunction$outboundSchema, UpdatePromptPromptsFunction$, UpdatePromptPromptsToolCalls$inboundSchema, UpdatePromptPromptsToolCalls$outboundSchema, UpdatePromptPromptsToolCalls$, UpdatePromptPromptsMessages$inboundSchema, UpdatePromptPromptsMessages$outboundSchema, UpdatePromptPromptsMessages$, UpdatePromptPromptsPromptConfig$inboundSchema, UpdatePromptPromptsPromptConfig$outboundSchema, UpdatePromptPromptsPromptConfig$, UpdatePromptPromptsUseCases$inboundSchema, UpdatePromptPromptsUseCases$outboundSchema, UpdatePromptPromptsUseCases$, UpdatePromptPromptsLanguage$inboundSchema, UpdatePromptPromptsLanguage$outboundSchema, UpdatePromptPromptsLanguage$, UpdatePromptPromptsMetadata$inboundSchema, UpdatePromptPromptsMetadata$outboundSchema, UpdatePromptPromptsMetadata$, UpdatePromptResponseBody$inboundSchema, UpdatePromptResponseBody$outboundSchema, UpdatePromptResponseBody$;
60980
60980
  var init_updateprompt = __esm(() => {
60981
60981
  init_esm();
60982
60982
  init_primitives();
60983
- UpdatePromptModelType = {
60984
- Chat: "chat",
60985
- Completion: "completion",
60986
- Embedding: "embedding",
60987
- Vision: "vision",
60988
- Image: "image",
60989
- Tts: "tts",
60990
- Stt: "stt",
60991
- Rerank: "rerank",
60992
- Moderations: "moderations"
60993
- };
60994
60983
  UpdatePromptFormat = {
60995
60984
  Url: "url",
60996
60985
  B64Json: "b64_json",
@@ -61093,7 +61082,7 @@ var init_updateprompt = __esm(() => {
61093
61082
  UpdatePromptPromptsType = {
61094
61083
  Prompt: "prompt"
61095
61084
  };
61096
- UpdatePromptPromptsModelType = {
61085
+ UpdatePromptModelType = {
61097
61086
  Chat: "chat",
61098
61087
  Completion: "completion",
61099
61088
  Embedding: "embedding",
@@ -61203,12 +61192,6 @@ var init_updateprompt = __esm(() => {
61203
61192
  Russian: "Russian",
61204
61193
  Spanish: "Spanish"
61205
61194
  };
61206
- UpdatePromptModelType$inboundSchema = nativeEnumType(UpdatePromptModelType);
61207
- UpdatePromptModelType$outboundSchema = UpdatePromptModelType$inboundSchema;
61208
- ((UpdatePromptModelType$) => {
61209
- UpdatePromptModelType$.inboundSchema = UpdatePromptModelType$inboundSchema;
61210
- UpdatePromptModelType$.outboundSchema = UpdatePromptModelType$outboundSchema;
61211
- })(UpdatePromptModelType$ ||= {});
61212
61195
  UpdatePromptFormat$inboundSchema = nativeEnumType(UpdatePromptFormat);
61213
61196
  UpdatePromptFormat$outboundSchema = UpdatePromptFormat$inboundSchema;
61214
61197
  ((UpdatePromptFormat$) => {
@@ -61574,29 +61557,33 @@ var init_updateprompt = __esm(() => {
61574
61557
  UpdatePromptPromptConfig$inboundSchema = objectType({
61575
61558
  stream: booleanType().optional(),
61576
61559
  model: stringType().optional(),
61577
- model_type: UpdatePromptModelType$inboundSchema.optional(),
61578
61560
  model_parameters: lazyType(() => UpdatePromptModelParameters$inboundSchema).optional(),
61579
61561
  provider: UpdatePromptProvider$inboundSchema.optional(),
61580
61562
  version: stringType().optional(),
61581
- messages: arrayType(lazyType(() => UpdatePromptMessages$inboundSchema))
61563
+ messages: arrayType(lazyType(() => UpdatePromptMessages$inboundSchema)),
61564
+ model_db_id: nullableType(stringType()).optional(),
61565
+ model_type: nullableType(stringType()).optional()
61582
61566
  }).transform((v2) => {
61583
61567
  return remap(v2, {
61584
- model_type: "modelType",
61585
- model_parameters: "modelParameters"
61568
+ model_parameters: "modelParameters",
61569
+ model_db_id: "modelDbId",
61570
+ model_type: "modelType"
61586
61571
  });
61587
61572
  });
61588
61573
  UpdatePromptPromptConfig$outboundSchema = objectType({
61589
61574
  stream: booleanType().optional(),
61590
61575
  model: stringType().optional(),
61591
- modelType: UpdatePromptModelType$outboundSchema.optional(),
61592
61576
  modelParameters: lazyType(() => UpdatePromptModelParameters$outboundSchema).optional(),
61593
61577
  provider: UpdatePromptProvider$outboundSchema.optional(),
61594
61578
  version: stringType().optional(),
61595
- messages: arrayType(lazyType(() => UpdatePromptMessages$outboundSchema))
61579
+ messages: arrayType(lazyType(() => UpdatePromptMessages$outboundSchema)),
61580
+ modelDbId: nullableType(stringType()).optional(),
61581
+ modelType: nullableType(stringType()).optional()
61596
61582
  }).transform((v2) => {
61597
61583
  return remap(v2, {
61598
- modelType: "model_type",
61599
- modelParameters: "model_parameters"
61584
+ modelParameters: "model_parameters",
61585
+ modelDbId: "model_db_id",
61586
+ modelType: "model_type"
61600
61587
  });
61601
61588
  });
61602
61589
  ((UpdatePromptPromptConfig$) => {
@@ -61707,12 +61694,12 @@ var init_updateprompt = __esm(() => {
61707
61694
  UpdatePromptPromptsType$.inboundSchema = UpdatePromptPromptsType$inboundSchema;
61708
61695
  UpdatePromptPromptsType$.outboundSchema = UpdatePromptPromptsType$outboundSchema;
61709
61696
  })(UpdatePromptPromptsType$ ||= {});
61710
- UpdatePromptPromptsModelType$inboundSchema = nativeEnumType(UpdatePromptPromptsModelType);
61711
- UpdatePromptPromptsModelType$outboundSchema = UpdatePromptPromptsModelType$inboundSchema;
61712
- ((UpdatePromptPromptsModelType$) => {
61713
- UpdatePromptPromptsModelType$.inboundSchema = UpdatePromptPromptsModelType$inboundSchema;
61714
- UpdatePromptPromptsModelType$.outboundSchema = UpdatePromptPromptsModelType$outboundSchema;
61715
- })(UpdatePromptPromptsModelType$ ||= {});
61697
+ UpdatePromptModelType$inboundSchema = nativeEnumType(UpdatePromptModelType);
61698
+ UpdatePromptModelType$outboundSchema = UpdatePromptModelType$inboundSchema;
61699
+ ((UpdatePromptModelType$) => {
61700
+ UpdatePromptModelType$.inboundSchema = UpdatePromptModelType$inboundSchema;
61701
+ UpdatePromptModelType$.outboundSchema = UpdatePromptModelType$outboundSchema;
61702
+ })(UpdatePromptModelType$ ||= {});
61716
61703
  UpdatePromptPromptsFormat$inboundSchema = nativeEnumType(UpdatePromptPromptsFormat);
61717
61704
  UpdatePromptPromptsFormat$outboundSchema = UpdatePromptPromptsFormat$inboundSchema;
61718
61705
  ((UpdatePromptPromptsFormat$) => {
@@ -62080,8 +62067,8 @@ var init_updateprompt = __esm(() => {
62080
62067
  UpdatePromptPromptsPromptConfig$inboundSchema = objectType({
62081
62068
  stream: booleanType().optional(),
62082
62069
  model: stringType().optional(),
62083
- model_db_id: stringType().optional(),
62084
- model_type: UpdatePromptPromptsModelType$inboundSchema.optional(),
62070
+ model_db_id: nullableType(stringType()).optional(),
62071
+ model_type: nullableType(UpdatePromptModelType$inboundSchema).optional(),
62085
62072
  model_parameters: lazyType(() => UpdatePromptPromptsModelParameters$inboundSchema).optional(),
62086
62073
  provider: UpdatePromptPromptsProvider$inboundSchema.optional(),
62087
62074
  integration_id: nullableType(stringType()).optional(),
@@ -62098,8 +62085,8 @@ var init_updateprompt = __esm(() => {
62098
62085
  UpdatePromptPromptsPromptConfig$outboundSchema = objectType({
62099
62086
  stream: booleanType().optional(),
62100
62087
  model: stringType().optional(),
62101
- modelDbId: stringType().optional(),
62102
- modelType: UpdatePromptPromptsModelType$outboundSchema.optional(),
62088
+ modelDbId: nullableType(stringType()).optional(),
62089
+ modelType: nullableType(UpdatePromptModelType$outboundSchema).optional(),
62103
62090
  modelParameters: lazyType(() => UpdatePromptPromptsModelParameters$outboundSchema).optional(),
62104
62091
  provider: UpdatePromptPromptsProvider$outboundSchema.optional(),
62105
62092
  integrationId: nullableType(stringType()).optional(),
@@ -76540,7 +76527,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
76540
76527
  function createMCPServer(deps) {
76541
76528
  const server = new McpServer({
76542
76529
  name: "Orq",
76543
- version: "3.8.0-rc.26"
76530
+ version: "3.8.0-rc.28"
76544
76531
  });
76545
76532
  const client = new OrqCore({
76546
76533
  apiKey: deps.apiKey,
@@ -77964,7 +77951,7 @@ var routes = rn({
77964
77951
  var app = Ve(routes, {
77965
77952
  name: "mcp",
77966
77953
  versionInfo: {
77967
- currentVersion: "3.8.0-rc.26"
77954
+ currentVersion: "3.8.0-rc.28"
77968
77955
  }
77969
77956
  });
77970
77957
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -77972,5 +77959,5 @@ export {
77972
77959
  app
77973
77960
  };
77974
77961
 
77975
- //# debugId=AF76F648A5DE887064756E2164756E21
77962
+ //# debugId=DDD6F49224F0275864756E2164756E21
77976
77963
  //# sourceMappingURL=mcp-server.js.map