@orq-ai/node 4.0.0-rc.52 → 4.0.0-rc.54

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 (124) hide show
  1. package/README.md +1 -1
  2. package/bin/mcp-server.js +5278 -1586
  3. package/bin/mcp-server.js.map +45 -45
  4. package/docs/sdks/agents/README.md +40 -2
  5. package/docs/sdks/memorystores/README.md +3 -4
  6. package/examples/package-lock.json +1 -1
  7. package/funcs/agentsStream.js +2 -0
  8. package/funcs/agentsStream.js.map +1 -1
  9. package/funcs/agentsStreamRun.js +2 -0
  10. package/funcs/agentsStreamRun.js.map +1 -1
  11. package/funcs/memoryStoresCreate.d.ts +1 -2
  12. package/funcs/memoryStoresCreate.d.ts.map +1 -1
  13. package/funcs/memoryStoresCreate.js +2 -6
  14. package/funcs/memoryStoresCreate.js.map +1 -1
  15. package/jsr.json +1 -1
  16. package/lib/config.d.ts +2 -2
  17. package/lib/config.js +2 -2
  18. package/mcp-server/mcp-server.js +1 -1
  19. package/mcp-server/server.js +1 -1
  20. package/models/operations/createagent.d.ts +17 -7
  21. package/models/operations/createagent.d.ts.map +1 -1
  22. package/models/operations/createagent.js +12 -4
  23. package/models/operations/createagent.js.map +1 -1
  24. package/models/operations/createbudget.js +2 -2
  25. package/models/operations/createcontact.js +2 -2
  26. package/models/operations/createdataset.js +2 -2
  27. package/models/operations/createdatasetitem.js +8 -8
  28. package/models/operations/createdatasource.js +2 -2
  29. package/models/operations/createeval.d.ts +70 -70
  30. package/models/operations/createeval.d.ts.map +1 -1
  31. package/models/operations/createeval.js +162 -169
  32. package/models/operations/createeval.js.map +1 -1
  33. package/models/operations/createtool.js +12 -12
  34. package/models/operations/fileget.js +2 -2
  35. package/models/operations/filelist.js +2 -2
  36. package/models/operations/fileupload.js +2 -2
  37. package/models/operations/getagent.d.ts +5 -0
  38. package/models/operations/getagent.d.ts.map +1 -1
  39. package/models/operations/getagent.js +4 -0
  40. package/models/operations/getagent.js.map +1 -1
  41. package/models/operations/getalltools.d.ts +34 -34
  42. package/models/operations/getalltools.d.ts.map +1 -1
  43. package/models/operations/getalltools.js +74 -79
  44. package/models/operations/getalltools.js.map +1 -1
  45. package/models/operations/getbudget.js +2 -2
  46. package/models/operations/getevals.js +28 -28
  47. package/models/operations/listagents.d.ts +5 -0
  48. package/models/operations/listagents.d.ts.map +1 -1
  49. package/models/operations/listagents.js +4 -0
  50. package/models/operations/listagents.js.map +1 -1
  51. package/models/operations/listbudgets.js +2 -2
  52. package/models/operations/listcontacts.js +2 -2
  53. package/models/operations/listdatasetdatapoints.js +8 -8
  54. package/models/operations/listdatasets.js +2 -2
  55. package/models/operations/listdatasources.js +2 -2
  56. package/models/operations/retrievecontact.js +2 -2
  57. package/models/operations/retrievedatapoint.js +8 -8
  58. package/models/operations/retrievedataset.js +2 -2
  59. package/models/operations/retrievedatasource.js +2 -2
  60. package/models/operations/retrievetool.js +12 -12
  61. package/models/operations/runagent.js +2 -2
  62. package/models/operations/streamagent.d.ts +2658 -106
  63. package/models/operations/streamagent.d.ts.map +1 -1
  64. package/models/operations/streamagent.js +2936 -5
  65. package/models/operations/streamagent.js.map +1 -1
  66. package/models/operations/streamrunagent.d.ts +3268 -716
  67. package/models/operations/streamrunagent.d.ts.map +1 -1
  68. package/models/operations/streamrunagent.js +2936 -12
  69. package/models/operations/streamrunagent.js.map +1 -1
  70. package/models/operations/updateagent.d.ts +17 -7
  71. package/models/operations/updateagent.d.ts.map +1 -1
  72. package/models/operations/updateagent.js +12 -4
  73. package/models/operations/updateagent.js.map +1 -1
  74. package/models/operations/updatebudget.js +2 -2
  75. package/models/operations/updatecontact.js +2 -2
  76. package/models/operations/updatedatapoint.js +8 -8
  77. package/models/operations/updatedataset.js +2 -2
  78. package/models/operations/updatedatasource.js +2 -2
  79. package/models/operations/updateeval.js +28 -28
  80. package/models/operations/updatetool.js +14 -14
  81. package/package.json +1 -1
  82. package/src/funcs/agentsStream.ts +1 -0
  83. package/src/funcs/agentsStreamRun.ts +1 -0
  84. package/src/funcs/memoryStoresCreate.ts +2 -11
  85. package/src/lib/config.ts +2 -2
  86. package/src/mcp-server/mcp-server.ts +1 -1
  87. package/src/mcp-server/server.ts +1 -1
  88. package/src/models/operations/createagent.ts +31 -13
  89. package/src/models/operations/createbudget.ts +2 -2
  90. package/src/models/operations/createcontact.ts +2 -2
  91. package/src/models/operations/createdataset.ts +2 -2
  92. package/src/models/operations/createdatasetitem.ts +8 -8
  93. package/src/models/operations/createdatasource.ts +2 -2
  94. package/src/models/operations/createeval.ts +368 -294
  95. package/src/models/operations/createtool.ts +12 -12
  96. package/src/models/operations/fileget.ts +2 -2
  97. package/src/models/operations/filelist.ts +2 -2
  98. package/src/models/operations/fileupload.ts +2 -2
  99. package/src/models/operations/getagent.ts +9 -0
  100. package/src/models/operations/getalltools.ts +277 -231
  101. package/src/models/operations/getbudget.ts +2 -2
  102. package/src/models/operations/getevals.ts +28 -28
  103. package/src/models/operations/listagents.ts +9 -0
  104. package/src/models/operations/listbudgets.ts +2 -2
  105. package/src/models/operations/listcontacts.ts +2 -2
  106. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  107. package/src/models/operations/listdatasets.ts +2 -2
  108. package/src/models/operations/listdatasources.ts +2 -2
  109. package/src/models/operations/retrievecontact.ts +2 -2
  110. package/src/models/operations/retrievedatapoint.ts +8 -8
  111. package/src/models/operations/retrievedataset.ts +2 -2
  112. package/src/models/operations/retrievedatasource.ts +2 -2
  113. package/src/models/operations/retrievetool.ts +12 -12
  114. package/src/models/operations/runagent.ts +2 -2
  115. package/src/models/operations/streamagent.ts +7595 -380
  116. package/src/models/operations/streamrunagent.ts +10703 -3540
  117. package/src/models/operations/updateagent.ts +31 -13
  118. package/src/models/operations/updatebudget.ts +2 -2
  119. package/src/models/operations/updatecontact.ts +2 -2
  120. package/src/models/operations/updatedatapoint.ts +8 -8
  121. package/src/models/operations/updatedataset.ts +2 -2
  122. package/src/models/operations/updatedatasource.ts +2 -2
  123. package/src/models/operations/updateeval.ts +28 -28
  124. package/src/models/operations/updatetool.ts +14 -14
@@ -1849,7 +1849,7 @@ exports.Evaluations3$inboundSchema = z.object({
1849
1849
  human_review_id: z.string(),
1850
1850
  source: exports.CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
1851
1851
  reviewed_by_id: z.string(),
1852
- reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T07:47:16.860Z").transform(v => new Date(v)),
1852
+ reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T08:48:12.605Z").transform(v => new Date(v)),
1853
1853
  type: exports.CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
1854
1854
  values: z.array(z.string()),
1855
1855
  }).transform((v) => {
@@ -1867,7 +1867,7 @@ exports.Evaluations3$outboundSchema = z.object({
1867
1867
  humanReviewId: z.string(),
1868
1868
  source: exports.CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
1869
1869
  reviewedById: z.string(),
1870
- reviewedAt: z.date().default(() => new Date("2025-11-20T07:47:16.860Z"))
1870
+ reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.605Z"))
1871
1871
  .transform(v => v.toISOString()),
1872
1872
  type: exports.CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
1873
1873
  values: z.array(z.string()),
@@ -1904,7 +1904,7 @@ exports.Evaluations2$inboundSchema = z.object({
1904
1904
  human_review_id: z.string(),
1905
1905
  source: exports.EvaluationsSource$inboundSchema.default("orq"),
1906
1906
  reviewed_by_id: z.string(),
1907
- reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T07:47:16.859Z").transform(v => new Date(v)),
1907
+ reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T08:48:12.604Z").transform(v => new Date(v)),
1908
1908
  type: exports.CreateDatasetItemEvaluationsType$inboundSchema,
1909
1909
  value: z.number(),
1910
1910
  }).transform((v) => {
@@ -1922,7 +1922,7 @@ exports.Evaluations2$outboundSchema = z.object({
1922
1922
  humanReviewId: z.string(),
1923
1923
  source: exports.EvaluationsSource$outboundSchema.default("orq"),
1924
1924
  reviewedById: z.string(),
1925
- reviewedAt: z.date().default(() => new Date("2025-11-20T07:47:16.859Z"))
1925
+ reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.604Z"))
1926
1926
  .transform(v => v.toISOString()),
1927
1927
  type: exports.CreateDatasetItemEvaluationsType$outboundSchema,
1928
1928
  value: z.number(),
@@ -1960,7 +1960,7 @@ exports.Evaluations1$inboundSchema = z.object({
1960
1960
  human_review_id: z.string(),
1961
1961
  source: exports.Source$inboundSchema.default("orq"),
1962
1962
  reviewed_by_id: z.string(),
1963
- reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T07:47:16.858Z").transform(v => new Date(v)),
1963
+ reviewed_at: z.string().datetime({ offset: true }).default("2025-11-20T08:48:12.596Z").transform(v => new Date(v)),
1964
1964
  type: exports.EvaluationsType$inboundSchema,
1965
1965
  value: z.string(),
1966
1966
  }).transform((v) => {
@@ -1978,7 +1978,7 @@ exports.Evaluations1$outboundSchema = z.object({
1978
1978
  humanReviewId: z.string(),
1979
1979
  source: exports.Source$outboundSchema.default("orq"),
1980
1980
  reviewedById: z.string(),
1981
- reviewedAt: z.date().default(() => new Date("2025-11-20T07:47:16.858Z"))
1981
+ reviewedAt: z.date().default(() => new Date("2025-11-20T08:48:12.596Z"))
1982
1982
  .transform(v => v.toISOString()),
1983
1983
  type: exports.EvaluationsType$outboundSchema,
1984
1984
  value: z.string(),
@@ -2038,7 +2038,7 @@ exports.CreateDatasetItemResponseBody$inboundSchema = z.object({
2038
2038
  updated_by_id: z.string().optional(),
2039
2039
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2040
2040
  .optional(),
2041
- updated: z.string().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform(v => new Date(v)),
2041
+ updated: z.string().datetime({ offset: true }).default("2025-11-20T08:47:58.743Z").transform(v => new Date(v)),
2042
2042
  }).transform((v) => {
2043
2043
  return (0, primitives_js_1.remap)(v, {
2044
2044
  "_id": "id",
@@ -2073,7 +2073,7 @@ exports.CreateDatasetItemResponseBody$outboundSchema = z.object({
2073
2073
  createdById: z.string().optional(),
2074
2074
  updatedById: z.string().optional(),
2075
2075
  created: z.date().transform(v => v.toISOString()).optional(),
2076
- updated: z.date().default(() => new Date("2025-11-20T07:47:04.953Z"))
2076
+ updated: z.date().default(() => new Date("2025-11-20T08:47:58.743Z"))
2077
2077
  .transform(v => v.toISOString()),
2078
2078
  }).transform((v) => {
2079
2079
  return (0, primitives_js_1.remap)(v, {
@@ -282,7 +282,7 @@ exports.CreateDatasourceStatus$inboundSchema = z.nativeEnum(exports.CreateDataso
282
282
  exports.CreateDatasourceStatus$outboundSchema = exports.CreateDatasourceStatus$inboundSchema;
283
283
  /** @internal */
284
284
  exports.CreateDatasourceResponseBody$inboundSchema = z.object({
285
- _id: z.string().default("01KAG3PQCJY0F56DPNVGJ16H9W"),
285
+ _id: z.string().default("01KAG769Q4NGXCTVFQGDXX5KJA"),
286
286
  display_name: z.string(),
287
287
  description: z.string().optional(),
288
288
  status: exports.CreateDatasourceStatus$inboundSchema,
@@ -306,7 +306,7 @@ exports.CreateDatasourceResponseBody$inboundSchema = z.object({
306
306
  });
307
307
  /** @internal */
308
308
  exports.CreateDatasourceResponseBody$outboundSchema = z.object({
309
- id: z.string().default("01KAG3PQCJY0F56DPNVGJ16H9W"),
309
+ id: z.string().default("01KAG769Q4NGXCTVFQGDXX5KJA"),
310
310
  displayName: z.string(),
311
311
  description: z.string().optional(),
312
312
  status: exports.CreateDatasourceStatus$outboundSchema,
@@ -528,21 +528,21 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
528
528
  readonly ModerationsOpenai: "moderations_openai";
529
529
  };
530
530
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type>;
531
- export type Seventeen = {
531
+ export type CreateEvalFunctionParams17 = {
532
532
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type;
533
533
  };
534
534
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type: {
535
535
  readonly IsValidJson: "is_valid_json";
536
536
  };
537
537
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type>;
538
- export type Sixteen = {
538
+ export type CreateEvalFunctionParams16 = {
539
539
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type;
540
540
  };
541
541
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type: {
542
542
  readonly Regex: "regex";
543
543
  };
544
544
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type>;
545
- export type Fifteen = {
545
+ export type CreateEvalFunctionParams15 = {
546
546
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type;
547
547
  pattern: string;
548
548
  };
@@ -550,14 +550,14 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
550
550
  readonly OneLine: "one_line";
551
551
  };
552
552
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type>;
553
- export type Fourteen = {
553
+ export type CreateEvalFunctionParams14 = {
554
554
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type;
555
555
  };
556
556
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type: {
557
557
  readonly LengthGreaterThan: "length_greater_than";
558
558
  };
559
559
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type>;
560
- export type Thirteen = {
560
+ export type CreateEvalFunctionParams13 = {
561
561
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type;
562
562
  value: number;
563
563
  };
@@ -565,7 +565,7 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
565
565
  readonly LengthBetween: "length_between";
566
566
  };
567
567
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type>;
568
- export type Twelve = {
568
+ export type CreateEvalFunctionParams12 = {
569
569
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type;
570
570
  min: number;
571
571
  max: number;
@@ -574,7 +574,7 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
574
574
  readonly LengthLessThan: "length_less_than";
575
575
  };
576
576
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type>;
577
- export type Eleven = {
577
+ export type CreateEvalFunctionParams11 = {
578
578
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type;
579
579
  value: number;
580
580
  };
@@ -582,14 +582,14 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
582
582
  readonly ExactMatch: "exact_match";
583
583
  };
584
584
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type>;
585
- export type Ten = {
585
+ export type CreateEvalFunctionParams10 = {
586
586
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type;
587
587
  };
588
588
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type: {
589
589
  readonly EndsWith: "ends_with";
590
590
  };
591
591
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type>;
592
- export type Nine = {
592
+ export type CreateEvalFunctionParams9 = {
593
593
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type;
594
594
  value: string;
595
595
  };
@@ -597,7 +597,7 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
597
597
  readonly StartWith: "start_with";
598
598
  };
599
599
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type>;
600
- export type Eight = {
600
+ export type CreateEvalFunctionParams8 = {
601
601
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type;
602
602
  value: string;
603
603
  };
@@ -605,7 +605,7 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
605
605
  readonly ContainsValidLink: "contains_valid_link";
606
606
  };
607
607
  export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType>;
608
- export type Seven = {
608
+ export type CreateEvalFunctionParams7 = {
609
609
  type: CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType;
610
610
  };
611
611
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType: {
@@ -654,7 +654,7 @@ export type CreateEvalFunctionParams1 = {
654
654
  type: FunctionParamsType;
655
655
  value: string;
656
656
  };
657
- export type FunctionParams = Twelve | CreateEvalFunctionParams1 | CreateEvalFunctionParams2 | CreateEvalFunctionParams3 | CreateEvalFunctionParams4 | Eight | Nine | Eleven | Thirteen | Fifteen | TwentyFive | TwentySix | CreateEvalFunctionParams5 | CreateEvalFunctionParams6 | Seven | Ten | Fourteen | Sixteen | Seventeen | Eighteen | Nineteen | Twenty | TwentyOne | TwentyTwo | TwentyThree | TwentyFour | TwentySeven | TwentyEight | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyThree | ThirtyFour | ThirtyFive;
657
+ export type FunctionParams = CreateEvalFunctionParams12 | CreateEvalFunctionParams1 | CreateEvalFunctionParams2 | CreateEvalFunctionParams3 | CreateEvalFunctionParams4 | CreateEvalFunctionParams8 | CreateEvalFunctionParams9 | CreateEvalFunctionParams11 | CreateEvalFunctionParams13 | CreateEvalFunctionParams15 | TwentyFive | TwentySix | CreateEvalFunctionParams5 | CreateEvalFunctionParams6 | CreateEvalFunctionParams7 | CreateEvalFunctionParams10 | CreateEvalFunctionParams14 | CreateEvalFunctionParams16 | CreateEvalFunctionParams17 | Eighteen | Nineteen | Twenty | TwentyOne | TwentyTwo | TwentyThree | TwentyFour | TwentySeven | TwentyEight | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyThree | ThirtyFour | ThirtyFive;
658
658
  export type CreateEvalResponseBodyFunction = {
659
659
  id: string;
660
660
  description: string;
@@ -662,7 +662,7 @@ export type CreateEvalResponseBodyFunction = {
662
662
  updated?: string | undefined;
663
663
  guardrailConfig?: CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number | CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean | undefined;
664
664
  type: CreateEvalResponseBodyEvalsResponse200Type;
665
- functionParams: Twelve | CreateEvalFunctionParams1 | CreateEvalFunctionParams2 | CreateEvalFunctionParams3 | CreateEvalFunctionParams4 | Eight | Nine | Eleven | Thirteen | Fifteen | TwentyFive | TwentySix | CreateEvalFunctionParams5 | CreateEvalFunctionParams6 | Seven | Ten | Fourteen | Sixteen | Seventeen | Eighteen | Nineteen | Twenty | TwentyOne | TwentyTwo | TwentyThree | TwentyFour | TwentySeven | TwentyEight | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyThree | ThirtyFour | ThirtyFive;
665
+ functionParams: CreateEvalFunctionParams12 | CreateEvalFunctionParams1 | CreateEvalFunctionParams2 | CreateEvalFunctionParams3 | CreateEvalFunctionParams4 | CreateEvalFunctionParams8 | CreateEvalFunctionParams9 | CreateEvalFunctionParams11 | CreateEvalFunctionParams13 | CreateEvalFunctionParams15 | TwentyFive | TwentySix | CreateEvalFunctionParams5 | CreateEvalFunctionParams6 | CreateEvalFunctionParams7 | CreateEvalFunctionParams10 | CreateEvalFunctionParams14 | CreateEvalFunctionParams16 | CreateEvalFunctionParams17 | Eighteen | Nineteen | Twenty | TwentyOne | TwentyTwo | TwentyThree | TwentyFour | TwentySeven | TwentyEight | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyThree | ThirtyFour | ThirtyFive;
666
666
  key: string;
667
667
  };
668
668
  export declare const CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type: {
@@ -1595,162 +1595,162 @@ export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResp
1595
1595
  /** @internal */
1596
1596
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type>;
1597
1597
  /** @internal */
1598
- export declare const Seventeen$inboundSchema: z.ZodType<Seventeen, z.ZodTypeDef, unknown>;
1598
+ export declare const CreateEvalFunctionParams17$inboundSchema: z.ZodType<CreateEvalFunctionParams17, z.ZodTypeDef, unknown>;
1599
1599
  /** @internal */
1600
- export type Seventeen$Outbound = {
1600
+ export type CreateEvalFunctionParams17$Outbound = {
1601
1601
  type: string;
1602
1602
  };
1603
1603
  /** @internal */
1604
- export declare const Seventeen$outboundSchema: z.ZodType<Seventeen$Outbound, z.ZodTypeDef, Seventeen>;
1605
- export declare function seventeenToJSON(seventeen: Seventeen): string;
1606
- export declare function seventeenFromJSON(jsonString: string): SafeParseResult<Seventeen, SDKValidationError>;
1604
+ export declare const CreateEvalFunctionParams17$outboundSchema: z.ZodType<CreateEvalFunctionParams17$Outbound, z.ZodTypeDef, CreateEvalFunctionParams17>;
1605
+ export declare function createEvalFunctionParams17ToJSON(createEvalFunctionParams17: CreateEvalFunctionParams17): string;
1606
+ export declare function createEvalFunctionParams17FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams17, SDKValidationError>;
1607
1607
  /** @internal */
1608
1608
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type>;
1609
1609
  /** @internal */
1610
1610
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type>;
1611
1611
  /** @internal */
1612
- export declare const Sixteen$inboundSchema: z.ZodType<Sixteen, z.ZodTypeDef, unknown>;
1612
+ export declare const CreateEvalFunctionParams16$inboundSchema: z.ZodType<CreateEvalFunctionParams16, z.ZodTypeDef, unknown>;
1613
1613
  /** @internal */
1614
- export type Sixteen$Outbound = {
1614
+ export type CreateEvalFunctionParams16$Outbound = {
1615
1615
  type: string;
1616
1616
  };
1617
1617
  /** @internal */
1618
- export declare const Sixteen$outboundSchema: z.ZodType<Sixteen$Outbound, z.ZodTypeDef, Sixteen>;
1619
- export declare function sixteenToJSON(sixteen: Sixteen): string;
1620
- export declare function sixteenFromJSON(jsonString: string): SafeParseResult<Sixteen, SDKValidationError>;
1618
+ export declare const CreateEvalFunctionParams16$outboundSchema: z.ZodType<CreateEvalFunctionParams16$Outbound, z.ZodTypeDef, CreateEvalFunctionParams16>;
1619
+ export declare function createEvalFunctionParams16ToJSON(createEvalFunctionParams16: CreateEvalFunctionParams16): string;
1620
+ export declare function createEvalFunctionParams16FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams16, SDKValidationError>;
1621
1621
  /** @internal */
1622
1622
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type>;
1623
1623
  /** @internal */
1624
1624
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type>;
1625
1625
  /** @internal */
1626
- export declare const Fifteen$inboundSchema: z.ZodType<Fifteen, z.ZodTypeDef, unknown>;
1626
+ export declare const CreateEvalFunctionParams15$inboundSchema: z.ZodType<CreateEvalFunctionParams15, z.ZodTypeDef, unknown>;
1627
1627
  /** @internal */
1628
- export type Fifteen$Outbound = {
1628
+ export type CreateEvalFunctionParams15$Outbound = {
1629
1629
  type: string;
1630
1630
  pattern: string;
1631
1631
  };
1632
1632
  /** @internal */
1633
- export declare const Fifteen$outboundSchema: z.ZodType<Fifteen$Outbound, z.ZodTypeDef, Fifteen>;
1634
- export declare function fifteenToJSON(fifteen: Fifteen): string;
1635
- export declare function fifteenFromJSON(jsonString: string): SafeParseResult<Fifteen, SDKValidationError>;
1633
+ export declare const CreateEvalFunctionParams15$outboundSchema: z.ZodType<CreateEvalFunctionParams15$Outbound, z.ZodTypeDef, CreateEvalFunctionParams15>;
1634
+ export declare function createEvalFunctionParams15ToJSON(createEvalFunctionParams15: CreateEvalFunctionParams15): string;
1635
+ export declare function createEvalFunctionParams15FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams15, SDKValidationError>;
1636
1636
  /** @internal */
1637
1637
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type>;
1638
1638
  /** @internal */
1639
1639
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type>;
1640
1640
  /** @internal */
1641
- export declare const Fourteen$inboundSchema: z.ZodType<Fourteen, z.ZodTypeDef, unknown>;
1641
+ export declare const CreateEvalFunctionParams14$inboundSchema: z.ZodType<CreateEvalFunctionParams14, z.ZodTypeDef, unknown>;
1642
1642
  /** @internal */
1643
- export type Fourteen$Outbound = {
1643
+ export type CreateEvalFunctionParams14$Outbound = {
1644
1644
  type: string;
1645
1645
  };
1646
1646
  /** @internal */
1647
- export declare const Fourteen$outboundSchema: z.ZodType<Fourteen$Outbound, z.ZodTypeDef, Fourteen>;
1648
- export declare function fourteenToJSON(fourteen: Fourteen): string;
1649
- export declare function fourteenFromJSON(jsonString: string): SafeParseResult<Fourteen, SDKValidationError>;
1647
+ export declare const CreateEvalFunctionParams14$outboundSchema: z.ZodType<CreateEvalFunctionParams14$Outbound, z.ZodTypeDef, CreateEvalFunctionParams14>;
1648
+ export declare function createEvalFunctionParams14ToJSON(createEvalFunctionParams14: CreateEvalFunctionParams14): string;
1649
+ export declare function createEvalFunctionParams14FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams14, SDKValidationError>;
1650
1650
  /** @internal */
1651
1651
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type>;
1652
1652
  /** @internal */
1653
1653
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type>;
1654
1654
  /** @internal */
1655
- export declare const Thirteen$inboundSchema: z.ZodType<Thirteen, z.ZodTypeDef, unknown>;
1655
+ export declare const CreateEvalFunctionParams13$inboundSchema: z.ZodType<CreateEvalFunctionParams13, z.ZodTypeDef, unknown>;
1656
1656
  /** @internal */
1657
- export type Thirteen$Outbound = {
1657
+ export type CreateEvalFunctionParams13$Outbound = {
1658
1658
  type: string;
1659
1659
  value: number;
1660
1660
  };
1661
1661
  /** @internal */
1662
- export declare const Thirteen$outboundSchema: z.ZodType<Thirteen$Outbound, z.ZodTypeDef, Thirteen>;
1663
- export declare function thirteenToJSON(thirteen: Thirteen): string;
1664
- export declare function thirteenFromJSON(jsonString: string): SafeParseResult<Thirteen, SDKValidationError>;
1662
+ export declare const CreateEvalFunctionParams13$outboundSchema: z.ZodType<CreateEvalFunctionParams13$Outbound, z.ZodTypeDef, CreateEvalFunctionParams13>;
1663
+ export declare function createEvalFunctionParams13ToJSON(createEvalFunctionParams13: CreateEvalFunctionParams13): string;
1664
+ export declare function createEvalFunctionParams13FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams13, SDKValidationError>;
1665
1665
  /** @internal */
1666
1666
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type>;
1667
1667
  /** @internal */
1668
1668
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type>;
1669
1669
  /** @internal */
1670
- export declare const Twelve$inboundSchema: z.ZodType<Twelve, z.ZodTypeDef, unknown>;
1670
+ export declare const CreateEvalFunctionParams12$inboundSchema: z.ZodType<CreateEvalFunctionParams12, z.ZodTypeDef, unknown>;
1671
1671
  /** @internal */
1672
- export type Twelve$Outbound = {
1672
+ export type CreateEvalFunctionParams12$Outbound = {
1673
1673
  type: string;
1674
1674
  min: number;
1675
1675
  max: number;
1676
1676
  };
1677
1677
  /** @internal */
1678
- export declare const Twelve$outboundSchema: z.ZodType<Twelve$Outbound, z.ZodTypeDef, Twelve>;
1679
- export declare function twelveToJSON(twelve: Twelve): string;
1680
- export declare function twelveFromJSON(jsonString: string): SafeParseResult<Twelve, SDKValidationError>;
1678
+ export declare const CreateEvalFunctionParams12$outboundSchema: z.ZodType<CreateEvalFunctionParams12$Outbound, z.ZodTypeDef, CreateEvalFunctionParams12>;
1679
+ export declare function createEvalFunctionParams12ToJSON(createEvalFunctionParams12: CreateEvalFunctionParams12): string;
1680
+ export declare function createEvalFunctionParams12FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams12, SDKValidationError>;
1681
1681
  /** @internal */
1682
1682
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type>;
1683
1683
  /** @internal */
1684
1684
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type>;
1685
1685
  /** @internal */
1686
- export declare const Eleven$inboundSchema: z.ZodType<Eleven, z.ZodTypeDef, unknown>;
1686
+ export declare const CreateEvalFunctionParams11$inboundSchema: z.ZodType<CreateEvalFunctionParams11, z.ZodTypeDef, unknown>;
1687
1687
  /** @internal */
1688
- export type Eleven$Outbound = {
1688
+ export type CreateEvalFunctionParams11$Outbound = {
1689
1689
  type: string;
1690
1690
  value: number;
1691
1691
  };
1692
1692
  /** @internal */
1693
- export declare const Eleven$outboundSchema: z.ZodType<Eleven$Outbound, z.ZodTypeDef, Eleven>;
1694
- export declare function elevenToJSON(eleven: Eleven): string;
1695
- export declare function elevenFromJSON(jsonString: string): SafeParseResult<Eleven, SDKValidationError>;
1693
+ export declare const CreateEvalFunctionParams11$outboundSchema: z.ZodType<CreateEvalFunctionParams11$Outbound, z.ZodTypeDef, CreateEvalFunctionParams11>;
1694
+ export declare function createEvalFunctionParams11ToJSON(createEvalFunctionParams11: CreateEvalFunctionParams11): string;
1695
+ export declare function createEvalFunctionParams11FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams11, SDKValidationError>;
1696
1696
  /** @internal */
1697
1697
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type>;
1698
1698
  /** @internal */
1699
1699
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type>;
1700
1700
  /** @internal */
1701
- export declare const Ten$inboundSchema: z.ZodType<Ten, z.ZodTypeDef, unknown>;
1701
+ export declare const CreateEvalFunctionParams10$inboundSchema: z.ZodType<CreateEvalFunctionParams10, z.ZodTypeDef, unknown>;
1702
1702
  /** @internal */
1703
- export type Ten$Outbound = {
1703
+ export type CreateEvalFunctionParams10$Outbound = {
1704
1704
  type: string;
1705
1705
  };
1706
1706
  /** @internal */
1707
- export declare const Ten$outboundSchema: z.ZodType<Ten$Outbound, z.ZodTypeDef, Ten>;
1708
- export declare function tenToJSON(ten: Ten): string;
1709
- export declare function tenFromJSON(jsonString: string): SafeParseResult<Ten, SDKValidationError>;
1707
+ export declare const CreateEvalFunctionParams10$outboundSchema: z.ZodType<CreateEvalFunctionParams10$Outbound, z.ZodTypeDef, CreateEvalFunctionParams10>;
1708
+ export declare function createEvalFunctionParams10ToJSON(createEvalFunctionParams10: CreateEvalFunctionParams10): string;
1709
+ export declare function createEvalFunctionParams10FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams10, SDKValidationError>;
1710
1710
  /** @internal */
1711
1711
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type>;
1712
1712
  /** @internal */
1713
1713
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type>;
1714
1714
  /** @internal */
1715
- export declare const Nine$inboundSchema: z.ZodType<Nine, z.ZodTypeDef, unknown>;
1715
+ export declare const CreateEvalFunctionParams9$inboundSchema: z.ZodType<CreateEvalFunctionParams9, z.ZodTypeDef, unknown>;
1716
1716
  /** @internal */
1717
- export type Nine$Outbound = {
1717
+ export type CreateEvalFunctionParams9$Outbound = {
1718
1718
  type: string;
1719
1719
  value: string;
1720
1720
  };
1721
1721
  /** @internal */
1722
- export declare const Nine$outboundSchema: z.ZodType<Nine$Outbound, z.ZodTypeDef, Nine>;
1723
- export declare function nineToJSON(nine: Nine): string;
1724
- export declare function nineFromJSON(jsonString: string): SafeParseResult<Nine, SDKValidationError>;
1722
+ export declare const CreateEvalFunctionParams9$outboundSchema: z.ZodType<CreateEvalFunctionParams9$Outbound, z.ZodTypeDef, CreateEvalFunctionParams9>;
1723
+ export declare function createEvalFunctionParams9ToJSON(createEvalFunctionParams9: CreateEvalFunctionParams9): string;
1724
+ export declare function createEvalFunctionParams9FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams9, SDKValidationError>;
1725
1725
  /** @internal */
1726
1726
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type>;
1727
1727
  /** @internal */
1728
1728
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type>;
1729
1729
  /** @internal */
1730
- export declare const Eight$inboundSchema: z.ZodType<Eight, z.ZodTypeDef, unknown>;
1730
+ export declare const CreateEvalFunctionParams8$inboundSchema: z.ZodType<CreateEvalFunctionParams8, z.ZodTypeDef, unknown>;
1731
1731
  /** @internal */
1732
- export type Eight$Outbound = {
1732
+ export type CreateEvalFunctionParams8$Outbound = {
1733
1733
  type: string;
1734
1734
  value: string;
1735
1735
  };
1736
1736
  /** @internal */
1737
- export declare const Eight$outboundSchema: z.ZodType<Eight$Outbound, z.ZodTypeDef, Eight>;
1738
- export declare function eightToJSON(eight: Eight): string;
1739
- export declare function eightFromJSON(jsonString: string): SafeParseResult<Eight, SDKValidationError>;
1737
+ export declare const CreateEvalFunctionParams8$outboundSchema: z.ZodType<CreateEvalFunctionParams8$Outbound, z.ZodTypeDef, CreateEvalFunctionParams8>;
1738
+ export declare function createEvalFunctionParams8ToJSON(createEvalFunctionParams8: CreateEvalFunctionParams8): string;
1739
+ export declare function createEvalFunctionParams8FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams8, SDKValidationError>;
1740
1740
  /** @internal */
1741
1741
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType>;
1742
1742
  /** @internal */
1743
1743
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType>;
1744
1744
  /** @internal */
1745
- export declare const Seven$inboundSchema: z.ZodType<Seven, z.ZodTypeDef, unknown>;
1745
+ export declare const CreateEvalFunctionParams7$inboundSchema: z.ZodType<CreateEvalFunctionParams7, z.ZodTypeDef, unknown>;
1746
1746
  /** @internal */
1747
- export type Seven$Outbound = {
1747
+ export type CreateEvalFunctionParams7$Outbound = {
1748
1748
  type: string;
1749
1749
  };
1750
1750
  /** @internal */
1751
- export declare const Seven$outboundSchema: z.ZodType<Seven$Outbound, z.ZodTypeDef, Seven>;
1752
- export declare function sevenToJSON(seven: Seven): string;
1753
- export declare function sevenFromJSON(jsonString: string): SafeParseResult<Seven, SDKValidationError>;
1751
+ export declare const CreateEvalFunctionParams7$outboundSchema: z.ZodType<CreateEvalFunctionParams7$Outbound, z.ZodTypeDef, CreateEvalFunctionParams7>;
1752
+ export declare function createEvalFunctionParams7ToJSON(createEvalFunctionParams7: CreateEvalFunctionParams7): string;
1753
+ export declare function createEvalFunctionParams7FromJSON(jsonString: string): SafeParseResult<CreateEvalFunctionParams7, SDKValidationError>;
1754
1754
  /** @internal */
1755
1755
  export declare const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType>;
1756
1756
  /** @internal */
@@ -1842,7 +1842,7 @@ export declare function createEvalFunctionParams1FromJSON(jsonString: string): S
1842
1842
  /** @internal */
1843
1843
  export declare const FunctionParams$inboundSchema: z.ZodType<FunctionParams, z.ZodTypeDef, unknown>;
1844
1844
  /** @internal */
1845
- export type FunctionParams$Outbound = Twelve$Outbound | CreateEvalFunctionParams1$Outbound | CreateEvalFunctionParams2$Outbound | CreateEvalFunctionParams3$Outbound | CreateEvalFunctionParams4$Outbound | Eight$Outbound | Nine$Outbound | Eleven$Outbound | Thirteen$Outbound | Fifteen$Outbound | TwentyFive$Outbound | TwentySix$Outbound | CreateEvalFunctionParams5$Outbound | CreateEvalFunctionParams6$Outbound | Seven$Outbound | Ten$Outbound | Fourteen$Outbound | Sixteen$Outbound | Seventeen$Outbound | Eighteen$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyThree$Outbound | TwentyFour$Outbound | TwentySeven$Outbound | TwentyEight$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyThree$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound;
1845
+ export type FunctionParams$Outbound = CreateEvalFunctionParams12$Outbound | CreateEvalFunctionParams1$Outbound | CreateEvalFunctionParams2$Outbound | CreateEvalFunctionParams3$Outbound | CreateEvalFunctionParams4$Outbound | CreateEvalFunctionParams8$Outbound | CreateEvalFunctionParams9$Outbound | CreateEvalFunctionParams11$Outbound | CreateEvalFunctionParams13$Outbound | CreateEvalFunctionParams15$Outbound | TwentyFive$Outbound | TwentySix$Outbound | CreateEvalFunctionParams5$Outbound | CreateEvalFunctionParams6$Outbound | CreateEvalFunctionParams7$Outbound | CreateEvalFunctionParams10$Outbound | CreateEvalFunctionParams14$Outbound | CreateEvalFunctionParams16$Outbound | CreateEvalFunctionParams17$Outbound | Eighteen$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyThree$Outbound | TwentyFour$Outbound | TwentySeven$Outbound | TwentyEight$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyThree$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound;
1846
1846
  /** @internal */
1847
1847
  export declare const FunctionParams$outboundSchema: z.ZodType<FunctionParams$Outbound, z.ZodTypeDef, FunctionParams>;
1848
1848
  export declare function functionParamsToJSON(functionParams: FunctionParams): string;
@@ -1857,7 +1857,7 @@ export type CreateEvalResponseBodyFunction$Outbound = {
1857
1857
  updated: string;
1858
1858
  guardrail_config?: CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$Outbound | CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$Outbound | undefined;
1859
1859
  type: string;
1860
- function_params: Twelve$Outbound | CreateEvalFunctionParams1$Outbound | CreateEvalFunctionParams2$Outbound | CreateEvalFunctionParams3$Outbound | CreateEvalFunctionParams4$Outbound | Eight$Outbound | Nine$Outbound | Eleven$Outbound | Thirteen$Outbound | Fifteen$Outbound | TwentyFive$Outbound | TwentySix$Outbound | CreateEvalFunctionParams5$Outbound | CreateEvalFunctionParams6$Outbound | Seven$Outbound | Ten$Outbound | Fourteen$Outbound | Sixteen$Outbound | Seventeen$Outbound | Eighteen$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyThree$Outbound | TwentyFour$Outbound | TwentySeven$Outbound | TwentyEight$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyThree$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound;
1860
+ function_params: CreateEvalFunctionParams12$Outbound | CreateEvalFunctionParams1$Outbound | CreateEvalFunctionParams2$Outbound | CreateEvalFunctionParams3$Outbound | CreateEvalFunctionParams4$Outbound | CreateEvalFunctionParams8$Outbound | CreateEvalFunctionParams9$Outbound | CreateEvalFunctionParams11$Outbound | CreateEvalFunctionParams13$Outbound | CreateEvalFunctionParams15$Outbound | TwentyFive$Outbound | TwentySix$Outbound | CreateEvalFunctionParams5$Outbound | CreateEvalFunctionParams6$Outbound | CreateEvalFunctionParams7$Outbound | CreateEvalFunctionParams10$Outbound | CreateEvalFunctionParams14$Outbound | CreateEvalFunctionParams16$Outbound | CreateEvalFunctionParams17$Outbound | Eighteen$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyThree$Outbound | TwentyFour$Outbound | TwentySeven$Outbound | TwentyEight$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyThree$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound;
1861
1861
  key: string;
1862
1862
  };
1863
1863
  /** @internal */