@orq-ai/node 3.9.12 → 3.9.14

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 (90) hide show
  1. package/bin/mcp-server.js +104 -104
  2. package/bin/mcp-server.js.map +28 -28
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/lib/event-streams.d.ts +1 -1
  8. package/lib/event-streams.d.ts.map +1 -1
  9. package/mcp-server/mcp-server.js +1 -1
  10. package/mcp-server/server.js +1 -1
  11. package/models/operations/createcontact.js +2 -2
  12. package/models/operations/createdataset.js +2 -2
  13. package/models/operations/createdatasetitem.js +2 -2
  14. package/models/operations/createdatasource.js +2 -2
  15. package/models/operations/createeval.js +16 -16
  16. package/models/operations/fileget.js +2 -2
  17. package/models/operations/filelist.js +2 -2
  18. package/models/operations/fileupload.js +2 -2
  19. package/models/operations/getevals.js +28 -28
  20. package/models/operations/listcontacts.js +2 -2
  21. package/models/operations/listdatasetdatapoints.js +2 -2
  22. package/models/operations/listdatasets.js +2 -2
  23. package/models/operations/listdatasources.js +2 -2
  24. package/models/operations/retrievecontact.js +2 -2
  25. package/models/operations/retrievedatapoint.js +2 -2
  26. package/models/operations/retrievedataset.js +2 -2
  27. package/models/operations/retrievedatasource.js +2 -2
  28. package/models/operations/updatecontact.js +2 -2
  29. package/models/operations/updatedatapoint.js +2 -2
  30. package/models/operations/updatedataset.js +2 -2
  31. package/models/operations/updatedatasource.js +2 -2
  32. package/models/operations/updateeval.js +16 -16
  33. package/package.json +1 -1
  34. package/packages/orq-rc/examples/package-lock.json +2 -2
  35. package/packages/orq-rc/jsr.json +1 -1
  36. package/packages/orq-rc/package-lock.json +3 -3
  37. package/packages/orq-rc/package.json +2 -2
  38. package/packages/orq-rc/src/lib/config.ts +3 -3
  39. package/packages/orq-rc/src/lib/event-streams.ts +1 -1
  40. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  41. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  42. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  44. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  45. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  46. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  47. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  48. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  49. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  50. package/packages/orq-rc/src/models/operations/getevals.ts +1159 -32
  51. package/packages/orq-rc/src/models/operations/invokeeval.ts +8 -8
  52. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  53. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  56. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  57. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  59. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  60. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  61. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  62. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  63. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  64. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  65. package/src/lib/config.ts +3 -3
  66. package/src/lib/event-streams.ts +1 -1
  67. package/src/mcp-server/mcp-server.ts +1 -1
  68. package/src/mcp-server/server.ts +1 -1
  69. package/src/models/operations/createcontact.ts +2 -2
  70. package/src/models/operations/createdataset.ts +2 -2
  71. package/src/models/operations/createdatasetitem.ts +2 -2
  72. package/src/models/operations/createdatasource.ts +2 -2
  73. package/src/models/operations/createeval.ts +16 -16
  74. package/src/models/operations/fileget.ts +2 -2
  75. package/src/models/operations/filelist.ts +2 -2
  76. package/src/models/operations/fileupload.ts +2 -2
  77. package/src/models/operations/getevals.ts +28 -28
  78. package/src/models/operations/listcontacts.ts +2 -2
  79. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  80. package/src/models/operations/listdatasets.ts +2 -2
  81. package/src/models/operations/listdatasources.ts +2 -2
  82. package/src/models/operations/retrievecontact.ts +2 -2
  83. package/src/models/operations/retrievedatapoint.ts +2 -2
  84. package/src/models/operations/retrievedataset.ts +2 -2
  85. package/src/models/operations/retrievedatasource.ts +2 -2
  86. package/src/models/operations/updatecontact.ts +2 -2
  87. package/src/models/operations/updatedatapoint.ts +2 -2
  88. package/src/models/operations/updatedataset.ts +2 -2
  89. package/src/models/operations/updatedatasource.ts +2 -2
  90. package/src/models/operations/updateeval.ts +16 -16
@@ -244,6 +244,162 @@ export type GetEvalsDataEvalsResponse200Type = ClosedEnum<
244
244
  typeof GetEvalsDataEvalsResponse200Type
245
245
  >;
246
246
 
247
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type =
248
+ {
249
+ BertCoherence: "bert_coherence",
250
+ } as const;
251
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type =
252
+ ClosedEnum<
253
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type
254
+ >;
255
+
256
+ export type ThirtyFive = {
257
+ type:
258
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type;
259
+ };
260
+
261
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type =
262
+ {
263
+ GrammarDiversity: "grammar_diversity",
264
+ } as const;
265
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type =
266
+ ClosedEnum<
267
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type
268
+ >;
269
+
270
+ export type ThirtyFour = {
271
+ type:
272
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type;
273
+ };
274
+
275
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type =
276
+ {
277
+ SemanticRepetition: "semantic_repetition",
278
+ } as const;
279
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type =
280
+ ClosedEnum<
281
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type
282
+ >;
283
+
284
+ export type ThirtyThree = {
285
+ type:
286
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type;
287
+ };
288
+
289
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type =
290
+ {
291
+ LexicalRepetition: "lexical_repetition",
292
+ } as const;
293
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type =
294
+ ClosedEnum<
295
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type
296
+ >;
297
+
298
+ export type ThirtyTwo = {
299
+ type:
300
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type;
301
+ };
302
+
303
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type =
304
+ {
305
+ SentencesCount: "sentences_count",
306
+ } as const;
307
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type =
308
+ ClosedEnum<
309
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type
310
+ >;
311
+
312
+ export type ThirtyOne = {
313
+ type:
314
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type;
315
+ };
316
+
317
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type =
318
+ {
319
+ WordsCount: "words_count",
320
+ } as const;
321
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type =
322
+ ClosedEnum<
323
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type
324
+ >;
325
+
326
+ export type Thirty = {
327
+ type:
328
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type;
329
+ };
330
+
331
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type =
332
+ {
333
+ GseEnglishLevel: "gse_english_level",
334
+ } as const;
335
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type =
336
+ ClosedEnum<
337
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type
338
+ >;
339
+
340
+ export type TwentyNine = {
341
+ type:
342
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type;
343
+ };
344
+
345
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type =
346
+ {
347
+ FleschReadingEase: "flesch_reading_ease",
348
+ } as const;
349
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type =
350
+ ClosedEnum<
351
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type
352
+ >;
353
+
354
+ export type TwentyEight = {
355
+ type:
356
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type;
357
+ };
358
+
359
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type =
360
+ {
361
+ MostRepeatedWords: "most_repeated_words",
362
+ } as const;
363
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type =
364
+ ClosedEnum<
365
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type
366
+ >;
367
+
368
+ export type TwentySeven = {
369
+ type:
370
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type;
371
+ };
372
+
373
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type =
374
+ {
375
+ KeywordsMatch: "keywords_match",
376
+ } as const;
377
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type =
378
+ ClosedEnum<
379
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type
380
+ >;
381
+
382
+ export type TwentySix = {
383
+ type:
384
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type;
385
+ keywords: Array<string>;
386
+ };
387
+
388
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type =
389
+ {
390
+ TopicMatch: "topic_match",
391
+ } as const;
392
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type =
393
+ ClosedEnum<
394
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type
395
+ >;
396
+
397
+ export type TwentyFive = {
398
+ type:
399
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type;
400
+ topic: string;
401
+ };
402
+
247
403
  export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData524Type =
248
404
  {
249
405
  LevenshteinDistance: "levenshtein_distance",
@@ -580,6 +736,8 @@ export type DataFunctionParams =
580
736
  | Eleven
581
737
  | Thirteen
582
738
  | Fifteen
739
+ | TwentyFive
740
+ | TwentySix
583
741
  | Five
584
742
  | Six
585
743
  | Seven
@@ -593,7 +751,16 @@ export type DataFunctionParams =
593
751
  | TwentyOne
594
752
  | TwentyTwo
595
753
  | TwentyThree
596
- | TwentyFour;
754
+ | TwentyFour
755
+ | TwentySeven
756
+ | TwentyEight
757
+ | TwentyNine
758
+ | Thirty
759
+ | ThirtyOne
760
+ | ThirtyTwo
761
+ | ThirtyThree
762
+ | ThirtyFour
763
+ | ThirtyFive;
597
764
 
598
765
  export type DataFunction = {
599
766
  id: string;
@@ -616,6 +783,8 @@ export type DataFunction = {
616
783
  | Eleven
617
784
  | Thirteen
618
785
  | Fifteen
786
+ | TwentyFive
787
+ | TwentySix
619
788
  | Five
620
789
  | Six
621
790
  | Seven
@@ -629,7 +798,16 @@ export type DataFunction = {
629
798
  | TwentyOne
630
799
  | TwentyTwo
631
800
  | TwentyThree
632
- | TwentyFour;
801
+ | TwentyFour
802
+ | TwentySeven
803
+ | TwentyEight
804
+ | TwentyNine
805
+ | Thirty
806
+ | ThirtyOne
807
+ | ThirtyTwo
808
+ | ThirtyThree
809
+ | ThirtyFour
810
+ | ThirtyFive;
633
811
  key: string;
634
812
  };
635
813
 
@@ -1373,8 +1551,8 @@ export const Typescript$inboundSchema: z.ZodType<
1373
1551
  > = z.object({
1374
1552
  _id: z.string(),
1375
1553
  description: z.string(),
1376
- created: z.string().default("2025-07-08T10:06:07.416Z"),
1377
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
1554
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
1555
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
1378
1556
  guardrail_config: z.union([
1379
1557
  z.lazy(() =>
1380
1558
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -1417,8 +1595,8 @@ export const Typescript$outboundSchema: z.ZodType<
1417
1595
  > = z.object({
1418
1596
  id: z.string(),
1419
1597
  description: z.string(),
1420
- created: z.string().default("2025-07-08T10:06:07.416Z"),
1421
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
1598
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
1599
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
1422
1600
  guardrailConfig: z.union([
1423
1601
  z.lazy(() =>
1424
1602
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -1814,8 +1992,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
1814
1992
  .object({
1815
1993
  _id: z.string(),
1816
1994
  description: z.string(),
1817
- created: z.string().default("2025-07-08T10:06:07.416Z"),
1818
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
1995
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
1996
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
1819
1997
  guardrail_config: z.union([
1820
1998
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
1821
1999
  z.lazy(() =>
@@ -1858,8 +2036,8 @@ export const Ragas$outboundSchema: z.ZodType<
1858
2036
  > = z.object({
1859
2037
  id: z.string(),
1860
2038
  description: z.string(),
1861
- created: z.string().default("2025-07-08T10:06:07.416Z"),
1862
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
2039
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
2040
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
1863
2041
  guardrailConfig: z.union([
1864
2042
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
1865
2043
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
@@ -2220,6 +2398,889 @@ export namespace GetEvalsDataEvalsResponse200Type$ {
2220
2398
  export const outboundSchema = GetEvalsDataEvalsResponse200Type$outboundSchema;
2221
2399
  }
2222
2400
 
2401
+ /** @internal */
2402
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$inboundSchema:
2403
+ z.ZodNativeEnum<
2404
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type
2405
+ > = z.nativeEnum(
2406
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type,
2407
+ );
2408
+
2409
+ /** @internal */
2410
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$outboundSchema:
2411
+ z.ZodNativeEnum<
2412
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type
2413
+ > =
2414
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$inboundSchema;
2415
+
2416
+ /**
2417
+ * @internal
2418
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2419
+ */
2420
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$ {
2421
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$inboundSchema` instead. */
2422
+ export const inboundSchema =
2423
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$inboundSchema;
2424
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$outboundSchema` instead. */
2425
+ export const outboundSchema =
2426
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$outboundSchema;
2427
+ }
2428
+
2429
+ /** @internal */
2430
+ export const ThirtyFive$inboundSchema: z.ZodType<
2431
+ ThirtyFive,
2432
+ z.ZodTypeDef,
2433
+ unknown
2434
+ > = z.object({
2435
+ type:
2436
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$inboundSchema,
2437
+ });
2438
+
2439
+ /** @internal */
2440
+ export type ThirtyFive$Outbound = {
2441
+ type: string;
2442
+ };
2443
+
2444
+ /** @internal */
2445
+ export const ThirtyFive$outboundSchema: z.ZodType<
2446
+ ThirtyFive$Outbound,
2447
+ z.ZodTypeDef,
2448
+ ThirtyFive
2449
+ > = z.object({
2450
+ type:
2451
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$outboundSchema,
2452
+ });
2453
+
2454
+ /**
2455
+ * @internal
2456
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2457
+ */
2458
+ export namespace ThirtyFive$ {
2459
+ /** @deprecated use `ThirtyFive$inboundSchema` instead. */
2460
+ export const inboundSchema = ThirtyFive$inboundSchema;
2461
+ /** @deprecated use `ThirtyFive$outboundSchema` instead. */
2462
+ export const outboundSchema = ThirtyFive$outboundSchema;
2463
+ /** @deprecated use `ThirtyFive$Outbound` instead. */
2464
+ export type Outbound = ThirtyFive$Outbound;
2465
+ }
2466
+
2467
+ export function thirtyFiveToJSON(thirtyFive: ThirtyFive): string {
2468
+ return JSON.stringify(ThirtyFive$outboundSchema.parse(thirtyFive));
2469
+ }
2470
+
2471
+ export function thirtyFiveFromJSON(
2472
+ jsonString: string,
2473
+ ): SafeParseResult<ThirtyFive, SDKValidationError> {
2474
+ return safeParse(
2475
+ jsonString,
2476
+ (x) => ThirtyFive$inboundSchema.parse(JSON.parse(x)),
2477
+ `Failed to parse 'ThirtyFive' from JSON`,
2478
+ );
2479
+ }
2480
+
2481
+ /** @internal */
2482
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$inboundSchema:
2483
+ z.ZodNativeEnum<
2484
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type
2485
+ > = z.nativeEnum(
2486
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type,
2487
+ );
2488
+
2489
+ /** @internal */
2490
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$outboundSchema:
2491
+ z.ZodNativeEnum<
2492
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type
2493
+ > =
2494
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$inboundSchema;
2495
+
2496
+ /**
2497
+ * @internal
2498
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2499
+ */
2500
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$ {
2501
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$inboundSchema` instead. */
2502
+ export const inboundSchema =
2503
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$inboundSchema;
2504
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$outboundSchema` instead. */
2505
+ export const outboundSchema =
2506
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$outboundSchema;
2507
+ }
2508
+
2509
+ /** @internal */
2510
+ export const ThirtyFour$inboundSchema: z.ZodType<
2511
+ ThirtyFour,
2512
+ z.ZodTypeDef,
2513
+ unknown
2514
+ > = z.object({
2515
+ type:
2516
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$inboundSchema,
2517
+ });
2518
+
2519
+ /** @internal */
2520
+ export type ThirtyFour$Outbound = {
2521
+ type: string;
2522
+ };
2523
+
2524
+ /** @internal */
2525
+ export const ThirtyFour$outboundSchema: z.ZodType<
2526
+ ThirtyFour$Outbound,
2527
+ z.ZodTypeDef,
2528
+ ThirtyFour
2529
+ > = z.object({
2530
+ type:
2531
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$outboundSchema,
2532
+ });
2533
+
2534
+ /**
2535
+ * @internal
2536
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2537
+ */
2538
+ export namespace ThirtyFour$ {
2539
+ /** @deprecated use `ThirtyFour$inboundSchema` instead. */
2540
+ export const inboundSchema = ThirtyFour$inboundSchema;
2541
+ /** @deprecated use `ThirtyFour$outboundSchema` instead. */
2542
+ export const outboundSchema = ThirtyFour$outboundSchema;
2543
+ /** @deprecated use `ThirtyFour$Outbound` instead. */
2544
+ export type Outbound = ThirtyFour$Outbound;
2545
+ }
2546
+
2547
+ export function thirtyFourToJSON(thirtyFour: ThirtyFour): string {
2548
+ return JSON.stringify(ThirtyFour$outboundSchema.parse(thirtyFour));
2549
+ }
2550
+
2551
+ export function thirtyFourFromJSON(
2552
+ jsonString: string,
2553
+ ): SafeParseResult<ThirtyFour, SDKValidationError> {
2554
+ return safeParse(
2555
+ jsonString,
2556
+ (x) => ThirtyFour$inboundSchema.parse(JSON.parse(x)),
2557
+ `Failed to parse 'ThirtyFour' from JSON`,
2558
+ );
2559
+ }
2560
+
2561
+ /** @internal */
2562
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$inboundSchema:
2563
+ z.ZodNativeEnum<
2564
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type
2565
+ > = z.nativeEnum(
2566
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type,
2567
+ );
2568
+
2569
+ /** @internal */
2570
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$outboundSchema:
2571
+ z.ZodNativeEnum<
2572
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type
2573
+ > =
2574
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$inboundSchema;
2575
+
2576
+ /**
2577
+ * @internal
2578
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2579
+ */
2580
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$ {
2581
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$inboundSchema` instead. */
2582
+ export const inboundSchema =
2583
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$inboundSchema;
2584
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$outboundSchema` instead. */
2585
+ export const outboundSchema =
2586
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$outboundSchema;
2587
+ }
2588
+
2589
+ /** @internal */
2590
+ export const ThirtyThree$inboundSchema: z.ZodType<
2591
+ ThirtyThree,
2592
+ z.ZodTypeDef,
2593
+ unknown
2594
+ > = z.object({
2595
+ type:
2596
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$inboundSchema,
2597
+ });
2598
+
2599
+ /** @internal */
2600
+ export type ThirtyThree$Outbound = {
2601
+ type: string;
2602
+ };
2603
+
2604
+ /** @internal */
2605
+ export const ThirtyThree$outboundSchema: z.ZodType<
2606
+ ThirtyThree$Outbound,
2607
+ z.ZodTypeDef,
2608
+ ThirtyThree
2609
+ > = z.object({
2610
+ type:
2611
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$outboundSchema,
2612
+ });
2613
+
2614
+ /**
2615
+ * @internal
2616
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2617
+ */
2618
+ export namespace ThirtyThree$ {
2619
+ /** @deprecated use `ThirtyThree$inboundSchema` instead. */
2620
+ export const inboundSchema = ThirtyThree$inboundSchema;
2621
+ /** @deprecated use `ThirtyThree$outboundSchema` instead. */
2622
+ export const outboundSchema = ThirtyThree$outboundSchema;
2623
+ /** @deprecated use `ThirtyThree$Outbound` instead. */
2624
+ export type Outbound = ThirtyThree$Outbound;
2625
+ }
2626
+
2627
+ export function thirtyThreeToJSON(thirtyThree: ThirtyThree): string {
2628
+ return JSON.stringify(ThirtyThree$outboundSchema.parse(thirtyThree));
2629
+ }
2630
+
2631
+ export function thirtyThreeFromJSON(
2632
+ jsonString: string,
2633
+ ): SafeParseResult<ThirtyThree, SDKValidationError> {
2634
+ return safeParse(
2635
+ jsonString,
2636
+ (x) => ThirtyThree$inboundSchema.parse(JSON.parse(x)),
2637
+ `Failed to parse 'ThirtyThree' from JSON`,
2638
+ );
2639
+ }
2640
+
2641
+ /** @internal */
2642
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$inboundSchema:
2643
+ z.ZodNativeEnum<
2644
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type
2645
+ > = z.nativeEnum(
2646
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type,
2647
+ );
2648
+
2649
+ /** @internal */
2650
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$outboundSchema:
2651
+ z.ZodNativeEnum<
2652
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type
2653
+ > =
2654
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$inboundSchema;
2655
+
2656
+ /**
2657
+ * @internal
2658
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2659
+ */
2660
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$ {
2661
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$inboundSchema` instead. */
2662
+ export const inboundSchema =
2663
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$inboundSchema;
2664
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$outboundSchema` instead. */
2665
+ export const outboundSchema =
2666
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$outboundSchema;
2667
+ }
2668
+
2669
+ /** @internal */
2670
+ export const ThirtyTwo$inboundSchema: z.ZodType<
2671
+ ThirtyTwo,
2672
+ z.ZodTypeDef,
2673
+ unknown
2674
+ > = z.object({
2675
+ type:
2676
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$inboundSchema,
2677
+ });
2678
+
2679
+ /** @internal */
2680
+ export type ThirtyTwo$Outbound = {
2681
+ type: string;
2682
+ };
2683
+
2684
+ /** @internal */
2685
+ export const ThirtyTwo$outboundSchema: z.ZodType<
2686
+ ThirtyTwo$Outbound,
2687
+ z.ZodTypeDef,
2688
+ ThirtyTwo
2689
+ > = z.object({
2690
+ type:
2691
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$outboundSchema,
2692
+ });
2693
+
2694
+ /**
2695
+ * @internal
2696
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2697
+ */
2698
+ export namespace ThirtyTwo$ {
2699
+ /** @deprecated use `ThirtyTwo$inboundSchema` instead. */
2700
+ export const inboundSchema = ThirtyTwo$inboundSchema;
2701
+ /** @deprecated use `ThirtyTwo$outboundSchema` instead. */
2702
+ export const outboundSchema = ThirtyTwo$outboundSchema;
2703
+ /** @deprecated use `ThirtyTwo$Outbound` instead. */
2704
+ export type Outbound = ThirtyTwo$Outbound;
2705
+ }
2706
+
2707
+ export function thirtyTwoToJSON(thirtyTwo: ThirtyTwo): string {
2708
+ return JSON.stringify(ThirtyTwo$outboundSchema.parse(thirtyTwo));
2709
+ }
2710
+
2711
+ export function thirtyTwoFromJSON(
2712
+ jsonString: string,
2713
+ ): SafeParseResult<ThirtyTwo, SDKValidationError> {
2714
+ return safeParse(
2715
+ jsonString,
2716
+ (x) => ThirtyTwo$inboundSchema.parse(JSON.parse(x)),
2717
+ `Failed to parse 'ThirtyTwo' from JSON`,
2718
+ );
2719
+ }
2720
+
2721
+ /** @internal */
2722
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$inboundSchema:
2723
+ z.ZodNativeEnum<
2724
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type
2725
+ > = z.nativeEnum(
2726
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type,
2727
+ );
2728
+
2729
+ /** @internal */
2730
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$outboundSchema:
2731
+ z.ZodNativeEnum<
2732
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type
2733
+ > =
2734
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$inboundSchema;
2735
+
2736
+ /**
2737
+ * @internal
2738
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2739
+ */
2740
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$ {
2741
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$inboundSchema` instead. */
2742
+ export const inboundSchema =
2743
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$inboundSchema;
2744
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$outboundSchema` instead. */
2745
+ export const outboundSchema =
2746
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$outboundSchema;
2747
+ }
2748
+
2749
+ /** @internal */
2750
+ export const ThirtyOne$inboundSchema: z.ZodType<
2751
+ ThirtyOne,
2752
+ z.ZodTypeDef,
2753
+ unknown
2754
+ > = z.object({
2755
+ type:
2756
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$inboundSchema,
2757
+ });
2758
+
2759
+ /** @internal */
2760
+ export type ThirtyOne$Outbound = {
2761
+ type: string;
2762
+ };
2763
+
2764
+ /** @internal */
2765
+ export const ThirtyOne$outboundSchema: z.ZodType<
2766
+ ThirtyOne$Outbound,
2767
+ z.ZodTypeDef,
2768
+ ThirtyOne
2769
+ > = z.object({
2770
+ type:
2771
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$outboundSchema,
2772
+ });
2773
+
2774
+ /**
2775
+ * @internal
2776
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2777
+ */
2778
+ export namespace ThirtyOne$ {
2779
+ /** @deprecated use `ThirtyOne$inboundSchema` instead. */
2780
+ export const inboundSchema = ThirtyOne$inboundSchema;
2781
+ /** @deprecated use `ThirtyOne$outboundSchema` instead. */
2782
+ export const outboundSchema = ThirtyOne$outboundSchema;
2783
+ /** @deprecated use `ThirtyOne$Outbound` instead. */
2784
+ export type Outbound = ThirtyOne$Outbound;
2785
+ }
2786
+
2787
+ export function thirtyOneToJSON(thirtyOne: ThirtyOne): string {
2788
+ return JSON.stringify(ThirtyOne$outboundSchema.parse(thirtyOne));
2789
+ }
2790
+
2791
+ export function thirtyOneFromJSON(
2792
+ jsonString: string,
2793
+ ): SafeParseResult<ThirtyOne, SDKValidationError> {
2794
+ return safeParse(
2795
+ jsonString,
2796
+ (x) => ThirtyOne$inboundSchema.parse(JSON.parse(x)),
2797
+ `Failed to parse 'ThirtyOne' from JSON`,
2798
+ );
2799
+ }
2800
+
2801
+ /** @internal */
2802
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema:
2803
+ z.ZodNativeEnum<
2804
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type
2805
+ > = z.nativeEnum(
2806
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type,
2807
+ );
2808
+
2809
+ /** @internal */
2810
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$outboundSchema:
2811
+ z.ZodNativeEnum<
2812
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type
2813
+ > =
2814
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema;
2815
+
2816
+ /**
2817
+ * @internal
2818
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2819
+ */
2820
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$ {
2821
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema` instead. */
2822
+ export const inboundSchema =
2823
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema;
2824
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$outboundSchema` instead. */
2825
+ export const outboundSchema =
2826
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$outboundSchema;
2827
+ }
2828
+
2829
+ /** @internal */
2830
+ export const Thirty$inboundSchema: z.ZodType<Thirty, z.ZodTypeDef, unknown> = z
2831
+ .object({
2832
+ type:
2833
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema,
2834
+ });
2835
+
2836
+ /** @internal */
2837
+ export type Thirty$Outbound = {
2838
+ type: string;
2839
+ };
2840
+
2841
+ /** @internal */
2842
+ export const Thirty$outboundSchema: z.ZodType<
2843
+ Thirty$Outbound,
2844
+ z.ZodTypeDef,
2845
+ Thirty
2846
+ > = z.object({
2847
+ type:
2848
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$outboundSchema,
2849
+ });
2850
+
2851
+ /**
2852
+ * @internal
2853
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2854
+ */
2855
+ export namespace Thirty$ {
2856
+ /** @deprecated use `Thirty$inboundSchema` instead. */
2857
+ export const inboundSchema = Thirty$inboundSchema;
2858
+ /** @deprecated use `Thirty$outboundSchema` instead. */
2859
+ export const outboundSchema = Thirty$outboundSchema;
2860
+ /** @deprecated use `Thirty$Outbound` instead. */
2861
+ export type Outbound = Thirty$Outbound;
2862
+ }
2863
+
2864
+ export function thirtyToJSON(thirty: Thirty): string {
2865
+ return JSON.stringify(Thirty$outboundSchema.parse(thirty));
2866
+ }
2867
+
2868
+ export function thirtyFromJSON(
2869
+ jsonString: string,
2870
+ ): SafeParseResult<Thirty, SDKValidationError> {
2871
+ return safeParse(
2872
+ jsonString,
2873
+ (x) => Thirty$inboundSchema.parse(JSON.parse(x)),
2874
+ `Failed to parse 'Thirty' from JSON`,
2875
+ );
2876
+ }
2877
+
2878
+ /** @internal */
2879
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$inboundSchema:
2880
+ z.ZodNativeEnum<
2881
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type
2882
+ > = z.nativeEnum(
2883
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type,
2884
+ );
2885
+
2886
+ /** @internal */
2887
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$outboundSchema:
2888
+ z.ZodNativeEnum<
2889
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type
2890
+ > =
2891
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$inboundSchema;
2892
+
2893
+ /**
2894
+ * @internal
2895
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2896
+ */
2897
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$ {
2898
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$inboundSchema` instead. */
2899
+ export const inboundSchema =
2900
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$inboundSchema;
2901
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$outboundSchema` instead. */
2902
+ export const outboundSchema =
2903
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$outboundSchema;
2904
+ }
2905
+
2906
+ /** @internal */
2907
+ export const TwentyNine$inboundSchema: z.ZodType<
2908
+ TwentyNine,
2909
+ z.ZodTypeDef,
2910
+ unknown
2911
+ > = z.object({
2912
+ type:
2913
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$inboundSchema,
2914
+ });
2915
+
2916
+ /** @internal */
2917
+ export type TwentyNine$Outbound = {
2918
+ type: string;
2919
+ };
2920
+
2921
+ /** @internal */
2922
+ export const TwentyNine$outboundSchema: z.ZodType<
2923
+ TwentyNine$Outbound,
2924
+ z.ZodTypeDef,
2925
+ TwentyNine
2926
+ > = z.object({
2927
+ type:
2928
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$outboundSchema,
2929
+ });
2930
+
2931
+ /**
2932
+ * @internal
2933
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2934
+ */
2935
+ export namespace TwentyNine$ {
2936
+ /** @deprecated use `TwentyNine$inboundSchema` instead. */
2937
+ export const inboundSchema = TwentyNine$inboundSchema;
2938
+ /** @deprecated use `TwentyNine$outboundSchema` instead. */
2939
+ export const outboundSchema = TwentyNine$outboundSchema;
2940
+ /** @deprecated use `TwentyNine$Outbound` instead. */
2941
+ export type Outbound = TwentyNine$Outbound;
2942
+ }
2943
+
2944
+ export function twentyNineToJSON(twentyNine: TwentyNine): string {
2945
+ return JSON.stringify(TwentyNine$outboundSchema.parse(twentyNine));
2946
+ }
2947
+
2948
+ export function twentyNineFromJSON(
2949
+ jsonString: string,
2950
+ ): SafeParseResult<TwentyNine, SDKValidationError> {
2951
+ return safeParse(
2952
+ jsonString,
2953
+ (x) => TwentyNine$inboundSchema.parse(JSON.parse(x)),
2954
+ `Failed to parse 'TwentyNine' from JSON`,
2955
+ );
2956
+ }
2957
+
2958
+ /** @internal */
2959
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$inboundSchema:
2960
+ z.ZodNativeEnum<
2961
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type
2962
+ > = z.nativeEnum(
2963
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type,
2964
+ );
2965
+
2966
+ /** @internal */
2967
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$outboundSchema:
2968
+ z.ZodNativeEnum<
2969
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type
2970
+ > =
2971
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$inboundSchema;
2972
+
2973
+ /**
2974
+ * @internal
2975
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2976
+ */
2977
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$ {
2978
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$inboundSchema` instead. */
2979
+ export const inboundSchema =
2980
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$inboundSchema;
2981
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$outboundSchema` instead. */
2982
+ export const outboundSchema =
2983
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$outboundSchema;
2984
+ }
2985
+
2986
+ /** @internal */
2987
+ export const TwentyEight$inboundSchema: z.ZodType<
2988
+ TwentyEight,
2989
+ z.ZodTypeDef,
2990
+ unknown
2991
+ > = z.object({
2992
+ type:
2993
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$inboundSchema,
2994
+ });
2995
+
2996
+ /** @internal */
2997
+ export type TwentyEight$Outbound = {
2998
+ type: string;
2999
+ };
3000
+
3001
+ /** @internal */
3002
+ export const TwentyEight$outboundSchema: z.ZodType<
3003
+ TwentyEight$Outbound,
3004
+ z.ZodTypeDef,
3005
+ TwentyEight
3006
+ > = z.object({
3007
+ type:
3008
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$outboundSchema,
3009
+ });
3010
+
3011
+ /**
3012
+ * @internal
3013
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3014
+ */
3015
+ export namespace TwentyEight$ {
3016
+ /** @deprecated use `TwentyEight$inboundSchema` instead. */
3017
+ export const inboundSchema = TwentyEight$inboundSchema;
3018
+ /** @deprecated use `TwentyEight$outboundSchema` instead. */
3019
+ export const outboundSchema = TwentyEight$outboundSchema;
3020
+ /** @deprecated use `TwentyEight$Outbound` instead. */
3021
+ export type Outbound = TwentyEight$Outbound;
3022
+ }
3023
+
3024
+ export function twentyEightToJSON(twentyEight: TwentyEight): string {
3025
+ return JSON.stringify(TwentyEight$outboundSchema.parse(twentyEight));
3026
+ }
3027
+
3028
+ export function twentyEightFromJSON(
3029
+ jsonString: string,
3030
+ ): SafeParseResult<TwentyEight, SDKValidationError> {
3031
+ return safeParse(
3032
+ jsonString,
3033
+ (x) => TwentyEight$inboundSchema.parse(JSON.parse(x)),
3034
+ `Failed to parse 'TwentyEight' from JSON`,
3035
+ );
3036
+ }
3037
+
3038
+ /** @internal */
3039
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$inboundSchema:
3040
+ z.ZodNativeEnum<
3041
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type
3042
+ > = z.nativeEnum(
3043
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type,
3044
+ );
3045
+
3046
+ /** @internal */
3047
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$outboundSchema:
3048
+ z.ZodNativeEnum<
3049
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type
3050
+ > =
3051
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$inboundSchema;
3052
+
3053
+ /**
3054
+ * @internal
3055
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3056
+ */
3057
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$ {
3058
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$inboundSchema` instead. */
3059
+ export const inboundSchema =
3060
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$inboundSchema;
3061
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$outboundSchema` instead. */
3062
+ export const outboundSchema =
3063
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$outboundSchema;
3064
+ }
3065
+
3066
+ /** @internal */
3067
+ export const TwentySeven$inboundSchema: z.ZodType<
3068
+ TwentySeven,
3069
+ z.ZodTypeDef,
3070
+ unknown
3071
+ > = z.object({
3072
+ type:
3073
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$inboundSchema,
3074
+ });
3075
+
3076
+ /** @internal */
3077
+ export type TwentySeven$Outbound = {
3078
+ type: string;
3079
+ };
3080
+
3081
+ /** @internal */
3082
+ export const TwentySeven$outboundSchema: z.ZodType<
3083
+ TwentySeven$Outbound,
3084
+ z.ZodTypeDef,
3085
+ TwentySeven
3086
+ > = z.object({
3087
+ type:
3088
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$outboundSchema,
3089
+ });
3090
+
3091
+ /**
3092
+ * @internal
3093
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3094
+ */
3095
+ export namespace TwentySeven$ {
3096
+ /** @deprecated use `TwentySeven$inboundSchema` instead. */
3097
+ export const inboundSchema = TwentySeven$inboundSchema;
3098
+ /** @deprecated use `TwentySeven$outboundSchema` instead. */
3099
+ export const outboundSchema = TwentySeven$outboundSchema;
3100
+ /** @deprecated use `TwentySeven$Outbound` instead. */
3101
+ export type Outbound = TwentySeven$Outbound;
3102
+ }
3103
+
3104
+ export function twentySevenToJSON(twentySeven: TwentySeven): string {
3105
+ return JSON.stringify(TwentySeven$outboundSchema.parse(twentySeven));
3106
+ }
3107
+
3108
+ export function twentySevenFromJSON(
3109
+ jsonString: string,
3110
+ ): SafeParseResult<TwentySeven, SDKValidationError> {
3111
+ return safeParse(
3112
+ jsonString,
3113
+ (x) => TwentySeven$inboundSchema.parse(JSON.parse(x)),
3114
+ `Failed to parse 'TwentySeven' from JSON`,
3115
+ );
3116
+ }
3117
+
3118
+ /** @internal */
3119
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$inboundSchema:
3120
+ z.ZodNativeEnum<
3121
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type
3122
+ > = z.nativeEnum(
3123
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type,
3124
+ );
3125
+
3126
+ /** @internal */
3127
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$outboundSchema:
3128
+ z.ZodNativeEnum<
3129
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type
3130
+ > =
3131
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$inboundSchema;
3132
+
3133
+ /**
3134
+ * @internal
3135
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3136
+ */
3137
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$ {
3138
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$inboundSchema` instead. */
3139
+ export const inboundSchema =
3140
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$inboundSchema;
3141
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$outboundSchema` instead. */
3142
+ export const outboundSchema =
3143
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$outboundSchema;
3144
+ }
3145
+
3146
+ /** @internal */
3147
+ export const TwentySix$inboundSchema: z.ZodType<
3148
+ TwentySix,
3149
+ z.ZodTypeDef,
3150
+ unknown
3151
+ > = z.object({
3152
+ type:
3153
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$inboundSchema,
3154
+ keywords: z.array(z.string()),
3155
+ });
3156
+
3157
+ /** @internal */
3158
+ export type TwentySix$Outbound = {
3159
+ type: string;
3160
+ keywords: Array<string>;
3161
+ };
3162
+
3163
+ /** @internal */
3164
+ export const TwentySix$outboundSchema: z.ZodType<
3165
+ TwentySix$Outbound,
3166
+ z.ZodTypeDef,
3167
+ TwentySix
3168
+ > = z.object({
3169
+ type:
3170
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$outboundSchema,
3171
+ keywords: z.array(z.string()),
3172
+ });
3173
+
3174
+ /**
3175
+ * @internal
3176
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3177
+ */
3178
+ export namespace TwentySix$ {
3179
+ /** @deprecated use `TwentySix$inboundSchema` instead. */
3180
+ export const inboundSchema = TwentySix$inboundSchema;
3181
+ /** @deprecated use `TwentySix$outboundSchema` instead. */
3182
+ export const outboundSchema = TwentySix$outboundSchema;
3183
+ /** @deprecated use `TwentySix$Outbound` instead. */
3184
+ export type Outbound = TwentySix$Outbound;
3185
+ }
3186
+
3187
+ export function twentySixToJSON(twentySix: TwentySix): string {
3188
+ return JSON.stringify(TwentySix$outboundSchema.parse(twentySix));
3189
+ }
3190
+
3191
+ export function twentySixFromJSON(
3192
+ jsonString: string,
3193
+ ): SafeParseResult<TwentySix, SDKValidationError> {
3194
+ return safeParse(
3195
+ jsonString,
3196
+ (x) => TwentySix$inboundSchema.parse(JSON.parse(x)),
3197
+ `Failed to parse 'TwentySix' from JSON`,
3198
+ );
3199
+ }
3200
+
3201
+ /** @internal */
3202
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$inboundSchema:
3203
+ z.ZodNativeEnum<
3204
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type
3205
+ > = z.nativeEnum(
3206
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type,
3207
+ );
3208
+
3209
+ /** @internal */
3210
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$outboundSchema:
3211
+ z.ZodNativeEnum<
3212
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type
3213
+ > =
3214
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$inboundSchema;
3215
+
3216
+ /**
3217
+ * @internal
3218
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3219
+ */
3220
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$ {
3221
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$inboundSchema` instead. */
3222
+ export const inboundSchema =
3223
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$inboundSchema;
3224
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$outboundSchema` instead. */
3225
+ export const outboundSchema =
3226
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$outboundSchema;
3227
+ }
3228
+
3229
+ /** @internal */
3230
+ export const TwentyFive$inboundSchema: z.ZodType<
3231
+ TwentyFive,
3232
+ z.ZodTypeDef,
3233
+ unknown
3234
+ > = z.object({
3235
+ type:
3236
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$inboundSchema,
3237
+ topic: z.string(),
3238
+ });
3239
+
3240
+ /** @internal */
3241
+ export type TwentyFive$Outbound = {
3242
+ type: string;
3243
+ topic: string;
3244
+ };
3245
+
3246
+ /** @internal */
3247
+ export const TwentyFive$outboundSchema: z.ZodType<
3248
+ TwentyFive$Outbound,
3249
+ z.ZodTypeDef,
3250
+ TwentyFive
3251
+ > = z.object({
3252
+ type:
3253
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$outboundSchema,
3254
+ topic: z.string(),
3255
+ });
3256
+
3257
+ /**
3258
+ * @internal
3259
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3260
+ */
3261
+ export namespace TwentyFive$ {
3262
+ /** @deprecated use `TwentyFive$inboundSchema` instead. */
3263
+ export const inboundSchema = TwentyFive$inboundSchema;
3264
+ /** @deprecated use `TwentyFive$outboundSchema` instead. */
3265
+ export const outboundSchema = TwentyFive$outboundSchema;
3266
+ /** @deprecated use `TwentyFive$Outbound` instead. */
3267
+ export type Outbound = TwentyFive$Outbound;
3268
+ }
3269
+
3270
+ export function twentyFiveToJSON(twentyFive: TwentyFive): string {
3271
+ return JSON.stringify(TwentyFive$outboundSchema.parse(twentyFive));
3272
+ }
3273
+
3274
+ export function twentyFiveFromJSON(
3275
+ jsonString: string,
3276
+ ): SafeParseResult<TwentyFive, SDKValidationError> {
3277
+ return safeParse(
3278
+ jsonString,
3279
+ (x) => TwentyFive$inboundSchema.parse(JSON.parse(x)),
3280
+ `Failed to parse 'TwentyFive' from JSON`,
3281
+ );
3282
+ }
3283
+
2223
3284
  /** @internal */
2224
3285
  export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData524Type$inboundSchema:
2225
3286
  z.ZodNativeEnum<
@@ -4108,6 +5169,8 @@ export const DataFunctionParams$inboundSchema: z.ZodType<
4108
5169
  z.lazy(() => Eleven$inboundSchema),
4109
5170
  z.lazy(() => Thirteen$inboundSchema),
4110
5171
  z.lazy(() => Fifteen$inboundSchema),
5172
+ z.lazy(() => TwentyFive$inboundSchema),
5173
+ z.lazy(() => TwentySix$inboundSchema),
4111
5174
  z.lazy(() => Five$inboundSchema),
4112
5175
  z.lazy(() => Six$inboundSchema),
4113
5176
  z.lazy(() => Seven$inboundSchema),
@@ -4122,6 +5185,15 @@ export const DataFunctionParams$inboundSchema: z.ZodType<
4122
5185
  z.lazy(() => TwentyTwo$inboundSchema),
4123
5186
  z.lazy(() => TwentyThree$inboundSchema),
4124
5187
  z.lazy(() => TwentyFour$inboundSchema),
5188
+ z.lazy(() => TwentySeven$inboundSchema),
5189
+ z.lazy(() => TwentyEight$inboundSchema),
5190
+ z.lazy(() => TwentyNine$inboundSchema),
5191
+ z.lazy(() => Thirty$inboundSchema),
5192
+ z.lazy(() => ThirtyOne$inboundSchema),
5193
+ z.lazy(() => ThirtyTwo$inboundSchema),
5194
+ z.lazy(() => ThirtyThree$inboundSchema),
5195
+ z.lazy(() => ThirtyFour$inboundSchema),
5196
+ z.lazy(() => ThirtyFive$inboundSchema),
4125
5197
  ]);
4126
5198
 
4127
5199
  /** @internal */
@@ -4136,6 +5208,8 @@ export type DataFunctionParams$Outbound =
4136
5208
  | Eleven$Outbound
4137
5209
  | Thirteen$Outbound
4138
5210
  | Fifteen$Outbound
5211
+ | TwentyFive$Outbound
5212
+ | TwentySix$Outbound
4139
5213
  | Five$Outbound
4140
5214
  | Six$Outbound
4141
5215
  | Seven$Outbound
@@ -4149,7 +5223,16 @@ export type DataFunctionParams$Outbound =
4149
5223
  | TwentyOne$Outbound
4150
5224
  | TwentyTwo$Outbound
4151
5225
  | TwentyThree$Outbound
4152
- | TwentyFour$Outbound;
5226
+ | TwentyFour$Outbound
5227
+ | TwentySeven$Outbound
5228
+ | TwentyEight$Outbound
5229
+ | TwentyNine$Outbound
5230
+ | Thirty$Outbound
5231
+ | ThirtyOne$Outbound
5232
+ | ThirtyTwo$Outbound
5233
+ | ThirtyThree$Outbound
5234
+ | ThirtyFour$Outbound
5235
+ | ThirtyFive$Outbound;
4153
5236
 
4154
5237
  /** @internal */
4155
5238
  export const DataFunctionParams$outboundSchema: z.ZodType<
@@ -4167,6 +5250,8 @@ export const DataFunctionParams$outboundSchema: z.ZodType<
4167
5250
  z.lazy(() => Eleven$outboundSchema),
4168
5251
  z.lazy(() => Thirteen$outboundSchema),
4169
5252
  z.lazy(() => Fifteen$outboundSchema),
5253
+ z.lazy(() => TwentyFive$outboundSchema),
5254
+ z.lazy(() => TwentySix$outboundSchema),
4170
5255
  z.lazy(() => Five$outboundSchema),
4171
5256
  z.lazy(() => Six$outboundSchema),
4172
5257
  z.lazy(() => Seven$outboundSchema),
@@ -4181,6 +5266,15 @@ export const DataFunctionParams$outboundSchema: z.ZodType<
4181
5266
  z.lazy(() => TwentyTwo$outboundSchema),
4182
5267
  z.lazy(() => TwentyThree$outboundSchema),
4183
5268
  z.lazy(() => TwentyFour$outboundSchema),
5269
+ z.lazy(() => TwentySeven$outboundSchema),
5270
+ z.lazy(() => TwentyEight$outboundSchema),
5271
+ z.lazy(() => TwentyNine$outboundSchema),
5272
+ z.lazy(() => Thirty$outboundSchema),
5273
+ z.lazy(() => ThirtyOne$outboundSchema),
5274
+ z.lazy(() => ThirtyTwo$outboundSchema),
5275
+ z.lazy(() => ThirtyThree$outboundSchema),
5276
+ z.lazy(() => ThirtyFour$outboundSchema),
5277
+ z.lazy(() => ThirtyFive$outboundSchema),
4184
5278
  ]);
4185
5279
 
4186
5280
  /**
@@ -4222,8 +5316,8 @@ export const DataFunction$inboundSchema: z.ZodType<
4222
5316
  > = z.object({
4223
5317
  _id: z.string(),
4224
5318
  description: z.string(),
4225
- created: z.string().default("2025-07-08T10:06:07.416Z"),
4226
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
5319
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
5320
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
4227
5321
  guardrail_config: z.union([
4228
5322
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
4229
5323
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -4240,6 +5334,8 @@ export const DataFunction$inboundSchema: z.ZodType<
4240
5334
  z.lazy(() => Eleven$inboundSchema),
4241
5335
  z.lazy(() => Thirteen$inboundSchema),
4242
5336
  z.lazy(() => Fifteen$inboundSchema),
5337
+ z.lazy(() => TwentyFive$inboundSchema),
5338
+ z.lazy(() => TwentySix$inboundSchema),
4243
5339
  z.lazy(() => Five$inboundSchema),
4244
5340
  z.lazy(() => Six$inboundSchema),
4245
5341
  z.lazy(() => Seven$inboundSchema),
@@ -4254,6 +5350,15 @@ export const DataFunction$inboundSchema: z.ZodType<
4254
5350
  z.lazy(() => TwentyTwo$inboundSchema),
4255
5351
  z.lazy(() => TwentyThree$inboundSchema),
4256
5352
  z.lazy(() => TwentyFour$inboundSchema),
5353
+ z.lazy(() => TwentySeven$inboundSchema),
5354
+ z.lazy(() => TwentyEight$inboundSchema),
5355
+ z.lazy(() => TwentyNine$inboundSchema),
5356
+ z.lazy(() => Thirty$inboundSchema),
5357
+ z.lazy(() => ThirtyOne$inboundSchema),
5358
+ z.lazy(() => ThirtyTwo$inboundSchema),
5359
+ z.lazy(() => ThirtyThree$inboundSchema),
5360
+ z.lazy(() => ThirtyFour$inboundSchema),
5361
+ z.lazy(() => ThirtyFive$inboundSchema),
4257
5362
  ]),
4258
5363
  key: z.string(),
4259
5364
  }).transform((v) => {
@@ -4286,6 +5391,8 @@ export type DataFunction$Outbound = {
4286
5391
  | Eleven$Outbound
4287
5392
  | Thirteen$Outbound
4288
5393
  | Fifteen$Outbound
5394
+ | TwentyFive$Outbound
5395
+ | TwentySix$Outbound
4289
5396
  | Five$Outbound
4290
5397
  | Six$Outbound
4291
5398
  | Seven$Outbound
@@ -4299,7 +5406,16 @@ export type DataFunction$Outbound = {
4299
5406
  | TwentyOne$Outbound
4300
5407
  | TwentyTwo$Outbound
4301
5408
  | TwentyThree$Outbound
4302
- | TwentyFour$Outbound;
5409
+ | TwentyFour$Outbound
5410
+ | TwentySeven$Outbound
5411
+ | TwentyEight$Outbound
5412
+ | TwentyNine$Outbound
5413
+ | Thirty$Outbound
5414
+ | ThirtyOne$Outbound
5415
+ | ThirtyTwo$Outbound
5416
+ | ThirtyThree$Outbound
5417
+ | ThirtyFour$Outbound
5418
+ | ThirtyFive$Outbound;
4303
5419
  key: string;
4304
5420
  };
4305
5421
 
@@ -4311,8 +5427,8 @@ export const DataFunction$outboundSchema: z.ZodType<
4311
5427
  > = z.object({
4312
5428
  id: z.string(),
4313
5429
  description: z.string(),
4314
- created: z.string().default("2025-07-08T10:06:07.416Z"),
4315
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
5430
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
5431
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
4316
5432
  guardrailConfig: z.union([
4317
5433
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
4318
5434
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -4329,6 +5445,8 @@ export const DataFunction$outboundSchema: z.ZodType<
4329
5445
  z.lazy(() => Eleven$outboundSchema),
4330
5446
  z.lazy(() => Thirteen$outboundSchema),
4331
5447
  z.lazy(() => Fifteen$outboundSchema),
5448
+ z.lazy(() => TwentyFive$outboundSchema),
5449
+ z.lazy(() => TwentySix$outboundSchema),
4332
5450
  z.lazy(() => Five$outboundSchema),
4333
5451
  z.lazy(() => Six$outboundSchema),
4334
5452
  z.lazy(() => Seven$outboundSchema),
@@ -4343,6 +5461,15 @@ export const DataFunction$outboundSchema: z.ZodType<
4343
5461
  z.lazy(() => TwentyTwo$outboundSchema),
4344
5462
  z.lazy(() => TwentyThree$outboundSchema),
4345
5463
  z.lazy(() => TwentyFour$outboundSchema),
5464
+ z.lazy(() => TwentySeven$outboundSchema),
5465
+ z.lazy(() => TwentyEight$outboundSchema),
5466
+ z.lazy(() => TwentyNine$outboundSchema),
5467
+ z.lazy(() => Thirty$outboundSchema),
5468
+ z.lazy(() => ThirtyOne$outboundSchema),
5469
+ z.lazy(() => ThirtyTwo$outboundSchema),
5470
+ z.lazy(() => ThirtyThree$outboundSchema),
5471
+ z.lazy(() => ThirtyFour$outboundSchema),
5472
+ z.lazy(() => ThirtyFive$outboundSchema),
4346
5473
  ]),
4347
5474
  key: z.string(),
4348
5475
  }).transform((v) => {
@@ -4683,8 +5810,8 @@ export const DataPython$inboundSchema: z.ZodType<
4683
5810
  > = z.object({
4684
5811
  _id: z.string(),
4685
5812
  description: z.string(),
4686
- created: z.string().default("2025-07-08T10:06:07.416Z"),
4687
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
5813
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
5814
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
4688
5815
  guardrail_config: z.union([
4689
5816
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
4690
5817
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
@@ -4722,8 +5849,8 @@ export const DataPython$outboundSchema: z.ZodType<
4722
5849
  > = z.object({
4723
5850
  id: z.string(),
4724
5851
  description: z.string(),
4725
- created: z.string().default("2025-07-08T10:06:07.416Z"),
4726
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
5852
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
5853
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
4727
5854
  guardrailConfig: z.union([
4728
5855
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
4729
5856
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
@@ -5069,8 +6196,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
5069
6196
  > = z.object({
5070
6197
  _id: z.string(),
5071
6198
  description: z.string(),
5072
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5073
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
6199
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
6200
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5074
6201
  guardrail_config: z.union([
5075
6202
  z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
5076
6203
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
@@ -5114,8 +6241,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
5114
6241
  > = z.object({
5115
6242
  id: z.string(),
5116
6243
  description: z.string(),
5117
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5118
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
6244
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
6245
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5119
6246
  guardrailConfig: z.union([
5120
6247
  z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
5121
6248
  z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
@@ -5480,8 +6607,8 @@ export const DataJSON$inboundSchema: z.ZodType<
5480
6607
  > = z.object({
5481
6608
  _id: z.string(),
5482
6609
  description: z.string(),
5483
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5484
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
6610
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
6611
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5485
6612
  guardrail_config: z.union([
5486
6613
  z.lazy(() =>
5487
6614
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
@@ -5523,8 +6650,8 @@ export const DataJSON$outboundSchema: z.ZodType<
5523
6650
  > = z.object({
5524
6651
  id: z.string(),
5525
6652
  description: z.string(),
5526
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5527
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
6653
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
6654
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5528
6655
  guardrailConfig: z.union([
5529
6656
  z.lazy(() =>
5530
6657
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
@@ -5906,8 +7033,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
5906
7033
  z.object({
5907
7034
  _id: z.string(),
5908
7035
  description: z.string(),
5909
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5910
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
7036
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
7037
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5911
7038
  guardrail_config: z.union([
5912
7039
  z.lazy(() =>
5913
7040
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -5951,8 +7078,8 @@ export const DataLLM$outboundSchema: z.ZodType<
5951
7078
  > = z.object({
5952
7079
  id: z.string(),
5953
7080
  description: z.string(),
5954
- created: z.string().default("2025-07-08T10:06:07.416Z"),
5955
- updated: z.string().default("2025-07-08T10:06:07.416Z"),
7081
+ created: z.string().default("2025-07-15T08:04:19.354Z"),
7082
+ updated: z.string().default("2025-07-15T08:04:19.354Z"),
5956
7083
  guardrailConfig: z.union([
5957
7084
  z.lazy(() =>
5958
7085
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema