@orq-ai/node 4.11.0-rc.2 → 4.11.0-rc.4

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 (105) hide show
  1. package/hooks/types.d.ts +1 -0
  2. package/hooks/types.d.ts.map +1 -1
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/sdks.d.ts.map +1 -1
  7. package/lib/sdks.js +13 -4
  8. package/lib/sdks.js.map +1 -1
  9. package/models/components/reasoningpart.js +1 -1
  10. package/models/operations/createdataset.js +1 -1
  11. package/models/operations/createdatasetitem.js +4 -4
  12. package/models/operations/createdatasource.js +1 -1
  13. package/models/operations/createeval.d.ts +18 -18
  14. package/models/operations/createeval.d.ts.map +1 -1
  15. package/models/operations/createeval.js +28 -28
  16. package/models/operations/createeval.js.map +1 -1
  17. package/models/operations/createtool.d.ts +10 -10
  18. package/models/operations/createtool.d.ts.map +1 -1
  19. package/models/operations/createtool.js +16 -16
  20. package/models/operations/createtool.js.map +1 -1
  21. package/models/operations/getalltools.d.ts +10 -10
  22. package/models/operations/getalltools.d.ts.map +1 -1
  23. package/models/operations/getalltools.js +16 -16
  24. package/models/operations/getalltools.js.map +1 -1
  25. package/models/operations/getevals.d.ts +6 -6
  26. package/models/operations/getevals.d.ts.map +1 -1
  27. package/models/operations/getevals.js +22 -22
  28. package/models/operations/getevals.js.map +1 -1
  29. package/models/operations/getv2humanevalsets.js +2 -2
  30. package/models/operations/getv2humanevalsetsid.js +2 -2
  31. package/models/operations/listdatasetdatapoints.js +4 -4
  32. package/models/operations/listdatasets.js +1 -1
  33. package/models/operations/listdatasources.js +1 -1
  34. package/models/operations/listknowledgebases.d.ts +2 -5
  35. package/models/operations/listknowledgebases.d.ts.map +1 -1
  36. package/models/operations/listknowledgebases.js +1 -1
  37. package/models/operations/listknowledgebases.js.map +1 -1
  38. package/models/operations/modelcreateawsbedrock.d.ts +4 -0
  39. package/models/operations/modelcreateawsbedrock.d.ts.map +1 -1
  40. package/models/operations/modelcreateawsbedrock.js +4 -0
  41. package/models/operations/modelcreateawsbedrock.js.map +1 -1
  42. package/models/operations/modelupdateawsbedrock.d.ts +4 -0
  43. package/models/operations/modelupdateawsbedrock.d.ts.map +1 -1
  44. package/models/operations/modelupdateawsbedrock.js +4 -0
  45. package/models/operations/modelupdateawsbedrock.js.map +1 -1
  46. package/models/operations/patchv2humanevalsetsid.js +2 -2
  47. package/models/operations/postv2feedbackevaluation.js +3 -3
  48. package/models/operations/postv2humanevalsets.js +2 -2
  49. package/models/operations/retrievedatapoint.js +4 -4
  50. package/models/operations/retrievedataset.js +1 -1
  51. package/models/operations/retrievedatasource.js +1 -1
  52. package/models/operations/retrievetool.d.ts +10 -10
  53. package/models/operations/retrievetool.d.ts.map +1 -1
  54. package/models/operations/retrievetool.js +16 -16
  55. package/models/operations/retrievetool.js.map +1 -1
  56. package/models/operations/runagent.js +1 -1
  57. package/models/operations/streamrunagent.js +1 -1
  58. package/models/operations/updatedatapoint.js +4 -4
  59. package/models/operations/updatedataset.js +1 -1
  60. package/models/operations/updatedatasource.js +1 -1
  61. package/models/operations/updateeval.d.ts +6 -6
  62. package/models/operations/updateeval.d.ts.map +1 -1
  63. package/models/operations/updateeval.js +22 -22
  64. package/models/operations/updateeval.js.map +1 -1
  65. package/models/operations/updatetool.d.ts +10 -10
  66. package/models/operations/updatetool.d.ts.map +1 -1
  67. package/models/operations/updatetool.js +17 -17
  68. package/models/operations/updatetool.js.map +1 -1
  69. package/package.json +3 -3
  70. package/sdk/feedback.d.ts +2 -2
  71. package/sdk/feedback.js +2 -2
  72. package/src/hooks/types.ts +1 -0
  73. package/src/lib/config.ts +3 -3
  74. package/src/lib/sdks.ts +13 -4
  75. package/src/models/components/reasoningpart.ts +1 -1
  76. package/src/models/operations/createdataset.ts +1 -1
  77. package/src/models/operations/createdatasetitem.ts +4 -4
  78. package/src/models/operations/createdatasource.ts +1 -1
  79. package/src/models/operations/createeval.ts +55 -48
  80. package/src/models/operations/createtool.ts +26 -26
  81. package/src/models/operations/getalltools.ts +26 -26
  82. package/src/models/operations/getevals.ts +33 -30
  83. package/src/models/operations/getv2humanevalsets.ts +2 -2
  84. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  85. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  86. package/src/models/operations/listdatasets.ts +1 -1
  87. package/src/models/operations/listdatasources.ts +1 -1
  88. package/src/models/operations/listknowledgebases.ts +3 -6
  89. package/src/models/operations/modelcreateawsbedrock.ts +8 -0
  90. package/src/models/operations/modelupdateawsbedrock.ts +8 -0
  91. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  92. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  93. package/src/models/operations/postv2humanevalsets.ts +2 -2
  94. package/src/models/operations/retrievedatapoint.ts +4 -4
  95. package/src/models/operations/retrievedataset.ts +1 -1
  96. package/src/models/operations/retrievedatasource.ts +1 -1
  97. package/src/models/operations/retrievetool.ts +26 -26
  98. package/src/models/operations/runagent.ts +1 -1
  99. package/src/models/operations/streamrunagent.ts +1 -1
  100. package/src/models/operations/updatedatapoint.ts +4 -4
  101. package/src/models/operations/updatedataset.ts +1 -1
  102. package/src/models/operations/updatedatasource.ts +1 -1
  103. package/src/models/operations/updateeval.ts +33 -30
  104. package/src/models/operations/updatetool.ts +27 -27
  105. package/src/sdk/feedback.ts +2 -2
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
2355
2355
  ),
2356
2356
  reviewed_by_id: z.string(),
2357
2357
  reviewed_at: z.string().datetime({ offset: true }).default(
2358
- "2026-06-08T05:34:42.557Z",
2358
+ "2026-06-09T07:16:39.727Z",
2359
2359
  ).transform(v => new Date(v)),
2360
2360
  type: z.literal("string_array"),
2361
2361
  values: z.array(z.string()),
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
2400
2400
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
2401
2401
  reviewed_by_id: z.string(),
2402
2402
  reviewed_at: z.string().datetime({ offset: true }).default(
2403
- "2026-06-08T05:34:42.557Z",
2403
+ "2026-06-09T07:16:39.726Z",
2404
2404
  ).transform(v => new Date(v)),
2405
2405
  type: z.literal("number"),
2406
2406
  value: z.number(),
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
2446
2446
  source: EvaluationsSource$inboundSchema.default("orq"),
2447
2447
  reviewed_by_id: z.string(),
2448
2448
  reviewed_at: z.string().datetime({ offset: true }).default(
2449
- "2026-06-08T05:34:42.556Z",
2449
+ "2026-06-09T07:16:39.726Z",
2450
2450
  ).transform(v => new Date(v)),
2451
2451
  type: z.literal("string"),
2452
2452
  value: z.string(),
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
2529
2529
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2530
2530
  .optional(),
2531
2531
  updated: z.string().datetime({ offset: true }).default(
2532
- "2026-06-08T05:34:18.893Z",
2532
+ "2026-06-09T07:16:24.404Z",
2533
2533
  ).transform(v => new Date(v)),
2534
2534
  }).transform((v) => {
2535
2535
  return remap$(v, {
@@ -409,7 +409,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
409
409
  z.ZodTypeDef,
410
410
  unknown
411
411
  > = z.object({
412
- _id: z.string().default("01KTJVKQSKHEQGNGTCZ17Y5BQX"),
412
+ _id: z.string().default("01KTNKV4JHMJKV72X41DHTS9RF"),
413
413
  display_name: z.string(),
414
414
  description: z.nullable(z.string()).optional(),
415
415
  status: CreateDatasourceStatus$inboundSchema,
@@ -200,10 +200,10 @@ export type Llm2 = {
200
200
  */
201
201
  outputType?: LLMOutputType | undefined;
202
202
  type: LLMType;
203
- repetitions?: number | undefined;
203
+ repetitions?: number | null | undefined;
204
204
  prompt: string;
205
- categories?: Array<string> | undefined;
206
- categoricalLabels?: Array<LLMCategoricalLabels> | undefined;
205
+ categories?: Array<string> | null | undefined;
206
+ categoricalLabels?: Array<LLMCategoricalLabels> | null | undefined;
207
207
  datasetId?: string | undefined;
208
208
  /**
209
209
  * Entity storage path.
@@ -298,10 +298,10 @@ export type Llm1 = {
298
298
  */
299
299
  outputType?: CreateEvalLLMOutputType | undefined;
300
300
  type: CreateEvalLLMType;
301
- repetitions?: number | undefined;
301
+ repetitions?: number | null | undefined;
302
302
  prompt: string;
303
- categories?: Array<string> | undefined;
304
- categoricalLabels?: Array<CreateEvalLLMCategoricalLabels> | undefined;
303
+ categories?: Array<string> | null | undefined;
304
+ categoricalLabels?: Array<CreateEvalLLMCategoricalLabels> | null | undefined;
305
305
  datasetId?: string | undefined;
306
306
  /**
307
307
  * Entity storage path.
@@ -1059,10 +1059,13 @@ export type CreateEvalLlm2 = {
1059
1059
  | null
1060
1060
  | undefined;
1061
1061
  type: CreateEvalLLMEvalsResponseType;
1062
- repetitions?: number | undefined;
1062
+ repetitions?: number | null | undefined;
1063
1063
  prompt: string;
1064
- categories?: Array<string> | undefined;
1065
- categoricalLabels?: Array<CreateEvalLLMEvalsCategoricalLabels> | undefined;
1064
+ categories?: Array<string> | null | undefined;
1065
+ categoricalLabels?:
1066
+ | Array<CreateEvalLLMEvalsCategoricalLabels>
1067
+ | null
1068
+ | undefined;
1066
1069
  datasetId?: string | undefined;
1067
1070
  key: string;
1068
1071
  mode: "jury";
@@ -1137,11 +1140,12 @@ export type CreateEvalLlm1 = {
1137
1140
  | null
1138
1141
  | undefined;
1139
1142
  type: CreateEvalLLMEvalsType;
1140
- repetitions?: number | undefined;
1143
+ repetitions?: number | null | undefined;
1141
1144
  prompt: string;
1142
- categories?: Array<string> | undefined;
1145
+ categories?: Array<string> | null | undefined;
1143
1146
  categoricalLabels?:
1144
1147
  | Array<CreateEvalLLMEvalsResponseCategoricalLabels>
1148
+ | null
1145
1149
  | undefined;
1146
1150
  datasetId?: string | undefined;
1147
1151
  key: string;
@@ -1706,10 +1710,10 @@ export type Llm2$Outbound = {
1706
1710
  | undefined;
1707
1711
  output_type?: string | undefined;
1708
1712
  type: string;
1709
- repetitions?: number | undefined;
1713
+ repetitions?: number | null | undefined;
1710
1714
  prompt: string;
1711
- categories?: Array<string> | undefined;
1712
- categorical_labels?: Array<LLMCategoricalLabels$Outbound> | undefined;
1715
+ categories?: Array<string> | null | undefined;
1716
+ categorical_labels?: Array<LLMCategoricalLabels$Outbound> | null | undefined;
1713
1717
  dataset_id?: string | undefined;
1714
1718
  path: string;
1715
1719
  description: string;
@@ -1736,11 +1740,11 @@ export const Llm2$outboundSchema: z.ZodType<Llm2$Outbound, z.ZodTypeDef, Llm2> =
1736
1740
  ).optional(),
1737
1741
  outputType: LLMOutputType$outboundSchema.optional(),
1738
1742
  type: LLMType$outboundSchema,
1739
- repetitions: z.number().int().optional(),
1743
+ repetitions: z.nullable(z.number().int()).optional(),
1740
1744
  prompt: z.string(),
1741
- categories: z.array(z.string()).optional(),
1742
- categoricalLabels: z.array(
1743
- z.lazy(() => LLMCategoricalLabels$outboundSchema),
1745
+ categories: z.nullable(z.array(z.string())).optional(),
1746
+ categoricalLabels: z.nullable(
1747
+ z.array(z.lazy(() => LLMCategoricalLabels$outboundSchema)),
1744
1748
  ).optional(),
1745
1749
  datasetId: z.string().optional(),
1746
1750
  path: z.string(),
@@ -1943,11 +1947,12 @@ export type Llm1$Outbound = {
1943
1947
  | undefined;
1944
1948
  output_type?: string | undefined;
1945
1949
  type: string;
1946
- repetitions?: number | undefined;
1950
+ repetitions?: number | null | undefined;
1947
1951
  prompt: string;
1948
- categories?: Array<string> | undefined;
1952
+ categories?: Array<string> | null | undefined;
1949
1953
  categorical_labels?:
1950
1954
  | Array<CreateEvalLLMCategoricalLabels$Outbound>
1955
+ | null
1951
1956
  | undefined;
1952
1957
  dataset_id?: string | undefined;
1953
1958
  path: string;
@@ -1969,11 +1974,11 @@ export const Llm1$outboundSchema: z.ZodType<Llm1$Outbound, z.ZodTypeDef, Llm1> =
1969
1974
  ).optional(),
1970
1975
  outputType: CreateEvalLLMOutputType$outboundSchema.optional(),
1971
1976
  type: CreateEvalLLMType$outboundSchema,
1972
- repetitions: z.number().int().optional(),
1977
+ repetitions: z.nullable(z.number().int()).optional(),
1973
1978
  prompt: z.string(),
1974
- categories: z.array(z.string()).optional(),
1975
- categoricalLabels: z.array(
1976
- z.lazy(() => CreateEvalLLMCategoricalLabels$outboundSchema),
1979
+ categories: z.nullable(z.array(z.string())).optional(),
1980
+ categoricalLabels: z.nullable(
1981
+ z.array(z.lazy(() => CreateEvalLLMCategoricalLabels$outboundSchema)),
1977
1982
  ).optional(),
1978
1983
  datasetId: z.string().optional(),
1979
1984
  path: z.string(),
@@ -2188,8 +2193,8 @@ export const Typescript$inboundSchema: z.ZodType<
2188
2193
  > = z.object({
2189
2194
  _id: z.string(),
2190
2195
  description: z.string(),
2191
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2192
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2196
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2197
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2193
2198
  updated_by_id: z.nullable(z.string()).optional(),
2194
2199
  guardrail_config: z.nullable(
2195
2200
  z.union([
@@ -2379,8 +2384,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
2379
2384
  .object({
2380
2385
  _id: z.string(),
2381
2386
  description: z.string(),
2382
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2383
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2387
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2388
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2384
2389
  updated_by_id: z.nullable(z.string()).optional(),
2385
2390
  guardrail_config: z.nullable(
2386
2391
  z.union([
@@ -3205,8 +3210,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
3205
3210
  > = z.object({
3206
3211
  _id: z.string(),
3207
3212
  description: z.string(),
3208
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3209
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3213
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3214
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3210
3215
  updated_by_id: z.nullable(z.string()).optional(),
3211
3216
  guardrail_config: z.nullable(
3212
3217
  z.union([
@@ -3425,8 +3430,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
3425
3430
  > = z.object({
3426
3431
  _id: z.string(),
3427
3432
  description: z.string(),
3428
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3429
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3433
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3434
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3430
3435
  updated_by_id: z.nullable(z.string()).optional(),
3431
3436
  guardrail_config: z.nullable(
3432
3437
  z.union([
@@ -3607,8 +3612,8 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
3607
3612
  > = z.object({
3608
3613
  _id: z.string(),
3609
3614
  description: z.string(),
3610
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3611
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3615
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3616
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3612
3617
  updated_by_id: z.nullable(z.string()).optional(),
3613
3618
  guardrail_config: z.nullable(
3614
3619
  z.union([
@@ -3767,8 +3772,8 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
3767
3772
  .object({
3768
3773
  _id: z.string(),
3769
3774
  description: z.string(),
3770
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3771
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3775
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3776
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3772
3777
  updated_by_id: z.nullable(z.string()).optional(),
3773
3778
  guardrail_config: z.nullable(
3774
3779
  z.union([
@@ -4138,8 +4143,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
4138
4143
  > = z.object({
4139
4144
  _id: z.string(),
4140
4145
  description: z.string(),
4141
- created: z.string().default("2026-06-08T05:34:20.335Z"),
4142
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
4146
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
4147
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
4143
4148
  updated_by_id: z.nullable(z.string()).optional(),
4144
4149
  guardrail_config: z.nullable(
4145
4150
  z.union([
@@ -4155,11 +4160,11 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
4155
4160
  ]),
4156
4161
  ).optional(),
4157
4162
  type: CreateEvalLLMEvalsResponseType$inboundSchema,
4158
- repetitions: z.number().int().optional(),
4163
+ repetitions: z.nullable(z.number().int()).optional(),
4159
4164
  prompt: z.string(),
4160
- categories: z.array(z.string()).optional(),
4161
- categorical_labels: z.array(
4162
- z.lazy(() => CreateEvalLLMEvalsCategoricalLabels$inboundSchema),
4165
+ categories: z.nullable(z.array(z.string())).optional(),
4166
+ categorical_labels: z.nullable(
4167
+ z.array(z.lazy(() => CreateEvalLLMEvalsCategoricalLabels$inboundSchema)),
4163
4168
  ).optional(),
4164
4169
  dataset_id: z.string().optional(),
4165
4170
  key: z.string(),
@@ -4358,8 +4363,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
4358
4363
  > = z.object({
4359
4364
  _id: z.string(),
4360
4365
  description: z.string(),
4361
- created: z.string().default("2026-06-08T05:34:20.335Z"),
4362
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
4366
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
4367
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
4363
4368
  updated_by_id: z.nullable(z.string()).optional(),
4364
4369
  guardrail_config: z.nullable(
4365
4370
  z.union([
@@ -4375,11 +4380,13 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
4375
4380
  ]),
4376
4381
  ).optional(),
4377
4382
  type: CreateEvalLLMEvalsType$inboundSchema,
4378
- repetitions: z.number().int().optional(),
4383
+ repetitions: z.nullable(z.number().int()).optional(),
4379
4384
  prompt: z.string(),
4380
- categories: z.array(z.string()).optional(),
4381
- categorical_labels: z.array(
4382
- z.lazy(() => CreateEvalLLMEvalsResponseCategoricalLabels$inboundSchema),
4385
+ categories: z.nullable(z.array(z.string())).optional(),
4386
+ categorical_labels: z.nullable(
4387
+ z.array(z.lazy(() =>
4388
+ CreateEvalLLMEvalsResponseCategoricalLabels$inboundSchema
4389
+ )),
4383
4390
  ).optional(),
4384
4391
  dataset_id: z.string().optional(),
4385
4392
  key: z.string(),
@@ -630,11 +630,11 @@ export type ResponseBodyCodeExecutionTool = {
630
630
  /**
631
631
  * The id of the user that created the tool
632
632
  */
633
- createdById?: string | undefined;
633
+ createdById?: string | null | undefined;
634
634
  /**
635
635
  * The id of the user that last updated the tool
636
636
  */
637
- updatedById?: string | undefined;
637
+ updatedById?: string | null | undefined;
638
638
  projectId: string;
639
639
  workspaceId: string;
640
640
  created: string;
@@ -754,11 +754,11 @@ export type ResponseBodyMCPTool = {
754
754
  /**
755
755
  * The id of the user that created the tool
756
756
  */
757
- createdById?: string | undefined;
757
+ createdById?: string | null | undefined;
758
758
  /**
759
759
  * The id of the user that last updated the tool
760
760
  */
761
- updatedById?: string | undefined;
761
+ updatedById?: string | null | undefined;
762
762
  projectId: string;
763
763
  workspaceId: string;
764
764
  created: string;
@@ -911,11 +911,11 @@ export type ResponseBodyHTTPTool = {
911
911
  /**
912
912
  * The id of the user that created the tool
913
913
  */
914
- createdById?: string | undefined;
914
+ createdById?: string | null | undefined;
915
915
  /**
916
916
  * The id of the user that last updated the tool
917
917
  */
918
- updatedById?: string | undefined;
918
+ updatedById?: string | null | undefined;
919
919
  projectId: string;
920
920
  workspaceId: string;
921
921
  created: string;
@@ -1012,11 +1012,11 @@ export type ResponseBodyJSONSchemaTool = {
1012
1012
  /**
1013
1013
  * The id of the user that created the tool
1014
1014
  */
1015
- createdById?: string | undefined;
1015
+ createdById?: string | null | undefined;
1016
1016
  /**
1017
1017
  * The id of the user that last updated the tool
1018
1018
  */
1019
- updatedById?: string | undefined;
1019
+ updatedById?: string | null | undefined;
1020
1020
  projectId: string;
1021
1021
  workspaceId: string;
1022
1022
  created: string;
@@ -1123,11 +1123,11 @@ export type ResponseBodyFunctionTool = {
1123
1123
  /**
1124
1124
  * The id of the user that created the tool
1125
1125
  */
1126
- createdById?: string | undefined;
1126
+ createdById?: string | null | undefined;
1127
1127
  /**
1128
1128
  * The id of the user that last updated the tool
1129
1129
  */
1130
- updatedById?: string | undefined;
1130
+ updatedById?: string | null | undefined;
1131
1131
  projectId: string;
1132
1132
  workspaceId: string;
1133
1133
  created: string;
@@ -1898,13 +1898,13 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
1898
1898
  z.ZodTypeDef,
1899
1899
  unknown
1900
1900
  > = z.object({
1901
- _id: z.string().default("tool_01KTJVKQMV3TDHWK3ZP0A4E67T"),
1901
+ _id: z.string().default("tool_01KTNKV4EH9KSH06X0P4MYPDG6"),
1902
1902
  path: z.string(),
1903
1903
  key: z.string(),
1904
1904
  display_name: z.string().optional(),
1905
1905
  description: z.string(),
1906
- created_by_id: z.string().optional(),
1907
- updated_by_id: z.string().optional(),
1906
+ created_by_id: z.nullable(z.string()).optional(),
1907
+ updated_by_id: z.nullable(z.string()).optional(),
1908
1908
  project_id: z.string(),
1909
1909
  workspace_id: z.string(),
1910
1910
  created: z.string(),
@@ -1995,7 +1995,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
1995
1995
  z.ZodTypeDef,
1996
1996
  unknown
1997
1997
  > = z.object({
1998
- id: z.string().default("01KTJVKQMTY8MJA6A4GHA4E28W"),
1998
+ id: z.string().default("01KTNKV4EG99NK249X082VKCQJ"),
1999
1999
  name: z.string(),
2000
2000
  description: z.string().optional(),
2001
2001
  schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
@@ -2051,13 +2051,13 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
2051
2051
  z.ZodTypeDef,
2052
2052
  unknown
2053
2053
  > = z.object({
2054
- _id: z.string().default("tool_01KTJVKQMS6RDFNDENWCK706F9"),
2054
+ _id: z.string().default("tool_01KTNKV4EFNTQTFRG0SADKNV0Z"),
2055
2055
  path: z.string(),
2056
2056
  key: z.string(),
2057
2057
  display_name: z.string().optional(),
2058
2058
  description: z.string(),
2059
- created_by_id: z.string().optional(),
2060
- updated_by_id: z.string().optional(),
2059
+ created_by_id: z.nullable(z.string()).optional(),
2060
+ updated_by_id: z.nullable(z.string()).optional(),
2061
2061
  project_id: z.string(),
2062
2062
  workspace_id: z.string(),
2063
2063
  created: z.string(),
@@ -2237,13 +2237,13 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
2237
2237
  z.ZodTypeDef,
2238
2238
  unknown
2239
2239
  > = z.object({
2240
- _id: z.string().default("tool_01KTJVKQMQ7XRZFNRTBT2V364B"),
2240
+ _id: z.string().default("tool_01KTNKV4ED12RYN03YVG0J95PT"),
2241
2241
  path: z.string(),
2242
2242
  key: z.string(),
2243
2243
  display_name: z.string().optional(),
2244
2244
  description: z.string(),
2245
- created_by_id: z.string().optional(),
2246
- updated_by_id: z.string().optional(),
2245
+ created_by_id: z.nullable(z.string()).optional(),
2246
+ updated_by_id: z.nullable(z.string()).optional(),
2247
2247
  project_id: z.string(),
2248
2248
  workspace_id: z.string(),
2249
2249
  created: z.string(),
@@ -2330,13 +2330,13 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2330
2330
  z.ZodTypeDef,
2331
2331
  unknown
2332
2332
  > = z.object({
2333
- _id: z.string().default("tool_01KTJVKQMNCFVNA0T4QXP147E7"),
2333
+ _id: z.string().default("tool_01KTNKV4EBCMFRDZFNA58DFFTC"),
2334
2334
  path: z.string(),
2335
2335
  key: z.string(),
2336
2336
  display_name: z.string().optional(),
2337
2337
  description: z.string(),
2338
- created_by_id: z.string().optional(),
2339
- updated_by_id: z.string().optional(),
2338
+ created_by_id: z.nullable(z.string()).optional(),
2339
+ updated_by_id: z.nullable(z.string()).optional(),
2340
2340
  project_id: z.string(),
2341
2341
  workspace_id: z.string(),
2342
2342
  created: z.string(),
@@ -2431,13 +2431,13 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
2431
2431
  z.ZodTypeDef,
2432
2432
  unknown
2433
2433
  > = z.object({
2434
- _id: z.string().default("tool_01KTJVKQMJHDCWJQ3KMEZ18T6C"),
2434
+ _id: z.string().default("tool_01KTNKV4E9QQ0GJR4E8TD9ZEK1"),
2435
2435
  path: z.string(),
2436
2436
  key: z.string(),
2437
2437
  display_name: z.string().optional(),
2438
2438
  description: z.string(),
2439
- created_by_id: z.string().optional(),
2440
- updated_by_id: z.string().optional(),
2439
+ created_by_id: z.nullable(z.string()).optional(),
2440
+ updated_by_id: z.nullable(z.string()).optional(),
2441
2441
  project_id: z.string(),
2442
2442
  workspace_id: z.string(),
2443
2443
  created: z.string(),
@@ -128,11 +128,11 @@ export type DataCodeExecutionTool = {
128
128
  /**
129
129
  * The id of the user that created the tool
130
130
  */
131
- createdById?: string | undefined;
131
+ createdById?: string | null | undefined;
132
132
  /**
133
133
  * The id of the user that last updated the tool
134
134
  */
135
- updatedById?: string | undefined;
135
+ updatedById?: string | null | undefined;
136
136
  projectId: string;
137
137
  workspaceId: string;
138
138
  created: string;
@@ -252,11 +252,11 @@ export type DataMCPTool = {
252
252
  /**
253
253
  * The id of the user that created the tool
254
254
  */
255
- createdById?: string | undefined;
255
+ createdById?: string | null | undefined;
256
256
  /**
257
257
  * The id of the user that last updated the tool
258
258
  */
259
- updatedById?: string | undefined;
259
+ updatedById?: string | null | undefined;
260
260
  projectId: string;
261
261
  workspaceId: string;
262
262
  created: string;
@@ -409,11 +409,11 @@ export type DataHTTPTool = {
409
409
  /**
410
410
  * The id of the user that created the tool
411
411
  */
412
- createdById?: string | undefined;
412
+ createdById?: string | null | undefined;
413
413
  /**
414
414
  * The id of the user that last updated the tool
415
415
  */
416
- updatedById?: string | undefined;
416
+ updatedById?: string | null | undefined;
417
417
  projectId: string;
418
418
  workspaceId: string;
419
419
  created: string;
@@ -508,11 +508,11 @@ export type DataJSONSchemaTool = {
508
508
  /**
509
509
  * The id of the user that created the tool
510
510
  */
511
- createdById?: string | undefined;
511
+ createdById?: string | null | undefined;
512
512
  /**
513
513
  * The id of the user that last updated the tool
514
514
  */
515
- updatedById?: string | undefined;
515
+ updatedById?: string | null | undefined;
516
516
  projectId: string;
517
517
  workspaceId: string;
518
518
  created: string;
@@ -621,11 +621,11 @@ export type DataFunctionTool = {
621
621
  /**
622
622
  * The id of the user that created the tool
623
623
  */
624
- createdById?: string | undefined;
624
+ createdById?: string | null | undefined;
625
625
  /**
626
626
  * The id of the user that last updated the tool
627
627
  */
628
- updatedById?: string | undefined;
628
+ updatedById?: string | null | undefined;
629
629
  projectId: string;
630
630
  workspaceId: string;
631
631
  created: string;
@@ -767,13 +767,13 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
767
767
  z.ZodTypeDef,
768
768
  unknown
769
769
  > = z.object({
770
- _id: z.string().default("tool_01KTJVKQM5JY3RD8H5ZED9ZV0B"),
770
+ _id: z.string().default("tool_01KTNKV4DFJZWCSE0G58BHQ4RC"),
771
771
  path: z.string(),
772
772
  key: z.string(),
773
773
  display_name: z.string().optional(),
774
774
  description: z.string(),
775
- created_by_id: z.string().optional(),
776
- updated_by_id: z.string().optional(),
775
+ created_by_id: z.nullable(z.string()).optional(),
776
+ updated_by_id: z.nullable(z.string()).optional(),
777
777
  project_id: z.string(),
778
778
  workspace_id: z.string(),
779
779
  created: z.string(),
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
864
864
  z.ZodTypeDef,
865
865
  unknown
866
866
  > = z.object({
867
- id: z.string().default("01KTJVKQM4Q2BVAPVK3MHHK350"),
867
+ id: z.string().default("01KTNKV4DEP3F5K2DSE0GYMGPA"),
868
868
  name: z.string(),
869
869
  description: z.string().optional(),
870
870
  schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
@@ -917,13 +917,13 @@ export const DataMCPTool$inboundSchema: z.ZodType<
917
917
  z.ZodTypeDef,
918
918
  unknown
919
919
  > = z.object({
920
- _id: z.string().default("tool_01KTJVKQM228K32S47SZZXQK67"),
920
+ _id: z.string().default("tool_01KTNKV4DDFSG9XDVJDT93G0KH"),
921
921
  path: z.string(),
922
922
  key: z.string(),
923
923
  display_name: z.string().optional(),
924
924
  description: z.string(),
925
- created_by_id: z.string().optional(),
926
- updated_by_id: z.string().optional(),
925
+ created_by_id: z.nullable(z.string()).optional(),
926
+ updated_by_id: z.nullable(z.string()).optional(),
927
927
  project_id: z.string(),
928
928
  workspace_id: z.string(),
929
929
  created: z.string(),
@@ -1102,13 +1102,13 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
1102
1102
  z.ZodTypeDef,
1103
1103
  unknown
1104
1104
  > = z.object({
1105
- _id: z.string().default("tool_01KTJVKQM09GVDZZQ7GR03KP7H"),
1105
+ _id: z.string().default("tool_01KTNKV4DBJJF367100ANSSSSG"),
1106
1106
  path: z.string(),
1107
1107
  key: z.string(),
1108
1108
  display_name: z.string().optional(),
1109
1109
  description: z.string(),
1110
- created_by_id: z.string().optional(),
1111
- updated_by_id: z.string().optional(),
1110
+ created_by_id: z.nullable(z.string()).optional(),
1111
+ updated_by_id: z.nullable(z.string()).optional(),
1112
1112
  project_id: z.string(),
1113
1113
  workspace_id: z.string(),
1114
1114
  created: z.string(),
@@ -1195,13 +1195,13 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
1195
1195
  z.ZodTypeDef,
1196
1196
  unknown
1197
1197
  > = z.object({
1198
- _id: z.string().default("tool_01KTJVKQKYDC69012XZ0CABGBB"),
1198
+ _id: z.string().default("tool_01KTNKV4D9XDNZFJW490JTX3A7"),
1199
1199
  path: z.string(),
1200
1200
  key: z.string(),
1201
1201
  display_name: z.string().optional(),
1202
1202
  description: z.string(),
1203
- created_by_id: z.string().optional(),
1204
- updated_by_id: z.string().optional(),
1203
+ created_by_id: z.nullable(z.string()).optional(),
1204
+ updated_by_id: z.nullable(z.string()).optional(),
1205
1205
  project_id: z.string(),
1206
1206
  workspace_id: z.string(),
1207
1207
  created: z.string(),
@@ -1297,13 +1297,13 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
1297
1297
  z.ZodTypeDef,
1298
1298
  unknown
1299
1299
  > = z.object({
1300
- _id: z.string().default("tool_01KTJVKQKWBX2FKE71QB8EVRKG"),
1300
+ _id: z.string().default("tool_01KTNKV4D70JS71BV5ZG6GMXYN"),
1301
1301
  path: z.string(),
1302
1302
  key: z.string(),
1303
1303
  display_name: z.string().optional(),
1304
1304
  description: z.string(),
1305
- created_by_id: z.string().optional(),
1306
- updated_by_id: z.string().optional(),
1305
+ created_by_id: z.nullable(z.string()).optional(),
1306
+ updated_by_id: z.nullable(z.string()).optional(),
1307
1307
  project_id: z.string(),
1308
1308
  workspace_id: z.string(),
1309
1309
  created: z.string(),