@orq-ai/node 4.0.0-rc.24 → 4.0.0-rc.25

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 (104) hide show
  1. package/bin/mcp-server.js +237 -209
  2. package/bin/mcp-server.js.map +42 -42
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +8 -8
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +28 -28
  15. package/models/operations/createprompt.d.ts +2 -0
  16. package/models/operations/createprompt.d.ts.map +1 -1
  17. package/models/operations/createprompt.js +4 -0
  18. package/models/operations/createprompt.js.map +1 -1
  19. package/models/operations/createtool.js +10 -10
  20. package/models/operations/duplicatetool.js +10 -10
  21. package/models/operations/fileget.js +2 -2
  22. package/models/operations/filelist.js +2 -2
  23. package/models/operations/fileupload.js +2 -2
  24. package/models/operations/getallprompts.d.ts +2 -0
  25. package/models/operations/getallprompts.d.ts.map +1 -1
  26. package/models/operations/getallprompts.js +4 -0
  27. package/models/operations/getallprompts.js.map +1 -1
  28. package/models/operations/getalltools.js +10 -10
  29. package/models/operations/getbudget.js +2 -2
  30. package/models/operations/getevals.js +28 -28
  31. package/models/operations/getoneprompt.d.ts +2 -0
  32. package/models/operations/getoneprompt.d.ts.map +1 -1
  33. package/models/operations/getoneprompt.js +4 -0
  34. package/models/operations/getoneprompt.js.map +1 -1
  35. package/models/operations/getpromptversion.d.ts +2 -0
  36. package/models/operations/getpromptversion.d.ts.map +1 -1
  37. package/models/operations/getpromptversion.js +4 -0
  38. package/models/operations/getpromptversion.js.map +1 -1
  39. package/models/operations/listbudgets.js +2 -2
  40. package/models/operations/listcontacts.js +2 -2
  41. package/models/operations/listdatasetdatapoints.js +8 -8
  42. package/models/operations/listdatasets.js +2 -2
  43. package/models/operations/listdatasources.js +2 -2
  44. package/models/operations/listpromptversions.d.ts +2 -0
  45. package/models/operations/listpromptversions.d.ts.map +1 -1
  46. package/models/operations/listpromptversions.js +4 -0
  47. package/models/operations/listpromptversions.js.map +1 -1
  48. package/models/operations/retrievecontact.js +2 -2
  49. package/models/operations/retrievedatapoint.js +8 -8
  50. package/models/operations/retrievedataset.js +2 -2
  51. package/models/operations/retrievedatasource.js +2 -2
  52. package/models/operations/retrievetool.js +10 -10
  53. package/models/operations/updatebudget.js +2 -2
  54. package/models/operations/updatecontact.js +2 -2
  55. package/models/operations/updatedatapoint.js +8 -8
  56. package/models/operations/updatedataset.js +2 -2
  57. package/models/operations/updatedatasource.js +2 -2
  58. package/models/operations/updateeval.js +28 -28
  59. package/models/operations/updateprompt.d.ts +4 -0
  60. package/models/operations/updateprompt.d.ts.map +1 -1
  61. package/models/operations/updateprompt.js +8 -0
  62. package/models/operations/updateprompt.js.map +1 -1
  63. package/models/operations/updatetool.js +10 -10
  64. package/package.json +1 -1
  65. package/src/lib/config.ts +2 -2
  66. package/src/mcp-server/mcp-server.ts +1 -1
  67. package/src/mcp-server/server.ts +1 -1
  68. package/src/models/operations/createbudget.ts +2 -2
  69. package/src/models/operations/createcontact.ts +2 -2
  70. package/src/models/operations/createdataset.ts +2 -2
  71. package/src/models/operations/createdatasetitem.ts +8 -8
  72. package/src/models/operations/createdatasource.ts +2 -2
  73. package/src/models/operations/createeval.ts +28 -28
  74. package/src/models/operations/createprompt.ts +6 -0
  75. package/src/models/operations/createtool.ts +10 -10
  76. package/src/models/operations/duplicatetool.ts +10 -10
  77. package/src/models/operations/fileget.ts +2 -2
  78. package/src/models/operations/filelist.ts +2 -2
  79. package/src/models/operations/fileupload.ts +2 -2
  80. package/src/models/operations/getallprompts.ts +6 -0
  81. package/src/models/operations/getalltools.ts +10 -10
  82. package/src/models/operations/getbudget.ts +2 -2
  83. package/src/models/operations/getevals.ts +28 -28
  84. package/src/models/operations/getoneprompt.ts +6 -0
  85. package/src/models/operations/getpromptversion.ts +6 -0
  86. package/src/models/operations/listbudgets.ts +2 -2
  87. package/src/models/operations/listcontacts.ts +2 -2
  88. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  89. package/src/models/operations/listdatasets.ts +2 -2
  90. package/src/models/operations/listdatasources.ts +2 -2
  91. package/src/models/operations/listpromptversions.ts +6 -0
  92. package/src/models/operations/retrievecontact.ts +2 -2
  93. package/src/models/operations/retrievedatapoint.ts +8 -8
  94. package/src/models/operations/retrievedataset.ts +2 -2
  95. package/src/models/operations/retrievedatasource.ts +2 -2
  96. package/src/models/operations/retrievetool.ts +10 -10
  97. package/src/models/operations/updatebudget.ts +2 -2
  98. package/src/models/operations/updatecontact.ts +2 -2
  99. package/src/models/operations/updatedatapoint.ts +8 -8
  100. package/src/models/operations/updatedataset.ts +2 -2
  101. package/src/models/operations/updatedatasource.ts +2 -2
  102. package/src/models/operations/updateeval.ts +28 -28
  103. package/src/models/operations/updateprompt.ts +12 -0
  104. package/src/models/operations/updatetool.ts +10 -10
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
4929
4929
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
4930
4930
  reviewed_by_id: z.string(),
4931
4931
  reviewed_at: z.string().datetime({ offset: true }).default(
4932
- "2025-11-12T05:37:59.760Z",
4932
+ "2025-11-12T13:22:51.982Z",
4933
4933
  ).transform(v => new Date(v)),
4934
4934
  type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
4935
4935
  values: z.array(z.string()),
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
4964
4964
  humanReviewId: z.string(),
4965
4965
  source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
4966
4966
  reviewedById: z.string(),
4967
- reviewedAt: z.date().default(() => new Date("2025-11-12T05:37:59.760Z"))
4967
+ reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:51.982Z"))
4968
4968
  .transform(v => v.toISOString()),
4969
4969
  type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
4970
4970
  values: z.array(z.string()),
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
5029
5029
  source: EvaluationsSource$inboundSchema.default("orq"),
5030
5030
  reviewed_by_id: z.string(),
5031
5031
  reviewed_at: z.string().datetime({ offset: true }).default(
5032
- "2025-11-12T05:37:59.759Z",
5032
+ "2025-11-12T13:22:51.981Z",
5033
5033
  ).transform(v => new Date(v)),
5034
5034
  type: CreateDatasetItemEvaluationsType$inboundSchema,
5035
5035
  value: z.number(),
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
5064
5064
  humanReviewId: z.string(),
5065
5065
  source: EvaluationsSource$outboundSchema.default("orq"),
5066
5066
  reviewedById: z.string(),
5067
- reviewedAt: z.date().default(() => new Date("2025-11-12T05:37:59.759Z"))
5067
+ reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:51.981Z"))
5068
5068
  .transform(v => v.toISOString()),
5069
5069
  type: CreateDatasetItemEvaluationsType$outboundSchema,
5070
5070
  value: z.number(),
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
5127
5127
  source: Source$inboundSchema.default("orq"),
5128
5128
  reviewed_by_id: z.string(),
5129
5129
  reviewed_at: z.string().datetime({ offset: true }).default(
5130
- "2025-11-12T05:37:59.759Z",
5130
+ "2025-11-12T13:22:51.980Z",
5131
5131
  ).transform(v => new Date(v)),
5132
5132
  type: EvaluationsType$inboundSchema,
5133
5133
  value: z.string(),
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
5162
5162
  humanReviewId: z.string(),
5163
5163
  source: Source$outboundSchema.default("orq"),
5164
5164
  reviewedById: z.string(),
5165
- reviewedAt: z.date().default(() => new Date("2025-11-12T05:37:59.759Z"))
5165
+ reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:51.980Z"))
5166
5166
  .transform(v => v.toISOString()),
5167
5167
  type: EvaluationsType$outboundSchema,
5168
5168
  value: z.string(),
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
5267
5267
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
5268
5268
  .optional(),
5269
5269
  updated: z.string().datetime({ offset: true }).default(
5270
- "2025-11-12T05:37:47.766Z",
5270
+ "2025-11-12T13:22:37.672Z",
5271
5271
  ).transform(v => new Date(v)),
5272
5272
  }).transform((v) => {
5273
5273
  return remap$(v, {
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
5345
5345
  createdById: z.string().optional(),
5346
5346
  updatedById: z.string().optional(),
5347
5347
  created: z.date().transform(v => v.toISOString()).optional(),
5348
- updated: z.date().default(() => new Date("2025-11-12T05:37:47.766Z"))
5348
+ updated: z.date().default(() => new Date("2025-11-12T13:22:37.672Z"))
5349
5349
  .transform(v => v.toISOString()),
5350
5350
  }).transform((v) => {
5351
5351
  return remap$(v, {
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
608
608
  z.ZodTypeDef,
609
609
  unknown
610
610
  > = z.object({
611
- _id: z.string().default("01K9V948B0DKXG2HEYKJ5QVP6H"),
611
+ _id: z.string().default("01K9W3QETSRSTY22PT9Q578VWT"),
612
612
  display_name: z.string(),
613
613
  description: z.string().optional(),
614
614
  status: CreateDatasourceStatus$inboundSchema,
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
651
651
  z.ZodTypeDef,
652
652
  CreateDatasourceResponseBody
653
653
  > = z.object({
654
- id: z.string().default("01K9V948B0DKXG2HEYKJ5QVP6H"),
654
+ id: z.string().default("01K9W3QETSRSTY22PT9Q578VWT"),
655
655
  displayName: z.string(),
656
656
  description: z.string().optional(),
657
657
  status: CreateDatasourceStatus$outboundSchema,
@@ -2754,8 +2754,8 @@ export const Typescript$inboundSchema: z.ZodType<
2754
2754
  > = z.object({
2755
2755
  _id: z.string(),
2756
2756
  description: z.string(),
2757
- created: z.string().default("2025-11-12T05:37:50.547Z"),
2758
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
2757
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
2758
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
2759
2759
  guardrail_config: z.union([
2760
2760
  z.lazy(() =>
2761
2761
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -2797,8 +2797,8 @@ export const Typescript$outboundSchema: z.ZodType<
2797
2797
  > = z.object({
2798
2798
  id: z.string(),
2799
2799
  description: z.string(),
2800
- created: z.string().default("2025-11-12T05:37:50.547Z"),
2801
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
2800
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
2801
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
2802
2802
  guardrailConfig: z.union([
2803
2803
  z.lazy(() =>
2804
2804
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3079,8 +3079,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
3079
3079
  .object({
3080
3080
  _id: z.string(),
3081
3081
  description: z.string(),
3082
- created: z.string().default("2025-11-12T05:37:50.547Z"),
3083
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
3082
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
3083
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
3084
3084
  guardrail_config: z.union([
3085
3085
  z.lazy(() =>
3086
3086
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3125,8 +3125,8 @@ export const Ragas$outboundSchema: z.ZodType<
3125
3125
  > = z.object({
3126
3126
  id: z.string(),
3127
3127
  description: z.string(),
3128
- created: z.string().default("2025-11-12T05:37:50.547Z"),
3129
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
3128
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
3129
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
3130
3130
  guardrailConfig: z.union([
3131
3131
  z.lazy(() =>
3132
3132
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -5414,8 +5414,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
5414
5414
  > = z.object({
5415
5415
  _id: z.string(),
5416
5416
  description: z.string(),
5417
- created: z.string().default("2025-11-12T05:37:50.547Z"),
5418
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
5417
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
5418
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
5419
5419
  guardrail_config: z.union([
5420
5420
  z.lazy(() =>
5421
5421
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -5528,8 +5528,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
5528
5528
  > = z.object({
5529
5529
  id: z.string(),
5530
5530
  description: z.string(),
5531
- created: z.string().default("2025-11-12T05:37:50.547Z"),
5532
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
5531
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
5532
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
5533
5533
  guardrailConfig: z.union([
5534
5534
  z.lazy(() =>
5535
5535
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -5846,8 +5846,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
5846
5846
  > = z.object({
5847
5847
  _id: z.string(),
5848
5848
  description: z.string(),
5849
- created: z.string().default("2025-11-12T05:37:50.547Z"),
5850
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
5849
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
5850
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
5851
5851
  guardrail_config: z.union([
5852
5852
  z.lazy(() =>
5853
5853
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -5888,8 +5888,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
5888
5888
  > = z.object({
5889
5889
  id: z.string(),
5890
5890
  description: z.string(),
5891
- created: z.string().default("2025-11-12T05:37:50.547Z"),
5892
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
5891
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
5892
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
5893
5893
  guardrailConfig: z.union([
5894
5894
  z.lazy(() =>
5895
5895
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -6169,8 +6169,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
6169
6169
  > = z.object({
6170
6170
  _id: z.string(),
6171
6171
  description: z.string(),
6172
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6173
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6172
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6173
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6174
6174
  guardrail_config: z.union([
6175
6175
  z.lazy(() =>
6176
6176
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -6217,8 +6217,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
6217
6217
  > = z.object({
6218
6218
  id: z.string(),
6219
6219
  description: z.string(),
6220
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6221
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6220
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6221
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6222
6222
  guardrailConfig: z.union([
6223
6223
  z.lazy(() =>
6224
6224
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -6474,8 +6474,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
6474
6474
  > = z.object({
6475
6475
  _id: z.string(),
6476
6476
  description: z.string(),
6477
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6478
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6477
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6478
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6479
6479
  guardrail_config: z.union([
6480
6480
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
6481
6481
  z.lazy(() =>
@@ -6514,8 +6514,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
6514
6514
  > = z.object({
6515
6515
  id: z.string(),
6516
6516
  description: z.string(),
6517
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6518
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6517
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6518
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6519
6519
  guardrailConfig: z.union([
6520
6520
  z.lazy(() =>
6521
6521
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -6753,8 +6753,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
6753
6753
  > = z.object({
6754
6754
  _id: z.string(),
6755
6755
  description: z.string(),
6756
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6757
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6756
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6757
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6758
6758
  guardrail_config: z.union([
6759
6759
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
6760
6760
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -6793,8 +6793,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
6793
6793
  > = z.object({
6794
6794
  id: z.string(),
6795
6795
  description: z.string(),
6796
- created: z.string().default("2025-11-12T05:37:50.547Z"),
6797
- updated: z.string().default("2025-11-12T05:37:50.547Z"),
6796
+ created: z.string().default("2025-11-12T13:22:40.387Z"),
6797
+ updated: z.string().default("2025-11-12T13:22:40.387Z"),
6798
6798
  guardrailConfig: z.union([
6799
6799
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
6800
6800
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -1561,6 +1561,7 @@ export type CreatePromptPromptsResponseMessages = {
1561
1561
  export type CreatePromptPromptConfig = {
1562
1562
  stream?: boolean | undefined;
1563
1563
  model?: string | undefined;
1564
+ displayName?: string | undefined;
1564
1565
  /**
1565
1566
  * The id of the resource
1566
1567
  */
@@ -5881,6 +5882,7 @@ export const CreatePromptPromptConfig$inboundSchema: z.ZodType<
5881
5882
  > = z.object({
5882
5883
  stream: z.boolean().optional(),
5883
5884
  model: z.string().optional(),
5885
+ display_name: z.string().optional(),
5884
5886
  model_db_id: z.nullable(z.string()).optional(),
5885
5887
  model_type: z.nullable(CreatePromptModelType$inboundSchema).optional(),
5886
5888
  model_parameters: z.lazy(() => CreatePromptModelParameters$inboundSchema)
@@ -5893,6 +5895,7 @@ export const CreatePromptPromptConfig$inboundSchema: z.ZodType<
5893
5895
  ),
5894
5896
  }).transform((v) => {
5895
5897
  return remap$(v, {
5898
+ "display_name": "displayName",
5896
5899
  "model_db_id": "modelDbId",
5897
5900
  "model_type": "modelType",
5898
5901
  "model_parameters": "modelParameters",
@@ -5903,6 +5906,7 @@ export const CreatePromptPromptConfig$inboundSchema: z.ZodType<
5903
5906
  export type CreatePromptPromptConfig$Outbound = {
5904
5907
  stream?: boolean | undefined;
5905
5908
  model?: string | undefined;
5909
+ display_name?: string | undefined;
5906
5910
  model_db_id?: string | null | undefined;
5907
5911
  model_type?: string | null | undefined;
5908
5912
  model_parameters?: CreatePromptModelParameters$Outbound | undefined;
@@ -5920,6 +5924,7 @@ export const CreatePromptPromptConfig$outboundSchema: z.ZodType<
5920
5924
  > = z.object({
5921
5925
  stream: z.boolean().optional(),
5922
5926
  model: z.string().optional(),
5927
+ displayName: z.string().optional(),
5923
5928
  modelDbId: z.nullable(z.string()).optional(),
5924
5929
  modelType: z.nullable(CreatePromptModelType$outboundSchema).optional(),
5925
5930
  modelParameters: z.lazy(() => CreatePromptModelParameters$outboundSchema)
@@ -5932,6 +5937,7 @@ export const CreatePromptPromptConfig$outboundSchema: z.ZodType<
5932
5937
  ),
5933
5938
  }).transform((v) => {
5934
5939
  return remap$(v, {
5940
+ displayName: "display_name",
5935
5941
  modelDbId: "model_db_id",
5936
5942
  modelType: "model_type",
5937
5943
  modelParameters: "model_parameters",
@@ -2177,7 +2177,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
2177
2177
  z.ZodTypeDef,
2178
2178
  unknown
2179
2179
  > = z.object({
2180
- _id: z.string().default("01K9V94873DAY2J3Q24SG1A6JC"),
2180
+ _id: z.string().default("01K9W3QEPRMRVPHG0H8K1XHEAH"),
2181
2181
  path: z.string(),
2182
2182
  key: z.string(),
2183
2183
  display_name: z.string().optional(),
@@ -2231,7 +2231,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
2231
2231
  z.ZodTypeDef,
2232
2232
  ResponseBody5
2233
2233
  > = z.object({
2234
- id: z.string().default("01K9V94873DAY2J3Q24SG1A6JC"),
2234
+ id: z.string().default("01K9W3QEPRMRVPHG0H8K1XHEAH"),
2235
2235
  path: z.string(),
2236
2236
  key: z.string(),
2237
2237
  displayName: z.string().optional(),
@@ -2477,7 +2477,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
2477
2477
  z.ZodTypeDef,
2478
2478
  unknown
2479
2479
  > = z.object({
2480
- _id: z.string().default("01K9V94870JBCDFD2ZXFX2K2X1"),
2480
+ _id: z.string().default("01K9W3QEPNFX4RC25PWXD11VP3"),
2481
2481
  path: z.string(),
2482
2482
  key: z.string(),
2483
2483
  display_name: z.string().optional(),
@@ -2530,7 +2530,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
2530
2530
  z.ZodTypeDef,
2531
2531
  ResponseBody4
2532
2532
  > = z.object({
2533
- id: z.string().default("01K9V94870JBCDFD2ZXFX2K2X1"),
2533
+ id: z.string().default("01K9W3QEPNFX4RC25PWXD11VP3"),
2534
2534
  path: z.string(),
2535
2535
  key: z.string(),
2536
2536
  displayName: z.string().optional(),
@@ -2847,7 +2847,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
2847
2847
  z.ZodTypeDef,
2848
2848
  unknown
2849
2849
  > = z.object({
2850
- _id: z.string().default("01K9V9486XS644GJAH9QP3B5X1"),
2850
+ _id: z.string().default("01K9W3QEPJWVK28WYWVSYRS48V"),
2851
2851
  path: z.string(),
2852
2852
  key: z.string(),
2853
2853
  display_name: z.string().optional(),
@@ -2898,7 +2898,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
2898
2898
  z.ZodTypeDef,
2899
2899
  ResponseBody3
2900
2900
  > = z.object({
2901
- id: z.string().default("01K9V9486XS644GJAH9QP3B5X1"),
2901
+ id: z.string().default("01K9W3QEPJWVK28WYWVSYRS48V"),
2902
2902
  path: z.string(),
2903
2903
  key: z.string(),
2904
2904
  displayName: z.string().optional(),
@@ -3010,7 +3010,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
3010
3010
  z.ZodTypeDef,
3011
3011
  unknown
3012
3012
  > = z.object({
3013
- _id: z.string().default("01K9V9486VCSE6S16YAQ4YR354"),
3013
+ _id: z.string().default("01K9W3QEPGQEWBQTM0BVBMMFAF"),
3014
3014
  path: z.string(),
3015
3015
  key: z.string(),
3016
3016
  display_name: z.string().optional(),
@@ -3062,7 +3062,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
3062
3062
  z.ZodTypeDef,
3063
3063
  ResponseBody2
3064
3064
  > = z.object({
3065
- id: z.string().default("01K9V9486VCSE6S16YAQ4YR354"),
3065
+ id: z.string().default("01K9W3QEPGQEWBQTM0BVBMMFAF"),
3066
3066
  path: z.string(),
3067
3067
  key: z.string(),
3068
3068
  displayName: z.string().optional(),
@@ -3177,7 +3177,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
3177
3177
  z.ZodTypeDef,
3178
3178
  unknown
3179
3179
  > = z.object({
3180
- _id: z.string().default("01K9V9486SJGJDVQ8DJE1YA1J5"),
3180
+ _id: z.string().default("01K9W3QEPENTPK2A6Y7PZE4WJZ"),
3181
3181
  path: z.string(),
3182
3182
  key: z.string(),
3183
3183
  display_name: z.string().optional(),
@@ -3228,7 +3228,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
3228
3228
  z.ZodTypeDef,
3229
3229
  ResponseBody1
3230
3230
  > = z.object({
3231
- id: z.string().default("01K9V9486SJGJDVQ8DJE1YA1J5"),
3231
+ id: z.string().default("01K9W3QEPENTPK2A6Y7PZE4WJZ"),
3232
3232
  path: z.string(),
3233
3233
  key: z.string(),
3234
3234
  displayName: z.string().optional(),
@@ -721,7 +721,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
721
721
  z.ZodTypeDef,
722
722
  unknown
723
723
  > = z.object({
724
- _id: z.string().default("01K9V948827MKAEB217GJBG7DY"),
724
+ _id: z.string().default("01K9W3QEQRTJHPPQ0496JD7GKA"),
725
725
  path: z.string(),
726
726
  key: z.string(),
727
727
  display_name: z.string().optional(),
@@ -776,7 +776,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
776
776
  z.ZodTypeDef,
777
777
  DuplicateToolResponseBody5
778
778
  > = z.object({
779
- id: z.string().default("01K9V948827MKAEB217GJBG7DY"),
779
+ id: z.string().default("01K9W3QEQRTJHPPQ0496JD7GKA"),
780
780
  path: z.string(),
781
781
  key: z.string(),
782
782
  displayName: z.string().optional(),
@@ -1047,7 +1047,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
1047
1047
  z.ZodTypeDef,
1048
1048
  unknown
1049
1049
  > = z.object({
1050
- _id: z.string().default("01K9V94881MW24FW42ADEBW7JS"),
1050
+ _id: z.string().default("01K9W3QEQQ3G8CXSZ7WD700NP3"),
1051
1051
  path: z.string(),
1052
1052
  key: z.string(),
1053
1053
  display_name: z.string().optional(),
@@ -1100,7 +1100,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
1100
1100
  z.ZodTypeDef,
1101
1101
  DuplicateToolResponseBody4
1102
1102
  > = z.object({
1103
- id: z.string().default("01K9V94881MW24FW42ADEBW7JS"),
1103
+ id: z.string().default("01K9W3QEQQ3G8CXSZ7WD700NP3"),
1104
1104
  path: z.string(),
1105
1105
  key: z.string(),
1106
1106
  displayName: z.string().optional(),
@@ -1446,7 +1446,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
1446
1446
  z.ZodTypeDef,
1447
1447
  unknown
1448
1448
  > = z.object({
1449
- _id: z.string().default("01K9V9487ZR9XDEFKGF6PN9K0F"),
1449
+ _id: z.string().default("01K9W3QEQNP4Q1CVGMVVEFM1K4"),
1450
1450
  path: z.string(),
1451
1451
  key: z.string(),
1452
1452
  display_name: z.string().optional(),
@@ -1499,7 +1499,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
1499
1499
  z.ZodTypeDef,
1500
1500
  DuplicateToolResponseBody3
1501
1501
  > = z.object({
1502
- id: z.string().default("01K9V9487ZR9XDEFKGF6PN9K0F"),
1502
+ id: z.string().default("01K9W3QEQNP4Q1CVGMVVEFM1K4"),
1503
1503
  path: z.string(),
1504
1504
  key: z.string(),
1505
1505
  displayName: z.string().optional(),
@@ -1621,7 +1621,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
1621
1621
  z.ZodTypeDef,
1622
1622
  unknown
1623
1623
  > = z.object({
1624
- _id: z.string().default("01K9V9487Y13SH5SVMZ6KM3DEF"),
1624
+ _id: z.string().default("01K9W3QEQM2AZ7EWVJ5CEKXCES"),
1625
1625
  path: z.string(),
1626
1626
  key: z.string(),
1627
1627
  display_name: z.string().optional(),
@@ -1673,7 +1673,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
1673
1673
  z.ZodTypeDef,
1674
1674
  DuplicateToolResponseBody2
1675
1675
  > = z.object({
1676
- id: z.string().default("01K9V9487Y13SH5SVMZ6KM3DEF"),
1676
+ id: z.string().default("01K9W3QEQM2AZ7EWVJ5CEKXCES"),
1677
1677
  path: z.string(),
1678
1678
  key: z.string(),
1679
1679
  displayName: z.string().optional(),
@@ -1792,7 +1792,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
1792
1792
  z.ZodTypeDef,
1793
1793
  unknown
1794
1794
  > = z.object({
1795
- _id: z.string().default("01K9V9487NGJ0Q6H0V4C1K27P9"),
1795
+ _id: z.string().default("01K9W3QEQKNHZV82DNGN7SH7BS"),
1796
1796
  path: z.string(),
1797
1797
  key: z.string(),
1798
1798
  display_name: z.string().optional(),
@@ -1843,7 +1843,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
1843
1843
  z.ZodTypeDef,
1844
1844
  DuplicateToolResponseBody1
1845
1845
  > = z.object({
1846
- id: z.string().default("01K9V9487NGJ0Q6H0V4C1K27P9"),
1846
+ id: z.string().default("01K9W3QEQKNHZV82DNGN7SH7BS"),
1847
1847
  path: z.string(),
1848
1848
  key: z.string(),
1849
1849
  displayName: z.string().optional(),
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
119
119
  file_name: z.string(),
120
120
  workspace_id: z.string(),
121
121
  created: z.string().datetime({ offset: true }).default(
122
- "2025-11-12T05:37:51.610Z",
122
+ "2025-11-12T13:22:41.414Z",
123
123
  ).transform(v => new Date(v)),
124
124
  }).transform((v) => {
125
125
  return remap$(v, {
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
152
152
  bytes: z.number(),
153
153
  fileName: z.string(),
154
154
  workspaceId: z.string(),
155
- created: z.date().default(() => new Date("2025-11-12T05:37:51.610Z"))
155
+ created: z.date().default(() => new Date("2025-11-12T13:22:41.414Z"))
156
156
  .transform(v => v.toISOString()),
157
157
  }).transform((v) => {
158
158
  return remap$(v, {
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
157
157
  file_name: z.string(),
158
158
  workspace_id: z.string(),
159
159
  created: z.string().datetime({ offset: true }).default(
160
- "2025-11-12T05:37:51.610Z",
160
+ "2025-11-12T13:22:41.414Z",
161
161
  ).transform(v => new Date(v)),
162
162
  }).transform((v) => {
163
163
  return remap$(v, {
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
190
190
  bytes: z.number(),
191
191
  fileName: z.string(),
192
192
  workspaceId: z.string(),
193
- created: z.date().default(() => new Date("2025-11-12T05:37:51.610Z"))
193
+ created: z.date().default(() => new Date("2025-11-12T13:22:41.414Z"))
194
194
  .transform(v => v.toISOString()),
195
195
  }).transform((v) => {
196
196
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
196
196
  file_name: z.string(),
197
197
  workspace_id: z.string(),
198
198
  created: z.string().datetime({ offset: true }).default(
199
- "2025-11-12T05:37:51.610Z",
199
+ "2025-11-12T13:22:41.414Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
229
229
  bytes: z.number(),
230
230
  fileName: z.string(),
231
231
  workspaceId: z.string(),
232
- created: z.date().default(() => new Date("2025-11-12T05:37:51.610Z"))
232
+ created: z.date().default(() => new Date("2025-11-12T13:22:41.414Z"))
233
233
  .transform(v => v.toISOString()),
234
234
  }).transform((v) => {
235
235
  return remap$(v, {
@@ -495,6 +495,7 @@ export type GetAllPromptsMessages = {
495
495
  export type GetAllPromptsPromptConfig = {
496
496
  stream?: boolean | undefined;
497
497
  model?: string | undefined;
498
+ displayName?: string | undefined;
498
499
  /**
499
500
  * The id of the resource
500
501
  */
@@ -1726,6 +1727,7 @@ export const GetAllPromptsPromptConfig$inboundSchema: z.ZodType<
1726
1727
  > = z.object({
1727
1728
  stream: z.boolean().optional(),
1728
1729
  model: z.string().optional(),
1730
+ display_name: z.string().optional(),
1729
1731
  model_db_id: z.nullable(z.string()).optional(),
1730
1732
  model_type: z.nullable(GetAllPromptsModelType$inboundSchema).optional(),
1731
1733
  model_parameters: z.lazy(() => GetAllPromptsModelParameters$inboundSchema)
@@ -1736,6 +1738,7 @@ export const GetAllPromptsPromptConfig$inboundSchema: z.ZodType<
1736
1738
  messages: z.array(z.lazy(() => GetAllPromptsMessages$inboundSchema)),
1737
1739
  }).transform((v) => {
1738
1740
  return remap$(v, {
1741
+ "display_name": "displayName",
1739
1742
  "model_db_id": "modelDbId",
1740
1743
  "model_type": "modelType",
1741
1744
  "model_parameters": "modelParameters",
@@ -1746,6 +1749,7 @@ export const GetAllPromptsPromptConfig$inboundSchema: z.ZodType<
1746
1749
  export type GetAllPromptsPromptConfig$Outbound = {
1747
1750
  stream?: boolean | undefined;
1748
1751
  model?: string | undefined;
1752
+ display_name?: string | undefined;
1749
1753
  model_db_id?: string | null | undefined;
1750
1754
  model_type?: string | null | undefined;
1751
1755
  model_parameters?: GetAllPromptsModelParameters$Outbound | undefined;
@@ -1763,6 +1767,7 @@ export const GetAllPromptsPromptConfig$outboundSchema: z.ZodType<
1763
1767
  > = z.object({
1764
1768
  stream: z.boolean().optional(),
1765
1769
  model: z.string().optional(),
1770
+ displayName: z.string().optional(),
1766
1771
  modelDbId: z.nullable(z.string()).optional(),
1767
1772
  modelType: z.nullable(GetAllPromptsModelType$outboundSchema).optional(),
1768
1773
  modelParameters: z.lazy(() => GetAllPromptsModelParameters$outboundSchema)
@@ -1773,6 +1778,7 @@ export const GetAllPromptsPromptConfig$outboundSchema: z.ZodType<
1773
1778
  messages: z.array(z.lazy(() => GetAllPromptsMessages$outboundSchema)),
1774
1779
  }).transform((v) => {
1775
1780
  return remap$(v, {
1781
+ displayName: "display_name",
1776
1782
  modelDbId: "model_db_id",
1777
1783
  modelType: "model_type",
1778
1784
  modelParameters: "model_parameters",
@@ -716,7 +716,7 @@ export function dataCodeToolFromJSON(
716
716
  /** @internal */
717
717
  export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
718
718
  .object({
719
- _id: z.string().default("01K9V9486C9VZBCRR13JRCDXHB"),
719
+ _id: z.string().default("01K9W3QEP2PVCA05VXV6VX0XYQ"),
720
720
  path: z.string(),
721
721
  key: z.string(),
722
722
  display_name: z.string().optional(),
@@ -768,7 +768,7 @@ export const Data5$outboundSchema: z.ZodType<
768
768
  z.ZodTypeDef,
769
769
  Data5
770
770
  > = z.object({
771
- id: z.string().default("01K9V9486C9VZBCRR13JRCDXHB"),
771
+ id: z.string().default("01K9W3QEP2PVCA05VXV6VX0XYQ"),
772
772
  path: z.string(),
773
773
  key: z.string(),
774
774
  displayName: z.string().optional(),
@@ -999,7 +999,7 @@ export function dataMcpFromJSON(
999
999
  /** @internal */
1000
1000
  export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
1001
1001
  .object({
1002
- _id: z.string().default("01K9V9486AXPQ73AR4JFMNBSFG"),
1002
+ _id: z.string().default("01K9W3QEP0M4DWW3H5PFY6W7QW"),
1003
1003
  path: z.string(),
1004
1004
  key: z.string(),
1005
1005
  display_name: z.string().optional(),
@@ -1050,7 +1050,7 @@ export const Data4$outboundSchema: z.ZodType<
1050
1050
  z.ZodTypeDef,
1051
1051
  Data4
1052
1052
  > = z.object({
1053
- id: z.string().default("01K9V9486AXPQ73AR4JFMNBSFG"),
1053
+ id: z.string().default("01K9W3QEP0M4DWW3H5PFY6W7QW"),
1054
1054
  path: z.string(),
1055
1055
  key: z.string(),
1056
1056
  displayName: z.string().optional(),
@@ -1353,7 +1353,7 @@ export function getAllToolsDataHttpFromJSON(
1353
1353
  /** @internal */
1354
1354
  export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
1355
1355
  .object({
1356
- _id: z.string().default("01K9V94861MHZYG13WTKN7NDNH"),
1356
+ _id: z.string().default("01K9W3QENXRQCDD1MGY71BPZCM"),
1357
1357
  path: z.string(),
1358
1358
  key: z.string(),
1359
1359
  display_name: z.string().optional(),
@@ -1404,7 +1404,7 @@ export const Data3$outboundSchema: z.ZodType<
1404
1404
  z.ZodTypeDef,
1405
1405
  Data3
1406
1406
  > = z.object({
1407
- id: z.string().default("01K9V94861MHZYG13WTKN7NDNH"),
1407
+ id: z.string().default("01K9W3QENXRQCDD1MGY71BPZCM"),
1408
1408
  path: z.string(),
1409
1409
  key: z.string(),
1410
1410
  displayName: z.string().optional(),
@@ -1509,7 +1509,7 @@ export function dataJsonSchemaFromJSON(
1509
1509
  /** @internal */
1510
1510
  export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
1511
1511
  .object({
1512
- _id: z.string().default("01K9V948602EJX5VS8MV95FT6E"),
1512
+ _id: z.string().default("01K9W3QENVEGBPPXXHMJKHZXGT"),
1513
1513
  path: z.string(),
1514
1514
  key: z.string(),
1515
1515
  display_name: z.string().optional(),
@@ -1561,7 +1561,7 @@ export const Data2$outboundSchema: z.ZodType<
1561
1561
  z.ZodTypeDef,
1562
1562
  Data2
1563
1563
  > = z.object({
1564
- id: z.string().default("01K9V948602EJX5VS8MV95FT6E"),
1564
+ id: z.string().default("01K9W3QENVEGBPPXXHMJKHZXGT"),
1565
1565
  path: z.string(),
1566
1566
  key: z.string(),
1567
1567
  displayName: z.string().optional(),
@@ -1669,7 +1669,7 @@ export function getAllToolsDataFunctionFromJSON(
1669
1669
  /** @internal */
1670
1670
  export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
1671
1671
  .object({
1672
- _id: z.string().default("01K9V9485Y9MZJW8H99TSV2YGK"),
1672
+ _id: z.string().default("01K9W3QENHRYSBY4134QSGP6XN"),
1673
1673
  path: z.string(),
1674
1674
  key: z.string(),
1675
1675
  display_name: z.string().optional(),
@@ -1720,7 +1720,7 @@ export const Data1$outboundSchema: z.ZodType<
1720
1720
  z.ZodTypeDef,
1721
1721
  Data1
1722
1722
  > = z.object({
1723
- id: z.string().default("01K9V9485Y9MZJW8H99TSV2YGK"),
1723
+ id: z.string().default("01K9W3QENHRYSBY4134QSGP6XN"),
1724
1724
  path: z.string(),
1725
1725
  key: z.string(),
1726
1726
  displayName: z.string().optional(),