@orq-ai/node 4.8.7 → 4.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/jsr.json +1 -1
  2. package/lib/config.d.ts +2 -2
  3. package/lib/config.js +2 -2
  4. package/models/components/reasoningpart.js +1 -1
  5. package/models/operations/createcontact.js +1 -1
  6. package/models/operations/createdataset.js +1 -1
  7. package/models/operations/createdatasetitem.js +4 -4
  8. package/models/operations/createdatasource.js +1 -1
  9. package/models/operations/createeval.js +16 -16
  10. package/models/operations/createidentity.js +1 -1
  11. package/models/operations/createtool.js +6 -6
  12. package/models/operations/getalltools.js +6 -6
  13. package/models/operations/getevals.js +16 -16
  14. package/models/operations/getv2humanevalsets.js +2 -2
  15. package/models/operations/getv2humanevalsetsid.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +4 -4
  17. package/models/operations/listdatasets.js +1 -1
  18. package/models/operations/listdatasources.js +1 -1
  19. package/models/operations/listidentities.js +1 -1
  20. package/models/operations/patchv2humanevalsetsid.js +2 -2
  21. package/models/operations/postv2feedbackevaluation.js +3 -3
  22. package/models/operations/postv2humanevalsets.js +2 -2
  23. package/models/operations/retrievedatapoint.js +4 -4
  24. package/models/operations/retrievedataset.js +1 -1
  25. package/models/operations/retrievedatasource.js +1 -1
  26. package/models/operations/retrieveidentity.js +1 -1
  27. package/models/operations/retrievetool.js +6 -6
  28. package/models/operations/runagent.js +1 -1
  29. package/models/operations/streamrunagent.js +1 -1
  30. package/models/operations/updatedatapoint.js +4 -4
  31. package/models/operations/updatedataset.js +1 -1
  32. package/models/operations/updatedatasource.js +1 -1
  33. package/models/operations/updateeval.js +16 -16
  34. package/models/operations/updateidentity.js +1 -1
  35. package/models/operations/updatetool.js +7 -7
  36. package/package.json +9 -9
  37. package/packages/orq-rc/src/funcs/projectsCreate.ts +162 -0
  38. package/packages/orq-rc/src/funcs/projectsDelete.ts +165 -0
  39. package/packages/orq-rc/src/funcs/projectsGet.ts +168 -0
  40. package/packages/orq-rc/src/funcs/projectsList.ts +170 -0
  41. package/packages/orq-rc/src/funcs/projectsUpdate.ts +171 -0
  42. package/packages/orq-rc/src/lib/config.ts +2 -2
  43. package/packages/orq-rc/src/models/components/createprojectrequest.ts +34 -0
  44. package/packages/orq-rc/src/models/components/createprojectresponse.ts +32 -0
  45. package/packages/orq-rc/src/models/components/deleteprojectresponse.ts +27 -0
  46. package/packages/orq-rc/src/models/components/getprojectresponse.ts +32 -0
  47. package/packages/orq-rc/src/models/components/index.ts +8 -0
  48. package/packages/orq-rc/src/models/components/listprojectsresponse.ts +41 -0
  49. package/packages/orq-rc/src/models/components/project.ts +64 -0
  50. package/packages/orq-rc/src/models/components/publicschedule.ts +0 -3
  51. package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
  52. package/packages/orq-rc/src/models/components/updateprojectrequest.ts +42 -0
  53. package/packages/orq-rc/src/models/components/updateprojectresponse.ts +32 -0
  54. package/packages/orq-rc/src/models/components/updateskillrequest.ts +4 -0
  55. package/packages/orq-rc/src/models/operations/createagentschedule.ts +0 -3
  56. package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
  57. package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
  58. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
  59. package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
  60. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  61. package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
  62. package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
  63. package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
  64. package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
  65. package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
  66. package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
  67. package/packages/orq-rc/src/models/operations/index.ts +4 -0
  68. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
  69. package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
  70. package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
  71. package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
  72. package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  73. package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
  74. package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
  75. package/packages/orq-rc/src/models/operations/projectdelete.ts +36 -0
  76. package/packages/orq-rc/src/models/operations/projectget.ts +36 -0
  77. package/packages/orq-rc/src/models/operations/projectlist.ts +43 -0
  78. package/packages/orq-rc/src/models/operations/projectupdate.ts +41 -0
  79. package/packages/orq-rc/src/models/operations/retrieveagentschedule.ts +0 -3
  80. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
  81. package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
  82. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
  83. package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -1
  84. package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
  85. package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
  86. package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
  87. package/packages/orq-rc/src/models/operations/updateagentschedule.ts +0 -3
  88. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
  89. package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
  90. package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
  91. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  92. package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
  93. package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
  94. package/packages/orq-rc/src/sdk/projects.ts +97 -0
  95. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  96. package/src/lib/config.ts +2 -2
  97. package/src/models/components/reasoningpart.ts +1 -1
  98. package/src/models/operations/createcontact.ts +1 -1
  99. package/src/models/operations/createdataset.ts +1 -1
  100. package/src/models/operations/createdatasetitem.ts +4 -4
  101. package/src/models/operations/createdatasource.ts +1 -1
  102. package/src/models/operations/createeval.ts +16 -16
  103. package/src/models/operations/createidentity.ts +1 -1
  104. package/src/models/operations/createtool.ts +6 -6
  105. package/src/models/operations/getalltools.ts +6 -6
  106. package/src/models/operations/getevals.ts +16 -16
  107. package/src/models/operations/getv2humanevalsets.ts +2 -2
  108. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  109. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  110. package/src/models/operations/listdatasets.ts +1 -1
  111. package/src/models/operations/listdatasources.ts +1 -1
  112. package/src/models/operations/listidentities.ts +1 -1
  113. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  114. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  115. package/src/models/operations/postv2humanevalsets.ts +2 -2
  116. package/src/models/operations/retrievedatapoint.ts +4 -4
  117. package/src/models/operations/retrievedataset.ts +1 -1
  118. package/src/models/operations/retrievedatasource.ts +1 -1
  119. package/src/models/operations/retrieveidentity.ts +1 -1
  120. package/src/models/operations/retrievetool.ts +6 -6
  121. package/src/models/operations/runagent.ts +1 -1
  122. package/src/models/operations/streamrunagent.ts +1 -1
  123. package/src/models/operations/updatedatapoint.ts +4 -4
  124. package/src/models/operations/updatedataset.ts +1 -1
  125. package/src/models/operations/updatedatasource.ts +1 -1
  126. package/src/models/operations/updateeval.ts +16 -16
  127. package/src/models/operations/updateidentity.ts +1 -1
  128. package/src/models/operations/updatetool.ts +7 -7
@@ -1472,7 +1472,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
1472
1472
  z.ZodTypeDef,
1473
1473
  RequestBodyTools
1474
1474
  > = z.object({
1475
- id: z.string().default("01KQM5RAZJDRJE3BH2CFZKRQB5"),
1475
+ id: z.string().default("01KQVKDC9RWGHVF6X7P80SM1T5"),
1476
1476
  name: z.string(),
1477
1477
  description: z.string().optional(),
1478
1478
  schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
@@ -2193,7 +2193,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
2193
2193
  z.ZodTypeDef,
2194
2194
  unknown
2195
2195
  > = z.object({
2196
- _id: z.string().default("tool_01KQM5RAZC1QE9R77HRXHWDDWM"),
2196
+ _id: z.string().default("tool_01KQVKDC9J1Z37DC1Z9T4ZDKDB"),
2197
2197
  path: z.string(),
2198
2198
  key: z.string(),
2199
2199
  display_name: z.string().optional(),
@@ -2296,7 +2296,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
2296
2296
  z.ZodTypeDef,
2297
2297
  unknown
2298
2298
  > = z.object({
2299
- id: z.string().default("01KQM5RAZB2GM3JSSAF4Y8NCSW"),
2299
+ id: z.string().default("01KQVKDC9JPPE27R0ZCC47JD2F"),
2300
2300
  name: z.string(),
2301
2301
  description: z.string().optional(),
2302
2302
  schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
@@ -2354,7 +2354,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
2354
2354
  z.ZodTypeDef,
2355
2355
  unknown
2356
2356
  > = z.object({
2357
- _id: z.string().default("tool_01KQM5RAZ3EGZF8Y5W1S8NPWQ6"),
2357
+ _id: z.string().default("tool_01KQVKDC9GMNC68JJY8KXTFP3Q"),
2358
2358
  path: z.string(),
2359
2359
  key: z.string(),
2360
2360
  display_name: z.string().optional(),
@@ -2543,7 +2543,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
2543
2543
  z.ZodTypeDef,
2544
2544
  unknown
2545
2545
  > = z.object({
2546
- _id: z.string().default("tool_01KQM5RAZ10B6M8DEQSYGTGBA7"),
2546
+ _id: z.string().default("tool_01KQVKDC9F1Q9P6J19FC4FN544"),
2547
2547
  path: z.string(),
2548
2548
  key: z.string(),
2549
2549
  display_name: z.string().optional(),
@@ -2638,7 +2638,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2638
2638
  z.ZodTypeDef,
2639
2639
  unknown
2640
2640
  > = z.object({
2641
- _id: z.string().default("tool_01KQM5RAZ09T6G1ZXKSN23NHW6"),
2641
+ _id: z.string().default("tool_01KQVKDC9DVQBAGNZ27VE47HEG"),
2642
2642
  path: z.string(),
2643
2643
  key: z.string(),
2644
2644
  display_name: z.string().optional(),
@@ -2741,7 +2741,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
2741
2741
  z.ZodTypeDef,
2742
2742
  unknown
2743
2743
  > = z.object({
2744
- _id: z.string().default("tool_01KQM5RAYZ8F4BEDNF46ATBR1W"),
2744
+ _id: z.string().default("tool_01KQVKDC9C4BB1YC0VJBGRWA78"),
2745
2745
  path: z.string(),
2746
2746
  key: z.string(),
2747
2747
  display_name: z.string().optional(),
@@ -0,0 +1,97 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+
5
+ import { projectsCreate } from "../funcs/projectsCreate.js";
6
+ import { projectsDelete } from "../funcs/projectsDelete.js";
7
+ import { projectsGet } from "../funcs/projectsGet.js";
8
+ import { projectsList } from "../funcs/projectsList.js";
9
+ import { projectsUpdate } from "../funcs/projectsUpdate.js";
10
+ import { ClientSDK, RequestOptions } from "../lib/sdks.js";
11
+ import * as components from "../models/components/index.js";
12
+ import * as operations from "../models/operations/index.js";
13
+ import { unwrapAsync } from "../types/fp.js";
14
+
15
+ export class Projects extends ClientSDK {
16
+ /**
17
+ * List all projects
18
+ *
19
+ * @remarks
20
+ * Returns a list of projects. Projects are sorted by creation date, with the most recently created projects appearing first.
21
+ */
22
+ async list(
23
+ request?: operations.ProjectListRequest | undefined,
24
+ options?: RequestOptions,
25
+ ): Promise<components.ListProjectsResponse> {
26
+ return unwrapAsync(projectsList(
27
+ this,
28
+ request,
29
+ options,
30
+ ));
31
+ }
32
+
33
+ /**
34
+ * Create a new project
35
+ *
36
+ * @remarks
37
+ * Creates a new project within the workspace. Projects organize resources like skills, deployments, and datasets.
38
+ */
39
+ async create(
40
+ request: components.CreateProjectRequest,
41
+ options?: RequestOptions,
42
+ ): Promise<components.CreateProjectResponse> {
43
+ return unwrapAsync(projectsCreate(
44
+ this,
45
+ request,
46
+ options,
47
+ ));
48
+ }
49
+
50
+ /**
51
+ * Retrieve a project
52
+ *
53
+ * @remarks
54
+ * Retrieves the details of an existing project by its unique project ID.
55
+ */
56
+ async get(
57
+ request: operations.ProjectGetRequest,
58
+ options?: RequestOptions,
59
+ ): Promise<components.GetProjectResponse> {
60
+ return unwrapAsync(projectsGet(
61
+ this,
62
+ request,
63
+ options,
64
+ ));
65
+ }
66
+
67
+ /**
68
+ * Delete a project
69
+ */
70
+ async delete(
71
+ request: operations.ProjectDeleteRequest,
72
+ options?: RequestOptions,
73
+ ): Promise<components.DeleteProjectResponse> {
74
+ return unwrapAsync(projectsDelete(
75
+ this,
76
+ request,
77
+ options,
78
+ ));
79
+ }
80
+
81
+ /**
82
+ * Update a project
83
+ *
84
+ * @remarks
85
+ * Updates the specified project by setting the values of the parameters passed.
86
+ */
87
+ async update(
88
+ request: operations.ProjectUpdateRequest,
89
+ options?: RequestOptions,
90
+ ): Promise<components.UpdateProjectResponse> {
91
+ return unwrapAsync(projectsUpdate(
92
+ this,
93
+ request,
94
+ options,
95
+ ));
96
+ }
97
+ }
@@ -22,6 +22,7 @@ import { Identities } from "./identities.js";
22
22
  import { Knowledge } from "./knowledge.js";
23
23
  import { MemoryStores } from "./memorystores.js";
24
24
  import { Policies } from "./policies.js";
25
+ import { Projects } from "./projects.js";
25
26
  import { Prompts } from "./prompts.js";
26
27
  import { Remoteconfigs } from "./remoteconfigs.js";
27
28
  import { Responses } from "./responses.js";
@@ -132,6 +133,11 @@ export class Orq extends ClientSDK {
132
133
  return (this._files ??= new Files(this._options));
133
134
  }
134
135
 
136
+ private _projects?: Projects;
137
+ get projects(): Projects {
138
+ return (this._projects ??= new Projects(this._options));
139
+ }
140
+
135
141
  private _skills?: Skills;
136
142
  get skills(): Skills {
137
143
  return (this._skills ??= new Skills(this._options));
package/src/lib/config.ts CHANGED
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
68
68
  export const SDK_METADATA = {
69
69
  language: "typescript",
70
70
  openapiDocVersion: "2.0",
71
- sdkVersion: "4.8.7",
71
+ sdkVersion: "4.8.9",
72
72
  genVersion: "2.881.17",
73
- userAgent: "speakeasy-sdk/typescript 4.8.7 2.881.17 2.0 @orq-ai/node",
73
+ userAgent: "speakeasy-sdk/typescript 4.8.9 2.881.17 2.0 @orq-ai/node",
74
74
  } as const;
@@ -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_01kqqvcbhh6qyzcxw00k88atva"),
43
+ _id: z.string().default("reasoning_01kqvsrk5ptm60q5cmhsf8ebmy"),
44
44
  metadata: z.record(z.any()).optional(),
45
45
  kind: z.literal("reasoning"),
46
46
  reasoning: z.string(),
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
134
134
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
135
135
  .optional(),
136
136
  updated: z.string().datetime({ offset: true }).default(
137
- "2026-05-03T21:19:32.905Z",
137
+ "2026-05-05T10:08:15.299Z",
138
138
  ).transform(v => new Date(v)),
139
139
  }).transform((v) => {
140
140
  return remap$(v, {
@@ -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-05-03T21:19:32.905Z",
141
+ "2026-05-05T10:08:15.299Z",
142
142
  ).transform(v => new Date(v)),
143
143
  }).transform((v) => {
144
144
  return remap$(v, {
@@ -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-05-03T21:19:48.460Z",
2358
+ "2026-05-05T10:08:30.000Z",
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-05-03T21:19:48.459Z",
2403
+ "2026-05-05T10:08:29.999Z",
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-05-03T21:19:48.459Z",
2449
+ "2026-05-05T10:08:29.999Z",
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-05-03T21:19:32.905Z",
2532
+ "2026-05-05T10:08:15.299Z",
2533
2533
  ).transform(v => new Date(v)),
2534
2534
  }).transform((v) => {
2535
2535
  return remap$(v, {
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
403
403
  z.ZodTypeDef,
404
404
  unknown
405
405
  > = z.object({
406
- _id: z.string().default("01KQQVCCNKAB93PD6CDFVHYVK0"),
406
+ _id: z.string().default("01KQVSRM7RGZ08XV30RENP1TG9"),
407
407
  display_name: z.string(),
408
408
  description: z.string().optional(),
409
409
  status: CreateDatasourceStatus$inboundSchema,
@@ -2776,8 +2776,8 @@ export const Typescript$inboundSchema: z.ZodType<
2776
2776
  > = z.object({
2777
2777
  _id: z.string(),
2778
2778
  description: z.string(),
2779
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2780
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2779
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2780
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2781
2781
  guardrail_config: z.nullable(
2782
2782
  z.union([
2783
2783
  z.lazy(() =>
@@ -2965,8 +2965,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
2965
2965
  .object({
2966
2966
  _id: z.string(),
2967
2967
  description: z.string(),
2968
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2969
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2968
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2969
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2970
2970
  guardrail_config: z.nullable(
2971
2971
  z.union([
2972
2972
  z.lazy(() =>
@@ -3792,8 +3792,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
3792
3792
  > = z.object({
3793
3793
  _id: z.string(),
3794
3794
  description: z.string(),
3795
- created: z.string().default("2026-05-03T21:19:35.022Z"),
3796
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
3795
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
3796
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
3797
3797
  guardrail_config: z.nullable(
3798
3798
  z.union([
3799
3799
  z.lazy(() =>
@@ -4011,8 +4011,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
4011
4011
  > = z.object({
4012
4012
  _id: z.string(),
4013
4013
  description: z.string(),
4014
- created: z.string().default("2026-05-03T21:19:35.022Z"),
4015
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
4014
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
4015
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
4016
4016
  guardrail_config: z.nullable(
4017
4017
  z.union([
4018
4018
  z.lazy(() =>
@@ -4193,8 +4193,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
4193
4193
  > = z.object({
4194
4194
  _id: z.string(),
4195
4195
  description: z.string(),
4196
- created: z.string().default("2026-05-03T21:19:35.022Z"),
4197
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
4196
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
4197
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
4198
4198
  guardrail_config: z.nullable(
4199
4199
  z.union([
4200
4200
  z.lazy(() =>
@@ -4370,8 +4370,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
4370
4370
  > = z.object({
4371
4371
  _id: z.string(),
4372
4372
  description: z.string(),
4373
- created: z.string().default("2026-05-03T21:19:35.022Z"),
4374
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
4373
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
4374
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
4375
4375
  guardrail_config: z.nullable(
4376
4376
  z.union([
4377
4377
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -4741,8 +4741,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
4741
4741
  > = z.object({
4742
4742
  _id: z.string(),
4743
4743
  description: z.string(),
4744
- created: z.string().default("2026-05-03T21:19:35.022Z"),
4745
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
4744
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
4745
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
4746
4746
  guardrail_config: z.nullable(
4747
4747
  z.union([
4748
4748
  z.lazy(() =>
@@ -4957,8 +4957,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
4957
4957
  > = z.object({
4958
4958
  _id: z.string(),
4959
4959
  description: z.string(),
4960
- created: z.string().default("2026-05-03T21:19:35.022Z"),
4961
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
4960
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
4961
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
4962
4962
  guardrail_config: z.nullable(
4963
4963
  z.union([
4964
4964
  z.lazy(() =>
@@ -139,7 +139,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
139
139
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
140
140
  .optional(),
141
141
  updated: z.string().datetime({ offset: true }).default(
142
- "2026-05-03T21:19:32.905Z",
142
+ "2026-05-05T10:08:15.299Z",
143
143
  ).transform(v => new Date(v)),
144
144
  }).transform((v) => {
145
145
  return remap$(v, {
@@ -1902,7 +1902,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
1902
1902
  z.ZodTypeDef,
1903
1903
  unknown
1904
1904
  > = z.object({
1905
- _id: z.string().default("tool_01KQQVCCBXA3NFT7N3B9VBV5QA"),
1905
+ _id: z.string().default("tool_01KQVSRKW84J9GV6DH142X16EE"),
1906
1906
  path: z.string(),
1907
1907
  key: z.string(),
1908
1908
  display_name: z.string().optional(),
@@ -1999,7 +1999,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
1999
1999
  z.ZodTypeDef,
2000
2000
  unknown
2001
2001
  > = z.object({
2002
- id: z.string().default("01KQQVCCBS3YNYX3A42D2NQHGF"),
2002
+ id: z.string().default("01KQVSRKW21CQ76TPRQ7628VQ0"),
2003
2003
  name: z.string(),
2004
2004
  description: z.string().optional(),
2005
2005
  schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
@@ -2055,7 +2055,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
2055
2055
  z.ZodTypeDef,
2056
2056
  unknown
2057
2057
  > = z.object({
2058
- _id: z.string().default("tool_01KQQVCCBJ8EAJ9TQM1KSVC3X1"),
2058
+ _id: z.string().default("tool_01KQVSRKVVWKSX5BQS70FB9DP6"),
2059
2059
  path: z.string(),
2060
2060
  key: z.string(),
2061
2061
  display_name: z.string().optional(),
@@ -2241,7 +2241,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
2241
2241
  z.ZodTypeDef,
2242
2242
  unknown
2243
2243
  > = z.object({
2244
- _id: z.string().default("tool_01KQQVCCB9PFH7Y3J4WM6EX4TR"),
2244
+ _id: z.string().default("tool_01KQVSRKVF31M9NCNVNEB5C7Z3"),
2245
2245
  path: z.string(),
2246
2246
  key: z.string(),
2247
2247
  display_name: z.string().optional(),
@@ -2334,7 +2334,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2334
2334
  z.ZodTypeDef,
2335
2335
  unknown
2336
2336
  > = z.object({
2337
- _id: z.string().default("tool_01KQQVCCAXDARE7WSE6MD758NZ"),
2337
+ _id: z.string().default("tool_01KQVSRKV3JKRHZD5CNJN5X7FA"),
2338
2338
  path: z.string(),
2339
2339
  key: z.string(),
2340
2340
  display_name: z.string().optional(),
@@ -2435,7 +2435,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
2435
2435
  z.ZodTypeDef,
2436
2436
  unknown
2437
2437
  > = z.object({
2438
- _id: z.string().default("tool_01KQQVCCARFM1CZ8DDZ8C0Q7F3"),
2438
+ _id: z.string().default("tool_01KQVSRKTRK6Z0M4NMEWZS76YZ"),
2439
2439
  path: z.string(),
2440
2440
  key: z.string(),
2441
2441
  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_01KQQVCC8YBPYH2CWB6WNYK93P"),
770
+ _id: z.string().default("tool_01KQVSRKRPVPB6WE4Y0R3N4GYH"),
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("01KQQVCC8MC6AWNF1YWGQ156FN"),
867
+ id: z.string().default("01KQVSRKRMZ8ZTQ18R5G08G7JV"),
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_01KQQVCC8D2Q51J8NBZHHDN3JX"),
920
+ _id: z.string().default("tool_01KQVSRKR76MMRHGGCC0RVDFJV"),
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_01KQQVCC7N5DVWR19SP65M4WWZ"),
1105
+ _id: z.string().default("tool_01KQVSRKQYXP1K2WTP396C5STA"),
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_01KQQVCC79ATQTQBQ0H2ME6PD4"),
1198
+ _id: z.string().default("tool_01KQVSRKQP10FF6ZTHSM7M12GS"),
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_01KQQVCC6VZ1YS137HJMSY53H6"),
1300
+ _id: z.string().default("tool_01KQVSRKQHVXKN3HDGPBZN6XXR"),
1301
1301
  path: z.string(),
1302
1302
  key: z.string(),
1303
1303
  display_name: z.string().optional(),
@@ -1040,8 +1040,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
1040
1040
  > = z.object({
1041
1041
  _id: z.string(),
1042
1042
  description: z.string(),
1043
- created: z.string().default("2026-05-03T21:19:35.022Z"),
1044
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
1043
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
1044
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
1045
1045
  guardrail_config: z.nullable(
1046
1046
  z.union([
1047
1047
  z.lazy(() =>
@@ -1220,8 +1220,8 @@ export const DataRagas$inboundSchema: z.ZodType<
1220
1220
  > = z.object({
1221
1221
  _id: z.string(),
1222
1222
  description: z.string(),
1223
- created: z.string().default("2026-05-03T21:19:35.022Z"),
1224
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
1223
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
1224
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
1225
1225
  guardrail_config: z.nullable(
1226
1226
  z.union([
1227
1227
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -2050,8 +2050,8 @@ export const DataFunction$inboundSchema: z.ZodType<
2050
2050
  > = z.object({
2051
2051
  _id: z.string(),
2052
2052
  description: z.string(),
2053
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2054
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2053
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2054
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2055
2055
  guardrail_config: z.nullable(
2056
2056
  z.union([
2057
2057
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
@@ -2232,8 +2232,8 @@ export const DataPython$inboundSchema: z.ZodType<
2232
2232
  > = z.object({
2233
2233
  _id: z.string(),
2234
2234
  description: z.string(),
2235
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2236
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2235
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2236
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2237
2237
  guardrail_config: z.nullable(
2238
2238
  z.union([
2239
2239
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
@@ -2410,8 +2410,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
2410
2410
  > = z.object({
2411
2411
  _id: z.string(),
2412
2412
  description: z.string(),
2413
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2414
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2413
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2414
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2415
2415
  guardrail_config: z.nullable(
2416
2416
  z.union([
2417
2417
  z.lazy(() =>
@@ -2600,8 +2600,8 @@ export const DataJSON$inboundSchema: z.ZodType<
2600
2600
  > = z.object({
2601
2601
  _id: z.string(),
2602
2602
  description: z.string(),
2603
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2604
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2603
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2604
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2605
2605
  guardrail_config: z.nullable(
2606
2606
  z.union([
2607
2607
  z.lazy(() =>
@@ -2966,8 +2966,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
2966
2966
  > = z.object({
2967
2967
  _id: z.string(),
2968
2968
  description: z.string(),
2969
- created: z.string().default("2026-05-03T21:19:35.022Z"),
2970
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
2969
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
2970
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
2971
2971
  guardrail_config: z.nullable(
2972
2972
  z.union([
2973
2973
  z.lazy(() =>
@@ -3175,8 +3175,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
3175
3175
  > = z.object({
3176
3176
  _id: z.string(),
3177
3177
  description: z.string(),
3178
- created: z.string().default("2026-05-03T21:19:35.022Z"),
3179
- updated: z.string().default("2026-05-03T21:19:35.022Z"),
3178
+ created: z.string().default("2026-05-05T10:08:17.375Z"),
3179
+ updated: z.string().default("2026-05-05T10:08:17.375Z"),
3180
3180
  guardrail_config: z.nullable(
3181
3181
  z.union([
3182
3182
  z.lazy(() =>
@@ -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-05-03T21:19:32.905Z",
143
+ "2026-05-05T10:08:15.299Z",
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-05-03T21:19:32.905Z",
188
+ "2026-05-05T10:08:15.299Z",
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-05-03T21:19:32.905Z",
144
+ "2026-05-05T10:08:15.299Z",
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-05-03T21:19:32.905Z",
189
+ "2026-05-05T10:08:15.299Z",
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-05-03T21:19:48.450Z",
1273
+ "2026-05-05T10:08:29.990Z",
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-05-03T21:19:48.450Z",
1323
+ "2026-05-05T10:08:29.990Z",
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-05-03T21:19:48.449Z",
1372
+ "2026-05-05T10:08:29.989Z",
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-05-03T21:19:32.905Z",
1451
+ "2026-05-05T10:08:15.299Z",
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-05-03T21:19:32.905Z",
159
+ "2026-05-05T10:08:15.299Z",
160
160
  ).transform(v => new Date(v)),
161
161
  }).transform((v) => {
162
162
  return remap$(v, {
@@ -176,7 +176,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
176
176
  z.ZodTypeDef,
177
177
  unknown
178
178
  > = z.object({
179
- _id: z.string().default("01KQQVCCNHFP69J7ZNQ4CZN57M"),
179
+ _id: z.string().default("01KQVSRM7PRNRMXM769VC226CM"),
180
180
  display_name: z.string(),
181
181
  description: z.string().optional(),
182
182
  status: ListDatasourcesStatus$inboundSchema,