@orq-ai/node 3.12.4 → 3.12.5

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 (196) hide show
  1. package/bin/mcp-server.js +112 -112
  2. package/bin/mcp-server.js.map +30 -30
  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/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/fileget.js +2 -2
  16. package/models/operations/filelist.js +2 -2
  17. package/models/operations/fileupload.js +2 -2
  18. package/models/operations/getbudget.js +2 -2
  19. package/models/operations/getevals.js +28 -28
  20. package/models/operations/listbudgets.js +2 -2
  21. package/models/operations/listcontacts.js +2 -2
  22. package/models/operations/listdatasetdatapoints.js +2 -2
  23. package/models/operations/listdatasets.js +2 -2
  24. package/models/operations/listdatasources.js +2 -2
  25. package/models/operations/retrievecontact.js +2 -2
  26. package/models/operations/retrievedatapoint.js +2 -2
  27. package/models/operations/retrievedataset.js +2 -2
  28. package/models/operations/retrievedatasource.js +2 -2
  29. package/models/operations/updatebudget.js +2 -2
  30. package/models/operations/updatecontact.js +2 -2
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.js +2 -2
  34. package/models/operations/updateeval.js +16 -16
  35. package/package.json +1 -1
  36. package/packages/orq-rc/FUNCTIONS.md +9 -19
  37. package/packages/orq-rc/README.md +180 -181
  38. package/packages/orq-rc/docs/sdks/agents/README.md +702 -0
  39. package/packages/orq-rc/docs/sdks/budgets/README.md +5 -5
  40. package/packages/orq-rc/docs/sdks/memorystores/README.md +1172 -0
  41. package/packages/orq-rc/docs/sdks/orq/README.md +81 -0
  42. package/packages/orq-rc/examples/package-lock.json +1 -1
  43. package/packages/orq-rc/examples/postV2AgentsInternal.example.ts +30 -0
  44. package/packages/orq-rc/jsr.json +1 -1
  45. package/packages/orq-rc/package-lock.json +2 -2
  46. package/packages/orq-rc/package.json +1 -1
  47. package/packages/orq-rc/src/funcs/agentsList.ts +167 -0
  48. package/packages/orq-rc/src/funcs/agentsListActions.ts +169 -0
  49. package/packages/orq-rc/src/funcs/agentsRetrieve.ts +175 -0
  50. package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +173 -0
  51. package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +179 -0
  52. package/packages/orq-rc/src/funcs/agentsReviewAction.ts +177 -0
  53. package/packages/orq-rc/src/funcs/agentsRun.ts +163 -0
  54. package/packages/orq-rc/src/funcs/agentsStreamRun.ts +187 -0
  55. package/packages/orq-rc/src/funcs/budgetsCreate.ts +1 -1
  56. package/packages/orq-rc/src/funcs/budgetsGet.ts +2 -2
  57. package/packages/orq-rc/src/funcs/budgetsList.ts +2 -2
  58. package/packages/orq-rc/src/funcs/memoryStoresCreate.ts +171 -0
  59. package/packages/orq-rc/src/funcs/memoryStoresCreateDocument.ts +175 -0
  60. package/packages/orq-rc/src/funcs/memoryStoresCreateMemory.ts +170 -0
  61. package/packages/orq-rc/src/funcs/memoryStoresDelete.ts +168 -0
  62. package/packages/orq-rc/src/funcs/memoryStoresDeleteDocument.ts +184 -0
  63. package/packages/orq-rc/src/funcs/memoryStoresDeleteMemory.ts +179 -0
  64. package/packages/orq-rc/src/funcs/memoryStoresList.ts +178 -0
  65. package/packages/orq-rc/src/funcs/memoryStoresListDocuments.ts +181 -0
  66. package/packages/orq-rc/src/funcs/memoryStoresListMemories.ts +176 -0
  67. package/packages/orq-rc/src/funcs/memoryStoresRetrieve.ts +177 -0
  68. package/packages/orq-rc/src/funcs/memoryStoresRetrieveDocument.ts +178 -0
  69. package/packages/orq-rc/src/funcs/memoryStoresRetrieveMemory.ts +173 -0
  70. package/packages/orq-rc/src/funcs/memoryStoresUpdate.ts +168 -0
  71. package/packages/orq-rc/src/funcs/memoryStoresUpdateDocument.ts +179 -0
  72. package/packages/orq-rc/src/funcs/memoryStoresUpdateMemory.ts +174 -0
  73. package/packages/orq-rc/src/funcs/postV2AgentsInternal.ts +159 -0
  74. package/packages/orq-rc/src/lib/config.ts +3 -3
  75. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  76. package/packages/orq-rc/src/mcp-server/server.ts +49 -1
  77. package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +37 -0
  78. package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +35 -0
  79. package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +37 -0
  80. package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +35 -0
  81. package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +37 -0
  82. package/packages/orq-rc/src/mcp-server/tools/agentsReviewAction.ts +37 -0
  83. package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +37 -0
  84. package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +37 -0
  85. package/packages/orq-rc/src/mcp-server/tools/budgetsCreate.ts +1 -1
  86. package/packages/orq-rc/src/mcp-server/tools/budgetsGet.ts +2 -2
  87. package/packages/orq-rc/src/mcp-server/tools/budgetsList.ts +2 -2
  88. package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreate.ts +35 -0
  89. package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreateDocument.ts +37 -0
  90. package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreateMemory.ts +37 -0
  91. package/packages/orq-rc/src/mcp-server/tools/memoryStoresDelete.ts +35 -0
  92. package/packages/orq-rc/src/mcp-server/tools/memoryStoresDeleteDocument.ts +40 -0
  93. package/packages/orq-rc/src/mcp-server/tools/memoryStoresDeleteMemory.ts +40 -0
  94. package/packages/orq-rc/src/mcp-server/tools/memoryStoresList.ts +37 -0
  95. package/packages/orq-rc/src/mcp-server/tools/memoryStoresListDocuments.ts +37 -0
  96. package/packages/orq-rc/src/mcp-server/tools/memoryStoresListMemories.ts +37 -0
  97. package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieve.ts +37 -0
  98. package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieveDocument.ts +37 -0
  99. package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieveMemory.ts +37 -0
  100. package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdate.ts +37 -0
  101. package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdateDocument.ts +37 -0
  102. package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdateMemory.ts +37 -0
  103. package/packages/orq-rc/src/mcp-server/tools/postV2AgentsInternal.ts +33 -0
  104. package/packages/orq-rc/src/models/errors/getagent.ts +80 -0
  105. package/packages/orq-rc/src/models/errors/getagenttask.ts +80 -0
  106. package/packages/orq-rc/src/models/errors/index.ts +3 -0
  107. package/packages/orq-rc/src/models/errors/streamrunagent.ts +80 -0
  108. package/packages/orq-rc/src/models/operations/createbudget.ts +57 -58
  109. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  110. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  111. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  113. package/packages/orq-rc/src/models/operations/createeval.ts +6383 -1075
  114. package/packages/orq-rc/src/models/operations/creatememory.ts +265 -0
  115. package/packages/orq-rc/src/models/operations/creatememorydocument.ts +284 -0
  116. package/packages/orq-rc/src/models/operations/creatememorystore.ts +1956 -0
  117. package/packages/orq-rc/src/models/operations/deletememory.ts +87 -0
  118. package/packages/orq-rc/src/models/operations/deletememorydocument.ts +98 -0
  119. package/packages/orq-rc/src/models/operations/deletememorystore.ts +78 -0
  120. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +36 -27
  121. package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +31 -24
  122. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  123. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  125. package/packages/orq-rc/src/models/operations/getagent.ts +1171 -0
  126. package/packages/orq-rc/src/models/operations/getagenttask.ts +257 -0
  127. package/packages/orq-rc/src/models/operations/getallmemories.ts +315 -0
  128. package/packages/orq-rc/src/models/operations/getallmemorydocuments.ts +335 -0
  129. package/packages/orq-rc/src/models/operations/getallmemorystores.ts +1241 -0
  130. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -11
  131. package/packages/orq-rc/src/models/operations/getevals.ts +1362 -1166
  132. package/packages/orq-rc/src/models/operations/index.ts +24 -0
  133. package/packages/orq-rc/src/models/operations/listactions.ts +517 -0
  134. package/packages/orq-rc/src/models/operations/listagents.ts +1335 -0
  135. package/packages/orq-rc/src/models/operations/listbudgets.ts +5 -15
  136. package/packages/orq-rc/src/models/operations/listchunks.ts +21 -21
  137. package/packages/orq-rc/src/models/operations/listcontacts.ts +44 -37
  138. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  139. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  140. package/packages/orq-rc/src/models/operations/listdatasources.ts +29 -22
  141. package/packages/orq-rc/src/models/operations/postv2agentsinternal.ts +103 -0
  142. package/packages/orq-rc/src/models/operations/retrieveaction.ts +419 -0
  143. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  144. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  145. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  146. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  147. package/packages/orq-rc/src/models/operations/retrievememory.ts +198 -0
  148. package/packages/orq-rc/src/models/operations/retrievememorydocument.ts +217 -0
  149. package/packages/orq-rc/src/models/operations/retrievememorystore.ts +1124 -0
  150. package/packages/orq-rc/src/models/operations/reviewaction.ts +258 -0
  151. package/packages/orq-rc/src/models/operations/runagent.ts +3428 -0
  152. package/packages/orq-rc/src/models/operations/streamrunagent.ts +3361 -0
  153. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -11
  154. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  155. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  156. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  157. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  158. package/packages/orq-rc/src/models/operations/updateeval.ts +6627 -1224
  159. package/packages/orq-rc/src/models/operations/updatememory.ts +274 -0
  160. package/packages/orq-rc/src/models/operations/updatememorydocument.ts +293 -0
  161. package/packages/orq-rc/src/models/operations/updatememorystore.ts +1348 -0
  162. package/packages/orq-rc/src/models/operations/updateprompt.ts +64 -19
  163. package/packages/orq-rc/src/sdk/agents.ts +148 -0
  164. package/packages/orq-rc/src/sdk/budgets.ts +5 -5
  165. package/packages/orq-rc/src/sdk/memorystores.ts +286 -0
  166. package/packages/orq-rc/src/sdk/sdk.ts +27 -1
  167. package/src/lib/config.ts +3 -3
  168. package/src/mcp-server/mcp-server.ts +1 -1
  169. package/src/mcp-server/server.ts +1 -1
  170. package/src/models/operations/createbudget.ts +2 -2
  171. package/src/models/operations/createcontact.ts +2 -2
  172. package/src/models/operations/createdataset.ts +2 -2
  173. package/src/models/operations/createdatasetitem.ts +2 -2
  174. package/src/models/operations/createdatasource.ts +2 -2
  175. package/src/models/operations/createeval.ts +16 -16
  176. package/src/models/operations/fileget.ts +2 -2
  177. package/src/models/operations/filelist.ts +2 -2
  178. package/src/models/operations/fileupload.ts +2 -2
  179. package/src/models/operations/getbudget.ts +2 -2
  180. package/src/models/operations/getevals.ts +28 -28
  181. package/src/models/operations/listbudgets.ts +2 -2
  182. package/src/models/operations/listcontacts.ts +2 -2
  183. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  184. package/src/models/operations/listdatasets.ts +2 -2
  185. package/src/models/operations/listdatasources.ts +2 -2
  186. package/src/models/operations/retrievecontact.ts +2 -2
  187. package/src/models/operations/retrievedatapoint.ts +2 -2
  188. package/src/models/operations/retrievedataset.ts +2 -2
  189. package/src/models/operations/retrievedatasource.ts +2 -2
  190. package/src/models/operations/updatebudget.ts +2 -2
  191. package/src/models/operations/updatecontact.ts +2 -2
  192. package/src/models/operations/updatedatapoint.ts +2 -2
  193. package/src/models/operations/updatedataset.ts +2 -2
  194. package/src/models/operations/updatedatasource.ts +2 -2
  195. package/src/models/operations/updateeval.ts +16 -16
  196. package/packages/orq-rc/examples/contactsCreate.example.ts +0 -42
@@ -87,7 +87,7 @@ export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType =
87
87
  typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType
88
88
  >;
89
89
 
90
- export type Typescript = {
90
+ export type DataTypescript = {
91
91
  id: string;
92
92
  description: string;
93
93
  created?: string | undefined;
@@ -157,7 +157,7 @@ export type GetEvalsDataEvalsResponse200ApplicationJSONType = ClosedEnum<
157
157
  typeof GetEvalsDataEvalsResponse200ApplicationJSONType
158
158
  >;
159
159
 
160
- export const RagasMetric = {
160
+ export const DataRagasMetric = {
161
161
  ContextPrecision: "context_precision",
162
162
  ContextRecall: "context_recall",
163
163
  ContextEntitiesRecall: "context_entities_recall",
@@ -171,9 +171,9 @@ export const RagasMetric = {
171
171
  Summarization: "summarization",
172
172
  NoiseSensitivity: "noise_sensitivity",
173
173
  } as const;
174
- export type RagasMetric = ClosedEnum<typeof RagasMetric>;
174
+ export type DataRagasMetric = ClosedEnum<typeof DataRagasMetric>;
175
175
 
176
- export type Ragas = {
176
+ export type DataRagas = {
177
177
  id: string;
178
178
  description: string;
179
179
  created?: string | undefined;
@@ -183,7 +183,7 @@ export type Ragas = {
183
183
  | GetEvalsGuardrailConfigEvalsResponse200Boolean
184
184
  | undefined;
185
185
  type: GetEvalsDataEvalsResponse200ApplicationJSONType;
186
- ragasMetric: RagasMetric;
186
+ ragasMetric: DataRagasMetric;
187
187
  key: string;
188
188
  model: string;
189
189
  };
@@ -253,7 +253,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
253
253
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type
254
254
  >;
255
255
 
256
- export type ThirtyFive = {
256
+ export type GetEvalsFunctionParams35 = {
257
257
  type:
258
258
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type;
259
259
  };
@@ -267,7 +267,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
267
267
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type
268
268
  >;
269
269
 
270
- export type ThirtyFour = {
270
+ export type GetEvalsFunctionParams34 = {
271
271
  type:
272
272
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type;
273
273
  };
@@ -281,7 +281,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
281
281
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type
282
282
  >;
283
283
 
284
- export type ThirtyThree = {
284
+ export type GetEvalsFunctionParams33 = {
285
285
  type:
286
286
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type;
287
287
  };
@@ -295,7 +295,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
295
295
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type
296
296
  >;
297
297
 
298
- export type ThirtyTwo = {
298
+ export type GetEvalsFunctionParams32 = {
299
299
  type:
300
300
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type;
301
301
  };
@@ -309,7 +309,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
309
309
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type
310
310
  >;
311
311
 
312
- export type ThirtyOne = {
312
+ export type GetEvalsFunctionParams31 = {
313
313
  type:
314
314
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type;
315
315
  };
@@ -323,7 +323,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
323
323
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type
324
324
  >;
325
325
 
326
- export type Thirty = {
326
+ export type GetEvalsFunctionParams30 = {
327
327
  type:
328
328
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type;
329
329
  };
@@ -337,7 +337,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
337
337
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type
338
338
  >;
339
339
 
340
- export type TwentyNine = {
340
+ export type GetEvalsFunctionParams29 = {
341
341
  type:
342
342
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type;
343
343
  };
@@ -351,7 +351,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
351
351
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type
352
352
  >;
353
353
 
354
- export type TwentyEight = {
354
+ export type GetEvalsFunctionParams28 = {
355
355
  type:
356
356
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type;
357
357
  };
@@ -365,7 +365,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
365
365
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type
366
366
  >;
367
367
 
368
- export type TwentySeven = {
368
+ export type GetEvalsFunctionParams27 = {
369
369
  type:
370
370
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type;
371
371
  };
@@ -379,7 +379,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
379
379
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type
380
380
  >;
381
381
 
382
- export type TwentySix = {
382
+ export type GetEvalsFunctionParams26 = {
383
383
  type:
384
384
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type;
385
385
  keywords: Array<string>;
@@ -394,7 +394,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
394
394
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type
395
395
  >;
396
396
 
397
- export type TwentyFive = {
397
+ export type GetEvalsFunctionParams25 = {
398
398
  type:
399
399
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type;
400
400
  topic: string;
@@ -409,7 +409,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
409
409
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData524Type
410
410
  >;
411
411
 
412
- export type TwentyFour = {
412
+ export type GetEvalsFunctionParams24 = {
413
413
  type:
414
414
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData524Type;
415
415
  };
@@ -423,7 +423,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
423
423
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData523Type
424
424
  >;
425
425
 
426
- export type TwentyThree = {
426
+ export type GetEvalsFunctionParams23 = {
427
427
  type:
428
428
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData523Type;
429
429
  };
@@ -437,7 +437,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
437
437
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData522Type
438
438
  >;
439
439
 
440
- export type TwentyTwo = {
440
+ export type GetEvalsFunctionParams22 = {
441
441
  type:
442
442
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData522Type;
443
443
  };
@@ -451,7 +451,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
451
451
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData521Type
452
452
  >;
453
453
 
454
- export type TwentyOne = {
454
+ export type GetEvalsFunctionParams21 = {
455
455
  type:
456
456
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData521Type;
457
457
  };
@@ -465,7 +465,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
465
465
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData520Type
466
466
  >;
467
467
 
468
- export type Twenty = {
468
+ export type GetEvalsFunctionParams20 = {
469
469
  type:
470
470
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData520Type;
471
471
  };
@@ -479,7 +479,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
479
479
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData519Type
480
480
  >;
481
481
 
482
- export type Nineteen = {
482
+ export type GetEvalsFunctionParams19 = {
483
483
  type:
484
484
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData519Type;
485
485
  };
@@ -493,7 +493,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
493
493
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData518Type
494
494
  >;
495
495
 
496
- export type Eighteen = {
496
+ export type GetEvalsFunctionParams18 = {
497
497
  type:
498
498
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData518Type;
499
499
  };
@@ -507,7 +507,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
507
507
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData517Type
508
508
  >;
509
509
 
510
- export type Seventeen = {
510
+ export type GetEvalsFunctionParams17 = {
511
511
  type:
512
512
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData517Type;
513
513
  };
@@ -521,7 +521,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
521
521
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData516Type
522
522
  >;
523
523
 
524
- export type Sixteen = {
524
+ export type GetEvalsFunctionParams16 = {
525
525
  type:
526
526
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData516Type;
527
527
  };
@@ -535,7 +535,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
535
535
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData515Type
536
536
  >;
537
537
 
538
- export type Fifteen = {
538
+ export type GetEvalsFunctionParams15 = {
539
539
  type:
540
540
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData515Type;
541
541
  pattern: string;
@@ -550,7 +550,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
550
550
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData514Type
551
551
  >;
552
552
 
553
- export type Fourteen = {
553
+ export type GetEvalsFunctionParams14 = {
554
554
  type:
555
555
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData514Type;
556
556
  };
@@ -564,7 +564,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
564
564
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData513Type
565
565
  >;
566
566
 
567
- export type Thirteen = {
567
+ export type GetEvalsFunctionParams13 = {
568
568
  type:
569
569
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData513Type;
570
570
  value: number;
@@ -579,7 +579,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
579
579
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData512Type
580
580
  >;
581
581
 
582
- export type Twelve = {
582
+ export type GetEvalsFunctionParams12 = {
583
583
  type:
584
584
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData512Type;
585
585
  min: number;
@@ -595,7 +595,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
595
595
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData511Type
596
596
  >;
597
597
 
598
- export type Eleven = {
598
+ export type GetEvalsFunctionParams11 = {
599
599
  type:
600
600
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData511Type;
601
601
  value: number;
@@ -610,7 +610,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
610
610
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type
611
611
  >;
612
612
 
613
- export type Ten = {
613
+ export type GetEvalsFunctionParams10 = {
614
614
  type:
615
615
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type;
616
616
  };
@@ -624,7 +624,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
624
624
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type
625
625
  >;
626
626
 
627
- export type Nine = {
627
+ export type GetEvalsFunctionParams9 = {
628
628
  type:
629
629
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type;
630
630
  value: string;
@@ -639,7 +639,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDat
639
639
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDataType
640
640
  >;
641
641
 
642
- export type Eight = {
642
+ export type GetEvalsFunctionParams8 = {
643
643
  type:
644
644
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDataType;
645
645
  value: string;
@@ -654,7 +654,7 @@ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyTyp
654
654
  typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType
655
655
  >;
656
656
 
657
- export type Seven = {
657
+ export type GetEvalsFunctionParams7 = {
658
658
  type: GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType;
659
659
  };
660
660
 
@@ -664,7 +664,7 @@ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType = {
664
664
  export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType =
665
665
  ClosedEnum<typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType>;
666
666
 
667
- export type Six = {
667
+ export type GetEvalsFunctionParams6 = {
668
668
  type: GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType;
669
669
  };
670
670
 
@@ -675,7 +675,7 @@ export type GetEvalsFunctionParamsEvalsResponse200Type = ClosedEnum<
675
675
  typeof GetEvalsFunctionParamsEvalsResponse200Type
676
676
  >;
677
677
 
678
- export type Five = {
678
+ export type GetEvalsFunctionParams5 = {
679
679
  type: GetEvalsFunctionParamsEvalsResponse200Type;
680
680
  };
681
681
 
@@ -686,7 +686,7 @@ export type GetEvalsFunctionParamsEvalsResponseType = ClosedEnum<
686
686
  typeof GetEvalsFunctionParamsEvalsResponseType
687
687
  >;
688
688
 
689
- export type FunctionParams4 = {
689
+ export type GetEvalsFunctionParams4 = {
690
690
  type: GetEvalsFunctionParamsEvalsResponseType;
691
691
  keywords: Array<string>;
692
692
  };
@@ -698,7 +698,7 @@ export type GetEvalsFunctionParamsEvalsType = ClosedEnum<
698
698
  typeof GetEvalsFunctionParamsEvalsType
699
699
  >;
700
700
 
701
- export type FunctionParams3 = {
701
+ export type GetEvalsFunctionParams3 = {
702
702
  type: GetEvalsFunctionParamsEvalsType;
703
703
  keywords: Array<string>;
704
704
  };
@@ -710,57 +710,62 @@ export type GetEvalsFunctionParamsType = ClosedEnum<
710
710
  typeof GetEvalsFunctionParamsType
711
711
  >;
712
712
 
713
- export type FunctionParams2 = {
713
+ export type GetEvalsFunctionParams2 = {
714
714
  type: GetEvalsFunctionParamsType;
715
715
  keywords: Array<string>;
716
716
  };
717
717
 
718
- export const FunctionParamsType = {
719
- Contains: "contains",
720
- } as const;
721
- export type FunctionParamsType = ClosedEnum<typeof FunctionParamsType>;
718
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type =
719
+ {
720
+ Contains: "contains",
721
+ } as const;
722
+ export type GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type =
723
+ ClosedEnum<
724
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type
725
+ >;
722
726
 
723
- export type FunctionParams1 = {
724
- type: FunctionParamsType;
727
+ export type GetEvalsFunctionParams1 = {
728
+ type:
729
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type;
725
730
  value: string;
726
731
  };
727
732
 
728
733
  export type DataFunctionParams =
729
- | Twelve
730
- | FunctionParams1
731
- | FunctionParams2
732
- | FunctionParams3
733
- | FunctionParams4
734
- | Eight
735
- | Nine
736
- | Eleven
737
- | Thirteen
738
- | Fifteen
739
- | TwentyFive
740
- | TwentySix
741
- | Five
742
- | Six
743
- | Seven
744
- | Ten
745
- | Fourteen
746
- | Sixteen
747
- | Seventeen
748
- | Eighteen
749
- | Nineteen
750
- | Twenty
751
- | TwentyOne
752
- | TwentyTwo
753
- | TwentyThree
754
- | TwentyFour
755
- | TwentySeven
756
- | TwentyEight
757
- | TwentyNine
758
- | Thirty
759
- | ThirtyOne
760
- | ThirtyTwo
761
- | ThirtyThree
762
- | ThirtyFour
763
- | ThirtyFive;
734
+ | GetEvalsFunctionParams12
735
+ | GetEvalsFunctionParams1
736
+ | GetEvalsFunctionParams2
737
+ | GetEvalsFunctionParams3
738
+ | GetEvalsFunctionParams4
739
+ | GetEvalsFunctionParams8
740
+ | GetEvalsFunctionParams9
741
+ | GetEvalsFunctionParams11
742
+ | GetEvalsFunctionParams13
743
+ | GetEvalsFunctionParams15
744
+ | GetEvalsFunctionParams25
745
+ | GetEvalsFunctionParams26
746
+ | GetEvalsFunctionParams5
747
+ | GetEvalsFunctionParams6
748
+ | GetEvalsFunctionParams7
749
+ | GetEvalsFunctionParams10
750
+ | GetEvalsFunctionParams14
751
+ | GetEvalsFunctionParams16
752
+ | GetEvalsFunctionParams17
753
+ | GetEvalsFunctionParams18
754
+ | GetEvalsFunctionParams19
755
+ | GetEvalsFunctionParams20
756
+ | GetEvalsFunctionParams21
757
+ | GetEvalsFunctionParams22
758
+ | GetEvalsFunctionParams23
759
+ | GetEvalsFunctionParams24
760
+ | GetEvalsFunctionParams27
761
+ | GetEvalsFunctionParams28
762
+ | GetEvalsFunctionParams29
763
+ | GetEvalsFunctionParams30
764
+ | GetEvalsFunctionParams31
765
+ | GetEvalsFunctionParams32
766
+ | GetEvalsFunctionParams33
767
+ | GetEvalsFunctionParams34
768
+ | GetEvalsFunctionParams35;
764
769
 
765
770
  export type DataFunction = {
766
771
  id: string;
@@ -773,41 +778,41 @@ export type DataFunction = {
773
778
  | undefined;
774
779
  type: GetEvalsDataEvalsResponse200Type;
775
780
  functionParams:
776
- | Twelve
777
- | FunctionParams1
778
- | FunctionParams2
779
- | FunctionParams3
780
- | FunctionParams4
781
- | Eight
782
- | Nine
783
- | Eleven
784
- | Thirteen
785
- | Fifteen
786
- | TwentyFive
787
- | TwentySix
788
- | Five
789
- | Six
790
- | Seven
791
- | Ten
792
- | Fourteen
793
- | Sixteen
794
- | Seventeen
795
- | Eighteen
796
- | Nineteen
797
- | Twenty
798
- | TwentyOne
799
- | TwentyTwo
800
- | TwentyThree
801
- | TwentyFour
802
- | TwentySeven
803
- | TwentyEight
804
- | TwentyNine
805
- | Thirty
806
- | ThirtyOne
807
- | ThirtyTwo
808
- | ThirtyThree
809
- | ThirtyFour
810
- | ThirtyFive;
781
+ | GetEvalsFunctionParams12
782
+ | GetEvalsFunctionParams1
783
+ | GetEvalsFunctionParams2
784
+ | GetEvalsFunctionParams3
785
+ | GetEvalsFunctionParams4
786
+ | GetEvalsFunctionParams8
787
+ | GetEvalsFunctionParams9
788
+ | GetEvalsFunctionParams11
789
+ | GetEvalsFunctionParams13
790
+ | GetEvalsFunctionParams15
791
+ | GetEvalsFunctionParams25
792
+ | GetEvalsFunctionParams26
793
+ | GetEvalsFunctionParams5
794
+ | GetEvalsFunctionParams6
795
+ | GetEvalsFunctionParams7
796
+ | GetEvalsFunctionParams10
797
+ | GetEvalsFunctionParams14
798
+ | GetEvalsFunctionParams16
799
+ | GetEvalsFunctionParams17
800
+ | GetEvalsFunctionParams18
801
+ | GetEvalsFunctionParams19
802
+ | GetEvalsFunctionParams20
803
+ | GetEvalsFunctionParams21
804
+ | GetEvalsFunctionParams22
805
+ | GetEvalsFunctionParams23
806
+ | GetEvalsFunctionParams24
807
+ | GetEvalsFunctionParams27
808
+ | GetEvalsFunctionParams28
809
+ | GetEvalsFunctionParams29
810
+ | GetEvalsFunctionParams30
811
+ | GetEvalsFunctionParams31
812
+ | GetEvalsFunctionParams32
813
+ | GetEvalsFunctionParams33
814
+ | GetEvalsFunctionParams34
815
+ | GetEvalsFunctionParams35;
811
816
  key: string;
812
817
  };
813
818
 
@@ -1091,11 +1096,11 @@ export type DataLLM = {
1091
1096
  export type GetEvalsData =
1092
1097
  | DataHTTP
1093
1098
  | DataLLM
1094
- | Ragas
1099
+ | DataRagas
1095
1100
  | DataJSON
1096
1101
  | DataPython
1097
1102
  | DataFunction
1098
- | Typescript;
1103
+ | DataTypescript;
1099
1104
 
1100
1105
  /**
1101
1106
  * Returns a list of evals
@@ -1105,11 +1110,11 @@ export type GetEvalsResponseBody = {
1105
1110
  data: Array<
1106
1111
  | DataHTTP
1107
1112
  | DataLLM
1108
- | Ragas
1113
+ | DataRagas
1109
1114
  | DataJSON
1110
1115
  | DataPython
1111
1116
  | DataFunction
1112
- | Typescript
1117
+ | DataTypescript
1113
1118
  >;
1114
1119
  hasMore: boolean;
1115
1120
  };
@@ -1544,15 +1549,15 @@ export namespace GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$ {
1544
1549
  }
1545
1550
 
1546
1551
  /** @internal */
1547
- export const Typescript$inboundSchema: z.ZodType<
1548
- Typescript,
1552
+ export const DataTypescript$inboundSchema: z.ZodType<
1553
+ DataTypescript,
1549
1554
  z.ZodTypeDef,
1550
1555
  unknown
1551
1556
  > = z.object({
1552
1557
  _id: z.string(),
1553
1558
  description: z.string(),
1554
- created: z.string().default("2025-09-05T20:13:46.558Z"),
1555
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
1559
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
1560
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
1556
1561
  guardrail_config: z.union([
1557
1562
  z.lazy(() =>
1558
1563
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -1573,7 +1578,7 @@ export const Typescript$inboundSchema: z.ZodType<
1573
1578
  });
1574
1579
 
1575
1580
  /** @internal */
1576
- export type Typescript$Outbound = {
1581
+ export type DataTypescript$Outbound = {
1577
1582
  _id: string;
1578
1583
  description: string;
1579
1584
  created: string;
@@ -1588,15 +1593,15 @@ export type Typescript$Outbound = {
1588
1593
  };
1589
1594
 
1590
1595
  /** @internal */
1591
- export const Typescript$outboundSchema: z.ZodType<
1592
- Typescript$Outbound,
1596
+ export const DataTypescript$outboundSchema: z.ZodType<
1597
+ DataTypescript$Outbound,
1593
1598
  z.ZodTypeDef,
1594
- Typescript
1599
+ DataTypescript
1595
1600
  > = z.object({
1596
1601
  id: z.string(),
1597
1602
  description: z.string(),
1598
- created: z.string().default("2025-09-05T20:13:46.558Z"),
1599
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
1603
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
1604
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
1600
1605
  guardrailConfig: z.union([
1601
1606
  z.lazy(() =>
1602
1607
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -1620,26 +1625,26 @@ export const Typescript$outboundSchema: z.ZodType<
1620
1625
  * @internal
1621
1626
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1622
1627
  */
1623
- export namespace Typescript$ {
1624
- /** @deprecated use `Typescript$inboundSchema` instead. */
1625
- export const inboundSchema = Typescript$inboundSchema;
1626
- /** @deprecated use `Typescript$outboundSchema` instead. */
1627
- export const outboundSchema = Typescript$outboundSchema;
1628
- /** @deprecated use `Typescript$Outbound` instead. */
1629
- export type Outbound = Typescript$Outbound;
1628
+ export namespace DataTypescript$ {
1629
+ /** @deprecated use `DataTypescript$inboundSchema` instead. */
1630
+ export const inboundSchema = DataTypescript$inboundSchema;
1631
+ /** @deprecated use `DataTypescript$outboundSchema` instead. */
1632
+ export const outboundSchema = DataTypescript$outboundSchema;
1633
+ /** @deprecated use `DataTypescript$Outbound` instead. */
1634
+ export type Outbound = DataTypescript$Outbound;
1630
1635
  }
1631
1636
 
1632
- export function typescriptToJSON(typescript: Typescript): string {
1633
- return JSON.stringify(Typescript$outboundSchema.parse(typescript));
1637
+ export function dataTypescriptToJSON(dataTypescript: DataTypescript): string {
1638
+ return JSON.stringify(DataTypescript$outboundSchema.parse(dataTypescript));
1634
1639
  }
1635
1640
 
1636
- export function typescriptFromJSON(
1641
+ export function dataTypescriptFromJSON(
1637
1642
  jsonString: string,
1638
- ): SafeParseResult<Typescript, SDKValidationError> {
1643
+ ): SafeParseResult<DataTypescript, SDKValidationError> {
1639
1644
  return safeParse(
1640
1645
  jsonString,
1641
- (x) => Typescript$inboundSchema.parse(JSON.parse(x)),
1642
- `Failed to parse 'Typescript' from JSON`,
1646
+ (x) => DataTypescript$inboundSchema.parse(JSON.parse(x)),
1647
+ `Failed to parse 'DataTypescript' from JSON`,
1643
1648
  );
1644
1649
  }
1645
1650
 
@@ -1969,51 +1974,54 @@ export namespace GetEvalsDataEvalsResponse200ApplicationJSONType$ {
1969
1974
  }
1970
1975
 
1971
1976
  /** @internal */
1972
- export const RagasMetric$inboundSchema: z.ZodNativeEnum<typeof RagasMetric> = z
1973
- .nativeEnum(RagasMetric);
1977
+ export const DataRagasMetric$inboundSchema: z.ZodNativeEnum<
1978
+ typeof DataRagasMetric
1979
+ > = z.nativeEnum(DataRagasMetric);
1974
1980
 
1975
1981
  /** @internal */
1976
- export const RagasMetric$outboundSchema: z.ZodNativeEnum<typeof RagasMetric> =
1977
- RagasMetric$inboundSchema;
1982
+ export const DataRagasMetric$outboundSchema: z.ZodNativeEnum<
1983
+ typeof DataRagasMetric
1984
+ > = DataRagasMetric$inboundSchema;
1978
1985
 
1979
1986
  /**
1980
1987
  * @internal
1981
1988
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1982
1989
  */
1983
- export namespace RagasMetric$ {
1984
- /** @deprecated use `RagasMetric$inboundSchema` instead. */
1985
- export const inboundSchema = RagasMetric$inboundSchema;
1986
- /** @deprecated use `RagasMetric$outboundSchema` instead. */
1987
- export const outboundSchema = RagasMetric$outboundSchema;
1990
+ export namespace DataRagasMetric$ {
1991
+ /** @deprecated use `DataRagasMetric$inboundSchema` instead. */
1992
+ export const inboundSchema = DataRagasMetric$inboundSchema;
1993
+ /** @deprecated use `DataRagasMetric$outboundSchema` instead. */
1994
+ export const outboundSchema = DataRagasMetric$outboundSchema;
1988
1995
  }
1989
1996
 
1990
1997
  /** @internal */
1991
- export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
1992
- .object({
1993
- _id: z.string(),
1994
- description: z.string(),
1995
- created: z.string().default("2025-09-05T20:13:46.558Z"),
1996
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
1997
- guardrail_config: z.union([
1998
- z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
1999
- z.lazy(() =>
2000
- GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema
2001
- ),
2002
- ]).optional(),
2003
- type: GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema,
2004
- ragas_metric: RagasMetric$inboundSchema,
2005
- key: z.string(),
2006
- model: z.string(),
2007
- }).transform((v) => {
2008
- return remap$(v, {
2009
- "_id": "id",
2010
- "guardrail_config": "guardrailConfig",
2011
- "ragas_metric": "ragasMetric",
2012
- });
1998
+ export const DataRagas$inboundSchema: z.ZodType<
1999
+ DataRagas,
2000
+ z.ZodTypeDef,
2001
+ unknown
2002
+ > = z.object({
2003
+ _id: z.string(),
2004
+ description: z.string(),
2005
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
2006
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
2007
+ guardrail_config: z.union([
2008
+ z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
2009
+ z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
2010
+ ]).optional(),
2011
+ type: GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema,
2012
+ ragas_metric: DataRagasMetric$inboundSchema,
2013
+ key: z.string(),
2014
+ model: z.string(),
2015
+ }).transform((v) => {
2016
+ return remap$(v, {
2017
+ "_id": "id",
2018
+ "guardrail_config": "guardrailConfig",
2019
+ "ragas_metric": "ragasMetric",
2013
2020
  });
2021
+ });
2014
2022
 
2015
2023
  /** @internal */
2016
- export type Ragas$Outbound = {
2024
+ export type DataRagas$Outbound = {
2017
2025
  _id: string;
2018
2026
  description: string;
2019
2027
  created: string;
@@ -2029,21 +2037,21 @@ export type Ragas$Outbound = {
2029
2037
  };
2030
2038
 
2031
2039
  /** @internal */
2032
- export const Ragas$outboundSchema: z.ZodType<
2033
- Ragas$Outbound,
2040
+ export const DataRagas$outboundSchema: z.ZodType<
2041
+ DataRagas$Outbound,
2034
2042
  z.ZodTypeDef,
2035
- Ragas
2043
+ DataRagas
2036
2044
  > = z.object({
2037
2045
  id: z.string(),
2038
2046
  description: z.string(),
2039
- created: z.string().default("2025-09-05T20:13:46.558Z"),
2040
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
2047
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
2048
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
2041
2049
  guardrailConfig: z.union([
2042
2050
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
2043
2051
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
2044
2052
  ]).optional(),
2045
2053
  type: GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema,
2046
- ragasMetric: RagasMetric$outboundSchema,
2054
+ ragasMetric: DataRagasMetric$outboundSchema,
2047
2055
  key: z.string(),
2048
2056
  model: z.string(),
2049
2057
  }).transform((v) => {
@@ -2058,26 +2066,26 @@ export const Ragas$outboundSchema: z.ZodType<
2058
2066
  * @internal
2059
2067
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2060
2068
  */
2061
- export namespace Ragas$ {
2062
- /** @deprecated use `Ragas$inboundSchema` instead. */
2063
- export const inboundSchema = Ragas$inboundSchema;
2064
- /** @deprecated use `Ragas$outboundSchema` instead. */
2065
- export const outboundSchema = Ragas$outboundSchema;
2066
- /** @deprecated use `Ragas$Outbound` instead. */
2067
- export type Outbound = Ragas$Outbound;
2069
+ export namespace DataRagas$ {
2070
+ /** @deprecated use `DataRagas$inboundSchema` instead. */
2071
+ export const inboundSchema = DataRagas$inboundSchema;
2072
+ /** @deprecated use `DataRagas$outboundSchema` instead. */
2073
+ export const outboundSchema = DataRagas$outboundSchema;
2074
+ /** @deprecated use `DataRagas$Outbound` instead. */
2075
+ export type Outbound = DataRagas$Outbound;
2068
2076
  }
2069
2077
 
2070
- export function ragasToJSON(ragas: Ragas): string {
2071
- return JSON.stringify(Ragas$outboundSchema.parse(ragas));
2078
+ export function dataRagasToJSON(dataRagas: DataRagas): string {
2079
+ return JSON.stringify(DataRagas$outboundSchema.parse(dataRagas));
2072
2080
  }
2073
2081
 
2074
- export function ragasFromJSON(
2082
+ export function dataRagasFromJSON(
2075
2083
  jsonString: string,
2076
- ): SafeParseResult<Ragas, SDKValidationError> {
2084
+ ): SafeParseResult<DataRagas, SDKValidationError> {
2077
2085
  return safeParse(
2078
2086
  jsonString,
2079
- (x) => Ragas$inboundSchema.parse(JSON.parse(x)),
2080
- `Failed to parse 'Ragas' from JSON`,
2087
+ (x) => DataRagas$inboundSchema.parse(JSON.parse(x)),
2088
+ `Failed to parse 'DataRagas' from JSON`,
2081
2089
  );
2082
2090
  }
2083
2091
 
@@ -2427,8 +2435,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2427
2435
  }
2428
2436
 
2429
2437
  /** @internal */
2430
- export const ThirtyFive$inboundSchema: z.ZodType<
2431
- ThirtyFive,
2438
+ export const GetEvalsFunctionParams35$inboundSchema: z.ZodType<
2439
+ GetEvalsFunctionParams35,
2432
2440
  z.ZodTypeDef,
2433
2441
  unknown
2434
2442
  > = z.object({
@@ -2437,15 +2445,15 @@ export const ThirtyFive$inboundSchema: z.ZodType<
2437
2445
  });
2438
2446
 
2439
2447
  /** @internal */
2440
- export type ThirtyFive$Outbound = {
2448
+ export type GetEvalsFunctionParams35$Outbound = {
2441
2449
  type: string;
2442
2450
  };
2443
2451
 
2444
2452
  /** @internal */
2445
- export const ThirtyFive$outboundSchema: z.ZodType<
2446
- ThirtyFive$Outbound,
2453
+ export const GetEvalsFunctionParams35$outboundSchema: z.ZodType<
2454
+ GetEvalsFunctionParams35$Outbound,
2447
2455
  z.ZodTypeDef,
2448
- ThirtyFive
2456
+ GetEvalsFunctionParams35
2449
2457
  > = z.object({
2450
2458
  type:
2451
2459
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type$outboundSchema,
@@ -2455,26 +2463,30 @@ export const ThirtyFive$outboundSchema: z.ZodType<
2455
2463
  * @internal
2456
2464
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2457
2465
  */
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;
2466
+ export namespace GetEvalsFunctionParams35$ {
2467
+ /** @deprecated use `GetEvalsFunctionParams35$inboundSchema` instead. */
2468
+ export const inboundSchema = GetEvalsFunctionParams35$inboundSchema;
2469
+ /** @deprecated use `GetEvalsFunctionParams35$outboundSchema` instead. */
2470
+ export const outboundSchema = GetEvalsFunctionParams35$outboundSchema;
2471
+ /** @deprecated use `GetEvalsFunctionParams35$Outbound` instead. */
2472
+ export type Outbound = GetEvalsFunctionParams35$Outbound;
2465
2473
  }
2466
2474
 
2467
- export function thirtyFiveToJSON(thirtyFive: ThirtyFive): string {
2468
- return JSON.stringify(ThirtyFive$outboundSchema.parse(thirtyFive));
2475
+ export function getEvalsFunctionParams35ToJSON(
2476
+ getEvalsFunctionParams35: GetEvalsFunctionParams35,
2477
+ ): string {
2478
+ return JSON.stringify(
2479
+ GetEvalsFunctionParams35$outboundSchema.parse(getEvalsFunctionParams35),
2480
+ );
2469
2481
  }
2470
2482
 
2471
- export function thirtyFiveFromJSON(
2483
+ export function getEvalsFunctionParams35FromJSON(
2472
2484
  jsonString: string,
2473
- ): SafeParseResult<ThirtyFive, SDKValidationError> {
2485
+ ): SafeParseResult<GetEvalsFunctionParams35, SDKValidationError> {
2474
2486
  return safeParse(
2475
2487
  jsonString,
2476
- (x) => ThirtyFive$inboundSchema.parse(JSON.parse(x)),
2477
- `Failed to parse 'ThirtyFive' from JSON`,
2488
+ (x) => GetEvalsFunctionParams35$inboundSchema.parse(JSON.parse(x)),
2489
+ `Failed to parse 'GetEvalsFunctionParams35' from JSON`,
2478
2490
  );
2479
2491
  }
2480
2492
 
@@ -2507,8 +2519,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2507
2519
  }
2508
2520
 
2509
2521
  /** @internal */
2510
- export const ThirtyFour$inboundSchema: z.ZodType<
2511
- ThirtyFour,
2522
+ export const GetEvalsFunctionParams34$inboundSchema: z.ZodType<
2523
+ GetEvalsFunctionParams34,
2512
2524
  z.ZodTypeDef,
2513
2525
  unknown
2514
2526
  > = z.object({
@@ -2517,15 +2529,15 @@ export const ThirtyFour$inboundSchema: z.ZodType<
2517
2529
  });
2518
2530
 
2519
2531
  /** @internal */
2520
- export type ThirtyFour$Outbound = {
2532
+ export type GetEvalsFunctionParams34$Outbound = {
2521
2533
  type: string;
2522
2534
  };
2523
2535
 
2524
2536
  /** @internal */
2525
- export const ThirtyFour$outboundSchema: z.ZodType<
2526
- ThirtyFour$Outbound,
2537
+ export const GetEvalsFunctionParams34$outboundSchema: z.ZodType<
2538
+ GetEvalsFunctionParams34$Outbound,
2527
2539
  z.ZodTypeDef,
2528
- ThirtyFour
2540
+ GetEvalsFunctionParams34
2529
2541
  > = z.object({
2530
2542
  type:
2531
2543
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData534Type$outboundSchema,
@@ -2535,26 +2547,30 @@ export const ThirtyFour$outboundSchema: z.ZodType<
2535
2547
  * @internal
2536
2548
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2537
2549
  */
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;
2550
+ export namespace GetEvalsFunctionParams34$ {
2551
+ /** @deprecated use `GetEvalsFunctionParams34$inboundSchema` instead. */
2552
+ export const inboundSchema = GetEvalsFunctionParams34$inboundSchema;
2553
+ /** @deprecated use `GetEvalsFunctionParams34$outboundSchema` instead. */
2554
+ export const outboundSchema = GetEvalsFunctionParams34$outboundSchema;
2555
+ /** @deprecated use `GetEvalsFunctionParams34$Outbound` instead. */
2556
+ export type Outbound = GetEvalsFunctionParams34$Outbound;
2545
2557
  }
2546
2558
 
2547
- export function thirtyFourToJSON(thirtyFour: ThirtyFour): string {
2548
- return JSON.stringify(ThirtyFour$outboundSchema.parse(thirtyFour));
2559
+ export function getEvalsFunctionParams34ToJSON(
2560
+ getEvalsFunctionParams34: GetEvalsFunctionParams34,
2561
+ ): string {
2562
+ return JSON.stringify(
2563
+ GetEvalsFunctionParams34$outboundSchema.parse(getEvalsFunctionParams34),
2564
+ );
2549
2565
  }
2550
2566
 
2551
- export function thirtyFourFromJSON(
2567
+ export function getEvalsFunctionParams34FromJSON(
2552
2568
  jsonString: string,
2553
- ): SafeParseResult<ThirtyFour, SDKValidationError> {
2569
+ ): SafeParseResult<GetEvalsFunctionParams34, SDKValidationError> {
2554
2570
  return safeParse(
2555
2571
  jsonString,
2556
- (x) => ThirtyFour$inboundSchema.parse(JSON.parse(x)),
2557
- `Failed to parse 'ThirtyFour' from JSON`,
2572
+ (x) => GetEvalsFunctionParams34$inboundSchema.parse(JSON.parse(x)),
2573
+ `Failed to parse 'GetEvalsFunctionParams34' from JSON`,
2558
2574
  );
2559
2575
  }
2560
2576
 
@@ -2587,8 +2603,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2587
2603
  }
2588
2604
 
2589
2605
  /** @internal */
2590
- export const ThirtyThree$inboundSchema: z.ZodType<
2591
- ThirtyThree,
2606
+ export const GetEvalsFunctionParams33$inboundSchema: z.ZodType<
2607
+ GetEvalsFunctionParams33,
2592
2608
  z.ZodTypeDef,
2593
2609
  unknown
2594
2610
  > = z.object({
@@ -2597,15 +2613,15 @@ export const ThirtyThree$inboundSchema: z.ZodType<
2597
2613
  });
2598
2614
 
2599
2615
  /** @internal */
2600
- export type ThirtyThree$Outbound = {
2616
+ export type GetEvalsFunctionParams33$Outbound = {
2601
2617
  type: string;
2602
2618
  };
2603
2619
 
2604
2620
  /** @internal */
2605
- export const ThirtyThree$outboundSchema: z.ZodType<
2606
- ThirtyThree$Outbound,
2621
+ export const GetEvalsFunctionParams33$outboundSchema: z.ZodType<
2622
+ GetEvalsFunctionParams33$Outbound,
2607
2623
  z.ZodTypeDef,
2608
- ThirtyThree
2624
+ GetEvalsFunctionParams33
2609
2625
  > = z.object({
2610
2626
  type:
2611
2627
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData533Type$outboundSchema,
@@ -2615,26 +2631,30 @@ export const ThirtyThree$outboundSchema: z.ZodType<
2615
2631
  * @internal
2616
2632
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2617
2633
  */
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;
2634
+ export namespace GetEvalsFunctionParams33$ {
2635
+ /** @deprecated use `GetEvalsFunctionParams33$inboundSchema` instead. */
2636
+ export const inboundSchema = GetEvalsFunctionParams33$inboundSchema;
2637
+ /** @deprecated use `GetEvalsFunctionParams33$outboundSchema` instead. */
2638
+ export const outboundSchema = GetEvalsFunctionParams33$outboundSchema;
2639
+ /** @deprecated use `GetEvalsFunctionParams33$Outbound` instead. */
2640
+ export type Outbound = GetEvalsFunctionParams33$Outbound;
2625
2641
  }
2626
2642
 
2627
- export function thirtyThreeToJSON(thirtyThree: ThirtyThree): string {
2628
- return JSON.stringify(ThirtyThree$outboundSchema.parse(thirtyThree));
2643
+ export function getEvalsFunctionParams33ToJSON(
2644
+ getEvalsFunctionParams33: GetEvalsFunctionParams33,
2645
+ ): string {
2646
+ return JSON.stringify(
2647
+ GetEvalsFunctionParams33$outboundSchema.parse(getEvalsFunctionParams33),
2648
+ );
2629
2649
  }
2630
2650
 
2631
- export function thirtyThreeFromJSON(
2651
+ export function getEvalsFunctionParams33FromJSON(
2632
2652
  jsonString: string,
2633
- ): SafeParseResult<ThirtyThree, SDKValidationError> {
2653
+ ): SafeParseResult<GetEvalsFunctionParams33, SDKValidationError> {
2634
2654
  return safeParse(
2635
2655
  jsonString,
2636
- (x) => ThirtyThree$inboundSchema.parse(JSON.parse(x)),
2637
- `Failed to parse 'ThirtyThree' from JSON`,
2656
+ (x) => GetEvalsFunctionParams33$inboundSchema.parse(JSON.parse(x)),
2657
+ `Failed to parse 'GetEvalsFunctionParams33' from JSON`,
2638
2658
  );
2639
2659
  }
2640
2660
 
@@ -2667,8 +2687,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2667
2687
  }
2668
2688
 
2669
2689
  /** @internal */
2670
- export const ThirtyTwo$inboundSchema: z.ZodType<
2671
- ThirtyTwo,
2690
+ export const GetEvalsFunctionParams32$inboundSchema: z.ZodType<
2691
+ GetEvalsFunctionParams32,
2672
2692
  z.ZodTypeDef,
2673
2693
  unknown
2674
2694
  > = z.object({
@@ -2677,15 +2697,15 @@ export const ThirtyTwo$inboundSchema: z.ZodType<
2677
2697
  });
2678
2698
 
2679
2699
  /** @internal */
2680
- export type ThirtyTwo$Outbound = {
2700
+ export type GetEvalsFunctionParams32$Outbound = {
2681
2701
  type: string;
2682
2702
  };
2683
2703
 
2684
2704
  /** @internal */
2685
- export const ThirtyTwo$outboundSchema: z.ZodType<
2686
- ThirtyTwo$Outbound,
2705
+ export const GetEvalsFunctionParams32$outboundSchema: z.ZodType<
2706
+ GetEvalsFunctionParams32$Outbound,
2687
2707
  z.ZodTypeDef,
2688
- ThirtyTwo
2708
+ GetEvalsFunctionParams32
2689
2709
  > = z.object({
2690
2710
  type:
2691
2711
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData532Type$outboundSchema,
@@ -2695,26 +2715,30 @@ export const ThirtyTwo$outboundSchema: z.ZodType<
2695
2715
  * @internal
2696
2716
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2697
2717
  */
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;
2718
+ export namespace GetEvalsFunctionParams32$ {
2719
+ /** @deprecated use `GetEvalsFunctionParams32$inboundSchema` instead. */
2720
+ export const inboundSchema = GetEvalsFunctionParams32$inboundSchema;
2721
+ /** @deprecated use `GetEvalsFunctionParams32$outboundSchema` instead. */
2722
+ export const outboundSchema = GetEvalsFunctionParams32$outboundSchema;
2723
+ /** @deprecated use `GetEvalsFunctionParams32$Outbound` instead. */
2724
+ export type Outbound = GetEvalsFunctionParams32$Outbound;
2705
2725
  }
2706
2726
 
2707
- export function thirtyTwoToJSON(thirtyTwo: ThirtyTwo): string {
2708
- return JSON.stringify(ThirtyTwo$outboundSchema.parse(thirtyTwo));
2727
+ export function getEvalsFunctionParams32ToJSON(
2728
+ getEvalsFunctionParams32: GetEvalsFunctionParams32,
2729
+ ): string {
2730
+ return JSON.stringify(
2731
+ GetEvalsFunctionParams32$outboundSchema.parse(getEvalsFunctionParams32),
2732
+ );
2709
2733
  }
2710
2734
 
2711
- export function thirtyTwoFromJSON(
2735
+ export function getEvalsFunctionParams32FromJSON(
2712
2736
  jsonString: string,
2713
- ): SafeParseResult<ThirtyTwo, SDKValidationError> {
2737
+ ): SafeParseResult<GetEvalsFunctionParams32, SDKValidationError> {
2714
2738
  return safeParse(
2715
2739
  jsonString,
2716
- (x) => ThirtyTwo$inboundSchema.parse(JSON.parse(x)),
2717
- `Failed to parse 'ThirtyTwo' from JSON`,
2740
+ (x) => GetEvalsFunctionParams32$inboundSchema.parse(JSON.parse(x)),
2741
+ `Failed to parse 'GetEvalsFunctionParams32' from JSON`,
2718
2742
  );
2719
2743
  }
2720
2744
 
@@ -2747,8 +2771,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2747
2771
  }
2748
2772
 
2749
2773
  /** @internal */
2750
- export const ThirtyOne$inboundSchema: z.ZodType<
2751
- ThirtyOne,
2774
+ export const GetEvalsFunctionParams31$inboundSchema: z.ZodType<
2775
+ GetEvalsFunctionParams31,
2752
2776
  z.ZodTypeDef,
2753
2777
  unknown
2754
2778
  > = z.object({
@@ -2757,15 +2781,15 @@ export const ThirtyOne$inboundSchema: z.ZodType<
2757
2781
  });
2758
2782
 
2759
2783
  /** @internal */
2760
- export type ThirtyOne$Outbound = {
2784
+ export type GetEvalsFunctionParams31$Outbound = {
2761
2785
  type: string;
2762
2786
  };
2763
2787
 
2764
2788
  /** @internal */
2765
- export const ThirtyOne$outboundSchema: z.ZodType<
2766
- ThirtyOne$Outbound,
2789
+ export const GetEvalsFunctionParams31$outboundSchema: z.ZodType<
2790
+ GetEvalsFunctionParams31$Outbound,
2767
2791
  z.ZodTypeDef,
2768
- ThirtyOne
2792
+ GetEvalsFunctionParams31
2769
2793
  > = z.object({
2770
2794
  type:
2771
2795
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData531Type$outboundSchema,
@@ -2775,26 +2799,30 @@ export const ThirtyOne$outboundSchema: z.ZodType<
2775
2799
  * @internal
2776
2800
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2777
2801
  */
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;
2802
+ export namespace GetEvalsFunctionParams31$ {
2803
+ /** @deprecated use `GetEvalsFunctionParams31$inboundSchema` instead. */
2804
+ export const inboundSchema = GetEvalsFunctionParams31$inboundSchema;
2805
+ /** @deprecated use `GetEvalsFunctionParams31$outboundSchema` instead. */
2806
+ export const outboundSchema = GetEvalsFunctionParams31$outboundSchema;
2807
+ /** @deprecated use `GetEvalsFunctionParams31$Outbound` instead. */
2808
+ export type Outbound = GetEvalsFunctionParams31$Outbound;
2785
2809
  }
2786
2810
 
2787
- export function thirtyOneToJSON(thirtyOne: ThirtyOne): string {
2788
- return JSON.stringify(ThirtyOne$outboundSchema.parse(thirtyOne));
2811
+ export function getEvalsFunctionParams31ToJSON(
2812
+ getEvalsFunctionParams31: GetEvalsFunctionParams31,
2813
+ ): string {
2814
+ return JSON.stringify(
2815
+ GetEvalsFunctionParams31$outboundSchema.parse(getEvalsFunctionParams31),
2816
+ );
2789
2817
  }
2790
2818
 
2791
- export function thirtyOneFromJSON(
2819
+ export function getEvalsFunctionParams31FromJSON(
2792
2820
  jsonString: string,
2793
- ): SafeParseResult<ThirtyOne, SDKValidationError> {
2821
+ ): SafeParseResult<GetEvalsFunctionParams31, SDKValidationError> {
2794
2822
  return safeParse(
2795
2823
  jsonString,
2796
- (x) => ThirtyOne$inboundSchema.parse(JSON.parse(x)),
2797
- `Failed to parse 'ThirtyOne' from JSON`,
2824
+ (x) => GetEvalsFunctionParams31$inboundSchema.parse(JSON.parse(x)),
2825
+ `Failed to parse 'GetEvalsFunctionParams31' from JSON`,
2798
2826
  );
2799
2827
  }
2800
2828
 
@@ -2827,22 +2855,25 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2827
2855
  }
2828
2856
 
2829
2857
  /** @internal */
2830
- export const Thirty$inboundSchema: z.ZodType<Thirty, z.ZodTypeDef, unknown> = z
2831
- .object({
2832
- type:
2833
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema,
2834
- });
2858
+ export const GetEvalsFunctionParams30$inboundSchema: z.ZodType<
2859
+ GetEvalsFunctionParams30,
2860
+ z.ZodTypeDef,
2861
+ unknown
2862
+ > = z.object({
2863
+ type:
2864
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$inboundSchema,
2865
+ });
2835
2866
 
2836
2867
  /** @internal */
2837
- export type Thirty$Outbound = {
2868
+ export type GetEvalsFunctionParams30$Outbound = {
2838
2869
  type: string;
2839
2870
  };
2840
2871
 
2841
2872
  /** @internal */
2842
- export const Thirty$outboundSchema: z.ZodType<
2843
- Thirty$Outbound,
2873
+ export const GetEvalsFunctionParams30$outboundSchema: z.ZodType<
2874
+ GetEvalsFunctionParams30$Outbound,
2844
2875
  z.ZodTypeDef,
2845
- Thirty
2876
+ GetEvalsFunctionParams30
2846
2877
  > = z.object({
2847
2878
  type:
2848
2879
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData530Type$outboundSchema,
@@ -2852,26 +2883,30 @@ export const Thirty$outboundSchema: z.ZodType<
2852
2883
  * @internal
2853
2884
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2854
2885
  */
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;
2886
+ export namespace GetEvalsFunctionParams30$ {
2887
+ /** @deprecated use `GetEvalsFunctionParams30$inboundSchema` instead. */
2888
+ export const inboundSchema = GetEvalsFunctionParams30$inboundSchema;
2889
+ /** @deprecated use `GetEvalsFunctionParams30$outboundSchema` instead. */
2890
+ export const outboundSchema = GetEvalsFunctionParams30$outboundSchema;
2891
+ /** @deprecated use `GetEvalsFunctionParams30$Outbound` instead. */
2892
+ export type Outbound = GetEvalsFunctionParams30$Outbound;
2862
2893
  }
2863
2894
 
2864
- export function thirtyToJSON(thirty: Thirty): string {
2865
- return JSON.stringify(Thirty$outboundSchema.parse(thirty));
2895
+ export function getEvalsFunctionParams30ToJSON(
2896
+ getEvalsFunctionParams30: GetEvalsFunctionParams30,
2897
+ ): string {
2898
+ return JSON.stringify(
2899
+ GetEvalsFunctionParams30$outboundSchema.parse(getEvalsFunctionParams30),
2900
+ );
2866
2901
  }
2867
2902
 
2868
- export function thirtyFromJSON(
2903
+ export function getEvalsFunctionParams30FromJSON(
2869
2904
  jsonString: string,
2870
- ): SafeParseResult<Thirty, SDKValidationError> {
2905
+ ): SafeParseResult<GetEvalsFunctionParams30, SDKValidationError> {
2871
2906
  return safeParse(
2872
2907
  jsonString,
2873
- (x) => Thirty$inboundSchema.parse(JSON.parse(x)),
2874
- `Failed to parse 'Thirty' from JSON`,
2908
+ (x) => GetEvalsFunctionParams30$inboundSchema.parse(JSON.parse(x)),
2909
+ `Failed to parse 'GetEvalsFunctionParams30' from JSON`,
2875
2910
  );
2876
2911
  }
2877
2912
 
@@ -2904,8 +2939,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2904
2939
  }
2905
2940
 
2906
2941
  /** @internal */
2907
- export const TwentyNine$inboundSchema: z.ZodType<
2908
- TwentyNine,
2942
+ export const GetEvalsFunctionParams29$inboundSchema: z.ZodType<
2943
+ GetEvalsFunctionParams29,
2909
2944
  z.ZodTypeDef,
2910
2945
  unknown
2911
2946
  > = z.object({
@@ -2914,15 +2949,15 @@ export const TwentyNine$inboundSchema: z.ZodType<
2914
2949
  });
2915
2950
 
2916
2951
  /** @internal */
2917
- export type TwentyNine$Outbound = {
2952
+ export type GetEvalsFunctionParams29$Outbound = {
2918
2953
  type: string;
2919
2954
  };
2920
2955
 
2921
2956
  /** @internal */
2922
- export const TwentyNine$outboundSchema: z.ZodType<
2923
- TwentyNine$Outbound,
2957
+ export const GetEvalsFunctionParams29$outboundSchema: z.ZodType<
2958
+ GetEvalsFunctionParams29$Outbound,
2924
2959
  z.ZodTypeDef,
2925
- TwentyNine
2960
+ GetEvalsFunctionParams29
2926
2961
  > = z.object({
2927
2962
  type:
2928
2963
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData529Type$outboundSchema,
@@ -2932,26 +2967,30 @@ export const TwentyNine$outboundSchema: z.ZodType<
2932
2967
  * @internal
2933
2968
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2934
2969
  */
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;
2970
+ export namespace GetEvalsFunctionParams29$ {
2971
+ /** @deprecated use `GetEvalsFunctionParams29$inboundSchema` instead. */
2972
+ export const inboundSchema = GetEvalsFunctionParams29$inboundSchema;
2973
+ /** @deprecated use `GetEvalsFunctionParams29$outboundSchema` instead. */
2974
+ export const outboundSchema = GetEvalsFunctionParams29$outboundSchema;
2975
+ /** @deprecated use `GetEvalsFunctionParams29$Outbound` instead. */
2976
+ export type Outbound = GetEvalsFunctionParams29$Outbound;
2942
2977
  }
2943
2978
 
2944
- export function twentyNineToJSON(twentyNine: TwentyNine): string {
2945
- return JSON.stringify(TwentyNine$outboundSchema.parse(twentyNine));
2979
+ export function getEvalsFunctionParams29ToJSON(
2980
+ getEvalsFunctionParams29: GetEvalsFunctionParams29,
2981
+ ): string {
2982
+ return JSON.stringify(
2983
+ GetEvalsFunctionParams29$outboundSchema.parse(getEvalsFunctionParams29),
2984
+ );
2946
2985
  }
2947
2986
 
2948
- export function twentyNineFromJSON(
2987
+ export function getEvalsFunctionParams29FromJSON(
2949
2988
  jsonString: string,
2950
- ): SafeParseResult<TwentyNine, SDKValidationError> {
2989
+ ): SafeParseResult<GetEvalsFunctionParams29, SDKValidationError> {
2951
2990
  return safeParse(
2952
2991
  jsonString,
2953
- (x) => TwentyNine$inboundSchema.parse(JSON.parse(x)),
2954
- `Failed to parse 'TwentyNine' from JSON`,
2992
+ (x) => GetEvalsFunctionParams29$inboundSchema.parse(JSON.parse(x)),
2993
+ `Failed to parse 'GetEvalsFunctionParams29' from JSON`,
2955
2994
  );
2956
2995
  }
2957
2996
 
@@ -2984,8 +3023,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
2984
3023
  }
2985
3024
 
2986
3025
  /** @internal */
2987
- export const TwentyEight$inboundSchema: z.ZodType<
2988
- TwentyEight,
3026
+ export const GetEvalsFunctionParams28$inboundSchema: z.ZodType<
3027
+ GetEvalsFunctionParams28,
2989
3028
  z.ZodTypeDef,
2990
3029
  unknown
2991
3030
  > = z.object({
@@ -2994,15 +3033,15 @@ export const TwentyEight$inboundSchema: z.ZodType<
2994
3033
  });
2995
3034
 
2996
3035
  /** @internal */
2997
- export type TwentyEight$Outbound = {
3036
+ export type GetEvalsFunctionParams28$Outbound = {
2998
3037
  type: string;
2999
3038
  };
3000
3039
 
3001
3040
  /** @internal */
3002
- export const TwentyEight$outboundSchema: z.ZodType<
3003
- TwentyEight$Outbound,
3041
+ export const GetEvalsFunctionParams28$outboundSchema: z.ZodType<
3042
+ GetEvalsFunctionParams28$Outbound,
3004
3043
  z.ZodTypeDef,
3005
- TwentyEight
3044
+ GetEvalsFunctionParams28
3006
3045
  > = z.object({
3007
3046
  type:
3008
3047
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData528Type$outboundSchema,
@@ -3012,26 +3051,30 @@ export const TwentyEight$outboundSchema: z.ZodType<
3012
3051
  * @internal
3013
3052
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3014
3053
  */
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;
3054
+ export namespace GetEvalsFunctionParams28$ {
3055
+ /** @deprecated use `GetEvalsFunctionParams28$inboundSchema` instead. */
3056
+ export const inboundSchema = GetEvalsFunctionParams28$inboundSchema;
3057
+ /** @deprecated use `GetEvalsFunctionParams28$outboundSchema` instead. */
3058
+ export const outboundSchema = GetEvalsFunctionParams28$outboundSchema;
3059
+ /** @deprecated use `GetEvalsFunctionParams28$Outbound` instead. */
3060
+ export type Outbound = GetEvalsFunctionParams28$Outbound;
3022
3061
  }
3023
3062
 
3024
- export function twentyEightToJSON(twentyEight: TwentyEight): string {
3025
- return JSON.stringify(TwentyEight$outboundSchema.parse(twentyEight));
3063
+ export function getEvalsFunctionParams28ToJSON(
3064
+ getEvalsFunctionParams28: GetEvalsFunctionParams28,
3065
+ ): string {
3066
+ return JSON.stringify(
3067
+ GetEvalsFunctionParams28$outboundSchema.parse(getEvalsFunctionParams28),
3068
+ );
3026
3069
  }
3027
3070
 
3028
- export function twentyEightFromJSON(
3071
+ export function getEvalsFunctionParams28FromJSON(
3029
3072
  jsonString: string,
3030
- ): SafeParseResult<TwentyEight, SDKValidationError> {
3073
+ ): SafeParseResult<GetEvalsFunctionParams28, SDKValidationError> {
3031
3074
  return safeParse(
3032
3075
  jsonString,
3033
- (x) => TwentyEight$inboundSchema.parse(JSON.parse(x)),
3034
- `Failed to parse 'TwentyEight' from JSON`,
3076
+ (x) => GetEvalsFunctionParams28$inboundSchema.parse(JSON.parse(x)),
3077
+ `Failed to parse 'GetEvalsFunctionParams28' from JSON`,
3035
3078
  );
3036
3079
  }
3037
3080
 
@@ -3064,8 +3107,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3064
3107
  }
3065
3108
 
3066
3109
  /** @internal */
3067
- export const TwentySeven$inboundSchema: z.ZodType<
3068
- TwentySeven,
3110
+ export const GetEvalsFunctionParams27$inboundSchema: z.ZodType<
3111
+ GetEvalsFunctionParams27,
3069
3112
  z.ZodTypeDef,
3070
3113
  unknown
3071
3114
  > = z.object({
@@ -3074,15 +3117,15 @@ export const TwentySeven$inboundSchema: z.ZodType<
3074
3117
  });
3075
3118
 
3076
3119
  /** @internal */
3077
- export type TwentySeven$Outbound = {
3120
+ export type GetEvalsFunctionParams27$Outbound = {
3078
3121
  type: string;
3079
3122
  };
3080
3123
 
3081
3124
  /** @internal */
3082
- export const TwentySeven$outboundSchema: z.ZodType<
3083
- TwentySeven$Outbound,
3125
+ export const GetEvalsFunctionParams27$outboundSchema: z.ZodType<
3126
+ GetEvalsFunctionParams27$Outbound,
3084
3127
  z.ZodTypeDef,
3085
- TwentySeven
3128
+ GetEvalsFunctionParams27
3086
3129
  > = z.object({
3087
3130
  type:
3088
3131
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData527Type$outboundSchema,
@@ -3092,26 +3135,30 @@ export const TwentySeven$outboundSchema: z.ZodType<
3092
3135
  * @internal
3093
3136
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3094
3137
  */
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;
3138
+ export namespace GetEvalsFunctionParams27$ {
3139
+ /** @deprecated use `GetEvalsFunctionParams27$inboundSchema` instead. */
3140
+ export const inboundSchema = GetEvalsFunctionParams27$inboundSchema;
3141
+ /** @deprecated use `GetEvalsFunctionParams27$outboundSchema` instead. */
3142
+ export const outboundSchema = GetEvalsFunctionParams27$outboundSchema;
3143
+ /** @deprecated use `GetEvalsFunctionParams27$Outbound` instead. */
3144
+ export type Outbound = GetEvalsFunctionParams27$Outbound;
3102
3145
  }
3103
3146
 
3104
- export function twentySevenToJSON(twentySeven: TwentySeven): string {
3105
- return JSON.stringify(TwentySeven$outboundSchema.parse(twentySeven));
3147
+ export function getEvalsFunctionParams27ToJSON(
3148
+ getEvalsFunctionParams27: GetEvalsFunctionParams27,
3149
+ ): string {
3150
+ return JSON.stringify(
3151
+ GetEvalsFunctionParams27$outboundSchema.parse(getEvalsFunctionParams27),
3152
+ );
3106
3153
  }
3107
3154
 
3108
- export function twentySevenFromJSON(
3155
+ export function getEvalsFunctionParams27FromJSON(
3109
3156
  jsonString: string,
3110
- ): SafeParseResult<TwentySeven, SDKValidationError> {
3157
+ ): SafeParseResult<GetEvalsFunctionParams27, SDKValidationError> {
3111
3158
  return safeParse(
3112
3159
  jsonString,
3113
- (x) => TwentySeven$inboundSchema.parse(JSON.parse(x)),
3114
- `Failed to parse 'TwentySeven' from JSON`,
3160
+ (x) => GetEvalsFunctionParams27$inboundSchema.parse(JSON.parse(x)),
3161
+ `Failed to parse 'GetEvalsFunctionParams27' from JSON`,
3115
3162
  );
3116
3163
  }
3117
3164
 
@@ -3144,8 +3191,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3144
3191
  }
3145
3192
 
3146
3193
  /** @internal */
3147
- export const TwentySix$inboundSchema: z.ZodType<
3148
- TwentySix,
3194
+ export const GetEvalsFunctionParams26$inboundSchema: z.ZodType<
3195
+ GetEvalsFunctionParams26,
3149
3196
  z.ZodTypeDef,
3150
3197
  unknown
3151
3198
  > = z.object({
@@ -3155,16 +3202,16 @@ export const TwentySix$inboundSchema: z.ZodType<
3155
3202
  });
3156
3203
 
3157
3204
  /** @internal */
3158
- export type TwentySix$Outbound = {
3205
+ export type GetEvalsFunctionParams26$Outbound = {
3159
3206
  type: string;
3160
3207
  keywords: Array<string>;
3161
3208
  };
3162
3209
 
3163
3210
  /** @internal */
3164
- export const TwentySix$outboundSchema: z.ZodType<
3165
- TwentySix$Outbound,
3211
+ export const GetEvalsFunctionParams26$outboundSchema: z.ZodType<
3212
+ GetEvalsFunctionParams26$Outbound,
3166
3213
  z.ZodTypeDef,
3167
- TwentySix
3214
+ GetEvalsFunctionParams26
3168
3215
  > = z.object({
3169
3216
  type:
3170
3217
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData526Type$outboundSchema,
@@ -3175,26 +3222,30 @@ export const TwentySix$outboundSchema: z.ZodType<
3175
3222
  * @internal
3176
3223
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3177
3224
  */
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;
3225
+ export namespace GetEvalsFunctionParams26$ {
3226
+ /** @deprecated use `GetEvalsFunctionParams26$inboundSchema` instead. */
3227
+ export const inboundSchema = GetEvalsFunctionParams26$inboundSchema;
3228
+ /** @deprecated use `GetEvalsFunctionParams26$outboundSchema` instead. */
3229
+ export const outboundSchema = GetEvalsFunctionParams26$outboundSchema;
3230
+ /** @deprecated use `GetEvalsFunctionParams26$Outbound` instead. */
3231
+ export type Outbound = GetEvalsFunctionParams26$Outbound;
3185
3232
  }
3186
3233
 
3187
- export function twentySixToJSON(twentySix: TwentySix): string {
3188
- return JSON.stringify(TwentySix$outboundSchema.parse(twentySix));
3234
+ export function getEvalsFunctionParams26ToJSON(
3235
+ getEvalsFunctionParams26: GetEvalsFunctionParams26,
3236
+ ): string {
3237
+ return JSON.stringify(
3238
+ GetEvalsFunctionParams26$outboundSchema.parse(getEvalsFunctionParams26),
3239
+ );
3189
3240
  }
3190
3241
 
3191
- export function twentySixFromJSON(
3242
+ export function getEvalsFunctionParams26FromJSON(
3192
3243
  jsonString: string,
3193
- ): SafeParseResult<TwentySix, SDKValidationError> {
3244
+ ): SafeParseResult<GetEvalsFunctionParams26, SDKValidationError> {
3194
3245
  return safeParse(
3195
3246
  jsonString,
3196
- (x) => TwentySix$inboundSchema.parse(JSON.parse(x)),
3197
- `Failed to parse 'TwentySix' from JSON`,
3247
+ (x) => GetEvalsFunctionParams26$inboundSchema.parse(JSON.parse(x)),
3248
+ `Failed to parse 'GetEvalsFunctionParams26' from JSON`,
3198
3249
  );
3199
3250
  }
3200
3251
 
@@ -3227,8 +3278,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3227
3278
  }
3228
3279
 
3229
3280
  /** @internal */
3230
- export const TwentyFive$inboundSchema: z.ZodType<
3231
- TwentyFive,
3281
+ export const GetEvalsFunctionParams25$inboundSchema: z.ZodType<
3282
+ GetEvalsFunctionParams25,
3232
3283
  z.ZodTypeDef,
3233
3284
  unknown
3234
3285
  > = z.object({
@@ -3238,16 +3289,16 @@ export const TwentyFive$inboundSchema: z.ZodType<
3238
3289
  });
3239
3290
 
3240
3291
  /** @internal */
3241
- export type TwentyFive$Outbound = {
3292
+ export type GetEvalsFunctionParams25$Outbound = {
3242
3293
  type: string;
3243
3294
  topic: string;
3244
3295
  };
3245
3296
 
3246
3297
  /** @internal */
3247
- export const TwentyFive$outboundSchema: z.ZodType<
3248
- TwentyFive$Outbound,
3298
+ export const GetEvalsFunctionParams25$outboundSchema: z.ZodType<
3299
+ GetEvalsFunctionParams25$Outbound,
3249
3300
  z.ZodTypeDef,
3250
- TwentyFive
3301
+ GetEvalsFunctionParams25
3251
3302
  > = z.object({
3252
3303
  type:
3253
3304
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData525Type$outboundSchema,
@@ -3258,26 +3309,30 @@ export const TwentyFive$outboundSchema: z.ZodType<
3258
3309
  * @internal
3259
3310
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3260
3311
  */
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;
3312
+ export namespace GetEvalsFunctionParams25$ {
3313
+ /** @deprecated use `GetEvalsFunctionParams25$inboundSchema` instead. */
3314
+ export const inboundSchema = GetEvalsFunctionParams25$inboundSchema;
3315
+ /** @deprecated use `GetEvalsFunctionParams25$outboundSchema` instead. */
3316
+ export const outboundSchema = GetEvalsFunctionParams25$outboundSchema;
3317
+ /** @deprecated use `GetEvalsFunctionParams25$Outbound` instead. */
3318
+ export type Outbound = GetEvalsFunctionParams25$Outbound;
3268
3319
  }
3269
3320
 
3270
- export function twentyFiveToJSON(twentyFive: TwentyFive): string {
3271
- return JSON.stringify(TwentyFive$outboundSchema.parse(twentyFive));
3321
+ export function getEvalsFunctionParams25ToJSON(
3322
+ getEvalsFunctionParams25: GetEvalsFunctionParams25,
3323
+ ): string {
3324
+ return JSON.stringify(
3325
+ GetEvalsFunctionParams25$outboundSchema.parse(getEvalsFunctionParams25),
3326
+ );
3272
3327
  }
3273
3328
 
3274
- export function twentyFiveFromJSON(
3329
+ export function getEvalsFunctionParams25FromJSON(
3275
3330
  jsonString: string,
3276
- ): SafeParseResult<TwentyFive, SDKValidationError> {
3331
+ ): SafeParseResult<GetEvalsFunctionParams25, SDKValidationError> {
3277
3332
  return safeParse(
3278
3333
  jsonString,
3279
- (x) => TwentyFive$inboundSchema.parse(JSON.parse(x)),
3280
- `Failed to parse 'TwentyFive' from JSON`,
3334
+ (x) => GetEvalsFunctionParams25$inboundSchema.parse(JSON.parse(x)),
3335
+ `Failed to parse 'GetEvalsFunctionParams25' from JSON`,
3281
3336
  );
3282
3337
  }
3283
3338
 
@@ -3310,8 +3365,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3310
3365
  }
3311
3366
 
3312
3367
  /** @internal */
3313
- export const TwentyFour$inboundSchema: z.ZodType<
3314
- TwentyFour,
3368
+ export const GetEvalsFunctionParams24$inboundSchema: z.ZodType<
3369
+ GetEvalsFunctionParams24,
3315
3370
  z.ZodTypeDef,
3316
3371
  unknown
3317
3372
  > = z.object({
@@ -3320,15 +3375,15 @@ export const TwentyFour$inboundSchema: z.ZodType<
3320
3375
  });
3321
3376
 
3322
3377
  /** @internal */
3323
- export type TwentyFour$Outbound = {
3378
+ export type GetEvalsFunctionParams24$Outbound = {
3324
3379
  type: string;
3325
3380
  };
3326
3381
 
3327
3382
  /** @internal */
3328
- export const TwentyFour$outboundSchema: z.ZodType<
3329
- TwentyFour$Outbound,
3383
+ export const GetEvalsFunctionParams24$outboundSchema: z.ZodType<
3384
+ GetEvalsFunctionParams24$Outbound,
3330
3385
  z.ZodTypeDef,
3331
- TwentyFour
3386
+ GetEvalsFunctionParams24
3332
3387
  > = z.object({
3333
3388
  type:
3334
3389
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData524Type$outboundSchema,
@@ -3338,26 +3393,30 @@ export const TwentyFour$outboundSchema: z.ZodType<
3338
3393
  * @internal
3339
3394
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3340
3395
  */
3341
- export namespace TwentyFour$ {
3342
- /** @deprecated use `TwentyFour$inboundSchema` instead. */
3343
- export const inboundSchema = TwentyFour$inboundSchema;
3344
- /** @deprecated use `TwentyFour$outboundSchema` instead. */
3345
- export const outboundSchema = TwentyFour$outboundSchema;
3346
- /** @deprecated use `TwentyFour$Outbound` instead. */
3347
- export type Outbound = TwentyFour$Outbound;
3396
+ export namespace GetEvalsFunctionParams24$ {
3397
+ /** @deprecated use `GetEvalsFunctionParams24$inboundSchema` instead. */
3398
+ export const inboundSchema = GetEvalsFunctionParams24$inboundSchema;
3399
+ /** @deprecated use `GetEvalsFunctionParams24$outboundSchema` instead. */
3400
+ export const outboundSchema = GetEvalsFunctionParams24$outboundSchema;
3401
+ /** @deprecated use `GetEvalsFunctionParams24$Outbound` instead. */
3402
+ export type Outbound = GetEvalsFunctionParams24$Outbound;
3348
3403
  }
3349
3404
 
3350
- export function twentyFourToJSON(twentyFour: TwentyFour): string {
3351
- return JSON.stringify(TwentyFour$outboundSchema.parse(twentyFour));
3405
+ export function getEvalsFunctionParams24ToJSON(
3406
+ getEvalsFunctionParams24: GetEvalsFunctionParams24,
3407
+ ): string {
3408
+ return JSON.stringify(
3409
+ GetEvalsFunctionParams24$outboundSchema.parse(getEvalsFunctionParams24),
3410
+ );
3352
3411
  }
3353
3412
 
3354
- export function twentyFourFromJSON(
3413
+ export function getEvalsFunctionParams24FromJSON(
3355
3414
  jsonString: string,
3356
- ): SafeParseResult<TwentyFour, SDKValidationError> {
3415
+ ): SafeParseResult<GetEvalsFunctionParams24, SDKValidationError> {
3357
3416
  return safeParse(
3358
3417
  jsonString,
3359
- (x) => TwentyFour$inboundSchema.parse(JSON.parse(x)),
3360
- `Failed to parse 'TwentyFour' from JSON`,
3418
+ (x) => GetEvalsFunctionParams24$inboundSchema.parse(JSON.parse(x)),
3419
+ `Failed to parse 'GetEvalsFunctionParams24' from JSON`,
3361
3420
  );
3362
3421
  }
3363
3422
 
@@ -3390,8 +3449,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3390
3449
  }
3391
3450
 
3392
3451
  /** @internal */
3393
- export const TwentyThree$inboundSchema: z.ZodType<
3394
- TwentyThree,
3452
+ export const GetEvalsFunctionParams23$inboundSchema: z.ZodType<
3453
+ GetEvalsFunctionParams23,
3395
3454
  z.ZodTypeDef,
3396
3455
  unknown
3397
3456
  > = z.object({
@@ -3400,15 +3459,15 @@ export const TwentyThree$inboundSchema: z.ZodType<
3400
3459
  });
3401
3460
 
3402
3461
  /** @internal */
3403
- export type TwentyThree$Outbound = {
3462
+ export type GetEvalsFunctionParams23$Outbound = {
3404
3463
  type: string;
3405
3464
  };
3406
3465
 
3407
3466
  /** @internal */
3408
- export const TwentyThree$outboundSchema: z.ZodType<
3409
- TwentyThree$Outbound,
3467
+ export const GetEvalsFunctionParams23$outboundSchema: z.ZodType<
3468
+ GetEvalsFunctionParams23$Outbound,
3410
3469
  z.ZodTypeDef,
3411
- TwentyThree
3470
+ GetEvalsFunctionParams23
3412
3471
  > = z.object({
3413
3472
  type:
3414
3473
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData523Type$outboundSchema,
@@ -3418,26 +3477,30 @@ export const TwentyThree$outboundSchema: z.ZodType<
3418
3477
  * @internal
3419
3478
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3420
3479
  */
3421
- export namespace TwentyThree$ {
3422
- /** @deprecated use `TwentyThree$inboundSchema` instead. */
3423
- export const inboundSchema = TwentyThree$inboundSchema;
3424
- /** @deprecated use `TwentyThree$outboundSchema` instead. */
3425
- export const outboundSchema = TwentyThree$outboundSchema;
3426
- /** @deprecated use `TwentyThree$Outbound` instead. */
3427
- export type Outbound = TwentyThree$Outbound;
3480
+ export namespace GetEvalsFunctionParams23$ {
3481
+ /** @deprecated use `GetEvalsFunctionParams23$inboundSchema` instead. */
3482
+ export const inboundSchema = GetEvalsFunctionParams23$inboundSchema;
3483
+ /** @deprecated use `GetEvalsFunctionParams23$outboundSchema` instead. */
3484
+ export const outboundSchema = GetEvalsFunctionParams23$outboundSchema;
3485
+ /** @deprecated use `GetEvalsFunctionParams23$Outbound` instead. */
3486
+ export type Outbound = GetEvalsFunctionParams23$Outbound;
3428
3487
  }
3429
3488
 
3430
- export function twentyThreeToJSON(twentyThree: TwentyThree): string {
3431
- return JSON.stringify(TwentyThree$outboundSchema.parse(twentyThree));
3489
+ export function getEvalsFunctionParams23ToJSON(
3490
+ getEvalsFunctionParams23: GetEvalsFunctionParams23,
3491
+ ): string {
3492
+ return JSON.stringify(
3493
+ GetEvalsFunctionParams23$outboundSchema.parse(getEvalsFunctionParams23),
3494
+ );
3432
3495
  }
3433
3496
 
3434
- export function twentyThreeFromJSON(
3497
+ export function getEvalsFunctionParams23FromJSON(
3435
3498
  jsonString: string,
3436
- ): SafeParseResult<TwentyThree, SDKValidationError> {
3499
+ ): SafeParseResult<GetEvalsFunctionParams23, SDKValidationError> {
3437
3500
  return safeParse(
3438
3501
  jsonString,
3439
- (x) => TwentyThree$inboundSchema.parse(JSON.parse(x)),
3440
- `Failed to parse 'TwentyThree' from JSON`,
3502
+ (x) => GetEvalsFunctionParams23$inboundSchema.parse(JSON.parse(x)),
3503
+ `Failed to parse 'GetEvalsFunctionParams23' from JSON`,
3441
3504
  );
3442
3505
  }
3443
3506
 
@@ -3470,8 +3533,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3470
3533
  }
3471
3534
 
3472
3535
  /** @internal */
3473
- export const TwentyTwo$inboundSchema: z.ZodType<
3474
- TwentyTwo,
3536
+ export const GetEvalsFunctionParams22$inboundSchema: z.ZodType<
3537
+ GetEvalsFunctionParams22,
3475
3538
  z.ZodTypeDef,
3476
3539
  unknown
3477
3540
  > = z.object({
@@ -3480,15 +3543,15 @@ export const TwentyTwo$inboundSchema: z.ZodType<
3480
3543
  });
3481
3544
 
3482
3545
  /** @internal */
3483
- export type TwentyTwo$Outbound = {
3546
+ export type GetEvalsFunctionParams22$Outbound = {
3484
3547
  type: string;
3485
3548
  };
3486
3549
 
3487
3550
  /** @internal */
3488
- export const TwentyTwo$outboundSchema: z.ZodType<
3489
- TwentyTwo$Outbound,
3551
+ export const GetEvalsFunctionParams22$outboundSchema: z.ZodType<
3552
+ GetEvalsFunctionParams22$Outbound,
3490
3553
  z.ZodTypeDef,
3491
- TwentyTwo
3554
+ GetEvalsFunctionParams22
3492
3555
  > = z.object({
3493
3556
  type:
3494
3557
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData522Type$outboundSchema,
@@ -3498,26 +3561,30 @@ export const TwentyTwo$outboundSchema: z.ZodType<
3498
3561
  * @internal
3499
3562
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3500
3563
  */
3501
- export namespace TwentyTwo$ {
3502
- /** @deprecated use `TwentyTwo$inboundSchema` instead. */
3503
- export const inboundSchema = TwentyTwo$inboundSchema;
3504
- /** @deprecated use `TwentyTwo$outboundSchema` instead. */
3505
- export const outboundSchema = TwentyTwo$outboundSchema;
3506
- /** @deprecated use `TwentyTwo$Outbound` instead. */
3507
- export type Outbound = TwentyTwo$Outbound;
3564
+ export namespace GetEvalsFunctionParams22$ {
3565
+ /** @deprecated use `GetEvalsFunctionParams22$inboundSchema` instead. */
3566
+ export const inboundSchema = GetEvalsFunctionParams22$inboundSchema;
3567
+ /** @deprecated use `GetEvalsFunctionParams22$outboundSchema` instead. */
3568
+ export const outboundSchema = GetEvalsFunctionParams22$outboundSchema;
3569
+ /** @deprecated use `GetEvalsFunctionParams22$Outbound` instead. */
3570
+ export type Outbound = GetEvalsFunctionParams22$Outbound;
3508
3571
  }
3509
3572
 
3510
- export function twentyTwoToJSON(twentyTwo: TwentyTwo): string {
3511
- return JSON.stringify(TwentyTwo$outboundSchema.parse(twentyTwo));
3573
+ export function getEvalsFunctionParams22ToJSON(
3574
+ getEvalsFunctionParams22: GetEvalsFunctionParams22,
3575
+ ): string {
3576
+ return JSON.stringify(
3577
+ GetEvalsFunctionParams22$outboundSchema.parse(getEvalsFunctionParams22),
3578
+ );
3512
3579
  }
3513
3580
 
3514
- export function twentyTwoFromJSON(
3581
+ export function getEvalsFunctionParams22FromJSON(
3515
3582
  jsonString: string,
3516
- ): SafeParseResult<TwentyTwo, SDKValidationError> {
3583
+ ): SafeParseResult<GetEvalsFunctionParams22, SDKValidationError> {
3517
3584
  return safeParse(
3518
3585
  jsonString,
3519
- (x) => TwentyTwo$inboundSchema.parse(JSON.parse(x)),
3520
- `Failed to parse 'TwentyTwo' from JSON`,
3586
+ (x) => GetEvalsFunctionParams22$inboundSchema.parse(JSON.parse(x)),
3587
+ `Failed to parse 'GetEvalsFunctionParams22' from JSON`,
3521
3588
  );
3522
3589
  }
3523
3590
 
@@ -3550,8 +3617,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3550
3617
  }
3551
3618
 
3552
3619
  /** @internal */
3553
- export const TwentyOne$inboundSchema: z.ZodType<
3554
- TwentyOne,
3620
+ export const GetEvalsFunctionParams21$inboundSchema: z.ZodType<
3621
+ GetEvalsFunctionParams21,
3555
3622
  z.ZodTypeDef,
3556
3623
  unknown
3557
3624
  > = z.object({
@@ -3560,15 +3627,15 @@ export const TwentyOne$inboundSchema: z.ZodType<
3560
3627
  });
3561
3628
 
3562
3629
  /** @internal */
3563
- export type TwentyOne$Outbound = {
3630
+ export type GetEvalsFunctionParams21$Outbound = {
3564
3631
  type: string;
3565
3632
  };
3566
3633
 
3567
3634
  /** @internal */
3568
- export const TwentyOne$outboundSchema: z.ZodType<
3569
- TwentyOne$Outbound,
3635
+ export const GetEvalsFunctionParams21$outboundSchema: z.ZodType<
3636
+ GetEvalsFunctionParams21$Outbound,
3570
3637
  z.ZodTypeDef,
3571
- TwentyOne
3638
+ GetEvalsFunctionParams21
3572
3639
  > = z.object({
3573
3640
  type:
3574
3641
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData521Type$outboundSchema,
@@ -3578,26 +3645,30 @@ export const TwentyOne$outboundSchema: z.ZodType<
3578
3645
  * @internal
3579
3646
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3580
3647
  */
3581
- export namespace TwentyOne$ {
3582
- /** @deprecated use `TwentyOne$inboundSchema` instead. */
3583
- export const inboundSchema = TwentyOne$inboundSchema;
3584
- /** @deprecated use `TwentyOne$outboundSchema` instead. */
3585
- export const outboundSchema = TwentyOne$outboundSchema;
3586
- /** @deprecated use `TwentyOne$Outbound` instead. */
3587
- export type Outbound = TwentyOne$Outbound;
3648
+ export namespace GetEvalsFunctionParams21$ {
3649
+ /** @deprecated use `GetEvalsFunctionParams21$inboundSchema` instead. */
3650
+ export const inboundSchema = GetEvalsFunctionParams21$inboundSchema;
3651
+ /** @deprecated use `GetEvalsFunctionParams21$outboundSchema` instead. */
3652
+ export const outboundSchema = GetEvalsFunctionParams21$outboundSchema;
3653
+ /** @deprecated use `GetEvalsFunctionParams21$Outbound` instead. */
3654
+ export type Outbound = GetEvalsFunctionParams21$Outbound;
3588
3655
  }
3589
3656
 
3590
- export function twentyOneToJSON(twentyOne: TwentyOne): string {
3591
- return JSON.stringify(TwentyOne$outboundSchema.parse(twentyOne));
3657
+ export function getEvalsFunctionParams21ToJSON(
3658
+ getEvalsFunctionParams21: GetEvalsFunctionParams21,
3659
+ ): string {
3660
+ return JSON.stringify(
3661
+ GetEvalsFunctionParams21$outboundSchema.parse(getEvalsFunctionParams21),
3662
+ );
3592
3663
  }
3593
3664
 
3594
- export function twentyOneFromJSON(
3665
+ export function getEvalsFunctionParams21FromJSON(
3595
3666
  jsonString: string,
3596
- ): SafeParseResult<TwentyOne, SDKValidationError> {
3667
+ ): SafeParseResult<GetEvalsFunctionParams21, SDKValidationError> {
3597
3668
  return safeParse(
3598
3669
  jsonString,
3599
- (x) => TwentyOne$inboundSchema.parse(JSON.parse(x)),
3600
- `Failed to parse 'TwentyOne' from JSON`,
3670
+ (x) => GetEvalsFunctionParams21$inboundSchema.parse(JSON.parse(x)),
3671
+ `Failed to parse 'GetEvalsFunctionParams21' from JSON`,
3601
3672
  );
3602
3673
  }
3603
3674
 
@@ -3630,22 +3701,25 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3630
3701
  }
3631
3702
 
3632
3703
  /** @internal */
3633
- export const Twenty$inboundSchema: z.ZodType<Twenty, z.ZodTypeDef, unknown> = z
3634
- .object({
3635
- type:
3636
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData520Type$inboundSchema,
3637
- });
3704
+ export const GetEvalsFunctionParams20$inboundSchema: z.ZodType<
3705
+ GetEvalsFunctionParams20,
3706
+ z.ZodTypeDef,
3707
+ unknown
3708
+ > = z.object({
3709
+ type:
3710
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData520Type$inboundSchema,
3711
+ });
3638
3712
 
3639
3713
  /** @internal */
3640
- export type Twenty$Outbound = {
3714
+ export type GetEvalsFunctionParams20$Outbound = {
3641
3715
  type: string;
3642
3716
  };
3643
3717
 
3644
3718
  /** @internal */
3645
- export const Twenty$outboundSchema: z.ZodType<
3646
- Twenty$Outbound,
3719
+ export const GetEvalsFunctionParams20$outboundSchema: z.ZodType<
3720
+ GetEvalsFunctionParams20$Outbound,
3647
3721
  z.ZodTypeDef,
3648
- Twenty
3722
+ GetEvalsFunctionParams20
3649
3723
  > = z.object({
3650
3724
  type:
3651
3725
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData520Type$outboundSchema,
@@ -3655,26 +3729,30 @@ export const Twenty$outboundSchema: z.ZodType<
3655
3729
  * @internal
3656
3730
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3657
3731
  */
3658
- export namespace Twenty$ {
3659
- /** @deprecated use `Twenty$inboundSchema` instead. */
3660
- export const inboundSchema = Twenty$inboundSchema;
3661
- /** @deprecated use `Twenty$outboundSchema` instead. */
3662
- export const outboundSchema = Twenty$outboundSchema;
3663
- /** @deprecated use `Twenty$Outbound` instead. */
3664
- export type Outbound = Twenty$Outbound;
3732
+ export namespace GetEvalsFunctionParams20$ {
3733
+ /** @deprecated use `GetEvalsFunctionParams20$inboundSchema` instead. */
3734
+ export const inboundSchema = GetEvalsFunctionParams20$inboundSchema;
3735
+ /** @deprecated use `GetEvalsFunctionParams20$outboundSchema` instead. */
3736
+ export const outboundSchema = GetEvalsFunctionParams20$outboundSchema;
3737
+ /** @deprecated use `GetEvalsFunctionParams20$Outbound` instead. */
3738
+ export type Outbound = GetEvalsFunctionParams20$Outbound;
3665
3739
  }
3666
3740
 
3667
- export function twentyToJSON(twenty: Twenty): string {
3668
- return JSON.stringify(Twenty$outboundSchema.parse(twenty));
3741
+ export function getEvalsFunctionParams20ToJSON(
3742
+ getEvalsFunctionParams20: GetEvalsFunctionParams20,
3743
+ ): string {
3744
+ return JSON.stringify(
3745
+ GetEvalsFunctionParams20$outboundSchema.parse(getEvalsFunctionParams20),
3746
+ );
3669
3747
  }
3670
3748
 
3671
- export function twentyFromJSON(
3749
+ export function getEvalsFunctionParams20FromJSON(
3672
3750
  jsonString: string,
3673
- ): SafeParseResult<Twenty, SDKValidationError> {
3751
+ ): SafeParseResult<GetEvalsFunctionParams20, SDKValidationError> {
3674
3752
  return safeParse(
3675
3753
  jsonString,
3676
- (x) => Twenty$inboundSchema.parse(JSON.parse(x)),
3677
- `Failed to parse 'Twenty' from JSON`,
3754
+ (x) => GetEvalsFunctionParams20$inboundSchema.parse(JSON.parse(x)),
3755
+ `Failed to parse 'GetEvalsFunctionParams20' from JSON`,
3678
3756
  );
3679
3757
  }
3680
3758
 
@@ -3707,8 +3785,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3707
3785
  }
3708
3786
 
3709
3787
  /** @internal */
3710
- export const Nineteen$inboundSchema: z.ZodType<
3711
- Nineteen,
3788
+ export const GetEvalsFunctionParams19$inboundSchema: z.ZodType<
3789
+ GetEvalsFunctionParams19,
3712
3790
  z.ZodTypeDef,
3713
3791
  unknown
3714
3792
  > = z.object({
@@ -3717,15 +3795,15 @@ export const Nineteen$inboundSchema: z.ZodType<
3717
3795
  });
3718
3796
 
3719
3797
  /** @internal */
3720
- export type Nineteen$Outbound = {
3798
+ export type GetEvalsFunctionParams19$Outbound = {
3721
3799
  type: string;
3722
3800
  };
3723
3801
 
3724
3802
  /** @internal */
3725
- export const Nineteen$outboundSchema: z.ZodType<
3726
- Nineteen$Outbound,
3803
+ export const GetEvalsFunctionParams19$outboundSchema: z.ZodType<
3804
+ GetEvalsFunctionParams19$Outbound,
3727
3805
  z.ZodTypeDef,
3728
- Nineteen
3806
+ GetEvalsFunctionParams19
3729
3807
  > = z.object({
3730
3808
  type:
3731
3809
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData519Type$outboundSchema,
@@ -3735,26 +3813,30 @@ export const Nineteen$outboundSchema: z.ZodType<
3735
3813
  * @internal
3736
3814
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3737
3815
  */
3738
- export namespace Nineteen$ {
3739
- /** @deprecated use `Nineteen$inboundSchema` instead. */
3740
- export const inboundSchema = Nineteen$inboundSchema;
3741
- /** @deprecated use `Nineteen$outboundSchema` instead. */
3742
- export const outboundSchema = Nineteen$outboundSchema;
3743
- /** @deprecated use `Nineteen$Outbound` instead. */
3744
- export type Outbound = Nineteen$Outbound;
3816
+ export namespace GetEvalsFunctionParams19$ {
3817
+ /** @deprecated use `GetEvalsFunctionParams19$inboundSchema` instead. */
3818
+ export const inboundSchema = GetEvalsFunctionParams19$inboundSchema;
3819
+ /** @deprecated use `GetEvalsFunctionParams19$outboundSchema` instead. */
3820
+ export const outboundSchema = GetEvalsFunctionParams19$outboundSchema;
3821
+ /** @deprecated use `GetEvalsFunctionParams19$Outbound` instead. */
3822
+ export type Outbound = GetEvalsFunctionParams19$Outbound;
3745
3823
  }
3746
3824
 
3747
- export function nineteenToJSON(nineteen: Nineteen): string {
3748
- return JSON.stringify(Nineteen$outboundSchema.parse(nineteen));
3825
+ export function getEvalsFunctionParams19ToJSON(
3826
+ getEvalsFunctionParams19: GetEvalsFunctionParams19,
3827
+ ): string {
3828
+ return JSON.stringify(
3829
+ GetEvalsFunctionParams19$outboundSchema.parse(getEvalsFunctionParams19),
3830
+ );
3749
3831
  }
3750
3832
 
3751
- export function nineteenFromJSON(
3833
+ export function getEvalsFunctionParams19FromJSON(
3752
3834
  jsonString: string,
3753
- ): SafeParseResult<Nineteen, SDKValidationError> {
3835
+ ): SafeParseResult<GetEvalsFunctionParams19, SDKValidationError> {
3754
3836
  return safeParse(
3755
3837
  jsonString,
3756
- (x) => Nineteen$inboundSchema.parse(JSON.parse(x)),
3757
- `Failed to parse 'Nineteen' from JSON`,
3838
+ (x) => GetEvalsFunctionParams19$inboundSchema.parse(JSON.parse(x)),
3839
+ `Failed to parse 'GetEvalsFunctionParams19' from JSON`,
3758
3840
  );
3759
3841
  }
3760
3842
 
@@ -3787,8 +3869,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3787
3869
  }
3788
3870
 
3789
3871
  /** @internal */
3790
- export const Eighteen$inboundSchema: z.ZodType<
3791
- Eighteen,
3872
+ export const GetEvalsFunctionParams18$inboundSchema: z.ZodType<
3873
+ GetEvalsFunctionParams18,
3792
3874
  z.ZodTypeDef,
3793
3875
  unknown
3794
3876
  > = z.object({
@@ -3797,15 +3879,15 @@ export const Eighteen$inboundSchema: z.ZodType<
3797
3879
  });
3798
3880
 
3799
3881
  /** @internal */
3800
- export type Eighteen$Outbound = {
3882
+ export type GetEvalsFunctionParams18$Outbound = {
3801
3883
  type: string;
3802
3884
  };
3803
3885
 
3804
3886
  /** @internal */
3805
- export const Eighteen$outboundSchema: z.ZodType<
3806
- Eighteen$Outbound,
3887
+ export const GetEvalsFunctionParams18$outboundSchema: z.ZodType<
3888
+ GetEvalsFunctionParams18$Outbound,
3807
3889
  z.ZodTypeDef,
3808
- Eighteen
3890
+ GetEvalsFunctionParams18
3809
3891
  > = z.object({
3810
3892
  type:
3811
3893
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData518Type$outboundSchema,
@@ -3815,26 +3897,30 @@ export const Eighteen$outboundSchema: z.ZodType<
3815
3897
  * @internal
3816
3898
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3817
3899
  */
3818
- export namespace Eighteen$ {
3819
- /** @deprecated use `Eighteen$inboundSchema` instead. */
3820
- export const inboundSchema = Eighteen$inboundSchema;
3821
- /** @deprecated use `Eighteen$outboundSchema` instead. */
3822
- export const outboundSchema = Eighteen$outboundSchema;
3823
- /** @deprecated use `Eighteen$Outbound` instead. */
3824
- export type Outbound = Eighteen$Outbound;
3900
+ export namespace GetEvalsFunctionParams18$ {
3901
+ /** @deprecated use `GetEvalsFunctionParams18$inboundSchema` instead. */
3902
+ export const inboundSchema = GetEvalsFunctionParams18$inboundSchema;
3903
+ /** @deprecated use `GetEvalsFunctionParams18$outboundSchema` instead. */
3904
+ export const outboundSchema = GetEvalsFunctionParams18$outboundSchema;
3905
+ /** @deprecated use `GetEvalsFunctionParams18$Outbound` instead. */
3906
+ export type Outbound = GetEvalsFunctionParams18$Outbound;
3825
3907
  }
3826
3908
 
3827
- export function eighteenToJSON(eighteen: Eighteen): string {
3828
- return JSON.stringify(Eighteen$outboundSchema.parse(eighteen));
3909
+ export function getEvalsFunctionParams18ToJSON(
3910
+ getEvalsFunctionParams18: GetEvalsFunctionParams18,
3911
+ ): string {
3912
+ return JSON.stringify(
3913
+ GetEvalsFunctionParams18$outboundSchema.parse(getEvalsFunctionParams18),
3914
+ );
3829
3915
  }
3830
3916
 
3831
- export function eighteenFromJSON(
3917
+ export function getEvalsFunctionParams18FromJSON(
3832
3918
  jsonString: string,
3833
- ): SafeParseResult<Eighteen, SDKValidationError> {
3919
+ ): SafeParseResult<GetEvalsFunctionParams18, SDKValidationError> {
3834
3920
  return safeParse(
3835
3921
  jsonString,
3836
- (x) => Eighteen$inboundSchema.parse(JSON.parse(x)),
3837
- `Failed to parse 'Eighteen' from JSON`,
3922
+ (x) => GetEvalsFunctionParams18$inboundSchema.parse(JSON.parse(x)),
3923
+ `Failed to parse 'GetEvalsFunctionParams18' from JSON`,
3838
3924
  );
3839
3925
  }
3840
3926
 
@@ -3867,8 +3953,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3867
3953
  }
3868
3954
 
3869
3955
  /** @internal */
3870
- export const Seventeen$inboundSchema: z.ZodType<
3871
- Seventeen,
3956
+ export const GetEvalsFunctionParams17$inboundSchema: z.ZodType<
3957
+ GetEvalsFunctionParams17,
3872
3958
  z.ZodTypeDef,
3873
3959
  unknown
3874
3960
  > = z.object({
@@ -3877,15 +3963,15 @@ export const Seventeen$inboundSchema: z.ZodType<
3877
3963
  });
3878
3964
 
3879
3965
  /** @internal */
3880
- export type Seventeen$Outbound = {
3966
+ export type GetEvalsFunctionParams17$Outbound = {
3881
3967
  type: string;
3882
3968
  };
3883
3969
 
3884
3970
  /** @internal */
3885
- export const Seventeen$outboundSchema: z.ZodType<
3886
- Seventeen$Outbound,
3971
+ export const GetEvalsFunctionParams17$outboundSchema: z.ZodType<
3972
+ GetEvalsFunctionParams17$Outbound,
3887
3973
  z.ZodTypeDef,
3888
- Seventeen
3974
+ GetEvalsFunctionParams17
3889
3975
  > = z.object({
3890
3976
  type:
3891
3977
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData517Type$outboundSchema,
@@ -3895,26 +3981,30 @@ export const Seventeen$outboundSchema: z.ZodType<
3895
3981
  * @internal
3896
3982
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3897
3983
  */
3898
- export namespace Seventeen$ {
3899
- /** @deprecated use `Seventeen$inboundSchema` instead. */
3900
- export const inboundSchema = Seventeen$inboundSchema;
3901
- /** @deprecated use `Seventeen$outboundSchema` instead. */
3902
- export const outboundSchema = Seventeen$outboundSchema;
3903
- /** @deprecated use `Seventeen$Outbound` instead. */
3904
- export type Outbound = Seventeen$Outbound;
3984
+ export namespace GetEvalsFunctionParams17$ {
3985
+ /** @deprecated use `GetEvalsFunctionParams17$inboundSchema` instead. */
3986
+ export const inboundSchema = GetEvalsFunctionParams17$inboundSchema;
3987
+ /** @deprecated use `GetEvalsFunctionParams17$outboundSchema` instead. */
3988
+ export const outboundSchema = GetEvalsFunctionParams17$outboundSchema;
3989
+ /** @deprecated use `GetEvalsFunctionParams17$Outbound` instead. */
3990
+ export type Outbound = GetEvalsFunctionParams17$Outbound;
3905
3991
  }
3906
3992
 
3907
- export function seventeenToJSON(seventeen: Seventeen): string {
3908
- return JSON.stringify(Seventeen$outboundSchema.parse(seventeen));
3993
+ export function getEvalsFunctionParams17ToJSON(
3994
+ getEvalsFunctionParams17: GetEvalsFunctionParams17,
3995
+ ): string {
3996
+ return JSON.stringify(
3997
+ GetEvalsFunctionParams17$outboundSchema.parse(getEvalsFunctionParams17),
3998
+ );
3909
3999
  }
3910
4000
 
3911
- export function seventeenFromJSON(
4001
+ export function getEvalsFunctionParams17FromJSON(
3912
4002
  jsonString: string,
3913
- ): SafeParseResult<Seventeen, SDKValidationError> {
4003
+ ): SafeParseResult<GetEvalsFunctionParams17, SDKValidationError> {
3914
4004
  return safeParse(
3915
4005
  jsonString,
3916
- (x) => Seventeen$inboundSchema.parse(JSON.parse(x)),
3917
- `Failed to parse 'Seventeen' from JSON`,
4006
+ (x) => GetEvalsFunctionParams17$inboundSchema.parse(JSON.parse(x)),
4007
+ `Failed to parse 'GetEvalsFunctionParams17' from JSON`,
3918
4008
  );
3919
4009
  }
3920
4010
 
@@ -3947,22 +4037,25 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
3947
4037
  }
3948
4038
 
3949
4039
  /** @internal */
3950
- export const Sixteen$inboundSchema: z.ZodType<Sixteen, z.ZodTypeDef, unknown> =
3951
- z.object({
3952
- type:
3953
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData516Type$inboundSchema,
3954
- });
4040
+ export const GetEvalsFunctionParams16$inboundSchema: z.ZodType<
4041
+ GetEvalsFunctionParams16,
4042
+ z.ZodTypeDef,
4043
+ unknown
4044
+ > = z.object({
4045
+ type:
4046
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData516Type$inboundSchema,
4047
+ });
3955
4048
 
3956
4049
  /** @internal */
3957
- export type Sixteen$Outbound = {
4050
+ export type GetEvalsFunctionParams16$Outbound = {
3958
4051
  type: string;
3959
4052
  };
3960
4053
 
3961
4054
  /** @internal */
3962
- export const Sixteen$outboundSchema: z.ZodType<
3963
- Sixteen$Outbound,
4055
+ export const GetEvalsFunctionParams16$outboundSchema: z.ZodType<
4056
+ GetEvalsFunctionParams16$Outbound,
3964
4057
  z.ZodTypeDef,
3965
- Sixteen
4058
+ GetEvalsFunctionParams16
3966
4059
  > = z.object({
3967
4060
  type:
3968
4061
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData516Type$outboundSchema,
@@ -3972,26 +4065,30 @@ export const Sixteen$outboundSchema: z.ZodType<
3972
4065
  * @internal
3973
4066
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3974
4067
  */
3975
- export namespace Sixteen$ {
3976
- /** @deprecated use `Sixteen$inboundSchema` instead. */
3977
- export const inboundSchema = Sixteen$inboundSchema;
3978
- /** @deprecated use `Sixteen$outboundSchema` instead. */
3979
- export const outboundSchema = Sixteen$outboundSchema;
3980
- /** @deprecated use `Sixteen$Outbound` instead. */
3981
- export type Outbound = Sixteen$Outbound;
4068
+ export namespace GetEvalsFunctionParams16$ {
4069
+ /** @deprecated use `GetEvalsFunctionParams16$inboundSchema` instead. */
4070
+ export const inboundSchema = GetEvalsFunctionParams16$inboundSchema;
4071
+ /** @deprecated use `GetEvalsFunctionParams16$outboundSchema` instead. */
4072
+ export const outboundSchema = GetEvalsFunctionParams16$outboundSchema;
4073
+ /** @deprecated use `GetEvalsFunctionParams16$Outbound` instead. */
4074
+ export type Outbound = GetEvalsFunctionParams16$Outbound;
3982
4075
  }
3983
4076
 
3984
- export function sixteenToJSON(sixteen: Sixteen): string {
3985
- return JSON.stringify(Sixteen$outboundSchema.parse(sixteen));
4077
+ export function getEvalsFunctionParams16ToJSON(
4078
+ getEvalsFunctionParams16: GetEvalsFunctionParams16,
4079
+ ): string {
4080
+ return JSON.stringify(
4081
+ GetEvalsFunctionParams16$outboundSchema.parse(getEvalsFunctionParams16),
4082
+ );
3986
4083
  }
3987
4084
 
3988
- export function sixteenFromJSON(
4085
+ export function getEvalsFunctionParams16FromJSON(
3989
4086
  jsonString: string,
3990
- ): SafeParseResult<Sixteen, SDKValidationError> {
4087
+ ): SafeParseResult<GetEvalsFunctionParams16, SDKValidationError> {
3991
4088
  return safeParse(
3992
4089
  jsonString,
3993
- (x) => Sixteen$inboundSchema.parse(JSON.parse(x)),
3994
- `Failed to parse 'Sixteen' from JSON`,
4090
+ (x) => GetEvalsFunctionParams16$inboundSchema.parse(JSON.parse(x)),
4091
+ `Failed to parse 'GetEvalsFunctionParams16' from JSON`,
3995
4092
  );
3996
4093
  }
3997
4094
 
@@ -4024,24 +4121,27 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4024
4121
  }
4025
4122
 
4026
4123
  /** @internal */
4027
- export const Fifteen$inboundSchema: z.ZodType<Fifteen, z.ZodTypeDef, unknown> =
4028
- z.object({
4029
- type:
4030
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData515Type$inboundSchema,
4031
- pattern: z.string(),
4032
- });
4124
+ export const GetEvalsFunctionParams15$inboundSchema: z.ZodType<
4125
+ GetEvalsFunctionParams15,
4126
+ z.ZodTypeDef,
4127
+ unknown
4128
+ > = z.object({
4129
+ type:
4130
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData515Type$inboundSchema,
4131
+ pattern: z.string(),
4132
+ });
4033
4133
 
4034
4134
  /** @internal */
4035
- export type Fifteen$Outbound = {
4135
+ export type GetEvalsFunctionParams15$Outbound = {
4036
4136
  type: string;
4037
4137
  pattern: string;
4038
4138
  };
4039
4139
 
4040
4140
  /** @internal */
4041
- export const Fifteen$outboundSchema: z.ZodType<
4042
- Fifteen$Outbound,
4141
+ export const GetEvalsFunctionParams15$outboundSchema: z.ZodType<
4142
+ GetEvalsFunctionParams15$Outbound,
4043
4143
  z.ZodTypeDef,
4044
- Fifteen
4144
+ GetEvalsFunctionParams15
4045
4145
  > = z.object({
4046
4146
  type:
4047
4147
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData515Type$outboundSchema,
@@ -4052,26 +4152,30 @@ export const Fifteen$outboundSchema: z.ZodType<
4052
4152
  * @internal
4053
4153
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4054
4154
  */
4055
- export namespace Fifteen$ {
4056
- /** @deprecated use `Fifteen$inboundSchema` instead. */
4057
- export const inboundSchema = Fifteen$inboundSchema;
4058
- /** @deprecated use `Fifteen$outboundSchema` instead. */
4059
- export const outboundSchema = Fifteen$outboundSchema;
4060
- /** @deprecated use `Fifteen$Outbound` instead. */
4061
- export type Outbound = Fifteen$Outbound;
4155
+ export namespace GetEvalsFunctionParams15$ {
4156
+ /** @deprecated use `GetEvalsFunctionParams15$inboundSchema` instead. */
4157
+ export const inboundSchema = GetEvalsFunctionParams15$inboundSchema;
4158
+ /** @deprecated use `GetEvalsFunctionParams15$outboundSchema` instead. */
4159
+ export const outboundSchema = GetEvalsFunctionParams15$outboundSchema;
4160
+ /** @deprecated use `GetEvalsFunctionParams15$Outbound` instead. */
4161
+ export type Outbound = GetEvalsFunctionParams15$Outbound;
4062
4162
  }
4063
4163
 
4064
- export function fifteenToJSON(fifteen: Fifteen): string {
4065
- return JSON.stringify(Fifteen$outboundSchema.parse(fifteen));
4164
+ export function getEvalsFunctionParams15ToJSON(
4165
+ getEvalsFunctionParams15: GetEvalsFunctionParams15,
4166
+ ): string {
4167
+ return JSON.stringify(
4168
+ GetEvalsFunctionParams15$outboundSchema.parse(getEvalsFunctionParams15),
4169
+ );
4066
4170
  }
4067
4171
 
4068
- export function fifteenFromJSON(
4172
+ export function getEvalsFunctionParams15FromJSON(
4069
4173
  jsonString: string,
4070
- ): SafeParseResult<Fifteen, SDKValidationError> {
4174
+ ): SafeParseResult<GetEvalsFunctionParams15, SDKValidationError> {
4071
4175
  return safeParse(
4072
4176
  jsonString,
4073
- (x) => Fifteen$inboundSchema.parse(JSON.parse(x)),
4074
- `Failed to parse 'Fifteen' from JSON`,
4177
+ (x) => GetEvalsFunctionParams15$inboundSchema.parse(JSON.parse(x)),
4178
+ `Failed to parse 'GetEvalsFunctionParams15' from JSON`,
4075
4179
  );
4076
4180
  }
4077
4181
 
@@ -4104,8 +4208,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4104
4208
  }
4105
4209
 
4106
4210
  /** @internal */
4107
- export const Fourteen$inboundSchema: z.ZodType<
4108
- Fourteen,
4211
+ export const GetEvalsFunctionParams14$inboundSchema: z.ZodType<
4212
+ GetEvalsFunctionParams14,
4109
4213
  z.ZodTypeDef,
4110
4214
  unknown
4111
4215
  > = z.object({
@@ -4114,15 +4218,15 @@ export const Fourteen$inboundSchema: z.ZodType<
4114
4218
  });
4115
4219
 
4116
4220
  /** @internal */
4117
- export type Fourteen$Outbound = {
4221
+ export type GetEvalsFunctionParams14$Outbound = {
4118
4222
  type: string;
4119
4223
  };
4120
4224
 
4121
4225
  /** @internal */
4122
- export const Fourteen$outboundSchema: z.ZodType<
4123
- Fourteen$Outbound,
4226
+ export const GetEvalsFunctionParams14$outboundSchema: z.ZodType<
4227
+ GetEvalsFunctionParams14$Outbound,
4124
4228
  z.ZodTypeDef,
4125
- Fourteen
4229
+ GetEvalsFunctionParams14
4126
4230
  > = z.object({
4127
4231
  type:
4128
4232
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData514Type$outboundSchema,
@@ -4132,26 +4236,30 @@ export const Fourteen$outboundSchema: z.ZodType<
4132
4236
  * @internal
4133
4237
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4134
4238
  */
4135
- export namespace Fourteen$ {
4136
- /** @deprecated use `Fourteen$inboundSchema` instead. */
4137
- export const inboundSchema = Fourteen$inboundSchema;
4138
- /** @deprecated use `Fourteen$outboundSchema` instead. */
4139
- export const outboundSchema = Fourteen$outboundSchema;
4140
- /** @deprecated use `Fourteen$Outbound` instead. */
4141
- export type Outbound = Fourteen$Outbound;
4239
+ export namespace GetEvalsFunctionParams14$ {
4240
+ /** @deprecated use `GetEvalsFunctionParams14$inboundSchema` instead. */
4241
+ export const inboundSchema = GetEvalsFunctionParams14$inboundSchema;
4242
+ /** @deprecated use `GetEvalsFunctionParams14$outboundSchema` instead. */
4243
+ export const outboundSchema = GetEvalsFunctionParams14$outboundSchema;
4244
+ /** @deprecated use `GetEvalsFunctionParams14$Outbound` instead. */
4245
+ export type Outbound = GetEvalsFunctionParams14$Outbound;
4142
4246
  }
4143
4247
 
4144
- export function fourteenToJSON(fourteen: Fourteen): string {
4145
- return JSON.stringify(Fourteen$outboundSchema.parse(fourteen));
4248
+ export function getEvalsFunctionParams14ToJSON(
4249
+ getEvalsFunctionParams14: GetEvalsFunctionParams14,
4250
+ ): string {
4251
+ return JSON.stringify(
4252
+ GetEvalsFunctionParams14$outboundSchema.parse(getEvalsFunctionParams14),
4253
+ );
4146
4254
  }
4147
4255
 
4148
- export function fourteenFromJSON(
4256
+ export function getEvalsFunctionParams14FromJSON(
4149
4257
  jsonString: string,
4150
- ): SafeParseResult<Fourteen, SDKValidationError> {
4258
+ ): SafeParseResult<GetEvalsFunctionParams14, SDKValidationError> {
4151
4259
  return safeParse(
4152
4260
  jsonString,
4153
- (x) => Fourteen$inboundSchema.parse(JSON.parse(x)),
4154
- `Failed to parse 'Fourteen' from JSON`,
4261
+ (x) => GetEvalsFunctionParams14$inboundSchema.parse(JSON.parse(x)),
4262
+ `Failed to parse 'GetEvalsFunctionParams14' from JSON`,
4155
4263
  );
4156
4264
  }
4157
4265
 
@@ -4184,8 +4292,8 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4184
4292
  }
4185
4293
 
4186
4294
  /** @internal */
4187
- export const Thirteen$inboundSchema: z.ZodType<
4188
- Thirteen,
4295
+ export const GetEvalsFunctionParams13$inboundSchema: z.ZodType<
4296
+ GetEvalsFunctionParams13,
4189
4297
  z.ZodTypeDef,
4190
4298
  unknown
4191
4299
  > = z.object({
@@ -4195,16 +4303,16 @@ export const Thirteen$inboundSchema: z.ZodType<
4195
4303
  });
4196
4304
 
4197
4305
  /** @internal */
4198
- export type Thirteen$Outbound = {
4306
+ export type GetEvalsFunctionParams13$Outbound = {
4199
4307
  type: string;
4200
4308
  value: number;
4201
4309
  };
4202
4310
 
4203
4311
  /** @internal */
4204
- export const Thirteen$outboundSchema: z.ZodType<
4205
- Thirteen$Outbound,
4312
+ export const GetEvalsFunctionParams13$outboundSchema: z.ZodType<
4313
+ GetEvalsFunctionParams13$Outbound,
4206
4314
  z.ZodTypeDef,
4207
- Thirteen
4315
+ GetEvalsFunctionParams13
4208
4316
  > = z.object({
4209
4317
  type:
4210
4318
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData513Type$outboundSchema,
@@ -4215,26 +4323,30 @@ export const Thirteen$outboundSchema: z.ZodType<
4215
4323
  * @internal
4216
4324
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4217
4325
  */
4218
- export namespace Thirteen$ {
4219
- /** @deprecated use `Thirteen$inboundSchema` instead. */
4220
- export const inboundSchema = Thirteen$inboundSchema;
4221
- /** @deprecated use `Thirteen$outboundSchema` instead. */
4222
- export const outboundSchema = Thirteen$outboundSchema;
4223
- /** @deprecated use `Thirteen$Outbound` instead. */
4224
- export type Outbound = Thirteen$Outbound;
4326
+ export namespace GetEvalsFunctionParams13$ {
4327
+ /** @deprecated use `GetEvalsFunctionParams13$inboundSchema` instead. */
4328
+ export const inboundSchema = GetEvalsFunctionParams13$inboundSchema;
4329
+ /** @deprecated use `GetEvalsFunctionParams13$outboundSchema` instead. */
4330
+ export const outboundSchema = GetEvalsFunctionParams13$outboundSchema;
4331
+ /** @deprecated use `GetEvalsFunctionParams13$Outbound` instead. */
4332
+ export type Outbound = GetEvalsFunctionParams13$Outbound;
4225
4333
  }
4226
4334
 
4227
- export function thirteenToJSON(thirteen: Thirteen): string {
4228
- return JSON.stringify(Thirteen$outboundSchema.parse(thirteen));
4335
+ export function getEvalsFunctionParams13ToJSON(
4336
+ getEvalsFunctionParams13: GetEvalsFunctionParams13,
4337
+ ): string {
4338
+ return JSON.stringify(
4339
+ GetEvalsFunctionParams13$outboundSchema.parse(getEvalsFunctionParams13),
4340
+ );
4229
4341
  }
4230
4342
 
4231
- export function thirteenFromJSON(
4343
+ export function getEvalsFunctionParams13FromJSON(
4232
4344
  jsonString: string,
4233
- ): SafeParseResult<Thirteen, SDKValidationError> {
4345
+ ): SafeParseResult<GetEvalsFunctionParams13, SDKValidationError> {
4234
4346
  return safeParse(
4235
4347
  jsonString,
4236
- (x) => Thirteen$inboundSchema.parse(JSON.parse(x)),
4237
- `Failed to parse 'Thirteen' from JSON`,
4348
+ (x) => GetEvalsFunctionParams13$inboundSchema.parse(JSON.parse(x)),
4349
+ `Failed to parse 'GetEvalsFunctionParams13' from JSON`,
4238
4350
  );
4239
4351
  }
4240
4352
 
@@ -4267,26 +4379,29 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4267
4379
  }
4268
4380
 
4269
4381
  /** @internal */
4270
- export const Twelve$inboundSchema: z.ZodType<Twelve, z.ZodTypeDef, unknown> = z
4271
- .object({
4272
- type:
4273
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData512Type$inboundSchema,
4274
- min: z.number(),
4275
- max: z.number(),
4276
- });
4382
+ export const GetEvalsFunctionParams12$inboundSchema: z.ZodType<
4383
+ GetEvalsFunctionParams12,
4384
+ z.ZodTypeDef,
4385
+ unknown
4386
+ > = z.object({
4387
+ type:
4388
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData512Type$inboundSchema,
4389
+ min: z.number(),
4390
+ max: z.number(),
4391
+ });
4277
4392
 
4278
4393
  /** @internal */
4279
- export type Twelve$Outbound = {
4394
+ export type GetEvalsFunctionParams12$Outbound = {
4280
4395
  type: string;
4281
4396
  min: number;
4282
4397
  max: number;
4283
4398
  };
4284
4399
 
4285
4400
  /** @internal */
4286
- export const Twelve$outboundSchema: z.ZodType<
4287
- Twelve$Outbound,
4401
+ export const GetEvalsFunctionParams12$outboundSchema: z.ZodType<
4402
+ GetEvalsFunctionParams12$Outbound,
4288
4403
  z.ZodTypeDef,
4289
- Twelve
4404
+ GetEvalsFunctionParams12
4290
4405
  > = z.object({
4291
4406
  type:
4292
4407
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData512Type$outboundSchema,
@@ -4298,26 +4413,30 @@ export const Twelve$outboundSchema: z.ZodType<
4298
4413
  * @internal
4299
4414
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4300
4415
  */
4301
- export namespace Twelve$ {
4302
- /** @deprecated use `Twelve$inboundSchema` instead. */
4303
- export const inboundSchema = Twelve$inboundSchema;
4304
- /** @deprecated use `Twelve$outboundSchema` instead. */
4305
- export const outboundSchema = Twelve$outboundSchema;
4306
- /** @deprecated use `Twelve$Outbound` instead. */
4307
- export type Outbound = Twelve$Outbound;
4416
+ export namespace GetEvalsFunctionParams12$ {
4417
+ /** @deprecated use `GetEvalsFunctionParams12$inboundSchema` instead. */
4418
+ export const inboundSchema = GetEvalsFunctionParams12$inboundSchema;
4419
+ /** @deprecated use `GetEvalsFunctionParams12$outboundSchema` instead. */
4420
+ export const outboundSchema = GetEvalsFunctionParams12$outboundSchema;
4421
+ /** @deprecated use `GetEvalsFunctionParams12$Outbound` instead. */
4422
+ export type Outbound = GetEvalsFunctionParams12$Outbound;
4308
4423
  }
4309
4424
 
4310
- export function twelveToJSON(twelve: Twelve): string {
4311
- return JSON.stringify(Twelve$outboundSchema.parse(twelve));
4425
+ export function getEvalsFunctionParams12ToJSON(
4426
+ getEvalsFunctionParams12: GetEvalsFunctionParams12,
4427
+ ): string {
4428
+ return JSON.stringify(
4429
+ GetEvalsFunctionParams12$outboundSchema.parse(getEvalsFunctionParams12),
4430
+ );
4312
4431
  }
4313
4432
 
4314
- export function twelveFromJSON(
4433
+ export function getEvalsFunctionParams12FromJSON(
4315
4434
  jsonString: string,
4316
- ): SafeParseResult<Twelve, SDKValidationError> {
4435
+ ): SafeParseResult<GetEvalsFunctionParams12, SDKValidationError> {
4317
4436
  return safeParse(
4318
4437
  jsonString,
4319
- (x) => Twelve$inboundSchema.parse(JSON.parse(x)),
4320
- `Failed to parse 'Twelve' from JSON`,
4438
+ (x) => GetEvalsFunctionParams12$inboundSchema.parse(JSON.parse(x)),
4439
+ `Failed to parse 'GetEvalsFunctionParams12' from JSON`,
4321
4440
  );
4322
4441
  }
4323
4442
 
@@ -4350,24 +4469,27 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4350
4469
  }
4351
4470
 
4352
4471
  /** @internal */
4353
- export const Eleven$inboundSchema: z.ZodType<Eleven, z.ZodTypeDef, unknown> = z
4354
- .object({
4355
- type:
4356
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData511Type$inboundSchema,
4357
- value: z.number(),
4358
- });
4472
+ export const GetEvalsFunctionParams11$inboundSchema: z.ZodType<
4473
+ GetEvalsFunctionParams11,
4474
+ z.ZodTypeDef,
4475
+ unknown
4476
+ > = z.object({
4477
+ type:
4478
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData511Type$inboundSchema,
4479
+ value: z.number(),
4480
+ });
4359
4481
 
4360
4482
  /** @internal */
4361
- export type Eleven$Outbound = {
4483
+ export type GetEvalsFunctionParams11$Outbound = {
4362
4484
  type: string;
4363
4485
  value: number;
4364
4486
  };
4365
4487
 
4366
4488
  /** @internal */
4367
- export const Eleven$outboundSchema: z.ZodType<
4368
- Eleven$Outbound,
4489
+ export const GetEvalsFunctionParams11$outboundSchema: z.ZodType<
4490
+ GetEvalsFunctionParams11$Outbound,
4369
4491
  z.ZodTypeDef,
4370
- Eleven
4492
+ GetEvalsFunctionParams11
4371
4493
  > = z.object({
4372
4494
  type:
4373
4495
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData511Type$outboundSchema,
@@ -4378,26 +4500,30 @@ export const Eleven$outboundSchema: z.ZodType<
4378
4500
  * @internal
4379
4501
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4380
4502
  */
4381
- export namespace Eleven$ {
4382
- /** @deprecated use `Eleven$inboundSchema` instead. */
4383
- export const inboundSchema = Eleven$inboundSchema;
4384
- /** @deprecated use `Eleven$outboundSchema` instead. */
4385
- export const outboundSchema = Eleven$outboundSchema;
4386
- /** @deprecated use `Eleven$Outbound` instead. */
4387
- export type Outbound = Eleven$Outbound;
4503
+ export namespace GetEvalsFunctionParams11$ {
4504
+ /** @deprecated use `GetEvalsFunctionParams11$inboundSchema` instead. */
4505
+ export const inboundSchema = GetEvalsFunctionParams11$inboundSchema;
4506
+ /** @deprecated use `GetEvalsFunctionParams11$outboundSchema` instead. */
4507
+ export const outboundSchema = GetEvalsFunctionParams11$outboundSchema;
4508
+ /** @deprecated use `GetEvalsFunctionParams11$Outbound` instead. */
4509
+ export type Outbound = GetEvalsFunctionParams11$Outbound;
4388
4510
  }
4389
4511
 
4390
- export function elevenToJSON(eleven: Eleven): string {
4391
- return JSON.stringify(Eleven$outboundSchema.parse(eleven));
4512
+ export function getEvalsFunctionParams11ToJSON(
4513
+ getEvalsFunctionParams11: GetEvalsFunctionParams11,
4514
+ ): string {
4515
+ return JSON.stringify(
4516
+ GetEvalsFunctionParams11$outboundSchema.parse(getEvalsFunctionParams11),
4517
+ );
4392
4518
  }
4393
4519
 
4394
- export function elevenFromJSON(
4520
+ export function getEvalsFunctionParams11FromJSON(
4395
4521
  jsonString: string,
4396
- ): SafeParseResult<Eleven, SDKValidationError> {
4522
+ ): SafeParseResult<GetEvalsFunctionParams11, SDKValidationError> {
4397
4523
  return safeParse(
4398
4524
  jsonString,
4399
- (x) => Eleven$inboundSchema.parse(JSON.parse(x)),
4400
- `Failed to parse 'Eleven' from JSON`,
4525
+ (x) => GetEvalsFunctionParams11$inboundSchema.parse(JSON.parse(x)),
4526
+ `Failed to parse 'GetEvalsFunctionParams11' from JSON`,
4401
4527
  );
4402
4528
  }
4403
4529
 
@@ -4430,48 +4556,58 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4430
4556
  }
4431
4557
 
4432
4558
  /** @internal */
4433
- export const Ten$inboundSchema: z.ZodType<Ten, z.ZodTypeDef, unknown> = z
4434
- .object({
4435
- type:
4436
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type$inboundSchema,
4437
- });
4559
+ export const GetEvalsFunctionParams10$inboundSchema: z.ZodType<
4560
+ GetEvalsFunctionParams10,
4561
+ z.ZodTypeDef,
4562
+ unknown
4563
+ > = z.object({
4564
+ type:
4565
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type$inboundSchema,
4566
+ });
4438
4567
 
4439
4568
  /** @internal */
4440
- export type Ten$Outbound = {
4569
+ export type GetEvalsFunctionParams10$Outbound = {
4441
4570
  type: string;
4442
4571
  };
4443
4572
 
4444
4573
  /** @internal */
4445
- export const Ten$outboundSchema: z.ZodType<Ten$Outbound, z.ZodTypeDef, Ten> = z
4446
- .object({
4447
- type:
4448
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type$outboundSchema,
4449
- });
4574
+ export const GetEvalsFunctionParams10$outboundSchema: z.ZodType<
4575
+ GetEvalsFunctionParams10$Outbound,
4576
+ z.ZodTypeDef,
4577
+ GetEvalsFunctionParams10
4578
+ > = z.object({
4579
+ type:
4580
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData510Type$outboundSchema,
4581
+ });
4450
4582
 
4451
4583
  /**
4452
4584
  * @internal
4453
4585
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4454
4586
  */
4455
- export namespace Ten$ {
4456
- /** @deprecated use `Ten$inboundSchema` instead. */
4457
- export const inboundSchema = Ten$inboundSchema;
4458
- /** @deprecated use `Ten$outboundSchema` instead. */
4459
- export const outboundSchema = Ten$outboundSchema;
4460
- /** @deprecated use `Ten$Outbound` instead. */
4461
- export type Outbound = Ten$Outbound;
4587
+ export namespace GetEvalsFunctionParams10$ {
4588
+ /** @deprecated use `GetEvalsFunctionParams10$inboundSchema` instead. */
4589
+ export const inboundSchema = GetEvalsFunctionParams10$inboundSchema;
4590
+ /** @deprecated use `GetEvalsFunctionParams10$outboundSchema` instead. */
4591
+ export const outboundSchema = GetEvalsFunctionParams10$outboundSchema;
4592
+ /** @deprecated use `GetEvalsFunctionParams10$Outbound` instead. */
4593
+ export type Outbound = GetEvalsFunctionParams10$Outbound;
4462
4594
  }
4463
4595
 
4464
- export function tenToJSON(ten: Ten): string {
4465
- return JSON.stringify(Ten$outboundSchema.parse(ten));
4596
+ export function getEvalsFunctionParams10ToJSON(
4597
+ getEvalsFunctionParams10: GetEvalsFunctionParams10,
4598
+ ): string {
4599
+ return JSON.stringify(
4600
+ GetEvalsFunctionParams10$outboundSchema.parse(getEvalsFunctionParams10),
4601
+ );
4466
4602
  }
4467
4603
 
4468
- export function tenFromJSON(
4604
+ export function getEvalsFunctionParams10FromJSON(
4469
4605
  jsonString: string,
4470
- ): SafeParseResult<Ten, SDKValidationError> {
4606
+ ): SafeParseResult<GetEvalsFunctionParams10, SDKValidationError> {
4471
4607
  return safeParse(
4472
4608
  jsonString,
4473
- (x) => Ten$inboundSchema.parse(JSON.parse(x)),
4474
- `Failed to parse 'Ten' from JSON`,
4609
+ (x) => GetEvalsFunctionParams10$inboundSchema.parse(JSON.parse(x)),
4610
+ `Failed to parse 'GetEvalsFunctionParams10' from JSON`,
4475
4611
  );
4476
4612
  }
4477
4613
 
@@ -4504,51 +4640,61 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4504
4640
  }
4505
4641
 
4506
4642
  /** @internal */
4507
- export const Nine$inboundSchema: z.ZodType<Nine, z.ZodTypeDef, unknown> = z
4508
- .object({
4509
- type:
4510
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type$inboundSchema,
4511
- value: z.string(),
4512
- });
4643
+ export const GetEvalsFunctionParams9$inboundSchema: z.ZodType<
4644
+ GetEvalsFunctionParams9,
4645
+ z.ZodTypeDef,
4646
+ unknown
4647
+ > = z.object({
4648
+ type:
4649
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type$inboundSchema,
4650
+ value: z.string(),
4651
+ });
4513
4652
 
4514
4653
  /** @internal */
4515
- export type Nine$Outbound = {
4654
+ export type GetEvalsFunctionParams9$Outbound = {
4516
4655
  type: string;
4517
4656
  value: string;
4518
4657
  };
4519
4658
 
4520
4659
  /** @internal */
4521
- export const Nine$outboundSchema: z.ZodType<Nine$Outbound, z.ZodTypeDef, Nine> =
4522
- z.object({
4523
- type:
4524
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type$outboundSchema,
4525
- value: z.string(),
4526
- });
4660
+ export const GetEvalsFunctionParams9$outboundSchema: z.ZodType<
4661
+ GetEvalsFunctionParams9$Outbound,
4662
+ z.ZodTypeDef,
4663
+ GetEvalsFunctionParams9
4664
+ > = z.object({
4665
+ type:
4666
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData5Type$outboundSchema,
4667
+ value: z.string(),
4668
+ });
4527
4669
 
4528
4670
  /**
4529
4671
  * @internal
4530
4672
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4531
4673
  */
4532
- export namespace Nine$ {
4533
- /** @deprecated use `Nine$inboundSchema` instead. */
4534
- export const inboundSchema = Nine$inboundSchema;
4535
- /** @deprecated use `Nine$outboundSchema` instead. */
4536
- export const outboundSchema = Nine$outboundSchema;
4537
- /** @deprecated use `Nine$Outbound` instead. */
4538
- export type Outbound = Nine$Outbound;
4674
+ export namespace GetEvalsFunctionParams9$ {
4675
+ /** @deprecated use `GetEvalsFunctionParams9$inboundSchema` instead. */
4676
+ export const inboundSchema = GetEvalsFunctionParams9$inboundSchema;
4677
+ /** @deprecated use `GetEvalsFunctionParams9$outboundSchema` instead. */
4678
+ export const outboundSchema = GetEvalsFunctionParams9$outboundSchema;
4679
+ /** @deprecated use `GetEvalsFunctionParams9$Outbound` instead. */
4680
+ export type Outbound = GetEvalsFunctionParams9$Outbound;
4539
4681
  }
4540
4682
 
4541
- export function nineToJSON(nine: Nine): string {
4542
- return JSON.stringify(Nine$outboundSchema.parse(nine));
4683
+ export function getEvalsFunctionParams9ToJSON(
4684
+ getEvalsFunctionParams9: GetEvalsFunctionParams9,
4685
+ ): string {
4686
+ return JSON.stringify(
4687
+ GetEvalsFunctionParams9$outboundSchema.parse(getEvalsFunctionParams9),
4688
+ );
4543
4689
  }
4544
4690
 
4545
- export function nineFromJSON(
4691
+ export function getEvalsFunctionParams9FromJSON(
4546
4692
  jsonString: string,
4547
- ): SafeParseResult<Nine, SDKValidationError> {
4693
+ ): SafeParseResult<GetEvalsFunctionParams9, SDKValidationError> {
4548
4694
  return safeParse(
4549
4695
  jsonString,
4550
- (x) => Nine$inboundSchema.parse(JSON.parse(x)),
4551
- `Failed to parse 'Nine' from JSON`,
4696
+ (x) => GetEvalsFunctionParams9$inboundSchema.parse(JSON.parse(x)),
4697
+ `Failed to parse 'GetEvalsFunctionParams9' from JSON`,
4552
4698
  );
4553
4699
  }
4554
4700
 
@@ -4581,24 +4727,27 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4581
4727
  }
4582
4728
 
4583
4729
  /** @internal */
4584
- export const Eight$inboundSchema: z.ZodType<Eight, z.ZodTypeDef, unknown> = z
4585
- .object({
4586
- type:
4587
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDataType$inboundSchema,
4588
- value: z.string(),
4589
- });
4730
+ export const GetEvalsFunctionParams8$inboundSchema: z.ZodType<
4731
+ GetEvalsFunctionParams8,
4732
+ z.ZodTypeDef,
4733
+ unknown
4734
+ > = z.object({
4735
+ type:
4736
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDataType$inboundSchema,
4737
+ value: z.string(),
4738
+ });
4590
4739
 
4591
4740
  /** @internal */
4592
- export type Eight$Outbound = {
4741
+ export type GetEvalsFunctionParams8$Outbound = {
4593
4742
  type: string;
4594
4743
  value: string;
4595
4744
  };
4596
4745
 
4597
4746
  /** @internal */
4598
- export const Eight$outboundSchema: z.ZodType<
4599
- Eight$Outbound,
4747
+ export const GetEvalsFunctionParams8$outboundSchema: z.ZodType<
4748
+ GetEvalsFunctionParams8$Outbound,
4600
4749
  z.ZodTypeDef,
4601
- Eight
4750
+ GetEvalsFunctionParams8
4602
4751
  > = z.object({
4603
4752
  type:
4604
4753
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyDataType$outboundSchema,
@@ -4609,26 +4758,30 @@ export const Eight$outboundSchema: z.ZodType<
4609
4758
  * @internal
4610
4759
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4611
4760
  */
4612
- export namespace Eight$ {
4613
- /** @deprecated use `Eight$inboundSchema` instead. */
4614
- export const inboundSchema = Eight$inboundSchema;
4615
- /** @deprecated use `Eight$outboundSchema` instead. */
4616
- export const outboundSchema = Eight$outboundSchema;
4617
- /** @deprecated use `Eight$Outbound` instead. */
4618
- export type Outbound = Eight$Outbound;
4761
+ export namespace GetEvalsFunctionParams8$ {
4762
+ /** @deprecated use `GetEvalsFunctionParams8$inboundSchema` instead. */
4763
+ export const inboundSchema = GetEvalsFunctionParams8$inboundSchema;
4764
+ /** @deprecated use `GetEvalsFunctionParams8$outboundSchema` instead. */
4765
+ export const outboundSchema = GetEvalsFunctionParams8$outboundSchema;
4766
+ /** @deprecated use `GetEvalsFunctionParams8$Outbound` instead. */
4767
+ export type Outbound = GetEvalsFunctionParams8$Outbound;
4619
4768
  }
4620
4769
 
4621
- export function eightToJSON(eight: Eight): string {
4622
- return JSON.stringify(Eight$outboundSchema.parse(eight));
4770
+ export function getEvalsFunctionParams8ToJSON(
4771
+ getEvalsFunctionParams8: GetEvalsFunctionParams8,
4772
+ ): string {
4773
+ return JSON.stringify(
4774
+ GetEvalsFunctionParams8$outboundSchema.parse(getEvalsFunctionParams8),
4775
+ );
4623
4776
  }
4624
4777
 
4625
- export function eightFromJSON(
4778
+ export function getEvalsFunctionParams8FromJSON(
4626
4779
  jsonString: string,
4627
- ): SafeParseResult<Eight, SDKValidationError> {
4780
+ ): SafeParseResult<GetEvalsFunctionParams8, SDKValidationError> {
4628
4781
  return safeParse(
4629
4782
  jsonString,
4630
- (x) => Eight$inboundSchema.parse(JSON.parse(x)),
4631
- `Failed to parse 'Eight' from JSON`,
4783
+ (x) => GetEvalsFunctionParams8$inboundSchema.parse(JSON.parse(x)),
4784
+ `Failed to parse 'GetEvalsFunctionParams8' from JSON`,
4632
4785
  );
4633
4786
  }
4634
4787
 
@@ -4661,22 +4814,25 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBo
4661
4814
  }
4662
4815
 
4663
4816
  /** @internal */
4664
- export const Seven$inboundSchema: z.ZodType<Seven, z.ZodTypeDef, unknown> = z
4665
- .object({
4666
- type:
4667
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
4668
- });
4817
+ export const GetEvalsFunctionParams7$inboundSchema: z.ZodType<
4818
+ GetEvalsFunctionParams7,
4819
+ z.ZodTypeDef,
4820
+ unknown
4821
+ > = z.object({
4822
+ type:
4823
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
4824
+ });
4669
4825
 
4670
4826
  /** @internal */
4671
- export type Seven$Outbound = {
4827
+ export type GetEvalsFunctionParams7$Outbound = {
4672
4828
  type: string;
4673
4829
  };
4674
4830
 
4675
4831
  /** @internal */
4676
- export const Seven$outboundSchema: z.ZodType<
4677
- Seven$Outbound,
4832
+ export const GetEvalsFunctionParams7$outboundSchema: z.ZodType<
4833
+ GetEvalsFunctionParams7$Outbound,
4678
4834
  z.ZodTypeDef,
4679
- Seven
4835
+ GetEvalsFunctionParams7
4680
4836
  > = z.object({
4681
4837
  type:
4682
4838
  GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema,
@@ -4686,26 +4842,30 @@ export const Seven$outboundSchema: z.ZodType<
4686
4842
  * @internal
4687
4843
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4688
4844
  */
4689
- export namespace Seven$ {
4690
- /** @deprecated use `Seven$inboundSchema` instead. */
4691
- export const inboundSchema = Seven$inboundSchema;
4692
- /** @deprecated use `Seven$outboundSchema` instead. */
4693
- export const outboundSchema = Seven$outboundSchema;
4694
- /** @deprecated use `Seven$Outbound` instead. */
4695
- export type Outbound = Seven$Outbound;
4845
+ export namespace GetEvalsFunctionParams7$ {
4846
+ /** @deprecated use `GetEvalsFunctionParams7$inboundSchema` instead. */
4847
+ export const inboundSchema = GetEvalsFunctionParams7$inboundSchema;
4848
+ /** @deprecated use `GetEvalsFunctionParams7$outboundSchema` instead. */
4849
+ export const outboundSchema = GetEvalsFunctionParams7$outboundSchema;
4850
+ /** @deprecated use `GetEvalsFunctionParams7$Outbound` instead. */
4851
+ export type Outbound = GetEvalsFunctionParams7$Outbound;
4696
4852
  }
4697
4853
 
4698
- export function sevenToJSON(seven: Seven): string {
4699
- return JSON.stringify(Seven$outboundSchema.parse(seven));
4854
+ export function getEvalsFunctionParams7ToJSON(
4855
+ getEvalsFunctionParams7: GetEvalsFunctionParams7,
4856
+ ): string {
4857
+ return JSON.stringify(
4858
+ GetEvalsFunctionParams7$outboundSchema.parse(getEvalsFunctionParams7),
4859
+ );
4700
4860
  }
4701
4861
 
4702
- export function sevenFromJSON(
4862
+ export function getEvalsFunctionParams7FromJSON(
4703
4863
  jsonString: string,
4704
- ): SafeParseResult<Seven, SDKValidationError> {
4864
+ ): SafeParseResult<GetEvalsFunctionParams7, SDKValidationError> {
4705
4865
  return safeParse(
4706
4866
  jsonString,
4707
- (x) => Seven$inboundSchema.parse(JSON.parse(x)),
4708
- `Failed to parse 'Seven' from JSON`,
4867
+ (x) => GetEvalsFunctionParams7$inboundSchema.parse(JSON.parse(x)),
4868
+ `Failed to parse 'GetEvalsFunctionParams7' from JSON`,
4709
4869
  );
4710
4870
  }
4711
4871
 
@@ -4735,48 +4895,57 @@ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType$ {
4735
4895
  }
4736
4896
 
4737
4897
  /** @internal */
4738
- export const Six$inboundSchema: z.ZodType<Six, z.ZodTypeDef, unknown> = z
4739
- .object({
4740
- type:
4741
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema,
4742
- });
4898
+ export const GetEvalsFunctionParams6$inboundSchema: z.ZodType<
4899
+ GetEvalsFunctionParams6,
4900
+ z.ZodTypeDef,
4901
+ unknown
4902
+ > = z.object({
4903
+ type: GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema,
4904
+ });
4743
4905
 
4744
4906
  /** @internal */
4745
- export type Six$Outbound = {
4907
+ export type GetEvalsFunctionParams6$Outbound = {
4746
4908
  type: string;
4747
4909
  };
4748
4910
 
4749
4911
  /** @internal */
4750
- export const Six$outboundSchema: z.ZodType<Six$Outbound, z.ZodTypeDef, Six> = z
4751
- .object({
4752
- type:
4753
- GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType$outboundSchema,
4754
- });
4912
+ export const GetEvalsFunctionParams6$outboundSchema: z.ZodType<
4913
+ GetEvalsFunctionParams6$Outbound,
4914
+ z.ZodTypeDef,
4915
+ GetEvalsFunctionParams6
4916
+ > = z.object({
4917
+ type:
4918
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONType$outboundSchema,
4919
+ });
4755
4920
 
4756
4921
  /**
4757
4922
  * @internal
4758
4923
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4759
4924
  */
4760
- export namespace Six$ {
4761
- /** @deprecated use `Six$inboundSchema` instead. */
4762
- export const inboundSchema = Six$inboundSchema;
4763
- /** @deprecated use `Six$outboundSchema` instead. */
4764
- export const outboundSchema = Six$outboundSchema;
4765
- /** @deprecated use `Six$Outbound` instead. */
4766
- export type Outbound = Six$Outbound;
4925
+ export namespace GetEvalsFunctionParams6$ {
4926
+ /** @deprecated use `GetEvalsFunctionParams6$inboundSchema` instead. */
4927
+ export const inboundSchema = GetEvalsFunctionParams6$inboundSchema;
4928
+ /** @deprecated use `GetEvalsFunctionParams6$outboundSchema` instead. */
4929
+ export const outboundSchema = GetEvalsFunctionParams6$outboundSchema;
4930
+ /** @deprecated use `GetEvalsFunctionParams6$Outbound` instead. */
4931
+ export type Outbound = GetEvalsFunctionParams6$Outbound;
4767
4932
  }
4768
4933
 
4769
- export function sixToJSON(six: Six): string {
4770
- return JSON.stringify(Six$outboundSchema.parse(six));
4934
+ export function getEvalsFunctionParams6ToJSON(
4935
+ getEvalsFunctionParams6: GetEvalsFunctionParams6,
4936
+ ): string {
4937
+ return JSON.stringify(
4938
+ GetEvalsFunctionParams6$outboundSchema.parse(getEvalsFunctionParams6),
4939
+ );
4771
4940
  }
4772
4941
 
4773
- export function sixFromJSON(
4942
+ export function getEvalsFunctionParams6FromJSON(
4774
4943
  jsonString: string,
4775
- ): SafeParseResult<Six, SDKValidationError> {
4944
+ ): SafeParseResult<GetEvalsFunctionParams6, SDKValidationError> {
4776
4945
  return safeParse(
4777
4946
  jsonString,
4778
- (x) => Six$inboundSchema.parse(JSON.parse(x)),
4779
- `Failed to parse 'Six' from JSON`,
4947
+ (x) => GetEvalsFunctionParams6$inboundSchema.parse(JSON.parse(x)),
4948
+ `Failed to parse 'GetEvalsFunctionParams6' from JSON`,
4780
4949
  );
4781
4950
  }
4782
4951
 
@@ -4804,46 +4973,56 @@ export namespace GetEvalsFunctionParamsEvalsResponse200Type$ {
4804
4973
  }
4805
4974
 
4806
4975
  /** @internal */
4807
- export const Five$inboundSchema: z.ZodType<Five, z.ZodTypeDef, unknown> = z
4808
- .object({
4809
- type: GetEvalsFunctionParamsEvalsResponse200Type$inboundSchema,
4810
- });
4976
+ export const GetEvalsFunctionParams5$inboundSchema: z.ZodType<
4977
+ GetEvalsFunctionParams5,
4978
+ z.ZodTypeDef,
4979
+ unknown
4980
+ > = z.object({
4981
+ type: GetEvalsFunctionParamsEvalsResponse200Type$inboundSchema,
4982
+ });
4811
4983
 
4812
4984
  /** @internal */
4813
- export type Five$Outbound = {
4985
+ export type GetEvalsFunctionParams5$Outbound = {
4814
4986
  type: string;
4815
4987
  };
4816
4988
 
4817
4989
  /** @internal */
4818
- export const Five$outboundSchema: z.ZodType<Five$Outbound, z.ZodTypeDef, Five> =
4819
- z.object({
4820
- type: GetEvalsFunctionParamsEvalsResponse200Type$outboundSchema,
4821
- });
4990
+ export const GetEvalsFunctionParams5$outboundSchema: z.ZodType<
4991
+ GetEvalsFunctionParams5$Outbound,
4992
+ z.ZodTypeDef,
4993
+ GetEvalsFunctionParams5
4994
+ > = z.object({
4995
+ type: GetEvalsFunctionParamsEvalsResponse200Type$outboundSchema,
4996
+ });
4822
4997
 
4823
4998
  /**
4824
4999
  * @internal
4825
5000
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4826
5001
  */
4827
- export namespace Five$ {
4828
- /** @deprecated use `Five$inboundSchema` instead. */
4829
- export const inboundSchema = Five$inboundSchema;
4830
- /** @deprecated use `Five$outboundSchema` instead. */
4831
- export const outboundSchema = Five$outboundSchema;
4832
- /** @deprecated use `Five$Outbound` instead. */
4833
- export type Outbound = Five$Outbound;
5002
+ export namespace GetEvalsFunctionParams5$ {
5003
+ /** @deprecated use `GetEvalsFunctionParams5$inboundSchema` instead. */
5004
+ export const inboundSchema = GetEvalsFunctionParams5$inboundSchema;
5005
+ /** @deprecated use `GetEvalsFunctionParams5$outboundSchema` instead. */
5006
+ export const outboundSchema = GetEvalsFunctionParams5$outboundSchema;
5007
+ /** @deprecated use `GetEvalsFunctionParams5$Outbound` instead. */
5008
+ export type Outbound = GetEvalsFunctionParams5$Outbound;
4834
5009
  }
4835
5010
 
4836
- export function fiveToJSON(five: Five): string {
4837
- return JSON.stringify(Five$outboundSchema.parse(five));
5011
+ export function getEvalsFunctionParams5ToJSON(
5012
+ getEvalsFunctionParams5: GetEvalsFunctionParams5,
5013
+ ): string {
5014
+ return JSON.stringify(
5015
+ GetEvalsFunctionParams5$outboundSchema.parse(getEvalsFunctionParams5),
5016
+ );
4838
5017
  }
4839
5018
 
4840
- export function fiveFromJSON(
5019
+ export function getEvalsFunctionParams5FromJSON(
4841
5020
  jsonString: string,
4842
- ): SafeParseResult<Five, SDKValidationError> {
5021
+ ): SafeParseResult<GetEvalsFunctionParams5, SDKValidationError> {
4843
5022
  return safeParse(
4844
5023
  jsonString,
4845
- (x) => Five$inboundSchema.parse(JSON.parse(x)),
4846
- `Failed to parse 'Five' from JSON`,
5024
+ (x) => GetEvalsFunctionParams5$inboundSchema.parse(JSON.parse(x)),
5025
+ `Failed to parse 'GetEvalsFunctionParams5' from JSON`,
4847
5026
  );
4848
5027
  }
4849
5028
 
@@ -4871,8 +5050,8 @@ export namespace GetEvalsFunctionParamsEvalsResponseType$ {
4871
5050
  }
4872
5051
 
4873
5052
  /** @internal */
4874
- export const FunctionParams4$inboundSchema: z.ZodType<
4875
- FunctionParams4,
5053
+ export const GetEvalsFunctionParams4$inboundSchema: z.ZodType<
5054
+ GetEvalsFunctionParams4,
4876
5055
  z.ZodTypeDef,
4877
5056
  unknown
4878
5057
  > = z.object({
@@ -4881,16 +5060,16 @@ export const FunctionParams4$inboundSchema: z.ZodType<
4881
5060
  });
4882
5061
 
4883
5062
  /** @internal */
4884
- export type FunctionParams4$Outbound = {
5063
+ export type GetEvalsFunctionParams4$Outbound = {
4885
5064
  type: string;
4886
5065
  keywords: Array<string>;
4887
5066
  };
4888
5067
 
4889
5068
  /** @internal */
4890
- export const FunctionParams4$outboundSchema: z.ZodType<
4891
- FunctionParams4$Outbound,
5069
+ export const GetEvalsFunctionParams4$outboundSchema: z.ZodType<
5070
+ GetEvalsFunctionParams4$Outbound,
4892
5071
  z.ZodTypeDef,
4893
- FunctionParams4
5072
+ GetEvalsFunctionParams4
4894
5073
  > = z.object({
4895
5074
  type: GetEvalsFunctionParamsEvalsResponseType$outboundSchema,
4896
5075
  keywords: z.array(z.string()),
@@ -4900,28 +5079,30 @@ export const FunctionParams4$outboundSchema: z.ZodType<
4900
5079
  * @internal
4901
5080
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4902
5081
  */
4903
- export namespace FunctionParams4$ {
4904
- /** @deprecated use `FunctionParams4$inboundSchema` instead. */
4905
- export const inboundSchema = FunctionParams4$inboundSchema;
4906
- /** @deprecated use `FunctionParams4$outboundSchema` instead. */
4907
- export const outboundSchema = FunctionParams4$outboundSchema;
4908
- /** @deprecated use `FunctionParams4$Outbound` instead. */
4909
- export type Outbound = FunctionParams4$Outbound;
5082
+ export namespace GetEvalsFunctionParams4$ {
5083
+ /** @deprecated use `GetEvalsFunctionParams4$inboundSchema` instead. */
5084
+ export const inboundSchema = GetEvalsFunctionParams4$inboundSchema;
5085
+ /** @deprecated use `GetEvalsFunctionParams4$outboundSchema` instead. */
5086
+ export const outboundSchema = GetEvalsFunctionParams4$outboundSchema;
5087
+ /** @deprecated use `GetEvalsFunctionParams4$Outbound` instead. */
5088
+ export type Outbound = GetEvalsFunctionParams4$Outbound;
4910
5089
  }
4911
5090
 
4912
- export function functionParams4ToJSON(
4913
- functionParams4: FunctionParams4,
5091
+ export function getEvalsFunctionParams4ToJSON(
5092
+ getEvalsFunctionParams4: GetEvalsFunctionParams4,
4914
5093
  ): string {
4915
- return JSON.stringify(FunctionParams4$outboundSchema.parse(functionParams4));
5094
+ return JSON.stringify(
5095
+ GetEvalsFunctionParams4$outboundSchema.parse(getEvalsFunctionParams4),
5096
+ );
4916
5097
  }
4917
5098
 
4918
- export function functionParams4FromJSON(
5099
+ export function getEvalsFunctionParams4FromJSON(
4919
5100
  jsonString: string,
4920
- ): SafeParseResult<FunctionParams4, SDKValidationError> {
5101
+ ): SafeParseResult<GetEvalsFunctionParams4, SDKValidationError> {
4921
5102
  return safeParse(
4922
5103
  jsonString,
4923
- (x) => FunctionParams4$inboundSchema.parse(JSON.parse(x)),
4924
- `Failed to parse 'FunctionParams4' from JSON`,
5104
+ (x) => GetEvalsFunctionParams4$inboundSchema.parse(JSON.parse(x)),
5105
+ `Failed to parse 'GetEvalsFunctionParams4' from JSON`,
4925
5106
  );
4926
5107
  }
4927
5108
 
@@ -4947,8 +5128,8 @@ export namespace GetEvalsFunctionParamsEvalsType$ {
4947
5128
  }
4948
5129
 
4949
5130
  /** @internal */
4950
- export const FunctionParams3$inboundSchema: z.ZodType<
4951
- FunctionParams3,
5131
+ export const GetEvalsFunctionParams3$inboundSchema: z.ZodType<
5132
+ GetEvalsFunctionParams3,
4952
5133
  z.ZodTypeDef,
4953
5134
  unknown
4954
5135
  > = z.object({
@@ -4957,16 +5138,16 @@ export const FunctionParams3$inboundSchema: z.ZodType<
4957
5138
  });
4958
5139
 
4959
5140
  /** @internal */
4960
- export type FunctionParams3$Outbound = {
5141
+ export type GetEvalsFunctionParams3$Outbound = {
4961
5142
  type: string;
4962
5143
  keywords: Array<string>;
4963
5144
  };
4964
5145
 
4965
5146
  /** @internal */
4966
- export const FunctionParams3$outboundSchema: z.ZodType<
4967
- FunctionParams3$Outbound,
5147
+ export const GetEvalsFunctionParams3$outboundSchema: z.ZodType<
5148
+ GetEvalsFunctionParams3$Outbound,
4968
5149
  z.ZodTypeDef,
4969
- FunctionParams3
5150
+ GetEvalsFunctionParams3
4970
5151
  > = z.object({
4971
5152
  type: GetEvalsFunctionParamsEvalsType$outboundSchema,
4972
5153
  keywords: z.array(z.string()),
@@ -4976,28 +5157,30 @@ export const FunctionParams3$outboundSchema: z.ZodType<
4976
5157
  * @internal
4977
5158
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4978
5159
  */
4979
- export namespace FunctionParams3$ {
4980
- /** @deprecated use `FunctionParams3$inboundSchema` instead. */
4981
- export const inboundSchema = FunctionParams3$inboundSchema;
4982
- /** @deprecated use `FunctionParams3$outboundSchema` instead. */
4983
- export const outboundSchema = FunctionParams3$outboundSchema;
4984
- /** @deprecated use `FunctionParams3$Outbound` instead. */
4985
- export type Outbound = FunctionParams3$Outbound;
5160
+ export namespace GetEvalsFunctionParams3$ {
5161
+ /** @deprecated use `GetEvalsFunctionParams3$inboundSchema` instead. */
5162
+ export const inboundSchema = GetEvalsFunctionParams3$inboundSchema;
5163
+ /** @deprecated use `GetEvalsFunctionParams3$outboundSchema` instead. */
5164
+ export const outboundSchema = GetEvalsFunctionParams3$outboundSchema;
5165
+ /** @deprecated use `GetEvalsFunctionParams3$Outbound` instead. */
5166
+ export type Outbound = GetEvalsFunctionParams3$Outbound;
4986
5167
  }
4987
5168
 
4988
- export function functionParams3ToJSON(
4989
- functionParams3: FunctionParams3,
5169
+ export function getEvalsFunctionParams3ToJSON(
5170
+ getEvalsFunctionParams3: GetEvalsFunctionParams3,
4990
5171
  ): string {
4991
- return JSON.stringify(FunctionParams3$outboundSchema.parse(functionParams3));
5172
+ return JSON.stringify(
5173
+ GetEvalsFunctionParams3$outboundSchema.parse(getEvalsFunctionParams3),
5174
+ );
4992
5175
  }
4993
5176
 
4994
- export function functionParams3FromJSON(
5177
+ export function getEvalsFunctionParams3FromJSON(
4995
5178
  jsonString: string,
4996
- ): SafeParseResult<FunctionParams3, SDKValidationError> {
5179
+ ): SafeParseResult<GetEvalsFunctionParams3, SDKValidationError> {
4997
5180
  return safeParse(
4998
5181
  jsonString,
4999
- (x) => FunctionParams3$inboundSchema.parse(JSON.parse(x)),
5000
- `Failed to parse 'FunctionParams3' from JSON`,
5182
+ (x) => GetEvalsFunctionParams3$inboundSchema.parse(JSON.parse(x)),
5183
+ `Failed to parse 'GetEvalsFunctionParams3' from JSON`,
5001
5184
  );
5002
5185
  }
5003
5186
 
@@ -5023,8 +5206,8 @@ export namespace GetEvalsFunctionParamsType$ {
5023
5206
  }
5024
5207
 
5025
5208
  /** @internal */
5026
- export const FunctionParams2$inboundSchema: z.ZodType<
5027
- FunctionParams2,
5209
+ export const GetEvalsFunctionParams2$inboundSchema: z.ZodType<
5210
+ GetEvalsFunctionParams2,
5028
5211
  z.ZodTypeDef,
5029
5212
  unknown
5030
5213
  > = z.object({
@@ -5033,16 +5216,16 @@ export const FunctionParams2$inboundSchema: z.ZodType<
5033
5216
  });
5034
5217
 
5035
5218
  /** @internal */
5036
- export type FunctionParams2$Outbound = {
5219
+ export type GetEvalsFunctionParams2$Outbound = {
5037
5220
  type: string;
5038
5221
  keywords: Array<string>;
5039
5222
  };
5040
5223
 
5041
5224
  /** @internal */
5042
- export const FunctionParams2$outboundSchema: z.ZodType<
5043
- FunctionParams2$Outbound,
5225
+ export const GetEvalsFunctionParams2$outboundSchema: z.ZodType<
5226
+ GetEvalsFunctionParams2$Outbound,
5044
5227
  z.ZodTypeDef,
5045
- FunctionParams2
5228
+ GetEvalsFunctionParams2
5046
5229
  > = z.object({
5047
5230
  type: GetEvalsFunctionParamsType$outboundSchema,
5048
5231
  keywords: z.array(z.string()),
@@ -5052,75 +5235,86 @@ export const FunctionParams2$outboundSchema: z.ZodType<
5052
5235
  * @internal
5053
5236
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5054
5237
  */
5055
- export namespace FunctionParams2$ {
5056
- /** @deprecated use `FunctionParams2$inboundSchema` instead. */
5057
- export const inboundSchema = FunctionParams2$inboundSchema;
5058
- /** @deprecated use `FunctionParams2$outboundSchema` instead. */
5059
- export const outboundSchema = FunctionParams2$outboundSchema;
5060
- /** @deprecated use `FunctionParams2$Outbound` instead. */
5061
- export type Outbound = FunctionParams2$Outbound;
5238
+ export namespace GetEvalsFunctionParams2$ {
5239
+ /** @deprecated use `GetEvalsFunctionParams2$inboundSchema` instead. */
5240
+ export const inboundSchema = GetEvalsFunctionParams2$inboundSchema;
5241
+ /** @deprecated use `GetEvalsFunctionParams2$outboundSchema` instead. */
5242
+ export const outboundSchema = GetEvalsFunctionParams2$outboundSchema;
5243
+ /** @deprecated use `GetEvalsFunctionParams2$Outbound` instead. */
5244
+ export type Outbound = GetEvalsFunctionParams2$Outbound;
5062
5245
  }
5063
5246
 
5064
- export function functionParams2ToJSON(
5065
- functionParams2: FunctionParams2,
5247
+ export function getEvalsFunctionParams2ToJSON(
5248
+ getEvalsFunctionParams2: GetEvalsFunctionParams2,
5066
5249
  ): string {
5067
- return JSON.stringify(FunctionParams2$outboundSchema.parse(functionParams2));
5250
+ return JSON.stringify(
5251
+ GetEvalsFunctionParams2$outboundSchema.parse(getEvalsFunctionParams2),
5252
+ );
5068
5253
  }
5069
5254
 
5070
- export function functionParams2FromJSON(
5255
+ export function getEvalsFunctionParams2FromJSON(
5071
5256
  jsonString: string,
5072
- ): SafeParseResult<FunctionParams2, SDKValidationError> {
5257
+ ): SafeParseResult<GetEvalsFunctionParams2, SDKValidationError> {
5073
5258
  return safeParse(
5074
5259
  jsonString,
5075
- (x) => FunctionParams2$inboundSchema.parse(JSON.parse(x)),
5076
- `Failed to parse 'FunctionParams2' from JSON`,
5260
+ (x) => GetEvalsFunctionParams2$inboundSchema.parse(JSON.parse(x)),
5261
+ `Failed to parse 'GetEvalsFunctionParams2' from JSON`,
5077
5262
  );
5078
5263
  }
5079
5264
 
5080
5265
  /** @internal */
5081
- export const FunctionParamsType$inboundSchema: z.ZodNativeEnum<
5082
- typeof FunctionParamsType
5083
- > = z.nativeEnum(FunctionParamsType);
5266
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema:
5267
+ z.ZodNativeEnum<
5268
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type
5269
+ > = z.nativeEnum(
5270
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type,
5271
+ );
5084
5272
 
5085
5273
  /** @internal */
5086
- export const FunctionParamsType$outboundSchema: z.ZodNativeEnum<
5087
- typeof FunctionParamsType
5088
- > = FunctionParamsType$inboundSchema;
5274
+ export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$outboundSchema:
5275
+ z.ZodNativeEnum<
5276
+ typeof GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type
5277
+ > =
5278
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema;
5089
5279
 
5090
5280
  /**
5091
5281
  * @internal
5092
5282
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5093
5283
  */
5094
- export namespace FunctionParamsType$ {
5095
- /** @deprecated use `FunctionParamsType$inboundSchema` instead. */
5096
- export const inboundSchema = FunctionParamsType$inboundSchema;
5097
- /** @deprecated use `FunctionParamsType$outboundSchema` instead. */
5098
- export const outboundSchema = FunctionParamsType$outboundSchema;
5284
+ export namespace GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$ {
5285
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema` instead. */
5286
+ export const inboundSchema =
5287
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema;
5288
+ /** @deprecated use `GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$outboundSchema` instead. */
5289
+ export const outboundSchema =
5290
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$outboundSchema;
5099
5291
  }
5100
5292
 
5101
5293
  /** @internal */
5102
- export const FunctionParams1$inboundSchema: z.ZodType<
5103
- FunctionParams1,
5294
+ export const GetEvalsFunctionParams1$inboundSchema: z.ZodType<
5295
+ GetEvalsFunctionParams1,
5104
5296
  z.ZodTypeDef,
5105
5297
  unknown
5106
5298
  > = z.object({
5107
- type: FunctionParamsType$inboundSchema,
5299
+ type:
5300
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema,
5108
5301
  value: z.string(),
5109
5302
  });
5110
5303
 
5111
5304
  /** @internal */
5112
- export type FunctionParams1$Outbound = {
5305
+ export type GetEvalsFunctionParams1$Outbound = {
5113
5306
  type: string;
5114
5307
  value: string;
5115
5308
  };
5116
5309
 
5117
5310
  /** @internal */
5118
- export const FunctionParams1$outboundSchema: z.ZodType<
5119
- FunctionParams1$Outbound,
5311
+ export const GetEvalsFunctionParams1$outboundSchema: z.ZodType<
5312
+ GetEvalsFunctionParams1$Outbound,
5120
5313
  z.ZodTypeDef,
5121
- FunctionParams1
5314
+ GetEvalsFunctionParams1
5122
5315
  > = z.object({
5123
- type: FunctionParamsType$outboundSchema,
5316
+ type:
5317
+ GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$outboundSchema,
5124
5318
  value: z.string(),
5125
5319
  });
5126
5320
 
@@ -5128,28 +5322,30 @@ export const FunctionParams1$outboundSchema: z.ZodType<
5128
5322
  * @internal
5129
5323
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5130
5324
  */
5131
- export namespace FunctionParams1$ {
5132
- /** @deprecated use `FunctionParams1$inboundSchema` instead. */
5133
- export const inboundSchema = FunctionParams1$inboundSchema;
5134
- /** @deprecated use `FunctionParams1$outboundSchema` instead. */
5135
- export const outboundSchema = FunctionParams1$outboundSchema;
5136
- /** @deprecated use `FunctionParams1$Outbound` instead. */
5137
- export type Outbound = FunctionParams1$Outbound;
5325
+ export namespace GetEvalsFunctionParams1$ {
5326
+ /** @deprecated use `GetEvalsFunctionParams1$inboundSchema` instead. */
5327
+ export const inboundSchema = GetEvalsFunctionParams1$inboundSchema;
5328
+ /** @deprecated use `GetEvalsFunctionParams1$outboundSchema` instead. */
5329
+ export const outboundSchema = GetEvalsFunctionParams1$outboundSchema;
5330
+ /** @deprecated use `GetEvalsFunctionParams1$Outbound` instead. */
5331
+ export type Outbound = GetEvalsFunctionParams1$Outbound;
5138
5332
  }
5139
5333
 
5140
- export function functionParams1ToJSON(
5141
- functionParams1: FunctionParams1,
5334
+ export function getEvalsFunctionParams1ToJSON(
5335
+ getEvalsFunctionParams1: GetEvalsFunctionParams1,
5142
5336
  ): string {
5143
- return JSON.stringify(FunctionParams1$outboundSchema.parse(functionParams1));
5337
+ return JSON.stringify(
5338
+ GetEvalsFunctionParams1$outboundSchema.parse(getEvalsFunctionParams1),
5339
+ );
5144
5340
  }
5145
5341
 
5146
- export function functionParams1FromJSON(
5342
+ export function getEvalsFunctionParams1FromJSON(
5147
5343
  jsonString: string,
5148
- ): SafeParseResult<FunctionParams1, SDKValidationError> {
5344
+ ): SafeParseResult<GetEvalsFunctionParams1, SDKValidationError> {
5149
5345
  return safeParse(
5150
5346
  jsonString,
5151
- (x) => FunctionParams1$inboundSchema.parse(JSON.parse(x)),
5152
- `Failed to parse 'FunctionParams1' from JSON`,
5347
+ (x) => GetEvalsFunctionParams1$inboundSchema.parse(JSON.parse(x)),
5348
+ `Failed to parse 'GetEvalsFunctionParams1' from JSON`,
5153
5349
  );
5154
5350
  }
5155
5351
 
@@ -5159,80 +5355,80 @@ export const DataFunctionParams$inboundSchema: z.ZodType<
5159
5355
  z.ZodTypeDef,
5160
5356
  unknown
5161
5357
  > = z.union([
5162
- z.lazy(() => Twelve$inboundSchema),
5163
- z.lazy(() => FunctionParams1$inboundSchema),
5164
- z.lazy(() => FunctionParams2$inboundSchema),
5165
- z.lazy(() => FunctionParams3$inboundSchema),
5166
- z.lazy(() => FunctionParams4$inboundSchema),
5167
- z.lazy(() => Eight$inboundSchema),
5168
- z.lazy(() => Nine$inboundSchema),
5169
- z.lazy(() => Eleven$inboundSchema),
5170
- z.lazy(() => Thirteen$inboundSchema),
5171
- z.lazy(() => Fifteen$inboundSchema),
5172
- z.lazy(() => TwentyFive$inboundSchema),
5173
- z.lazy(() => TwentySix$inboundSchema),
5174
- z.lazy(() => Five$inboundSchema),
5175
- z.lazy(() => Six$inboundSchema),
5176
- z.lazy(() => Seven$inboundSchema),
5177
- z.lazy(() => Ten$inboundSchema),
5178
- z.lazy(() => Fourteen$inboundSchema),
5179
- z.lazy(() => Sixteen$inboundSchema),
5180
- z.lazy(() => Seventeen$inboundSchema),
5181
- z.lazy(() => Eighteen$inboundSchema),
5182
- z.lazy(() => Nineteen$inboundSchema),
5183
- z.lazy(() => Twenty$inboundSchema),
5184
- z.lazy(() => TwentyOne$inboundSchema),
5185
- z.lazy(() => TwentyTwo$inboundSchema),
5186
- z.lazy(() => TwentyThree$inboundSchema),
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),
5358
+ z.lazy(() => GetEvalsFunctionParams12$inboundSchema),
5359
+ z.lazy(() => GetEvalsFunctionParams1$inboundSchema),
5360
+ z.lazy(() => GetEvalsFunctionParams2$inboundSchema),
5361
+ z.lazy(() => GetEvalsFunctionParams3$inboundSchema),
5362
+ z.lazy(() => GetEvalsFunctionParams4$inboundSchema),
5363
+ z.lazy(() => GetEvalsFunctionParams8$inboundSchema),
5364
+ z.lazy(() => GetEvalsFunctionParams9$inboundSchema),
5365
+ z.lazy(() => GetEvalsFunctionParams11$inboundSchema),
5366
+ z.lazy(() => GetEvalsFunctionParams13$inboundSchema),
5367
+ z.lazy(() => GetEvalsFunctionParams15$inboundSchema),
5368
+ z.lazy(() => GetEvalsFunctionParams25$inboundSchema),
5369
+ z.lazy(() => GetEvalsFunctionParams26$inboundSchema),
5370
+ z.lazy(() => GetEvalsFunctionParams5$inboundSchema),
5371
+ z.lazy(() => GetEvalsFunctionParams6$inboundSchema),
5372
+ z.lazy(() => GetEvalsFunctionParams7$inboundSchema),
5373
+ z.lazy(() => GetEvalsFunctionParams10$inboundSchema),
5374
+ z.lazy(() => GetEvalsFunctionParams14$inboundSchema),
5375
+ z.lazy(() => GetEvalsFunctionParams16$inboundSchema),
5376
+ z.lazy(() => GetEvalsFunctionParams17$inboundSchema),
5377
+ z.lazy(() => GetEvalsFunctionParams18$inboundSchema),
5378
+ z.lazy(() => GetEvalsFunctionParams19$inboundSchema),
5379
+ z.lazy(() => GetEvalsFunctionParams20$inboundSchema),
5380
+ z.lazy(() => GetEvalsFunctionParams21$inboundSchema),
5381
+ z.lazy(() => GetEvalsFunctionParams22$inboundSchema),
5382
+ z.lazy(() => GetEvalsFunctionParams23$inboundSchema),
5383
+ z.lazy(() => GetEvalsFunctionParams24$inboundSchema),
5384
+ z.lazy(() => GetEvalsFunctionParams27$inboundSchema),
5385
+ z.lazy(() => GetEvalsFunctionParams28$inboundSchema),
5386
+ z.lazy(() => GetEvalsFunctionParams29$inboundSchema),
5387
+ z.lazy(() => GetEvalsFunctionParams30$inboundSchema),
5388
+ z.lazy(() => GetEvalsFunctionParams31$inboundSchema),
5389
+ z.lazy(() => GetEvalsFunctionParams32$inboundSchema),
5390
+ z.lazy(() => GetEvalsFunctionParams33$inboundSchema),
5391
+ z.lazy(() => GetEvalsFunctionParams34$inboundSchema),
5392
+ z.lazy(() => GetEvalsFunctionParams35$inboundSchema),
5197
5393
  ]);
5198
5394
 
5199
5395
  /** @internal */
5200
5396
  export type DataFunctionParams$Outbound =
5201
- | Twelve$Outbound
5202
- | FunctionParams1$Outbound
5203
- | FunctionParams2$Outbound
5204
- | FunctionParams3$Outbound
5205
- | FunctionParams4$Outbound
5206
- | Eight$Outbound
5207
- | Nine$Outbound
5208
- | Eleven$Outbound
5209
- | Thirteen$Outbound
5210
- | Fifteen$Outbound
5211
- | TwentyFive$Outbound
5212
- | TwentySix$Outbound
5213
- | Five$Outbound
5214
- | Six$Outbound
5215
- | Seven$Outbound
5216
- | Ten$Outbound
5217
- | Fourteen$Outbound
5218
- | Sixteen$Outbound
5219
- | Seventeen$Outbound
5220
- | Eighteen$Outbound
5221
- | Nineteen$Outbound
5222
- | Twenty$Outbound
5223
- | TwentyOne$Outbound
5224
- | TwentyTwo$Outbound
5225
- | TwentyThree$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;
5397
+ | GetEvalsFunctionParams12$Outbound
5398
+ | GetEvalsFunctionParams1$Outbound
5399
+ | GetEvalsFunctionParams2$Outbound
5400
+ | GetEvalsFunctionParams3$Outbound
5401
+ | GetEvalsFunctionParams4$Outbound
5402
+ | GetEvalsFunctionParams8$Outbound
5403
+ | GetEvalsFunctionParams9$Outbound
5404
+ | GetEvalsFunctionParams11$Outbound
5405
+ | GetEvalsFunctionParams13$Outbound
5406
+ | GetEvalsFunctionParams15$Outbound
5407
+ | GetEvalsFunctionParams25$Outbound
5408
+ | GetEvalsFunctionParams26$Outbound
5409
+ | GetEvalsFunctionParams5$Outbound
5410
+ | GetEvalsFunctionParams6$Outbound
5411
+ | GetEvalsFunctionParams7$Outbound
5412
+ | GetEvalsFunctionParams10$Outbound
5413
+ | GetEvalsFunctionParams14$Outbound
5414
+ | GetEvalsFunctionParams16$Outbound
5415
+ | GetEvalsFunctionParams17$Outbound
5416
+ | GetEvalsFunctionParams18$Outbound
5417
+ | GetEvalsFunctionParams19$Outbound
5418
+ | GetEvalsFunctionParams20$Outbound
5419
+ | GetEvalsFunctionParams21$Outbound
5420
+ | GetEvalsFunctionParams22$Outbound
5421
+ | GetEvalsFunctionParams23$Outbound
5422
+ | GetEvalsFunctionParams24$Outbound
5423
+ | GetEvalsFunctionParams27$Outbound
5424
+ | GetEvalsFunctionParams28$Outbound
5425
+ | GetEvalsFunctionParams29$Outbound
5426
+ | GetEvalsFunctionParams30$Outbound
5427
+ | GetEvalsFunctionParams31$Outbound
5428
+ | GetEvalsFunctionParams32$Outbound
5429
+ | GetEvalsFunctionParams33$Outbound
5430
+ | GetEvalsFunctionParams34$Outbound
5431
+ | GetEvalsFunctionParams35$Outbound;
5236
5432
 
5237
5433
  /** @internal */
5238
5434
  export const DataFunctionParams$outboundSchema: z.ZodType<
@@ -5240,41 +5436,41 @@ export const DataFunctionParams$outboundSchema: z.ZodType<
5240
5436
  z.ZodTypeDef,
5241
5437
  DataFunctionParams
5242
5438
  > = z.union([
5243
- z.lazy(() => Twelve$outboundSchema),
5244
- z.lazy(() => FunctionParams1$outboundSchema),
5245
- z.lazy(() => FunctionParams2$outboundSchema),
5246
- z.lazy(() => FunctionParams3$outboundSchema),
5247
- z.lazy(() => FunctionParams4$outboundSchema),
5248
- z.lazy(() => Eight$outboundSchema),
5249
- z.lazy(() => Nine$outboundSchema),
5250
- z.lazy(() => Eleven$outboundSchema),
5251
- z.lazy(() => Thirteen$outboundSchema),
5252
- z.lazy(() => Fifteen$outboundSchema),
5253
- z.lazy(() => TwentyFive$outboundSchema),
5254
- z.lazy(() => TwentySix$outboundSchema),
5255
- z.lazy(() => Five$outboundSchema),
5256
- z.lazy(() => Six$outboundSchema),
5257
- z.lazy(() => Seven$outboundSchema),
5258
- z.lazy(() => Ten$outboundSchema),
5259
- z.lazy(() => Fourteen$outboundSchema),
5260
- z.lazy(() => Sixteen$outboundSchema),
5261
- z.lazy(() => Seventeen$outboundSchema),
5262
- z.lazy(() => Eighteen$outboundSchema),
5263
- z.lazy(() => Nineteen$outboundSchema),
5264
- z.lazy(() => Twenty$outboundSchema),
5265
- z.lazy(() => TwentyOne$outboundSchema),
5266
- z.lazy(() => TwentyTwo$outboundSchema),
5267
- z.lazy(() => TwentyThree$outboundSchema),
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),
5439
+ z.lazy(() => GetEvalsFunctionParams12$outboundSchema),
5440
+ z.lazy(() => GetEvalsFunctionParams1$outboundSchema),
5441
+ z.lazy(() => GetEvalsFunctionParams2$outboundSchema),
5442
+ z.lazy(() => GetEvalsFunctionParams3$outboundSchema),
5443
+ z.lazy(() => GetEvalsFunctionParams4$outboundSchema),
5444
+ z.lazy(() => GetEvalsFunctionParams8$outboundSchema),
5445
+ z.lazy(() => GetEvalsFunctionParams9$outboundSchema),
5446
+ z.lazy(() => GetEvalsFunctionParams11$outboundSchema),
5447
+ z.lazy(() => GetEvalsFunctionParams13$outboundSchema),
5448
+ z.lazy(() => GetEvalsFunctionParams15$outboundSchema),
5449
+ z.lazy(() => GetEvalsFunctionParams25$outboundSchema),
5450
+ z.lazy(() => GetEvalsFunctionParams26$outboundSchema),
5451
+ z.lazy(() => GetEvalsFunctionParams5$outboundSchema),
5452
+ z.lazy(() => GetEvalsFunctionParams6$outboundSchema),
5453
+ z.lazy(() => GetEvalsFunctionParams7$outboundSchema),
5454
+ z.lazy(() => GetEvalsFunctionParams10$outboundSchema),
5455
+ z.lazy(() => GetEvalsFunctionParams14$outboundSchema),
5456
+ z.lazy(() => GetEvalsFunctionParams16$outboundSchema),
5457
+ z.lazy(() => GetEvalsFunctionParams17$outboundSchema),
5458
+ z.lazy(() => GetEvalsFunctionParams18$outboundSchema),
5459
+ z.lazy(() => GetEvalsFunctionParams19$outboundSchema),
5460
+ z.lazy(() => GetEvalsFunctionParams20$outboundSchema),
5461
+ z.lazy(() => GetEvalsFunctionParams21$outboundSchema),
5462
+ z.lazy(() => GetEvalsFunctionParams22$outboundSchema),
5463
+ z.lazy(() => GetEvalsFunctionParams23$outboundSchema),
5464
+ z.lazy(() => GetEvalsFunctionParams24$outboundSchema),
5465
+ z.lazy(() => GetEvalsFunctionParams27$outboundSchema),
5466
+ z.lazy(() => GetEvalsFunctionParams28$outboundSchema),
5467
+ z.lazy(() => GetEvalsFunctionParams29$outboundSchema),
5468
+ z.lazy(() => GetEvalsFunctionParams30$outboundSchema),
5469
+ z.lazy(() => GetEvalsFunctionParams31$outboundSchema),
5470
+ z.lazy(() => GetEvalsFunctionParams32$outboundSchema),
5471
+ z.lazy(() => GetEvalsFunctionParams33$outboundSchema),
5472
+ z.lazy(() => GetEvalsFunctionParams34$outboundSchema),
5473
+ z.lazy(() => GetEvalsFunctionParams35$outboundSchema),
5278
5474
  ]);
5279
5475
 
5280
5476
  /**
@@ -5316,49 +5512,49 @@ export const DataFunction$inboundSchema: z.ZodType<
5316
5512
  > = z.object({
5317
5513
  _id: z.string(),
5318
5514
  description: z.string(),
5319
- created: z.string().default("2025-09-05T20:13:46.558Z"),
5320
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
5515
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
5516
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
5321
5517
  guardrail_config: z.union([
5322
5518
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
5323
5519
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
5324
5520
  ]).optional(),
5325
5521
  type: GetEvalsDataEvalsResponse200Type$inboundSchema,
5326
5522
  function_params: z.union([
5327
- z.lazy(() => Twelve$inboundSchema),
5328
- z.lazy(() => FunctionParams1$inboundSchema),
5329
- z.lazy(() => FunctionParams2$inboundSchema),
5330
- z.lazy(() => FunctionParams3$inboundSchema),
5331
- z.lazy(() => FunctionParams4$inboundSchema),
5332
- z.lazy(() => Eight$inboundSchema),
5333
- z.lazy(() => Nine$inboundSchema),
5334
- z.lazy(() => Eleven$inboundSchema),
5335
- z.lazy(() => Thirteen$inboundSchema),
5336
- z.lazy(() => Fifteen$inboundSchema),
5337
- z.lazy(() => TwentyFive$inboundSchema),
5338
- z.lazy(() => TwentySix$inboundSchema),
5339
- z.lazy(() => Five$inboundSchema),
5340
- z.lazy(() => Six$inboundSchema),
5341
- z.lazy(() => Seven$inboundSchema),
5342
- z.lazy(() => Ten$inboundSchema),
5343
- z.lazy(() => Fourteen$inboundSchema),
5344
- z.lazy(() => Sixteen$inboundSchema),
5345
- z.lazy(() => Seventeen$inboundSchema),
5346
- z.lazy(() => Eighteen$inboundSchema),
5347
- z.lazy(() => Nineteen$inboundSchema),
5348
- z.lazy(() => Twenty$inboundSchema),
5349
- z.lazy(() => TwentyOne$inboundSchema),
5350
- z.lazy(() => TwentyTwo$inboundSchema),
5351
- z.lazy(() => TwentyThree$inboundSchema),
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),
5523
+ z.lazy(() => GetEvalsFunctionParams12$inboundSchema),
5524
+ z.lazy(() => GetEvalsFunctionParams1$inboundSchema),
5525
+ z.lazy(() => GetEvalsFunctionParams2$inboundSchema),
5526
+ z.lazy(() => GetEvalsFunctionParams3$inboundSchema),
5527
+ z.lazy(() => GetEvalsFunctionParams4$inboundSchema),
5528
+ z.lazy(() => GetEvalsFunctionParams8$inboundSchema),
5529
+ z.lazy(() => GetEvalsFunctionParams9$inboundSchema),
5530
+ z.lazy(() => GetEvalsFunctionParams11$inboundSchema),
5531
+ z.lazy(() => GetEvalsFunctionParams13$inboundSchema),
5532
+ z.lazy(() => GetEvalsFunctionParams15$inboundSchema),
5533
+ z.lazy(() => GetEvalsFunctionParams25$inboundSchema),
5534
+ z.lazy(() => GetEvalsFunctionParams26$inboundSchema),
5535
+ z.lazy(() => GetEvalsFunctionParams5$inboundSchema),
5536
+ z.lazy(() => GetEvalsFunctionParams6$inboundSchema),
5537
+ z.lazy(() => GetEvalsFunctionParams7$inboundSchema),
5538
+ z.lazy(() => GetEvalsFunctionParams10$inboundSchema),
5539
+ z.lazy(() => GetEvalsFunctionParams14$inboundSchema),
5540
+ z.lazy(() => GetEvalsFunctionParams16$inboundSchema),
5541
+ z.lazy(() => GetEvalsFunctionParams17$inboundSchema),
5542
+ z.lazy(() => GetEvalsFunctionParams18$inboundSchema),
5543
+ z.lazy(() => GetEvalsFunctionParams19$inboundSchema),
5544
+ z.lazy(() => GetEvalsFunctionParams20$inboundSchema),
5545
+ z.lazy(() => GetEvalsFunctionParams21$inboundSchema),
5546
+ z.lazy(() => GetEvalsFunctionParams22$inboundSchema),
5547
+ z.lazy(() => GetEvalsFunctionParams23$inboundSchema),
5548
+ z.lazy(() => GetEvalsFunctionParams24$inboundSchema),
5549
+ z.lazy(() => GetEvalsFunctionParams27$inboundSchema),
5550
+ z.lazy(() => GetEvalsFunctionParams28$inboundSchema),
5551
+ z.lazy(() => GetEvalsFunctionParams29$inboundSchema),
5552
+ z.lazy(() => GetEvalsFunctionParams30$inboundSchema),
5553
+ z.lazy(() => GetEvalsFunctionParams31$inboundSchema),
5554
+ z.lazy(() => GetEvalsFunctionParams32$inboundSchema),
5555
+ z.lazy(() => GetEvalsFunctionParams33$inboundSchema),
5556
+ z.lazy(() => GetEvalsFunctionParams34$inboundSchema),
5557
+ z.lazy(() => GetEvalsFunctionParams35$inboundSchema),
5362
5558
  ]),
5363
5559
  key: z.string(),
5364
5560
  }).transform((v) => {
@@ -5381,41 +5577,41 @@ export type DataFunction$Outbound = {
5381
5577
  | undefined;
5382
5578
  type: string;
5383
5579
  function_params:
5384
- | Twelve$Outbound
5385
- | FunctionParams1$Outbound
5386
- | FunctionParams2$Outbound
5387
- | FunctionParams3$Outbound
5388
- | FunctionParams4$Outbound
5389
- | Eight$Outbound
5390
- | Nine$Outbound
5391
- | Eleven$Outbound
5392
- | Thirteen$Outbound
5393
- | Fifteen$Outbound
5394
- | TwentyFive$Outbound
5395
- | TwentySix$Outbound
5396
- | Five$Outbound
5397
- | Six$Outbound
5398
- | Seven$Outbound
5399
- | Ten$Outbound
5400
- | Fourteen$Outbound
5401
- | Sixteen$Outbound
5402
- | Seventeen$Outbound
5403
- | Eighteen$Outbound
5404
- | Nineteen$Outbound
5405
- | Twenty$Outbound
5406
- | TwentyOne$Outbound
5407
- | TwentyTwo$Outbound
5408
- | TwentyThree$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;
5580
+ | GetEvalsFunctionParams12$Outbound
5581
+ | GetEvalsFunctionParams1$Outbound
5582
+ | GetEvalsFunctionParams2$Outbound
5583
+ | GetEvalsFunctionParams3$Outbound
5584
+ | GetEvalsFunctionParams4$Outbound
5585
+ | GetEvalsFunctionParams8$Outbound
5586
+ | GetEvalsFunctionParams9$Outbound
5587
+ | GetEvalsFunctionParams11$Outbound
5588
+ | GetEvalsFunctionParams13$Outbound
5589
+ | GetEvalsFunctionParams15$Outbound
5590
+ | GetEvalsFunctionParams25$Outbound
5591
+ | GetEvalsFunctionParams26$Outbound
5592
+ | GetEvalsFunctionParams5$Outbound
5593
+ | GetEvalsFunctionParams6$Outbound
5594
+ | GetEvalsFunctionParams7$Outbound
5595
+ | GetEvalsFunctionParams10$Outbound
5596
+ | GetEvalsFunctionParams14$Outbound
5597
+ | GetEvalsFunctionParams16$Outbound
5598
+ | GetEvalsFunctionParams17$Outbound
5599
+ | GetEvalsFunctionParams18$Outbound
5600
+ | GetEvalsFunctionParams19$Outbound
5601
+ | GetEvalsFunctionParams20$Outbound
5602
+ | GetEvalsFunctionParams21$Outbound
5603
+ | GetEvalsFunctionParams22$Outbound
5604
+ | GetEvalsFunctionParams23$Outbound
5605
+ | GetEvalsFunctionParams24$Outbound
5606
+ | GetEvalsFunctionParams27$Outbound
5607
+ | GetEvalsFunctionParams28$Outbound
5608
+ | GetEvalsFunctionParams29$Outbound
5609
+ | GetEvalsFunctionParams30$Outbound
5610
+ | GetEvalsFunctionParams31$Outbound
5611
+ | GetEvalsFunctionParams32$Outbound
5612
+ | GetEvalsFunctionParams33$Outbound
5613
+ | GetEvalsFunctionParams34$Outbound
5614
+ | GetEvalsFunctionParams35$Outbound;
5419
5615
  key: string;
5420
5616
  };
5421
5617
 
@@ -5427,49 +5623,49 @@ export const DataFunction$outboundSchema: z.ZodType<
5427
5623
  > = z.object({
5428
5624
  id: z.string(),
5429
5625
  description: z.string(),
5430
- created: z.string().default("2025-09-05T20:13:46.558Z"),
5431
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
5626
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
5627
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
5432
5628
  guardrailConfig: z.union([
5433
5629
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
5434
5630
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
5435
5631
  ]).optional(),
5436
5632
  type: GetEvalsDataEvalsResponse200Type$outboundSchema,
5437
5633
  functionParams: z.union([
5438
- z.lazy(() => Twelve$outboundSchema),
5439
- z.lazy(() => FunctionParams1$outboundSchema),
5440
- z.lazy(() => FunctionParams2$outboundSchema),
5441
- z.lazy(() => FunctionParams3$outboundSchema),
5442
- z.lazy(() => FunctionParams4$outboundSchema),
5443
- z.lazy(() => Eight$outboundSchema),
5444
- z.lazy(() => Nine$outboundSchema),
5445
- z.lazy(() => Eleven$outboundSchema),
5446
- z.lazy(() => Thirteen$outboundSchema),
5447
- z.lazy(() => Fifteen$outboundSchema),
5448
- z.lazy(() => TwentyFive$outboundSchema),
5449
- z.lazy(() => TwentySix$outboundSchema),
5450
- z.lazy(() => Five$outboundSchema),
5451
- z.lazy(() => Six$outboundSchema),
5452
- z.lazy(() => Seven$outboundSchema),
5453
- z.lazy(() => Ten$outboundSchema),
5454
- z.lazy(() => Fourteen$outboundSchema),
5455
- z.lazy(() => Sixteen$outboundSchema),
5456
- z.lazy(() => Seventeen$outboundSchema),
5457
- z.lazy(() => Eighteen$outboundSchema),
5458
- z.lazy(() => Nineteen$outboundSchema),
5459
- z.lazy(() => Twenty$outboundSchema),
5460
- z.lazy(() => TwentyOne$outboundSchema),
5461
- z.lazy(() => TwentyTwo$outboundSchema),
5462
- z.lazy(() => TwentyThree$outboundSchema),
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),
5634
+ z.lazy(() => GetEvalsFunctionParams12$outboundSchema),
5635
+ z.lazy(() => GetEvalsFunctionParams1$outboundSchema),
5636
+ z.lazy(() => GetEvalsFunctionParams2$outboundSchema),
5637
+ z.lazy(() => GetEvalsFunctionParams3$outboundSchema),
5638
+ z.lazy(() => GetEvalsFunctionParams4$outboundSchema),
5639
+ z.lazy(() => GetEvalsFunctionParams8$outboundSchema),
5640
+ z.lazy(() => GetEvalsFunctionParams9$outboundSchema),
5641
+ z.lazy(() => GetEvalsFunctionParams11$outboundSchema),
5642
+ z.lazy(() => GetEvalsFunctionParams13$outboundSchema),
5643
+ z.lazy(() => GetEvalsFunctionParams15$outboundSchema),
5644
+ z.lazy(() => GetEvalsFunctionParams25$outboundSchema),
5645
+ z.lazy(() => GetEvalsFunctionParams26$outboundSchema),
5646
+ z.lazy(() => GetEvalsFunctionParams5$outboundSchema),
5647
+ z.lazy(() => GetEvalsFunctionParams6$outboundSchema),
5648
+ z.lazy(() => GetEvalsFunctionParams7$outboundSchema),
5649
+ z.lazy(() => GetEvalsFunctionParams10$outboundSchema),
5650
+ z.lazy(() => GetEvalsFunctionParams14$outboundSchema),
5651
+ z.lazy(() => GetEvalsFunctionParams16$outboundSchema),
5652
+ z.lazy(() => GetEvalsFunctionParams17$outboundSchema),
5653
+ z.lazy(() => GetEvalsFunctionParams18$outboundSchema),
5654
+ z.lazy(() => GetEvalsFunctionParams19$outboundSchema),
5655
+ z.lazy(() => GetEvalsFunctionParams20$outboundSchema),
5656
+ z.lazy(() => GetEvalsFunctionParams21$outboundSchema),
5657
+ z.lazy(() => GetEvalsFunctionParams22$outboundSchema),
5658
+ z.lazy(() => GetEvalsFunctionParams23$outboundSchema),
5659
+ z.lazy(() => GetEvalsFunctionParams24$outboundSchema),
5660
+ z.lazy(() => GetEvalsFunctionParams27$outboundSchema),
5661
+ z.lazy(() => GetEvalsFunctionParams28$outboundSchema),
5662
+ z.lazy(() => GetEvalsFunctionParams29$outboundSchema),
5663
+ z.lazy(() => GetEvalsFunctionParams30$outboundSchema),
5664
+ z.lazy(() => GetEvalsFunctionParams31$outboundSchema),
5665
+ z.lazy(() => GetEvalsFunctionParams32$outboundSchema),
5666
+ z.lazy(() => GetEvalsFunctionParams33$outboundSchema),
5667
+ z.lazy(() => GetEvalsFunctionParams34$outboundSchema),
5668
+ z.lazy(() => GetEvalsFunctionParams35$outboundSchema),
5473
5669
  ]),
5474
5670
  key: z.string(),
5475
5671
  }).transform((v) => {
@@ -5810,8 +6006,8 @@ export const DataPython$inboundSchema: z.ZodType<
5810
6006
  > = z.object({
5811
6007
  _id: z.string(),
5812
6008
  description: z.string(),
5813
- created: z.string().default("2025-09-05T20:13:46.558Z"),
5814
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6009
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6010
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
5815
6011
  guardrail_config: z.union([
5816
6012
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
5817
6013
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
@@ -5849,8 +6045,8 @@ export const DataPython$outboundSchema: z.ZodType<
5849
6045
  > = z.object({
5850
6046
  id: z.string(),
5851
6047
  description: z.string(),
5852
- created: z.string().default("2025-09-05T20:13:46.558Z"),
5853
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6048
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6049
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
5854
6050
  guardrailConfig: z.union([
5855
6051
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
5856
6052
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
@@ -6196,8 +6392,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
6196
6392
  > = z.object({
6197
6393
  _id: z.string(),
6198
6394
  description: z.string(),
6199
- created: z.string().default("2025-09-05T20:13:46.558Z"),
6200
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6395
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6396
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
6201
6397
  guardrail_config: z.union([
6202
6398
  z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
6203
6399
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
@@ -6241,8 +6437,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
6241
6437
  > = z.object({
6242
6438
  id: z.string(),
6243
6439
  description: z.string(),
6244
- created: z.string().default("2025-09-05T20:13:46.558Z"),
6245
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6440
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6441
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
6246
6442
  guardrailConfig: z.union([
6247
6443
  z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
6248
6444
  z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
@@ -6607,8 +6803,8 @@ export const DataJSON$inboundSchema: z.ZodType<
6607
6803
  > = z.object({
6608
6804
  _id: z.string(),
6609
6805
  description: z.string(),
6610
- created: z.string().default("2025-09-05T20:13:46.558Z"),
6611
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6806
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6807
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
6612
6808
  guardrail_config: z.union([
6613
6809
  z.lazy(() =>
6614
6810
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
@@ -6650,8 +6846,8 @@ export const DataJSON$outboundSchema: z.ZodType<
6650
6846
  > = z.object({
6651
6847
  id: z.string(),
6652
6848
  description: z.string(),
6653
- created: z.string().default("2025-09-05T20:13:46.558Z"),
6654
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
6849
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
6850
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
6655
6851
  guardrailConfig: z.union([
6656
6852
  z.lazy(() =>
6657
6853
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
@@ -7033,8 +7229,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
7033
7229
  z.object({
7034
7230
  _id: z.string(),
7035
7231
  description: z.string(),
7036
- created: z.string().default("2025-09-05T20:13:46.558Z"),
7037
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
7232
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
7233
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
7038
7234
  guardrail_config: z.union([
7039
7235
  z.lazy(() =>
7040
7236
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7078,8 +7274,8 @@ export const DataLLM$outboundSchema: z.ZodType<
7078
7274
  > = z.object({
7079
7275
  id: z.string(),
7080
7276
  description: z.string(),
7081
- created: z.string().default("2025-09-05T20:13:46.558Z"),
7082
- updated: z.string().default("2025-09-05T20:13:46.558Z"),
7277
+ created: z.string().default("2025-09-09T09:35:13.666Z"),
7278
+ updated: z.string().default("2025-09-09T09:35:13.666Z"),
7083
7279
  guardrailConfig: z.union([
7084
7280
  z.lazy(() =>
7085
7281
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -7134,22 +7330,22 @@ export const GetEvalsData$inboundSchema: z.ZodType<
7134
7330
  > = z.union([
7135
7331
  z.lazy(() => DataHTTP$inboundSchema),
7136
7332
  z.lazy(() => DataLLM$inboundSchema),
7137
- z.lazy(() => Ragas$inboundSchema),
7333
+ z.lazy(() => DataRagas$inboundSchema),
7138
7334
  z.lazy(() => DataJSON$inboundSchema),
7139
7335
  z.lazy(() => DataPython$inboundSchema),
7140
7336
  z.lazy(() => DataFunction$inboundSchema),
7141
- z.lazy(() => Typescript$inboundSchema),
7337
+ z.lazy(() => DataTypescript$inboundSchema),
7142
7338
  ]);
7143
7339
 
7144
7340
  /** @internal */
7145
7341
  export type GetEvalsData$Outbound =
7146
7342
  | DataHTTP$Outbound
7147
7343
  | DataLLM$Outbound
7148
- | Ragas$Outbound
7344
+ | DataRagas$Outbound
7149
7345
  | DataJSON$Outbound
7150
7346
  | DataPython$Outbound
7151
7347
  | DataFunction$Outbound
7152
- | Typescript$Outbound;
7348
+ | DataTypescript$Outbound;
7153
7349
 
7154
7350
  /** @internal */
7155
7351
  export const GetEvalsData$outboundSchema: z.ZodType<
@@ -7159,11 +7355,11 @@ export const GetEvalsData$outboundSchema: z.ZodType<
7159
7355
  > = z.union([
7160
7356
  z.lazy(() => DataHTTP$outboundSchema),
7161
7357
  z.lazy(() => DataLLM$outboundSchema),
7162
- z.lazy(() => Ragas$outboundSchema),
7358
+ z.lazy(() => DataRagas$outboundSchema),
7163
7359
  z.lazy(() => DataJSON$outboundSchema),
7164
7360
  z.lazy(() => DataPython$outboundSchema),
7165
7361
  z.lazy(() => DataFunction$outboundSchema),
7166
- z.lazy(() => Typescript$outboundSchema),
7362
+ z.lazy(() => DataTypescript$outboundSchema),
7167
7363
  ]);
7168
7364
 
7169
7365
  /**
@@ -7204,11 +7400,11 @@ export const GetEvalsResponseBody$inboundSchema: z.ZodType<
7204
7400
  z.union([
7205
7401
  z.lazy(() => DataHTTP$inboundSchema),
7206
7402
  z.lazy(() => DataLLM$inboundSchema),
7207
- z.lazy(() => Ragas$inboundSchema),
7403
+ z.lazy(() => DataRagas$inboundSchema),
7208
7404
  z.lazy(() => DataJSON$inboundSchema),
7209
7405
  z.lazy(() => DataPython$inboundSchema),
7210
7406
  z.lazy(() => DataFunction$inboundSchema),
7211
- z.lazy(() => Typescript$inboundSchema),
7407
+ z.lazy(() => DataTypescript$inboundSchema),
7212
7408
  ]),
7213
7409
  ),
7214
7410
  has_more: z.boolean(),
@@ -7224,11 +7420,11 @@ export type GetEvalsResponseBody$Outbound = {
7224
7420
  data: Array<
7225
7421
  | DataHTTP$Outbound
7226
7422
  | DataLLM$Outbound
7227
- | Ragas$Outbound
7423
+ | DataRagas$Outbound
7228
7424
  | DataJSON$Outbound
7229
7425
  | DataPython$Outbound
7230
7426
  | DataFunction$Outbound
7231
- | Typescript$Outbound
7427
+ | DataTypescript$Outbound
7232
7428
  >;
7233
7429
  has_more: boolean;
7234
7430
  };
@@ -7244,11 +7440,11 @@ export const GetEvalsResponseBody$outboundSchema: z.ZodType<
7244
7440
  z.union([
7245
7441
  z.lazy(() => DataHTTP$outboundSchema),
7246
7442
  z.lazy(() => DataLLM$outboundSchema),
7247
- z.lazy(() => Ragas$outboundSchema),
7443
+ z.lazy(() => DataRagas$outboundSchema),
7248
7444
  z.lazy(() => DataJSON$outboundSchema),
7249
7445
  z.lazy(() => DataPython$outboundSchema),
7250
7446
  z.lazy(() => DataFunction$outboundSchema),
7251
- z.lazy(() => Typescript$outboundSchema),
7447
+ z.lazy(() => DataTypescript$outboundSchema),
7252
7448
  ]),
7253
7449
  ),
7254
7450
  hasMore: z.boolean(),