@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
@@ -759,10 +759,13 @@ export type GetEvalsLlm2 = {
759
759
  | null
760
760
  | undefined;
761
761
  type: GetEvalsLLMEvalsType;
762
- repetitions?: number | undefined;
762
+ repetitions?: number | null | undefined;
763
763
  prompt: string;
764
- categories?: Array<string> | undefined;
765
- categoricalLabels?: Array<GetEvalsLLMEvalsCategoricalLabels> | undefined;
764
+ categories?: Array<string> | null | undefined;
765
+ categoricalLabels?:
766
+ | Array<GetEvalsLLMEvalsCategoricalLabels>
767
+ | null
768
+ | undefined;
766
769
  datasetId?: string | undefined;
767
770
  key: string;
768
771
  mode: "jury";
@@ -837,10 +840,10 @@ export type GetEvalsLlm1 = {
837
840
  | null
838
841
  | undefined;
839
842
  type: GetEvalsLLMType;
840
- repetitions?: number | undefined;
843
+ repetitions?: number | null | undefined;
841
844
  prompt: string;
842
- categories?: Array<string> | undefined;
843
- categoricalLabels?: Array<GetEvalsLLMCategoricalLabels> | undefined;
845
+ categories?: Array<string> | null | undefined;
846
+ categoricalLabels?: Array<GetEvalsLLMCategoricalLabels> | null | undefined;
844
847
  datasetId?: string | undefined;
845
848
  key: string;
846
849
  mode: "single";
@@ -1067,8 +1070,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
1067
1070
  > = z.object({
1068
1071
  _id: z.string(),
1069
1072
  description: z.string(),
1070
- created: z.string().default("2026-06-08T05:34:20.335Z"),
1071
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
1073
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
1074
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
1072
1075
  updated_by_id: z.nullable(z.string()).optional(),
1073
1076
  guardrail_config: z.nullable(
1074
1077
  z.union([
@@ -1249,8 +1252,8 @@ export const DataRagas$inboundSchema: z.ZodType<
1249
1252
  > = z.object({
1250
1253
  _id: z.string(),
1251
1254
  description: z.string(),
1252
- created: z.string().default("2026-06-08T05:34:20.335Z"),
1253
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
1255
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
1256
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
1254
1257
  updated_by_id: z.nullable(z.string()).optional(),
1255
1258
  guardrail_config: z.nullable(
1256
1259
  z.union([
@@ -2081,8 +2084,8 @@ export const DataFunction$inboundSchema: z.ZodType<
2081
2084
  > = z.object({
2082
2085
  _id: z.string(),
2083
2086
  description: z.string(),
2084
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2085
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2087
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2088
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2086
2089
  updated_by_id: z.nullable(z.string()).optional(),
2087
2090
  guardrail_config: z.nullable(
2088
2091
  z.union([
@@ -2265,8 +2268,8 @@ export const DataPython$inboundSchema: z.ZodType<
2265
2268
  > = z.object({
2266
2269
  _id: z.string(),
2267
2270
  description: z.string(),
2268
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2269
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2271
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2272
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2270
2273
  updated_by_id: z.nullable(z.string()).optional(),
2271
2274
  guardrail_config: z.nullable(
2272
2275
  z.union([
@@ -2445,8 +2448,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
2445
2448
  > = z.object({
2446
2449
  _id: z.string(),
2447
2450
  description: z.string(),
2448
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2449
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2451
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2452
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2450
2453
  updated_by_id: z.nullable(z.string()).optional(),
2451
2454
  guardrail_config: z.nullable(
2452
2455
  z.union([
@@ -2637,8 +2640,8 @@ export const DataJSON$inboundSchema: z.ZodType<
2637
2640
  > = z.object({
2638
2641
  _id: z.string(),
2639
2642
  description: z.string(),
2640
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2641
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2643
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
2644
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
2642
2645
  updated_by_id: z.nullable(z.string()).optional(),
2643
2646
  guardrail_config: z.nullable(
2644
2647
  z.union([
@@ -3005,8 +3008,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
3005
3008
  > = z.object({
3006
3009
  _id: z.string(),
3007
3010
  description: z.string(),
3008
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3009
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3011
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3012
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3010
3013
  updated_by_id: z.nullable(z.string()).optional(),
3011
3014
  guardrail_config: z.nullable(
3012
3015
  z.union([
@@ -3022,11 +3025,11 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
3022
3025
  ]),
3023
3026
  ).optional(),
3024
3027
  type: GetEvalsLLMEvalsType$inboundSchema,
3025
- repetitions: z.number().int().optional(),
3028
+ repetitions: z.nullable(z.number().int()).optional(),
3026
3029
  prompt: z.string(),
3027
- categories: z.array(z.string()).optional(),
3028
- categorical_labels: z.array(
3029
- z.lazy(() => GetEvalsLLMEvalsCategoricalLabels$inboundSchema),
3030
+ categories: z.nullable(z.array(z.string())).optional(),
3031
+ categorical_labels: z.nullable(
3032
+ z.array(z.lazy(() => GetEvalsLLMEvalsCategoricalLabels$inboundSchema)),
3030
3033
  ).optional(),
3031
3034
  dataset_id: z.string().optional(),
3032
3035
  key: z.string(),
@@ -3218,8 +3221,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
3218
3221
  > = z.object({
3219
3222
  _id: z.string(),
3220
3223
  description: z.string(),
3221
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3222
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3224
+ created: z.string().default("2026-06-09T07:16:25.662Z"),
3225
+ updated: z.string().default("2026-06-09T07:16:25.662Z"),
3223
3226
  updated_by_id: z.nullable(z.string()).optional(),
3224
3227
  guardrail_config: z.nullable(
3225
3228
  z.union([
@@ -3235,11 +3238,11 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
3235
3238
  ]),
3236
3239
  ).optional(),
3237
3240
  type: GetEvalsLLMType$inboundSchema,
3238
- repetitions: z.number().int().optional(),
3241
+ repetitions: z.nullable(z.number().int()).optional(),
3239
3242
  prompt: z.string(),
3240
- categories: z.array(z.string()).optional(),
3241
- categorical_labels: z.array(
3242
- z.lazy(() => GetEvalsLLMCategoricalLabels$inboundSchema),
3243
+ categories: z.nullable(z.array(z.string())).optional(),
3244
+ categorical_labels: z.nullable(
3245
+ z.array(z.lazy(() => GetEvalsLLMCategoricalLabels$inboundSchema)),
3243
3246
  ).optional(),
3244
3247
  dataset_id: z.string().optional(),
3245
3248
  key: z.string(),
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
140
140
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
141
141
  .optional(),
142
142
  updated: z.string().datetime({ offset: true }).default(
143
- "2026-06-08T05:34:18.893Z",
143
+ "2026-06-09T07:16:24.404Z",
144
144
  ).transform(v => new Date(v)),
145
145
  filter_type: z.literal("name"),
146
146
  filter_value: z.string(),
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
185
185
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
186
186
  .optional(),
187
187
  updated: z.string().datetime({ offset: true }).default(
188
- "2026-06-08T05:34:18.893Z",
188
+ "2026-06-09T07:16:24.404Z",
189
189
  ).transform(v => new Date(v)),
190
190
  filter_type: z.literal("span_type"),
191
191
  filter_values: z.array(z.string()),
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
141
141
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
142
142
  .optional(),
143
143
  updated: z.string().datetime({ offset: true }).default(
144
- "2026-06-08T05:34:18.893Z",
144
+ "2026-06-09T07:16:24.404Z",
145
145
  ).transform(v => new Date(v)),
146
146
  filter_type: z.literal("name"),
147
147
  filter_value: z.string(),
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
186
186
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
187
187
  .optional(),
188
188
  updated: z.string().datetime({ offset: true }).default(
189
- "2026-06-08T05:34:18.893Z",
189
+ "2026-06-09T07:16:24.404Z",
190
190
  ).transform(v => new Date(v)),
191
191
  filter_type: z.literal("span_type"),
192
192
  filter_values: z.array(z.string()),
@@ -1270,7 +1270,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
1270
1270
  ),
1271
1271
  reviewed_by_id: z.string(),
1272
1272
  reviewed_at: z.string().datetime({ offset: true }).default(
1273
- "2026-06-08T05:34:42.542Z",
1273
+ "2026-06-09T07:16:39.712Z",
1274
1274
  ).transform(v => new Date(v)),
1275
1275
  type: z.literal("string_array"),
1276
1276
  values: z.array(z.string()),
@@ -1320,7 +1320,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
1320
1320
  source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
1321
1321
  reviewed_by_id: z.string(),
1322
1322
  reviewed_at: z.string().datetime({ offset: true }).default(
1323
- "2026-06-08T05:34:42.541Z",
1323
+ "2026-06-09T07:16:39.712Z",
1324
1324
  ).transform(v => new Date(v)),
1325
1325
  type: z.literal("number"),
1326
1326
  value: z.number(),
@@ -1369,7 +1369,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
1369
1369
  .default("orq"),
1370
1370
  reviewed_by_id: z.string(),
1371
1371
  reviewed_at: z.string().datetime({ offset: true }).default(
1372
- "2026-06-08T05:34:42.541Z",
1372
+ "2026-06-09T07:16:39.711Z",
1373
1373
  ).transform(v => new Date(v)),
1374
1374
  type: z.literal("string"),
1375
1375
  value: z.string(),
@@ -1448,7 +1448,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
1448
1448
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
1449
1449
  .optional(),
1450
1450
  updated: z.string().datetime({ offset: true }).default(
1451
- "2026-06-08T05:34:18.893Z",
1451
+ "2026-06-09T07:16:24.404Z",
1452
1452
  ).transform(v => new Date(v)),
1453
1453
  }).transform((v) => {
1454
1454
  return remap$(v, {
@@ -156,7 +156,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
156
156
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
157
157
  .optional(),
158
158
  updated: z.string().datetime({ offset: true }).default(
159
- "2026-06-08T05:34:18.893Z",
159
+ "2026-06-09T07:16:24.404Z",
160
160
  ).transform(v => new Date(v)),
161
161
  }).transform((v) => {
162
162
  return remap$(v, {
@@ -182,7 +182,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
182
182
  z.ZodTypeDef,
183
183
  unknown
184
184
  > = z.object({
185
- _id: z.string().default("01KTJVKQSG1KGTDHRW2H68DSGC"),
185
+ _id: z.string().default("01KTNKV4JEFCC8THT6TFSZ95CR"),
186
186
  display_name: z.string(),
187
187
  description: z.nullable(z.string()).optional(),
188
188
  status: ListDatasourcesStatus$inboundSchema,
@@ -10,10 +10,6 @@ import { Result as SafeParseResult } from "../../types/fp.js";
10
10
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
11
11
 
12
12
  export type ListKnowledgeBasesRequest = {
13
- /**
14
- * A limit on the number of objects to be returned. Limit can range between 1 and 50, and the default is 10
15
- */
16
- limit?: number | undefined;
17
13
  /**
18
14
  * A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, ending with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `after=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the next page of the list.
19
15
  */
@@ -22,6 +18,7 @@ export type ListKnowledgeBasesRequest = {
22
18
  * A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, starting with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `before=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the previous page of the list.
23
19
  */
24
20
  endingBefore?: string | undefined;
21
+ limit?: number | undefined;
25
22
  };
26
23
 
27
24
  export const ListKnowledgeBasesObject = {
@@ -279,9 +276,9 @@ export type ListKnowledgeBasesResponseBody = {
279
276
 
280
277
  /** @internal */
281
278
  export type ListKnowledgeBasesRequest$Outbound = {
282
- limit: number;
283
279
  starting_after?: string | undefined;
284
280
  ending_before?: string | undefined;
281
+ limit: number;
285
282
  };
286
283
 
287
284
  /** @internal */
@@ -290,9 +287,9 @@ export const ListKnowledgeBasesRequest$outboundSchema: z.ZodType<
290
287
  z.ZodTypeDef,
291
288
  ListKnowledgeBasesRequest
292
289
  > = z.object({
293
- limit: z.number().int().default(10),
294
290
  startingAfter: z.string().optional(),
295
291
  endingBefore: z.string().optional(),
292
+ limit: z.number().default(300),
296
293
  }).transform((v) => {
297
294
  return remap$(v, {
298
295
  startingAfter: "starting_after",
@@ -25,6 +25,8 @@ export type ModelCreateAwsBedrockRequestBody = {
25
25
  modelType?: string | undefined;
26
26
  outputCost?: number | undefined;
27
27
  region: string;
28
+ supportsAdaptiveReasoning?: boolean | undefined;
29
+ supportsExtendedThinking?: boolean | undefined;
28
30
  supportsJsonMode?: boolean | undefined;
29
31
  supportsJsonSchema?: boolean | undefined;
30
32
  supportsStrictTool?: boolean | undefined;
@@ -83,6 +85,8 @@ export type ModelCreateAwsBedrockRequestBody$Outbound = {
83
85
  model_type?: string | undefined;
84
86
  output_cost?: number | undefined;
85
87
  region: string;
88
+ supports_adaptive_reasoning?: boolean | undefined;
89
+ supports_extended_thinking?: boolean | undefined;
86
90
  supports_json_mode?: boolean | undefined;
87
91
  supports_json_schema?: boolean | undefined;
88
92
  supports_strict_tool?: boolean | undefined;
@@ -112,6 +116,8 @@ export const ModelCreateAwsBedrockRequestBody$outboundSchema: z.ZodType<
112
116
  modelType: z.string().optional(),
113
117
  outputCost: z.number().optional(),
114
118
  region: z.string(),
119
+ supportsAdaptiveReasoning: z.boolean().optional(),
120
+ supportsExtendedThinking: z.boolean().optional(),
115
121
  supportsJsonMode: z.boolean().optional(),
116
122
  supportsJsonSchema: z.boolean().optional(),
117
123
  supportsStrictTool: z.boolean().optional(),
@@ -133,6 +139,8 @@ export const ModelCreateAwsBedrockRequestBody$outboundSchema: z.ZodType<
133
139
  modelId: "model_id",
134
140
  modelType: "model_type",
135
141
  outputCost: "output_cost",
142
+ supportsAdaptiveReasoning: "supports_adaptive_reasoning",
143
+ supportsExtendedThinking: "supports_extended_thinking",
136
144
  supportsJsonMode: "supports_json_mode",
137
145
  supportsJsonSchema: "supports_json_schema",
138
146
  supportsStrictTool: "supports_strict_tool",
@@ -23,6 +23,8 @@ export type ModelUpdateAwsBedrockRequestBody = {
23
23
  modelType?: string | undefined;
24
24
  outputCost?: number | undefined;
25
25
  region?: string | undefined;
26
+ supportsAdaptiveReasoning?: boolean | undefined;
27
+ supportsExtendedThinking?: boolean | undefined;
26
28
  supportsJsonMode?: boolean | undefined;
27
29
  supportsJsonSchema?: boolean | undefined;
28
30
  supportsStrictTool?: boolean | undefined;
@@ -87,6 +89,8 @@ export type ModelUpdateAwsBedrockRequestBody$Outbound = {
87
89
  model_type?: string | undefined;
88
90
  output_cost?: number | undefined;
89
91
  region?: string | undefined;
92
+ supports_adaptive_reasoning?: boolean | undefined;
93
+ supports_extended_thinking?: boolean | undefined;
90
94
  supports_json_mode?: boolean | undefined;
91
95
  supports_json_schema?: boolean | undefined;
92
96
  supports_strict_tool?: boolean | undefined;
@@ -114,6 +118,8 @@ export const ModelUpdateAwsBedrockRequestBody$outboundSchema: z.ZodType<
114
118
  modelType: z.string().optional(),
115
119
  outputCost: z.number().optional(),
116
120
  region: z.string().optional(),
121
+ supportsAdaptiveReasoning: z.boolean().optional(),
122
+ supportsExtendedThinking: z.boolean().optional(),
117
123
  supportsJsonMode: z.boolean().optional(),
118
124
  supportsJsonSchema: z.boolean().optional(),
119
125
  supportsStrictTool: z.boolean().optional(),
@@ -133,6 +139,8 @@ export const ModelUpdateAwsBedrockRequestBody$outboundSchema: z.ZodType<
133
139
  modelId: "model_id",
134
140
  modelType: "model_type",
135
141
  outputCost: "output_cost",
142
+ supportsAdaptiveReasoning: "supports_adaptive_reasoning",
143
+ supportsExtendedThinking: "supports_extended_thinking",
136
144
  supportsJsonMode: "supports_json_mode",
137
145
  supportsJsonSchema: "supports_json_schema",
138
146
  supportsStrictTool: "supports_strict_tool",
@@ -318,7 +318,7 @@ export const PatchV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
318
318
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
319
319
  .optional(),
320
320
  updated: z.string().datetime({ offset: true }).default(
321
- "2026-06-08T05:34:18.893Z",
321
+ "2026-06-09T07:16:24.404Z",
322
322
  ).transform(v => new Date(v)),
323
323
  filter_type: z.literal("name"),
324
324
  filter_value: z.string(),
@@ -364,7 +364,7 @@ export const PatchV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
364
364
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
365
365
  .optional(),
366
366
  updated: z.string().datetime({ offset: true }).default(
367
- "2026-06-08T05:34:18.893Z",
367
+ "2026-06-09T07:16:24.404Z",
368
368
  ).transform(v => new Date(v)),
369
369
  filter_type: z.literal("span_type"),
370
370
  filter_values: z.array(z.string()),
@@ -173,7 +173,7 @@ export const RequestBody3$outboundSchema: z.ZodType<
173
173
  humanReviewId: z.string(),
174
174
  source: PostV2FeedbackEvaluationRequestBodyFeedbackSource$outboundSchema
175
175
  .default("orq"),
176
- reviewedAt: z.date().default(() => new Date("2026-06-08T05:34:42.689Z"))
176
+ reviewedAt: z.date().default(() => new Date("2026-06-09T07:16:39.863Z"))
177
177
  .transform(v => v.toISOString()),
178
178
  type: z.literal("string_array"),
179
179
  values: z.array(z.string()),
@@ -225,7 +225,7 @@ export const PostV2FeedbackEvaluationRequestBody2$outboundSchema: z.ZodType<
225
225
  source: PostV2FeedbackEvaluationRequestBodySource$outboundSchema.default(
226
226
  "orq",
227
227
  ),
228
- reviewedAt: z.date().default(() => new Date("2026-06-08T05:34:42.688Z"))
228
+ reviewedAt: z.date().default(() => new Date("2026-06-09T07:16:39.862Z"))
229
229
  .transform(v => v.toISOString()),
230
230
  type: z.literal("number"),
231
231
  value: z.number(),
@@ -281,7 +281,7 @@ export const PostV2FeedbackEvaluationRequestBody1$outboundSchema: z.ZodType<
281
281
  evaluationType: EvaluationType$outboundSchema,
282
282
  humanReviewId: z.string(),
283
283
  source: RequestBodySource$outboundSchema.default("orq"),
284
- reviewedAt: z.date().default(() => new Date("2026-06-08T05:34:42.688Z"))
284
+ reviewedAt: z.date().default(() => new Date("2026-06-09T07:16:39.861Z"))
285
285
  .transform(v => v.toISOString()),
286
286
  type: z.literal("string"),
287
287
  value: z.string(),
@@ -271,7 +271,7 @@ export const PostV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
271
271
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
272
272
  .optional(),
273
273
  updated: z.string().datetime({ offset: true }).default(
274
- "2026-06-08T05:34:18.893Z",
274
+ "2026-06-09T07:16:24.404Z",
275
275
  ).transform(v => new Date(v)),
276
276
  filter_type: z.literal("name"),
277
277
  filter_value: z.string(),
@@ -316,7 +316,7 @@ export const PostV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
316
316
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
317
317
  .optional(),
318
318
  updated: z.string().datetime({ offset: true }).default(
319
- "2026-06-08T05:34:18.893Z",
319
+ "2026-06-09T07:16:24.404Z",
320
320
  ).transform(v => new Date(v)),
321
321
  filter_type: z.literal("span_type"),
322
322
  filter_values: z.array(z.string()),
@@ -1207,7 +1207,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
1207
1207
  .default("orq"),
1208
1208
  reviewed_by_id: z.string(),
1209
1209
  reviewed_at: z.string().datetime({ offset: true }).default(
1210
- "2026-06-08T05:34:42.550Z",
1210
+ "2026-06-09T07:16:39.719Z",
1211
1211
  ).transform(v => new Date(v)),
1212
1212
  type: z.literal("string_array"),
1213
1213
  values: z.array(z.string()),
@@ -1255,7 +1255,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
1255
1255
  ),
1256
1256
  reviewed_by_id: z.string(),
1257
1257
  reviewed_at: z.string().datetime({ offset: true }).default(
1258
- "2026-06-08T05:34:42.549Z",
1258
+ "2026-06-09T07:16:39.719Z",
1259
1259
  ).transform(v => new Date(v)),
1260
1260
  type: z.literal("number"),
1261
1261
  value: z.number(),
@@ -1300,7 +1300,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
1300
1300
  source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
1301
1301
  reviewed_by_id: z.string(),
1302
1302
  reviewed_at: z.string().datetime({ offset: true }).default(
1303
- "2026-06-08T05:34:42.548Z",
1303
+ "2026-06-09T07:16:39.718Z",
1304
1304
  ).transform(v => new Date(v)),
1305
1305
  type: z.literal("string"),
1306
1306
  value: z.string(),
@@ -1377,7 +1377,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
1377
1377
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
1378
1378
  .optional(),
1379
1379
  updated: z.string().datetime({ offset: true }).default(
1380
- "2026-06-08T05:34:18.893Z",
1380
+ "2026-06-09T07:16:24.404Z",
1381
1381
  ).transform(v => new Date(v)),
1382
1382
  }).transform((v) => {
1383
1383
  return remap$(v, {
@@ -126,7 +126,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
126
126
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
127
127
  .optional(),
128
128
  updated: z.string().datetime({ offset: true }).default(
129
- "2026-06-08T05:34:18.893Z",
129
+ "2026-06-09T07:16:24.404Z",
130
130
  ).transform(v => new Date(v)),
131
131
  }).transform((v) => {
132
132
  return remap$(v, {
@@ -118,7 +118,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
118
118
  z.ZodTypeDef,
119
119
  unknown
120
120
  > = z.object({
121
- _id: z.string().default("01KTJVKQSJ9EQX96R7AQB0ZHY1"),
121
+ _id: z.string().default("01KTNKV4JG9QN60ZHE0KVC7BV3"),
122
122
  display_name: z.string(),
123
123
  description: z.nullable(z.string()).optional(),
124
124
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -115,11 +115,11 @@ export type RetrieveToolResponseBodyCodeExecutionTool = {
115
115
  /**
116
116
  * The id of the user that created the tool
117
117
  */
118
- createdById?: string | undefined;
118
+ createdById?: string | null | undefined;
119
119
  /**
120
120
  * The id of the user that last updated the tool
121
121
  */
122
- updatedById?: string | undefined;
122
+ updatedById?: string | null | undefined;
123
123
  projectId: string;
124
124
  workspaceId: string;
125
125
  created: string;
@@ -241,11 +241,11 @@ export type RetrieveToolResponseBodyMCPTool = {
241
241
  /**
242
242
  * The id of the user that created the tool
243
243
  */
244
- createdById?: string | undefined;
244
+ createdById?: string | null | undefined;
245
245
  /**
246
246
  * The id of the user that last updated the tool
247
247
  */
248
- updatedById?: string | undefined;
248
+ updatedById?: string | null | undefined;
249
249
  projectId: string;
250
250
  workspaceId: string;
251
251
  created: string;
@@ -402,11 +402,11 @@ export type RetrieveToolResponseBodyHTTPTool = {
402
402
  /**
403
403
  * The id of the user that created the tool
404
404
  */
405
- createdById?: string | undefined;
405
+ createdById?: string | null | undefined;
406
406
  /**
407
407
  * The id of the user that last updated the tool
408
408
  */
409
- updatedById?: string | undefined;
409
+ updatedById?: string | null | undefined;
410
410
  projectId: string;
411
411
  workspaceId: string;
412
412
  created: string;
@@ -503,11 +503,11 @@ export type RetrieveToolResponseBodyJSONSchemaTool = {
503
503
  /**
504
504
  * The id of the user that created the tool
505
505
  */
506
- createdById?: string | undefined;
506
+ createdById?: string | null | undefined;
507
507
  /**
508
508
  * The id of the user that last updated the tool
509
509
  */
510
- updatedById?: string | undefined;
510
+ updatedById?: string | null | undefined;
511
511
  projectId: string;
512
512
  workspaceId: string;
513
513
  created: string;
@@ -618,11 +618,11 @@ export type RetrieveToolResponseBodyFunctionTool = {
618
618
  /**
619
619
  * The id of the user that created the tool
620
620
  */
621
- createdById?: string | undefined;
621
+ createdById?: string | null | undefined;
622
622
  /**
623
623
  * The id of the user that last updated the tool
624
624
  */
625
- updatedById?: string | undefined;
625
+ updatedById?: string | null | undefined;
626
626
  projectId: string;
627
627
  workspaceId: string;
628
628
  created: string;
@@ -753,13 +753,13 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
753
753
  z.ZodTypeDef,
754
754
  unknown
755
755
  > = z.object({
756
- _id: z.string().default("tool_01KTJVKQP951RKHG017G39HFMK"),
756
+ _id: z.string().default("tool_01KTNKV4FT4YTJ2B0819SYHEDH"),
757
757
  path: z.string(),
758
758
  key: z.string(),
759
759
  display_name: z.string().optional(),
760
760
  description: z.string(),
761
- created_by_id: z.string().optional(),
762
- updated_by_id: z.string().optional(),
761
+ created_by_id: z.nullable(z.string()).optional(),
762
+ updated_by_id: z.nullable(z.string()).optional(),
763
763
  project_id: z.string(),
764
764
  workspace_id: z.string(),
765
765
  created: z.string(),
@@ -859,7 +859,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
859
859
  z.ZodTypeDef,
860
860
  unknown
861
861
  > = z.object({
862
- id: z.string().default("01KTJVKQP88E83VAF201WB954A"),
862
+ id: z.string().default("01KTNKV4FSA87FXJRAQCJZGPCG"),
863
863
  name: z.string(),
864
864
  description: z.string().optional(),
865
865
  schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
@@ -917,13 +917,13 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
917
917
  z.ZodTypeDef,
918
918
  unknown
919
919
  > = z.object({
920
- _id: z.string().default("tool_01KTJVKQP7JZYYR6Z1YTRWEZWX"),
920
+ _id: z.string().default("tool_01KTNKV4FRCNXW1AJ4BEGP07HZ"),
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(),
@@ -1108,13 +1108,13 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
1108
1108
  z.ZodTypeDef,
1109
1109
  unknown
1110
1110
  > = z.object({
1111
- _id: z.string().default("tool_01KTJVKQP5AAZJ0X4DSFWY8VM1"),
1111
+ _id: z.string().default("tool_01KTNKV4FPHT1YAT4T8GATD6QC"),
1112
1112
  path: z.string(),
1113
1113
  key: z.string(),
1114
1114
  display_name: z.string().optional(),
1115
1115
  description: z.string(),
1116
- created_by_id: z.string().optional(),
1117
- updated_by_id: z.string().optional(),
1116
+ created_by_id: z.nullable(z.string()).optional(),
1117
+ updated_by_id: z.nullable(z.string()).optional(),
1118
1118
  project_id: z.string(),
1119
1119
  workspace_id: z.string(),
1120
1120
  created: z.string(),
@@ -1204,13 +1204,13 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
1204
1204
  z.ZodTypeDef,
1205
1205
  unknown
1206
1206
  > = z.object({
1207
- _id: z.string().default("tool_01KTJVKQP3GD00QDQSNG0ZMKPQ"),
1207
+ _id: z.string().default("tool_01KTNKV4FMS374WYC3MY278H60"),
1208
1208
  path: z.string(),
1209
1209
  key: z.string(),
1210
1210
  display_name: z.string().optional(),
1211
1211
  description: z.string(),
1212
- created_by_id: z.string().optional(),
1213
- updated_by_id: z.string().optional(),
1212
+ created_by_id: z.nullable(z.string()).optional(),
1213
+ updated_by_id: z.nullable(z.string()).optional(),
1214
1214
  project_id: z.string(),
1215
1215
  workspace_id: z.string(),
1216
1216
  created: z.string(),
@@ -1310,13 +1310,13 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
1310
1310
  z.ZodTypeDef,
1311
1311
  unknown
1312
1312
  > = z.object({
1313
- _id: z.string().default("tool_01KTJVKQP287VVYXZH4K6R4F26"),
1313
+ _id: z.string().default("tool_01KTNKV4FJ9HW86DER2F1FXAW3"),
1314
1314
  path: z.string(),
1315
1315
  key: z.string(),
1316
1316
  display_name: z.string().optional(),
1317
1317
  description: z.string(),
1318
- created_by_id: z.string().optional(),
1319
- updated_by_id: z.string().optional(),
1318
+ created_by_id: z.nullable(z.string()).optional(),
1319
+ updated_by_id: z.nullable(z.string()).optional(),
1320
1320
  project_id: z.string(),
1321
1321
  workspace_id: z.string(),
1322
1322
  created: z.string(),
@@ -3626,7 +3626,7 @@ export const Tools$outboundSchema: z.ZodType<
3626
3626
  z.ZodTypeDef,
3627
3627
  Tools
3628
3628
  > = z.object({
3629
- id: z.string().default("01KTJVKQE8RPRXWZQK8846QBAA"),
3629
+ id: z.string().default("01KTNKV47RCPCDZQSSQFY4R45H"),
3630
3630
  name: z.string(),
3631
3631
  description: z.string().optional(),
3632
3632
  schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
@@ -3675,7 +3675,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
3675
3675
  z.ZodTypeDef,
3676
3676
  AgentToolInputRunTools
3677
3677
  > = z.object({
3678
- id: z.string().default("01KTJVKQFR2AE5FZ0GKDGV6G7B"),
3678
+ id: z.string().default("01KTNKV49PMKCVB2HG9E48ATX8"),
3679
3679
  name: z.string(),
3680
3680
  description: z.string().optional(),
3681
3681
  schema: z.lazy(() =>