@orq-ai/node 4.11.0-rc.43 → 4.11.0-rc.45

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 (80) hide show
  1. package/README.md +1 -1
  2. package/funcs/datasetsListDatapoints.d.ts +2 -1
  3. package/funcs/datasetsListDatapoints.d.ts.map +1 -1
  4. package/funcs/datasetsListDatapoints.js +5 -1
  5. package/funcs/datasetsListDatapoints.js.map +1 -1
  6. package/jsr.json +1 -1
  7. package/lib/config.d.ts +3 -3
  8. package/lib/config.js +3 -3
  9. package/models/components/createskillrequest.d.ts +46 -2
  10. package/models/components/createskillrequest.d.ts.map +1 -1
  11. package/models/components/createskillrequest.js +30 -2
  12. package/models/components/createskillrequest.js.map +1 -1
  13. package/models/components/invokedeploymentrequest.d.ts +4 -4
  14. package/models/components/invokedeploymentrequest.d.ts.map +1 -1
  15. package/models/components/invokedeploymentrequest.js +5 -6
  16. package/models/components/invokedeploymentrequest.js.map +1 -1
  17. package/models/components/reasoningpart.js +1 -1
  18. package/models/operations/createdataset.js +1 -1
  19. package/models/operations/createdatasetitem.js +4 -4
  20. package/models/operations/createdatasource.js +1 -1
  21. package/models/operations/createeval.js +16 -16
  22. package/models/operations/createtool.js +6 -6
  23. package/models/operations/getalltools.js +6 -6
  24. package/models/operations/getevals.js +16 -16
  25. package/models/operations/getv2humanevalsets.js +2 -2
  26. package/models/operations/getv2humanevalsetsid.js +2 -2
  27. package/models/operations/listdatasetdatapoints.js +4 -4
  28. package/models/operations/listdatasets.js +1 -1
  29. package/models/operations/listdatasources.js +1 -1
  30. package/models/operations/patchv2humanevalsetsid.js +2 -2
  31. package/models/operations/postv2feedbackevaluation.js +3 -3
  32. package/models/operations/postv2humanevalsets.js +2 -2
  33. package/models/operations/retrievedatapoint.js +4 -4
  34. package/models/operations/retrievedataset.js +1 -1
  35. package/models/operations/retrievedatasource.js +1 -1
  36. package/models/operations/retrievetool.js +6 -6
  37. package/models/operations/runagent.js +1 -1
  38. package/models/operations/streamrunagent.js +1 -1
  39. package/models/operations/updatedatapoint.js +4 -4
  40. package/models/operations/updatedataset.js +1 -1
  41. package/models/operations/updatedatasource.js +1 -1
  42. package/models/operations/updateeval.js +16 -16
  43. package/models/operations/updatetool.js +7 -7
  44. package/package.json +6 -6
  45. package/sdk/feedback.d.ts +1 -4
  46. package/sdk/feedback.d.ts.map +1 -1
  47. package/sdk/feedback.js +1 -4
  48. package/sdk/feedback.js.map +1 -1
  49. package/src/funcs/datasetsListDatapoints.ts +10 -1
  50. package/src/lib/config.ts +3 -3
  51. package/src/models/components/createskillrequest.ts +88 -6
  52. package/src/models/components/invokedeploymentrequest.ts +17 -6
  53. package/src/models/components/reasoningpart.ts +1 -1
  54. package/src/models/operations/createdataset.ts +1 -1
  55. package/src/models/operations/createdatasetitem.ts +4 -4
  56. package/src/models/operations/createdatasource.ts +1 -1
  57. package/src/models/operations/createeval.ts +16 -16
  58. package/src/models/operations/createtool.ts +6 -6
  59. package/src/models/operations/getalltools.ts +6 -6
  60. package/src/models/operations/getevals.ts +16 -16
  61. package/src/models/operations/getv2humanevalsets.ts +2 -2
  62. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  63. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  64. package/src/models/operations/listdatasets.ts +1 -1
  65. package/src/models/operations/listdatasources.ts +1 -1
  66. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  67. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  68. package/src/models/operations/postv2humanevalsets.ts +2 -2
  69. package/src/models/operations/retrievedatapoint.ts +4 -4
  70. package/src/models/operations/retrievedataset.ts +1 -1
  71. package/src/models/operations/retrievedatasource.ts +1 -1
  72. package/src/models/operations/retrievetool.ts +6 -6
  73. package/src/models/operations/runagent.ts +1 -1
  74. package/src/models/operations/streamrunagent.ts +1 -1
  75. package/src/models/operations/updatedatapoint.ts +4 -4
  76. package/src/models/operations/updatedataset.ts +1 -1
  77. package/src/models/operations/updatedatasource.ts +1 -1
  78. package/src/models/operations/updateeval.ts +16 -16
  79. package/src/models/operations/updatetool.ts +7 -7
  80. package/src/sdk/feedback.ts +1 -4
@@ -5,7 +5,7 @@
5
5
  import * as z from "zod/v3";
6
6
  import { remap as remap$ } from "../../lib/primitives.js";
7
7
 
8
- export type CreateSkillRequest = {
8
+ export type Two = {
9
9
  /**
10
10
  * Workspace-unique display name. Must start with a letter and may contain letters, numbers, and underscores. Dashes and dots are not allowed.
11
11
  */
@@ -22,6 +22,33 @@ export type CreateSkillRequest = {
22
22
  * Project path where the skill should be stored.
23
23
  */
24
24
  path?: string | undefined;
25
+ /**
26
+ * Project that should contain the skill.
27
+ */
28
+ projectId: string;
29
+ /**
30
+ * Instruction body for the skill. Omit to create metadata first and fill instructions later.
31
+ */
32
+ instructions?: string | undefined;
33
+ };
34
+
35
+ export type CreateSkillRequest1 = {
36
+ /**
37
+ * Workspace-unique display name. Must start with a letter and may contain letters, numbers, and underscores. Dashes and dots are not allowed.
38
+ */
39
+ displayName: string;
40
+ /**
41
+ * Short human-readable summary of what the skill is for.
42
+ */
43
+ description?: string | undefined;
44
+ /**
45
+ * Free-form labels for organizing the skill.
46
+ */
47
+ tags?: Array<string> | undefined;
48
+ /**
49
+ * Project path where the skill should be stored.
50
+ */
51
+ path: string;
25
52
  /**
26
53
  * Project that should contain the skill.
27
54
  */
@@ -32,26 +59,58 @@ export type CreateSkillRequest = {
32
59
  instructions?: string | undefined;
33
60
  };
34
61
 
62
+ export type CreateSkillRequest = CreateSkillRequest1 | Two;
63
+
35
64
  /** @internal */
36
- export type CreateSkillRequest$Outbound = {
65
+ export type Two$Outbound = {
37
66
  display_name: string;
38
67
  description?: string | undefined;
39
68
  tags?: Array<string> | undefined;
40
69
  path?: string | undefined;
70
+ project_id: string;
71
+ instructions?: string | undefined;
72
+ };
73
+
74
+ /** @internal */
75
+ export const Two$outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two> = z
76
+ .object({
77
+ displayName: z.string(),
78
+ description: z.string().optional(),
79
+ tags: z.array(z.string()).optional(),
80
+ path: z.string().optional(),
81
+ projectId: z.string(),
82
+ instructions: z.string().optional(),
83
+ }).transform((v) => {
84
+ return remap$(v, {
85
+ displayName: "display_name",
86
+ projectId: "project_id",
87
+ });
88
+ });
89
+
90
+ export function twoToJSON(two: Two): string {
91
+ return JSON.stringify(Two$outboundSchema.parse(two));
92
+ }
93
+
94
+ /** @internal */
95
+ export type CreateSkillRequest1$Outbound = {
96
+ display_name: string;
97
+ description?: string | undefined;
98
+ tags?: Array<string> | undefined;
99
+ path: string;
41
100
  project_id?: string | undefined;
42
101
  instructions?: string | undefined;
43
102
  };
44
103
 
45
104
  /** @internal */
46
- export const CreateSkillRequest$outboundSchema: z.ZodType<
47
- CreateSkillRequest$Outbound,
105
+ export const CreateSkillRequest1$outboundSchema: z.ZodType<
106
+ CreateSkillRequest1$Outbound,
48
107
  z.ZodTypeDef,
49
- CreateSkillRequest
108
+ CreateSkillRequest1
50
109
  > = z.object({
51
110
  displayName: z.string(),
52
111
  description: z.string().optional(),
53
112
  tags: z.array(z.string()).optional(),
54
- path: z.string().optional(),
113
+ path: z.string(),
55
114
  projectId: z.string().optional(),
56
115
  instructions: z.string().optional(),
57
116
  }).transform((v) => {
@@ -61,6 +120,29 @@ export const CreateSkillRequest$outboundSchema: z.ZodType<
61
120
  });
62
121
  });
63
122
 
123
+ export function createSkillRequest1ToJSON(
124
+ createSkillRequest1: CreateSkillRequest1,
125
+ ): string {
126
+ return JSON.stringify(
127
+ CreateSkillRequest1$outboundSchema.parse(createSkillRequest1),
128
+ );
129
+ }
130
+
131
+ /** @internal */
132
+ export type CreateSkillRequest$Outbound =
133
+ | CreateSkillRequest1$Outbound
134
+ | Two$Outbound;
135
+
136
+ /** @internal */
137
+ export const CreateSkillRequest$outboundSchema: z.ZodType<
138
+ CreateSkillRequest$Outbound,
139
+ z.ZodTypeDef,
140
+ CreateSkillRequest
141
+ > = z.union([
142
+ z.lazy(() => CreateSkillRequest1$outboundSchema),
143
+ z.lazy(() => Two$outboundSchema),
144
+ ]);
145
+
64
146
  export function createSkillRequestToJSON(
65
147
  createSkillRequest: CreateSkillRequest,
66
148
  ): string {
@@ -299,7 +299,7 @@ export type Four = {
299
299
  file: FileContentPartSchema;
300
300
  };
301
301
 
302
- export type Two =
302
+ export type InvokeDeploymentRequestContentPrefixMessages2 =
303
303
  | (TextContentPartSchema & { type: "text" })
304
304
  | ImageContentPartSchema
305
305
  | AudioContentPartSchema
@@ -1513,15 +1513,19 @@ export function fourToJSON(four: Four): string {
1513
1513
  }
1514
1514
 
1515
1515
  /** @internal */
1516
- export type Two$Outbound =
1516
+ export type InvokeDeploymentRequestContentPrefixMessages2$Outbound =
1517
1517
  | (TextContentPartSchema$Outbound & { type: "text" })
1518
1518
  | ImageContentPartSchema$Outbound
1519
1519
  | AudioContentPartSchema$Outbound
1520
1520
  | Four$Outbound;
1521
1521
 
1522
1522
  /** @internal */
1523
- export const Two$outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two> = z
1524
- .union([
1523
+ export const InvokeDeploymentRequestContentPrefixMessages2$outboundSchema:
1524
+ z.ZodType<
1525
+ InvokeDeploymentRequestContentPrefixMessages2$Outbound,
1526
+ z.ZodTypeDef,
1527
+ InvokeDeploymentRequestContentPrefixMessages2
1528
+ > = z.union([
1525
1529
  TextContentPartSchema$outboundSchema.and(
1526
1530
  z.object({ type: z.literal("text") }),
1527
1531
  ),
@@ -1530,8 +1534,15 @@ export const Two$outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two> = z
1530
1534
  z.lazy(() => Four$outboundSchema),
1531
1535
  ]);
1532
1536
 
1533
- export function twoToJSON(two: Two): string {
1534
- return JSON.stringify(Two$outboundSchema.parse(two));
1537
+ export function invokeDeploymentRequestContentPrefixMessages2ToJSON(
1538
+ invokeDeploymentRequestContentPrefixMessages2:
1539
+ InvokeDeploymentRequestContentPrefixMessages2,
1540
+ ): string {
1541
+ return JSON.stringify(
1542
+ InvokeDeploymentRequestContentPrefixMessages2$outboundSchema.parse(
1543
+ invokeDeploymentRequestContentPrefixMessages2,
1544
+ ),
1545
+ );
1535
1546
  }
1536
1547
 
1537
1548
  /** @internal */
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
40
40
  z.ZodTypeDef,
41
41
  unknown
42
42
  > = z.object({
43
- _id: z.string().default("reasoning_01kvtrx93bg5th93zvzqkqhn2f"),
43
+ _id: z.string().default("reasoning_01kvwww3wrphw3s0vzepra9drg"),
44
44
  metadata: z.record(z.any()).optional(),
45
45
  kind: z.literal("reasoning"),
46
46
  reasoning: z.string(),
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
138
138
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
139
139
  .optional(),
140
140
  updated: z.string().datetime({ offset: true }).default(
141
- "2026-06-23T17:36:36.357Z",
141
+ "2026-06-24T13:24:31.773Z",
142
142
  ).transform(v => new Date(v)),
143
143
  }).transform((v) => {
144
144
  return remap$(v, {
@@ -2607,7 +2607,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
2607
2607
  explanation: z.string().optional(),
2608
2608
  reviewed_by_id: z.string(),
2609
2609
  reviewed_at: z.string().datetime({ offset: true }).default(
2610
- "2026-06-23T17:37:07.388Z",
2610
+ "2026-06-24T13:24:52.404Z",
2611
2611
  ).transform(v => new Date(v)),
2612
2612
  type: z.literal("string_array"),
2613
2613
  values: z.array(z.string()),
@@ -2692,7 +2692,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
2692
2692
  explanation: z.string().optional(),
2693
2693
  reviewed_by_id: z.string(),
2694
2694
  reviewed_at: z.string().datetime({ offset: true }).default(
2695
- "2026-06-23T17:37:07.387Z",
2695
+ "2026-06-24T13:24:52.403Z",
2696
2696
  ).transform(v => new Date(v)),
2697
2697
  type: z.literal("number"),
2698
2698
  value: z.number(),
@@ -2777,7 +2777,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
2777
2777
  explanation: z.string().optional(),
2778
2778
  reviewed_by_id: z.string(),
2779
2779
  reviewed_at: z.string().datetime({ offset: true }).default(
2780
- "2026-06-23T17:37:07.386Z",
2780
+ "2026-06-24T13:24:52.402Z",
2781
2781
  ).transform(v => new Date(v)),
2782
2782
  type: z.literal("string"),
2783
2783
  value: z.string(),
@@ -2862,7 +2862,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
2862
2862
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2863
2863
  .optional(),
2864
2864
  updated: z.string().datetime({ offset: true }).default(
2865
- "2026-06-23T17:36:36.357Z",
2865
+ "2026-06-24T13:24:31.773Z",
2866
2866
  ).transform(v => new Date(v)),
2867
2867
  }).transform((v) => {
2868
2868
  return remap$(v, {
@@ -412,7 +412,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
412
412
  z.ZodTypeDef,
413
413
  unknown
414
414
  > = z.object({
415
- _id: z.string().default("01KVTRX9Q0CB077SRWW35HWF2S"),
415
+ _id: z.string().default("01KVWWW4EPSTZZ8WR5YQSDB2AS"),
416
416
  display_name: z.string(),
417
417
  description: z.nullable(z.string()).optional(),
418
418
  status: CreateDatasourceStatus$inboundSchema,
@@ -2193,8 +2193,8 @@ export const Typescript$inboundSchema: z.ZodType<
2193
2193
  > = z.object({
2194
2194
  _id: z.string(),
2195
2195
  description: z.string(),
2196
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2197
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2196
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2197
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2198
2198
  updated_by_id: z.nullable(z.string()).optional(),
2199
2199
  guardrail_config: z.nullable(
2200
2200
  z.union([
@@ -2384,8 +2384,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
2384
2384
  .object({
2385
2385
  _id: z.string(),
2386
2386
  description: z.string(),
2387
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2388
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2387
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2388
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2389
2389
  updated_by_id: z.nullable(z.string()).optional(),
2390
2390
  guardrail_config: z.nullable(
2391
2391
  z.union([
@@ -3210,8 +3210,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
3210
3210
  > = z.object({
3211
3211
  _id: z.string(),
3212
3212
  description: z.string(),
3213
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3214
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3213
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3214
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3215
3215
  updated_by_id: z.nullable(z.string()).optional(),
3216
3216
  guardrail_config: z.nullable(
3217
3217
  z.union([
@@ -3430,8 +3430,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
3430
3430
  > = z.object({
3431
3431
  _id: z.string(),
3432
3432
  description: z.string(),
3433
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3434
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3433
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3434
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3435
3435
  updated_by_id: z.nullable(z.string()).optional(),
3436
3436
  guardrail_config: z.nullable(
3437
3437
  z.union([
@@ -3612,8 +3612,8 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
3612
3612
  > = z.object({
3613
3613
  _id: z.string(),
3614
3614
  description: z.string(),
3615
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3616
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3615
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3616
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3617
3617
  updated_by_id: z.nullable(z.string()).optional(),
3618
3618
  guardrail_config: z.nullable(
3619
3619
  z.union([
@@ -3772,8 +3772,8 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
3772
3772
  .object({
3773
3773
  _id: z.string(),
3774
3774
  description: z.string(),
3775
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3776
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3775
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3776
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3777
3777
  updated_by_id: z.nullable(z.string()).optional(),
3778
3778
  guardrail_config: z.nullable(
3779
3779
  z.union([
@@ -4143,8 +4143,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
4143
4143
  > = z.object({
4144
4144
  _id: z.string(),
4145
4145
  description: z.string(),
4146
- created: z.string().default("2026-06-23T17:36:38.738Z"),
4147
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
4146
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
4147
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
4148
4148
  updated_by_id: z.nullable(z.string()).optional(),
4149
4149
  guardrail_config: z.nullable(
4150
4150
  z.union([
@@ -4363,8 +4363,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
4363
4363
  > = z.object({
4364
4364
  _id: z.string(),
4365
4365
  description: z.string(),
4366
- created: z.string().default("2026-06-23T17:36:38.738Z"),
4367
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
4366
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
4367
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
4368
4368
  updated_by_id: z.nullable(z.string()).optional(),
4369
4369
  guardrail_config: z.nullable(
4370
4370
  z.union([
@@ -1898,7 +1898,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
1898
1898
  z.ZodTypeDef,
1899
1899
  unknown
1900
1900
  > = z.object({
1901
- _id: z.string().default("tool_01KVTRX9H6FKKZ1XK8ZX8BQ8Z7"),
1901
+ _id: z.string().default("tool_01KVWWW4948WPH2J3QH9773Y26"),
1902
1902
  path: z.string(),
1903
1903
  key: z.string(),
1904
1904
  display_name: z.string().optional(),
@@ -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("01KVTRX9H5HG4YSGBTXRC31G6R"),
1998
+ id: z.string().default("01KVWWW493MSE52SG8FYWBCBA5"),
1999
1999
  name: z.string(),
2000
2000
  description: z.string().optional(),
2001
2001
  schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
@@ -2051,7 +2051,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
2051
2051
  z.ZodTypeDef,
2052
2052
  unknown
2053
2053
  > = z.object({
2054
- _id: z.string().default("tool_01KVTRX9H41YM5CJX7TR7DPGCS"),
2054
+ _id: z.string().default("tool_01KVWWW492A88MRYFPYYGEK61G"),
2055
2055
  path: z.string(),
2056
2056
  key: z.string(),
2057
2057
  display_name: z.string().optional(),
@@ -2237,7 +2237,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
2237
2237
  z.ZodTypeDef,
2238
2238
  unknown
2239
2239
  > = z.object({
2240
- _id: z.string().default("tool_01KVTRX9H02Y1NZJFQC4MVXN4V"),
2240
+ _id: z.string().default("tool_01KVWWW48Z0PXJ1BJPWB5YA5VZ"),
2241
2241
  path: z.string(),
2242
2242
  key: z.string(),
2243
2243
  display_name: z.string().optional(),
@@ -2330,7 +2330,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2330
2330
  z.ZodTypeDef,
2331
2331
  unknown
2332
2332
  > = z.object({
2333
- _id: z.string().default("tool_01KVTRX9GYBCPME80TYDYF7Q3M"),
2333
+ _id: z.string().default("tool_01KVWWW48XCX7KPMTAQ4D422GF"),
2334
2334
  path: z.string(),
2335
2335
  key: z.string(),
2336
2336
  display_name: z.string().optional(),
@@ -2431,7 +2431,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
2431
2431
  z.ZodTypeDef,
2432
2432
  unknown
2433
2433
  > = z.object({
2434
- _id: z.string().default("tool_01KVTRX9GWG2YKEDBQJC4DQW6N"),
2434
+ _id: z.string().default("tool_01KVWWW48VRZ463EFHS1F0S121"),
2435
2435
  path: z.string(),
2436
2436
  key: z.string(),
2437
2437
  display_name: z.string().optional(),
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
767
767
  z.ZodTypeDef,
768
768
  unknown
769
769
  > = z.object({
770
- _id: z.string().default("tool_01KVTRX9GCYH0SJE2CGPM5CSN9"),
770
+ _id: z.string().default("tool_01KVWWW48EES703C1FWPJZW3JA"),
771
771
  path: z.string(),
772
772
  key: z.string(),
773
773
  display_name: z.string().optional(),
@@ -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("01KVTRX9GB4DDKTEGB9RWQMH5Q"),
867
+ id: z.string().default("01KVWWW48D2PXGTJWCMKAVSCHW"),
868
868
  name: z.string(),
869
869
  description: z.string().optional(),
870
870
  schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
917
917
  z.ZodTypeDef,
918
918
  unknown
919
919
  > = z.object({
920
- _id: z.string().default("tool_01KVTRX9G9N5JH2FSTB1GFJG04"),
920
+ _id: z.string().default("tool_01KVWWW48B4XQMAKF0AH2M4AXK"),
921
921
  path: z.string(),
922
922
  key: z.string(),
923
923
  display_name: z.string().optional(),
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
1102
1102
  z.ZodTypeDef,
1103
1103
  unknown
1104
1104
  > = z.object({
1105
- _id: z.string().default("tool_01KVTRX9G6ANTXGVB6578KDF70"),
1105
+ _id: z.string().default("tool_01KVWWW489N55EJY1V6X32AKF5"),
1106
1106
  path: z.string(),
1107
1107
  key: z.string(),
1108
1108
  display_name: z.string().optional(),
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
1195
1195
  z.ZodTypeDef,
1196
1196
  unknown
1197
1197
  > = z.object({
1198
- _id: z.string().default("tool_01KVTRX9G42M49JKPEMWNDZXRG"),
1198
+ _id: z.string().default("tool_01KVWWW4877FE45AKZKYB3KXRY"),
1199
1199
  path: z.string(),
1200
1200
  key: z.string(),
1201
1201
  display_name: z.string().optional(),
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
1297
1297
  z.ZodTypeDef,
1298
1298
  unknown
1299
1299
  > = z.object({
1300
- _id: z.string().default("tool_01KVTRX9G1EMH7TGJ27AZE4260"),
1300
+ _id: z.string().default("tool_01KVWWW484Q332FZYPBHX0WJDF"),
1301
1301
  path: z.string(),
1302
1302
  key: z.string(),
1303
1303
  display_name: z.string().optional(),
@@ -1074,8 +1074,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
1074
1074
  > = z.object({
1075
1075
  _id: z.string(),
1076
1076
  description: z.string(),
1077
- created: z.string().default("2026-06-23T17:36:38.738Z"),
1078
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
1077
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
1078
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
1079
1079
  updated_by_id: z.nullable(z.string()).optional(),
1080
1080
  guardrail_config: z.nullable(
1081
1081
  z.union([
@@ -1256,8 +1256,8 @@ export const DataRagas$inboundSchema: z.ZodType<
1256
1256
  > = z.object({
1257
1257
  _id: z.string(),
1258
1258
  description: z.string(),
1259
- created: z.string().default("2026-06-23T17:36:38.738Z"),
1260
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
1259
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
1260
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
1261
1261
  updated_by_id: z.nullable(z.string()).optional(),
1262
1262
  guardrail_config: z.nullable(
1263
1263
  z.union([
@@ -2088,8 +2088,8 @@ export const DataFunction$inboundSchema: z.ZodType<
2088
2088
  > = z.object({
2089
2089
  _id: z.string(),
2090
2090
  description: z.string(),
2091
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2092
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2091
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2092
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2093
2093
  updated_by_id: z.nullable(z.string()).optional(),
2094
2094
  guardrail_config: z.nullable(
2095
2095
  z.union([
@@ -2272,8 +2272,8 @@ export const DataPython$inboundSchema: z.ZodType<
2272
2272
  > = z.object({
2273
2273
  _id: z.string(),
2274
2274
  description: z.string(),
2275
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2276
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2275
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2276
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2277
2277
  updated_by_id: z.nullable(z.string()).optional(),
2278
2278
  guardrail_config: z.nullable(
2279
2279
  z.union([
@@ -2452,8 +2452,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
2452
2452
  > = z.object({
2453
2453
  _id: z.string(),
2454
2454
  description: z.string(),
2455
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2456
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2455
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2456
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2457
2457
  updated_by_id: z.nullable(z.string()).optional(),
2458
2458
  guardrail_config: z.nullable(
2459
2459
  z.union([
@@ -2644,8 +2644,8 @@ export const DataJSON$inboundSchema: z.ZodType<
2644
2644
  > = z.object({
2645
2645
  _id: z.string(),
2646
2646
  description: z.string(),
2647
- created: z.string().default("2026-06-23T17:36:38.738Z"),
2648
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
2647
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
2648
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
2649
2649
  updated_by_id: z.nullable(z.string()).optional(),
2650
2650
  guardrail_config: z.nullable(
2651
2651
  z.union([
@@ -3012,8 +3012,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
3012
3012
  > = z.object({
3013
3013
  _id: z.string(),
3014
3014
  description: z.string(),
3015
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3016
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3015
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3016
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3017
3017
  updated_by_id: z.nullable(z.string()).optional(),
3018
3018
  guardrail_config: z.nullable(
3019
3019
  z.union([
@@ -3225,8 +3225,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
3225
3225
  > = z.object({
3226
3226
  _id: z.string(),
3227
3227
  description: z.string(),
3228
- created: z.string().default("2026-06-23T17:36:38.738Z"),
3229
- updated: z.string().default("2026-06-23T17:36:38.738Z"),
3228
+ created: z.string().default("2026-06-24T13:24:33.091Z"),
3229
+ updated: z.string().default("2026-06-24T13:24:33.091Z"),
3230
3230
  updated_by_id: z.nullable(z.string()).optional(),
3231
3231
  guardrail_config: z.nullable(
3232
3232
  z.union([
@@ -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-23T17:36:36.357Z",
143
+ "2026-06-24T13:24:31.773Z",
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-23T17:36:36.357Z",
188
+ "2026-06-24T13:24:31.773Z",
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-23T17:36:36.357Z",
144
+ "2026-06-24T13:24:31.773Z",
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-23T17:36:36.357Z",
189
+ "2026-06-24T13:24:31.773Z",
190
190
  ).transform(v => new Date(v)),
191
191
  filter_type: z.literal("span_type"),
192
192
  filter_values: z.array(z.string()),
@@ -1522,7 +1522,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
1522
1522
  explanation: z.string().optional(),
1523
1523
  reviewed_by_id: z.string(),
1524
1524
  reviewed_at: z.string().datetime({ offset: true }).default(
1525
- "2026-06-23T17:37:07.369Z",
1525
+ "2026-06-24T13:24:52.385Z",
1526
1526
  ).transform(v => new Date(v)),
1527
1527
  type: z.literal("string_array"),
1528
1528
  values: z.array(z.string()),
@@ -1626,7 +1626,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
1626
1626
  explanation: z.string().optional(),
1627
1627
  reviewed_by_id: z.string(),
1628
1628
  reviewed_at: z.string().datetime({ offset: true }).default(
1629
- "2026-06-23T17:37:07.368Z",
1629
+ "2026-06-24T13:24:52.383Z",
1630
1630
  ).transform(v => new Date(v)),
1631
1631
  type: z.literal("number"),
1632
1632
  value: z.number(),
@@ -1726,7 +1726,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
1726
1726
  explanation: z.string().optional(),
1727
1727
  reviewed_by_id: z.string(),
1728
1728
  reviewed_at: z.string().datetime({ offset: true }).default(
1729
- "2026-06-23T17:37:07.366Z",
1729
+ "2026-06-24T13:24:52.382Z",
1730
1730
  ).transform(v => new Date(v)),
1731
1731
  type: z.literal("string"),
1732
1732
  value: z.string(),
@@ -1807,7 +1807,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
1807
1807
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
1808
1808
  .optional(),
1809
1809
  updated: z.string().datetime({ offset: true }).default(
1810
- "2026-06-23T17:36:36.357Z",
1810
+ "2026-06-24T13:24:31.773Z",
1811
1811
  ).transform(v => new Date(v)),
1812
1812
  }).transform((v) => {
1813
1813
  return remap$(v, {
@@ -169,7 +169,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
169
169
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
170
170
  .optional(),
171
171
  updated: z.string().datetime({ offset: true }).default(
172
- "2026-06-23T17:36:36.357Z",
172
+ "2026-06-24T13:24:31.773Z",
173
173
  ).transform(v => new Date(v)),
174
174
  }).transform((v) => {
175
175
  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("01KVTRX9PVJ3B44BE7ZYJWV94E"),
185
+ _id: z.string().default("01KVWWW4EHYE7WG0FYT233NN4M"),
186
186
  display_name: z.string(),
187
187
  description: z.nullable(z.string()).optional(),
188
188
  status: ListDatasourcesStatus$inboundSchema,
@@ -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-23T17:36:36.357Z",
321
+ "2026-06-24T13:24:31.773Z",
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-23T17:36:36.357Z",
367
+ "2026-06-24T13:24:31.773Z",
368
368
  ).transform(v => new Date(v)),
369
369
  filter_type: z.literal("span_type"),
370
370
  filter_values: z.array(z.string()),