@orq-ai/node 3.14.8 → 3.14.9

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 (127) hide show
  1. package/bin/mcp-server.js +223 -223
  2. package/bin/mcp-server.js.map +36 -36
  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/createtool.d.ts +4 -4
  16. package/models/operations/createtool.d.ts.map +1 -1
  17. package/models/operations/createtool.js +14 -14
  18. package/models/operations/createtool.js.map +1 -1
  19. package/models/operations/duplicatetool.d.ts +2 -2
  20. package/models/operations/duplicatetool.d.ts.map +1 -1
  21. package/models/operations/duplicatetool.js +12 -12
  22. package/models/operations/duplicatetool.js.map +1 -1
  23. package/models/operations/fileget.js +2 -2
  24. package/models/operations/filelist.js +2 -2
  25. package/models/operations/fileupload.js +2 -2
  26. package/models/operations/getalltools.d.ts +2 -2
  27. package/models/operations/getalltools.d.ts.map +1 -1
  28. package/models/operations/getalltools.js +12 -12
  29. package/models/operations/getalltools.js.map +1 -1
  30. package/models/operations/getbudget.js +2 -2
  31. package/models/operations/getevals.js +28 -28
  32. package/models/operations/listbudgets.js +2 -2
  33. package/models/operations/listcontacts.js +2 -2
  34. package/models/operations/listdatasetdatapoints.js +8 -8
  35. package/models/operations/listdatasets.js +2 -2
  36. package/models/operations/listdatasources.js +2 -2
  37. package/models/operations/retrievecontact.js +2 -2
  38. package/models/operations/retrievedatapoint.js +8 -8
  39. package/models/operations/retrievedataset.js +2 -2
  40. package/models/operations/retrievedatasource.js +2 -2
  41. package/models/operations/retrievetool.d.ts +2 -2
  42. package/models/operations/retrievetool.d.ts.map +1 -1
  43. package/models/operations/retrievetool.js +12 -12
  44. package/models/operations/retrievetool.js.map +1 -1
  45. package/models/operations/updatebudget.js +2 -2
  46. package/models/operations/updatecontact.js +2 -2
  47. package/models/operations/updatedatapoint.js +8 -8
  48. package/models/operations/updatedataset.js +2 -2
  49. package/models/operations/updatedatasource.js +2 -2
  50. package/models/operations/updateeval.js +28 -28
  51. package/models/operations/updatetool.d.ts +4 -4
  52. package/models/operations/updatetool.d.ts.map +1 -1
  53. package/models/operations/updatetool.js +14 -14
  54. package/models/operations/updatetool.js.map +1 -1
  55. package/package.json +1 -1
  56. package/packages/orq-rc/examples/package-lock.json +1 -1
  57. package/packages/orq-rc/jsr.json +1 -1
  58. package/packages/orq-rc/package-lock.json +2 -2
  59. package/packages/orq-rc/package.json +1 -1
  60. package/packages/orq-rc/src/lib/config.ts +3 -3
  61. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  62. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  63. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  64. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  65. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  66. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
  67. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  68. package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
  69. package/packages/orq-rc/src/models/operations/createtool.ts +18 -18
  70. package/packages/orq-rc/src/models/operations/duplicatetool.ts +14 -14
  71. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  72. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  73. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  74. package/packages/orq-rc/src/models/operations/getalltools.ts +14 -14
  75. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  76. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  77. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  78. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  79. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
  80. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  81. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
  84. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  85. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/retrievetool.ts +14 -14
  87. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  88. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  89. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
  90. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  91. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
  93. package/packages/orq-rc/src/models/operations/updatetool.ts +18 -18
  94. package/src/lib/config.ts +2 -2
  95. package/src/mcp-server/mcp-server.ts +1 -1
  96. package/src/mcp-server/server.ts +1 -1
  97. package/src/models/operations/createbudget.ts +2 -2
  98. package/src/models/operations/createcontact.ts +2 -2
  99. package/src/models/operations/createdataset.ts +2 -2
  100. package/src/models/operations/createdatasetitem.ts +8 -8
  101. package/src/models/operations/createdatasource.ts +2 -2
  102. package/src/models/operations/createeval.ts +28 -28
  103. package/src/models/operations/createtool.ts +18 -18
  104. package/src/models/operations/duplicatetool.ts +14 -14
  105. package/src/models/operations/fileget.ts +2 -2
  106. package/src/models/operations/filelist.ts +2 -2
  107. package/src/models/operations/fileupload.ts +2 -2
  108. package/src/models/operations/getalltools.ts +14 -14
  109. package/src/models/operations/getbudget.ts +2 -2
  110. package/src/models/operations/getevals.ts +28 -28
  111. package/src/models/operations/listbudgets.ts +2 -2
  112. package/src/models/operations/listcontacts.ts +2 -2
  113. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  114. package/src/models/operations/listdatasets.ts +2 -2
  115. package/src/models/operations/listdatasources.ts +2 -2
  116. package/src/models/operations/retrievecontact.ts +2 -2
  117. package/src/models/operations/retrievedatapoint.ts +8 -8
  118. package/src/models/operations/retrievedataset.ts +2 -2
  119. package/src/models/operations/retrievedatasource.ts +2 -2
  120. package/src/models/operations/retrievetool.ts +14 -14
  121. package/src/models/operations/updatebudget.ts +2 -2
  122. package/src/models/operations/updatecontact.ts +2 -2
  123. package/src/models/operations/updatedatapoint.ts +8 -8
  124. package/src/models/operations/updatedataset.ts +2 -2
  125. package/src/models/operations/updatedatasource.ts +2 -2
  126. package/src/models/operations/updateeval.ts +28 -28
  127. package/src/models/operations/updatetool.ts +18 -18
@@ -3397,8 +3397,8 @@ export const Typescript$inboundSchema: z.ZodType<
3397
3397
  > = z.object({
3398
3398
  _id: z.string(),
3399
3399
  description: z.string(),
3400
- created: z.string().default("2025-10-31T10:51:57.745Z"),
3401
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
3400
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
3401
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
3402
3402
  guardrail_config: z.union([
3403
3403
  z.lazy(() =>
3404
3404
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -3441,8 +3441,8 @@ export const Typescript$outboundSchema: z.ZodType<
3441
3441
  > = z.object({
3442
3442
  id: z.string(),
3443
3443
  description: z.string(),
3444
- created: z.string().default("2025-10-31T10:51:57.745Z"),
3445
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
3444
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
3445
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
3446
3446
  guardrailConfig: z.union([
3447
3447
  z.lazy(() =>
3448
3448
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3859,8 +3859,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
3859
3859
  .object({
3860
3860
  _id: z.string(),
3861
3861
  description: z.string(),
3862
- created: z.string().default("2025-10-31T10:51:57.745Z"),
3863
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
3862
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
3863
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
3864
3864
  guardrail_config: z.union([
3865
3865
  z.lazy(() =>
3866
3866
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3906,8 +3906,8 @@ export const Ragas$outboundSchema: z.ZodType<
3906
3906
  > = z.object({
3907
3907
  id: z.string(),
3908
3908
  description: z.string(),
3909
- created: z.string().default("2025-10-31T10:51:57.745Z"),
3910
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
3909
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
3910
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
3911
3911
  guardrailConfig: z.union([
3912
3912
  z.lazy(() =>
3913
3913
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -7344,8 +7344,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
7344
7344
  > = z.object({
7345
7345
  _id: z.string(),
7346
7346
  description: z.string(),
7347
- created: z.string().default("2025-10-31T10:51:57.745Z"),
7348
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
7347
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
7348
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
7349
7349
  guardrail_config: z.union([
7350
7350
  z.lazy(() =>
7351
7351
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -7459,8 +7459,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
7459
7459
  > = z.object({
7460
7460
  id: z.string(),
7461
7461
  description: z.string(),
7462
- created: z.string().default("2025-10-31T10:51:57.745Z"),
7463
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
7462
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
7463
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
7464
7464
  guardrailConfig: z.union([
7465
7465
  z.lazy(() =>
7466
7466
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -7901,8 +7901,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
7901
7901
  > = z.object({
7902
7902
  _id: z.string(),
7903
7903
  description: z.string(),
7904
- created: z.string().default("2025-10-31T10:51:57.745Z"),
7905
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
7904
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
7905
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
7906
7906
  guardrail_config: z.union([
7907
7907
  z.lazy(() =>
7908
7908
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7944,8 +7944,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
7944
7944
  > = z.object({
7945
7945
  id: z.string(),
7946
7946
  description: z.string(),
7947
- created: z.string().default("2025-10-31T10:51:57.745Z"),
7948
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
7947
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
7948
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
7949
7949
  guardrailConfig: z.union([
7950
7950
  z.lazy(() =>
7951
7951
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -8358,8 +8358,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
8358
8358
  > = z.object({
8359
8359
  _id: z.string(),
8360
8360
  description: z.string(),
8361
- created: z.string().default("2025-10-31T10:51:57.745Z"),
8362
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
8361
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
8362
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
8363
8363
  guardrail_config: z.union([
8364
8364
  z.lazy(() =>
8365
8365
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -8407,8 +8407,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
8407
8407
  > = z.object({
8408
8408
  id: z.string(),
8409
8409
  description: z.string(),
8410
- created: z.string().default("2025-10-31T10:51:57.745Z"),
8411
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
8410
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
8411
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
8412
8412
  guardrailConfig: z.union([
8413
8413
  z.lazy(() =>
8414
8414
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -8785,8 +8785,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
8785
8785
  > = z.object({
8786
8786
  _id: z.string(),
8787
8787
  description: z.string(),
8788
- created: z.string().default("2025-10-31T10:51:57.745Z"),
8789
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
8788
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
8789
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
8790
8790
  guardrail_config: z.union([
8791
8791
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
8792
8792
  z.lazy(() =>
@@ -8826,8 +8826,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
8826
8826
  > = z.object({
8827
8827
  id: z.string(),
8828
8828
  description: z.string(),
8829
- created: z.string().default("2025-10-31T10:51:57.745Z"),
8830
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
8829
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
8830
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
8831
8831
  guardrailConfig: z.union([
8832
8832
  z.lazy(() =>
8833
8833
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -9182,8 +9182,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
9182
9182
  > = z.object({
9183
9183
  _id: z.string(),
9184
9184
  description: z.string(),
9185
- created: z.string().default("2025-10-31T10:51:57.745Z"),
9186
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
9185
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
9186
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
9187
9187
  guardrail_config: z.union([
9188
9188
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
9189
9189
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -9223,8 +9223,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
9223
9223
  > = z.object({
9224
9224
  id: z.string(),
9225
9225
  description: z.string(),
9226
- created: z.string().default("2025-10-31T10:51:57.745Z"),
9227
- updated: z.string().default("2025-10-31T10:51:57.745Z"),
9226
+ created: z.string().default("2025-11-03T14:52:18.441Z"),
9227
+ updated: z.string().default("2025-11-03T14:52:18.441Z"),
9228
9228
  guardrailConfig: z.union([
9229
9229
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
9230
9230
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -384,7 +384,7 @@ export type RequestBodyJsonSchema = {
384
384
  /**
385
385
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
386
386
  */
387
- strict?: boolean | null | undefined;
387
+ strict?: boolean | undefined;
388
388
  };
389
389
 
390
390
  /**
@@ -912,7 +912,7 @@ export type ResponseBodyJsonSchema = {
912
912
  /**
913
913
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
914
914
  */
915
- strict?: boolean | null | undefined;
915
+ strict?: boolean | undefined;
916
916
  };
917
917
 
918
918
  export type ResponseBody2 = {
@@ -2084,7 +2084,7 @@ export const RequestBodyJsonSchema$inboundSchema: z.ZodType<
2084
2084
  name: z.string(),
2085
2085
  description: z.string().optional(),
2086
2086
  schema: z.record(z.any()),
2087
- strict: z.nullable(z.boolean().default(false)),
2087
+ strict: z.boolean().optional(),
2088
2088
  });
2089
2089
 
2090
2090
  /** @internal */
@@ -2092,7 +2092,7 @@ export type RequestBodyJsonSchema$Outbound = {
2092
2092
  name: string;
2093
2093
  description?: string | undefined;
2094
2094
  schema: { [k: string]: any };
2095
- strict: boolean | null;
2095
+ strict?: boolean | undefined;
2096
2096
  };
2097
2097
 
2098
2098
  /** @internal */
@@ -2104,7 +2104,7 @@ export const RequestBodyJsonSchema$outboundSchema: z.ZodType<
2104
2104
  name: z.string(),
2105
2105
  description: z.string().optional(),
2106
2106
  schema: z.record(z.any()),
2107
- strict: z.nullable(z.boolean().default(false)),
2107
+ strict: z.boolean().optional(),
2108
2108
  });
2109
2109
 
2110
2110
  /**
@@ -2601,7 +2601,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
2601
2601
  z.ZodTypeDef,
2602
2602
  unknown
2603
2603
  > = z.object({
2604
- _id: z.string().default("01K8WYAS7A2PV6VP6VK3ANPG47"),
2604
+ _id: z.string().default("01K953912Y18KC9VWGF4020CWN"),
2605
2605
  path: z.string(),
2606
2606
  key: z.string(),
2607
2607
  display_name: z.string().optional(),
@@ -2656,7 +2656,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
2656
2656
  z.ZodTypeDef,
2657
2657
  ResponseBody5
2658
2658
  > = z.object({
2659
- id: z.string().default("01K8WYAS7A2PV6VP6VK3ANPG47"),
2659
+ id: z.string().default("01K953912Y18KC9VWGF4020CWN"),
2660
2660
  path: z.string(),
2661
2661
  key: z.string(),
2662
2662
  displayName: z.string().optional(),
@@ -3015,7 +3015,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
3015
3015
  z.ZodTypeDef,
3016
3016
  unknown
3017
3017
  > = z.object({
3018
- _id: z.string().default("01K8WYAS794WCZC6FJYQAP4DZT"),
3018
+ _id: z.string().default("01K953912VKZVQX19KJ2XZKJE0"),
3019
3019
  path: z.string(),
3020
3020
  key: z.string(),
3021
3021
  display_name: z.string().optional(),
@@ -3069,7 +3069,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
3069
3069
  z.ZodTypeDef,
3070
3070
  ResponseBody4
3071
3071
  > = z.object({
3072
- id: z.string().default("01K8WYAS794WCZC6FJYQAP4DZT"),
3072
+ id: z.string().default("01K953912VKZVQX19KJ2XZKJE0"),
3073
3073
  path: z.string(),
3074
3074
  key: z.string(),
3075
3075
  displayName: z.string().optional(),
@@ -3467,7 +3467,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
3467
3467
  z.ZodTypeDef,
3468
3468
  unknown
3469
3469
  > = z.object({
3470
- _id: z.string().default("01K8WYAS77XKSH8BYYPANAJZP1"),
3470
+ _id: z.string().default("01K953912RVP7KDGM6N39VWNT2"),
3471
3471
  path: z.string(),
3472
3472
  key: z.string(),
3473
3473
  display_name: z.string().optional(),
@@ -3519,7 +3519,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
3519
3519
  z.ZodTypeDef,
3520
3520
  ResponseBody3
3521
3521
  > = z.object({
3522
- id: z.string().default("01K8WYAS77XKSH8BYYPANAJZP1"),
3522
+ id: z.string().default("01K953912RVP7KDGM6N39VWNT2"),
3523
3523
  path: z.string(),
3524
3524
  key: z.string(),
3525
3525
  displayName: z.string().optional(),
@@ -3624,7 +3624,7 @@ export const ResponseBodyJsonSchema$inboundSchema: z.ZodType<
3624
3624
  name: z.string(),
3625
3625
  description: z.string().optional(),
3626
3626
  schema: z.record(z.any()),
3627
- strict: z.nullable(z.boolean().default(false)),
3627
+ strict: z.boolean().optional(),
3628
3628
  });
3629
3629
 
3630
3630
  /** @internal */
@@ -3632,7 +3632,7 @@ export type ResponseBodyJsonSchema$Outbound = {
3632
3632
  name: string;
3633
3633
  description?: string | undefined;
3634
3634
  schema: { [k: string]: any };
3635
- strict: boolean | null;
3635
+ strict?: boolean | undefined;
3636
3636
  };
3637
3637
 
3638
3638
  /** @internal */
@@ -3644,7 +3644,7 @@ export const ResponseBodyJsonSchema$outboundSchema: z.ZodType<
3644
3644
  name: z.string(),
3645
3645
  description: z.string().optional(),
3646
3646
  schema: z.record(z.any()),
3647
- strict: z.nullable(z.boolean().default(false)),
3647
+ strict: z.boolean().optional(),
3648
3648
  });
3649
3649
 
3650
3650
  /**
@@ -3684,7 +3684,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
3684
3684
  z.ZodTypeDef,
3685
3685
  unknown
3686
3686
  > = z.object({
3687
- _id: z.string().default("01K8WYAS76J4ZSYDV6470SRHXN"),
3687
+ _id: z.string().default("01K953912PB81FTFSVSP56MVWZ"),
3688
3688
  path: z.string(),
3689
3689
  key: z.string(),
3690
3690
  display_name: z.string().optional(),
@@ -3737,7 +3737,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
3737
3737
  z.ZodTypeDef,
3738
3738
  ResponseBody2
3739
3739
  > = z.object({
3740
- id: z.string().default("01K8WYAS76J4ZSYDV6470SRHXN"),
3740
+ id: z.string().default("01K953912PB81FTFSVSP56MVWZ"),
3741
3741
  path: z.string(),
3742
3742
  key: z.string(),
3743
3743
  displayName: z.string().optional(),
@@ -3905,7 +3905,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
3905
3905
  z.ZodTypeDef,
3906
3906
  unknown
3907
3907
  > = z.object({
3908
- _id: z.string().default("01K8WYAS75RPPWEQ69QMDRSE50"),
3908
+ _id: z.string().default("01K953912M3EKB7MSX4CKZSC7J"),
3909
3909
  path: z.string(),
3910
3910
  key: z.string(),
3911
3911
  display_name: z.string().optional(),
@@ -3957,7 +3957,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
3957
3957
  z.ZodTypeDef,
3958
3958
  ResponseBody1
3959
3959
  > = z.object({
3960
- id: z.string().default("01K8WYAS75RPPWEQ69QMDRSE50"),
3960
+ id: z.string().default("01K953912M3EKB7MSX4CKZSC7J"),
3961
3961
  path: z.string(),
3962
3962
  key: z.string(),
3963
3963
  displayName: z.string().optional(),
@@ -434,7 +434,7 @@ export type DuplicateToolResponseBodyJsonSchema = {
434
434
  /**
435
435
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
436
436
  */
437
- strict?: boolean | null | undefined;
437
+ strict?: boolean | undefined;
438
438
  };
439
439
 
440
440
  export type DuplicateToolResponseBody2 = {
@@ -788,7 +788,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
788
788
  z.ZodTypeDef,
789
789
  unknown
790
790
  > = z.object({
791
- _id: z.string().default("01K8WYAS8EAK5SYQXXPYSYV57H"),
791
+ _id: z.string().default("01K953914X55Q901EJ2NC5YRES"),
792
792
  path: z.string(),
793
793
  key: z.string(),
794
794
  display_name: z.string().optional(),
@@ -844,7 +844,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
844
844
  z.ZodTypeDef,
845
845
  DuplicateToolResponseBody5
846
846
  > = z.object({
847
- id: z.string().default("01K8WYAS8EAK5SYQXXPYSYV57H"),
847
+ id: z.string().default("01K953914X55Q901EJ2NC5YRES"),
848
848
  path: z.string(),
849
849
  key: z.string(),
850
850
  displayName: z.string().optional(),
@@ -1232,7 +1232,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
1232
1232
  z.ZodTypeDef,
1233
1233
  unknown
1234
1234
  > = z.object({
1235
- _id: z.string().default("01K8WYAS8C213AYSGGGBF3T2M8"),
1235
+ _id: z.string().default("01K953914THJWR4GYA98SM2RWX"),
1236
1236
  path: z.string(),
1237
1237
  key: z.string(),
1238
1238
  display_name: z.string().optional(),
@@ -1286,7 +1286,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
1286
1286
  z.ZodTypeDef,
1287
1287
  DuplicateToolResponseBody4
1288
1288
  > = z.object({
1289
- id: z.string().default("01K8WYAS8C213AYSGGGBF3T2M8"),
1289
+ id: z.string().default("01K953914THJWR4GYA98SM2RWX"),
1290
1290
  path: z.string(),
1291
1291
  key: z.string(),
1292
1292
  displayName: z.string().optional(),
@@ -1713,7 +1713,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
1713
1713
  z.ZodTypeDef,
1714
1714
  unknown
1715
1715
  > = z.object({
1716
- _id: z.string().default("01K8WYAS88XDQXAHYY80M24W15"),
1716
+ _id: z.string().default("01K953914Q5X92WXZYTD8R6XBE"),
1717
1717
  path: z.string(),
1718
1718
  key: z.string(),
1719
1719
  display_name: z.string().optional(),
@@ -1767,7 +1767,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
1767
1767
  z.ZodTypeDef,
1768
1768
  DuplicateToolResponseBody3
1769
1769
  > = z.object({
1770
- id: z.string().default("01K8WYAS88XDQXAHYY80M24W15"),
1770
+ id: z.string().default("01K953914Q5X92WXZYTD8R6XBE"),
1771
1771
  path: z.string(),
1772
1772
  key: z.string(),
1773
1773
  displayName: z.string().optional(),
@@ -1882,7 +1882,7 @@ export const DuplicateToolResponseBodyJsonSchema$inboundSchema: z.ZodType<
1882
1882
  name: z.string(),
1883
1883
  description: z.string().optional(),
1884
1884
  schema: z.record(z.any()),
1885
- strict: z.nullable(z.boolean().default(false)),
1885
+ strict: z.boolean().optional(),
1886
1886
  });
1887
1887
 
1888
1888
  /** @internal */
@@ -1890,7 +1890,7 @@ export type DuplicateToolResponseBodyJsonSchema$Outbound = {
1890
1890
  name: string;
1891
1891
  description?: string | undefined;
1892
1892
  schema: { [k: string]: any };
1893
- strict: boolean | null;
1893
+ strict?: boolean | undefined;
1894
1894
  };
1895
1895
 
1896
1896
  /** @internal */
@@ -1902,7 +1902,7 @@ export const DuplicateToolResponseBodyJsonSchema$outboundSchema: z.ZodType<
1902
1902
  name: z.string(),
1903
1903
  description: z.string().optional(),
1904
1904
  schema: z.record(z.any()),
1905
- strict: z.nullable(z.boolean().default(false)),
1905
+ strict: z.boolean().optional(),
1906
1906
  });
1907
1907
 
1908
1908
  /**
@@ -1947,7 +1947,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
1947
1947
  z.ZodTypeDef,
1948
1948
  unknown
1949
1949
  > = z.object({
1950
- _id: z.string().default("01K8WYAS87CG2Z7WM6N64DX35B"),
1950
+ _id: z.string().default("01K953914J5W7XKJW57A8QPTGJ"),
1951
1951
  path: z.string(),
1952
1952
  key: z.string(),
1953
1953
  display_name: z.string().optional(),
@@ -2000,7 +2000,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
2000
2000
  z.ZodTypeDef,
2001
2001
  DuplicateToolResponseBody2
2002
2002
  > = z.object({
2003
- id: z.string().default("01K8WYAS87CG2Z7WM6N64DX35B"),
2003
+ id: z.string().default("01K953914J5W7XKJW57A8QPTGJ"),
2004
2004
  path: z.string(),
2005
2005
  key: z.string(),
2006
2006
  displayName: z.string().optional(),
@@ -2173,7 +2173,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
2173
2173
  z.ZodTypeDef,
2174
2174
  unknown
2175
2175
  > = z.object({
2176
- _id: z.string().default("01K8WYAS85W810FXKW7VCM7810"),
2176
+ _id: z.string().default("01K953914E23WGK1YX2PJZD2ZG"),
2177
2177
  path: z.string(),
2178
2178
  key: z.string(),
2179
2179
  display_name: z.string().optional(),
@@ -2225,7 +2225,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
2225
2225
  z.ZodTypeDef,
2226
2226
  DuplicateToolResponseBody1
2227
2227
  > = z.object({
2228
- id: z.string().default("01K8WYAS85W810FXKW7VCM7810"),
2228
+ id: z.string().default("01K953914E23WGK1YX2PJZD2ZG"),
2229
2229
  path: z.string(),
2230
2230
  key: z.string(),
2231
2231
  displayName: z.string().optional(),
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
146
146
  file_name: z.string(),
147
147
  workspace_id: z.string(),
148
148
  created: z.string().datetime({ offset: true }).default(
149
- "2025-10-31T10:51:58.766Z",
149
+ "2025-11-03T14:52:19.544Z",
150
150
  ).transform(v => new Date(v)),
151
151
  }).transform((v) => {
152
152
  return remap$(v, {
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
180
180
  bytes: z.number(),
181
181
  fileName: z.string(),
182
182
  workspaceId: z.string(),
183
- created: z.date().default(() => new Date("2025-10-31T10:51:58.766Z"))
183
+ created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
184
184
  .transform(v => v.toISOString()),
185
185
  }).transform((v) => {
186
186
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileListData$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-10-31T10:51:58.766Z",
199
+ "2025-11-03T14:52:19.544Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
230
230
  bytes: z.number(),
231
231
  fileName: z.string(),
232
232
  workspaceId: z.string(),
233
- created: z.date().default(() => new Date("2025-10-31T10:51:58.766Z"))
233
+ created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
234
234
  .transform(v => v.toISOString()),
235
235
  }).transform((v) => {
236
236
  return remap$(v, {
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
250
250
  file_name: z.string(),
251
251
  workspace_id: z.string(),
252
252
  created: z.string().datetime({ offset: true }).default(
253
- "2025-10-31T10:51:58.766Z",
253
+ "2025-11-03T14:52:19.544Z",
254
254
  ).transform(v => new Date(v)),
255
255
  }).transform((v) => {
256
256
  return remap$(v, {
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
284
284
  bytes: z.number(),
285
285
  fileName: z.string(),
286
286
  workspaceId: z.string(),
287
- created: z.date().default(() => new Date("2025-10-31T10:51:58.766Z"))
287
+ created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
288
288
  .transform(v => v.toISOString()),
289
289
  }).transform((v) => {
290
290
  return remap$(v, {
@@ -435,7 +435,7 @@ export type DataJsonSchema = {
435
435
  /**
436
436
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
437
437
  */
438
- strict?: boolean | null | undefined;
438
+ strict?: boolean | undefined;
439
439
  };
440
440
 
441
441
  export type Data2 = {
@@ -793,7 +793,7 @@ export function dataCodeToolFromJSON(
793
793
  /** @internal */
794
794
  export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
795
795
  .object({
796
- _id: z.string().default("01K8WYAS6HPY9GWP8JNXXP35WZ"),
796
+ _id: z.string().default("01K9539126ZWNCZEEDRAF47K63"),
797
797
  path: z.string(),
798
798
  key: z.string(),
799
799
  display_name: z.string().optional(),
@@ -846,7 +846,7 @@ export const Data5$outboundSchema: z.ZodType<
846
846
  z.ZodTypeDef,
847
847
  Data5
848
848
  > = z.object({
849
- id: z.string().default("01K8WYAS6HPY9GWP8JNXXP35WZ"),
849
+ id: z.string().default("01K9539126ZWNCZEEDRAF47K63"),
850
850
  path: z.string(),
851
851
  key: z.string(),
852
852
  displayName: z.string().optional(),
@@ -1189,7 +1189,7 @@ export function dataMcpFromJSON(
1189
1189
  /** @internal */
1190
1190
  export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
1191
1191
  .object({
1192
- _id: z.string().default("01K8WYAS6EAXAYDSZFB3VDRFBH"),
1192
+ _id: z.string().default("01K95391231MY4DCM3J65X5DPS"),
1193
1193
  path: z.string(),
1194
1194
  key: z.string(),
1195
1195
  display_name: z.string().optional(),
@@ -1241,7 +1241,7 @@ export const Data4$outboundSchema: z.ZodType<
1241
1241
  z.ZodTypeDef,
1242
1242
  Data4
1243
1243
  > = z.object({
1244
- id: z.string().default("01K8WYAS6EAXAYDSZFB3VDRFBH"),
1244
+ id: z.string().default("01K95391231MY4DCM3J65X5DPS"),
1245
1245
  path: z.string(),
1246
1246
  key: z.string(),
1247
1247
  displayName: z.string().optional(),
@@ -1624,7 +1624,7 @@ export function getAllToolsDataHttpFromJSON(
1624
1624
  /** @internal */
1625
1625
  export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
1626
1626
  .object({
1627
- _id: z.string().default("01K8WYAS6B3RWDDYJ12HV62P1Q"),
1627
+ _id: z.string().default("01K953911YV5N7XAQRQ24V3JJ8"),
1628
1628
  path: z.string(),
1629
1629
  key: z.string(),
1630
1630
  display_name: z.string().optional(),
@@ -1676,7 +1676,7 @@ export const Data3$outboundSchema: z.ZodType<
1676
1676
  z.ZodTypeDef,
1677
1677
  Data3
1678
1678
  > = z.object({
1679
- id: z.string().default("01K8WYAS6B3RWDDYJ12HV62P1Q"),
1679
+ id: z.string().default("01K953911YV5N7XAQRQ24V3JJ8"),
1680
1680
  path: z.string(),
1681
1681
  key: z.string(),
1682
1682
  displayName: z.string().optional(),
@@ -1781,7 +1781,7 @@ export const DataJsonSchema$inboundSchema: z.ZodType<
1781
1781
  name: z.string(),
1782
1782
  description: z.string().optional(),
1783
1783
  schema: z.record(z.any()),
1784
- strict: z.nullable(z.boolean().default(false)),
1784
+ strict: z.boolean().optional(),
1785
1785
  });
1786
1786
 
1787
1787
  /** @internal */
@@ -1789,7 +1789,7 @@ export type DataJsonSchema$Outbound = {
1789
1789
  name: string;
1790
1790
  description?: string | undefined;
1791
1791
  schema: { [k: string]: any };
1792
- strict: boolean | null;
1792
+ strict?: boolean | undefined;
1793
1793
  };
1794
1794
 
1795
1795
  /** @internal */
@@ -1801,7 +1801,7 @@ export const DataJsonSchema$outboundSchema: z.ZodType<
1801
1801
  name: z.string(),
1802
1802
  description: z.string().optional(),
1803
1803
  schema: z.record(z.any()),
1804
- strict: z.nullable(z.boolean().default(false)),
1804
+ strict: z.boolean().optional(),
1805
1805
  });
1806
1806
 
1807
1807
  /**
@@ -1834,7 +1834,7 @@ export function dataJsonSchemaFromJSON(
1834
1834
  /** @internal */
1835
1835
  export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
1836
1836
  .object({
1837
- _id: z.string().default("01K8WYAS68HKMZH5KQWMQ4WHMA"),
1837
+ _id: z.string().default("01K953911JDZGQNPRFEDW8WNRJ"),
1838
1838
  path: z.string(),
1839
1839
  key: z.string(),
1840
1840
  display_name: z.string().optional(),
@@ -1887,7 +1887,7 @@ export const Data2$outboundSchema: z.ZodType<
1887
1887
  z.ZodTypeDef,
1888
1888
  Data2
1889
1889
  > = z.object({
1890
- id: z.string().default("01K8WYAS68HKMZH5KQWMQ4WHMA"),
1890
+ id: z.string().default("01K953911JDZGQNPRFEDW8WNRJ"),
1891
1891
  path: z.string(),
1892
1892
  key: z.string(),
1893
1893
  displayName: z.string().optional(),
@@ -2048,7 +2048,7 @@ export function getAllToolsDataFunctionFromJSON(
2048
2048
  /** @internal */
2049
2049
  export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
2050
2050
  .object({
2051
- _id: z.string().default("01K8WYAS66YVFWWJ7H61AB1FN1"),
2051
+ _id: z.string().default("01K953911GAQ9JNEVW0CYGXAHV"),
2052
2052
  path: z.string(),
2053
2053
  key: z.string(),
2054
2054
  display_name: z.string().optional(),
@@ -2100,7 +2100,7 @@ export const Data1$outboundSchema: z.ZodType<
2100
2100
  z.ZodTypeDef,
2101
2101
  Data1
2102
2102
  > = z.object({
2103
- id: z.string().default("01K8WYAS66YVFWWJ7H61AB1FN1"),
2103
+ id: z.string().default("01K953911GAQ9JNEVW0CYGXAHV"),
2104
2104
  path: z.string(),
2105
2105
  key: z.string(),
2106
2106
  displayName: z.string().optional(),
@@ -360,7 +360,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
360
360
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
361
361
  .optional(),
362
362
  updated: z.string().datetime({ offset: true }).default(
363
- "2025-10-31T10:51:55.522Z",
363
+ "2025-11-03T14:52:16.094Z",
364
364
  ).transform(v => new Date(v)),
365
365
  }).transform((v) => {
366
366
  return remap$(v, {
@@ -398,7 +398,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
398
398
  isActive: z.boolean(),
399
399
  consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
400
400
  created: z.date().transform(v => v.toISOString()).optional(),
401
- updated: z.date().default(() => new Date("2025-10-31T10:51:55.522Z"))
401
+ updated: z.date().default(() => new Date("2025-11-03T14:52:16.094Z"))
402
402
  .transform(v => v.toISOString()),
403
403
  }).transform((v) => {
404
404
  return remap$(v, {