@orq-ai/node 3.12.0-rc.21 → 3.12.0-rc.23

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 (70) hide show
  1. package/bin/mcp-server.js +186 -114
  2. package/bin/mcp-server.js.map +32 -32
  3. package/docs/sdks/proxy/README.md +72 -0
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +2 -2
  7. package/lib/config.js +2 -2
  8. package/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/server.js +1 -1
  10. package/models/operations/createbudget.js +2 -2
  11. package/models/operations/createcontact.js +2 -2
  12. package/models/operations/createdataset.js +2 -2
  13. package/models/operations/createdatasetitem.js +2 -2
  14. package/models/operations/createdatasource.js +2 -2
  15. package/models/operations/createeval.js +16 -16
  16. package/models/operations/fileget.js +2 -2
  17. package/models/operations/filelist.js +2 -2
  18. package/models/operations/fileupload.js +2 -2
  19. package/models/operations/getbudget.js +2 -2
  20. package/models/operations/getevals.js +28 -28
  21. package/models/operations/listbudgets.js +2 -2
  22. package/models/operations/listcontacts.js +2 -2
  23. package/models/operations/listdatasetdatapoints.js +2 -2
  24. package/models/operations/listdatasets.js +2 -2
  25. package/models/operations/listdatasources.js +2 -2
  26. package/models/operations/postv2proxyrerank.d.ts +170 -0
  27. package/models/operations/postv2proxyrerank.d.ts.map +1 -1
  28. package/models/operations/postv2proxyrerank.js +152 -1
  29. package/models/operations/postv2proxyrerank.js.map +1 -1
  30. package/models/operations/retrievecontact.js +2 -2
  31. package/models/operations/retrievedatapoint.js +2 -2
  32. package/models/operations/retrievedataset.js +2 -2
  33. package/models/operations/retrievedatasource.js +2 -2
  34. package/models/operations/updatebudget.js +2 -2
  35. package/models/operations/updatecontact.js +2 -2
  36. package/models/operations/updatedatapoint.js +2 -2
  37. package/models/operations/updatedataset.js +2 -2
  38. package/models/operations/updatedatasource.js +2 -2
  39. package/models/operations/updateeval.js +16 -16
  40. package/package.json +1 -1
  41. package/src/lib/config.ts +2 -2
  42. package/src/mcp-server/mcp-server.ts +1 -1
  43. package/src/mcp-server/server.ts +1 -1
  44. package/src/models/operations/createbudget.ts +2 -2
  45. package/src/models/operations/createcontact.ts +2 -2
  46. package/src/models/operations/createdataset.ts +2 -2
  47. package/src/models/operations/createdatasetitem.ts +2 -2
  48. package/src/models/operations/createdatasource.ts +2 -2
  49. package/src/models/operations/createeval.ts +16 -16
  50. package/src/models/operations/fileget.ts +2 -2
  51. package/src/models/operations/filelist.ts +2 -2
  52. package/src/models/operations/fileupload.ts +2 -2
  53. package/src/models/operations/getbudget.ts +2 -2
  54. package/src/models/operations/getevals.ts +28 -28
  55. package/src/models/operations/listbudgets.ts +2 -2
  56. package/src/models/operations/listcontacts.ts +2 -2
  57. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  58. package/src/models/operations/listdatasets.ts +2 -2
  59. package/src/models/operations/listdatasources.ts +2 -2
  60. package/src/models/operations/postv2proxyrerank.ts +330 -0
  61. package/src/models/operations/retrievecontact.ts +2 -2
  62. package/src/models/operations/retrievedatapoint.ts +2 -2
  63. package/src/models/operations/retrievedataset.ts +2 -2
  64. package/src/models/operations/retrievedatasource.ts +2 -2
  65. package/src/models/operations/updatebudget.ts +2 -2
  66. package/src/models/operations/updatecontact.ts +2 -2
  67. package/src/models/operations/updatedatapoint.ts +2 -2
  68. package/src/models/operations/updatedataset.ts +2 -2
  69. package/src/models/operations/updatedatasource.ts +2 -2
  70. package/src/models/operations/updateeval.ts +16 -16
package/bin/mcp-server.js CHANGED
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
34203
34203
  SDK_METADATA = {
34204
34204
  language: "typescript",
34205
34205
  openapiDocVersion: "2.0",
34206
- sdkVersion: "3.12.0-rc.21",
34206
+ sdkVersion: "3.12.0-rc.23",
34207
34207
  genVersion: "2.687.13",
34208
- userAgent: "speakeasy-sdk/typescript 3.12.0-rc.21 2.687.13 2.0 @orq-ai/node"
34208
+ userAgent: "speakeasy-sdk/typescript 3.12.0-rc.23 2.687.13 2.0 @orq-ai/node"
34209
34209
  };
34210
34210
  });
34211
34211
 
@@ -36181,7 +36181,7 @@ var init_createbudget = __esm(() => {
36181
36181
  is_active: booleanType(),
36182
36182
  consumption: lazyType(() => Consumption$inboundSchema).optional(),
36183
36183
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36184
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
36184
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
36185
36185
  }).transform((v2) => {
36186
36186
  return remap(v2, {
36187
36187
  _id: "id",
@@ -36199,7 +36199,7 @@ var init_createbudget = __esm(() => {
36199
36199
  isActive: booleanType(),
36200
36200
  consumption: lazyType(() => Consumption$outboundSchema).optional(),
36201
36201
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36202
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
36202
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
36203
36203
  }).transform((v2) => {
36204
36204
  return remap(v2, {
36205
36205
  id: "_id",
@@ -41317,7 +41317,7 @@ var init_createcontact = __esm(() => {
41317
41317
  tags: arrayType(stringType()).optional(),
41318
41318
  metadata: recordType(anyType()).optional(),
41319
41319
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
41320
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
41320
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
41321
41321
  }).transform((v2) => {
41322
41322
  return remap(v2, {
41323
41323
  _id: "id",
@@ -41337,7 +41337,7 @@ var init_createcontact = __esm(() => {
41337
41337
  tags: arrayType(stringType()).optional(),
41338
41338
  metadata: recordType(anyType()).optional(),
41339
41339
  created: dateType().transform((v2) => v2.toISOString()).optional(),
41340
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
41340
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
41341
41341
  }).transform((v2) => {
41342
41342
  return remap(v2, {
41343
41343
  id: "_id",
@@ -41409,7 +41409,7 @@ var init_createdataset = __esm(() => {
41409
41409
  updated_by_id: stringType().optional(),
41410
41410
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
41411
41411
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
41412
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
41412
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
41413
41413
  }).transform((v2) => {
41414
41414
  return remap(v2, {
41415
41415
  _id: "id",
@@ -41429,7 +41429,7 @@ var init_createdataset = __esm(() => {
41429
41429
  updatedById: stringType().optional(),
41430
41430
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
41431
41431
  created: dateType().transform((v2) => v2.toISOString()).optional(),
41432
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
41432
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
41433
41433
  }).transform((v2) => {
41434
41434
  return remap(v2, {
41435
41435
  id: "_id",
@@ -42833,7 +42833,7 @@ var init_createdatasetitem = __esm(() => {
42833
42833
  created_by_id: stringType().optional(),
42834
42834
  updated_by_id: stringType().optional(),
42835
42835
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
42836
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
42836
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
42837
42837
  }).transform((v2) => {
42838
42838
  return remap(v2, {
42839
42839
  _id: "id",
@@ -42860,7 +42860,7 @@ var init_createdatasetitem = __esm(() => {
42860
42860
  createdById: stringType().optional(),
42861
42861
  updatedById: stringType().optional(),
42862
42862
  created: dateType().transform((v2) => v2.toISOString()).optional(),
42863
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
42863
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
42864
42864
  }).transform((v2) => {
42865
42865
  return remap(v2, {
42866
42866
  id: "_id",
@@ -43082,7 +43082,7 @@ var init_createdatasource = __esm(() => {
43082
43082
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
43083
43083
  })(CreateDatasourceStatus$ ||= {});
43084
43084
  CreateDatasourceResponseBody$inboundSchema = objectType({
43085
- _id: stringType().default("01K3R8SPE4C88MCX077V5A2CBM"),
43085
+ _id: stringType().default("01K42HWBGYJPA5EFBNN8XG4VGF"),
43086
43086
  display_name: stringType(),
43087
43087
  description: stringType().optional(),
43088
43088
  status: CreateDatasourceStatus$inboundSchema,
@@ -43105,7 +43105,7 @@ var init_createdatasource = __esm(() => {
43105
43105
  });
43106
43106
  });
43107
43107
  CreateDatasourceResponseBody$outboundSchema = objectType({
43108
- id: stringType().default("01K3R8SPE4C88MCX077V5A2CBM"),
43108
+ id: stringType().default("01K42HWBGYJPA5EFBNN8XG4VGF"),
43109
43109
  displayName: stringType(),
43110
43110
  description: stringType().optional(),
43111
43111
  status: CreateDatasourceStatus$outboundSchema,
@@ -43781,8 +43781,8 @@ var init_createeval = __esm(() => {
43781
43781
  ResponseBodyPython$inboundSchema = objectType({
43782
43782
  _id: stringType(),
43783
43783
  description: stringType(),
43784
- created: stringType().default("2025-08-28T12:00:12.628Z"),
43785
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
43784
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
43785
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
43786
43786
  guardrail_config: unionType([
43787
43787
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
43788
43788
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -43799,8 +43799,8 @@ var init_createeval = __esm(() => {
43799
43799
  ResponseBodyPython$outboundSchema = objectType({
43800
43800
  id: stringType(),
43801
43801
  description: stringType(),
43802
- created: stringType().default("2025-08-28T12:00:12.628Z"),
43803
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
43802
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
43803
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
43804
43804
  guardrailConfig: unionType([
43805
43805
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
43806
43806
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -43893,8 +43893,8 @@ var init_createeval = __esm(() => {
43893
43893
  ResponseBodyHTTP$inboundSchema = objectType({
43894
43894
  _id: stringType(),
43895
43895
  description: stringType(),
43896
- created: stringType().default("2025-08-28T12:00:12.628Z"),
43897
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
43896
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
43897
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
43898
43898
  guardrail_config: unionType([
43899
43899
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
43900
43900
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -43914,8 +43914,8 @@ var init_createeval = __esm(() => {
43914
43914
  ResponseBodyHTTP$outboundSchema = objectType({
43915
43915
  id: stringType(),
43916
43916
  description: stringType(),
43917
- created: stringType().default("2025-08-28T12:00:12.628Z"),
43918
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
43917
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
43918
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
43919
43919
  guardrailConfig: unionType([
43920
43920
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
43921
43921
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -44005,8 +44005,8 @@ var init_createeval = __esm(() => {
44005
44005
  ResponseBodyJSON$inboundSchema = objectType({
44006
44006
  _id: stringType(),
44007
44007
  description: stringType(),
44008
- created: stringType().default("2025-08-28T12:00:12.628Z"),
44009
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
44008
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
44009
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
44010
44010
  guardrail_config: unionType([
44011
44011
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
44012
44012
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -44023,8 +44023,8 @@ var init_createeval = __esm(() => {
44023
44023
  ResponseBodyJSON$outboundSchema = objectType({
44024
44024
  id: stringType(),
44025
44025
  description: stringType(),
44026
- created: stringType().default("2025-08-28T12:00:12.628Z"),
44027
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
44026
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
44027
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
44028
44028
  guardrailConfig: unionType([
44029
44029
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
44030
44030
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -44111,8 +44111,8 @@ var init_createeval = __esm(() => {
44111
44111
  ResponseBodyLLM$inboundSchema = objectType({
44112
44112
  _id: stringType(),
44113
44113
  description: stringType(),
44114
- created: stringType().default("2025-08-28T12:00:12.628Z"),
44115
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
44114
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
44115
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
44116
44116
  guardrail_config: unionType([
44117
44117
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
44118
44118
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -44130,8 +44130,8 @@ var init_createeval = __esm(() => {
44130
44130
  ResponseBodyLLM$outboundSchema = objectType({
44131
44131
  id: stringType(),
44132
44132
  description: stringType(),
44133
- created: stringType().default("2025-08-28T12:00:12.628Z"),
44134
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
44133
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
44134
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
44135
44135
  guardrailConfig: unionType([
44136
44136
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
44137
44137
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -56763,7 +56763,7 @@ var init_fileget = __esm(() => {
56763
56763
  bytes: numberType(),
56764
56764
  file_name: stringType(),
56765
56765
  workspace_id: stringType(),
56766
- created: stringType().datetime({ offset: true }).default("2025-08-28T12:00:13.551Z").transform((v2) => new Date(v2))
56766
+ created: stringType().datetime({ offset: true }).default("2025-09-01T11:51:22.717Z").transform((v2) => new Date(v2))
56767
56767
  }).transform((v2) => {
56768
56768
  return remap(v2, {
56769
56769
  _id: "id",
@@ -56779,7 +56779,7 @@ var init_fileget = __esm(() => {
56779
56779
  bytes: numberType(),
56780
56780
  fileName: stringType(),
56781
56781
  workspaceId: stringType(),
56782
- created: dateType().default(() => new Date("2025-08-28T12:00:13.551Z")).transform((v2) => v2.toISOString())
56782
+ created: dateType().default(() => new Date("2025-09-01T11:51:22.717Z")).transform((v2) => v2.toISOString())
56783
56783
  }).transform((v2) => {
56784
56784
  return remap(v2, {
56785
56785
  id: "_id",
@@ -56850,7 +56850,7 @@ var init_filelist = __esm(() => {
56850
56850
  bytes: numberType(),
56851
56851
  file_name: stringType(),
56852
56852
  workspace_id: stringType(),
56853
- created: stringType().datetime({ offset: true }).default("2025-08-28T12:00:13.551Z").transform((v2) => new Date(v2))
56853
+ created: stringType().datetime({ offset: true }).default("2025-09-01T11:51:22.717Z").transform((v2) => new Date(v2))
56854
56854
  }).transform((v2) => {
56855
56855
  return remap(v2, {
56856
56856
  _id: "id",
@@ -56866,7 +56866,7 @@ var init_filelist = __esm(() => {
56866
56866
  bytes: numberType(),
56867
56867
  fileName: stringType(),
56868
56868
  workspaceId: stringType(),
56869
- created: dateType().default(() => new Date("2025-08-28T12:00:13.551Z")).transform((v2) => v2.toISOString())
56869
+ created: dateType().default(() => new Date("2025-09-01T11:51:22.717Z")).transform((v2) => v2.toISOString())
56870
56870
  }).transform((v2) => {
56871
56871
  return remap(v2, {
56872
56872
  id: "_id",
@@ -56998,7 +56998,7 @@ var init_fileupload = __esm(() => {
56998
56998
  bytes: numberType(),
56999
56999
  file_name: stringType(),
57000
57000
  workspace_id: stringType(),
57001
- created: stringType().datetime({ offset: true }).default("2025-08-28T12:00:13.551Z").transform((v2) => new Date(v2))
57001
+ created: stringType().datetime({ offset: true }).default("2025-09-01T11:51:22.717Z").transform((v2) => new Date(v2))
57002
57002
  }).transform((v2) => {
57003
57003
  return remap(v2, {
57004
57004
  _id: "id",
@@ -57014,7 +57014,7 @@ var init_fileupload = __esm(() => {
57014
57014
  bytes: numberType(),
57015
57015
  fileName: stringType(),
57016
57016
  workspaceId: stringType(),
57017
- created: dateType().default(() => new Date("2025-08-28T12:00:13.551Z")).transform((v2) => v2.toISOString())
57017
+ created: dateType().default(() => new Date("2025-09-01T11:51:22.717Z")).transform((v2) => v2.toISOString())
57018
57018
  }).transform((v2) => {
57019
57019
  return remap(v2, {
57020
57020
  id: "_id",
@@ -57831,7 +57831,7 @@ var init_getbudget = __esm(() => {
57831
57831
  is_active: booleanType(),
57832
57832
  consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
57833
57833
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57834
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
57834
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
57835
57835
  }).transform((v2) => {
57836
57836
  return remap(v2, {
57837
57837
  _id: "id",
@@ -57849,7 +57849,7 @@ var init_getbudget = __esm(() => {
57849
57849
  isActive: booleanType(),
57850
57850
  consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
57851
57851
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57852
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
57852
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
57853
57853
  }).transform((v2) => {
57854
57854
  return remap(v2, {
57855
57855
  id: "_id",
@@ -58213,8 +58213,8 @@ var init_getevals = __esm(() => {
58213
58213
  Typescript$inboundSchema = objectType({
58214
58214
  _id: stringType(),
58215
58215
  description: stringType(),
58216
- created: stringType().default("2025-08-28T12:00:12.628Z"),
58217
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
58216
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
58217
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
58218
58218
  guardrail_config: unionType([
58219
58219
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
58220
58220
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -58231,8 +58231,8 @@ var init_getevals = __esm(() => {
58231
58231
  Typescript$outboundSchema = objectType({
58232
58232
  id: stringType(),
58233
58233
  description: stringType(),
58234
- created: stringType().default("2025-08-28T12:00:12.628Z"),
58235
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
58234
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
58235
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
58236
58236
  guardrailConfig: unionType([
58237
58237
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
58238
58238
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -58325,8 +58325,8 @@ var init_getevals = __esm(() => {
58325
58325
  Ragas$inboundSchema = objectType({
58326
58326
  _id: stringType(),
58327
58327
  description: stringType(),
58328
- created: stringType().default("2025-08-28T12:00:12.628Z"),
58329
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
58328
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
58329
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
58330
58330
  guardrail_config: unionType([
58331
58331
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
58332
58332
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -58345,8 +58345,8 @@ var init_getevals = __esm(() => {
58345
58345
  Ragas$outboundSchema = objectType({
58346
58346
  id: stringType(),
58347
58347
  description: stringType(),
58348
- created: stringType().default("2025-08-28T12:00:12.628Z"),
58349
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
58348
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
58349
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
58350
58350
  guardrailConfig: unionType([
58351
58351
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
58352
58352
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -59099,8 +59099,8 @@ var init_getevals = __esm(() => {
59099
59099
  DataFunction$inboundSchema = objectType({
59100
59100
  _id: stringType(),
59101
59101
  description: stringType(),
59102
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59103
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59102
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59103
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59104
59104
  guardrail_config: unionType([
59105
59105
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
59106
59106
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -59154,8 +59154,8 @@ var init_getevals = __esm(() => {
59154
59154
  DataFunction$outboundSchema = objectType({
59155
59155
  id: stringType(),
59156
59156
  description: stringType(),
59157
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59158
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59157
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59158
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59159
59159
  guardrailConfig: unionType([
59160
59160
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
59161
59161
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -59279,8 +59279,8 @@ var init_getevals = __esm(() => {
59279
59279
  DataPython$inboundSchema = objectType({
59280
59280
  _id: stringType(),
59281
59281
  description: stringType(),
59282
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59283
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59282
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59283
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59284
59284
  guardrail_config: unionType([
59285
59285
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
59286
59286
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -59297,8 +59297,8 @@ var init_getevals = __esm(() => {
59297
59297
  DataPython$outboundSchema = objectType({
59298
59298
  id: stringType(),
59299
59299
  description: stringType(),
59300
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59301
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59300
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59301
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59302
59302
  guardrailConfig: unionType([
59303
59303
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
59304
59304
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -59391,8 +59391,8 @@ var init_getevals = __esm(() => {
59391
59391
  DataHTTP$inboundSchema = objectType({
59392
59392
  _id: stringType(),
59393
59393
  description: stringType(),
59394
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59395
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59394
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59395
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59396
59396
  guardrail_config: unionType([
59397
59397
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
59398
59398
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -59412,8 +59412,8 @@ var init_getevals = __esm(() => {
59412
59412
  DataHTTP$outboundSchema = objectType({
59413
59413
  id: stringType(),
59414
59414
  description: stringType(),
59415
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59416
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59415
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59416
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59417
59417
  guardrailConfig: unionType([
59418
59418
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
59419
59419
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -59503,8 +59503,8 @@ var init_getevals = __esm(() => {
59503
59503
  DataJSON$inboundSchema = objectType({
59504
59504
  _id: stringType(),
59505
59505
  description: stringType(),
59506
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59507
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59506
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59507
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59508
59508
  guardrail_config: unionType([
59509
59509
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
59510
59510
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -59521,8 +59521,8 @@ var init_getevals = __esm(() => {
59521
59521
  DataJSON$outboundSchema = objectType({
59522
59522
  id: stringType(),
59523
59523
  description: stringType(),
59524
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59525
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59524
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59525
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59526
59526
  guardrailConfig: unionType([
59527
59527
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
59528
59528
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -59609,8 +59609,8 @@ var init_getevals = __esm(() => {
59609
59609
  DataLLM$inboundSchema = objectType({
59610
59610
  _id: stringType(),
59611
59611
  description: stringType(),
59612
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59613
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59612
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59613
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59614
59614
  guardrail_config: unionType([
59615
59615
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
59616
59616
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -59628,8 +59628,8 @@ var init_getevals = __esm(() => {
59628
59628
  DataLLM$outboundSchema = objectType({
59629
59629
  id: stringType(),
59630
59630
  description: stringType(),
59631
- created: stringType().default("2025-08-28T12:00:12.628Z"),
59632
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
59631
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
59632
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
59633
59633
  guardrailConfig: unionType([
59634
59634
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
59635
59635
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -62166,7 +62166,7 @@ var init_listbudgets = __esm(() => {
62166
62166
  is_active: booleanType(),
62167
62167
  consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
62168
62168
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62169
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
62169
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
62170
62170
  }).transform((v2) => {
62171
62171
  return remap(v2, {
62172
62172
  _id: "id",
@@ -62184,7 +62184,7 @@ var init_listbudgets = __esm(() => {
62184
62184
  isActive: booleanType(),
62185
62185
  consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
62186
62186
  created: dateType().transform((v2) => v2.toISOString()).optional(),
62187
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
62187
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
62188
62188
  }).transform((v2) => {
62189
62189
  return remap(v2, {
62190
62190
  id: "_id",
@@ -62453,7 +62453,7 @@ var init_listcontacts = __esm(() => {
62453
62453
  tags: arrayType(stringType()).optional(),
62454
62454
  metadata: recordType(anyType()).optional(),
62455
62455
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62456
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2)),
62456
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2)),
62457
62457
  metrics: lazyType(() => Metrics$inboundSchema)
62458
62458
  }).transform((v2) => {
62459
62459
  return remap(v2, {
@@ -62472,7 +62472,7 @@ var init_listcontacts = __esm(() => {
62472
62472
  tags: arrayType(stringType()).optional(),
62473
62473
  metadata: recordType(anyType()).optional(),
62474
62474
  created: dateType().transform((v2) => v2.toISOString()).optional(),
62475
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString()),
62475
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString()),
62476
62476
  metrics: lazyType(() => Metrics$outboundSchema)
62477
62477
  }).transform((v2) => {
62478
62478
  return remap(v2, {
@@ -63223,7 +63223,7 @@ var init_listdatasetdatapoints = __esm(() => {
63223
63223
  created_by_id: stringType().optional(),
63224
63224
  updated_by_id: stringType().optional(),
63225
63225
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
63226
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
63226
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
63227
63227
  }).transform((v2) => {
63228
63228
  return remap(v2, {
63229
63229
  _id: "id",
@@ -63250,7 +63250,7 @@ var init_listdatasetdatapoints = __esm(() => {
63250
63250
  createdById: stringType().optional(),
63251
63251
  updatedById: stringType().optional(),
63252
63252
  created: dateType().transform((v2) => v2.toISOString()).optional(),
63253
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
63253
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
63254
63254
  }).transform((v2) => {
63255
63255
  return remap(v2, {
63256
63256
  id: "_id",
@@ -63358,7 +63358,7 @@ var init_listdatasets = __esm(() => {
63358
63358
  updated_by_id: stringType().optional(),
63359
63359
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
63360
63360
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
63361
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
63361
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
63362
63362
  }).transform((v2) => {
63363
63363
  return remap(v2, {
63364
63364
  _id: "id",
@@ -63378,7 +63378,7 @@ var init_listdatasets = __esm(() => {
63378
63378
  updatedById: stringType().optional(),
63379
63379
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
63380
63380
  created: dateType().transform((v2) => v2.toISOString()).optional(),
63381
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
63381
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
63382
63382
  }).transform((v2) => {
63383
63383
  return remap(v2, {
63384
63384
  id: "_id",
@@ -63483,7 +63483,7 @@ var init_listdatasources = __esm(() => {
63483
63483
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
63484
63484
  })(ListDatasourcesStatus$ ||= {});
63485
63485
  ListDatasourcesData$inboundSchema = objectType({
63486
- _id: stringType().default("01K3R8SPE2ZZEN5VP69ABFX4PG"),
63486
+ _id: stringType().default("01K42HWBGTF1N9VND0ZTBHQBSD"),
63487
63487
  display_name: stringType(),
63488
63488
  description: stringType().optional(),
63489
63489
  status: ListDatasourcesStatus$inboundSchema,
@@ -63506,7 +63506,7 @@ var init_listdatasources = __esm(() => {
63506
63506
  });
63507
63507
  });
63508
63508
  ListDatasourcesData$outboundSchema = objectType({
63509
- id: stringType().default("01K3R8SPE2ZZEN5VP69ABFX4PG"),
63509
+ id: stringType().default("01K42HWBGTF1N9VND0ZTBHQBSD"),
63510
63510
  displayName: stringType(),
63511
63511
  description: stringType().optional(),
63512
63512
  status: ListDatasourcesStatus$outboundSchema,
@@ -67842,10 +67842,14 @@ var init_postv2proxymoderations = __esm(() => {
67842
67842
  });
67843
67843
 
67844
67844
  // src/models/operations/postv2proxyrerank.ts
67845
- var PostV2ProxyRerankObject, PostV2ProxyRerankProxyObject, PostV2ProxyRerankDocuments$inboundSchema, PostV2ProxyRerankDocuments$outboundSchema, PostV2ProxyRerankDocuments$, PostV2ProxyRerankRequestBody$inboundSchema, PostV2ProxyRerankRequestBody$outboundSchema, PostV2ProxyRerankRequestBody$, PostV2ProxyRerankObject$inboundSchema, PostV2ProxyRerankObject$outboundSchema, PostV2ProxyRerankObject$, PostV2ProxyRerankProxyObject$inboundSchema, PostV2ProxyRerankProxyObject$outboundSchema, PostV2ProxyRerankProxyObject$, Document$inboundSchema, Document$outboundSchema, Document$, PostV2ProxyRerankResults$inboundSchema, PostV2ProxyRerankResults$outboundSchema, PostV2ProxyRerankResults$, PostV2ProxyRerankUsage$inboundSchema, PostV2ProxyRerankUsage$outboundSchema, PostV2ProxyRerankUsage$, PostV2ProxyRerankResponseBody$inboundSchema, PostV2ProxyRerankResponseBody$outboundSchema, PostV2ProxyRerankResponseBody$;
67845
+ var PostV2ProxyRerankType, PostV2ProxyRerankObject, PostV2ProxyRerankProxyObject, PostV2ProxyRerankDocuments$inboundSchema, PostV2ProxyRerankDocuments$outboundSchema, PostV2ProxyRerankDocuments$, PostV2ProxyRerankFallbacks$inboundSchema, PostV2ProxyRerankFallbacks$outboundSchema, PostV2ProxyRerankFallbacks$, PostV2ProxyRerankType$inboundSchema, PostV2ProxyRerankType$outboundSchema, PostV2ProxyRerankType$, PostV2ProxyRerankCache$inboundSchema, PostV2ProxyRerankCache$outboundSchema, PostV2ProxyRerankCache$, PostV2ProxyRerankRetry$inboundSchema, PostV2ProxyRerankRetry$outboundSchema, PostV2ProxyRerankRetry$, PostV2ProxyRerankOrq$inboundSchema, PostV2ProxyRerankOrq$outboundSchema, PostV2ProxyRerankOrq$, PostV2ProxyRerankRequestBody$inboundSchema, PostV2ProxyRerankRequestBody$outboundSchema, PostV2ProxyRerankRequestBody$, PostV2ProxyRerankObject$inboundSchema, PostV2ProxyRerankObject$outboundSchema, PostV2ProxyRerankObject$, PostV2ProxyRerankProxyObject$inboundSchema, PostV2ProxyRerankProxyObject$outboundSchema, PostV2ProxyRerankProxyObject$, Document$inboundSchema, Document$outboundSchema, Document$, PostV2ProxyRerankResults$inboundSchema, PostV2ProxyRerankResults$outboundSchema, PostV2ProxyRerankResults$, PostV2ProxyRerankUsage$inboundSchema, PostV2ProxyRerankUsage$outboundSchema, PostV2ProxyRerankUsage$, PostV2ProxyRerankResponseBody$inboundSchema, PostV2ProxyRerankResponseBody$outboundSchema, PostV2ProxyRerankResponseBody$;
67846
67846
  var init_postv2proxyrerank = __esm(() => {
67847
67847
  init_esm();
67848
67848
  init_primitives();
67849
+ init_components();
67850
+ PostV2ProxyRerankType = {
67851
+ ExactMatch: "exact_match"
67852
+ };
67849
67853
  PostV2ProxyRerankObject = {
67850
67854
  List: "list"
67851
67855
  };
@@ -67858,12 +67862,79 @@ var init_postv2proxyrerank = __esm(() => {
67858
67862
  PostV2ProxyRerankDocuments$.inboundSchema = PostV2ProxyRerankDocuments$inboundSchema;
67859
67863
  PostV2ProxyRerankDocuments$.outboundSchema = PostV2ProxyRerankDocuments$outboundSchema;
67860
67864
  })(PostV2ProxyRerankDocuments$ ||= {});
67865
+ PostV2ProxyRerankFallbacks$inboundSchema = objectType({
67866
+ model: stringType()
67867
+ });
67868
+ PostV2ProxyRerankFallbacks$outboundSchema = objectType({
67869
+ model: stringType()
67870
+ });
67871
+ ((PostV2ProxyRerankFallbacks$) => {
67872
+ PostV2ProxyRerankFallbacks$.inboundSchema = PostV2ProxyRerankFallbacks$inboundSchema;
67873
+ PostV2ProxyRerankFallbacks$.outboundSchema = PostV2ProxyRerankFallbacks$outboundSchema;
67874
+ })(PostV2ProxyRerankFallbacks$ ||= {});
67875
+ PostV2ProxyRerankType$inboundSchema = nativeEnumType(PostV2ProxyRerankType);
67876
+ PostV2ProxyRerankType$outboundSchema = PostV2ProxyRerankType$inboundSchema;
67877
+ ((PostV2ProxyRerankType$) => {
67878
+ PostV2ProxyRerankType$.inboundSchema = PostV2ProxyRerankType$inboundSchema;
67879
+ PostV2ProxyRerankType$.outboundSchema = PostV2ProxyRerankType$outboundSchema;
67880
+ })(PostV2ProxyRerankType$ ||= {});
67881
+ PostV2ProxyRerankCache$inboundSchema = objectType({
67882
+ ttl: numberType().default(1800),
67883
+ type: PostV2ProxyRerankType$inboundSchema
67884
+ });
67885
+ PostV2ProxyRerankCache$outboundSchema = objectType({
67886
+ ttl: numberType().default(1800),
67887
+ type: PostV2ProxyRerankType$outboundSchema
67888
+ });
67889
+ ((PostV2ProxyRerankCache$) => {
67890
+ PostV2ProxyRerankCache$.inboundSchema = PostV2ProxyRerankCache$inboundSchema;
67891
+ PostV2ProxyRerankCache$.outboundSchema = PostV2ProxyRerankCache$outboundSchema;
67892
+ })(PostV2ProxyRerankCache$ ||= {});
67893
+ PostV2ProxyRerankRetry$inboundSchema = objectType({
67894
+ count: numberType().default(3),
67895
+ on_codes: arrayType(numberType()).optional()
67896
+ }).transform((v2) => {
67897
+ return remap(v2, {
67898
+ on_codes: "onCodes"
67899
+ });
67900
+ });
67901
+ PostV2ProxyRerankRetry$outboundSchema = objectType({
67902
+ count: numberType().default(3),
67903
+ onCodes: arrayType(numberType()).optional()
67904
+ }).transform((v2) => {
67905
+ return remap(v2, {
67906
+ onCodes: "on_codes"
67907
+ });
67908
+ });
67909
+ ((PostV2ProxyRerankRetry$) => {
67910
+ PostV2ProxyRerankRetry$.inboundSchema = PostV2ProxyRerankRetry$inboundSchema;
67911
+ PostV2ProxyRerankRetry$.outboundSchema = PostV2ProxyRerankRetry$outboundSchema;
67912
+ })(PostV2ProxyRerankRetry$ ||= {});
67913
+ PostV2ProxyRerankOrq$inboundSchema = objectType({
67914
+ name: stringType().optional(),
67915
+ fallbacks: arrayType(lazyType(() => PostV2ProxyRerankFallbacks$inboundSchema)).optional(),
67916
+ cache: lazyType(() => PostV2ProxyRerankCache$inboundSchema).optional(),
67917
+ retry: lazyType(() => PostV2ProxyRerankRetry$inboundSchema).optional(),
67918
+ contact: PublicContact$inboundSchema.optional()
67919
+ });
67920
+ PostV2ProxyRerankOrq$outboundSchema = objectType({
67921
+ name: stringType().optional(),
67922
+ fallbacks: arrayType(lazyType(() => PostV2ProxyRerankFallbacks$outboundSchema)).optional(),
67923
+ cache: lazyType(() => PostV2ProxyRerankCache$outboundSchema).optional(),
67924
+ retry: lazyType(() => PostV2ProxyRerankRetry$outboundSchema).optional(),
67925
+ contact: PublicContact$outboundSchema.optional()
67926
+ });
67927
+ ((PostV2ProxyRerankOrq$) => {
67928
+ PostV2ProxyRerankOrq$.inboundSchema = PostV2ProxyRerankOrq$inboundSchema;
67929
+ PostV2ProxyRerankOrq$.outboundSchema = PostV2ProxyRerankOrq$outboundSchema;
67930
+ })(PostV2ProxyRerankOrq$ ||= {});
67861
67931
  PostV2ProxyRerankRequestBody$inboundSchema = objectType({
67862
67932
  query: stringType(),
67863
67933
  documents: arrayType(unionType([stringType(), recordType(stringType())])),
67864
67934
  model: stringType(),
67865
67935
  top_n: numberType().optional(),
67866
- filename: nullableType(stringType()).optional()
67936
+ filename: nullableType(stringType()).optional(),
67937
+ orq: lazyType(() => PostV2ProxyRerankOrq$inboundSchema).optional()
67867
67938
  }).transform((v2) => {
67868
67939
  return remap(v2, {
67869
67940
  top_n: "topN"
@@ -67874,7 +67945,8 @@ var init_postv2proxyrerank = __esm(() => {
67874
67945
  documents: arrayType(unionType([stringType(), recordType(stringType())])),
67875
67946
  model: stringType(),
67876
67947
  topN: numberType().optional(),
67877
- filename: nullableType(stringType()).optional()
67948
+ filename: nullableType(stringType()).optional(),
67949
+ orq: lazyType(() => PostV2ProxyRerankOrq$outboundSchema).optional()
67878
67950
  }).transform((v2) => {
67879
67951
  return remap(v2, {
67880
67952
  topN: "top_n"
@@ -68173,7 +68245,7 @@ var init_retrievecontact = __esm(() => {
68173
68245
  tags: arrayType(stringType()).optional(),
68174
68246
  metadata: recordType(anyType()).optional(),
68175
68247
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
68176
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
68248
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
68177
68249
  }).transform((v2) => {
68178
68250
  return remap(v2, {
68179
68251
  _id: "id",
@@ -68191,7 +68263,7 @@ var init_retrievecontact = __esm(() => {
68191
68263
  tags: arrayType(stringType()).optional(),
68192
68264
  metadata: recordType(anyType()).optional(),
68193
68265
  created: dateType().transform((v2) => v2.toISOString()).optional(),
68194
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
68266
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
68195
68267
  }).transform((v2) => {
68196
68268
  return remap(v2, {
68197
68269
  id: "_id",
@@ -68904,7 +68976,7 @@ var init_retrievedatapoint = __esm(() => {
68904
68976
  created_by_id: stringType().optional(),
68905
68977
  updated_by_id: stringType().optional(),
68906
68978
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
68907
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
68979
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
68908
68980
  }).transform((v2) => {
68909
68981
  return remap(v2, {
68910
68982
  _id: "id",
@@ -68931,7 +69003,7 @@ var init_retrievedatapoint = __esm(() => {
68931
69003
  createdById: stringType().optional(),
68932
69004
  updatedById: stringType().optional(),
68933
69005
  created: dateType().transform((v2) => v2.toISOString()).optional(),
68934
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
69006
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
68935
69007
  }).transform((v2) => {
68936
69008
  return remap(v2, {
68937
69009
  id: "_id",
@@ -69002,7 +69074,7 @@ var init_retrievedataset = __esm(() => {
69002
69074
  updated_by_id: stringType().optional(),
69003
69075
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
69004
69076
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
69005
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
69077
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
69006
69078
  }).transform((v2) => {
69007
69079
  return remap(v2, {
69008
69080
  _id: "id",
@@ -69022,7 +69094,7 @@ var init_retrievedataset = __esm(() => {
69022
69094
  updatedById: stringType().optional(),
69023
69095
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
69024
69096
  created: dateType().transform((v2) => v2.toISOString()).optional(),
69025
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
69097
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
69026
69098
  }).transform((v2) => {
69027
69099
  return remap(v2, {
69028
69100
  id: "_id",
@@ -69080,7 +69152,7 @@ var init_retrievedatasource = __esm(() => {
69080
69152
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
69081
69153
  })(RetrieveDatasourceStatus$ ||= {});
69082
69154
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
69083
- _id: stringType().default("01K3R8SPE3Z3S1M723WDQ1A3K1"),
69155
+ _id: stringType().default("01K42HWBGY2Y6QA0M2Q1VK6F48"),
69084
69156
  display_name: stringType(),
69085
69157
  description: stringType().optional(),
69086
69158
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -69103,7 +69175,7 @@ var init_retrievedatasource = __esm(() => {
69103
69175
  });
69104
69176
  });
69105
69177
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
69106
- id: stringType().default("01K3R8SPE3Z3S1M723WDQ1A3K1"),
69178
+ id: stringType().default("01K42HWBGY2Y6QA0M2Q1VK6F48"),
69107
69179
  displayName: stringType(),
69108
69180
  description: stringType().optional(),
69109
69181
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -70113,7 +70185,7 @@ var init_updatebudget = __esm(() => {
70113
70185
  is_active: booleanType(),
70114
70186
  consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
70115
70187
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
70116
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
70188
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
70117
70189
  }).transform((v2) => {
70118
70190
  return remap(v2, {
70119
70191
  _id: "id",
@@ -70131,7 +70203,7 @@ var init_updatebudget = __esm(() => {
70131
70203
  isActive: booleanType(),
70132
70204
  consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
70133
70205
  created: dateType().transform((v2) => v2.toISOString()).optional(),
70134
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
70206
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
70135
70207
  }).transform((v2) => {
70136
70208
  return remap(v2, {
70137
70209
  id: "_id",
@@ -70322,7 +70394,7 @@ var init_updatecontact = __esm(() => {
70322
70394
  tags: arrayType(stringType()).optional(),
70323
70395
  metadata: recordType(anyType()).optional(),
70324
70396
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
70325
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
70397
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
70326
70398
  }).transform((v2) => {
70327
70399
  return remap(v2, {
70328
70400
  _id: "id",
@@ -70340,7 +70412,7 @@ var init_updatecontact = __esm(() => {
70340
70412
  tags: arrayType(stringType()).optional(),
70341
70413
  metadata: recordType(anyType()).optional(),
70342
70414
  created: dateType().transform((v2) => v2.toISOString()).optional(),
70343
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
70415
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
70344
70416
  }).transform((v2) => {
70345
70417
  return remap(v2, {
70346
70418
  id: "_id",
@@ -71746,7 +71818,7 @@ var init_updatedatapoint = __esm(() => {
71746
71818
  created_by_id: stringType().optional(),
71747
71819
  updated_by_id: stringType().optional(),
71748
71820
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71749
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
71821
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
71750
71822
  }).transform((v2) => {
71751
71823
  return remap(v2, {
71752
71824
  _id: "id",
@@ -71773,7 +71845,7 @@ var init_updatedatapoint = __esm(() => {
71773
71845
  createdById: stringType().optional(),
71774
71846
  updatedById: stringType().optional(),
71775
71847
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71776
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
71848
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
71777
71849
  }).transform((v2) => {
71778
71850
  return remap(v2, {
71779
71851
  id: "_id",
@@ -71874,7 +71946,7 @@ var init_updatedataset = __esm(() => {
71874
71946
  parent_id: stringType().optional(),
71875
71947
  version: stringType().optional(),
71876
71948
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71877
- updated: stringType().datetime({ offset: true }).default("2025-08-28T12:00:09.894Z").transform((v2) => new Date(v2))
71949
+ updated: stringType().datetime({ offset: true }).default("2025-09-01T11:51:19.330Z").transform((v2) => new Date(v2))
71878
71950
  }).transform((v2) => {
71879
71951
  return remap(v2, {
71880
71952
  _id: "id",
@@ -71897,7 +71969,7 @@ var init_updatedataset = __esm(() => {
71897
71969
  parentId: stringType().optional(),
71898
71970
  version: stringType().optional(),
71899
71971
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71900
- updated: dateType().default(() => new Date("2025-08-28T12:00:09.894Z")).transform((v2) => v2.toISOString())
71972
+ updated: dateType().default(() => new Date("2025-09-01T11:51:19.330Z")).transform((v2) => v2.toISOString())
71901
71973
  }).transform((v2) => {
71902
71974
  return remap(v2, {
71903
71975
  id: "_id",
@@ -71978,7 +72050,7 @@ var init_updatedatasource = __esm(() => {
71978
72050
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
71979
72051
  })(UpdateDatasourceStatus$ ||= {});
71980
72052
  UpdateDatasourceResponseBody$inboundSchema = objectType({
71981
- _id: stringType().default("01K3R8SPE5ACEF9XZ6WJRAYDAT"),
72053
+ _id: stringType().default("01K42HWBGZE99PX10HNP6ZE1RP"),
71982
72054
  display_name: stringType(),
71983
72055
  description: stringType().optional(),
71984
72056
  status: UpdateDatasourceStatus$inboundSchema,
@@ -72001,7 +72073,7 @@ var init_updatedatasource = __esm(() => {
72001
72073
  });
72002
72074
  });
72003
72075
  UpdateDatasourceResponseBody$outboundSchema = objectType({
72004
- id: stringType().default("01K3R8SPE5ACEF9XZ6WJRAYDAT"),
72076
+ id: stringType().default("01K42HWBGZE99PX10HNP6ZE1RP"),
72005
72077
  displayName: stringType(),
72006
72078
  description: stringType().optional(),
72007
72079
  status: UpdateDatasourceStatus$outboundSchema,
@@ -72707,8 +72779,8 @@ var init_updateeval = __esm(() => {
72707
72779
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
72708
72780
  _id: stringType(),
72709
72781
  description: stringType(),
72710
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72711
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
72782
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
72783
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72712
72784
  guardrail_config: unionType([
72713
72785
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
72714
72786
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -72725,8 +72797,8 @@ var init_updateeval = __esm(() => {
72725
72797
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
72726
72798
  id: stringType(),
72727
72799
  description: stringType(),
72728
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72729
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
72800
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
72801
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72730
72802
  guardrailConfig: unionType([
72731
72803
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
72732
72804
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -72819,8 +72891,8 @@ var init_updateeval = __esm(() => {
72819
72891
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
72820
72892
  _id: stringType(),
72821
72893
  description: stringType(),
72822
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72823
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
72894
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
72895
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72824
72896
  guardrail_config: unionType([
72825
72897
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
72826
72898
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -72840,8 +72912,8 @@ var init_updateeval = __esm(() => {
72840
72912
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
72841
72913
  id: stringType(),
72842
72914
  description: stringType(),
72843
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72844
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
72915
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
72916
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72845
72917
  guardrailConfig: unionType([
72846
72918
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
72847
72919
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -72931,8 +73003,8 @@ var init_updateeval = __esm(() => {
72931
73003
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
72932
73004
  _id: stringType(),
72933
73005
  description: stringType(),
72934
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72935
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
73006
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
73007
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72936
73008
  guardrail_config: unionType([
72937
73009
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
72938
73010
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -72949,8 +73021,8 @@ var init_updateeval = __esm(() => {
72949
73021
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
72950
73022
  id: stringType(),
72951
73023
  description: stringType(),
72952
- created: stringType().default("2025-08-28T12:00:12.628Z"),
72953
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
73024
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
73025
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
72954
73026
  guardrailConfig: unionType([
72955
73027
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
72956
73028
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -73037,8 +73109,8 @@ var init_updateeval = __esm(() => {
73037
73109
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
73038
73110
  _id: stringType(),
73039
73111
  description: stringType(),
73040
- created: stringType().default("2025-08-28T12:00:12.628Z"),
73041
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
73112
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
73113
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
73042
73114
  guardrail_config: unionType([
73043
73115
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
73044
73116
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -73056,8 +73128,8 @@ var init_updateeval = __esm(() => {
73056
73128
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
73057
73129
  id: stringType(),
73058
73130
  description: stringType(),
73059
- created: stringType().default("2025-08-28T12:00:12.628Z"),
73060
- updated: stringType().default("2025-08-28T12:00:12.628Z"),
73131
+ created: stringType().default("2025-09-01T11:51:21.772Z"),
73132
+ updated: stringType().default("2025-09-01T11:51:21.772Z"),
73061
73133
  guardrailConfig: unionType([
73062
73134
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
73063
73135
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -89803,7 +89875,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
89803
89875
  function createMCPServer(deps) {
89804
89876
  const server = new McpServer({
89805
89877
  name: "Orq",
89806
- version: "3.12.0-rc.21"
89878
+ version: "3.12.0-rc.23"
89807
89879
  });
89808
89880
  const client = new OrqCore({
89809
89881
  apiKey: deps.apiKey,
@@ -91253,7 +91325,7 @@ var routes = rn({
91253
91325
  var app = Ve(routes, {
91254
91326
  name: "mcp",
91255
91327
  versionInfo: {
91256
- currentVersion: "3.12.0-rc.21"
91328
+ currentVersion: "3.12.0-rc.23"
91257
91329
  }
91258
91330
  });
91259
91331
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -91261,5 +91333,5 @@ export {
91261
91333
  app
91262
91334
  };
91263
91335
 
91264
- //# debugId=02006043F16DF33064756E2164756E21
91336
+ //# debugId=4437C6116D26EA2364756E2164756E21
91265
91337
  //# sourceMappingURL=mcp-server.js.map