@orq-ai/node 3.12.0-rc.13 → 3.12.0-rc.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/bin/mcp-server.js +997 -112
  2. package/bin/mcp-server.js.map +32 -32
  3. package/docs/sdks/proxy/README.md +84 -0
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +2 -2
  7. package/lib/config.js +2 -2
  8. package/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/server.js +1 -1
  10. package/models/operations/createbudget.js +2 -2
  11. package/models/operations/createcontact.js +2 -2
  12. package/models/operations/createdataset.js +2 -2
  13. package/models/operations/createdatasetitem.js +2 -2
  14. package/models/operations/createdatasource.js +2 -2
  15. package/models/operations/createeval.js +16 -16
  16. package/models/operations/fileget.js +2 -2
  17. package/models/operations/filelist.js +2 -2
  18. package/models/operations/fileupload.js +2 -2
  19. package/models/operations/getbudget.js +2 -2
  20. package/models/operations/getevals.js +28 -28
  21. package/models/operations/listbudgets.js +2 -2
  22. package/models/operations/listcontacts.js +2 -2
  23. package/models/operations/listdatasetdatapoints.js +2 -2
  24. package/models/operations/listdatasets.js +2 -2
  25. package/models/operations/listdatasources.js +2 -2
  26. package/models/operations/postv2proxycompletions.d.ts +1899 -0
  27. package/models/operations/postv2proxycompletions.d.ts.map +1 -1
  28. package/models/operations/postv2proxycompletions.js +1902 -2
  29. package/models/operations/postv2proxycompletions.js.map +1 -1
  30. package/models/operations/retrievecontact.js +2 -2
  31. package/models/operations/retrievedatapoint.js +2 -2
  32. package/models/operations/retrievedataset.js +2 -2
  33. package/models/operations/retrievedatasource.js +2 -2
  34. package/models/operations/updatebudget.js +2 -2
  35. package/models/operations/updatecontact.js +2 -2
  36. package/models/operations/updatedatapoint.js +2 -2
  37. package/models/operations/updatedataset.js +2 -2
  38. package/models/operations/updatedatasource.js +2 -2
  39. package/models/operations/updateeval.js +16 -16
  40. package/package.json +1 -1
  41. package/src/lib/config.ts +2 -2
  42. package/src/mcp-server/mcp-server.ts +1 -1
  43. package/src/mcp-server/server.ts +1 -1
  44. package/src/models/operations/createbudget.ts +2 -2
  45. package/src/models/operations/createcontact.ts +2 -2
  46. package/src/models/operations/createdataset.ts +2 -2
  47. package/src/models/operations/createdatasetitem.ts +2 -2
  48. package/src/models/operations/createdatasource.ts +2 -2
  49. package/src/models/operations/createeval.ts +16 -16
  50. package/src/models/operations/fileget.ts +2 -2
  51. package/src/models/operations/filelist.ts +2 -2
  52. package/src/models/operations/fileupload.ts +2 -2
  53. package/src/models/operations/getbudget.ts +2 -2
  54. package/src/models/operations/getevals.ts +28 -28
  55. package/src/models/operations/listbudgets.ts +2 -2
  56. package/src/models/operations/listcontacts.ts +2 -2
  57. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  58. package/src/models/operations/listdatasets.ts +2 -2
  59. package/src/models/operations/listdatasources.ts +2 -2
  60. package/src/models/operations/postv2proxycompletions.ts +4501 -246
  61. package/src/models/operations/retrievecontact.ts +2 -2
  62. package/src/models/operations/retrievedatapoint.ts +2 -2
  63. package/src/models/operations/retrievedataset.ts +2 -2
  64. package/src/models/operations/retrievedatasource.ts +2 -2
  65. package/src/models/operations/updatebudget.ts +2 -2
  66. package/src/models/operations/updatecontact.ts +2 -2
  67. package/src/models/operations/updatedatapoint.ts +2 -2
  68. package/src/models/operations/updatedataset.ts +2 -2
  69. package/src/models/operations/updatedatasource.ts +2 -2
  70. package/src/models/operations/updateeval.ts +16 -16
@@ -2,11 +2,469 @@ import * as z from "zod";
2
2
  import { EventStream } from "../../lib/event-streams.js";
3
3
  import { ClosedEnum } from "../../types/enums.js";
4
4
  import { Result as SafeParseResult } from "../../types/fp.js";
5
+ import * as components from "../components/index.js";
5
6
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
6
7
  /**
7
8
  * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
8
9
  */
9
10
  export type PostV2ProxyCompletionsStop = string | Array<string>;
11
+ /**
12
+ * Retry configuration for the request
13
+ */
14
+ export type PostV2ProxyCompletionsRetry = {
15
+ /**
16
+ * Number of retry attempts (1-5)
17
+ */
18
+ count?: number | undefined;
19
+ /**
20
+ * HTTP status codes that trigger retry logic
21
+ */
22
+ onCodes?: Array<number> | undefined;
23
+ };
24
+ export type PostV2ProxyCompletionsFallbacks = {
25
+ /**
26
+ * Fallback model identifier
27
+ */
28
+ model: string;
29
+ };
30
+ /**
31
+ * Version of the prompt to use (currently only "latest" supported)
32
+ */
33
+ export declare const PostV2ProxyCompletionsVersion: {
34
+ readonly Latest: "latest";
35
+ };
36
+ /**
37
+ * Version of the prompt to use (currently only "latest" supported)
38
+ */
39
+ export type PostV2ProxyCompletionsVersion = ClosedEnum<typeof PostV2ProxyCompletionsVersion>;
40
+ /**
41
+ * Prompt configuration for the request
42
+ */
43
+ export type PostV2ProxyCompletionsPrompt = {
44
+ /**
45
+ * Unique identifier of the prompt to use
46
+ */
47
+ id: string;
48
+ /**
49
+ * Version of the prompt to use (currently only "latest" supported)
50
+ */
51
+ version: PostV2ProxyCompletionsVersion;
52
+ };
53
+ /**
54
+ * Thread information to group related requests
55
+ */
56
+ export type PostV2ProxyCompletionsThread = {
57
+ /**
58
+ * Unique thread identifier to group related invocations.
59
+ */
60
+ id: string;
61
+ /**
62
+ * Optional tags to differentiate or categorize threads
63
+ */
64
+ tags?: Array<string> | undefined;
65
+ };
66
+ export declare const PostV2ProxyCompletionsType: {
67
+ readonly ExactMatch: "exact_match";
68
+ };
69
+ export type PostV2ProxyCompletionsType = ClosedEnum<typeof PostV2ProxyCompletionsType>;
70
+ /**
71
+ * Cache configuration for the request.
72
+ */
73
+ export type PostV2ProxyCompletionsCache = {
74
+ /**
75
+ * Time to live for cached responses in seconds. Maximum 259200 seconds (3 days).
76
+ */
77
+ ttl?: number | undefined;
78
+ type: PostV2ProxyCompletionsType;
79
+ };
80
+ /**
81
+ * The type of search to perform. If not provided, will default to the knowledge base configured `retrieval_type`
82
+ */
83
+ export declare const PostV2ProxyCompletionsSearchType: {
84
+ readonly VectorSearch: "vector_search";
85
+ readonly KeywordSearch: "keyword_search";
86
+ readonly HybridSearch: "hybrid_search";
87
+ };
88
+ /**
89
+ * The type of search to perform. If not provided, will default to the knowledge base configured `retrieval_type`
90
+ */
91
+ export type PostV2ProxyCompletionsSearchType = ClosedEnum<typeof PostV2ProxyCompletionsSearchType>;
92
+ /**
93
+ * Exists
94
+ */
95
+ export type PostV2ProxyCompletionsOrExists = {
96
+ exists: boolean;
97
+ };
98
+ export type PostV2ProxyCompletionsOrProxyNin = string | number | boolean;
99
+ /**
100
+ * Not in
101
+ */
102
+ export type PostV2ProxyCompletionsOrNin = {
103
+ nin: Array<string | number | boolean>;
104
+ };
105
+ export type PostV2ProxyCompletionsOrProxyIn = string | number | boolean;
106
+ /**
107
+ * In
108
+ */
109
+ export type PostV2ProxyCompletionsOrIn = {
110
+ in: Array<string | number | boolean>;
111
+ };
112
+ /**
113
+ * Less than or equal to
114
+ */
115
+ export type PostV2ProxyCompletionsOrLte = {
116
+ lte: number;
117
+ };
118
+ /**
119
+ * Less than
120
+ */
121
+ export type PostV2ProxyCompletionsOrLt = {
122
+ lt: number;
123
+ };
124
+ /**
125
+ * Greater than or equal to
126
+ */
127
+ export type PostV2ProxyCompletionsOrGte = {
128
+ gte: number;
129
+ };
130
+ export type PostV2ProxyCompletionsOr3 = {
131
+ gt: number;
132
+ };
133
+ export type PostV2ProxyCompletionsOrProxyNe = string | number | boolean;
134
+ /**
135
+ * Not equal to
136
+ */
137
+ export type PostV2ProxyCompletionsOrNe = {
138
+ ne: string | number | boolean;
139
+ };
140
+ export type PostV2ProxyCompletionsOrProxyEq = string | number | boolean;
141
+ /**
142
+ * Equal to
143
+ */
144
+ export type PostV2ProxyCompletionsOrEq = {
145
+ eq: string | number | boolean;
146
+ };
147
+ export type PostV2ProxyCompletionsFilterByProxyOr = PostV2ProxyCompletionsOrEq | PostV2ProxyCompletionsOrNe | PostV2ProxyCompletionsOr3 | PostV2ProxyCompletionsOrGte | PostV2ProxyCompletionsOrLt | PostV2ProxyCompletionsOrLte | PostV2ProxyCompletionsOrIn | PostV2ProxyCompletionsOrNin | PostV2ProxyCompletionsOrExists;
148
+ /**
149
+ * Or
150
+ */
151
+ export type PostV2ProxyCompletionsFilterByOr = {
152
+ or: Array<{
153
+ [k: string]: PostV2ProxyCompletionsOrEq | PostV2ProxyCompletionsOrNe | PostV2ProxyCompletionsOr3 | PostV2ProxyCompletionsOrGte | PostV2ProxyCompletionsOrLt | PostV2ProxyCompletionsOrLte | PostV2ProxyCompletionsOrIn | PostV2ProxyCompletionsOrNin | PostV2ProxyCompletionsOrExists;
154
+ }>;
155
+ };
156
+ /**
157
+ * Exists
158
+ */
159
+ export type PostV2ProxyCompletionsAndExists = {
160
+ exists: boolean;
161
+ };
162
+ export type PostV2ProxyCompletionsAndProxyNin = string | number | boolean;
163
+ /**
164
+ * Not in
165
+ */
166
+ export type PostV2ProxyCompletionsAndNin = {
167
+ nin: Array<string | number | boolean>;
168
+ };
169
+ export type PostV2ProxyCompletionsAndProxyIn = string | number | boolean;
170
+ /**
171
+ * In
172
+ */
173
+ export type PostV2ProxyCompletionsAndIn = {
174
+ in: Array<string | number | boolean>;
175
+ };
176
+ /**
177
+ * Less than or equal to
178
+ */
179
+ export type PostV2ProxyCompletionsAndLte = {
180
+ lte: number;
181
+ };
182
+ /**
183
+ * Less than
184
+ */
185
+ export type PostV2ProxyCompletionsAndLt = {
186
+ lt: number;
187
+ };
188
+ /**
189
+ * Greater than or equal to
190
+ */
191
+ export type PostV2ProxyCompletionsAndGte = {
192
+ gte: number;
193
+ };
194
+ export type PostV2ProxyCompletionsAnd3 = {
195
+ gt: number;
196
+ };
197
+ export type PostV2ProxyCompletionsAndProxyNe = string | number | boolean;
198
+ /**
199
+ * Not equal to
200
+ */
201
+ export type PostV2ProxyCompletionsAndNe = {
202
+ ne: string | number | boolean;
203
+ };
204
+ export type PostV2ProxyCompletionsAndProxyEq = string | number | boolean;
205
+ /**
206
+ * Equal to
207
+ */
208
+ export type PostV2ProxyCompletionsAndEq = {
209
+ eq: string | number | boolean;
210
+ };
211
+ export type PostV2ProxyCompletionsFilterByProxyAnd = PostV2ProxyCompletionsAndEq | PostV2ProxyCompletionsAndNe | PostV2ProxyCompletionsAnd3 | PostV2ProxyCompletionsAndGte | PostV2ProxyCompletionsAndLt | PostV2ProxyCompletionsAndLte | PostV2ProxyCompletionsAndIn | PostV2ProxyCompletionsAndNin | PostV2ProxyCompletionsAndExists;
212
+ /**
213
+ * And
214
+ */
215
+ export type PostV2ProxyCompletionsFilterByAnd = {
216
+ and: Array<{
217
+ [k: string]: PostV2ProxyCompletionsAndEq | PostV2ProxyCompletionsAndNe | PostV2ProxyCompletionsAnd3 | PostV2ProxyCompletionsAndGte | PostV2ProxyCompletionsAndLt | PostV2ProxyCompletionsAndLte | PostV2ProxyCompletionsAndIn | PostV2ProxyCompletionsAndNin | PostV2ProxyCompletionsAndExists;
218
+ }>;
219
+ };
220
+ /**
221
+ * Exists
222
+ */
223
+ export type PostV2ProxyCompletions1Exists = {
224
+ exists: boolean;
225
+ };
226
+ export type PostV2ProxyCompletions1ProxyNin = string | number | boolean;
227
+ /**
228
+ * Not in
229
+ */
230
+ export type PostV2ProxyCompletions1Nin = {
231
+ nin: Array<string | number | boolean>;
232
+ };
233
+ export type PostV2ProxyCompletions1ProxyIn = string | number | boolean;
234
+ /**
235
+ * In
236
+ */
237
+ export type PostV2ProxyCompletions1In = {
238
+ in: Array<string | number | boolean>;
239
+ };
240
+ /**
241
+ * Less than or equal to
242
+ */
243
+ export type PostV2ProxyCompletions1Lte = {
244
+ lte: number;
245
+ };
246
+ /**
247
+ * Less than
248
+ */
249
+ export type PostV2ProxyCompletions1Lt = {
250
+ lt: number;
251
+ };
252
+ /**
253
+ * Greater than or equal to
254
+ */
255
+ export type PostV2ProxyCompletions1Gte = {
256
+ gte: number;
257
+ };
258
+ export type PostV2ProxyCompletions13 = {
259
+ gt: number;
260
+ };
261
+ export type PostV2ProxyCompletions1ProxyNe = string | number | boolean;
262
+ /**
263
+ * Not equal to
264
+ */
265
+ export type PostV2ProxyCompletions1Ne = {
266
+ ne: string | number | boolean;
267
+ };
268
+ export type PostV2ProxyCompletions1ProxyEq = string | number | boolean;
269
+ /**
270
+ * Equal to
271
+ */
272
+ export type PostV2ProxyCompletions1Eq = {
273
+ eq: string | number | boolean;
274
+ };
275
+ export type PostV2ProxyCompletionsFilterBy1 = PostV2ProxyCompletions1Eq | PostV2ProxyCompletions1Ne | PostV2ProxyCompletions13 | PostV2ProxyCompletions1Gte | PostV2ProxyCompletions1Lt | PostV2ProxyCompletions1Lte | PostV2ProxyCompletions1In | PostV2ProxyCompletions1Nin | PostV2ProxyCompletions1Exists;
276
+ /**
277
+ * The metadata filter to apply to the search. Check the [Searching a Knowledge Base](https://dash.readme.com/project/orqai/v2.0/docs/searching-a-knowledge-base) for more information.
278
+ */
279
+ export type PostV2ProxyCompletionsFilterBy = PostV2ProxyCompletionsFilterByAnd | PostV2ProxyCompletionsFilterByOr | {
280
+ [k: string]: PostV2ProxyCompletions1Eq | PostV2ProxyCompletions1Ne | PostV2ProxyCompletions13 | PostV2ProxyCompletions1Gte | PostV2ProxyCompletions1Lt | PostV2ProxyCompletions1Lte | PostV2ProxyCompletions1In | PostV2ProxyCompletions1Nin | PostV2ProxyCompletions1Exists;
281
+ };
282
+ /**
283
+ * Additional search options
284
+ */
285
+ export type PostV2ProxyCompletionsSearchOptions = {
286
+ /**
287
+ * Whether to include the vector in the chunk
288
+ */
289
+ includeVectors?: boolean | undefined;
290
+ /**
291
+ * Whether to include the metadata in the chunk
292
+ */
293
+ includeMetadata?: boolean | undefined;
294
+ /**
295
+ * Whether to include the scores in the chunk
296
+ */
297
+ includeScores?: boolean | undefined;
298
+ };
299
+ export declare const PostV2ProxyCompletionsProvider: {
300
+ readonly Cohere: "cohere";
301
+ readonly Openai: "openai";
302
+ readonly Anthropic: "anthropic";
303
+ readonly Huggingface: "huggingface";
304
+ readonly Replicate: "replicate";
305
+ readonly Google: "google";
306
+ readonly GoogleAi: "google-ai";
307
+ readonly Azure: "azure";
308
+ readonly Aws: "aws";
309
+ readonly Anyscale: "anyscale";
310
+ readonly Perplexity: "perplexity";
311
+ readonly Groq: "groq";
312
+ readonly Fal: "fal";
313
+ readonly Leonardoai: "leonardoai";
314
+ readonly Nvidia: "nvidia";
315
+ readonly Jina: "jina";
316
+ readonly Togetherai: "togetherai";
317
+ readonly Elevenlabs: "elevenlabs";
318
+ readonly Litellm: "litellm";
319
+ readonly Openailike: "openailike";
320
+ readonly Cerebras: "cerebras";
321
+ readonly Bytedance: "bytedance";
322
+ };
323
+ export type PostV2ProxyCompletionsProvider = ClosedEnum<typeof PostV2ProxyCompletionsProvider>;
324
+ export declare const PostV2ProxyCompletionsModelType: {
325
+ readonly Rerank: "rerank";
326
+ };
327
+ export type PostV2ProxyCompletionsModelType = ClosedEnum<typeof PostV2ProxyCompletionsModelType>;
328
+ export type PostV2ProxyCompletionsModelParameters = {
329
+ /**
330
+ * The threshold value used to filter the rerank results, only documents with a relevance score greater than the threshold will be returned
331
+ */
332
+ threshold?: number | undefined;
333
+ };
334
+ /**
335
+ * Override the rerank configuration for this search. If not provided, will use the knowledge base configured rerank settings.
336
+ */
337
+ export type PostV2ProxyCompletionsRerankConfig = {
338
+ enabled?: boolean | undefined;
339
+ provider?: PostV2ProxyCompletionsProvider | undefined;
340
+ /**
341
+ * The number of results to return by the reranking model
342
+ */
343
+ topK?: number | undefined;
344
+ /**
345
+ * The name of the model to use
346
+ */
347
+ model?: string | undefined;
348
+ /**
349
+ * The ID of the model in the database
350
+ */
351
+ modelDbId?: string | undefined;
352
+ modelType?: PostV2ProxyCompletionsModelType | undefined;
353
+ modelParameters?: PostV2ProxyCompletionsModelParameters | undefined;
354
+ };
355
+ export declare const PostV2ProxyCompletionsProxyProvider: {
356
+ readonly Cohere: "cohere";
357
+ readonly Openai: "openai";
358
+ readonly Anthropic: "anthropic";
359
+ readonly Huggingface: "huggingface";
360
+ readonly Replicate: "replicate";
361
+ readonly Google: "google";
362
+ readonly GoogleAi: "google-ai";
363
+ readonly Azure: "azure";
364
+ readonly Aws: "aws";
365
+ readonly Anyscale: "anyscale";
366
+ readonly Perplexity: "perplexity";
367
+ readonly Groq: "groq";
368
+ readonly Fal: "fal";
369
+ readonly Leonardoai: "leonardoai";
370
+ readonly Nvidia: "nvidia";
371
+ readonly Jina: "jina";
372
+ readonly Togetherai: "togetherai";
373
+ readonly Elevenlabs: "elevenlabs";
374
+ readonly Litellm: "litellm";
375
+ readonly Openailike: "openailike";
376
+ readonly Cerebras: "cerebras";
377
+ readonly Bytedance: "bytedance";
378
+ };
379
+ export type PostV2ProxyCompletionsProxyProvider = ClosedEnum<typeof PostV2ProxyCompletionsProxyProvider>;
380
+ /**
381
+ * Override the agentic RAG configuration for this search. If not provided, will use the knowledge base configured agentic RAG settings.
382
+ */
383
+ export type PostV2ProxyCompletionsAgenticRagConfig = {
384
+ modelDbId: string;
385
+ provider: PostV2ProxyCompletionsProxyProvider;
386
+ integrationId?: string | null | undefined;
387
+ };
388
+ export type PostV2ProxyCompletionsKnowledgeBases = {
389
+ /**
390
+ * The number of results to return. If not provided, will default to the knowledge base configured `top_k`.
391
+ */
392
+ topK?: number | undefined;
393
+ /**
394
+ * The threshold to apply to the search. If not provided, will default to the knowledge base configured `threshold`
395
+ */
396
+ threshold?: number | undefined;
397
+ /**
398
+ * The type of search to perform. If not provided, will default to the knowledge base configured `retrieval_type`
399
+ */
400
+ searchType?: PostV2ProxyCompletionsSearchType | undefined;
401
+ /**
402
+ * The metadata filter to apply to the search. Check the [Searching a Knowledge Base](https://dash.readme.com/project/orqai/v2.0/docs/searching-a-knowledge-base) for more information.
403
+ */
404
+ filterBy?: PostV2ProxyCompletionsFilterByAnd | PostV2ProxyCompletionsFilterByOr | {
405
+ [k: string]: PostV2ProxyCompletions1Eq | PostV2ProxyCompletions1Ne | PostV2ProxyCompletions13 | PostV2ProxyCompletions1Gte | PostV2ProxyCompletions1Lt | PostV2ProxyCompletions1Lte | PostV2ProxyCompletions1In | PostV2ProxyCompletions1Nin | PostV2ProxyCompletions1Exists;
406
+ } | undefined;
407
+ /**
408
+ * Additional search options
409
+ */
410
+ searchOptions?: PostV2ProxyCompletionsSearchOptions | undefined;
411
+ /**
412
+ * Override the rerank configuration for this search. If not provided, will use the knowledge base configured rerank settings.
413
+ */
414
+ rerankConfig?: PostV2ProxyCompletionsRerankConfig | null | undefined;
415
+ /**
416
+ * Override the agentic RAG configuration for this search. If not provided, will use the knowledge base configured agentic RAG settings.
417
+ */
418
+ agenticRagConfig?: PostV2ProxyCompletionsAgenticRagConfig | undefined;
419
+ /**
420
+ * Unique identifier of the knowledge base to search
421
+ */
422
+ knowledgeId: string;
423
+ /**
424
+ * The query to use to search the knowledge base. If not provided we will use the last user message from the messages of the requests
425
+ */
426
+ query?: string | undefined;
427
+ };
428
+ /**
429
+ * Leverage Orq's intelligent routing capabilities to enhance your AI application with enterprise-grade reliability and observability. Orq provides automatic request management including retries on failures, model fallbacks for high availability, contact-level analytics tracking, conversation threading, and dynamic prompt templating with variable substitution.
430
+ */
431
+ export type PostV2ProxyCompletionsOrq = {
432
+ /**
433
+ * The name to display on the trace. If not specified, the default system name will be used.
434
+ */
435
+ name?: string | undefined;
436
+ /**
437
+ * Retry configuration for the request
438
+ */
439
+ retry?: PostV2ProxyCompletionsRetry | undefined;
440
+ /**
441
+ * Array of fallback models to use if primary model fails
442
+ */
443
+ fallbacks?: Array<PostV2ProxyCompletionsFallbacks> | undefined;
444
+ /**
445
+ * Prompt configuration for the request
446
+ */
447
+ prompt?: PostV2ProxyCompletionsPrompt | undefined;
448
+ /**
449
+ * Information about the contact making the request. If the contact does not exist, it will be created automatically.
450
+ */
451
+ contact?: components.PublicContact | undefined;
452
+ /**
453
+ * Thread information to group related requests
454
+ */
455
+ thread?: PostV2ProxyCompletionsThread | undefined;
456
+ /**
457
+ * Values to replace in the prompt messages using {{"{{"}}variableName}} syntax
458
+ */
459
+ inputs?: {
460
+ [k: string]: any;
461
+ } | undefined;
462
+ /**
463
+ * Cache configuration for the request.
464
+ */
465
+ cache?: PostV2ProxyCompletionsCache | undefined;
466
+ knowledgeBases?: Array<PostV2ProxyCompletionsKnowledgeBases> | undefined;
467
+ };
10
468
  export type PostV2ProxyCompletionsRequestBody = {
11
469
  /**
12
470
  * ID of the model to use
@@ -52,6 +510,10 @@ export type PostV2ProxyCompletionsRequestBody = {
52
510
  * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
53
511
  */
54
512
  user?: string | undefined;
513
+ /**
514
+ * Leverage Orq's intelligent routing capabilities to enhance your AI application with enterprise-grade reliability and observability. Orq provides automatic request management including retries on failures, model fallbacks for high availability, contact-level analytics tracking, conversation threading, and dynamic prompt templating with variable substitution.
515
+ */
516
+ orq?: PostV2ProxyCompletionsOrq | undefined;
55
517
  stream?: boolean | undefined;
56
518
  };
57
519
  /**
@@ -271,6 +733,1442 @@ export declare namespace PostV2ProxyCompletionsStop$ {
271
733
  export declare function postV2ProxyCompletionsStopToJSON(postV2ProxyCompletionsStop: PostV2ProxyCompletionsStop): string;
272
734
  export declare function postV2ProxyCompletionsStopFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsStop, SDKValidationError>;
273
735
  /** @internal */
736
+ export declare const PostV2ProxyCompletionsRetry$inboundSchema: z.ZodType<PostV2ProxyCompletionsRetry, z.ZodTypeDef, unknown>;
737
+ /** @internal */
738
+ export type PostV2ProxyCompletionsRetry$Outbound = {
739
+ count: number;
740
+ on_codes?: Array<number> | undefined;
741
+ };
742
+ /** @internal */
743
+ export declare const PostV2ProxyCompletionsRetry$outboundSchema: z.ZodType<PostV2ProxyCompletionsRetry$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsRetry>;
744
+ /**
745
+ * @internal
746
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
747
+ */
748
+ export declare namespace PostV2ProxyCompletionsRetry$ {
749
+ /** @deprecated use `PostV2ProxyCompletionsRetry$inboundSchema` instead. */
750
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsRetry, z.ZodTypeDef, unknown>;
751
+ /** @deprecated use `PostV2ProxyCompletionsRetry$outboundSchema` instead. */
752
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsRetry$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsRetry>;
753
+ /** @deprecated use `PostV2ProxyCompletionsRetry$Outbound` instead. */
754
+ type Outbound = PostV2ProxyCompletionsRetry$Outbound;
755
+ }
756
+ export declare function postV2ProxyCompletionsRetryToJSON(postV2ProxyCompletionsRetry: PostV2ProxyCompletionsRetry): string;
757
+ export declare function postV2ProxyCompletionsRetryFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsRetry, SDKValidationError>;
758
+ /** @internal */
759
+ export declare const PostV2ProxyCompletionsFallbacks$inboundSchema: z.ZodType<PostV2ProxyCompletionsFallbacks, z.ZodTypeDef, unknown>;
760
+ /** @internal */
761
+ export type PostV2ProxyCompletionsFallbacks$Outbound = {
762
+ model: string;
763
+ };
764
+ /** @internal */
765
+ export declare const PostV2ProxyCompletionsFallbacks$outboundSchema: z.ZodType<PostV2ProxyCompletionsFallbacks$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFallbacks>;
766
+ /**
767
+ * @internal
768
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
769
+ */
770
+ export declare namespace PostV2ProxyCompletionsFallbacks$ {
771
+ /** @deprecated use `PostV2ProxyCompletionsFallbacks$inboundSchema` instead. */
772
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFallbacks, z.ZodTypeDef, unknown>;
773
+ /** @deprecated use `PostV2ProxyCompletionsFallbacks$outboundSchema` instead. */
774
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFallbacks$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFallbacks>;
775
+ /** @deprecated use `PostV2ProxyCompletionsFallbacks$Outbound` instead. */
776
+ type Outbound = PostV2ProxyCompletionsFallbacks$Outbound;
777
+ }
778
+ export declare function postV2ProxyCompletionsFallbacksToJSON(postV2ProxyCompletionsFallbacks: PostV2ProxyCompletionsFallbacks): string;
779
+ export declare function postV2ProxyCompletionsFallbacksFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFallbacks, SDKValidationError>;
780
+ /** @internal */
781
+ export declare const PostV2ProxyCompletionsVersion$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsVersion>;
782
+ /** @internal */
783
+ export declare const PostV2ProxyCompletionsVersion$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsVersion>;
784
+ /**
785
+ * @internal
786
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
787
+ */
788
+ export declare namespace PostV2ProxyCompletionsVersion$ {
789
+ /** @deprecated use `PostV2ProxyCompletionsVersion$inboundSchema` instead. */
790
+ const inboundSchema: z.ZodNativeEnum<{
791
+ readonly Latest: "latest";
792
+ }>;
793
+ /** @deprecated use `PostV2ProxyCompletionsVersion$outboundSchema` instead. */
794
+ const outboundSchema: z.ZodNativeEnum<{
795
+ readonly Latest: "latest";
796
+ }>;
797
+ }
798
+ /** @internal */
799
+ export declare const PostV2ProxyCompletionsPrompt$inboundSchema: z.ZodType<PostV2ProxyCompletionsPrompt, z.ZodTypeDef, unknown>;
800
+ /** @internal */
801
+ export type PostV2ProxyCompletionsPrompt$Outbound = {
802
+ id: string;
803
+ version: string;
804
+ };
805
+ /** @internal */
806
+ export declare const PostV2ProxyCompletionsPrompt$outboundSchema: z.ZodType<PostV2ProxyCompletionsPrompt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsPrompt>;
807
+ /**
808
+ * @internal
809
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
810
+ */
811
+ export declare namespace PostV2ProxyCompletionsPrompt$ {
812
+ /** @deprecated use `PostV2ProxyCompletionsPrompt$inboundSchema` instead. */
813
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsPrompt, z.ZodTypeDef, unknown>;
814
+ /** @deprecated use `PostV2ProxyCompletionsPrompt$outboundSchema` instead. */
815
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsPrompt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsPrompt>;
816
+ /** @deprecated use `PostV2ProxyCompletionsPrompt$Outbound` instead. */
817
+ type Outbound = PostV2ProxyCompletionsPrompt$Outbound;
818
+ }
819
+ export declare function postV2ProxyCompletionsPromptToJSON(postV2ProxyCompletionsPrompt: PostV2ProxyCompletionsPrompt): string;
820
+ export declare function postV2ProxyCompletionsPromptFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsPrompt, SDKValidationError>;
821
+ /** @internal */
822
+ export declare const PostV2ProxyCompletionsThread$inboundSchema: z.ZodType<PostV2ProxyCompletionsThread, z.ZodTypeDef, unknown>;
823
+ /** @internal */
824
+ export type PostV2ProxyCompletionsThread$Outbound = {
825
+ id: string;
826
+ tags?: Array<string> | undefined;
827
+ };
828
+ /** @internal */
829
+ export declare const PostV2ProxyCompletionsThread$outboundSchema: z.ZodType<PostV2ProxyCompletionsThread$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsThread>;
830
+ /**
831
+ * @internal
832
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
833
+ */
834
+ export declare namespace PostV2ProxyCompletionsThread$ {
835
+ /** @deprecated use `PostV2ProxyCompletionsThread$inboundSchema` instead. */
836
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsThread, z.ZodTypeDef, unknown>;
837
+ /** @deprecated use `PostV2ProxyCompletionsThread$outboundSchema` instead. */
838
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsThread$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsThread>;
839
+ /** @deprecated use `PostV2ProxyCompletionsThread$Outbound` instead. */
840
+ type Outbound = PostV2ProxyCompletionsThread$Outbound;
841
+ }
842
+ export declare function postV2ProxyCompletionsThreadToJSON(postV2ProxyCompletionsThread: PostV2ProxyCompletionsThread): string;
843
+ export declare function postV2ProxyCompletionsThreadFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsThread, SDKValidationError>;
844
+ /** @internal */
845
+ export declare const PostV2ProxyCompletionsType$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsType>;
846
+ /** @internal */
847
+ export declare const PostV2ProxyCompletionsType$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsType>;
848
+ /**
849
+ * @internal
850
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
851
+ */
852
+ export declare namespace PostV2ProxyCompletionsType$ {
853
+ /** @deprecated use `PostV2ProxyCompletionsType$inboundSchema` instead. */
854
+ const inboundSchema: z.ZodNativeEnum<{
855
+ readonly ExactMatch: "exact_match";
856
+ }>;
857
+ /** @deprecated use `PostV2ProxyCompletionsType$outboundSchema` instead. */
858
+ const outboundSchema: z.ZodNativeEnum<{
859
+ readonly ExactMatch: "exact_match";
860
+ }>;
861
+ }
862
+ /** @internal */
863
+ export declare const PostV2ProxyCompletionsCache$inboundSchema: z.ZodType<PostV2ProxyCompletionsCache, z.ZodTypeDef, unknown>;
864
+ /** @internal */
865
+ export type PostV2ProxyCompletionsCache$Outbound = {
866
+ ttl: number;
867
+ type: string;
868
+ };
869
+ /** @internal */
870
+ export declare const PostV2ProxyCompletionsCache$outboundSchema: z.ZodType<PostV2ProxyCompletionsCache$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsCache>;
871
+ /**
872
+ * @internal
873
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
874
+ */
875
+ export declare namespace PostV2ProxyCompletionsCache$ {
876
+ /** @deprecated use `PostV2ProxyCompletionsCache$inboundSchema` instead. */
877
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsCache, z.ZodTypeDef, unknown>;
878
+ /** @deprecated use `PostV2ProxyCompletionsCache$outboundSchema` instead. */
879
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsCache$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsCache>;
880
+ /** @deprecated use `PostV2ProxyCompletionsCache$Outbound` instead. */
881
+ type Outbound = PostV2ProxyCompletionsCache$Outbound;
882
+ }
883
+ export declare function postV2ProxyCompletionsCacheToJSON(postV2ProxyCompletionsCache: PostV2ProxyCompletionsCache): string;
884
+ export declare function postV2ProxyCompletionsCacheFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsCache, SDKValidationError>;
885
+ /** @internal */
886
+ export declare const PostV2ProxyCompletionsSearchType$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsSearchType>;
887
+ /** @internal */
888
+ export declare const PostV2ProxyCompletionsSearchType$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsSearchType>;
889
+ /**
890
+ * @internal
891
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
892
+ */
893
+ export declare namespace PostV2ProxyCompletionsSearchType$ {
894
+ /** @deprecated use `PostV2ProxyCompletionsSearchType$inboundSchema` instead. */
895
+ const inboundSchema: z.ZodNativeEnum<{
896
+ readonly VectorSearch: "vector_search";
897
+ readonly KeywordSearch: "keyword_search";
898
+ readonly HybridSearch: "hybrid_search";
899
+ }>;
900
+ /** @deprecated use `PostV2ProxyCompletionsSearchType$outboundSchema` instead. */
901
+ const outboundSchema: z.ZodNativeEnum<{
902
+ readonly VectorSearch: "vector_search";
903
+ readonly KeywordSearch: "keyword_search";
904
+ readonly HybridSearch: "hybrid_search";
905
+ }>;
906
+ }
907
+ /** @internal */
908
+ export declare const PostV2ProxyCompletionsOrExists$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrExists, z.ZodTypeDef, unknown>;
909
+ /** @internal */
910
+ export type PostV2ProxyCompletionsOrExists$Outbound = {
911
+ exists: boolean;
912
+ };
913
+ /** @internal */
914
+ export declare const PostV2ProxyCompletionsOrExists$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrExists$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrExists>;
915
+ /**
916
+ * @internal
917
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
918
+ */
919
+ export declare namespace PostV2ProxyCompletionsOrExists$ {
920
+ /** @deprecated use `PostV2ProxyCompletionsOrExists$inboundSchema` instead. */
921
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrExists, z.ZodTypeDef, unknown>;
922
+ /** @deprecated use `PostV2ProxyCompletionsOrExists$outboundSchema` instead. */
923
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrExists$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrExists>;
924
+ /** @deprecated use `PostV2ProxyCompletionsOrExists$Outbound` instead. */
925
+ type Outbound = PostV2ProxyCompletionsOrExists$Outbound;
926
+ }
927
+ export declare function postV2ProxyCompletionsOrExistsToJSON(postV2ProxyCompletionsOrExists: PostV2ProxyCompletionsOrExists): string;
928
+ export declare function postV2ProxyCompletionsOrExistsFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrExists, SDKValidationError>;
929
+ /** @internal */
930
+ export declare const PostV2ProxyCompletionsOrProxyNin$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNin, z.ZodTypeDef, unknown>;
931
+ /** @internal */
932
+ export type PostV2ProxyCompletionsOrProxyNin$Outbound = string | number | boolean;
933
+ /** @internal */
934
+ export declare const PostV2ProxyCompletionsOrProxyNin$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyNin>;
935
+ /**
936
+ * @internal
937
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
938
+ */
939
+ export declare namespace PostV2ProxyCompletionsOrProxyNin$ {
940
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNin$inboundSchema` instead. */
941
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNin, z.ZodTypeDef, unknown>;
942
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNin$outboundSchema` instead. */
943
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyNin>;
944
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNin$Outbound` instead. */
945
+ type Outbound = PostV2ProxyCompletionsOrProxyNin$Outbound;
946
+ }
947
+ export declare function postV2ProxyCompletionsOrProxyNinToJSON(postV2ProxyCompletionsOrProxyNin: PostV2ProxyCompletionsOrProxyNin): string;
948
+ export declare function postV2ProxyCompletionsOrProxyNinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrProxyNin, SDKValidationError>;
949
+ /** @internal */
950
+ export declare const PostV2ProxyCompletionsOrNin$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrNin, z.ZodTypeDef, unknown>;
951
+ /** @internal */
952
+ export type PostV2ProxyCompletionsOrNin$Outbound = {
953
+ nin: Array<string | number | boolean>;
954
+ };
955
+ /** @internal */
956
+ export declare const PostV2ProxyCompletionsOrNin$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrNin>;
957
+ /**
958
+ * @internal
959
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
960
+ */
961
+ export declare namespace PostV2ProxyCompletionsOrNin$ {
962
+ /** @deprecated use `PostV2ProxyCompletionsOrNin$inboundSchema` instead. */
963
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrNin, z.ZodTypeDef, unknown>;
964
+ /** @deprecated use `PostV2ProxyCompletionsOrNin$outboundSchema` instead. */
965
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrNin>;
966
+ /** @deprecated use `PostV2ProxyCompletionsOrNin$Outbound` instead. */
967
+ type Outbound = PostV2ProxyCompletionsOrNin$Outbound;
968
+ }
969
+ export declare function postV2ProxyCompletionsOrNinToJSON(postV2ProxyCompletionsOrNin: PostV2ProxyCompletionsOrNin): string;
970
+ export declare function postV2ProxyCompletionsOrNinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrNin, SDKValidationError>;
971
+ /** @internal */
972
+ export declare const PostV2ProxyCompletionsOrProxyIn$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyIn, z.ZodTypeDef, unknown>;
973
+ /** @internal */
974
+ export type PostV2ProxyCompletionsOrProxyIn$Outbound = string | number | boolean;
975
+ /** @internal */
976
+ export declare const PostV2ProxyCompletionsOrProxyIn$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyIn>;
977
+ /**
978
+ * @internal
979
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
980
+ */
981
+ export declare namespace PostV2ProxyCompletionsOrProxyIn$ {
982
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyIn$inboundSchema` instead. */
983
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyIn, z.ZodTypeDef, unknown>;
984
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyIn$outboundSchema` instead. */
985
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyIn>;
986
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyIn$Outbound` instead. */
987
+ type Outbound = PostV2ProxyCompletionsOrProxyIn$Outbound;
988
+ }
989
+ export declare function postV2ProxyCompletionsOrProxyInToJSON(postV2ProxyCompletionsOrProxyIn: PostV2ProxyCompletionsOrProxyIn): string;
990
+ export declare function postV2ProxyCompletionsOrProxyInFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrProxyIn, SDKValidationError>;
991
+ /** @internal */
992
+ export declare const PostV2ProxyCompletionsOrIn$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrIn, z.ZodTypeDef, unknown>;
993
+ /** @internal */
994
+ export type PostV2ProxyCompletionsOrIn$Outbound = {
995
+ in: Array<string | number | boolean>;
996
+ };
997
+ /** @internal */
998
+ export declare const PostV2ProxyCompletionsOrIn$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrIn>;
999
+ /**
1000
+ * @internal
1001
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1002
+ */
1003
+ export declare namespace PostV2ProxyCompletionsOrIn$ {
1004
+ /** @deprecated use `PostV2ProxyCompletionsOrIn$inboundSchema` instead. */
1005
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrIn, z.ZodTypeDef, unknown>;
1006
+ /** @deprecated use `PostV2ProxyCompletionsOrIn$outboundSchema` instead. */
1007
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrIn>;
1008
+ /** @deprecated use `PostV2ProxyCompletionsOrIn$Outbound` instead. */
1009
+ type Outbound = PostV2ProxyCompletionsOrIn$Outbound;
1010
+ }
1011
+ export declare function postV2ProxyCompletionsOrInToJSON(postV2ProxyCompletionsOrIn: PostV2ProxyCompletionsOrIn): string;
1012
+ export declare function postV2ProxyCompletionsOrInFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrIn, SDKValidationError>;
1013
+ /** @internal */
1014
+ export declare const PostV2ProxyCompletionsOrLte$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrLte, z.ZodTypeDef, unknown>;
1015
+ /** @internal */
1016
+ export type PostV2ProxyCompletionsOrLte$Outbound = {
1017
+ lte: number;
1018
+ };
1019
+ /** @internal */
1020
+ export declare const PostV2ProxyCompletionsOrLte$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrLte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrLte>;
1021
+ /**
1022
+ * @internal
1023
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1024
+ */
1025
+ export declare namespace PostV2ProxyCompletionsOrLte$ {
1026
+ /** @deprecated use `PostV2ProxyCompletionsOrLte$inboundSchema` instead. */
1027
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrLte, z.ZodTypeDef, unknown>;
1028
+ /** @deprecated use `PostV2ProxyCompletionsOrLte$outboundSchema` instead. */
1029
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrLte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrLte>;
1030
+ /** @deprecated use `PostV2ProxyCompletionsOrLte$Outbound` instead. */
1031
+ type Outbound = PostV2ProxyCompletionsOrLte$Outbound;
1032
+ }
1033
+ export declare function postV2ProxyCompletionsOrLteToJSON(postV2ProxyCompletionsOrLte: PostV2ProxyCompletionsOrLte): string;
1034
+ export declare function postV2ProxyCompletionsOrLteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrLte, SDKValidationError>;
1035
+ /** @internal */
1036
+ export declare const PostV2ProxyCompletionsOrLt$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrLt, z.ZodTypeDef, unknown>;
1037
+ /** @internal */
1038
+ export type PostV2ProxyCompletionsOrLt$Outbound = {
1039
+ lt: number;
1040
+ };
1041
+ /** @internal */
1042
+ export declare const PostV2ProxyCompletionsOrLt$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrLt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrLt>;
1043
+ /**
1044
+ * @internal
1045
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1046
+ */
1047
+ export declare namespace PostV2ProxyCompletionsOrLt$ {
1048
+ /** @deprecated use `PostV2ProxyCompletionsOrLt$inboundSchema` instead. */
1049
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrLt, z.ZodTypeDef, unknown>;
1050
+ /** @deprecated use `PostV2ProxyCompletionsOrLt$outboundSchema` instead. */
1051
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrLt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrLt>;
1052
+ /** @deprecated use `PostV2ProxyCompletionsOrLt$Outbound` instead. */
1053
+ type Outbound = PostV2ProxyCompletionsOrLt$Outbound;
1054
+ }
1055
+ export declare function postV2ProxyCompletionsOrLtToJSON(postV2ProxyCompletionsOrLt: PostV2ProxyCompletionsOrLt): string;
1056
+ export declare function postV2ProxyCompletionsOrLtFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrLt, SDKValidationError>;
1057
+ /** @internal */
1058
+ export declare const PostV2ProxyCompletionsOrGte$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrGte, z.ZodTypeDef, unknown>;
1059
+ /** @internal */
1060
+ export type PostV2ProxyCompletionsOrGte$Outbound = {
1061
+ gte: number;
1062
+ };
1063
+ /** @internal */
1064
+ export declare const PostV2ProxyCompletionsOrGte$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrGte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrGte>;
1065
+ /**
1066
+ * @internal
1067
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1068
+ */
1069
+ export declare namespace PostV2ProxyCompletionsOrGte$ {
1070
+ /** @deprecated use `PostV2ProxyCompletionsOrGte$inboundSchema` instead. */
1071
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrGte, z.ZodTypeDef, unknown>;
1072
+ /** @deprecated use `PostV2ProxyCompletionsOrGte$outboundSchema` instead. */
1073
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrGte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrGte>;
1074
+ /** @deprecated use `PostV2ProxyCompletionsOrGte$Outbound` instead. */
1075
+ type Outbound = PostV2ProxyCompletionsOrGte$Outbound;
1076
+ }
1077
+ export declare function postV2ProxyCompletionsOrGteToJSON(postV2ProxyCompletionsOrGte: PostV2ProxyCompletionsOrGte): string;
1078
+ export declare function postV2ProxyCompletionsOrGteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrGte, SDKValidationError>;
1079
+ /** @internal */
1080
+ export declare const PostV2ProxyCompletionsOr3$inboundSchema: z.ZodType<PostV2ProxyCompletionsOr3, z.ZodTypeDef, unknown>;
1081
+ /** @internal */
1082
+ export type PostV2ProxyCompletionsOr3$Outbound = {
1083
+ gt: number;
1084
+ };
1085
+ /** @internal */
1086
+ export declare const PostV2ProxyCompletionsOr3$outboundSchema: z.ZodType<PostV2ProxyCompletionsOr3$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOr3>;
1087
+ /**
1088
+ * @internal
1089
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1090
+ */
1091
+ export declare namespace PostV2ProxyCompletionsOr3$ {
1092
+ /** @deprecated use `PostV2ProxyCompletionsOr3$inboundSchema` instead. */
1093
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOr3, z.ZodTypeDef, unknown>;
1094
+ /** @deprecated use `PostV2ProxyCompletionsOr3$outboundSchema` instead. */
1095
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOr3$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOr3>;
1096
+ /** @deprecated use `PostV2ProxyCompletionsOr3$Outbound` instead. */
1097
+ type Outbound = PostV2ProxyCompletionsOr3$Outbound;
1098
+ }
1099
+ export declare function postV2ProxyCompletionsOr3ToJSON(postV2ProxyCompletionsOr3: PostV2ProxyCompletionsOr3): string;
1100
+ export declare function postV2ProxyCompletionsOr3FromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOr3, SDKValidationError>;
1101
+ /** @internal */
1102
+ export declare const PostV2ProxyCompletionsOrProxyNe$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNe, z.ZodTypeDef, unknown>;
1103
+ /** @internal */
1104
+ export type PostV2ProxyCompletionsOrProxyNe$Outbound = string | number | boolean;
1105
+ /** @internal */
1106
+ export declare const PostV2ProxyCompletionsOrProxyNe$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyNe>;
1107
+ /**
1108
+ * @internal
1109
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1110
+ */
1111
+ export declare namespace PostV2ProxyCompletionsOrProxyNe$ {
1112
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNe$inboundSchema` instead. */
1113
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNe, z.ZodTypeDef, unknown>;
1114
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNe$outboundSchema` instead. */
1115
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyNe>;
1116
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyNe$Outbound` instead. */
1117
+ type Outbound = PostV2ProxyCompletionsOrProxyNe$Outbound;
1118
+ }
1119
+ export declare function postV2ProxyCompletionsOrProxyNeToJSON(postV2ProxyCompletionsOrProxyNe: PostV2ProxyCompletionsOrProxyNe): string;
1120
+ export declare function postV2ProxyCompletionsOrProxyNeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrProxyNe, SDKValidationError>;
1121
+ /** @internal */
1122
+ export declare const PostV2ProxyCompletionsOrNe$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrNe, z.ZodTypeDef, unknown>;
1123
+ /** @internal */
1124
+ export type PostV2ProxyCompletionsOrNe$Outbound = {
1125
+ ne: string | number | boolean;
1126
+ };
1127
+ /** @internal */
1128
+ export declare const PostV2ProxyCompletionsOrNe$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrNe>;
1129
+ /**
1130
+ * @internal
1131
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1132
+ */
1133
+ export declare namespace PostV2ProxyCompletionsOrNe$ {
1134
+ /** @deprecated use `PostV2ProxyCompletionsOrNe$inboundSchema` instead. */
1135
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrNe, z.ZodTypeDef, unknown>;
1136
+ /** @deprecated use `PostV2ProxyCompletionsOrNe$outboundSchema` instead. */
1137
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrNe>;
1138
+ /** @deprecated use `PostV2ProxyCompletionsOrNe$Outbound` instead. */
1139
+ type Outbound = PostV2ProxyCompletionsOrNe$Outbound;
1140
+ }
1141
+ export declare function postV2ProxyCompletionsOrNeToJSON(postV2ProxyCompletionsOrNe: PostV2ProxyCompletionsOrNe): string;
1142
+ export declare function postV2ProxyCompletionsOrNeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrNe, SDKValidationError>;
1143
+ /** @internal */
1144
+ export declare const PostV2ProxyCompletionsOrProxyEq$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyEq, z.ZodTypeDef, unknown>;
1145
+ /** @internal */
1146
+ export type PostV2ProxyCompletionsOrProxyEq$Outbound = string | number | boolean;
1147
+ /** @internal */
1148
+ export declare const PostV2ProxyCompletionsOrProxyEq$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyEq>;
1149
+ /**
1150
+ * @internal
1151
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1152
+ */
1153
+ export declare namespace PostV2ProxyCompletionsOrProxyEq$ {
1154
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyEq$inboundSchema` instead. */
1155
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyEq, z.ZodTypeDef, unknown>;
1156
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyEq$outboundSchema` instead. */
1157
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrProxyEq>;
1158
+ /** @deprecated use `PostV2ProxyCompletionsOrProxyEq$Outbound` instead. */
1159
+ type Outbound = PostV2ProxyCompletionsOrProxyEq$Outbound;
1160
+ }
1161
+ export declare function postV2ProxyCompletionsOrProxyEqToJSON(postV2ProxyCompletionsOrProxyEq: PostV2ProxyCompletionsOrProxyEq): string;
1162
+ export declare function postV2ProxyCompletionsOrProxyEqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrProxyEq, SDKValidationError>;
1163
+ /** @internal */
1164
+ export declare const PostV2ProxyCompletionsOrEq$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrEq, z.ZodTypeDef, unknown>;
1165
+ /** @internal */
1166
+ export type PostV2ProxyCompletionsOrEq$Outbound = {
1167
+ eq: string | number | boolean;
1168
+ };
1169
+ /** @internal */
1170
+ export declare const PostV2ProxyCompletionsOrEq$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrEq>;
1171
+ /**
1172
+ * @internal
1173
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1174
+ */
1175
+ export declare namespace PostV2ProxyCompletionsOrEq$ {
1176
+ /** @deprecated use `PostV2ProxyCompletionsOrEq$inboundSchema` instead. */
1177
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrEq, z.ZodTypeDef, unknown>;
1178
+ /** @deprecated use `PostV2ProxyCompletionsOrEq$outboundSchema` instead. */
1179
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrEq>;
1180
+ /** @deprecated use `PostV2ProxyCompletionsOrEq$Outbound` instead. */
1181
+ type Outbound = PostV2ProxyCompletionsOrEq$Outbound;
1182
+ }
1183
+ export declare function postV2ProxyCompletionsOrEqToJSON(postV2ProxyCompletionsOrEq: PostV2ProxyCompletionsOrEq): string;
1184
+ export declare function postV2ProxyCompletionsOrEqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrEq, SDKValidationError>;
1185
+ /** @internal */
1186
+ export declare const PostV2ProxyCompletionsFilterByProxyOr$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyOr, z.ZodTypeDef, unknown>;
1187
+ /** @internal */
1188
+ export type PostV2ProxyCompletionsFilterByProxyOr$Outbound = PostV2ProxyCompletionsOrEq$Outbound | PostV2ProxyCompletionsOrNe$Outbound | PostV2ProxyCompletionsOr3$Outbound | PostV2ProxyCompletionsOrGte$Outbound | PostV2ProxyCompletionsOrLt$Outbound | PostV2ProxyCompletionsOrLte$Outbound | PostV2ProxyCompletionsOrIn$Outbound | PostV2ProxyCompletionsOrNin$Outbound | PostV2ProxyCompletionsOrExists$Outbound;
1189
+ /** @internal */
1190
+ export declare const PostV2ProxyCompletionsFilterByProxyOr$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyOr$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByProxyOr>;
1191
+ /**
1192
+ * @internal
1193
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1194
+ */
1195
+ export declare namespace PostV2ProxyCompletionsFilterByProxyOr$ {
1196
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyOr$inboundSchema` instead. */
1197
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyOr, z.ZodTypeDef, unknown>;
1198
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyOr$outboundSchema` instead. */
1199
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyOr$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByProxyOr>;
1200
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyOr$Outbound` instead. */
1201
+ type Outbound = PostV2ProxyCompletionsFilterByProxyOr$Outbound;
1202
+ }
1203
+ export declare function postV2ProxyCompletionsFilterByProxyOrToJSON(postV2ProxyCompletionsFilterByProxyOr: PostV2ProxyCompletionsFilterByProxyOr): string;
1204
+ export declare function postV2ProxyCompletionsFilterByProxyOrFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterByProxyOr, SDKValidationError>;
1205
+ /** @internal */
1206
+ export declare const PostV2ProxyCompletionsFilterByOr$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByOr, z.ZodTypeDef, unknown>;
1207
+ /** @internal */
1208
+ export type PostV2ProxyCompletionsFilterByOr$Outbound = {
1209
+ or: Array<{
1210
+ [k: string]: PostV2ProxyCompletionsOrEq$Outbound | PostV2ProxyCompletionsOrNe$Outbound | PostV2ProxyCompletionsOr3$Outbound | PostV2ProxyCompletionsOrGte$Outbound | PostV2ProxyCompletionsOrLt$Outbound | PostV2ProxyCompletionsOrLte$Outbound | PostV2ProxyCompletionsOrIn$Outbound | PostV2ProxyCompletionsOrNin$Outbound | PostV2ProxyCompletionsOrExists$Outbound;
1211
+ }>;
1212
+ };
1213
+ /** @internal */
1214
+ export declare const PostV2ProxyCompletionsFilterByOr$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByOr$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByOr>;
1215
+ /**
1216
+ * @internal
1217
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1218
+ */
1219
+ export declare namespace PostV2ProxyCompletionsFilterByOr$ {
1220
+ /** @deprecated use `PostV2ProxyCompletionsFilterByOr$inboundSchema` instead. */
1221
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByOr, z.ZodTypeDef, unknown>;
1222
+ /** @deprecated use `PostV2ProxyCompletionsFilterByOr$outboundSchema` instead. */
1223
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByOr$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByOr>;
1224
+ /** @deprecated use `PostV2ProxyCompletionsFilterByOr$Outbound` instead. */
1225
+ type Outbound = PostV2ProxyCompletionsFilterByOr$Outbound;
1226
+ }
1227
+ export declare function postV2ProxyCompletionsFilterByOrToJSON(postV2ProxyCompletionsFilterByOr: PostV2ProxyCompletionsFilterByOr): string;
1228
+ export declare function postV2ProxyCompletionsFilterByOrFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterByOr, SDKValidationError>;
1229
+ /** @internal */
1230
+ export declare const PostV2ProxyCompletionsAndExists$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndExists, z.ZodTypeDef, unknown>;
1231
+ /** @internal */
1232
+ export type PostV2ProxyCompletionsAndExists$Outbound = {
1233
+ exists: boolean;
1234
+ };
1235
+ /** @internal */
1236
+ export declare const PostV2ProxyCompletionsAndExists$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndExists$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndExists>;
1237
+ /**
1238
+ * @internal
1239
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1240
+ */
1241
+ export declare namespace PostV2ProxyCompletionsAndExists$ {
1242
+ /** @deprecated use `PostV2ProxyCompletionsAndExists$inboundSchema` instead. */
1243
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndExists, z.ZodTypeDef, unknown>;
1244
+ /** @deprecated use `PostV2ProxyCompletionsAndExists$outboundSchema` instead. */
1245
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndExists$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndExists>;
1246
+ /** @deprecated use `PostV2ProxyCompletionsAndExists$Outbound` instead. */
1247
+ type Outbound = PostV2ProxyCompletionsAndExists$Outbound;
1248
+ }
1249
+ export declare function postV2ProxyCompletionsAndExistsToJSON(postV2ProxyCompletionsAndExists: PostV2ProxyCompletionsAndExists): string;
1250
+ export declare function postV2ProxyCompletionsAndExistsFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndExists, SDKValidationError>;
1251
+ /** @internal */
1252
+ export declare const PostV2ProxyCompletionsAndProxyNin$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNin, z.ZodTypeDef, unknown>;
1253
+ /** @internal */
1254
+ export type PostV2ProxyCompletionsAndProxyNin$Outbound = string | number | boolean;
1255
+ /** @internal */
1256
+ export declare const PostV2ProxyCompletionsAndProxyNin$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyNin>;
1257
+ /**
1258
+ * @internal
1259
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1260
+ */
1261
+ export declare namespace PostV2ProxyCompletionsAndProxyNin$ {
1262
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNin$inboundSchema` instead. */
1263
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNin, z.ZodTypeDef, unknown>;
1264
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNin$outboundSchema` instead. */
1265
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyNin>;
1266
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNin$Outbound` instead. */
1267
+ type Outbound = PostV2ProxyCompletionsAndProxyNin$Outbound;
1268
+ }
1269
+ export declare function postV2ProxyCompletionsAndProxyNinToJSON(postV2ProxyCompletionsAndProxyNin: PostV2ProxyCompletionsAndProxyNin): string;
1270
+ export declare function postV2ProxyCompletionsAndProxyNinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndProxyNin, SDKValidationError>;
1271
+ /** @internal */
1272
+ export declare const PostV2ProxyCompletionsAndNin$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndNin, z.ZodTypeDef, unknown>;
1273
+ /** @internal */
1274
+ export type PostV2ProxyCompletionsAndNin$Outbound = {
1275
+ nin: Array<string | number | boolean>;
1276
+ };
1277
+ /** @internal */
1278
+ export declare const PostV2ProxyCompletionsAndNin$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndNin>;
1279
+ /**
1280
+ * @internal
1281
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1282
+ */
1283
+ export declare namespace PostV2ProxyCompletionsAndNin$ {
1284
+ /** @deprecated use `PostV2ProxyCompletionsAndNin$inboundSchema` instead. */
1285
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndNin, z.ZodTypeDef, unknown>;
1286
+ /** @deprecated use `PostV2ProxyCompletionsAndNin$outboundSchema` instead. */
1287
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndNin>;
1288
+ /** @deprecated use `PostV2ProxyCompletionsAndNin$Outbound` instead. */
1289
+ type Outbound = PostV2ProxyCompletionsAndNin$Outbound;
1290
+ }
1291
+ export declare function postV2ProxyCompletionsAndNinToJSON(postV2ProxyCompletionsAndNin: PostV2ProxyCompletionsAndNin): string;
1292
+ export declare function postV2ProxyCompletionsAndNinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndNin, SDKValidationError>;
1293
+ /** @internal */
1294
+ export declare const PostV2ProxyCompletionsAndProxyIn$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyIn, z.ZodTypeDef, unknown>;
1295
+ /** @internal */
1296
+ export type PostV2ProxyCompletionsAndProxyIn$Outbound = string | number | boolean;
1297
+ /** @internal */
1298
+ export declare const PostV2ProxyCompletionsAndProxyIn$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyIn>;
1299
+ /**
1300
+ * @internal
1301
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1302
+ */
1303
+ export declare namespace PostV2ProxyCompletionsAndProxyIn$ {
1304
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyIn$inboundSchema` instead. */
1305
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyIn, z.ZodTypeDef, unknown>;
1306
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyIn$outboundSchema` instead. */
1307
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyIn>;
1308
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyIn$Outbound` instead. */
1309
+ type Outbound = PostV2ProxyCompletionsAndProxyIn$Outbound;
1310
+ }
1311
+ export declare function postV2ProxyCompletionsAndProxyInToJSON(postV2ProxyCompletionsAndProxyIn: PostV2ProxyCompletionsAndProxyIn): string;
1312
+ export declare function postV2ProxyCompletionsAndProxyInFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndProxyIn, SDKValidationError>;
1313
+ /** @internal */
1314
+ export declare const PostV2ProxyCompletionsAndIn$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndIn, z.ZodTypeDef, unknown>;
1315
+ /** @internal */
1316
+ export type PostV2ProxyCompletionsAndIn$Outbound = {
1317
+ in: Array<string | number | boolean>;
1318
+ };
1319
+ /** @internal */
1320
+ export declare const PostV2ProxyCompletionsAndIn$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndIn>;
1321
+ /**
1322
+ * @internal
1323
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1324
+ */
1325
+ export declare namespace PostV2ProxyCompletionsAndIn$ {
1326
+ /** @deprecated use `PostV2ProxyCompletionsAndIn$inboundSchema` instead. */
1327
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndIn, z.ZodTypeDef, unknown>;
1328
+ /** @deprecated use `PostV2ProxyCompletionsAndIn$outboundSchema` instead. */
1329
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndIn>;
1330
+ /** @deprecated use `PostV2ProxyCompletionsAndIn$Outbound` instead. */
1331
+ type Outbound = PostV2ProxyCompletionsAndIn$Outbound;
1332
+ }
1333
+ export declare function postV2ProxyCompletionsAndInToJSON(postV2ProxyCompletionsAndIn: PostV2ProxyCompletionsAndIn): string;
1334
+ export declare function postV2ProxyCompletionsAndInFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndIn, SDKValidationError>;
1335
+ /** @internal */
1336
+ export declare const PostV2ProxyCompletionsAndLte$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndLte, z.ZodTypeDef, unknown>;
1337
+ /** @internal */
1338
+ export type PostV2ProxyCompletionsAndLte$Outbound = {
1339
+ lte: number;
1340
+ };
1341
+ /** @internal */
1342
+ export declare const PostV2ProxyCompletionsAndLte$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndLte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndLte>;
1343
+ /**
1344
+ * @internal
1345
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1346
+ */
1347
+ export declare namespace PostV2ProxyCompletionsAndLte$ {
1348
+ /** @deprecated use `PostV2ProxyCompletionsAndLte$inboundSchema` instead. */
1349
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndLte, z.ZodTypeDef, unknown>;
1350
+ /** @deprecated use `PostV2ProxyCompletionsAndLte$outboundSchema` instead. */
1351
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndLte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndLte>;
1352
+ /** @deprecated use `PostV2ProxyCompletionsAndLte$Outbound` instead. */
1353
+ type Outbound = PostV2ProxyCompletionsAndLte$Outbound;
1354
+ }
1355
+ export declare function postV2ProxyCompletionsAndLteToJSON(postV2ProxyCompletionsAndLte: PostV2ProxyCompletionsAndLte): string;
1356
+ export declare function postV2ProxyCompletionsAndLteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndLte, SDKValidationError>;
1357
+ /** @internal */
1358
+ export declare const PostV2ProxyCompletionsAndLt$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndLt, z.ZodTypeDef, unknown>;
1359
+ /** @internal */
1360
+ export type PostV2ProxyCompletionsAndLt$Outbound = {
1361
+ lt: number;
1362
+ };
1363
+ /** @internal */
1364
+ export declare const PostV2ProxyCompletionsAndLt$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndLt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndLt>;
1365
+ /**
1366
+ * @internal
1367
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1368
+ */
1369
+ export declare namespace PostV2ProxyCompletionsAndLt$ {
1370
+ /** @deprecated use `PostV2ProxyCompletionsAndLt$inboundSchema` instead. */
1371
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndLt, z.ZodTypeDef, unknown>;
1372
+ /** @deprecated use `PostV2ProxyCompletionsAndLt$outboundSchema` instead. */
1373
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndLt$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndLt>;
1374
+ /** @deprecated use `PostV2ProxyCompletionsAndLt$Outbound` instead. */
1375
+ type Outbound = PostV2ProxyCompletionsAndLt$Outbound;
1376
+ }
1377
+ export declare function postV2ProxyCompletionsAndLtToJSON(postV2ProxyCompletionsAndLt: PostV2ProxyCompletionsAndLt): string;
1378
+ export declare function postV2ProxyCompletionsAndLtFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndLt, SDKValidationError>;
1379
+ /** @internal */
1380
+ export declare const PostV2ProxyCompletionsAndGte$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndGte, z.ZodTypeDef, unknown>;
1381
+ /** @internal */
1382
+ export type PostV2ProxyCompletionsAndGte$Outbound = {
1383
+ gte: number;
1384
+ };
1385
+ /** @internal */
1386
+ export declare const PostV2ProxyCompletionsAndGte$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndGte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndGte>;
1387
+ /**
1388
+ * @internal
1389
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1390
+ */
1391
+ export declare namespace PostV2ProxyCompletionsAndGte$ {
1392
+ /** @deprecated use `PostV2ProxyCompletionsAndGte$inboundSchema` instead. */
1393
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndGte, z.ZodTypeDef, unknown>;
1394
+ /** @deprecated use `PostV2ProxyCompletionsAndGte$outboundSchema` instead. */
1395
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndGte$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndGte>;
1396
+ /** @deprecated use `PostV2ProxyCompletionsAndGte$Outbound` instead. */
1397
+ type Outbound = PostV2ProxyCompletionsAndGte$Outbound;
1398
+ }
1399
+ export declare function postV2ProxyCompletionsAndGteToJSON(postV2ProxyCompletionsAndGte: PostV2ProxyCompletionsAndGte): string;
1400
+ export declare function postV2ProxyCompletionsAndGteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndGte, SDKValidationError>;
1401
+ /** @internal */
1402
+ export declare const PostV2ProxyCompletionsAnd3$inboundSchema: z.ZodType<PostV2ProxyCompletionsAnd3, z.ZodTypeDef, unknown>;
1403
+ /** @internal */
1404
+ export type PostV2ProxyCompletionsAnd3$Outbound = {
1405
+ gt: number;
1406
+ };
1407
+ /** @internal */
1408
+ export declare const PostV2ProxyCompletionsAnd3$outboundSchema: z.ZodType<PostV2ProxyCompletionsAnd3$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAnd3>;
1409
+ /**
1410
+ * @internal
1411
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1412
+ */
1413
+ export declare namespace PostV2ProxyCompletionsAnd3$ {
1414
+ /** @deprecated use `PostV2ProxyCompletionsAnd3$inboundSchema` instead. */
1415
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAnd3, z.ZodTypeDef, unknown>;
1416
+ /** @deprecated use `PostV2ProxyCompletionsAnd3$outboundSchema` instead. */
1417
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAnd3$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAnd3>;
1418
+ /** @deprecated use `PostV2ProxyCompletionsAnd3$Outbound` instead. */
1419
+ type Outbound = PostV2ProxyCompletionsAnd3$Outbound;
1420
+ }
1421
+ export declare function postV2ProxyCompletionsAnd3ToJSON(postV2ProxyCompletionsAnd3: PostV2ProxyCompletionsAnd3): string;
1422
+ export declare function postV2ProxyCompletionsAnd3FromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAnd3, SDKValidationError>;
1423
+ /** @internal */
1424
+ export declare const PostV2ProxyCompletionsAndProxyNe$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNe, z.ZodTypeDef, unknown>;
1425
+ /** @internal */
1426
+ export type PostV2ProxyCompletionsAndProxyNe$Outbound = string | number | boolean;
1427
+ /** @internal */
1428
+ export declare const PostV2ProxyCompletionsAndProxyNe$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyNe>;
1429
+ /**
1430
+ * @internal
1431
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1432
+ */
1433
+ export declare namespace PostV2ProxyCompletionsAndProxyNe$ {
1434
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNe$inboundSchema` instead. */
1435
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNe, z.ZodTypeDef, unknown>;
1436
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNe$outboundSchema` instead. */
1437
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyNe>;
1438
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyNe$Outbound` instead. */
1439
+ type Outbound = PostV2ProxyCompletionsAndProxyNe$Outbound;
1440
+ }
1441
+ export declare function postV2ProxyCompletionsAndProxyNeToJSON(postV2ProxyCompletionsAndProxyNe: PostV2ProxyCompletionsAndProxyNe): string;
1442
+ export declare function postV2ProxyCompletionsAndProxyNeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndProxyNe, SDKValidationError>;
1443
+ /** @internal */
1444
+ export declare const PostV2ProxyCompletionsAndNe$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndNe, z.ZodTypeDef, unknown>;
1445
+ /** @internal */
1446
+ export type PostV2ProxyCompletionsAndNe$Outbound = {
1447
+ ne: string | number | boolean;
1448
+ };
1449
+ /** @internal */
1450
+ export declare const PostV2ProxyCompletionsAndNe$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndNe>;
1451
+ /**
1452
+ * @internal
1453
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1454
+ */
1455
+ export declare namespace PostV2ProxyCompletionsAndNe$ {
1456
+ /** @deprecated use `PostV2ProxyCompletionsAndNe$inboundSchema` instead. */
1457
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndNe, z.ZodTypeDef, unknown>;
1458
+ /** @deprecated use `PostV2ProxyCompletionsAndNe$outboundSchema` instead. */
1459
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndNe>;
1460
+ /** @deprecated use `PostV2ProxyCompletionsAndNe$Outbound` instead. */
1461
+ type Outbound = PostV2ProxyCompletionsAndNe$Outbound;
1462
+ }
1463
+ export declare function postV2ProxyCompletionsAndNeToJSON(postV2ProxyCompletionsAndNe: PostV2ProxyCompletionsAndNe): string;
1464
+ export declare function postV2ProxyCompletionsAndNeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndNe, SDKValidationError>;
1465
+ /** @internal */
1466
+ export declare const PostV2ProxyCompletionsAndProxyEq$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyEq, z.ZodTypeDef, unknown>;
1467
+ /** @internal */
1468
+ export type PostV2ProxyCompletionsAndProxyEq$Outbound = string | number | boolean;
1469
+ /** @internal */
1470
+ export declare const PostV2ProxyCompletionsAndProxyEq$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyEq>;
1471
+ /**
1472
+ * @internal
1473
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1474
+ */
1475
+ export declare namespace PostV2ProxyCompletionsAndProxyEq$ {
1476
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyEq$inboundSchema` instead. */
1477
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyEq, z.ZodTypeDef, unknown>;
1478
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyEq$outboundSchema` instead. */
1479
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndProxyEq>;
1480
+ /** @deprecated use `PostV2ProxyCompletionsAndProxyEq$Outbound` instead. */
1481
+ type Outbound = PostV2ProxyCompletionsAndProxyEq$Outbound;
1482
+ }
1483
+ export declare function postV2ProxyCompletionsAndProxyEqToJSON(postV2ProxyCompletionsAndProxyEq: PostV2ProxyCompletionsAndProxyEq): string;
1484
+ export declare function postV2ProxyCompletionsAndProxyEqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndProxyEq, SDKValidationError>;
1485
+ /** @internal */
1486
+ export declare const PostV2ProxyCompletionsAndEq$inboundSchema: z.ZodType<PostV2ProxyCompletionsAndEq, z.ZodTypeDef, unknown>;
1487
+ /** @internal */
1488
+ export type PostV2ProxyCompletionsAndEq$Outbound = {
1489
+ eq: string | number | boolean;
1490
+ };
1491
+ /** @internal */
1492
+ export declare const PostV2ProxyCompletionsAndEq$outboundSchema: z.ZodType<PostV2ProxyCompletionsAndEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndEq>;
1493
+ /**
1494
+ * @internal
1495
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1496
+ */
1497
+ export declare namespace PostV2ProxyCompletionsAndEq$ {
1498
+ /** @deprecated use `PostV2ProxyCompletionsAndEq$inboundSchema` instead. */
1499
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAndEq, z.ZodTypeDef, unknown>;
1500
+ /** @deprecated use `PostV2ProxyCompletionsAndEq$outboundSchema` instead. */
1501
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAndEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAndEq>;
1502
+ /** @deprecated use `PostV2ProxyCompletionsAndEq$Outbound` instead. */
1503
+ type Outbound = PostV2ProxyCompletionsAndEq$Outbound;
1504
+ }
1505
+ export declare function postV2ProxyCompletionsAndEqToJSON(postV2ProxyCompletionsAndEq: PostV2ProxyCompletionsAndEq): string;
1506
+ export declare function postV2ProxyCompletionsAndEqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAndEq, SDKValidationError>;
1507
+ /** @internal */
1508
+ export declare const PostV2ProxyCompletionsFilterByProxyAnd$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyAnd, z.ZodTypeDef, unknown>;
1509
+ /** @internal */
1510
+ export type PostV2ProxyCompletionsFilterByProxyAnd$Outbound = PostV2ProxyCompletionsAndEq$Outbound | PostV2ProxyCompletionsAndNe$Outbound | PostV2ProxyCompletionsAnd3$Outbound | PostV2ProxyCompletionsAndGte$Outbound | PostV2ProxyCompletionsAndLt$Outbound | PostV2ProxyCompletionsAndLte$Outbound | PostV2ProxyCompletionsAndIn$Outbound | PostV2ProxyCompletionsAndNin$Outbound | PostV2ProxyCompletionsAndExists$Outbound;
1511
+ /** @internal */
1512
+ export declare const PostV2ProxyCompletionsFilterByProxyAnd$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyAnd$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByProxyAnd>;
1513
+ /**
1514
+ * @internal
1515
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1516
+ */
1517
+ export declare namespace PostV2ProxyCompletionsFilterByProxyAnd$ {
1518
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyAnd$inboundSchema` instead. */
1519
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyAnd, z.ZodTypeDef, unknown>;
1520
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyAnd$outboundSchema` instead. */
1521
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByProxyAnd$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByProxyAnd>;
1522
+ /** @deprecated use `PostV2ProxyCompletionsFilterByProxyAnd$Outbound` instead. */
1523
+ type Outbound = PostV2ProxyCompletionsFilterByProxyAnd$Outbound;
1524
+ }
1525
+ export declare function postV2ProxyCompletionsFilterByProxyAndToJSON(postV2ProxyCompletionsFilterByProxyAnd: PostV2ProxyCompletionsFilterByProxyAnd): string;
1526
+ export declare function postV2ProxyCompletionsFilterByProxyAndFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterByProxyAnd, SDKValidationError>;
1527
+ /** @internal */
1528
+ export declare const PostV2ProxyCompletionsFilterByAnd$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByAnd, z.ZodTypeDef, unknown>;
1529
+ /** @internal */
1530
+ export type PostV2ProxyCompletionsFilterByAnd$Outbound = {
1531
+ and: Array<{
1532
+ [k: string]: PostV2ProxyCompletionsAndEq$Outbound | PostV2ProxyCompletionsAndNe$Outbound | PostV2ProxyCompletionsAnd3$Outbound | PostV2ProxyCompletionsAndGte$Outbound | PostV2ProxyCompletionsAndLt$Outbound | PostV2ProxyCompletionsAndLte$Outbound | PostV2ProxyCompletionsAndIn$Outbound | PostV2ProxyCompletionsAndNin$Outbound | PostV2ProxyCompletionsAndExists$Outbound;
1533
+ }>;
1534
+ };
1535
+ /** @internal */
1536
+ export declare const PostV2ProxyCompletionsFilterByAnd$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByAnd$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByAnd>;
1537
+ /**
1538
+ * @internal
1539
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1540
+ */
1541
+ export declare namespace PostV2ProxyCompletionsFilterByAnd$ {
1542
+ /** @deprecated use `PostV2ProxyCompletionsFilterByAnd$inboundSchema` instead. */
1543
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByAnd, z.ZodTypeDef, unknown>;
1544
+ /** @deprecated use `PostV2ProxyCompletionsFilterByAnd$outboundSchema` instead. */
1545
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterByAnd$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterByAnd>;
1546
+ /** @deprecated use `PostV2ProxyCompletionsFilterByAnd$Outbound` instead. */
1547
+ type Outbound = PostV2ProxyCompletionsFilterByAnd$Outbound;
1548
+ }
1549
+ export declare function postV2ProxyCompletionsFilterByAndToJSON(postV2ProxyCompletionsFilterByAnd: PostV2ProxyCompletionsFilterByAnd): string;
1550
+ export declare function postV2ProxyCompletionsFilterByAndFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterByAnd, SDKValidationError>;
1551
+ /** @internal */
1552
+ export declare const PostV2ProxyCompletions1Exists$inboundSchema: z.ZodType<PostV2ProxyCompletions1Exists, z.ZodTypeDef, unknown>;
1553
+ /** @internal */
1554
+ export type PostV2ProxyCompletions1Exists$Outbound = {
1555
+ exists: boolean;
1556
+ };
1557
+ /** @internal */
1558
+ export declare const PostV2ProxyCompletions1Exists$outboundSchema: z.ZodType<PostV2ProxyCompletions1Exists$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Exists>;
1559
+ /**
1560
+ * @internal
1561
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1562
+ */
1563
+ export declare namespace PostV2ProxyCompletions1Exists$ {
1564
+ /** @deprecated use `PostV2ProxyCompletions1Exists$inboundSchema` instead. */
1565
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Exists, z.ZodTypeDef, unknown>;
1566
+ /** @deprecated use `PostV2ProxyCompletions1Exists$outboundSchema` instead. */
1567
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Exists$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Exists>;
1568
+ /** @deprecated use `PostV2ProxyCompletions1Exists$Outbound` instead. */
1569
+ type Outbound = PostV2ProxyCompletions1Exists$Outbound;
1570
+ }
1571
+ export declare function postV2ProxyCompletions1ExistsToJSON(postV2ProxyCompletions1Exists: PostV2ProxyCompletions1Exists): string;
1572
+ export declare function postV2ProxyCompletions1ExistsFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Exists, SDKValidationError>;
1573
+ /** @internal */
1574
+ export declare const PostV2ProxyCompletions1ProxyNin$inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNin, z.ZodTypeDef, unknown>;
1575
+ /** @internal */
1576
+ export type PostV2ProxyCompletions1ProxyNin$Outbound = string | number | boolean;
1577
+ /** @internal */
1578
+ export declare const PostV2ProxyCompletions1ProxyNin$outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyNin>;
1579
+ /**
1580
+ * @internal
1581
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1582
+ */
1583
+ export declare namespace PostV2ProxyCompletions1ProxyNin$ {
1584
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNin$inboundSchema` instead. */
1585
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNin, z.ZodTypeDef, unknown>;
1586
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNin$outboundSchema` instead. */
1587
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNin$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyNin>;
1588
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNin$Outbound` instead. */
1589
+ type Outbound = PostV2ProxyCompletions1ProxyNin$Outbound;
1590
+ }
1591
+ export declare function postV2ProxyCompletions1ProxyNinToJSON(postV2ProxyCompletions1ProxyNin: PostV2ProxyCompletions1ProxyNin): string;
1592
+ export declare function postV2ProxyCompletions1ProxyNinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1ProxyNin, SDKValidationError>;
1593
+ /** @internal */
1594
+ export declare const PostV2ProxyCompletions1Nin$inboundSchema: z.ZodType<PostV2ProxyCompletions1Nin, z.ZodTypeDef, unknown>;
1595
+ /** @internal */
1596
+ export type PostV2ProxyCompletions1Nin$Outbound = {
1597
+ nin: Array<string | number | boolean>;
1598
+ };
1599
+ /** @internal */
1600
+ export declare const PostV2ProxyCompletions1Nin$outboundSchema: z.ZodType<PostV2ProxyCompletions1Nin$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Nin>;
1601
+ /**
1602
+ * @internal
1603
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1604
+ */
1605
+ export declare namespace PostV2ProxyCompletions1Nin$ {
1606
+ /** @deprecated use `PostV2ProxyCompletions1Nin$inboundSchema` instead. */
1607
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Nin, z.ZodTypeDef, unknown>;
1608
+ /** @deprecated use `PostV2ProxyCompletions1Nin$outboundSchema` instead. */
1609
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Nin$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Nin>;
1610
+ /** @deprecated use `PostV2ProxyCompletions1Nin$Outbound` instead. */
1611
+ type Outbound = PostV2ProxyCompletions1Nin$Outbound;
1612
+ }
1613
+ export declare function postV2ProxyCompletions1NinToJSON(postV2ProxyCompletions1Nin: PostV2ProxyCompletions1Nin): string;
1614
+ export declare function postV2ProxyCompletions1NinFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Nin, SDKValidationError>;
1615
+ /** @internal */
1616
+ export declare const PostV2ProxyCompletions1ProxyIn$inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyIn, z.ZodTypeDef, unknown>;
1617
+ /** @internal */
1618
+ export type PostV2ProxyCompletions1ProxyIn$Outbound = string | number | boolean;
1619
+ /** @internal */
1620
+ export declare const PostV2ProxyCompletions1ProxyIn$outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyIn>;
1621
+ /**
1622
+ * @internal
1623
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1624
+ */
1625
+ export declare namespace PostV2ProxyCompletions1ProxyIn$ {
1626
+ /** @deprecated use `PostV2ProxyCompletions1ProxyIn$inboundSchema` instead. */
1627
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyIn, z.ZodTypeDef, unknown>;
1628
+ /** @deprecated use `PostV2ProxyCompletions1ProxyIn$outboundSchema` instead. */
1629
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyIn$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyIn>;
1630
+ /** @deprecated use `PostV2ProxyCompletions1ProxyIn$Outbound` instead. */
1631
+ type Outbound = PostV2ProxyCompletions1ProxyIn$Outbound;
1632
+ }
1633
+ export declare function postV2ProxyCompletions1ProxyInToJSON(postV2ProxyCompletions1ProxyIn: PostV2ProxyCompletions1ProxyIn): string;
1634
+ export declare function postV2ProxyCompletions1ProxyInFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1ProxyIn, SDKValidationError>;
1635
+ /** @internal */
1636
+ export declare const PostV2ProxyCompletions1In$inboundSchema: z.ZodType<PostV2ProxyCompletions1In, z.ZodTypeDef, unknown>;
1637
+ /** @internal */
1638
+ export type PostV2ProxyCompletions1In$Outbound = {
1639
+ in: Array<string | number | boolean>;
1640
+ };
1641
+ /** @internal */
1642
+ export declare const PostV2ProxyCompletions1In$outboundSchema: z.ZodType<PostV2ProxyCompletions1In$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1In>;
1643
+ /**
1644
+ * @internal
1645
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1646
+ */
1647
+ export declare namespace PostV2ProxyCompletions1In$ {
1648
+ /** @deprecated use `PostV2ProxyCompletions1In$inboundSchema` instead. */
1649
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1In, z.ZodTypeDef, unknown>;
1650
+ /** @deprecated use `PostV2ProxyCompletions1In$outboundSchema` instead. */
1651
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1In$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1In>;
1652
+ /** @deprecated use `PostV2ProxyCompletions1In$Outbound` instead. */
1653
+ type Outbound = PostV2ProxyCompletions1In$Outbound;
1654
+ }
1655
+ export declare function postV2ProxyCompletions1InToJSON(postV2ProxyCompletions1In: PostV2ProxyCompletions1In): string;
1656
+ export declare function postV2ProxyCompletions1InFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1In, SDKValidationError>;
1657
+ /** @internal */
1658
+ export declare const PostV2ProxyCompletions1Lte$inboundSchema: z.ZodType<PostV2ProxyCompletions1Lte, z.ZodTypeDef, unknown>;
1659
+ /** @internal */
1660
+ export type PostV2ProxyCompletions1Lte$Outbound = {
1661
+ lte: number;
1662
+ };
1663
+ /** @internal */
1664
+ export declare const PostV2ProxyCompletions1Lte$outboundSchema: z.ZodType<PostV2ProxyCompletions1Lte$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Lte>;
1665
+ /**
1666
+ * @internal
1667
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1668
+ */
1669
+ export declare namespace PostV2ProxyCompletions1Lte$ {
1670
+ /** @deprecated use `PostV2ProxyCompletions1Lte$inboundSchema` instead. */
1671
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Lte, z.ZodTypeDef, unknown>;
1672
+ /** @deprecated use `PostV2ProxyCompletions1Lte$outboundSchema` instead. */
1673
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Lte$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Lte>;
1674
+ /** @deprecated use `PostV2ProxyCompletions1Lte$Outbound` instead. */
1675
+ type Outbound = PostV2ProxyCompletions1Lte$Outbound;
1676
+ }
1677
+ export declare function postV2ProxyCompletions1LteToJSON(postV2ProxyCompletions1Lte: PostV2ProxyCompletions1Lte): string;
1678
+ export declare function postV2ProxyCompletions1LteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Lte, SDKValidationError>;
1679
+ /** @internal */
1680
+ export declare const PostV2ProxyCompletions1Lt$inboundSchema: z.ZodType<PostV2ProxyCompletions1Lt, z.ZodTypeDef, unknown>;
1681
+ /** @internal */
1682
+ export type PostV2ProxyCompletions1Lt$Outbound = {
1683
+ lt: number;
1684
+ };
1685
+ /** @internal */
1686
+ export declare const PostV2ProxyCompletions1Lt$outboundSchema: z.ZodType<PostV2ProxyCompletions1Lt$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Lt>;
1687
+ /**
1688
+ * @internal
1689
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1690
+ */
1691
+ export declare namespace PostV2ProxyCompletions1Lt$ {
1692
+ /** @deprecated use `PostV2ProxyCompletions1Lt$inboundSchema` instead. */
1693
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Lt, z.ZodTypeDef, unknown>;
1694
+ /** @deprecated use `PostV2ProxyCompletions1Lt$outboundSchema` instead. */
1695
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Lt$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Lt>;
1696
+ /** @deprecated use `PostV2ProxyCompletions1Lt$Outbound` instead. */
1697
+ type Outbound = PostV2ProxyCompletions1Lt$Outbound;
1698
+ }
1699
+ export declare function postV2ProxyCompletions1LtToJSON(postV2ProxyCompletions1Lt: PostV2ProxyCompletions1Lt): string;
1700
+ export declare function postV2ProxyCompletions1LtFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Lt, SDKValidationError>;
1701
+ /** @internal */
1702
+ export declare const PostV2ProxyCompletions1Gte$inboundSchema: z.ZodType<PostV2ProxyCompletions1Gte, z.ZodTypeDef, unknown>;
1703
+ /** @internal */
1704
+ export type PostV2ProxyCompletions1Gte$Outbound = {
1705
+ gte: number;
1706
+ };
1707
+ /** @internal */
1708
+ export declare const PostV2ProxyCompletions1Gte$outboundSchema: z.ZodType<PostV2ProxyCompletions1Gte$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Gte>;
1709
+ /**
1710
+ * @internal
1711
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1712
+ */
1713
+ export declare namespace PostV2ProxyCompletions1Gte$ {
1714
+ /** @deprecated use `PostV2ProxyCompletions1Gte$inboundSchema` instead. */
1715
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Gte, z.ZodTypeDef, unknown>;
1716
+ /** @deprecated use `PostV2ProxyCompletions1Gte$outboundSchema` instead. */
1717
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Gte$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Gte>;
1718
+ /** @deprecated use `PostV2ProxyCompletions1Gte$Outbound` instead. */
1719
+ type Outbound = PostV2ProxyCompletions1Gte$Outbound;
1720
+ }
1721
+ export declare function postV2ProxyCompletions1GteToJSON(postV2ProxyCompletions1Gte: PostV2ProxyCompletions1Gte): string;
1722
+ export declare function postV2ProxyCompletions1GteFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Gte, SDKValidationError>;
1723
+ /** @internal */
1724
+ export declare const PostV2ProxyCompletions13$inboundSchema: z.ZodType<PostV2ProxyCompletions13, z.ZodTypeDef, unknown>;
1725
+ /** @internal */
1726
+ export type PostV2ProxyCompletions13$Outbound = {
1727
+ gt: number;
1728
+ };
1729
+ /** @internal */
1730
+ export declare const PostV2ProxyCompletions13$outboundSchema: z.ZodType<PostV2ProxyCompletions13$Outbound, z.ZodTypeDef, PostV2ProxyCompletions13>;
1731
+ /**
1732
+ * @internal
1733
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1734
+ */
1735
+ export declare namespace PostV2ProxyCompletions13$ {
1736
+ /** @deprecated use `PostV2ProxyCompletions13$inboundSchema` instead. */
1737
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions13, z.ZodTypeDef, unknown>;
1738
+ /** @deprecated use `PostV2ProxyCompletions13$outboundSchema` instead. */
1739
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions13$Outbound, z.ZodTypeDef, PostV2ProxyCompletions13>;
1740
+ /** @deprecated use `PostV2ProxyCompletions13$Outbound` instead. */
1741
+ type Outbound = PostV2ProxyCompletions13$Outbound;
1742
+ }
1743
+ export declare function postV2ProxyCompletions13ToJSON(postV2ProxyCompletions13: PostV2ProxyCompletions13): string;
1744
+ export declare function postV2ProxyCompletions13FromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions13, SDKValidationError>;
1745
+ /** @internal */
1746
+ export declare const PostV2ProxyCompletions1ProxyNe$inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNe, z.ZodTypeDef, unknown>;
1747
+ /** @internal */
1748
+ export type PostV2ProxyCompletions1ProxyNe$Outbound = string | number | boolean;
1749
+ /** @internal */
1750
+ export declare const PostV2ProxyCompletions1ProxyNe$outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyNe>;
1751
+ /**
1752
+ * @internal
1753
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1754
+ */
1755
+ export declare namespace PostV2ProxyCompletions1ProxyNe$ {
1756
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNe$inboundSchema` instead. */
1757
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNe, z.ZodTypeDef, unknown>;
1758
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNe$outboundSchema` instead. */
1759
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyNe$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyNe>;
1760
+ /** @deprecated use `PostV2ProxyCompletions1ProxyNe$Outbound` instead. */
1761
+ type Outbound = PostV2ProxyCompletions1ProxyNe$Outbound;
1762
+ }
1763
+ export declare function postV2ProxyCompletions1ProxyNeToJSON(postV2ProxyCompletions1ProxyNe: PostV2ProxyCompletions1ProxyNe): string;
1764
+ export declare function postV2ProxyCompletions1ProxyNeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1ProxyNe, SDKValidationError>;
1765
+ /** @internal */
1766
+ export declare const PostV2ProxyCompletions1Ne$inboundSchema: z.ZodType<PostV2ProxyCompletions1Ne, z.ZodTypeDef, unknown>;
1767
+ /** @internal */
1768
+ export type PostV2ProxyCompletions1Ne$Outbound = {
1769
+ ne: string | number | boolean;
1770
+ };
1771
+ /** @internal */
1772
+ export declare const PostV2ProxyCompletions1Ne$outboundSchema: z.ZodType<PostV2ProxyCompletions1Ne$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Ne>;
1773
+ /**
1774
+ * @internal
1775
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1776
+ */
1777
+ export declare namespace PostV2ProxyCompletions1Ne$ {
1778
+ /** @deprecated use `PostV2ProxyCompletions1Ne$inboundSchema` instead. */
1779
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Ne, z.ZodTypeDef, unknown>;
1780
+ /** @deprecated use `PostV2ProxyCompletions1Ne$outboundSchema` instead. */
1781
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Ne$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Ne>;
1782
+ /** @deprecated use `PostV2ProxyCompletions1Ne$Outbound` instead. */
1783
+ type Outbound = PostV2ProxyCompletions1Ne$Outbound;
1784
+ }
1785
+ export declare function postV2ProxyCompletions1NeToJSON(postV2ProxyCompletions1Ne: PostV2ProxyCompletions1Ne): string;
1786
+ export declare function postV2ProxyCompletions1NeFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Ne, SDKValidationError>;
1787
+ /** @internal */
1788
+ export declare const PostV2ProxyCompletions1ProxyEq$inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyEq, z.ZodTypeDef, unknown>;
1789
+ /** @internal */
1790
+ export type PostV2ProxyCompletions1ProxyEq$Outbound = string | number | boolean;
1791
+ /** @internal */
1792
+ export declare const PostV2ProxyCompletions1ProxyEq$outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyEq>;
1793
+ /**
1794
+ * @internal
1795
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1796
+ */
1797
+ export declare namespace PostV2ProxyCompletions1ProxyEq$ {
1798
+ /** @deprecated use `PostV2ProxyCompletions1ProxyEq$inboundSchema` instead. */
1799
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyEq, z.ZodTypeDef, unknown>;
1800
+ /** @deprecated use `PostV2ProxyCompletions1ProxyEq$outboundSchema` instead. */
1801
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1ProxyEq$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1ProxyEq>;
1802
+ /** @deprecated use `PostV2ProxyCompletions1ProxyEq$Outbound` instead. */
1803
+ type Outbound = PostV2ProxyCompletions1ProxyEq$Outbound;
1804
+ }
1805
+ export declare function postV2ProxyCompletions1ProxyEqToJSON(postV2ProxyCompletions1ProxyEq: PostV2ProxyCompletions1ProxyEq): string;
1806
+ export declare function postV2ProxyCompletions1ProxyEqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1ProxyEq, SDKValidationError>;
1807
+ /** @internal */
1808
+ export declare const PostV2ProxyCompletions1Eq$inboundSchema: z.ZodType<PostV2ProxyCompletions1Eq, z.ZodTypeDef, unknown>;
1809
+ /** @internal */
1810
+ export type PostV2ProxyCompletions1Eq$Outbound = {
1811
+ eq: string | number | boolean;
1812
+ };
1813
+ /** @internal */
1814
+ export declare const PostV2ProxyCompletions1Eq$outboundSchema: z.ZodType<PostV2ProxyCompletions1Eq$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Eq>;
1815
+ /**
1816
+ * @internal
1817
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1818
+ */
1819
+ export declare namespace PostV2ProxyCompletions1Eq$ {
1820
+ /** @deprecated use `PostV2ProxyCompletions1Eq$inboundSchema` instead. */
1821
+ const inboundSchema: z.ZodType<PostV2ProxyCompletions1Eq, z.ZodTypeDef, unknown>;
1822
+ /** @deprecated use `PostV2ProxyCompletions1Eq$outboundSchema` instead. */
1823
+ const outboundSchema: z.ZodType<PostV2ProxyCompletions1Eq$Outbound, z.ZodTypeDef, PostV2ProxyCompletions1Eq>;
1824
+ /** @deprecated use `PostV2ProxyCompletions1Eq$Outbound` instead. */
1825
+ type Outbound = PostV2ProxyCompletions1Eq$Outbound;
1826
+ }
1827
+ export declare function postV2ProxyCompletions1EqToJSON(postV2ProxyCompletions1Eq: PostV2ProxyCompletions1Eq): string;
1828
+ export declare function postV2ProxyCompletions1EqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletions1Eq, SDKValidationError>;
1829
+ /** @internal */
1830
+ export declare const PostV2ProxyCompletionsFilterBy1$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy1, z.ZodTypeDef, unknown>;
1831
+ /** @internal */
1832
+ export type PostV2ProxyCompletionsFilterBy1$Outbound = PostV2ProxyCompletions1Eq$Outbound | PostV2ProxyCompletions1Ne$Outbound | PostV2ProxyCompletions13$Outbound | PostV2ProxyCompletions1Gte$Outbound | PostV2ProxyCompletions1Lt$Outbound | PostV2ProxyCompletions1Lte$Outbound | PostV2ProxyCompletions1In$Outbound | PostV2ProxyCompletions1Nin$Outbound | PostV2ProxyCompletions1Exists$Outbound;
1833
+ /** @internal */
1834
+ export declare const PostV2ProxyCompletionsFilterBy1$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy1$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterBy1>;
1835
+ /**
1836
+ * @internal
1837
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1838
+ */
1839
+ export declare namespace PostV2ProxyCompletionsFilterBy1$ {
1840
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy1$inboundSchema` instead. */
1841
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy1, z.ZodTypeDef, unknown>;
1842
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy1$outboundSchema` instead. */
1843
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy1$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterBy1>;
1844
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy1$Outbound` instead. */
1845
+ type Outbound = PostV2ProxyCompletionsFilterBy1$Outbound;
1846
+ }
1847
+ export declare function postV2ProxyCompletionsFilterBy1ToJSON(postV2ProxyCompletionsFilterBy1: PostV2ProxyCompletionsFilterBy1): string;
1848
+ export declare function postV2ProxyCompletionsFilterBy1FromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterBy1, SDKValidationError>;
1849
+ /** @internal */
1850
+ export declare const PostV2ProxyCompletionsFilterBy$inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy, z.ZodTypeDef, unknown>;
1851
+ /** @internal */
1852
+ export type PostV2ProxyCompletionsFilterBy$Outbound = PostV2ProxyCompletionsFilterByAnd$Outbound | PostV2ProxyCompletionsFilterByOr$Outbound | {
1853
+ [k: string]: PostV2ProxyCompletions1Eq$Outbound | PostV2ProxyCompletions1Ne$Outbound | PostV2ProxyCompletions13$Outbound | PostV2ProxyCompletions1Gte$Outbound | PostV2ProxyCompletions1Lt$Outbound | PostV2ProxyCompletions1Lte$Outbound | PostV2ProxyCompletions1In$Outbound | PostV2ProxyCompletions1Nin$Outbound | PostV2ProxyCompletions1Exists$Outbound;
1854
+ };
1855
+ /** @internal */
1856
+ export declare const PostV2ProxyCompletionsFilterBy$outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterBy>;
1857
+ /**
1858
+ * @internal
1859
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1860
+ */
1861
+ export declare namespace PostV2ProxyCompletionsFilterBy$ {
1862
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy$inboundSchema` instead. */
1863
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy, z.ZodTypeDef, unknown>;
1864
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy$outboundSchema` instead. */
1865
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsFilterBy$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsFilterBy>;
1866
+ /** @deprecated use `PostV2ProxyCompletionsFilterBy$Outbound` instead. */
1867
+ type Outbound = PostV2ProxyCompletionsFilterBy$Outbound;
1868
+ }
1869
+ export declare function postV2ProxyCompletionsFilterByToJSON(postV2ProxyCompletionsFilterBy: PostV2ProxyCompletionsFilterBy): string;
1870
+ export declare function postV2ProxyCompletionsFilterByFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsFilterBy, SDKValidationError>;
1871
+ /** @internal */
1872
+ export declare const PostV2ProxyCompletionsSearchOptions$inboundSchema: z.ZodType<PostV2ProxyCompletionsSearchOptions, z.ZodTypeDef, unknown>;
1873
+ /** @internal */
1874
+ export type PostV2ProxyCompletionsSearchOptions$Outbound = {
1875
+ include_vectors?: boolean | undefined;
1876
+ include_metadata?: boolean | undefined;
1877
+ include_scores?: boolean | undefined;
1878
+ };
1879
+ /** @internal */
1880
+ export declare const PostV2ProxyCompletionsSearchOptions$outboundSchema: z.ZodType<PostV2ProxyCompletionsSearchOptions$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsSearchOptions>;
1881
+ /**
1882
+ * @internal
1883
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1884
+ */
1885
+ export declare namespace PostV2ProxyCompletionsSearchOptions$ {
1886
+ /** @deprecated use `PostV2ProxyCompletionsSearchOptions$inboundSchema` instead. */
1887
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsSearchOptions, z.ZodTypeDef, unknown>;
1888
+ /** @deprecated use `PostV2ProxyCompletionsSearchOptions$outboundSchema` instead. */
1889
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsSearchOptions$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsSearchOptions>;
1890
+ /** @deprecated use `PostV2ProxyCompletionsSearchOptions$Outbound` instead. */
1891
+ type Outbound = PostV2ProxyCompletionsSearchOptions$Outbound;
1892
+ }
1893
+ export declare function postV2ProxyCompletionsSearchOptionsToJSON(postV2ProxyCompletionsSearchOptions: PostV2ProxyCompletionsSearchOptions): string;
1894
+ export declare function postV2ProxyCompletionsSearchOptionsFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsSearchOptions, SDKValidationError>;
1895
+ /** @internal */
1896
+ export declare const PostV2ProxyCompletionsProvider$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsProvider>;
1897
+ /** @internal */
1898
+ export declare const PostV2ProxyCompletionsProvider$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsProvider>;
1899
+ /**
1900
+ * @internal
1901
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1902
+ */
1903
+ export declare namespace PostV2ProxyCompletionsProvider$ {
1904
+ /** @deprecated use `PostV2ProxyCompletionsProvider$inboundSchema` instead. */
1905
+ const inboundSchema: z.ZodNativeEnum<{
1906
+ readonly Cohere: "cohere";
1907
+ readonly Openai: "openai";
1908
+ readonly Anthropic: "anthropic";
1909
+ readonly Huggingface: "huggingface";
1910
+ readonly Replicate: "replicate";
1911
+ readonly Google: "google";
1912
+ readonly GoogleAi: "google-ai";
1913
+ readonly Azure: "azure";
1914
+ readonly Aws: "aws";
1915
+ readonly Anyscale: "anyscale";
1916
+ readonly Perplexity: "perplexity";
1917
+ readonly Groq: "groq";
1918
+ readonly Fal: "fal";
1919
+ readonly Leonardoai: "leonardoai";
1920
+ readonly Nvidia: "nvidia";
1921
+ readonly Jina: "jina";
1922
+ readonly Togetherai: "togetherai";
1923
+ readonly Elevenlabs: "elevenlabs";
1924
+ readonly Litellm: "litellm";
1925
+ readonly Openailike: "openailike";
1926
+ readonly Cerebras: "cerebras";
1927
+ readonly Bytedance: "bytedance";
1928
+ }>;
1929
+ /** @deprecated use `PostV2ProxyCompletionsProvider$outboundSchema` instead. */
1930
+ const outboundSchema: z.ZodNativeEnum<{
1931
+ readonly Cohere: "cohere";
1932
+ readonly Openai: "openai";
1933
+ readonly Anthropic: "anthropic";
1934
+ readonly Huggingface: "huggingface";
1935
+ readonly Replicate: "replicate";
1936
+ readonly Google: "google";
1937
+ readonly GoogleAi: "google-ai";
1938
+ readonly Azure: "azure";
1939
+ readonly Aws: "aws";
1940
+ readonly Anyscale: "anyscale";
1941
+ readonly Perplexity: "perplexity";
1942
+ readonly Groq: "groq";
1943
+ readonly Fal: "fal";
1944
+ readonly Leonardoai: "leonardoai";
1945
+ readonly Nvidia: "nvidia";
1946
+ readonly Jina: "jina";
1947
+ readonly Togetherai: "togetherai";
1948
+ readonly Elevenlabs: "elevenlabs";
1949
+ readonly Litellm: "litellm";
1950
+ readonly Openailike: "openailike";
1951
+ readonly Cerebras: "cerebras";
1952
+ readonly Bytedance: "bytedance";
1953
+ }>;
1954
+ }
1955
+ /** @internal */
1956
+ export declare const PostV2ProxyCompletionsModelType$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsModelType>;
1957
+ /** @internal */
1958
+ export declare const PostV2ProxyCompletionsModelType$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsModelType>;
1959
+ /**
1960
+ * @internal
1961
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1962
+ */
1963
+ export declare namespace PostV2ProxyCompletionsModelType$ {
1964
+ /** @deprecated use `PostV2ProxyCompletionsModelType$inboundSchema` instead. */
1965
+ const inboundSchema: z.ZodNativeEnum<{
1966
+ readonly Rerank: "rerank";
1967
+ }>;
1968
+ /** @deprecated use `PostV2ProxyCompletionsModelType$outboundSchema` instead. */
1969
+ const outboundSchema: z.ZodNativeEnum<{
1970
+ readonly Rerank: "rerank";
1971
+ }>;
1972
+ }
1973
+ /** @internal */
1974
+ export declare const PostV2ProxyCompletionsModelParameters$inboundSchema: z.ZodType<PostV2ProxyCompletionsModelParameters, z.ZodTypeDef, unknown>;
1975
+ /** @internal */
1976
+ export type PostV2ProxyCompletionsModelParameters$Outbound = {
1977
+ threshold?: number | undefined;
1978
+ };
1979
+ /** @internal */
1980
+ export declare const PostV2ProxyCompletionsModelParameters$outboundSchema: z.ZodType<PostV2ProxyCompletionsModelParameters$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsModelParameters>;
1981
+ /**
1982
+ * @internal
1983
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1984
+ */
1985
+ export declare namespace PostV2ProxyCompletionsModelParameters$ {
1986
+ /** @deprecated use `PostV2ProxyCompletionsModelParameters$inboundSchema` instead. */
1987
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsModelParameters, z.ZodTypeDef, unknown>;
1988
+ /** @deprecated use `PostV2ProxyCompletionsModelParameters$outboundSchema` instead. */
1989
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsModelParameters$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsModelParameters>;
1990
+ /** @deprecated use `PostV2ProxyCompletionsModelParameters$Outbound` instead. */
1991
+ type Outbound = PostV2ProxyCompletionsModelParameters$Outbound;
1992
+ }
1993
+ export declare function postV2ProxyCompletionsModelParametersToJSON(postV2ProxyCompletionsModelParameters: PostV2ProxyCompletionsModelParameters): string;
1994
+ export declare function postV2ProxyCompletionsModelParametersFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsModelParameters, SDKValidationError>;
1995
+ /** @internal */
1996
+ export declare const PostV2ProxyCompletionsRerankConfig$inboundSchema: z.ZodType<PostV2ProxyCompletionsRerankConfig, z.ZodTypeDef, unknown>;
1997
+ /** @internal */
1998
+ export type PostV2ProxyCompletionsRerankConfig$Outbound = {
1999
+ enabled?: boolean | undefined;
2000
+ provider?: string | undefined;
2001
+ top_k?: number | undefined;
2002
+ model?: string | undefined;
2003
+ model_db_id?: string | undefined;
2004
+ model_type?: string | undefined;
2005
+ model_parameters?: PostV2ProxyCompletionsModelParameters$Outbound | undefined;
2006
+ };
2007
+ /** @internal */
2008
+ export declare const PostV2ProxyCompletionsRerankConfig$outboundSchema: z.ZodType<PostV2ProxyCompletionsRerankConfig$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsRerankConfig>;
2009
+ /**
2010
+ * @internal
2011
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2012
+ */
2013
+ export declare namespace PostV2ProxyCompletionsRerankConfig$ {
2014
+ /** @deprecated use `PostV2ProxyCompletionsRerankConfig$inboundSchema` instead. */
2015
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsRerankConfig, z.ZodTypeDef, unknown>;
2016
+ /** @deprecated use `PostV2ProxyCompletionsRerankConfig$outboundSchema` instead. */
2017
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsRerankConfig$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsRerankConfig>;
2018
+ /** @deprecated use `PostV2ProxyCompletionsRerankConfig$Outbound` instead. */
2019
+ type Outbound = PostV2ProxyCompletionsRerankConfig$Outbound;
2020
+ }
2021
+ export declare function postV2ProxyCompletionsRerankConfigToJSON(postV2ProxyCompletionsRerankConfig: PostV2ProxyCompletionsRerankConfig): string;
2022
+ export declare function postV2ProxyCompletionsRerankConfigFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsRerankConfig, SDKValidationError>;
2023
+ /** @internal */
2024
+ export declare const PostV2ProxyCompletionsProxyProvider$inboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsProxyProvider>;
2025
+ /** @internal */
2026
+ export declare const PostV2ProxyCompletionsProxyProvider$outboundSchema: z.ZodNativeEnum<typeof PostV2ProxyCompletionsProxyProvider>;
2027
+ /**
2028
+ * @internal
2029
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2030
+ */
2031
+ export declare namespace PostV2ProxyCompletionsProxyProvider$ {
2032
+ /** @deprecated use `PostV2ProxyCompletionsProxyProvider$inboundSchema` instead. */
2033
+ const inboundSchema: z.ZodNativeEnum<{
2034
+ readonly Cohere: "cohere";
2035
+ readonly Openai: "openai";
2036
+ readonly Anthropic: "anthropic";
2037
+ readonly Huggingface: "huggingface";
2038
+ readonly Replicate: "replicate";
2039
+ readonly Google: "google";
2040
+ readonly GoogleAi: "google-ai";
2041
+ readonly Azure: "azure";
2042
+ readonly Aws: "aws";
2043
+ readonly Anyscale: "anyscale";
2044
+ readonly Perplexity: "perplexity";
2045
+ readonly Groq: "groq";
2046
+ readonly Fal: "fal";
2047
+ readonly Leonardoai: "leonardoai";
2048
+ readonly Nvidia: "nvidia";
2049
+ readonly Jina: "jina";
2050
+ readonly Togetherai: "togetherai";
2051
+ readonly Elevenlabs: "elevenlabs";
2052
+ readonly Litellm: "litellm";
2053
+ readonly Openailike: "openailike";
2054
+ readonly Cerebras: "cerebras";
2055
+ readonly Bytedance: "bytedance";
2056
+ }>;
2057
+ /** @deprecated use `PostV2ProxyCompletionsProxyProvider$outboundSchema` instead. */
2058
+ const outboundSchema: z.ZodNativeEnum<{
2059
+ readonly Cohere: "cohere";
2060
+ readonly Openai: "openai";
2061
+ readonly Anthropic: "anthropic";
2062
+ readonly Huggingface: "huggingface";
2063
+ readonly Replicate: "replicate";
2064
+ readonly Google: "google";
2065
+ readonly GoogleAi: "google-ai";
2066
+ readonly Azure: "azure";
2067
+ readonly Aws: "aws";
2068
+ readonly Anyscale: "anyscale";
2069
+ readonly Perplexity: "perplexity";
2070
+ readonly Groq: "groq";
2071
+ readonly Fal: "fal";
2072
+ readonly Leonardoai: "leonardoai";
2073
+ readonly Nvidia: "nvidia";
2074
+ readonly Jina: "jina";
2075
+ readonly Togetherai: "togetherai";
2076
+ readonly Elevenlabs: "elevenlabs";
2077
+ readonly Litellm: "litellm";
2078
+ readonly Openailike: "openailike";
2079
+ readonly Cerebras: "cerebras";
2080
+ readonly Bytedance: "bytedance";
2081
+ }>;
2082
+ }
2083
+ /** @internal */
2084
+ export declare const PostV2ProxyCompletionsAgenticRagConfig$inboundSchema: z.ZodType<PostV2ProxyCompletionsAgenticRagConfig, z.ZodTypeDef, unknown>;
2085
+ /** @internal */
2086
+ export type PostV2ProxyCompletionsAgenticRagConfig$Outbound = {
2087
+ model_db_id: string;
2088
+ provider: string;
2089
+ integration_id?: string | null | undefined;
2090
+ };
2091
+ /** @internal */
2092
+ export declare const PostV2ProxyCompletionsAgenticRagConfig$outboundSchema: z.ZodType<PostV2ProxyCompletionsAgenticRagConfig$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAgenticRagConfig>;
2093
+ /**
2094
+ * @internal
2095
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2096
+ */
2097
+ export declare namespace PostV2ProxyCompletionsAgenticRagConfig$ {
2098
+ /** @deprecated use `PostV2ProxyCompletionsAgenticRagConfig$inboundSchema` instead. */
2099
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsAgenticRagConfig, z.ZodTypeDef, unknown>;
2100
+ /** @deprecated use `PostV2ProxyCompletionsAgenticRagConfig$outboundSchema` instead. */
2101
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsAgenticRagConfig$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsAgenticRagConfig>;
2102
+ /** @deprecated use `PostV2ProxyCompletionsAgenticRagConfig$Outbound` instead. */
2103
+ type Outbound = PostV2ProxyCompletionsAgenticRagConfig$Outbound;
2104
+ }
2105
+ export declare function postV2ProxyCompletionsAgenticRagConfigToJSON(postV2ProxyCompletionsAgenticRagConfig: PostV2ProxyCompletionsAgenticRagConfig): string;
2106
+ export declare function postV2ProxyCompletionsAgenticRagConfigFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsAgenticRagConfig, SDKValidationError>;
2107
+ /** @internal */
2108
+ export declare const PostV2ProxyCompletionsKnowledgeBases$inboundSchema: z.ZodType<PostV2ProxyCompletionsKnowledgeBases, z.ZodTypeDef, unknown>;
2109
+ /** @internal */
2110
+ export type PostV2ProxyCompletionsKnowledgeBases$Outbound = {
2111
+ top_k?: number | undefined;
2112
+ threshold?: number | undefined;
2113
+ search_type: string;
2114
+ filter_by?: PostV2ProxyCompletionsFilterByAnd$Outbound | PostV2ProxyCompletionsFilterByOr$Outbound | {
2115
+ [k: string]: PostV2ProxyCompletions1Eq$Outbound | PostV2ProxyCompletions1Ne$Outbound | PostV2ProxyCompletions13$Outbound | PostV2ProxyCompletions1Gte$Outbound | PostV2ProxyCompletions1Lt$Outbound | PostV2ProxyCompletions1Lte$Outbound | PostV2ProxyCompletions1In$Outbound | PostV2ProxyCompletions1Nin$Outbound | PostV2ProxyCompletions1Exists$Outbound;
2116
+ } | undefined;
2117
+ search_options?: PostV2ProxyCompletionsSearchOptions$Outbound | undefined;
2118
+ rerank_config?: PostV2ProxyCompletionsRerankConfig$Outbound | null | undefined;
2119
+ agentic_rag_config?: PostV2ProxyCompletionsAgenticRagConfig$Outbound | undefined;
2120
+ knowledge_id: string;
2121
+ query?: string | undefined;
2122
+ };
2123
+ /** @internal */
2124
+ export declare const PostV2ProxyCompletionsKnowledgeBases$outboundSchema: z.ZodType<PostV2ProxyCompletionsKnowledgeBases$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsKnowledgeBases>;
2125
+ /**
2126
+ * @internal
2127
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2128
+ */
2129
+ export declare namespace PostV2ProxyCompletionsKnowledgeBases$ {
2130
+ /** @deprecated use `PostV2ProxyCompletionsKnowledgeBases$inboundSchema` instead. */
2131
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsKnowledgeBases, z.ZodTypeDef, unknown>;
2132
+ /** @deprecated use `PostV2ProxyCompletionsKnowledgeBases$outboundSchema` instead. */
2133
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsKnowledgeBases$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsKnowledgeBases>;
2134
+ /** @deprecated use `PostV2ProxyCompletionsKnowledgeBases$Outbound` instead. */
2135
+ type Outbound = PostV2ProxyCompletionsKnowledgeBases$Outbound;
2136
+ }
2137
+ export declare function postV2ProxyCompletionsKnowledgeBasesToJSON(postV2ProxyCompletionsKnowledgeBases: PostV2ProxyCompletionsKnowledgeBases): string;
2138
+ export declare function postV2ProxyCompletionsKnowledgeBasesFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsKnowledgeBases, SDKValidationError>;
2139
+ /** @internal */
2140
+ export declare const PostV2ProxyCompletionsOrq$inboundSchema: z.ZodType<PostV2ProxyCompletionsOrq, z.ZodTypeDef, unknown>;
2141
+ /** @internal */
2142
+ export type PostV2ProxyCompletionsOrq$Outbound = {
2143
+ name?: string | undefined;
2144
+ retry?: PostV2ProxyCompletionsRetry$Outbound | undefined;
2145
+ fallbacks?: Array<PostV2ProxyCompletionsFallbacks$Outbound> | undefined;
2146
+ prompt?: PostV2ProxyCompletionsPrompt$Outbound | undefined;
2147
+ contact?: components.PublicContact$Outbound | undefined;
2148
+ thread?: PostV2ProxyCompletionsThread$Outbound | undefined;
2149
+ inputs?: {
2150
+ [k: string]: any;
2151
+ } | undefined;
2152
+ cache?: PostV2ProxyCompletionsCache$Outbound | undefined;
2153
+ knowledge_bases?: Array<PostV2ProxyCompletionsKnowledgeBases$Outbound> | undefined;
2154
+ };
2155
+ /** @internal */
2156
+ export declare const PostV2ProxyCompletionsOrq$outboundSchema: z.ZodType<PostV2ProxyCompletionsOrq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrq>;
2157
+ /**
2158
+ * @internal
2159
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2160
+ */
2161
+ export declare namespace PostV2ProxyCompletionsOrq$ {
2162
+ /** @deprecated use `PostV2ProxyCompletionsOrq$inboundSchema` instead. */
2163
+ const inboundSchema: z.ZodType<PostV2ProxyCompletionsOrq, z.ZodTypeDef, unknown>;
2164
+ /** @deprecated use `PostV2ProxyCompletionsOrq$outboundSchema` instead. */
2165
+ const outboundSchema: z.ZodType<PostV2ProxyCompletionsOrq$Outbound, z.ZodTypeDef, PostV2ProxyCompletionsOrq>;
2166
+ /** @deprecated use `PostV2ProxyCompletionsOrq$Outbound` instead. */
2167
+ type Outbound = PostV2ProxyCompletionsOrq$Outbound;
2168
+ }
2169
+ export declare function postV2ProxyCompletionsOrqToJSON(postV2ProxyCompletionsOrq: PostV2ProxyCompletionsOrq): string;
2170
+ export declare function postV2ProxyCompletionsOrqFromJSON(jsonString: string): SafeParseResult<PostV2ProxyCompletionsOrq, SDKValidationError>;
2171
+ /** @internal */
274
2172
  export declare const PostV2ProxyCompletionsRequestBody$inboundSchema: z.ZodType<PostV2ProxyCompletionsRequestBody, z.ZodTypeDef, unknown>;
275
2173
  /** @internal */
276
2174
  export type PostV2ProxyCompletionsRequestBody$Outbound = {
@@ -285,6 +2183,7 @@ export type PostV2ProxyCompletionsRequestBody$Outbound = {
285
2183
  temperature: number | null;
286
2184
  top_p: number | null;
287
2185
  user?: string | undefined;
2186
+ orq?: PostV2ProxyCompletionsOrq$Outbound | undefined;
288
2187
  stream: boolean;
289
2188
  };
290
2189
  /** @internal */