@orq-ai/node 4.9.0-rc.47 → 4.9.0-rc.49

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 (118) hide show
  1. package/README.md +47 -52
  2. package/jsr.json +1 -1
  3. package/lib/config.d.ts +2 -2
  4. package/lib/config.js +2 -2
  5. package/models/components/reasoningpart.js +1 -1
  6. package/models/operations/createcontact.js +1 -1
  7. package/models/operations/createdataset.js +1 -1
  8. package/models/operations/createdatasetitem.js +4 -4
  9. package/models/operations/createdatasource.js +1 -1
  10. package/models/operations/createeval.d.ts +5 -5
  11. package/models/operations/createeval.d.ts.map +1 -1
  12. package/models/operations/createeval.js +24 -23
  13. package/models/operations/createeval.js.map +1 -1
  14. package/models/operations/createidentity.js +1 -1
  15. package/models/operations/createrouterresponse.d.ts +24 -24
  16. package/models/operations/createrouterresponse.d.ts.map +1 -1
  17. package/models/operations/createrouterresponse.js +23 -26
  18. package/models/operations/createrouterresponse.js.map +1 -1
  19. package/models/operations/createtool.js +6 -6
  20. package/models/operations/deploymentgetconfig.d.ts +9 -9
  21. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  22. package/models/operations/deploymentgetconfig.js +17 -15
  23. package/models/operations/deploymentgetconfig.js.map +1 -1
  24. package/models/operations/getalltools.js +6 -6
  25. package/models/operations/getevals.js +16 -16
  26. package/models/operations/getv2humanevalsets.js +2 -2
  27. package/models/operations/getv2humanevalsetsid.js +2 -2
  28. package/models/operations/index.d.ts +0 -1
  29. package/models/operations/index.d.ts.map +1 -1
  30. package/models/operations/index.js +0 -1
  31. package/models/operations/index.js.map +1 -1
  32. package/models/operations/listdatasetdatapoints.js +4 -4
  33. package/models/operations/listdatasets.js +1 -1
  34. package/models/operations/listdatasources.js +1 -1
  35. package/models/operations/listidentities.js +1 -1
  36. package/models/operations/patchv2humanevalsetsid.js +2 -2
  37. package/models/operations/postv2feedbackevaluation.js +3 -3
  38. package/models/operations/postv2humanevalsets.js +2 -2
  39. package/models/operations/retrievedatapoint.js +4 -4
  40. package/models/operations/retrievedataset.js +1 -1
  41. package/models/operations/retrievedatasource.js +1 -1
  42. package/models/operations/retrieveidentity.js +1 -1
  43. package/models/operations/retrievetool.js +6 -6
  44. package/models/operations/runagent.js +1 -1
  45. package/models/operations/streamrunagent.js +1 -1
  46. package/models/operations/updatedatapoint.js +4 -4
  47. package/models/operations/updatedataset.js +1 -1
  48. package/models/operations/updatedatasource.js +1 -1
  49. package/models/operations/updateeval.js +16 -16
  50. package/models/operations/updateidentity.js +1 -1
  51. package/models/operations/updatetool.js +7 -7
  52. package/package.json +5 -5
  53. package/sdk/agents.d.ts +2 -2
  54. package/sdk/agents.d.ts.map +1 -1
  55. package/sdk/agents.js +2 -2
  56. package/sdk/agents.js.map +1 -1
  57. package/sdk/orqresponses.d.ts +13 -5
  58. package/sdk/orqresponses.d.ts.map +1 -1
  59. package/sdk/orqresponses.js +16 -6
  60. package/sdk/orqresponses.js.map +1 -1
  61. package/sdk/router.d.ts +0 -3
  62. package/sdk/router.d.ts.map +1 -1
  63. package/sdk/router.js +0 -4
  64. package/sdk/router.js.map +1 -1
  65. package/src/lib/config.ts +2 -2
  66. package/src/models/components/reasoningpart.ts +1 -1
  67. package/src/models/operations/createcontact.ts +1 -1
  68. package/src/models/operations/createdataset.ts +1 -1
  69. package/src/models/operations/createdatasetitem.ts +4 -4
  70. package/src/models/operations/createdatasource.ts +1 -1
  71. package/src/models/operations/createeval.ts +29 -32
  72. package/src/models/operations/createidentity.ts +1 -1
  73. package/src/models/operations/createrouterresponse.ts +40 -58
  74. package/src/models/operations/createtool.ts +6 -6
  75. package/src/models/operations/deploymentgetconfig.ts +33 -48
  76. package/src/models/operations/getalltools.ts +6 -6
  77. package/src/models/operations/getevals.ts +16 -16
  78. package/src/models/operations/getv2humanevalsets.ts +2 -2
  79. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  80. package/src/models/operations/index.ts +0 -1
  81. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  82. package/src/models/operations/listdatasets.ts +1 -1
  83. package/src/models/operations/listdatasources.ts +1 -1
  84. package/src/models/operations/listidentities.ts +1 -1
  85. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  86. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  87. package/src/models/operations/postv2humanevalsets.ts +2 -2
  88. package/src/models/operations/retrievedatapoint.ts +4 -4
  89. package/src/models/operations/retrievedataset.ts +1 -1
  90. package/src/models/operations/retrievedatasource.ts +1 -1
  91. package/src/models/operations/retrieveidentity.ts +1 -1
  92. package/src/models/operations/retrievetool.ts +6 -6
  93. package/src/models/operations/runagent.ts +1 -1
  94. package/src/models/operations/streamrunagent.ts +1 -1
  95. package/src/models/operations/updatedatapoint.ts +4 -4
  96. package/src/models/operations/updatedataset.ts +1 -1
  97. package/src/models/operations/updatedatasource.ts +1 -1
  98. package/src/models/operations/updateeval.ts +16 -16
  99. package/src/models/operations/updateidentity.ts +1 -1
  100. package/src/models/operations/updatetool.ts +7 -7
  101. package/src/sdk/agents.ts +4 -4
  102. package/src/sdk/orqresponses.ts +28 -7
  103. package/src/sdk/router.ts +0 -6
  104. package/funcs/routerResponsesCreate.d.ts +0 -23
  105. package/funcs/routerResponsesCreate.d.ts.map +0 -1
  106. package/funcs/routerResponsesCreate.js +0 -122
  107. package/funcs/routerResponsesCreate.js.map +0 -1
  108. package/models/operations/createresponse.d.ts +0 -1990
  109. package/models/operations/createresponse.d.ts.map +0 -1
  110. package/models/operations/createresponse.js +0 -1422
  111. package/models/operations/createresponse.js.map +0 -1
  112. package/sdk/orqagentsresponses.d.ts +0 -24
  113. package/sdk/orqagentsresponses.d.ts.map +0 -1
  114. package/sdk/orqagentsresponses.js +0 -34
  115. package/sdk/orqagentsresponses.js.map +0 -1
  116. package/src/funcs/routerResponsesCreate.ts +0 -169
  117. package/src/models/operations/createresponse.ts +0 -3864
  118. package/src/sdk/orqagentsresponses.ts +0 -53
@@ -1181,7 +1181,7 @@ export type DeploymentGetConfig2File = {
1181
1181
  filename?: string | undefined;
1182
1182
  };
1183
1183
 
1184
- export type DeploymentGetConfig23 = {
1184
+ export type Two3 = {
1185
1185
  /**
1186
1186
  * The type of the content part. Always `file`.
1187
1187
  */
@@ -1215,24 +1215,22 @@ export type DeploymentGetConfig22 = {
1215
1215
  /**
1216
1216
  * Text content part of a prompt message
1217
1217
  */
1218
- export type DeploymentGetConfig21 = {
1218
+ export type Two1 = {
1219
1219
  type: "text";
1220
1220
  text: string;
1221
1221
  };
1222
1222
 
1223
1223
  export type DeploymentGetConfigContentDeploymentsResponse2 =
1224
- | DeploymentGetConfig21
1224
+ | Two1
1225
1225
  | DeploymentGetConfig22
1226
- | DeploymentGetConfig23;
1226
+ | Two3;
1227
1227
 
1228
1228
  /**
1229
1229
  * The contents of the user message. Either the text content of the message or an array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts. Can be null for tool messages in certain scenarios.
1230
1230
  */
1231
1231
  export type DeploymentGetConfigContent =
1232
1232
  | string
1233
- | Array<
1234
- DeploymentGetConfig21 | DeploymentGetConfig22 | DeploymentGetConfig23
1235
- >;
1233
+ | Array<Two1 | DeploymentGetConfig22 | Two3>;
1236
1234
 
1237
1235
  export const DeploymentGetConfigDeploymentsResponseType = {
1238
1236
  Function: "function",
@@ -1264,12 +1262,7 @@ export type DeploymentGetConfigDeploymentsMessages = {
1264
1262
  /**
1265
1263
  * The contents of the user message. Either the text content of the message or an array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts. Can be null for tool messages in certain scenarios.
1266
1264
  */
1267
- content:
1268
- | string
1269
- | Array<
1270
- DeploymentGetConfig21 | DeploymentGetConfig22 | DeploymentGetConfig23
1271
- >
1272
- | null;
1265
+ content: string | Array<Two1 | DeploymentGetConfig22 | Two3> | null;
1273
1266
  toolCalls?: Array<DeploymentGetConfigToolCalls> | undefined;
1274
1267
  toolCallId?: string | null | undefined;
1275
1268
  };
@@ -4002,22 +3995,19 @@ export function deploymentGetConfig2FileFromJSON(
4002
3995
  }
4003
3996
 
4004
3997
  /** @internal */
4005
- export const DeploymentGetConfig23$inboundSchema: z.ZodType<
4006
- DeploymentGetConfig23,
4007
- z.ZodTypeDef,
4008
- unknown
4009
- > = z.object({
4010
- type: z.literal("file"),
4011
- file: z.lazy(() => DeploymentGetConfig2File$inboundSchema),
4012
- });
3998
+ export const Two3$inboundSchema: z.ZodType<Two3, z.ZodTypeDef, unknown> = z
3999
+ .object({
4000
+ type: z.literal("file"),
4001
+ file: z.lazy(() => DeploymentGetConfig2File$inboundSchema),
4002
+ });
4013
4003
 
4014
- export function deploymentGetConfig23FromJSON(
4004
+ export function two3FromJSON(
4015
4005
  jsonString: string,
4016
- ): SafeParseResult<DeploymentGetConfig23, SDKValidationError> {
4006
+ ): SafeParseResult<Two3, SDKValidationError> {
4017
4007
  return safeParse(
4018
4008
  jsonString,
4019
- (x) => DeploymentGetConfig23$inboundSchema.parse(JSON.parse(x)),
4020
- `Failed to parse 'DeploymentGetConfig23' from JSON`,
4009
+ (x) => Two3$inboundSchema.parse(JSON.parse(x)),
4010
+ `Failed to parse 'Two3' from JSON`,
4021
4011
  );
4022
4012
  }
4023
4013
 
@@ -4067,22 +4057,19 @@ export function deploymentGetConfig22FromJSON(
4067
4057
  }
4068
4058
 
4069
4059
  /** @internal */
4070
- export const DeploymentGetConfig21$inboundSchema: z.ZodType<
4071
- DeploymentGetConfig21,
4072
- z.ZodTypeDef,
4073
- unknown
4074
- > = z.object({
4075
- type: z.literal("text"),
4076
- text: z.string(),
4077
- });
4060
+ export const Two1$inboundSchema: z.ZodType<Two1, z.ZodTypeDef, unknown> = z
4061
+ .object({
4062
+ type: z.literal("text"),
4063
+ text: z.string(),
4064
+ });
4078
4065
 
4079
- export function deploymentGetConfig21FromJSON(
4066
+ export function two1FromJSON(
4080
4067
  jsonString: string,
4081
- ): SafeParseResult<DeploymentGetConfig21, SDKValidationError> {
4068
+ ): SafeParseResult<Two1, SDKValidationError> {
4082
4069
  return safeParse(
4083
4070
  jsonString,
4084
- (x) => DeploymentGetConfig21$inboundSchema.parse(JSON.parse(x)),
4085
- `Failed to parse 'DeploymentGetConfig21' from JSON`,
4071
+ (x) => Two1$inboundSchema.parse(JSON.parse(x)),
4072
+ `Failed to parse 'Two1' from JSON`,
4086
4073
  );
4087
4074
  }
4088
4075
 
@@ -4093,9 +4080,9 @@ export const DeploymentGetConfigContentDeploymentsResponse2$inboundSchema:
4093
4080
  z.ZodTypeDef,
4094
4081
  unknown
4095
4082
  > = z.union([
4096
- z.lazy(() => DeploymentGetConfig21$inboundSchema),
4083
+ z.lazy(() => Two1$inboundSchema),
4097
4084
  z.lazy(() => DeploymentGetConfig22$inboundSchema),
4098
- z.lazy(() => DeploymentGetConfig23$inboundSchema),
4085
+ z.lazy(() => Two3$inboundSchema),
4099
4086
  ]);
4100
4087
 
4101
4088
  export function deploymentGetConfigContentDeploymentsResponse2FromJSON(
@@ -4122,9 +4109,9 @@ export const DeploymentGetConfigContent$inboundSchema: z.ZodType<
4122
4109
  > = z.union([
4123
4110
  z.string(),
4124
4111
  z.array(z.union([
4125
- z.lazy(() => DeploymentGetConfig21$inboundSchema),
4112
+ z.lazy(() => Two1$inboundSchema),
4126
4113
  z.lazy(() => DeploymentGetConfig22$inboundSchema),
4127
- z.lazy(() => DeploymentGetConfig23$inboundSchema),
4114
+ z.lazy(() => Two3$inboundSchema),
4128
4115
  ])),
4129
4116
  ]);
4130
4117
 
@@ -4196,13 +4183,11 @@ export const DeploymentGetConfigDeploymentsMessages$inboundSchema: z.ZodType<
4196
4183
  content: z.nullable(
4197
4184
  z.union([
4198
4185
  z.string(),
4199
- z.array(
4200
- z.union([
4201
- z.lazy(() => DeploymentGetConfig21$inboundSchema),
4202
- z.lazy(() => DeploymentGetConfig22$inboundSchema),
4203
- z.lazy(() => DeploymentGetConfig23$inboundSchema),
4204
- ]),
4205
- ),
4186
+ z.array(z.union([
4187
+ z.lazy(() => Two1$inboundSchema),
4188
+ z.lazy(() => DeploymentGetConfig22$inboundSchema),
4189
+ z.lazy(() => Two3$inboundSchema),
4190
+ ])),
4206
4191
  ]),
4207
4192
  ),
4208
4193
  tool_calls: z.array(z.lazy(() => DeploymentGetConfigToolCalls$inboundSchema))
@@ -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_01KRDPJJ71ZBVV612M4V9ZZHCF"),
770
+ _id: z.string().default("tool_01KRDY3027DNNYPAPMGJJPE35Y"),
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("01KRDPJJ6ZV4NGM41J8M1RQD52"),
867
+ id: z.string().default("01KRDY3026GP2MVJGW7V74BVTF"),
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_01KRDPJJ6WK5AZXEMKDVM7M6YB"),
920
+ _id: z.string().default("tool_01KRDY3025MSZWJ2G4F3XXAVYW"),
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_01KRDPJJ6PAGJN46FJGA9CZ22D"),
1105
+ _id: z.string().default("tool_01KRDY3023R92STYEJJJD5A1BN"),
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_01KRDPJJ6MBEKCX65PAYG7GK04"),
1198
+ _id: z.string().default("tool_01KRDY302102Y9SVP3QXGN5Q39"),
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_01KRDPJJ6KTGN3A3GKC1KJTP90"),
1300
+ _id: z.string().default("tool_01KRDY30208SATYRZBV5NTEPFA"),
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-12T08:58:53.193Z"),
1044
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
1043
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
1044
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
1224
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
1223
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
1224
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
2054
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
2053
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
2054
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
2236
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
2235
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
2236
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
2414
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
2413
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
2414
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
2604
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
2603
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
2604
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
2970
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
2969
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
2970
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:53.193Z"),
3179
- updated: z.string().default("2026-05-12T08:58:53.193Z"),
3178
+ created: z.string().default("2026-05-12T11:10:11.507Z"),
3179
+ updated: z.string().default("2026-05-12T11:10:11.507Z"),
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-12T08:58:51.089Z",
143
+ "2026-05-12T11:10:09.376Z",
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-12T08:58:51.089Z",
188
+ "2026-05-12T11:10:09.376Z",
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-12T08:58:51.089Z",
144
+ "2026-05-12T11:10:09.376Z",
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-12T08:58:51.089Z",
189
+ "2026-05-12T11:10:09.376Z",
190
190
  ).transform(v => new Date(v)),
191
191
  filter_type: z.literal("span_type"),
192
192
  filter_values: z.array(z.string()),
@@ -27,7 +27,6 @@ export * from "./creatememorystore.js";
27
27
  export * from "./createmoderation.js";
28
28
  export * from "./createprompt.js";
29
29
  export * from "./creatererank.js";
30
- export * from "./createresponse.js";
31
30
  export * from "./createrouterresponse.js";
32
31
  export * from "./createspeech.js";
33
32
  export * from "./createtool.js";
@@ -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-12T08:59:05.967Z",
1273
+ "2026-05-12T11:10:24.479Z",
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-12T08:59:05.967Z",
1323
+ "2026-05-12T11:10:24.479Z",
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-12T08:59:05.966Z",
1372
+ "2026-05-12T11:10:24.478Z",
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-12T08:58:51.089Z",
1451
+ "2026-05-12T11:10:09.376Z",
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-12T08:58:51.089Z",
159
+ "2026-05-12T11:10:09.376Z",
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("01KRDPJJRT7TXSD648P2R5A4NE"),
179
+ _id: z.string().default("01KRDY30KZAC68HTXSKNBBM3G5"),
180
180
  display_name: z.string(),
181
181
  description: z.string().optional(),
182
182
  status: ListDatasourcesStatus$inboundSchema,
@@ -227,7 +227,7 @@ export const ListIdentitiesData$inboundSchema: z.ZodType<
227
227
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
228
228
  .optional(),
229
229
  updated: z.string().datetime({ offset: true }).default(
230
- "2026-05-12T08:58:51.089Z",
230
+ "2026-05-12T11:10:09.376Z",
231
231
  ).transform(v => new Date(v)),
232
232
  metrics: z.lazy(() => ListIdentitiesMetrics$inboundSchema),
233
233
  }).transform((v) => {
@@ -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-05-12T08:58:51.089Z",
321
+ "2026-05-12T11:10:09.376Z",
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-05-12T08:58:51.089Z",
367
+ "2026-05-12T11:10:09.376Z",
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: PostV2FeedbackEvaluationRequestBodyRequestSource$outboundSchema
175
175
  .default("orq"),
176
- reviewedAt: z.date().default(() => new Date("2026-05-12T08:59:06.106Z"))
176
+ reviewedAt: z.date().default(() => new Date("2026-05-12T11:10:24.602Z"))
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 RequestBody2$outboundSchema: z.ZodType<
225
225
  source: PostV2FeedbackEvaluationRequestBodySource$outboundSchema.default(
226
226
  "orq",
227
227
  ),
228
- reviewedAt: z.date().default(() => new Date("2026-05-12T08:59:06.106Z"))
228
+ reviewedAt: z.date().default(() => new Date("2026-05-12T11:10:24.601Z"))
229
229
  .transform(v => v.toISOString()),
230
230
  type: z.literal("number"),
231
231
  value: z.number(),
@@ -275,7 +275,7 @@ export const RequestBody1$outboundSchema: z.ZodType<
275
275
  evaluationType: EvaluationType$outboundSchema,
276
276
  humanReviewId: z.string(),
277
277
  source: RequestBodySource$outboundSchema.default("orq"),
278
- reviewedAt: z.date().default(() => new Date("2026-05-12T08:59:06.105Z"))
278
+ reviewedAt: z.date().default(() => new Date("2026-05-12T11:10:24.601Z"))
279
279
  .transform(v => v.toISOString()),
280
280
  type: z.literal("string"),
281
281
  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-05-12T08:58:51.089Z",
274
+ "2026-05-12T11:10:09.376Z",
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-05-12T08:58:51.089Z",
319
+ "2026-05-12T11:10:09.376Z",
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-05-12T08:59:05.972Z",
1210
+ "2026-05-12T11:10:24.484Z",
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-05-12T08:59:05.972Z",
1258
+ "2026-05-12T11:10:24.484Z",
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-05-12T08:59:05.971Z",
1303
+ "2026-05-12T11:10:24.483Z",
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-05-12T08:58:51.089Z",
1380
+ "2026-05-12T11:10:09.376Z",
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-05-12T08:58:51.089Z",
129
+ "2026-05-12T11:10:09.376Z",
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("01KRDPJJS785Z16YJS7P9JZRE1"),
121
+ _id: z.string().default("01KRDY30M36D0YY2DAJ0ADXWFQ"),
122
122
  display_name: z.string(),
123
123
  description: z.string().optional(),
124
124
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -151,7 +151,7 @@ export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
151
151
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
152
152
  .optional(),
153
153
  updated: z.string().datetime({ offset: true }).default(
154
- "2026-05-12T08:58:51.089Z",
154
+ "2026-05-12T11:10:09.376Z",
155
155
  ).transform(v => new Date(v)),
156
156
  metrics: z.nullable(z.lazy(() => Metrics$inboundSchema)).optional(),
157
157
  }).transform((v) => {
@@ -753,7 +753,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
753
753
  z.ZodTypeDef,
754
754
  unknown
755
755
  > = z.object({
756
- _id: z.string().default("tool_01KRDPJJGKSXH5JKY9YZPEP4P4"),
756
+ _id: z.string().default("tool_01KRDY30428FKBJ910GWFNA5JW"),
757
757
  path: z.string(),
758
758
  key: z.string(),
759
759
  display_name: z.string().optional(),
@@ -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("01KRDPJJGDB840JHFHJ3VMMJQ5"),
862
+ id: z.string().default("01KRDY30414407DWSBGG5S7695"),
863
863
  name: z.string(),
864
864
  description: z.string().optional(),
865
865
  schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
@@ -917,7 +917,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
917
917
  z.ZodTypeDef,
918
918
  unknown
919
919
  > = z.object({
920
- _id: z.string().default("tool_01KRDPJJG6PWMG71HYYFDVHSYB"),
920
+ _id: z.string().default("tool_01KRDY3040FB5SF2G02JWDX9RW"),
921
921
  path: z.string(),
922
922
  key: z.string(),
923
923
  display_name: z.string().optional(),
@@ -1108,7 +1108,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
1108
1108
  z.ZodTypeDef,
1109
1109
  unknown
1110
1110
  > = z.object({
1111
- _id: z.string().default("tool_01KRDPJJFWRJNE3KHKHNNRPQP2"),
1111
+ _id: z.string().default("tool_01KRDY303Y87ERE0VVBWJ431V0"),
1112
1112
  path: z.string(),
1113
1113
  key: z.string(),
1114
1114
  display_name: z.string().optional(),
@@ -1204,7 +1204,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
1204
1204
  z.ZodTypeDef,
1205
1205
  unknown
1206
1206
  > = z.object({
1207
- _id: z.string().default("tool_01KRDPJJFSV7FXH5X7SEXYCJEF"),
1207
+ _id: z.string().default("tool_01KRDY303X8Z6AMWWQBDK6840C"),
1208
1208
  path: z.string(),
1209
1209
  key: z.string(),
1210
1210
  display_name: z.string().optional(),
@@ -1310,7 +1310,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
1310
1310
  z.ZodTypeDef,
1311
1311
  unknown
1312
1312
  > = z.object({
1313
- _id: z.string().default("tool_01KRDPJJFNZYVW6FMKFF6GPYPV"),
1313
+ _id: z.string().default("tool_01KRDY303VB59G3ACXH8RZ9MA1"),
1314
1314
  path: z.string(),
1315
1315
  key: z.string(),
1316
1316
  display_name: z.string().optional(),
@@ -3628,7 +3628,7 @@ export const Tools$outboundSchema: z.ZodType<
3628
3628
  z.ZodTypeDef,
3629
3629
  Tools
3630
3630
  > = z.object({
3631
- id: z.string().default("01KRDPJHWB20853T9W8G3VY274"),
3631
+ id: z.string().default("01KRDY2ZQXVPW22FXW47HRMDA1"),
3632
3632
  name: z.string(),
3633
3633
  description: z.string().optional(),
3634
3634
  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("01KRDPJHXY01VD3H3P199HSAVJ"),
3678
+ id: z.string().default("01KRDY2ZSGEAETPMEMDPX0ZNP4"),
3679
3679
  name: z.string(),
3680
3680
  description: z.string().optional(),
3681
3681
  schema: z.lazy(() =>
@@ -2358,7 +2358,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
2358
2358
  .default("orq"),
2359
2359
  reviewed_by_id: z.string(),
2360
2360
  reviewed_at: z.string().datetime({ offset: true }).default(
2361
- "2026-05-12T08:59:05.998Z",
2361
+ "2026-05-12T11:10:24.509Z",
2362
2362
  ).transform(v => new Date(v)),
2363
2363
  type: z.literal("string_array"),
2364
2364
  values: z.array(z.string()),
@@ -2404,7 +2404,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
2404
2404
  source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
2405
2405
  reviewed_by_id: z.string(),
2406
2406
  reviewed_at: z.string().datetime({ offset: true }).default(
2407
- "2026-05-12T08:59:05.997Z",
2407
+ "2026-05-12T11:10:24.509Z",
2408
2408
  ).transform(v => new Date(v)),
2409
2409
  type: z.literal("number"),
2410
2410
  value: z.number(),
@@ -2449,7 +2449,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
2449
2449
  source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
2450
2450
  reviewed_by_id: z.string(),
2451
2451
  reviewed_at: z.string().datetime({ offset: true }).default(
2452
- "2026-05-12T08:59:05.997Z",
2452
+ "2026-05-12T11:10:24.508Z",
2453
2453
  ).transform(v => new Date(v)),
2454
2454
  type: z.literal("string"),
2455
2455
  value: z.string(),
@@ -2530,7 +2530,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
2530
2530
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2531
2531
  .optional(),
2532
2532
  updated: z.string().datetime({ offset: true }).default(
2533
- "2026-05-12T08:58:51.089Z",
2533
+ "2026-05-12T11:10:09.376Z",
2534
2534
  ).transform(v => new Date(v)),
2535
2535
  }).transform((v) => {
2536
2536
  return remap$(v, {