@orq-ai/node 3.12.3 → 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.
- package/bin/mcp-server.js +112 -112
- package/bin/mcp-server.js.map +30 -30
- package/examples/contactsCreate.example.ts +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/FUNCTIONS.md +9 -19
- package/packages/orq-rc/README.md +180 -181
- package/packages/orq-rc/docs/sdks/agents/README.md +702 -0
- package/packages/orq-rc/docs/sdks/budgets/README.md +5 -5
- package/packages/orq-rc/docs/sdks/memorystores/README.md +1172 -0
- package/packages/orq-rc/docs/sdks/orq/README.md +81 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/examples/postV2AgentsInternal.example.ts +30 -0
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsList.ts +167 -0
- package/packages/orq-rc/src/funcs/agentsListActions.ts +169 -0
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +175 -0
- package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +173 -0
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +179 -0
- package/packages/orq-rc/src/funcs/agentsReviewAction.ts +177 -0
- package/packages/orq-rc/src/funcs/agentsRun.ts +163 -0
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +187 -0
- package/packages/orq-rc/src/funcs/budgetsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/budgetsGet.ts +2 -2
- package/packages/orq-rc/src/funcs/budgetsList.ts +2 -2
- package/packages/orq-rc/src/funcs/memoryStoresCreate.ts +171 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreateDocument.ts +175 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreateMemory.ts +170 -0
- package/packages/orq-rc/src/funcs/memoryStoresDelete.ts +168 -0
- package/packages/orq-rc/src/funcs/memoryStoresDeleteDocument.ts +184 -0
- package/packages/orq-rc/src/funcs/memoryStoresDeleteMemory.ts +179 -0
- package/packages/orq-rc/src/funcs/memoryStoresList.ts +178 -0
- package/packages/orq-rc/src/funcs/memoryStoresListDocuments.ts +181 -0
- package/packages/orq-rc/src/funcs/memoryStoresListMemories.ts +176 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieve.ts +177 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveDocument.ts +178 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveMemory.ts +173 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdate.ts +168 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdateDocument.ts +179 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdateMemory.ts +174 -0
- package/packages/orq-rc/src/funcs/postV2AgentsInternal.ts +159 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +49 -1
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsReviewAction.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/budgetsCreate.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/budgetsGet.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/budgetsList.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreate.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreateDocument.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresCreateMemory.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresDeleteDocument.ts +40 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresDeleteMemory.ts +40 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresListDocuments.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresListMemories.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieveDocument.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresRetrieveMemory.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdateDocument.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/memoryStoresUpdateMemory.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/postV2AgentsInternal.ts +33 -0
- package/packages/orq-rc/src/models/errors/getagent.ts +80 -0
- package/packages/orq-rc/src/models/errors/getagenttask.ts +80 -0
- package/packages/orq-rc/src/models/errors/index.ts +3 -0
- package/packages/orq-rc/src/models/errors/streamrunagent.ts +80 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +57 -58
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +6383 -1075
- package/packages/orq-rc/src/models/operations/creatememory.ts +265 -0
- package/packages/orq-rc/src/models/operations/creatememorydocument.ts +284 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +1956 -0
- package/packages/orq-rc/src/models/operations/deletememory.ts +87 -0
- package/packages/orq-rc/src/models/operations/deletememorydocument.ts +98 -0
- package/packages/orq-rc/src/models/operations/deletememorystore.ts +78 -0
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +36 -27
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +31 -24
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +1171 -0
- package/packages/orq-rc/src/models/operations/getagenttask.ts +257 -0
- package/packages/orq-rc/src/models/operations/getallmemories.ts +315 -0
- package/packages/orq-rc/src/models/operations/getallmemorydocuments.ts +335 -0
- package/packages/orq-rc/src/models/operations/getallmemorystores.ts +1241 -0
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -11
- package/packages/orq-rc/src/models/operations/getevals.ts +1362 -1166
- package/packages/orq-rc/src/models/operations/index.ts +24 -0
- package/packages/orq-rc/src/models/operations/listactions.ts +517 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +1335 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +5 -15
- package/packages/orq-rc/src/models/operations/listchunks.ts +21 -21
- package/packages/orq-rc/src/models/operations/listcontacts.ts +44 -37
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +29 -22
- package/packages/orq-rc/src/models/operations/postv2agentsinternal.ts +103 -0
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +419 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievememory.ts +198 -0
- package/packages/orq-rc/src/models/operations/retrievememorydocument.ts +217 -0
- package/packages/orq-rc/src/models/operations/retrievememorystore.ts +1124 -0
- package/packages/orq-rc/src/models/operations/reviewaction.ts +258 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +3428 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +3361 -0
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -11
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +6627 -1224
- package/packages/orq-rc/src/models/operations/updatememory.ts +274 -0
- package/packages/orq-rc/src/models/operations/updatememorydocument.ts +293 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +1348 -0
- package/packages/orq-rc/src/models/operations/updateprompt.ts +64 -19
- package/packages/orq-rc/src/sdk/agents.ts +148 -0
- package/packages/orq-rc/src/sdk/budgets.ts +5 -5
- package/packages/orq-rc/src/sdk/memorystores.ts +286 -0
- package/packages/orq-rc/src/sdk/sdk.ts +27 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
- 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
|
|
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
|
|
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
|
|
174
|
+
export type DataRagasMetric = ClosedEnum<typeof DataRagasMetric>;
|
|
175
175
|
|
|
176
|
-
export type
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
713
|
+
export type GetEvalsFunctionParams2 = {
|
|
714
714
|
type: GetEvalsFunctionParamsType;
|
|
715
715
|
keywords: Array<string>;
|
|
716
716
|
};
|
|
717
717
|
|
|
718
|
-
export const
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
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
|
|
724
|
-
type:
|
|
727
|
+
export type GetEvalsFunctionParams1 = {
|
|
728
|
+
type:
|
|
729
|
+
GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type;
|
|
725
730
|
value: string;
|
|
726
731
|
};
|
|
727
732
|
|
|
728
733
|
export type DataFunctionParams =
|
|
729
|
-
|
|
|
730
|
-
|
|
|
731
|
-
|
|
|
732
|
-
|
|
|
733
|
-
|
|
|
734
|
-
|
|
|
735
|
-
|
|
|
736
|
-
|
|
|
737
|
-
|
|
|
738
|
-
|
|
|
739
|
-
|
|
|
740
|
-
|
|
|
741
|
-
|
|
|
742
|
-
|
|
|
743
|
-
|
|
|
744
|
-
|
|
|
745
|
-
|
|
|
746
|
-
|
|
|
747
|
-
|
|
|
748
|
-
|
|
|
749
|
-
|
|
|
750
|
-
|
|
|
751
|
-
|
|
|
752
|
-
|
|
|
753
|
-
|
|
|
754
|
-
|
|
|
755
|
-
|
|
|
756
|
-
|
|
|
757
|
-
|
|
|
758
|
-
|
|
|
759
|
-
|
|
|
760
|
-
|
|
|
761
|
-
|
|
|
762
|
-
|
|
|
763
|
-
|
|
|
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
|
-
|
|
|
777
|
-
|
|
|
778
|
-
|
|
|
779
|
-
|
|
|
780
|
-
|
|
|
781
|
-
|
|
|
782
|
-
|
|
|
783
|
-
|
|
|
784
|
-
|
|
|
785
|
-
|
|
|
786
|
-
|
|
|
787
|
-
|
|
|
788
|
-
|
|
|
789
|
-
|
|
|
790
|
-
|
|
|
791
|
-
|
|
|
792
|
-
|
|
|
793
|
-
|
|
|
794
|
-
|
|
|
795
|
-
|
|
|
796
|
-
|
|
|
797
|
-
|
|
|
798
|
-
|
|
|
799
|
-
|
|
|
800
|
-
|
|
|
801
|
-
|
|
|
802
|
-
|
|
|
803
|
-
|
|
|
804
|
-
|
|
|
805
|
-
|
|
|
806
|
-
|
|
|
807
|
-
|
|
|
808
|
-
|
|
|
809
|
-
|
|
|
810
|
-
|
|
|
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
|
-
|
|
|
1099
|
+
| DataRagas
|
|
1095
1100
|
| DataJSON
|
|
1096
1101
|
| DataPython
|
|
1097
1102
|
| DataFunction
|
|
1098
|
-
|
|
|
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
|
-
|
|
|
1113
|
+
| DataRagas
|
|
1109
1114
|
| DataJSON
|
|
1110
1115
|
| DataPython
|
|
1111
1116
|
| DataFunction
|
|
1112
|
-
|
|
|
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
|
|
1548
|
-
|
|
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-
|
|
1555
|
-
updated: z.string().default("2025-09-
|
|
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
|
|
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
|
|
1592
|
-
|
|
1596
|
+
export const DataTypescript$outboundSchema: z.ZodType<
|
|
1597
|
+
DataTypescript$Outbound,
|
|
1593
1598
|
z.ZodTypeDef,
|
|
1594
|
-
|
|
1599
|
+
DataTypescript
|
|
1595
1600
|
> = z.object({
|
|
1596
1601
|
id: z.string(),
|
|
1597
1602
|
description: z.string(),
|
|
1598
|
-
created: z.string().default("2025-09-
|
|
1599
|
-
updated: z.string().default("2025-09-
|
|
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
|
|
1624
|
-
/** @deprecated use `
|
|
1625
|
-
export const inboundSchema =
|
|
1626
|
-
/** @deprecated use `
|
|
1627
|
-
export const outboundSchema =
|
|
1628
|
-
/** @deprecated use `
|
|
1629
|
-
export type 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
|
|
1633
|
-
return JSON.stringify(
|
|
1637
|
+
export function dataTypescriptToJSON(dataTypescript: DataTypescript): string {
|
|
1638
|
+
return JSON.stringify(DataTypescript$outboundSchema.parse(dataTypescript));
|
|
1634
1639
|
}
|
|
1635
1640
|
|
|
1636
|
-
export function
|
|
1641
|
+
export function dataTypescriptFromJSON(
|
|
1637
1642
|
jsonString: string,
|
|
1638
|
-
): SafeParseResult<
|
|
1643
|
+
): SafeParseResult<DataTypescript, SDKValidationError> {
|
|
1639
1644
|
return safeParse(
|
|
1640
1645
|
jsonString,
|
|
1641
|
-
(x) =>
|
|
1642
|
-
`Failed to parse '
|
|
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
|
|
1973
|
-
|
|
1977
|
+
export const DataRagasMetric$inboundSchema: z.ZodNativeEnum<
|
|
1978
|
+
typeof DataRagasMetric
|
|
1979
|
+
> = z.nativeEnum(DataRagasMetric);
|
|
1974
1980
|
|
|
1975
1981
|
/** @internal */
|
|
1976
|
-
export const
|
|
1977
|
-
|
|
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
|
|
1984
|
-
/** @deprecated use `
|
|
1985
|
-
export const inboundSchema =
|
|
1986
|
-
/** @deprecated use `
|
|
1987
|
-
export const 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
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
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
|
|
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
|
|
2033
|
-
|
|
2040
|
+
export const DataRagas$outboundSchema: z.ZodType<
|
|
2041
|
+
DataRagas$Outbound,
|
|
2034
2042
|
z.ZodTypeDef,
|
|
2035
|
-
|
|
2043
|
+
DataRagas
|
|
2036
2044
|
> = z.object({
|
|
2037
2045
|
id: z.string(),
|
|
2038
2046
|
description: z.string(),
|
|
2039
|
-
created: z.string().default("2025-09-
|
|
2040
|
-
updated: z.string().default("2025-09-
|
|
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:
|
|
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
|
|
2062
|
-
/** @deprecated use `
|
|
2063
|
-
export const inboundSchema =
|
|
2064
|
-
/** @deprecated use `
|
|
2065
|
-
export const outboundSchema =
|
|
2066
|
-
/** @deprecated use `
|
|
2067
|
-
export type 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
|
|
2071
|
-
return JSON.stringify(
|
|
2078
|
+
export function dataRagasToJSON(dataRagas: DataRagas): string {
|
|
2079
|
+
return JSON.stringify(DataRagas$outboundSchema.parse(dataRagas));
|
|
2072
2080
|
}
|
|
2073
2081
|
|
|
2074
|
-
export function
|
|
2082
|
+
export function dataRagasFromJSON(
|
|
2075
2083
|
jsonString: string,
|
|
2076
|
-
): SafeParseResult<
|
|
2084
|
+
): SafeParseResult<DataRagas, SDKValidationError> {
|
|
2077
2085
|
return safeParse(
|
|
2078
2086
|
jsonString,
|
|
2079
|
-
(x) =>
|
|
2080
|
-
`Failed to parse '
|
|
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
|
|
2431
|
-
|
|
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
|
|
2448
|
+
export type GetEvalsFunctionParams35$Outbound = {
|
|
2441
2449
|
type: string;
|
|
2442
2450
|
};
|
|
2443
2451
|
|
|
2444
2452
|
/** @internal */
|
|
2445
|
-
export const
|
|
2446
|
-
|
|
2453
|
+
export const GetEvalsFunctionParams35$outboundSchema: z.ZodType<
|
|
2454
|
+
GetEvalsFunctionParams35$Outbound,
|
|
2447
2455
|
z.ZodTypeDef,
|
|
2448
|
-
|
|
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
|
|
2459
|
-
/** @deprecated use `
|
|
2460
|
-
export const inboundSchema =
|
|
2461
|
-
/** @deprecated use `
|
|
2462
|
-
export const outboundSchema =
|
|
2463
|
-
/** @deprecated use `
|
|
2464
|
-
export type 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
|
|
2468
|
-
|
|
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
|
|
2483
|
+
export function getEvalsFunctionParams35FromJSON(
|
|
2472
2484
|
jsonString: string,
|
|
2473
|
-
): SafeParseResult<
|
|
2485
|
+
): SafeParseResult<GetEvalsFunctionParams35, SDKValidationError> {
|
|
2474
2486
|
return safeParse(
|
|
2475
2487
|
jsonString,
|
|
2476
|
-
(x) =>
|
|
2477
|
-
`Failed to parse '
|
|
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
|
|
2511
|
-
|
|
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
|
|
2532
|
+
export type GetEvalsFunctionParams34$Outbound = {
|
|
2521
2533
|
type: string;
|
|
2522
2534
|
};
|
|
2523
2535
|
|
|
2524
2536
|
/** @internal */
|
|
2525
|
-
export const
|
|
2526
|
-
|
|
2537
|
+
export const GetEvalsFunctionParams34$outboundSchema: z.ZodType<
|
|
2538
|
+
GetEvalsFunctionParams34$Outbound,
|
|
2527
2539
|
z.ZodTypeDef,
|
|
2528
|
-
|
|
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
|
|
2539
|
-
/** @deprecated use `
|
|
2540
|
-
export const inboundSchema =
|
|
2541
|
-
/** @deprecated use `
|
|
2542
|
-
export const outboundSchema =
|
|
2543
|
-
/** @deprecated use `
|
|
2544
|
-
export type 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
|
|
2548
|
-
|
|
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
|
|
2567
|
+
export function getEvalsFunctionParams34FromJSON(
|
|
2552
2568
|
jsonString: string,
|
|
2553
|
-
): SafeParseResult<
|
|
2569
|
+
): SafeParseResult<GetEvalsFunctionParams34, SDKValidationError> {
|
|
2554
2570
|
return safeParse(
|
|
2555
2571
|
jsonString,
|
|
2556
|
-
(x) =>
|
|
2557
|
-
`Failed to parse '
|
|
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
|
|
2591
|
-
|
|
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
|
|
2616
|
+
export type GetEvalsFunctionParams33$Outbound = {
|
|
2601
2617
|
type: string;
|
|
2602
2618
|
};
|
|
2603
2619
|
|
|
2604
2620
|
/** @internal */
|
|
2605
|
-
export const
|
|
2606
|
-
|
|
2621
|
+
export const GetEvalsFunctionParams33$outboundSchema: z.ZodType<
|
|
2622
|
+
GetEvalsFunctionParams33$Outbound,
|
|
2607
2623
|
z.ZodTypeDef,
|
|
2608
|
-
|
|
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
|
|
2619
|
-
/** @deprecated use `
|
|
2620
|
-
export const inboundSchema =
|
|
2621
|
-
/** @deprecated use `
|
|
2622
|
-
export const outboundSchema =
|
|
2623
|
-
/** @deprecated use `
|
|
2624
|
-
export type 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
|
|
2628
|
-
|
|
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
|
|
2651
|
+
export function getEvalsFunctionParams33FromJSON(
|
|
2632
2652
|
jsonString: string,
|
|
2633
|
-
): SafeParseResult<
|
|
2653
|
+
): SafeParseResult<GetEvalsFunctionParams33, SDKValidationError> {
|
|
2634
2654
|
return safeParse(
|
|
2635
2655
|
jsonString,
|
|
2636
|
-
(x) =>
|
|
2637
|
-
`Failed to parse '
|
|
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
|
|
2671
|
-
|
|
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
|
|
2700
|
+
export type GetEvalsFunctionParams32$Outbound = {
|
|
2681
2701
|
type: string;
|
|
2682
2702
|
};
|
|
2683
2703
|
|
|
2684
2704
|
/** @internal */
|
|
2685
|
-
export const
|
|
2686
|
-
|
|
2705
|
+
export const GetEvalsFunctionParams32$outboundSchema: z.ZodType<
|
|
2706
|
+
GetEvalsFunctionParams32$Outbound,
|
|
2687
2707
|
z.ZodTypeDef,
|
|
2688
|
-
|
|
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
|
|
2699
|
-
/** @deprecated use `
|
|
2700
|
-
export const inboundSchema =
|
|
2701
|
-
/** @deprecated use `
|
|
2702
|
-
export const outboundSchema =
|
|
2703
|
-
/** @deprecated use `
|
|
2704
|
-
export type 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
|
|
2708
|
-
|
|
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
|
|
2735
|
+
export function getEvalsFunctionParams32FromJSON(
|
|
2712
2736
|
jsonString: string,
|
|
2713
|
-
): SafeParseResult<
|
|
2737
|
+
): SafeParseResult<GetEvalsFunctionParams32, SDKValidationError> {
|
|
2714
2738
|
return safeParse(
|
|
2715
2739
|
jsonString,
|
|
2716
|
-
(x) =>
|
|
2717
|
-
`Failed to parse '
|
|
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
|
|
2751
|
-
|
|
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
|
|
2784
|
+
export type GetEvalsFunctionParams31$Outbound = {
|
|
2761
2785
|
type: string;
|
|
2762
2786
|
};
|
|
2763
2787
|
|
|
2764
2788
|
/** @internal */
|
|
2765
|
-
export const
|
|
2766
|
-
|
|
2789
|
+
export const GetEvalsFunctionParams31$outboundSchema: z.ZodType<
|
|
2790
|
+
GetEvalsFunctionParams31$Outbound,
|
|
2767
2791
|
z.ZodTypeDef,
|
|
2768
|
-
|
|
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
|
|
2779
|
-
/** @deprecated use `
|
|
2780
|
-
export const inboundSchema =
|
|
2781
|
-
/** @deprecated use `
|
|
2782
|
-
export const outboundSchema =
|
|
2783
|
-
/** @deprecated use `
|
|
2784
|
-
export type 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
|
|
2788
|
-
|
|
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
|
|
2819
|
+
export function getEvalsFunctionParams31FromJSON(
|
|
2792
2820
|
jsonString: string,
|
|
2793
|
-
): SafeParseResult<
|
|
2821
|
+
): SafeParseResult<GetEvalsFunctionParams31, SDKValidationError> {
|
|
2794
2822
|
return safeParse(
|
|
2795
2823
|
jsonString,
|
|
2796
|
-
(x) =>
|
|
2797
|
-
`Failed to parse '
|
|
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
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
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
|
|
2868
|
+
export type GetEvalsFunctionParams30$Outbound = {
|
|
2838
2869
|
type: string;
|
|
2839
2870
|
};
|
|
2840
2871
|
|
|
2841
2872
|
/** @internal */
|
|
2842
|
-
export const
|
|
2843
|
-
|
|
2873
|
+
export const GetEvalsFunctionParams30$outboundSchema: z.ZodType<
|
|
2874
|
+
GetEvalsFunctionParams30$Outbound,
|
|
2844
2875
|
z.ZodTypeDef,
|
|
2845
|
-
|
|
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
|
|
2856
|
-
/** @deprecated use `
|
|
2857
|
-
export const inboundSchema =
|
|
2858
|
-
/** @deprecated use `
|
|
2859
|
-
export const outboundSchema =
|
|
2860
|
-
/** @deprecated use `
|
|
2861
|
-
export type 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
|
|
2865
|
-
|
|
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
|
|
2903
|
+
export function getEvalsFunctionParams30FromJSON(
|
|
2869
2904
|
jsonString: string,
|
|
2870
|
-
): SafeParseResult<
|
|
2905
|
+
): SafeParseResult<GetEvalsFunctionParams30, SDKValidationError> {
|
|
2871
2906
|
return safeParse(
|
|
2872
2907
|
jsonString,
|
|
2873
|
-
(x) =>
|
|
2874
|
-
`Failed to parse '
|
|
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
|
|
2908
|
-
|
|
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
|
|
2952
|
+
export type GetEvalsFunctionParams29$Outbound = {
|
|
2918
2953
|
type: string;
|
|
2919
2954
|
};
|
|
2920
2955
|
|
|
2921
2956
|
/** @internal */
|
|
2922
|
-
export const
|
|
2923
|
-
|
|
2957
|
+
export const GetEvalsFunctionParams29$outboundSchema: z.ZodType<
|
|
2958
|
+
GetEvalsFunctionParams29$Outbound,
|
|
2924
2959
|
z.ZodTypeDef,
|
|
2925
|
-
|
|
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
|
|
2936
|
-
/** @deprecated use `
|
|
2937
|
-
export const inboundSchema =
|
|
2938
|
-
/** @deprecated use `
|
|
2939
|
-
export const outboundSchema =
|
|
2940
|
-
/** @deprecated use `
|
|
2941
|
-
export type 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
|
|
2945
|
-
|
|
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
|
|
2987
|
+
export function getEvalsFunctionParams29FromJSON(
|
|
2949
2988
|
jsonString: string,
|
|
2950
|
-
): SafeParseResult<
|
|
2989
|
+
): SafeParseResult<GetEvalsFunctionParams29, SDKValidationError> {
|
|
2951
2990
|
return safeParse(
|
|
2952
2991
|
jsonString,
|
|
2953
|
-
(x) =>
|
|
2954
|
-
`Failed to parse '
|
|
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
|
|
2988
|
-
|
|
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
|
|
3036
|
+
export type GetEvalsFunctionParams28$Outbound = {
|
|
2998
3037
|
type: string;
|
|
2999
3038
|
};
|
|
3000
3039
|
|
|
3001
3040
|
/** @internal */
|
|
3002
|
-
export const
|
|
3003
|
-
|
|
3041
|
+
export const GetEvalsFunctionParams28$outboundSchema: z.ZodType<
|
|
3042
|
+
GetEvalsFunctionParams28$Outbound,
|
|
3004
3043
|
z.ZodTypeDef,
|
|
3005
|
-
|
|
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
|
|
3016
|
-
/** @deprecated use `
|
|
3017
|
-
export const inboundSchema =
|
|
3018
|
-
/** @deprecated use `
|
|
3019
|
-
export const outboundSchema =
|
|
3020
|
-
/** @deprecated use `
|
|
3021
|
-
export type 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
|
|
3025
|
-
|
|
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
|
|
3071
|
+
export function getEvalsFunctionParams28FromJSON(
|
|
3029
3072
|
jsonString: string,
|
|
3030
|
-
): SafeParseResult<
|
|
3073
|
+
): SafeParseResult<GetEvalsFunctionParams28, SDKValidationError> {
|
|
3031
3074
|
return safeParse(
|
|
3032
3075
|
jsonString,
|
|
3033
|
-
(x) =>
|
|
3034
|
-
`Failed to parse '
|
|
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
|
|
3068
|
-
|
|
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
|
|
3120
|
+
export type GetEvalsFunctionParams27$Outbound = {
|
|
3078
3121
|
type: string;
|
|
3079
3122
|
};
|
|
3080
3123
|
|
|
3081
3124
|
/** @internal */
|
|
3082
|
-
export const
|
|
3083
|
-
|
|
3125
|
+
export const GetEvalsFunctionParams27$outboundSchema: z.ZodType<
|
|
3126
|
+
GetEvalsFunctionParams27$Outbound,
|
|
3084
3127
|
z.ZodTypeDef,
|
|
3085
|
-
|
|
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
|
|
3096
|
-
/** @deprecated use `
|
|
3097
|
-
export const inboundSchema =
|
|
3098
|
-
/** @deprecated use `
|
|
3099
|
-
export const outboundSchema =
|
|
3100
|
-
/** @deprecated use `
|
|
3101
|
-
export type 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
|
|
3105
|
-
|
|
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
|
|
3155
|
+
export function getEvalsFunctionParams27FromJSON(
|
|
3109
3156
|
jsonString: string,
|
|
3110
|
-
): SafeParseResult<
|
|
3157
|
+
): SafeParseResult<GetEvalsFunctionParams27, SDKValidationError> {
|
|
3111
3158
|
return safeParse(
|
|
3112
3159
|
jsonString,
|
|
3113
|
-
(x) =>
|
|
3114
|
-
`Failed to parse '
|
|
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
|
|
3148
|
-
|
|
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
|
|
3205
|
+
export type GetEvalsFunctionParams26$Outbound = {
|
|
3159
3206
|
type: string;
|
|
3160
3207
|
keywords: Array<string>;
|
|
3161
3208
|
};
|
|
3162
3209
|
|
|
3163
3210
|
/** @internal */
|
|
3164
|
-
export const
|
|
3165
|
-
|
|
3211
|
+
export const GetEvalsFunctionParams26$outboundSchema: z.ZodType<
|
|
3212
|
+
GetEvalsFunctionParams26$Outbound,
|
|
3166
3213
|
z.ZodTypeDef,
|
|
3167
|
-
|
|
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
|
|
3179
|
-
/** @deprecated use `
|
|
3180
|
-
export const inboundSchema =
|
|
3181
|
-
/** @deprecated use `
|
|
3182
|
-
export const outboundSchema =
|
|
3183
|
-
/** @deprecated use `
|
|
3184
|
-
export type 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
|
|
3188
|
-
|
|
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
|
|
3242
|
+
export function getEvalsFunctionParams26FromJSON(
|
|
3192
3243
|
jsonString: string,
|
|
3193
|
-
): SafeParseResult<
|
|
3244
|
+
): SafeParseResult<GetEvalsFunctionParams26, SDKValidationError> {
|
|
3194
3245
|
return safeParse(
|
|
3195
3246
|
jsonString,
|
|
3196
|
-
(x) =>
|
|
3197
|
-
`Failed to parse '
|
|
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
|
|
3231
|
-
|
|
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
|
|
3292
|
+
export type GetEvalsFunctionParams25$Outbound = {
|
|
3242
3293
|
type: string;
|
|
3243
3294
|
topic: string;
|
|
3244
3295
|
};
|
|
3245
3296
|
|
|
3246
3297
|
/** @internal */
|
|
3247
|
-
export const
|
|
3248
|
-
|
|
3298
|
+
export const GetEvalsFunctionParams25$outboundSchema: z.ZodType<
|
|
3299
|
+
GetEvalsFunctionParams25$Outbound,
|
|
3249
3300
|
z.ZodTypeDef,
|
|
3250
|
-
|
|
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
|
|
3262
|
-
/** @deprecated use `
|
|
3263
|
-
export const inboundSchema =
|
|
3264
|
-
/** @deprecated use `
|
|
3265
|
-
export const outboundSchema =
|
|
3266
|
-
/** @deprecated use `
|
|
3267
|
-
export type 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
|
|
3271
|
-
|
|
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
|
|
3329
|
+
export function getEvalsFunctionParams25FromJSON(
|
|
3275
3330
|
jsonString: string,
|
|
3276
|
-
): SafeParseResult<
|
|
3331
|
+
): SafeParseResult<GetEvalsFunctionParams25, SDKValidationError> {
|
|
3277
3332
|
return safeParse(
|
|
3278
3333
|
jsonString,
|
|
3279
|
-
(x) =>
|
|
3280
|
-
`Failed to parse '
|
|
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
|
|
3314
|
-
|
|
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
|
|
3378
|
+
export type GetEvalsFunctionParams24$Outbound = {
|
|
3324
3379
|
type: string;
|
|
3325
3380
|
};
|
|
3326
3381
|
|
|
3327
3382
|
/** @internal */
|
|
3328
|
-
export const
|
|
3329
|
-
|
|
3383
|
+
export const GetEvalsFunctionParams24$outboundSchema: z.ZodType<
|
|
3384
|
+
GetEvalsFunctionParams24$Outbound,
|
|
3330
3385
|
z.ZodTypeDef,
|
|
3331
|
-
|
|
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
|
|
3342
|
-
/** @deprecated use `
|
|
3343
|
-
export const inboundSchema =
|
|
3344
|
-
/** @deprecated use `
|
|
3345
|
-
export const outboundSchema =
|
|
3346
|
-
/** @deprecated use `
|
|
3347
|
-
export type 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
|
|
3351
|
-
|
|
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
|
|
3413
|
+
export function getEvalsFunctionParams24FromJSON(
|
|
3355
3414
|
jsonString: string,
|
|
3356
|
-
): SafeParseResult<
|
|
3415
|
+
): SafeParseResult<GetEvalsFunctionParams24, SDKValidationError> {
|
|
3357
3416
|
return safeParse(
|
|
3358
3417
|
jsonString,
|
|
3359
|
-
(x) =>
|
|
3360
|
-
`Failed to parse '
|
|
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
|
|
3394
|
-
|
|
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
|
|
3462
|
+
export type GetEvalsFunctionParams23$Outbound = {
|
|
3404
3463
|
type: string;
|
|
3405
3464
|
};
|
|
3406
3465
|
|
|
3407
3466
|
/** @internal */
|
|
3408
|
-
export const
|
|
3409
|
-
|
|
3467
|
+
export const GetEvalsFunctionParams23$outboundSchema: z.ZodType<
|
|
3468
|
+
GetEvalsFunctionParams23$Outbound,
|
|
3410
3469
|
z.ZodTypeDef,
|
|
3411
|
-
|
|
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
|
|
3422
|
-
/** @deprecated use `
|
|
3423
|
-
export const inboundSchema =
|
|
3424
|
-
/** @deprecated use `
|
|
3425
|
-
export const outboundSchema =
|
|
3426
|
-
/** @deprecated use `
|
|
3427
|
-
export type 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
|
|
3431
|
-
|
|
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
|
|
3497
|
+
export function getEvalsFunctionParams23FromJSON(
|
|
3435
3498
|
jsonString: string,
|
|
3436
|
-
): SafeParseResult<
|
|
3499
|
+
): SafeParseResult<GetEvalsFunctionParams23, SDKValidationError> {
|
|
3437
3500
|
return safeParse(
|
|
3438
3501
|
jsonString,
|
|
3439
|
-
(x) =>
|
|
3440
|
-
`Failed to parse '
|
|
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
|
|
3474
|
-
|
|
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
|
|
3546
|
+
export type GetEvalsFunctionParams22$Outbound = {
|
|
3484
3547
|
type: string;
|
|
3485
3548
|
};
|
|
3486
3549
|
|
|
3487
3550
|
/** @internal */
|
|
3488
|
-
export const
|
|
3489
|
-
|
|
3551
|
+
export const GetEvalsFunctionParams22$outboundSchema: z.ZodType<
|
|
3552
|
+
GetEvalsFunctionParams22$Outbound,
|
|
3490
3553
|
z.ZodTypeDef,
|
|
3491
|
-
|
|
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
|
|
3502
|
-
/** @deprecated use `
|
|
3503
|
-
export const inboundSchema =
|
|
3504
|
-
/** @deprecated use `
|
|
3505
|
-
export const outboundSchema =
|
|
3506
|
-
/** @deprecated use `
|
|
3507
|
-
export type 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
|
|
3511
|
-
|
|
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
|
|
3581
|
+
export function getEvalsFunctionParams22FromJSON(
|
|
3515
3582
|
jsonString: string,
|
|
3516
|
-
): SafeParseResult<
|
|
3583
|
+
): SafeParseResult<GetEvalsFunctionParams22, SDKValidationError> {
|
|
3517
3584
|
return safeParse(
|
|
3518
3585
|
jsonString,
|
|
3519
|
-
(x) =>
|
|
3520
|
-
`Failed to parse '
|
|
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
|
|
3554
|
-
|
|
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
|
|
3630
|
+
export type GetEvalsFunctionParams21$Outbound = {
|
|
3564
3631
|
type: string;
|
|
3565
3632
|
};
|
|
3566
3633
|
|
|
3567
3634
|
/** @internal */
|
|
3568
|
-
export const
|
|
3569
|
-
|
|
3635
|
+
export const GetEvalsFunctionParams21$outboundSchema: z.ZodType<
|
|
3636
|
+
GetEvalsFunctionParams21$Outbound,
|
|
3570
3637
|
z.ZodTypeDef,
|
|
3571
|
-
|
|
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
|
|
3582
|
-
/** @deprecated use `
|
|
3583
|
-
export const inboundSchema =
|
|
3584
|
-
/** @deprecated use `
|
|
3585
|
-
export const outboundSchema =
|
|
3586
|
-
/** @deprecated use `
|
|
3587
|
-
export type 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
|
|
3591
|
-
|
|
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
|
|
3665
|
+
export function getEvalsFunctionParams21FromJSON(
|
|
3595
3666
|
jsonString: string,
|
|
3596
|
-
): SafeParseResult<
|
|
3667
|
+
): SafeParseResult<GetEvalsFunctionParams21, SDKValidationError> {
|
|
3597
3668
|
return safeParse(
|
|
3598
3669
|
jsonString,
|
|
3599
|
-
(x) =>
|
|
3600
|
-
`Failed to parse '
|
|
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
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
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
|
|
3714
|
+
export type GetEvalsFunctionParams20$Outbound = {
|
|
3641
3715
|
type: string;
|
|
3642
3716
|
};
|
|
3643
3717
|
|
|
3644
3718
|
/** @internal */
|
|
3645
|
-
export const
|
|
3646
|
-
|
|
3719
|
+
export const GetEvalsFunctionParams20$outboundSchema: z.ZodType<
|
|
3720
|
+
GetEvalsFunctionParams20$Outbound,
|
|
3647
3721
|
z.ZodTypeDef,
|
|
3648
|
-
|
|
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
|
|
3659
|
-
/** @deprecated use `
|
|
3660
|
-
export const inboundSchema =
|
|
3661
|
-
/** @deprecated use `
|
|
3662
|
-
export const outboundSchema =
|
|
3663
|
-
/** @deprecated use `
|
|
3664
|
-
export type 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
|
|
3668
|
-
|
|
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
|
|
3749
|
+
export function getEvalsFunctionParams20FromJSON(
|
|
3672
3750
|
jsonString: string,
|
|
3673
|
-
): SafeParseResult<
|
|
3751
|
+
): SafeParseResult<GetEvalsFunctionParams20, SDKValidationError> {
|
|
3674
3752
|
return safeParse(
|
|
3675
3753
|
jsonString,
|
|
3676
|
-
(x) =>
|
|
3677
|
-
`Failed to parse '
|
|
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
|
|
3711
|
-
|
|
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
|
|
3798
|
+
export type GetEvalsFunctionParams19$Outbound = {
|
|
3721
3799
|
type: string;
|
|
3722
3800
|
};
|
|
3723
3801
|
|
|
3724
3802
|
/** @internal */
|
|
3725
|
-
export const
|
|
3726
|
-
|
|
3803
|
+
export const GetEvalsFunctionParams19$outboundSchema: z.ZodType<
|
|
3804
|
+
GetEvalsFunctionParams19$Outbound,
|
|
3727
3805
|
z.ZodTypeDef,
|
|
3728
|
-
|
|
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
|
|
3739
|
-
/** @deprecated use `
|
|
3740
|
-
export const inboundSchema =
|
|
3741
|
-
/** @deprecated use `
|
|
3742
|
-
export const outboundSchema =
|
|
3743
|
-
/** @deprecated use `
|
|
3744
|
-
export type 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
|
|
3748
|
-
|
|
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
|
|
3833
|
+
export function getEvalsFunctionParams19FromJSON(
|
|
3752
3834
|
jsonString: string,
|
|
3753
|
-
): SafeParseResult<
|
|
3835
|
+
): SafeParseResult<GetEvalsFunctionParams19, SDKValidationError> {
|
|
3754
3836
|
return safeParse(
|
|
3755
3837
|
jsonString,
|
|
3756
|
-
(x) =>
|
|
3757
|
-
`Failed to parse '
|
|
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
|
|
3791
|
-
|
|
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
|
|
3882
|
+
export type GetEvalsFunctionParams18$Outbound = {
|
|
3801
3883
|
type: string;
|
|
3802
3884
|
};
|
|
3803
3885
|
|
|
3804
3886
|
/** @internal */
|
|
3805
|
-
export const
|
|
3806
|
-
|
|
3887
|
+
export const GetEvalsFunctionParams18$outboundSchema: z.ZodType<
|
|
3888
|
+
GetEvalsFunctionParams18$Outbound,
|
|
3807
3889
|
z.ZodTypeDef,
|
|
3808
|
-
|
|
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
|
|
3819
|
-
/** @deprecated use `
|
|
3820
|
-
export const inboundSchema =
|
|
3821
|
-
/** @deprecated use `
|
|
3822
|
-
export const outboundSchema =
|
|
3823
|
-
/** @deprecated use `
|
|
3824
|
-
export type 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
|
|
3828
|
-
|
|
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
|
|
3917
|
+
export function getEvalsFunctionParams18FromJSON(
|
|
3832
3918
|
jsonString: string,
|
|
3833
|
-
): SafeParseResult<
|
|
3919
|
+
): SafeParseResult<GetEvalsFunctionParams18, SDKValidationError> {
|
|
3834
3920
|
return safeParse(
|
|
3835
3921
|
jsonString,
|
|
3836
|
-
(x) =>
|
|
3837
|
-
`Failed to parse '
|
|
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
|
|
3871
|
-
|
|
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
|
|
3966
|
+
export type GetEvalsFunctionParams17$Outbound = {
|
|
3881
3967
|
type: string;
|
|
3882
3968
|
};
|
|
3883
3969
|
|
|
3884
3970
|
/** @internal */
|
|
3885
|
-
export const
|
|
3886
|
-
|
|
3971
|
+
export const GetEvalsFunctionParams17$outboundSchema: z.ZodType<
|
|
3972
|
+
GetEvalsFunctionParams17$Outbound,
|
|
3887
3973
|
z.ZodTypeDef,
|
|
3888
|
-
|
|
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
|
|
3899
|
-
/** @deprecated use `
|
|
3900
|
-
export const inboundSchema =
|
|
3901
|
-
/** @deprecated use `
|
|
3902
|
-
export const outboundSchema =
|
|
3903
|
-
/** @deprecated use `
|
|
3904
|
-
export type 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
|
|
3908
|
-
|
|
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
|
|
4001
|
+
export function getEvalsFunctionParams17FromJSON(
|
|
3912
4002
|
jsonString: string,
|
|
3913
|
-
): SafeParseResult<
|
|
4003
|
+
): SafeParseResult<GetEvalsFunctionParams17, SDKValidationError> {
|
|
3914
4004
|
return safeParse(
|
|
3915
4005
|
jsonString,
|
|
3916
|
-
(x) =>
|
|
3917
|
-
`Failed to parse '
|
|
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
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
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
|
|
4050
|
+
export type GetEvalsFunctionParams16$Outbound = {
|
|
3958
4051
|
type: string;
|
|
3959
4052
|
};
|
|
3960
4053
|
|
|
3961
4054
|
/** @internal */
|
|
3962
|
-
export const
|
|
3963
|
-
|
|
4055
|
+
export const GetEvalsFunctionParams16$outboundSchema: z.ZodType<
|
|
4056
|
+
GetEvalsFunctionParams16$Outbound,
|
|
3964
4057
|
z.ZodTypeDef,
|
|
3965
|
-
|
|
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
|
|
3976
|
-
/** @deprecated use `
|
|
3977
|
-
export const inboundSchema =
|
|
3978
|
-
/** @deprecated use `
|
|
3979
|
-
export const outboundSchema =
|
|
3980
|
-
/** @deprecated use `
|
|
3981
|
-
export type 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
|
|
3985
|
-
|
|
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
|
|
4085
|
+
export function getEvalsFunctionParams16FromJSON(
|
|
3989
4086
|
jsonString: string,
|
|
3990
|
-
): SafeParseResult<
|
|
4087
|
+
): SafeParseResult<GetEvalsFunctionParams16, SDKValidationError> {
|
|
3991
4088
|
return safeParse(
|
|
3992
4089
|
jsonString,
|
|
3993
|
-
(x) =>
|
|
3994
|
-
`Failed to parse '
|
|
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
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
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
|
|
4135
|
+
export type GetEvalsFunctionParams15$Outbound = {
|
|
4036
4136
|
type: string;
|
|
4037
4137
|
pattern: string;
|
|
4038
4138
|
};
|
|
4039
4139
|
|
|
4040
4140
|
/** @internal */
|
|
4041
|
-
export const
|
|
4042
|
-
|
|
4141
|
+
export const GetEvalsFunctionParams15$outboundSchema: z.ZodType<
|
|
4142
|
+
GetEvalsFunctionParams15$Outbound,
|
|
4043
4143
|
z.ZodTypeDef,
|
|
4044
|
-
|
|
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
|
|
4056
|
-
/** @deprecated use `
|
|
4057
|
-
export const inboundSchema =
|
|
4058
|
-
/** @deprecated use `
|
|
4059
|
-
export const outboundSchema =
|
|
4060
|
-
/** @deprecated use `
|
|
4061
|
-
export type 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
|
|
4065
|
-
|
|
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
|
|
4172
|
+
export function getEvalsFunctionParams15FromJSON(
|
|
4069
4173
|
jsonString: string,
|
|
4070
|
-
): SafeParseResult<
|
|
4174
|
+
): SafeParseResult<GetEvalsFunctionParams15, SDKValidationError> {
|
|
4071
4175
|
return safeParse(
|
|
4072
4176
|
jsonString,
|
|
4073
|
-
(x) =>
|
|
4074
|
-
`Failed to parse '
|
|
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
|
|
4108
|
-
|
|
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
|
|
4221
|
+
export type GetEvalsFunctionParams14$Outbound = {
|
|
4118
4222
|
type: string;
|
|
4119
4223
|
};
|
|
4120
4224
|
|
|
4121
4225
|
/** @internal */
|
|
4122
|
-
export const
|
|
4123
|
-
|
|
4226
|
+
export const GetEvalsFunctionParams14$outboundSchema: z.ZodType<
|
|
4227
|
+
GetEvalsFunctionParams14$Outbound,
|
|
4124
4228
|
z.ZodTypeDef,
|
|
4125
|
-
|
|
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
|
|
4136
|
-
/** @deprecated use `
|
|
4137
|
-
export const inboundSchema =
|
|
4138
|
-
/** @deprecated use `
|
|
4139
|
-
export const outboundSchema =
|
|
4140
|
-
/** @deprecated use `
|
|
4141
|
-
export type 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
|
|
4145
|
-
|
|
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
|
|
4256
|
+
export function getEvalsFunctionParams14FromJSON(
|
|
4149
4257
|
jsonString: string,
|
|
4150
|
-
): SafeParseResult<
|
|
4258
|
+
): SafeParseResult<GetEvalsFunctionParams14, SDKValidationError> {
|
|
4151
4259
|
return safeParse(
|
|
4152
4260
|
jsonString,
|
|
4153
|
-
(x) =>
|
|
4154
|
-
`Failed to parse '
|
|
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
|
|
4188
|
-
|
|
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
|
|
4306
|
+
export type GetEvalsFunctionParams13$Outbound = {
|
|
4199
4307
|
type: string;
|
|
4200
4308
|
value: number;
|
|
4201
4309
|
};
|
|
4202
4310
|
|
|
4203
4311
|
/** @internal */
|
|
4204
|
-
export const
|
|
4205
|
-
|
|
4312
|
+
export const GetEvalsFunctionParams13$outboundSchema: z.ZodType<
|
|
4313
|
+
GetEvalsFunctionParams13$Outbound,
|
|
4206
4314
|
z.ZodTypeDef,
|
|
4207
|
-
|
|
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
|
|
4219
|
-
/** @deprecated use `
|
|
4220
|
-
export const inboundSchema =
|
|
4221
|
-
/** @deprecated use `
|
|
4222
|
-
export const outboundSchema =
|
|
4223
|
-
/** @deprecated use `
|
|
4224
|
-
export type 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
|
|
4228
|
-
|
|
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
|
|
4343
|
+
export function getEvalsFunctionParams13FromJSON(
|
|
4232
4344
|
jsonString: string,
|
|
4233
|
-
): SafeParseResult<
|
|
4345
|
+
): SafeParseResult<GetEvalsFunctionParams13, SDKValidationError> {
|
|
4234
4346
|
return safeParse(
|
|
4235
4347
|
jsonString,
|
|
4236
|
-
(x) =>
|
|
4237
|
-
`Failed to parse '
|
|
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
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
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
|
|
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
|
|
4287
|
-
|
|
4401
|
+
export const GetEvalsFunctionParams12$outboundSchema: z.ZodType<
|
|
4402
|
+
GetEvalsFunctionParams12$Outbound,
|
|
4288
4403
|
z.ZodTypeDef,
|
|
4289
|
-
|
|
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
|
|
4302
|
-
/** @deprecated use `
|
|
4303
|
-
export const inboundSchema =
|
|
4304
|
-
/** @deprecated use `
|
|
4305
|
-
export const outboundSchema =
|
|
4306
|
-
/** @deprecated use `
|
|
4307
|
-
export type 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
|
|
4311
|
-
|
|
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
|
|
4433
|
+
export function getEvalsFunctionParams12FromJSON(
|
|
4315
4434
|
jsonString: string,
|
|
4316
|
-
): SafeParseResult<
|
|
4435
|
+
): SafeParseResult<GetEvalsFunctionParams12, SDKValidationError> {
|
|
4317
4436
|
return safeParse(
|
|
4318
4437
|
jsonString,
|
|
4319
|
-
(x) =>
|
|
4320
|
-
`Failed to parse '
|
|
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
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
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
|
|
4483
|
+
export type GetEvalsFunctionParams11$Outbound = {
|
|
4362
4484
|
type: string;
|
|
4363
4485
|
value: number;
|
|
4364
4486
|
};
|
|
4365
4487
|
|
|
4366
4488
|
/** @internal */
|
|
4367
|
-
export const
|
|
4368
|
-
|
|
4489
|
+
export const GetEvalsFunctionParams11$outboundSchema: z.ZodType<
|
|
4490
|
+
GetEvalsFunctionParams11$Outbound,
|
|
4369
4491
|
z.ZodTypeDef,
|
|
4370
|
-
|
|
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
|
|
4382
|
-
/** @deprecated use `
|
|
4383
|
-
export const inboundSchema =
|
|
4384
|
-
/** @deprecated use `
|
|
4385
|
-
export const outboundSchema =
|
|
4386
|
-
/** @deprecated use `
|
|
4387
|
-
export type 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
|
|
4391
|
-
|
|
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
|
|
4520
|
+
export function getEvalsFunctionParams11FromJSON(
|
|
4395
4521
|
jsonString: string,
|
|
4396
|
-
): SafeParseResult<
|
|
4522
|
+
): SafeParseResult<GetEvalsFunctionParams11, SDKValidationError> {
|
|
4397
4523
|
return safeParse(
|
|
4398
4524
|
jsonString,
|
|
4399
|
-
(x) =>
|
|
4400
|
-
`Failed to parse '
|
|
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
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
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
|
|
4569
|
+
export type GetEvalsFunctionParams10$Outbound = {
|
|
4441
4570
|
type: string;
|
|
4442
4571
|
};
|
|
4443
4572
|
|
|
4444
4573
|
/** @internal */
|
|
4445
|
-
export const
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
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
|
|
4456
|
-
/** @deprecated use `
|
|
4457
|
-
export const inboundSchema =
|
|
4458
|
-
/** @deprecated use `
|
|
4459
|
-
export const outboundSchema =
|
|
4460
|
-
/** @deprecated use `
|
|
4461
|
-
export type 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
|
|
4465
|
-
|
|
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
|
|
4604
|
+
export function getEvalsFunctionParams10FromJSON(
|
|
4469
4605
|
jsonString: string,
|
|
4470
|
-
): SafeParseResult<
|
|
4606
|
+
): SafeParseResult<GetEvalsFunctionParams10, SDKValidationError> {
|
|
4471
4607
|
return safeParse(
|
|
4472
4608
|
jsonString,
|
|
4473
|
-
(x) =>
|
|
4474
|
-
`Failed to parse '
|
|
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
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
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
|
|
4654
|
+
export type GetEvalsFunctionParams9$Outbound = {
|
|
4516
4655
|
type: string;
|
|
4517
4656
|
value: string;
|
|
4518
4657
|
};
|
|
4519
4658
|
|
|
4520
4659
|
/** @internal */
|
|
4521
|
-
export const
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
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
|
|
4533
|
-
/** @deprecated use `
|
|
4534
|
-
export const inboundSchema =
|
|
4535
|
-
/** @deprecated use `
|
|
4536
|
-
export const outboundSchema =
|
|
4537
|
-
/** @deprecated use `
|
|
4538
|
-
export type 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
|
|
4542
|
-
|
|
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
|
|
4691
|
+
export function getEvalsFunctionParams9FromJSON(
|
|
4546
4692
|
jsonString: string,
|
|
4547
|
-
): SafeParseResult<
|
|
4693
|
+
): SafeParseResult<GetEvalsFunctionParams9, SDKValidationError> {
|
|
4548
4694
|
return safeParse(
|
|
4549
4695
|
jsonString,
|
|
4550
|
-
(x) =>
|
|
4551
|
-
`Failed to parse '
|
|
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
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
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
|
|
4741
|
+
export type GetEvalsFunctionParams8$Outbound = {
|
|
4593
4742
|
type: string;
|
|
4594
4743
|
value: string;
|
|
4595
4744
|
};
|
|
4596
4745
|
|
|
4597
4746
|
/** @internal */
|
|
4598
|
-
export const
|
|
4599
|
-
|
|
4747
|
+
export const GetEvalsFunctionParams8$outboundSchema: z.ZodType<
|
|
4748
|
+
GetEvalsFunctionParams8$Outbound,
|
|
4600
4749
|
z.ZodTypeDef,
|
|
4601
|
-
|
|
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
|
|
4613
|
-
/** @deprecated use `
|
|
4614
|
-
export const inboundSchema =
|
|
4615
|
-
/** @deprecated use `
|
|
4616
|
-
export const outboundSchema =
|
|
4617
|
-
/** @deprecated use `
|
|
4618
|
-
export type 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
|
|
4622
|
-
|
|
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
|
|
4778
|
+
export function getEvalsFunctionParams8FromJSON(
|
|
4626
4779
|
jsonString: string,
|
|
4627
|
-
): SafeParseResult<
|
|
4780
|
+
): SafeParseResult<GetEvalsFunctionParams8, SDKValidationError> {
|
|
4628
4781
|
return safeParse(
|
|
4629
4782
|
jsonString,
|
|
4630
|
-
(x) =>
|
|
4631
|
-
`Failed to parse '
|
|
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
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
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
|
|
4827
|
+
export type GetEvalsFunctionParams7$Outbound = {
|
|
4672
4828
|
type: string;
|
|
4673
4829
|
};
|
|
4674
4830
|
|
|
4675
4831
|
/** @internal */
|
|
4676
|
-
export const
|
|
4677
|
-
|
|
4832
|
+
export const GetEvalsFunctionParams7$outboundSchema: z.ZodType<
|
|
4833
|
+
GetEvalsFunctionParams7$Outbound,
|
|
4678
4834
|
z.ZodTypeDef,
|
|
4679
|
-
|
|
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
|
|
4690
|
-
/** @deprecated use `
|
|
4691
|
-
export const inboundSchema =
|
|
4692
|
-
/** @deprecated use `
|
|
4693
|
-
export const outboundSchema =
|
|
4694
|
-
/** @deprecated use `
|
|
4695
|
-
export type 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
|
|
4699
|
-
|
|
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
|
|
4862
|
+
export function getEvalsFunctionParams7FromJSON(
|
|
4703
4863
|
jsonString: string,
|
|
4704
|
-
): SafeParseResult<
|
|
4864
|
+
): SafeParseResult<GetEvalsFunctionParams7, SDKValidationError> {
|
|
4705
4865
|
return safeParse(
|
|
4706
4866
|
jsonString,
|
|
4707
|
-
(x) =>
|
|
4708
|
-
`Failed to parse '
|
|
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
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
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
|
|
4907
|
+
export type GetEvalsFunctionParams6$Outbound = {
|
|
4746
4908
|
type: string;
|
|
4747
4909
|
};
|
|
4748
4910
|
|
|
4749
4911
|
/** @internal */
|
|
4750
|
-
export const
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
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
|
|
4761
|
-
/** @deprecated use `
|
|
4762
|
-
export const inboundSchema =
|
|
4763
|
-
/** @deprecated use `
|
|
4764
|
-
export const outboundSchema =
|
|
4765
|
-
/** @deprecated use `
|
|
4766
|
-
export type 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
|
|
4770
|
-
|
|
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
|
|
4942
|
+
export function getEvalsFunctionParams6FromJSON(
|
|
4774
4943
|
jsonString: string,
|
|
4775
|
-
): SafeParseResult<
|
|
4944
|
+
): SafeParseResult<GetEvalsFunctionParams6, SDKValidationError> {
|
|
4776
4945
|
return safeParse(
|
|
4777
4946
|
jsonString,
|
|
4778
|
-
(x) =>
|
|
4779
|
-
`Failed to parse '
|
|
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
|
|
4808
|
-
|
|
4809
|
-
|
|
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
|
|
4985
|
+
export type GetEvalsFunctionParams5$Outbound = {
|
|
4814
4986
|
type: string;
|
|
4815
4987
|
};
|
|
4816
4988
|
|
|
4817
4989
|
/** @internal */
|
|
4818
|
-
export const
|
|
4819
|
-
|
|
4820
|
-
|
|
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
|
|
4828
|
-
/** @deprecated use `
|
|
4829
|
-
export const inboundSchema =
|
|
4830
|
-
/** @deprecated use `
|
|
4831
|
-
export const outboundSchema =
|
|
4832
|
-
/** @deprecated use `
|
|
4833
|
-
export type 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
|
|
4837
|
-
|
|
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
|
|
5019
|
+
export function getEvalsFunctionParams5FromJSON(
|
|
4841
5020
|
jsonString: string,
|
|
4842
|
-
): SafeParseResult<
|
|
5021
|
+
): SafeParseResult<GetEvalsFunctionParams5, SDKValidationError> {
|
|
4843
5022
|
return safeParse(
|
|
4844
5023
|
jsonString,
|
|
4845
|
-
(x) =>
|
|
4846
|
-
`Failed to parse '
|
|
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
|
|
4875
|
-
|
|
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
|
|
5063
|
+
export type GetEvalsFunctionParams4$Outbound = {
|
|
4885
5064
|
type: string;
|
|
4886
5065
|
keywords: Array<string>;
|
|
4887
5066
|
};
|
|
4888
5067
|
|
|
4889
5068
|
/** @internal */
|
|
4890
|
-
export const
|
|
4891
|
-
|
|
5069
|
+
export const GetEvalsFunctionParams4$outboundSchema: z.ZodType<
|
|
5070
|
+
GetEvalsFunctionParams4$Outbound,
|
|
4892
5071
|
z.ZodTypeDef,
|
|
4893
|
-
|
|
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
|
|
4904
|
-
/** @deprecated use `
|
|
4905
|
-
export const inboundSchema =
|
|
4906
|
-
/** @deprecated use `
|
|
4907
|
-
export const outboundSchema =
|
|
4908
|
-
/** @deprecated use `
|
|
4909
|
-
export type 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
|
|
4913
|
-
|
|
5091
|
+
export function getEvalsFunctionParams4ToJSON(
|
|
5092
|
+
getEvalsFunctionParams4: GetEvalsFunctionParams4,
|
|
4914
5093
|
): string {
|
|
4915
|
-
return JSON.stringify(
|
|
5094
|
+
return JSON.stringify(
|
|
5095
|
+
GetEvalsFunctionParams4$outboundSchema.parse(getEvalsFunctionParams4),
|
|
5096
|
+
);
|
|
4916
5097
|
}
|
|
4917
5098
|
|
|
4918
|
-
export function
|
|
5099
|
+
export function getEvalsFunctionParams4FromJSON(
|
|
4919
5100
|
jsonString: string,
|
|
4920
|
-
): SafeParseResult<
|
|
5101
|
+
): SafeParseResult<GetEvalsFunctionParams4, SDKValidationError> {
|
|
4921
5102
|
return safeParse(
|
|
4922
5103
|
jsonString,
|
|
4923
|
-
(x) =>
|
|
4924
|
-
`Failed to parse '
|
|
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
|
|
4951
|
-
|
|
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
|
|
5141
|
+
export type GetEvalsFunctionParams3$Outbound = {
|
|
4961
5142
|
type: string;
|
|
4962
5143
|
keywords: Array<string>;
|
|
4963
5144
|
};
|
|
4964
5145
|
|
|
4965
5146
|
/** @internal */
|
|
4966
|
-
export const
|
|
4967
|
-
|
|
5147
|
+
export const GetEvalsFunctionParams3$outboundSchema: z.ZodType<
|
|
5148
|
+
GetEvalsFunctionParams3$Outbound,
|
|
4968
5149
|
z.ZodTypeDef,
|
|
4969
|
-
|
|
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
|
|
4980
|
-
/** @deprecated use `
|
|
4981
|
-
export const inboundSchema =
|
|
4982
|
-
/** @deprecated use `
|
|
4983
|
-
export const outboundSchema =
|
|
4984
|
-
/** @deprecated use `
|
|
4985
|
-
export type 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
|
|
4989
|
-
|
|
5169
|
+
export function getEvalsFunctionParams3ToJSON(
|
|
5170
|
+
getEvalsFunctionParams3: GetEvalsFunctionParams3,
|
|
4990
5171
|
): string {
|
|
4991
|
-
return JSON.stringify(
|
|
5172
|
+
return JSON.stringify(
|
|
5173
|
+
GetEvalsFunctionParams3$outboundSchema.parse(getEvalsFunctionParams3),
|
|
5174
|
+
);
|
|
4992
5175
|
}
|
|
4993
5176
|
|
|
4994
|
-
export function
|
|
5177
|
+
export function getEvalsFunctionParams3FromJSON(
|
|
4995
5178
|
jsonString: string,
|
|
4996
|
-
): SafeParseResult<
|
|
5179
|
+
): SafeParseResult<GetEvalsFunctionParams3, SDKValidationError> {
|
|
4997
5180
|
return safeParse(
|
|
4998
5181
|
jsonString,
|
|
4999
|
-
(x) =>
|
|
5000
|
-
`Failed to parse '
|
|
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
|
|
5027
|
-
|
|
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
|
|
5219
|
+
export type GetEvalsFunctionParams2$Outbound = {
|
|
5037
5220
|
type: string;
|
|
5038
5221
|
keywords: Array<string>;
|
|
5039
5222
|
};
|
|
5040
5223
|
|
|
5041
5224
|
/** @internal */
|
|
5042
|
-
export const
|
|
5043
|
-
|
|
5225
|
+
export const GetEvalsFunctionParams2$outboundSchema: z.ZodType<
|
|
5226
|
+
GetEvalsFunctionParams2$Outbound,
|
|
5044
5227
|
z.ZodTypeDef,
|
|
5045
|
-
|
|
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
|
|
5056
|
-
/** @deprecated use `
|
|
5057
|
-
export const inboundSchema =
|
|
5058
|
-
/** @deprecated use `
|
|
5059
|
-
export const outboundSchema =
|
|
5060
|
-
/** @deprecated use `
|
|
5061
|
-
export type 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
|
|
5065
|
-
|
|
5247
|
+
export function getEvalsFunctionParams2ToJSON(
|
|
5248
|
+
getEvalsFunctionParams2: GetEvalsFunctionParams2,
|
|
5066
5249
|
): string {
|
|
5067
|
-
return JSON.stringify(
|
|
5250
|
+
return JSON.stringify(
|
|
5251
|
+
GetEvalsFunctionParams2$outboundSchema.parse(getEvalsFunctionParams2),
|
|
5252
|
+
);
|
|
5068
5253
|
}
|
|
5069
5254
|
|
|
5070
|
-
export function
|
|
5255
|
+
export function getEvalsFunctionParams2FromJSON(
|
|
5071
5256
|
jsonString: string,
|
|
5072
|
-
): SafeParseResult<
|
|
5257
|
+
): SafeParseResult<GetEvalsFunctionParams2, SDKValidationError> {
|
|
5073
5258
|
return safeParse(
|
|
5074
5259
|
jsonString,
|
|
5075
|
-
(x) =>
|
|
5076
|
-
`Failed to parse '
|
|
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
|
|
5082
|
-
|
|
5083
|
-
|
|
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
|
|
5087
|
-
|
|
5088
|
-
|
|
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
|
|
5095
|
-
/** @deprecated use `
|
|
5096
|
-
export const inboundSchema =
|
|
5097
|
-
|
|
5098
|
-
|
|
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
|
|
5103
|
-
|
|
5294
|
+
export const GetEvalsFunctionParams1$inboundSchema: z.ZodType<
|
|
5295
|
+
GetEvalsFunctionParams1,
|
|
5104
5296
|
z.ZodTypeDef,
|
|
5105
5297
|
unknown
|
|
5106
5298
|
> = z.object({
|
|
5107
|
-
type:
|
|
5299
|
+
type:
|
|
5300
|
+
GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData51Type$inboundSchema,
|
|
5108
5301
|
value: z.string(),
|
|
5109
5302
|
});
|
|
5110
5303
|
|
|
5111
5304
|
/** @internal */
|
|
5112
|
-
export type
|
|
5305
|
+
export type GetEvalsFunctionParams1$Outbound = {
|
|
5113
5306
|
type: string;
|
|
5114
5307
|
value: string;
|
|
5115
5308
|
};
|
|
5116
5309
|
|
|
5117
5310
|
/** @internal */
|
|
5118
|
-
export const
|
|
5119
|
-
|
|
5311
|
+
export const GetEvalsFunctionParams1$outboundSchema: z.ZodType<
|
|
5312
|
+
GetEvalsFunctionParams1$Outbound,
|
|
5120
5313
|
z.ZodTypeDef,
|
|
5121
|
-
|
|
5314
|
+
GetEvalsFunctionParams1
|
|
5122
5315
|
> = z.object({
|
|
5123
|
-
type:
|
|
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
|
|
5132
|
-
/** @deprecated use `
|
|
5133
|
-
export const inboundSchema =
|
|
5134
|
-
/** @deprecated use `
|
|
5135
|
-
export const outboundSchema =
|
|
5136
|
-
/** @deprecated use `
|
|
5137
|
-
export type 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
|
|
5141
|
-
|
|
5334
|
+
export function getEvalsFunctionParams1ToJSON(
|
|
5335
|
+
getEvalsFunctionParams1: GetEvalsFunctionParams1,
|
|
5142
5336
|
): string {
|
|
5143
|
-
return JSON.stringify(
|
|
5337
|
+
return JSON.stringify(
|
|
5338
|
+
GetEvalsFunctionParams1$outboundSchema.parse(getEvalsFunctionParams1),
|
|
5339
|
+
);
|
|
5144
5340
|
}
|
|
5145
5341
|
|
|
5146
|
-
export function
|
|
5342
|
+
export function getEvalsFunctionParams1FromJSON(
|
|
5147
5343
|
jsonString: string,
|
|
5148
|
-
): SafeParseResult<
|
|
5344
|
+
): SafeParseResult<GetEvalsFunctionParams1, SDKValidationError> {
|
|
5149
5345
|
return safeParse(
|
|
5150
5346
|
jsonString,
|
|
5151
|
-
(x) =>
|
|
5152
|
-
`Failed to parse '
|
|
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(() =>
|
|
5163
|
-
z.lazy(() =>
|
|
5164
|
-
z.lazy(() =>
|
|
5165
|
-
z.lazy(() =>
|
|
5166
|
-
z.lazy(() =>
|
|
5167
|
-
z.lazy(() =>
|
|
5168
|
-
z.lazy(() =>
|
|
5169
|
-
z.lazy(() =>
|
|
5170
|
-
z.lazy(() =>
|
|
5171
|
-
z.lazy(() =>
|
|
5172
|
-
z.lazy(() =>
|
|
5173
|
-
z.lazy(() =>
|
|
5174
|
-
z.lazy(() =>
|
|
5175
|
-
z.lazy(() =>
|
|
5176
|
-
z.lazy(() =>
|
|
5177
|
-
z.lazy(() =>
|
|
5178
|
-
z.lazy(() =>
|
|
5179
|
-
z.lazy(() =>
|
|
5180
|
-
z.lazy(() =>
|
|
5181
|
-
z.lazy(() =>
|
|
5182
|
-
z.lazy(() =>
|
|
5183
|
-
z.lazy(() =>
|
|
5184
|
-
z.lazy(() =>
|
|
5185
|
-
z.lazy(() =>
|
|
5186
|
-
z.lazy(() =>
|
|
5187
|
-
z.lazy(() =>
|
|
5188
|
-
z.lazy(() =>
|
|
5189
|
-
z.lazy(() =>
|
|
5190
|
-
z.lazy(() =>
|
|
5191
|
-
z.lazy(() =>
|
|
5192
|
-
z.lazy(() =>
|
|
5193
|
-
z.lazy(() =>
|
|
5194
|
-
z.lazy(() =>
|
|
5195
|
-
z.lazy(() =>
|
|
5196
|
-
z.lazy(() =>
|
|
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
|
-
|
|
|
5202
|
-
|
|
|
5203
|
-
|
|
|
5204
|
-
|
|
|
5205
|
-
|
|
|
5206
|
-
|
|
|
5207
|
-
|
|
|
5208
|
-
|
|
|
5209
|
-
|
|
|
5210
|
-
|
|
|
5211
|
-
|
|
|
5212
|
-
|
|
|
5213
|
-
|
|
|
5214
|
-
|
|
|
5215
|
-
|
|
|
5216
|
-
|
|
|
5217
|
-
|
|
|
5218
|
-
|
|
|
5219
|
-
|
|
|
5220
|
-
|
|
|
5221
|
-
|
|
|
5222
|
-
|
|
|
5223
|
-
|
|
|
5224
|
-
|
|
|
5225
|
-
|
|
|
5226
|
-
|
|
|
5227
|
-
|
|
|
5228
|
-
|
|
|
5229
|
-
|
|
|
5230
|
-
|
|
|
5231
|
-
|
|
|
5232
|
-
|
|
|
5233
|
-
|
|
|
5234
|
-
|
|
|
5235
|
-
|
|
|
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(() =>
|
|
5244
|
-
z.lazy(() =>
|
|
5245
|
-
z.lazy(() =>
|
|
5246
|
-
z.lazy(() =>
|
|
5247
|
-
z.lazy(() =>
|
|
5248
|
-
z.lazy(() =>
|
|
5249
|
-
z.lazy(() =>
|
|
5250
|
-
z.lazy(() =>
|
|
5251
|
-
z.lazy(() =>
|
|
5252
|
-
z.lazy(() =>
|
|
5253
|
-
z.lazy(() =>
|
|
5254
|
-
z.lazy(() =>
|
|
5255
|
-
z.lazy(() =>
|
|
5256
|
-
z.lazy(() =>
|
|
5257
|
-
z.lazy(() =>
|
|
5258
|
-
z.lazy(() =>
|
|
5259
|
-
z.lazy(() =>
|
|
5260
|
-
z.lazy(() =>
|
|
5261
|
-
z.lazy(() =>
|
|
5262
|
-
z.lazy(() =>
|
|
5263
|
-
z.lazy(() =>
|
|
5264
|
-
z.lazy(() =>
|
|
5265
|
-
z.lazy(() =>
|
|
5266
|
-
z.lazy(() =>
|
|
5267
|
-
z.lazy(() =>
|
|
5268
|
-
z.lazy(() =>
|
|
5269
|
-
z.lazy(() =>
|
|
5270
|
-
z.lazy(() =>
|
|
5271
|
-
z.lazy(() =>
|
|
5272
|
-
z.lazy(() =>
|
|
5273
|
-
z.lazy(() =>
|
|
5274
|
-
z.lazy(() =>
|
|
5275
|
-
z.lazy(() =>
|
|
5276
|
-
z.lazy(() =>
|
|
5277
|
-
z.lazy(() =>
|
|
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-
|
|
5320
|
-
updated: z.string().default("2025-09-
|
|
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(() =>
|
|
5328
|
-
z.lazy(() =>
|
|
5329
|
-
z.lazy(() =>
|
|
5330
|
-
z.lazy(() =>
|
|
5331
|
-
z.lazy(() =>
|
|
5332
|
-
z.lazy(() =>
|
|
5333
|
-
z.lazy(() =>
|
|
5334
|
-
z.lazy(() =>
|
|
5335
|
-
z.lazy(() =>
|
|
5336
|
-
z.lazy(() =>
|
|
5337
|
-
z.lazy(() =>
|
|
5338
|
-
z.lazy(() =>
|
|
5339
|
-
z.lazy(() =>
|
|
5340
|
-
z.lazy(() =>
|
|
5341
|
-
z.lazy(() =>
|
|
5342
|
-
z.lazy(() =>
|
|
5343
|
-
z.lazy(() =>
|
|
5344
|
-
z.lazy(() =>
|
|
5345
|
-
z.lazy(() =>
|
|
5346
|
-
z.lazy(() =>
|
|
5347
|
-
z.lazy(() =>
|
|
5348
|
-
z.lazy(() =>
|
|
5349
|
-
z.lazy(() =>
|
|
5350
|
-
z.lazy(() =>
|
|
5351
|
-
z.lazy(() =>
|
|
5352
|
-
z.lazy(() =>
|
|
5353
|
-
z.lazy(() =>
|
|
5354
|
-
z.lazy(() =>
|
|
5355
|
-
z.lazy(() =>
|
|
5356
|
-
z.lazy(() =>
|
|
5357
|
-
z.lazy(() =>
|
|
5358
|
-
z.lazy(() =>
|
|
5359
|
-
z.lazy(() =>
|
|
5360
|
-
z.lazy(() =>
|
|
5361
|
-
z.lazy(() =>
|
|
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
|
-
|
|
|
5385
|
-
|
|
|
5386
|
-
|
|
|
5387
|
-
|
|
|
5388
|
-
|
|
|
5389
|
-
|
|
|
5390
|
-
|
|
|
5391
|
-
|
|
|
5392
|
-
|
|
|
5393
|
-
|
|
|
5394
|
-
|
|
|
5395
|
-
|
|
|
5396
|
-
|
|
|
5397
|
-
|
|
|
5398
|
-
|
|
|
5399
|
-
|
|
|
5400
|
-
|
|
|
5401
|
-
|
|
|
5402
|
-
|
|
|
5403
|
-
|
|
|
5404
|
-
|
|
|
5405
|
-
|
|
|
5406
|
-
|
|
|
5407
|
-
|
|
|
5408
|
-
|
|
|
5409
|
-
|
|
|
5410
|
-
|
|
|
5411
|
-
|
|
|
5412
|
-
|
|
|
5413
|
-
|
|
|
5414
|
-
|
|
|
5415
|
-
|
|
|
5416
|
-
|
|
|
5417
|
-
|
|
|
5418
|
-
|
|
|
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-
|
|
5431
|
-
updated: z.string().default("2025-09-
|
|
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(() =>
|
|
5439
|
-
z.lazy(() =>
|
|
5440
|
-
z.lazy(() =>
|
|
5441
|
-
z.lazy(() =>
|
|
5442
|
-
z.lazy(() =>
|
|
5443
|
-
z.lazy(() =>
|
|
5444
|
-
z.lazy(() =>
|
|
5445
|
-
z.lazy(() =>
|
|
5446
|
-
z.lazy(() =>
|
|
5447
|
-
z.lazy(() =>
|
|
5448
|
-
z.lazy(() =>
|
|
5449
|
-
z.lazy(() =>
|
|
5450
|
-
z.lazy(() =>
|
|
5451
|
-
z.lazy(() =>
|
|
5452
|
-
z.lazy(() =>
|
|
5453
|
-
z.lazy(() =>
|
|
5454
|
-
z.lazy(() =>
|
|
5455
|
-
z.lazy(() =>
|
|
5456
|
-
z.lazy(() =>
|
|
5457
|
-
z.lazy(() =>
|
|
5458
|
-
z.lazy(() =>
|
|
5459
|
-
z.lazy(() =>
|
|
5460
|
-
z.lazy(() =>
|
|
5461
|
-
z.lazy(() =>
|
|
5462
|
-
z.lazy(() =>
|
|
5463
|
-
z.lazy(() =>
|
|
5464
|
-
z.lazy(() =>
|
|
5465
|
-
z.lazy(() =>
|
|
5466
|
-
z.lazy(() =>
|
|
5467
|
-
z.lazy(() =>
|
|
5468
|
-
z.lazy(() =>
|
|
5469
|
-
z.lazy(() =>
|
|
5470
|
-
z.lazy(() =>
|
|
5471
|
-
z.lazy(() =>
|
|
5472
|
-
z.lazy(() =>
|
|
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-
|
|
5814
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
5853
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
6200
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
6245
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
6611
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
6654
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
7037
|
-
updated: z.string().default("2025-09-
|
|
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-
|
|
7082
|
-
updated: z.string().default("2025-09-
|
|
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(() =>
|
|
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(() =>
|
|
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
|
-
|
|
|
7344
|
+
| DataRagas$Outbound
|
|
7149
7345
|
| DataJSON$Outbound
|
|
7150
7346
|
| DataPython$Outbound
|
|
7151
7347
|
| DataFunction$Outbound
|
|
7152
|
-
|
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
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(() =>
|
|
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
|
-
|
|
|
7423
|
+
| DataRagas$Outbound
|
|
7228
7424
|
| DataJSON$Outbound
|
|
7229
7425
|
| DataPython$Outbound
|
|
7230
7426
|
| DataFunction$Outbound
|
|
7231
|
-
|
|
|
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(() =>
|
|
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(() =>
|
|
7447
|
+
z.lazy(() => DataTypescript$outboundSchema),
|
|
7252
7448
|
]),
|
|
7253
7449
|
),
|
|
7254
7450
|
hasMore: z.boolean(),
|