@digitraffic/common 2025.9.12-2 → 2025.9.22-1

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.
@@ -3,1859 +3,482 @@ export declare const serverObject: z.ZodObject<{
3
3
  url: z.ZodString;
4
4
  description: z.ZodOptional<z.ZodString>;
5
5
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
- }, "strip", z.ZodTypeAny, {
7
- url: string;
8
- description?: string | undefined;
9
- variables?: Record<string, unknown> | undefined;
10
- }, {
11
- url: string;
12
- description?: string | undefined;
13
- variables?: Record<string, unknown> | undefined;
14
- }>;
6
+ }, z.core.$strip>;
15
7
  export declare const parameterObject: z.ZodObject<{
16
8
  name: z.ZodString;
17
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
9
+ in: z.ZodEnum<{
10
+ path: "path";
11
+ header: "header";
12
+ query: "query";
13
+ cookie: "cookie";
14
+ }>;
18
15
  description: z.ZodOptional<z.ZodString>;
19
16
  required: z.ZodOptional<z.ZodBoolean>;
20
17
  deprecated: z.ZodOptional<z.ZodBoolean>;
21
18
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
22
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
19
+ style: z.ZodOptional<z.ZodEnum<{
20
+ matrix: "matrix";
21
+ label: "label";
22
+ form: "form";
23
+ simple: "simple";
24
+ spaceDelimited: "spaceDelimited";
25
+ pipeDelimited: "pipeDelimited";
26
+ deepObject: "deepObject";
27
+ }>>;
23
28
  explode: z.ZodOptional<z.ZodString>;
24
29
  allowReserved: z.ZodOptional<z.ZodBoolean>;
25
30
  schema: z.ZodOptional<z.ZodUnknown>;
26
31
  example: z.ZodOptional<z.ZodUnknown>;
27
32
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
28
33
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
29
- }, "strip", z.ZodTypeAny, {
30
- name: string;
31
- in: "path" | "header" | "cookie" | "query";
32
- description?: string | undefined;
33
- required?: boolean | undefined;
34
- deprecated?: boolean | undefined;
35
- allowEmptyValue?: boolean | undefined;
36
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
37
- explode?: string | undefined;
38
- allowReserved?: boolean | undefined;
39
- schema?: unknown;
40
- example?: unknown;
41
- examples?: Record<string, unknown> | undefined;
42
- content?: Record<string, unknown> | undefined;
43
- }, {
44
- name: string;
45
- in: "path" | "header" | "cookie" | "query";
46
- description?: string | undefined;
47
- required?: boolean | undefined;
48
- deprecated?: boolean | undefined;
49
- allowEmptyValue?: boolean | undefined;
50
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
51
- explode?: string | undefined;
52
- allowReserved?: boolean | undefined;
53
- schema?: unknown;
54
- example?: unknown;
55
- examples?: Record<string, unknown> | undefined;
56
- content?: Record<string, unknown> | undefined;
57
- }>;
34
+ }, z.core.$strip>;
58
35
  export declare const referenceObject: z.ZodObject<{
59
36
  $ref: z.ZodString;
60
37
  summary: z.ZodOptional<z.ZodString>;
61
38
  description: z.ZodOptional<z.ZodString>;
62
- }, "strip", z.ZodTypeAny, {
63
- $ref: string;
64
- description?: string | undefined;
65
- summary?: string | undefined;
66
- }, {
67
- $ref: string;
68
- description?: string | undefined;
69
- summary?: string | undefined;
70
- }>;
39
+ }, z.core.$strip>;
71
40
  export declare const openapiOperation: z.ZodObject<{
72
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
41
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
73
42
  summary: z.ZodOptional<z.ZodString>;
74
43
  description: z.ZodOptional<z.ZodString>;
75
44
  externalDocs: z.ZodOptional<z.ZodUnknown>;
76
45
  operationId: z.ZodOptional<z.ZodString>;
77
46
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
78
47
  name: z.ZodString;
79
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
48
+ in: z.ZodEnum<{
49
+ path: "path";
50
+ header: "header";
51
+ query: "query";
52
+ cookie: "cookie";
53
+ }>;
80
54
  description: z.ZodOptional<z.ZodString>;
81
55
  required: z.ZodOptional<z.ZodBoolean>;
82
56
  deprecated: z.ZodOptional<z.ZodBoolean>;
83
57
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
84
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
58
+ style: z.ZodOptional<z.ZodEnum<{
59
+ matrix: "matrix";
60
+ label: "label";
61
+ form: "form";
62
+ simple: "simple";
63
+ spaceDelimited: "spaceDelimited";
64
+ pipeDelimited: "pipeDelimited";
65
+ deepObject: "deepObject";
66
+ }>>;
85
67
  explode: z.ZodOptional<z.ZodString>;
86
68
  allowReserved: z.ZodOptional<z.ZodBoolean>;
87
69
  schema: z.ZodOptional<z.ZodUnknown>;
88
70
  example: z.ZodOptional<z.ZodUnknown>;
89
71
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
90
72
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
91
- }, "strip", z.ZodTypeAny, {
92
- name: string;
93
- in: "path" | "header" | "cookie" | "query";
94
- description?: string | undefined;
95
- required?: boolean | undefined;
96
- deprecated?: boolean | undefined;
97
- allowEmptyValue?: boolean | undefined;
98
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
99
- explode?: string | undefined;
100
- allowReserved?: boolean | undefined;
101
- schema?: unknown;
102
- example?: unknown;
103
- examples?: Record<string, unknown> | undefined;
104
- content?: Record<string, unknown> | undefined;
105
- }, {
106
- name: string;
107
- in: "path" | "header" | "cookie" | "query";
108
- description?: string | undefined;
109
- required?: boolean | undefined;
110
- deprecated?: boolean | undefined;
111
- allowEmptyValue?: boolean | undefined;
112
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
113
- explode?: string | undefined;
114
- allowReserved?: boolean | undefined;
115
- schema?: unknown;
116
- example?: unknown;
117
- examples?: Record<string, unknown> | undefined;
118
- content?: Record<string, unknown> | undefined;
119
- }>, z.ZodObject<{
73
+ }, z.core.$strip>, z.ZodObject<{
120
74
  $ref: z.ZodString;
121
75
  summary: z.ZodOptional<z.ZodString>;
122
76
  description: z.ZodOptional<z.ZodString>;
123
- }, "strip", z.ZodTypeAny, {
124
- $ref: string;
125
- description?: string | undefined;
126
- summary?: string | undefined;
127
- }, {
128
- $ref: string;
129
- description?: string | undefined;
130
- summary?: string | undefined;
131
- }>]>, "many">>;
77
+ }, z.core.$strip>]>>>;
132
78
  requestBody: z.ZodOptional<z.ZodUnknown>;
133
79
  responses: z.ZodOptional<z.ZodUnknown>;
134
80
  callbacks: z.ZodOptional<z.ZodUnknown>;
135
81
  deprecated: z.ZodOptional<z.ZodBoolean>;
136
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
137
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
138
- }, "strip", z.ZodTypeAny, {
139
- description?: string | undefined;
140
- tags?: string[] | undefined;
141
- summary?: string | undefined;
142
- responses?: unknown;
143
- parameters?: ({
144
- name: string;
145
- in: "path" | "header" | "cookie" | "query";
146
- description?: string | undefined;
147
- required?: boolean | undefined;
148
- deprecated?: boolean | undefined;
149
- allowEmptyValue?: boolean | undefined;
150
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
151
- explode?: string | undefined;
152
- allowReserved?: boolean | undefined;
153
- schema?: unknown;
154
- example?: unknown;
155
- examples?: Record<string, unknown> | undefined;
156
- content?: Record<string, unknown> | undefined;
157
- } | {
158
- $ref: string;
159
- description?: string | undefined;
160
- summary?: string | undefined;
161
- })[] | undefined;
162
- deprecated?: boolean | undefined;
163
- externalDocs?: unknown;
164
- operationId?: string | undefined;
165
- requestBody?: unknown;
166
- callbacks?: unknown;
167
- security?: Record<string, string[]>[] | undefined;
168
- servers?: unknown[] | undefined;
169
- }, {
170
- description?: string | undefined;
171
- tags?: string[] | undefined;
172
- summary?: string | undefined;
173
- responses?: unknown;
174
- parameters?: ({
175
- name: string;
176
- in: "path" | "header" | "cookie" | "query";
177
- description?: string | undefined;
178
- required?: boolean | undefined;
179
- deprecated?: boolean | undefined;
180
- allowEmptyValue?: boolean | undefined;
181
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
182
- explode?: string | undefined;
183
- allowReserved?: boolean | undefined;
184
- schema?: unknown;
185
- example?: unknown;
186
- examples?: Record<string, unknown> | undefined;
187
- content?: Record<string, unknown> | undefined;
188
- } | {
189
- $ref: string;
190
- description?: string | undefined;
191
- summary?: string | undefined;
192
- })[] | undefined;
193
- deprecated?: boolean | undefined;
194
- externalDocs?: unknown;
195
- operationId?: string | undefined;
196
- requestBody?: unknown;
197
- callbacks?: unknown;
198
- security?: Record<string, string[]>[] | undefined;
199
- servers?: unknown[] | undefined;
200
- }>;
82
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
83
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
84
+ }, z.core.$strip>;
201
85
  export declare const openapiPathItem: z.ZodObject<{
202
86
  summary: z.ZodOptional<z.ZodString>;
203
87
  description: z.ZodOptional<z.ZodString>;
204
88
  get: z.ZodOptional<z.ZodObject<{
205
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
89
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
206
90
  summary: z.ZodOptional<z.ZodString>;
207
91
  description: z.ZodOptional<z.ZodString>;
208
92
  externalDocs: z.ZodOptional<z.ZodUnknown>;
209
93
  operationId: z.ZodOptional<z.ZodString>;
210
94
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
211
95
  name: z.ZodString;
212
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
96
+ in: z.ZodEnum<{
97
+ path: "path";
98
+ header: "header";
99
+ query: "query";
100
+ cookie: "cookie";
101
+ }>;
213
102
  description: z.ZodOptional<z.ZodString>;
214
103
  required: z.ZodOptional<z.ZodBoolean>;
215
104
  deprecated: z.ZodOptional<z.ZodBoolean>;
216
105
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
217
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
106
+ style: z.ZodOptional<z.ZodEnum<{
107
+ matrix: "matrix";
108
+ label: "label";
109
+ form: "form";
110
+ simple: "simple";
111
+ spaceDelimited: "spaceDelimited";
112
+ pipeDelimited: "pipeDelimited";
113
+ deepObject: "deepObject";
114
+ }>>;
218
115
  explode: z.ZodOptional<z.ZodString>;
219
116
  allowReserved: z.ZodOptional<z.ZodBoolean>;
220
117
  schema: z.ZodOptional<z.ZodUnknown>;
221
118
  example: z.ZodOptional<z.ZodUnknown>;
222
119
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
223
120
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
224
- }, "strip", z.ZodTypeAny, {
225
- name: string;
226
- in: "path" | "header" | "cookie" | "query";
227
- description?: string | undefined;
228
- required?: boolean | undefined;
229
- deprecated?: boolean | undefined;
230
- allowEmptyValue?: boolean | undefined;
231
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
232
- explode?: string | undefined;
233
- allowReserved?: boolean | undefined;
234
- schema?: unknown;
235
- example?: unknown;
236
- examples?: Record<string, unknown> | undefined;
237
- content?: Record<string, unknown> | undefined;
238
- }, {
239
- name: string;
240
- in: "path" | "header" | "cookie" | "query";
241
- description?: string | undefined;
242
- required?: boolean | undefined;
243
- deprecated?: boolean | undefined;
244
- allowEmptyValue?: boolean | undefined;
245
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
246
- explode?: string | undefined;
247
- allowReserved?: boolean | undefined;
248
- schema?: unknown;
249
- example?: unknown;
250
- examples?: Record<string, unknown> | undefined;
251
- content?: Record<string, unknown> | undefined;
252
- }>, z.ZodObject<{
121
+ }, z.core.$strip>, z.ZodObject<{
253
122
  $ref: z.ZodString;
254
123
  summary: z.ZodOptional<z.ZodString>;
255
124
  description: z.ZodOptional<z.ZodString>;
256
- }, "strip", z.ZodTypeAny, {
257
- $ref: string;
258
- description?: string | undefined;
259
- summary?: string | undefined;
260
- }, {
261
- $ref: string;
262
- description?: string | undefined;
263
- summary?: string | undefined;
264
- }>]>, "many">>;
125
+ }, z.core.$strip>]>>>;
265
126
  requestBody: z.ZodOptional<z.ZodUnknown>;
266
127
  responses: z.ZodOptional<z.ZodUnknown>;
267
128
  callbacks: z.ZodOptional<z.ZodUnknown>;
268
129
  deprecated: z.ZodOptional<z.ZodBoolean>;
269
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
270
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
271
- }, "strip", z.ZodTypeAny, {
272
- description?: string | undefined;
273
- tags?: string[] | undefined;
274
- summary?: string | undefined;
275
- responses?: unknown;
276
- parameters?: ({
277
- name: string;
278
- in: "path" | "header" | "cookie" | "query";
279
- description?: string | undefined;
280
- required?: boolean | undefined;
281
- deprecated?: boolean | undefined;
282
- allowEmptyValue?: boolean | undefined;
283
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
284
- explode?: string | undefined;
285
- allowReserved?: boolean | undefined;
286
- schema?: unknown;
287
- example?: unknown;
288
- examples?: Record<string, unknown> | undefined;
289
- content?: Record<string, unknown> | undefined;
290
- } | {
291
- $ref: string;
292
- description?: string | undefined;
293
- summary?: string | undefined;
294
- })[] | undefined;
295
- deprecated?: boolean | undefined;
296
- externalDocs?: unknown;
297
- operationId?: string | undefined;
298
- requestBody?: unknown;
299
- callbacks?: unknown;
300
- security?: Record<string, string[]>[] | undefined;
301
- servers?: unknown[] | undefined;
302
- }, {
303
- description?: string | undefined;
304
- tags?: string[] | undefined;
305
- summary?: string | undefined;
306
- responses?: unknown;
307
- parameters?: ({
308
- name: string;
309
- in: "path" | "header" | "cookie" | "query";
310
- description?: string | undefined;
311
- required?: boolean | undefined;
312
- deprecated?: boolean | undefined;
313
- allowEmptyValue?: boolean | undefined;
314
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
315
- explode?: string | undefined;
316
- allowReserved?: boolean | undefined;
317
- schema?: unknown;
318
- example?: unknown;
319
- examples?: Record<string, unknown> | undefined;
320
- content?: Record<string, unknown> | undefined;
321
- } | {
322
- $ref: string;
323
- description?: string | undefined;
324
- summary?: string | undefined;
325
- })[] | undefined;
326
- deprecated?: boolean | undefined;
327
- externalDocs?: unknown;
328
- operationId?: string | undefined;
329
- requestBody?: unknown;
330
- callbacks?: unknown;
331
- security?: Record<string, string[]>[] | undefined;
332
- servers?: unknown[] | undefined;
333
- }>>;
130
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
131
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
132
+ }, z.core.$strip>>;
334
133
  put: z.ZodOptional<z.ZodObject<{
335
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
134
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
336
135
  summary: z.ZodOptional<z.ZodString>;
337
136
  description: z.ZodOptional<z.ZodString>;
338
137
  externalDocs: z.ZodOptional<z.ZodUnknown>;
339
138
  operationId: z.ZodOptional<z.ZodString>;
340
139
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
341
140
  name: z.ZodString;
342
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
141
+ in: z.ZodEnum<{
142
+ path: "path";
143
+ header: "header";
144
+ query: "query";
145
+ cookie: "cookie";
146
+ }>;
343
147
  description: z.ZodOptional<z.ZodString>;
344
148
  required: z.ZodOptional<z.ZodBoolean>;
345
149
  deprecated: z.ZodOptional<z.ZodBoolean>;
346
150
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
347
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
151
+ style: z.ZodOptional<z.ZodEnum<{
152
+ matrix: "matrix";
153
+ label: "label";
154
+ form: "form";
155
+ simple: "simple";
156
+ spaceDelimited: "spaceDelimited";
157
+ pipeDelimited: "pipeDelimited";
158
+ deepObject: "deepObject";
159
+ }>>;
348
160
  explode: z.ZodOptional<z.ZodString>;
349
161
  allowReserved: z.ZodOptional<z.ZodBoolean>;
350
162
  schema: z.ZodOptional<z.ZodUnknown>;
351
163
  example: z.ZodOptional<z.ZodUnknown>;
352
164
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
353
165
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
354
- }, "strip", z.ZodTypeAny, {
355
- name: string;
356
- in: "path" | "header" | "cookie" | "query";
357
- description?: string | undefined;
358
- required?: boolean | undefined;
359
- deprecated?: boolean | undefined;
360
- allowEmptyValue?: boolean | undefined;
361
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
362
- explode?: string | undefined;
363
- allowReserved?: boolean | undefined;
364
- schema?: unknown;
365
- example?: unknown;
366
- examples?: Record<string, unknown> | undefined;
367
- content?: Record<string, unknown> | undefined;
368
- }, {
369
- name: string;
370
- in: "path" | "header" | "cookie" | "query";
371
- description?: string | undefined;
372
- required?: boolean | undefined;
373
- deprecated?: boolean | undefined;
374
- allowEmptyValue?: boolean | undefined;
375
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
376
- explode?: string | undefined;
377
- allowReserved?: boolean | undefined;
378
- schema?: unknown;
379
- example?: unknown;
380
- examples?: Record<string, unknown> | undefined;
381
- content?: Record<string, unknown> | undefined;
382
- }>, z.ZodObject<{
166
+ }, z.core.$strip>, z.ZodObject<{
383
167
  $ref: z.ZodString;
384
168
  summary: z.ZodOptional<z.ZodString>;
385
169
  description: z.ZodOptional<z.ZodString>;
386
- }, "strip", z.ZodTypeAny, {
387
- $ref: string;
388
- description?: string | undefined;
389
- summary?: string | undefined;
390
- }, {
391
- $ref: string;
392
- description?: string | undefined;
393
- summary?: string | undefined;
394
- }>]>, "many">>;
170
+ }, z.core.$strip>]>>>;
395
171
  requestBody: z.ZodOptional<z.ZodUnknown>;
396
172
  responses: z.ZodOptional<z.ZodUnknown>;
397
173
  callbacks: z.ZodOptional<z.ZodUnknown>;
398
174
  deprecated: z.ZodOptional<z.ZodBoolean>;
399
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
400
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
401
- }, "strip", z.ZodTypeAny, {
402
- description?: string | undefined;
403
- tags?: string[] | undefined;
404
- summary?: string | undefined;
405
- responses?: unknown;
406
- parameters?: ({
407
- name: string;
408
- in: "path" | "header" | "cookie" | "query";
409
- description?: string | undefined;
410
- required?: boolean | undefined;
411
- deprecated?: boolean | undefined;
412
- allowEmptyValue?: boolean | undefined;
413
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
414
- explode?: string | undefined;
415
- allowReserved?: boolean | undefined;
416
- schema?: unknown;
417
- example?: unknown;
418
- examples?: Record<string, unknown> | undefined;
419
- content?: Record<string, unknown> | undefined;
420
- } | {
421
- $ref: string;
422
- description?: string | undefined;
423
- summary?: string | undefined;
424
- })[] | undefined;
425
- deprecated?: boolean | undefined;
426
- externalDocs?: unknown;
427
- operationId?: string | undefined;
428
- requestBody?: unknown;
429
- callbacks?: unknown;
430
- security?: Record<string, string[]>[] | undefined;
431
- servers?: unknown[] | undefined;
432
- }, {
433
- description?: string | undefined;
434
- tags?: string[] | undefined;
435
- summary?: string | undefined;
436
- responses?: unknown;
437
- parameters?: ({
438
- name: string;
439
- in: "path" | "header" | "cookie" | "query";
440
- description?: string | undefined;
441
- required?: boolean | undefined;
442
- deprecated?: boolean | undefined;
443
- allowEmptyValue?: boolean | undefined;
444
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
445
- explode?: string | undefined;
446
- allowReserved?: boolean | undefined;
447
- schema?: unknown;
448
- example?: unknown;
449
- examples?: Record<string, unknown> | undefined;
450
- content?: Record<string, unknown> | undefined;
451
- } | {
452
- $ref: string;
453
- description?: string | undefined;
454
- summary?: string | undefined;
455
- })[] | undefined;
456
- deprecated?: boolean | undefined;
457
- externalDocs?: unknown;
458
- operationId?: string | undefined;
459
- requestBody?: unknown;
460
- callbacks?: unknown;
461
- security?: Record<string, string[]>[] | undefined;
462
- servers?: unknown[] | undefined;
463
- }>>;
175
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
176
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
177
+ }, z.core.$strip>>;
464
178
  post: z.ZodOptional<z.ZodObject<{
465
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
179
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
466
180
  summary: z.ZodOptional<z.ZodString>;
467
181
  description: z.ZodOptional<z.ZodString>;
468
182
  externalDocs: z.ZodOptional<z.ZodUnknown>;
469
183
  operationId: z.ZodOptional<z.ZodString>;
470
184
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
471
185
  name: z.ZodString;
472
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
186
+ in: z.ZodEnum<{
187
+ path: "path";
188
+ header: "header";
189
+ query: "query";
190
+ cookie: "cookie";
191
+ }>;
473
192
  description: z.ZodOptional<z.ZodString>;
474
193
  required: z.ZodOptional<z.ZodBoolean>;
475
194
  deprecated: z.ZodOptional<z.ZodBoolean>;
476
195
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
477
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
196
+ style: z.ZodOptional<z.ZodEnum<{
197
+ matrix: "matrix";
198
+ label: "label";
199
+ form: "form";
200
+ simple: "simple";
201
+ spaceDelimited: "spaceDelimited";
202
+ pipeDelimited: "pipeDelimited";
203
+ deepObject: "deepObject";
204
+ }>>;
478
205
  explode: z.ZodOptional<z.ZodString>;
479
206
  allowReserved: z.ZodOptional<z.ZodBoolean>;
480
207
  schema: z.ZodOptional<z.ZodUnknown>;
481
208
  example: z.ZodOptional<z.ZodUnknown>;
482
209
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
483
210
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
484
- }, "strip", z.ZodTypeAny, {
485
- name: string;
486
- in: "path" | "header" | "cookie" | "query";
487
- description?: string | undefined;
488
- required?: boolean | undefined;
489
- deprecated?: boolean | undefined;
490
- allowEmptyValue?: boolean | undefined;
491
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
492
- explode?: string | undefined;
493
- allowReserved?: boolean | undefined;
494
- schema?: unknown;
495
- example?: unknown;
496
- examples?: Record<string, unknown> | undefined;
497
- content?: Record<string, unknown> | undefined;
498
- }, {
499
- name: string;
500
- in: "path" | "header" | "cookie" | "query";
501
- description?: string | undefined;
502
- required?: boolean | undefined;
503
- deprecated?: boolean | undefined;
504
- allowEmptyValue?: boolean | undefined;
505
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
506
- explode?: string | undefined;
507
- allowReserved?: boolean | undefined;
508
- schema?: unknown;
509
- example?: unknown;
510
- examples?: Record<string, unknown> | undefined;
511
- content?: Record<string, unknown> | undefined;
512
- }>, z.ZodObject<{
211
+ }, z.core.$strip>, z.ZodObject<{
513
212
  $ref: z.ZodString;
514
213
  summary: z.ZodOptional<z.ZodString>;
515
214
  description: z.ZodOptional<z.ZodString>;
516
- }, "strip", z.ZodTypeAny, {
517
- $ref: string;
518
- description?: string | undefined;
519
- summary?: string | undefined;
520
- }, {
521
- $ref: string;
522
- description?: string | undefined;
523
- summary?: string | undefined;
524
- }>]>, "many">>;
215
+ }, z.core.$strip>]>>>;
525
216
  requestBody: z.ZodOptional<z.ZodUnknown>;
526
217
  responses: z.ZodOptional<z.ZodUnknown>;
527
218
  callbacks: z.ZodOptional<z.ZodUnknown>;
528
219
  deprecated: z.ZodOptional<z.ZodBoolean>;
529
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
530
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
531
- }, "strip", z.ZodTypeAny, {
532
- description?: string | undefined;
533
- tags?: string[] | undefined;
534
- summary?: string | undefined;
535
- responses?: unknown;
536
- parameters?: ({
537
- name: string;
538
- in: "path" | "header" | "cookie" | "query";
539
- description?: string | undefined;
540
- required?: boolean | undefined;
541
- deprecated?: boolean | undefined;
542
- allowEmptyValue?: boolean | undefined;
543
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
544
- explode?: string | undefined;
545
- allowReserved?: boolean | undefined;
546
- schema?: unknown;
547
- example?: unknown;
548
- examples?: Record<string, unknown> | undefined;
549
- content?: Record<string, unknown> | undefined;
550
- } | {
551
- $ref: string;
552
- description?: string | undefined;
553
- summary?: string | undefined;
554
- })[] | undefined;
555
- deprecated?: boolean | undefined;
556
- externalDocs?: unknown;
557
- operationId?: string | undefined;
558
- requestBody?: unknown;
559
- callbacks?: unknown;
560
- security?: Record<string, string[]>[] | undefined;
561
- servers?: unknown[] | undefined;
562
- }, {
563
- description?: string | undefined;
564
- tags?: string[] | undefined;
565
- summary?: string | undefined;
566
- responses?: unknown;
567
- parameters?: ({
568
- name: string;
569
- in: "path" | "header" | "cookie" | "query";
570
- description?: string | undefined;
571
- required?: boolean | undefined;
572
- deprecated?: boolean | undefined;
573
- allowEmptyValue?: boolean | undefined;
574
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
575
- explode?: string | undefined;
576
- allowReserved?: boolean | undefined;
577
- schema?: unknown;
578
- example?: unknown;
579
- examples?: Record<string, unknown> | undefined;
580
- content?: Record<string, unknown> | undefined;
581
- } | {
582
- $ref: string;
583
- description?: string | undefined;
584
- summary?: string | undefined;
585
- })[] | undefined;
586
- deprecated?: boolean | undefined;
587
- externalDocs?: unknown;
588
- operationId?: string | undefined;
589
- requestBody?: unknown;
590
- callbacks?: unknown;
591
- security?: Record<string, string[]>[] | undefined;
592
- servers?: unknown[] | undefined;
593
- }>>;
220
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
221
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
222
+ }, z.core.$strip>>;
594
223
  delete: z.ZodOptional<z.ZodObject<{
595
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
224
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
596
225
  summary: z.ZodOptional<z.ZodString>;
597
226
  description: z.ZodOptional<z.ZodString>;
598
227
  externalDocs: z.ZodOptional<z.ZodUnknown>;
599
228
  operationId: z.ZodOptional<z.ZodString>;
600
229
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
601
230
  name: z.ZodString;
602
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
231
+ in: z.ZodEnum<{
232
+ path: "path";
233
+ header: "header";
234
+ query: "query";
235
+ cookie: "cookie";
236
+ }>;
603
237
  description: z.ZodOptional<z.ZodString>;
604
238
  required: z.ZodOptional<z.ZodBoolean>;
605
239
  deprecated: z.ZodOptional<z.ZodBoolean>;
606
240
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
607
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
241
+ style: z.ZodOptional<z.ZodEnum<{
242
+ matrix: "matrix";
243
+ label: "label";
244
+ form: "form";
245
+ simple: "simple";
246
+ spaceDelimited: "spaceDelimited";
247
+ pipeDelimited: "pipeDelimited";
248
+ deepObject: "deepObject";
249
+ }>>;
608
250
  explode: z.ZodOptional<z.ZodString>;
609
251
  allowReserved: z.ZodOptional<z.ZodBoolean>;
610
252
  schema: z.ZodOptional<z.ZodUnknown>;
611
253
  example: z.ZodOptional<z.ZodUnknown>;
612
254
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
613
255
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
614
- }, "strip", z.ZodTypeAny, {
615
- name: string;
616
- in: "path" | "header" | "cookie" | "query";
617
- description?: string | undefined;
618
- required?: boolean | undefined;
619
- deprecated?: boolean | undefined;
620
- allowEmptyValue?: boolean | undefined;
621
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
622
- explode?: string | undefined;
623
- allowReserved?: boolean | undefined;
624
- schema?: unknown;
625
- example?: unknown;
626
- examples?: Record<string, unknown> | undefined;
627
- content?: Record<string, unknown> | undefined;
628
- }, {
629
- name: string;
630
- in: "path" | "header" | "cookie" | "query";
631
- description?: string | undefined;
632
- required?: boolean | undefined;
633
- deprecated?: boolean | undefined;
634
- allowEmptyValue?: boolean | undefined;
635
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
636
- explode?: string | undefined;
637
- allowReserved?: boolean | undefined;
638
- schema?: unknown;
639
- example?: unknown;
640
- examples?: Record<string, unknown> | undefined;
641
- content?: Record<string, unknown> | undefined;
642
- }>, z.ZodObject<{
256
+ }, z.core.$strip>, z.ZodObject<{
643
257
  $ref: z.ZodString;
644
258
  summary: z.ZodOptional<z.ZodString>;
645
259
  description: z.ZodOptional<z.ZodString>;
646
- }, "strip", z.ZodTypeAny, {
647
- $ref: string;
648
- description?: string | undefined;
649
- summary?: string | undefined;
650
- }, {
651
- $ref: string;
652
- description?: string | undefined;
653
- summary?: string | undefined;
654
- }>]>, "many">>;
260
+ }, z.core.$strip>]>>>;
655
261
  requestBody: z.ZodOptional<z.ZodUnknown>;
656
262
  responses: z.ZodOptional<z.ZodUnknown>;
657
263
  callbacks: z.ZodOptional<z.ZodUnknown>;
658
264
  deprecated: z.ZodOptional<z.ZodBoolean>;
659
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
660
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
661
- }, "strip", z.ZodTypeAny, {
662
- description?: string | undefined;
663
- tags?: string[] | undefined;
664
- summary?: string | undefined;
665
- responses?: unknown;
666
- parameters?: ({
667
- name: string;
668
- in: "path" | "header" | "cookie" | "query";
669
- description?: string | undefined;
670
- required?: boolean | undefined;
671
- deprecated?: boolean | undefined;
672
- allowEmptyValue?: boolean | undefined;
673
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
674
- explode?: string | undefined;
675
- allowReserved?: boolean | undefined;
676
- schema?: unknown;
677
- example?: unknown;
678
- examples?: Record<string, unknown> | undefined;
679
- content?: Record<string, unknown> | undefined;
680
- } | {
681
- $ref: string;
682
- description?: string | undefined;
683
- summary?: string | undefined;
684
- })[] | undefined;
685
- deprecated?: boolean | undefined;
686
- externalDocs?: unknown;
687
- operationId?: string | undefined;
688
- requestBody?: unknown;
689
- callbacks?: unknown;
690
- security?: Record<string, string[]>[] | undefined;
691
- servers?: unknown[] | undefined;
692
- }, {
693
- description?: string | undefined;
694
- tags?: string[] | undefined;
695
- summary?: string | undefined;
696
- responses?: unknown;
697
- parameters?: ({
698
- name: string;
699
- in: "path" | "header" | "cookie" | "query";
700
- description?: string | undefined;
701
- required?: boolean | undefined;
702
- deprecated?: boolean | undefined;
703
- allowEmptyValue?: boolean | undefined;
704
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
705
- explode?: string | undefined;
706
- allowReserved?: boolean | undefined;
707
- schema?: unknown;
708
- example?: unknown;
709
- examples?: Record<string, unknown> | undefined;
710
- content?: Record<string, unknown> | undefined;
711
- } | {
712
- $ref: string;
713
- description?: string | undefined;
714
- summary?: string | undefined;
715
- })[] | undefined;
716
- deprecated?: boolean | undefined;
717
- externalDocs?: unknown;
718
- operationId?: string | undefined;
719
- requestBody?: unknown;
720
- callbacks?: unknown;
721
- security?: Record<string, string[]>[] | undefined;
722
- servers?: unknown[] | undefined;
723
- }>>;
265
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
266
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
267
+ }, z.core.$strip>>;
724
268
  options: z.ZodOptional<z.ZodObject<{
725
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
269
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
726
270
  summary: z.ZodOptional<z.ZodString>;
727
271
  description: z.ZodOptional<z.ZodString>;
728
272
  externalDocs: z.ZodOptional<z.ZodUnknown>;
729
273
  operationId: z.ZodOptional<z.ZodString>;
730
274
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
731
275
  name: z.ZodString;
732
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
276
+ in: z.ZodEnum<{
277
+ path: "path";
278
+ header: "header";
279
+ query: "query";
280
+ cookie: "cookie";
281
+ }>;
733
282
  description: z.ZodOptional<z.ZodString>;
734
283
  required: z.ZodOptional<z.ZodBoolean>;
735
284
  deprecated: z.ZodOptional<z.ZodBoolean>;
736
285
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
737
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
286
+ style: z.ZodOptional<z.ZodEnum<{
287
+ matrix: "matrix";
288
+ label: "label";
289
+ form: "form";
290
+ simple: "simple";
291
+ spaceDelimited: "spaceDelimited";
292
+ pipeDelimited: "pipeDelimited";
293
+ deepObject: "deepObject";
294
+ }>>;
738
295
  explode: z.ZodOptional<z.ZodString>;
739
296
  allowReserved: z.ZodOptional<z.ZodBoolean>;
740
297
  schema: z.ZodOptional<z.ZodUnknown>;
741
298
  example: z.ZodOptional<z.ZodUnknown>;
742
299
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
743
300
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
744
- }, "strip", z.ZodTypeAny, {
745
- name: string;
746
- in: "path" | "header" | "cookie" | "query";
747
- description?: string | undefined;
748
- required?: boolean | undefined;
749
- deprecated?: boolean | undefined;
750
- allowEmptyValue?: boolean | undefined;
751
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
752
- explode?: string | undefined;
753
- allowReserved?: boolean | undefined;
754
- schema?: unknown;
755
- example?: unknown;
756
- examples?: Record<string, unknown> | undefined;
757
- content?: Record<string, unknown> | undefined;
758
- }, {
759
- name: string;
760
- in: "path" | "header" | "cookie" | "query";
761
- description?: string | undefined;
762
- required?: boolean | undefined;
763
- deprecated?: boolean | undefined;
764
- allowEmptyValue?: boolean | undefined;
765
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
766
- explode?: string | undefined;
767
- allowReserved?: boolean | undefined;
768
- schema?: unknown;
769
- example?: unknown;
770
- examples?: Record<string, unknown> | undefined;
771
- content?: Record<string, unknown> | undefined;
772
- }>, z.ZodObject<{
301
+ }, z.core.$strip>, z.ZodObject<{
773
302
  $ref: z.ZodString;
774
303
  summary: z.ZodOptional<z.ZodString>;
775
304
  description: z.ZodOptional<z.ZodString>;
776
- }, "strip", z.ZodTypeAny, {
777
- $ref: string;
778
- description?: string | undefined;
779
- summary?: string | undefined;
780
- }, {
781
- $ref: string;
782
- description?: string | undefined;
783
- summary?: string | undefined;
784
- }>]>, "many">>;
305
+ }, z.core.$strip>]>>>;
785
306
  requestBody: z.ZodOptional<z.ZodUnknown>;
786
307
  responses: z.ZodOptional<z.ZodUnknown>;
787
308
  callbacks: z.ZodOptional<z.ZodUnknown>;
788
309
  deprecated: z.ZodOptional<z.ZodBoolean>;
789
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
790
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
791
- }, "strip", z.ZodTypeAny, {
792
- description?: string | undefined;
793
- tags?: string[] | undefined;
794
- summary?: string | undefined;
795
- responses?: unknown;
796
- parameters?: ({
797
- name: string;
798
- in: "path" | "header" | "cookie" | "query";
799
- description?: string | undefined;
800
- required?: boolean | undefined;
801
- deprecated?: boolean | undefined;
802
- allowEmptyValue?: boolean | undefined;
803
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
804
- explode?: string | undefined;
805
- allowReserved?: boolean | undefined;
806
- schema?: unknown;
807
- example?: unknown;
808
- examples?: Record<string, unknown> | undefined;
809
- content?: Record<string, unknown> | undefined;
810
- } | {
811
- $ref: string;
812
- description?: string | undefined;
813
- summary?: string | undefined;
814
- })[] | undefined;
815
- deprecated?: boolean | undefined;
816
- externalDocs?: unknown;
817
- operationId?: string | undefined;
818
- requestBody?: unknown;
819
- callbacks?: unknown;
820
- security?: Record<string, string[]>[] | undefined;
821
- servers?: unknown[] | undefined;
822
- }, {
823
- description?: string | undefined;
824
- tags?: string[] | undefined;
825
- summary?: string | undefined;
826
- responses?: unknown;
827
- parameters?: ({
828
- name: string;
829
- in: "path" | "header" | "cookie" | "query";
830
- description?: string | undefined;
831
- required?: boolean | undefined;
832
- deprecated?: boolean | undefined;
833
- allowEmptyValue?: boolean | undefined;
834
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
835
- explode?: string | undefined;
836
- allowReserved?: boolean | undefined;
837
- schema?: unknown;
838
- example?: unknown;
839
- examples?: Record<string, unknown> | undefined;
840
- content?: Record<string, unknown> | undefined;
841
- } | {
842
- $ref: string;
843
- description?: string | undefined;
844
- summary?: string | undefined;
845
- })[] | undefined;
846
- deprecated?: boolean | undefined;
847
- externalDocs?: unknown;
848
- operationId?: string | undefined;
849
- requestBody?: unknown;
850
- callbacks?: unknown;
851
- security?: Record<string, string[]>[] | undefined;
852
- servers?: unknown[] | undefined;
853
- }>>;
310
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
311
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
312
+ }, z.core.$strip>>;
854
313
  head: z.ZodOptional<z.ZodObject<{
855
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
314
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
856
315
  summary: z.ZodOptional<z.ZodString>;
857
316
  description: z.ZodOptional<z.ZodString>;
858
317
  externalDocs: z.ZodOptional<z.ZodUnknown>;
859
318
  operationId: z.ZodOptional<z.ZodString>;
860
319
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
861
320
  name: z.ZodString;
862
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
321
+ in: z.ZodEnum<{
322
+ path: "path";
323
+ header: "header";
324
+ query: "query";
325
+ cookie: "cookie";
326
+ }>;
863
327
  description: z.ZodOptional<z.ZodString>;
864
328
  required: z.ZodOptional<z.ZodBoolean>;
865
329
  deprecated: z.ZodOptional<z.ZodBoolean>;
866
330
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
867
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
331
+ style: z.ZodOptional<z.ZodEnum<{
332
+ matrix: "matrix";
333
+ label: "label";
334
+ form: "form";
335
+ simple: "simple";
336
+ spaceDelimited: "spaceDelimited";
337
+ pipeDelimited: "pipeDelimited";
338
+ deepObject: "deepObject";
339
+ }>>;
868
340
  explode: z.ZodOptional<z.ZodString>;
869
341
  allowReserved: z.ZodOptional<z.ZodBoolean>;
870
342
  schema: z.ZodOptional<z.ZodUnknown>;
871
343
  example: z.ZodOptional<z.ZodUnknown>;
872
344
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
873
345
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
874
- }, "strip", z.ZodTypeAny, {
875
- name: string;
876
- in: "path" | "header" | "cookie" | "query";
877
- description?: string | undefined;
878
- required?: boolean | undefined;
879
- deprecated?: boolean | undefined;
880
- allowEmptyValue?: boolean | undefined;
881
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
882
- explode?: string | undefined;
883
- allowReserved?: boolean | undefined;
884
- schema?: unknown;
885
- example?: unknown;
886
- examples?: Record<string, unknown> | undefined;
887
- content?: Record<string, unknown> | undefined;
888
- }, {
889
- name: string;
890
- in: "path" | "header" | "cookie" | "query";
891
- description?: string | undefined;
892
- required?: boolean | undefined;
893
- deprecated?: boolean | undefined;
894
- allowEmptyValue?: boolean | undefined;
895
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
896
- explode?: string | undefined;
897
- allowReserved?: boolean | undefined;
898
- schema?: unknown;
899
- example?: unknown;
900
- examples?: Record<string, unknown> | undefined;
901
- content?: Record<string, unknown> | undefined;
902
- }>, z.ZodObject<{
346
+ }, z.core.$strip>, z.ZodObject<{
903
347
  $ref: z.ZodString;
904
348
  summary: z.ZodOptional<z.ZodString>;
905
349
  description: z.ZodOptional<z.ZodString>;
906
- }, "strip", z.ZodTypeAny, {
907
- $ref: string;
908
- description?: string | undefined;
909
- summary?: string | undefined;
910
- }, {
911
- $ref: string;
912
- description?: string | undefined;
913
- summary?: string | undefined;
914
- }>]>, "many">>;
350
+ }, z.core.$strip>]>>>;
915
351
  requestBody: z.ZodOptional<z.ZodUnknown>;
916
352
  responses: z.ZodOptional<z.ZodUnknown>;
917
353
  callbacks: z.ZodOptional<z.ZodUnknown>;
918
354
  deprecated: z.ZodOptional<z.ZodBoolean>;
919
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
920
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
921
- }, "strip", z.ZodTypeAny, {
922
- description?: string | undefined;
923
- tags?: string[] | undefined;
924
- summary?: string | undefined;
925
- responses?: unknown;
926
- parameters?: ({
927
- name: string;
928
- in: "path" | "header" | "cookie" | "query";
929
- description?: string | undefined;
930
- required?: boolean | undefined;
931
- deprecated?: boolean | undefined;
932
- allowEmptyValue?: boolean | undefined;
933
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
934
- explode?: string | undefined;
935
- allowReserved?: boolean | undefined;
936
- schema?: unknown;
937
- example?: unknown;
938
- examples?: Record<string, unknown> | undefined;
939
- content?: Record<string, unknown> | undefined;
940
- } | {
941
- $ref: string;
942
- description?: string | undefined;
943
- summary?: string | undefined;
944
- })[] | undefined;
945
- deprecated?: boolean | undefined;
946
- externalDocs?: unknown;
947
- operationId?: string | undefined;
948
- requestBody?: unknown;
949
- callbacks?: unknown;
950
- security?: Record<string, string[]>[] | undefined;
951
- servers?: unknown[] | undefined;
952
- }, {
953
- description?: string | undefined;
954
- tags?: string[] | undefined;
955
- summary?: string | undefined;
956
- responses?: unknown;
957
- parameters?: ({
958
- name: string;
959
- in: "path" | "header" | "cookie" | "query";
960
- description?: string | undefined;
961
- required?: boolean | undefined;
962
- deprecated?: boolean | undefined;
963
- allowEmptyValue?: boolean | undefined;
964
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
965
- explode?: string | undefined;
966
- allowReserved?: boolean | undefined;
967
- schema?: unknown;
968
- example?: unknown;
969
- examples?: Record<string, unknown> | undefined;
970
- content?: Record<string, unknown> | undefined;
971
- } | {
972
- $ref: string;
973
- description?: string | undefined;
974
- summary?: string | undefined;
975
- })[] | undefined;
976
- deprecated?: boolean | undefined;
977
- externalDocs?: unknown;
978
- operationId?: string | undefined;
979
- requestBody?: unknown;
980
- callbacks?: unknown;
981
- security?: Record<string, string[]>[] | undefined;
982
- servers?: unknown[] | undefined;
983
- }>>;
355
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
356
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
357
+ }, z.core.$strip>>;
984
358
  patch: z.ZodOptional<z.ZodObject<{
985
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
359
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
986
360
  summary: z.ZodOptional<z.ZodString>;
987
361
  description: z.ZodOptional<z.ZodString>;
988
362
  externalDocs: z.ZodOptional<z.ZodUnknown>;
989
363
  operationId: z.ZodOptional<z.ZodString>;
990
364
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
991
365
  name: z.ZodString;
992
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
366
+ in: z.ZodEnum<{
367
+ path: "path";
368
+ header: "header";
369
+ query: "query";
370
+ cookie: "cookie";
371
+ }>;
993
372
  description: z.ZodOptional<z.ZodString>;
994
373
  required: z.ZodOptional<z.ZodBoolean>;
995
374
  deprecated: z.ZodOptional<z.ZodBoolean>;
996
375
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
997
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
376
+ style: z.ZodOptional<z.ZodEnum<{
377
+ matrix: "matrix";
378
+ label: "label";
379
+ form: "form";
380
+ simple: "simple";
381
+ spaceDelimited: "spaceDelimited";
382
+ pipeDelimited: "pipeDelimited";
383
+ deepObject: "deepObject";
384
+ }>>;
998
385
  explode: z.ZodOptional<z.ZodString>;
999
386
  allowReserved: z.ZodOptional<z.ZodBoolean>;
1000
387
  schema: z.ZodOptional<z.ZodUnknown>;
1001
388
  example: z.ZodOptional<z.ZodUnknown>;
1002
389
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1003
390
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1004
- }, "strip", z.ZodTypeAny, {
1005
- name: string;
1006
- in: "path" | "header" | "cookie" | "query";
1007
- description?: string | undefined;
1008
- required?: boolean | undefined;
1009
- deprecated?: boolean | undefined;
1010
- allowEmptyValue?: boolean | undefined;
1011
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1012
- explode?: string | undefined;
1013
- allowReserved?: boolean | undefined;
1014
- schema?: unknown;
1015
- example?: unknown;
1016
- examples?: Record<string, unknown> | undefined;
1017
- content?: Record<string, unknown> | undefined;
1018
- }, {
1019
- name: string;
1020
- in: "path" | "header" | "cookie" | "query";
1021
- description?: string | undefined;
1022
- required?: boolean | undefined;
1023
- deprecated?: boolean | undefined;
1024
- allowEmptyValue?: boolean | undefined;
1025
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1026
- explode?: string | undefined;
1027
- allowReserved?: boolean | undefined;
1028
- schema?: unknown;
1029
- example?: unknown;
1030
- examples?: Record<string, unknown> | undefined;
1031
- content?: Record<string, unknown> | undefined;
1032
- }>, z.ZodObject<{
391
+ }, z.core.$strip>, z.ZodObject<{
1033
392
  $ref: z.ZodString;
1034
393
  summary: z.ZodOptional<z.ZodString>;
1035
394
  description: z.ZodOptional<z.ZodString>;
1036
- }, "strip", z.ZodTypeAny, {
1037
- $ref: string;
1038
- description?: string | undefined;
1039
- summary?: string | undefined;
1040
- }, {
1041
- $ref: string;
1042
- description?: string | undefined;
1043
- summary?: string | undefined;
1044
- }>]>, "many">>;
395
+ }, z.core.$strip>]>>>;
1045
396
  requestBody: z.ZodOptional<z.ZodUnknown>;
1046
397
  responses: z.ZodOptional<z.ZodUnknown>;
1047
398
  callbacks: z.ZodOptional<z.ZodUnknown>;
1048
399
  deprecated: z.ZodOptional<z.ZodBoolean>;
1049
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
1050
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1051
- }, "strip", z.ZodTypeAny, {
1052
- description?: string | undefined;
1053
- tags?: string[] | undefined;
1054
- summary?: string | undefined;
1055
- responses?: unknown;
1056
- parameters?: ({
1057
- name: string;
1058
- in: "path" | "header" | "cookie" | "query";
1059
- description?: string | undefined;
1060
- required?: boolean | undefined;
1061
- deprecated?: boolean | undefined;
1062
- allowEmptyValue?: boolean | undefined;
1063
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1064
- explode?: string | undefined;
1065
- allowReserved?: boolean | undefined;
1066
- schema?: unknown;
1067
- example?: unknown;
1068
- examples?: Record<string, unknown> | undefined;
1069
- content?: Record<string, unknown> | undefined;
1070
- } | {
1071
- $ref: string;
1072
- description?: string | undefined;
1073
- summary?: string | undefined;
1074
- })[] | undefined;
1075
- deprecated?: boolean | undefined;
1076
- externalDocs?: unknown;
1077
- operationId?: string | undefined;
1078
- requestBody?: unknown;
1079
- callbacks?: unknown;
1080
- security?: Record<string, string[]>[] | undefined;
1081
- servers?: unknown[] | undefined;
1082
- }, {
1083
- description?: string | undefined;
1084
- tags?: string[] | undefined;
1085
- summary?: string | undefined;
1086
- responses?: unknown;
1087
- parameters?: ({
1088
- name: string;
1089
- in: "path" | "header" | "cookie" | "query";
1090
- description?: string | undefined;
1091
- required?: boolean | undefined;
1092
- deprecated?: boolean | undefined;
1093
- allowEmptyValue?: boolean | undefined;
1094
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1095
- explode?: string | undefined;
1096
- allowReserved?: boolean | undefined;
1097
- schema?: unknown;
1098
- example?: unknown;
1099
- examples?: Record<string, unknown> | undefined;
1100
- content?: Record<string, unknown> | undefined;
1101
- } | {
1102
- $ref: string;
1103
- description?: string | undefined;
1104
- summary?: string | undefined;
1105
- })[] | undefined;
1106
- deprecated?: boolean | undefined;
1107
- externalDocs?: unknown;
1108
- operationId?: string | undefined;
1109
- requestBody?: unknown;
1110
- callbacks?: unknown;
1111
- security?: Record<string, string[]>[] | undefined;
1112
- servers?: unknown[] | undefined;
1113
- }>>;
400
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
401
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
402
+ }, z.core.$strip>>;
1114
403
  trace: z.ZodOptional<z.ZodObject<{
1115
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
404
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1116
405
  summary: z.ZodOptional<z.ZodString>;
1117
406
  description: z.ZodOptional<z.ZodString>;
1118
407
  externalDocs: z.ZodOptional<z.ZodUnknown>;
1119
408
  operationId: z.ZodOptional<z.ZodString>;
1120
409
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
1121
410
  name: z.ZodString;
1122
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
411
+ in: z.ZodEnum<{
412
+ path: "path";
413
+ header: "header";
414
+ query: "query";
415
+ cookie: "cookie";
416
+ }>;
1123
417
  description: z.ZodOptional<z.ZodString>;
1124
418
  required: z.ZodOptional<z.ZodBoolean>;
1125
419
  deprecated: z.ZodOptional<z.ZodBoolean>;
1126
420
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
1127
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
421
+ style: z.ZodOptional<z.ZodEnum<{
422
+ matrix: "matrix";
423
+ label: "label";
424
+ form: "form";
425
+ simple: "simple";
426
+ spaceDelimited: "spaceDelimited";
427
+ pipeDelimited: "pipeDelimited";
428
+ deepObject: "deepObject";
429
+ }>>;
1128
430
  explode: z.ZodOptional<z.ZodString>;
1129
431
  allowReserved: z.ZodOptional<z.ZodBoolean>;
1130
432
  schema: z.ZodOptional<z.ZodUnknown>;
1131
433
  example: z.ZodOptional<z.ZodUnknown>;
1132
434
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1133
435
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1134
- }, "strip", z.ZodTypeAny, {
1135
- name: string;
1136
- in: "path" | "header" | "cookie" | "query";
1137
- description?: string | undefined;
1138
- required?: boolean | undefined;
1139
- deprecated?: boolean | undefined;
1140
- allowEmptyValue?: boolean | undefined;
1141
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1142
- explode?: string | undefined;
1143
- allowReserved?: boolean | undefined;
1144
- schema?: unknown;
1145
- example?: unknown;
1146
- examples?: Record<string, unknown> | undefined;
1147
- content?: Record<string, unknown> | undefined;
1148
- }, {
1149
- name: string;
1150
- in: "path" | "header" | "cookie" | "query";
1151
- description?: string | undefined;
1152
- required?: boolean | undefined;
1153
- deprecated?: boolean | undefined;
1154
- allowEmptyValue?: boolean | undefined;
1155
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1156
- explode?: string | undefined;
1157
- allowReserved?: boolean | undefined;
1158
- schema?: unknown;
1159
- example?: unknown;
1160
- examples?: Record<string, unknown> | undefined;
1161
- content?: Record<string, unknown> | undefined;
1162
- }>, z.ZodObject<{
436
+ }, z.core.$strip>, z.ZodObject<{
1163
437
  $ref: z.ZodString;
1164
438
  summary: z.ZodOptional<z.ZodString>;
1165
439
  description: z.ZodOptional<z.ZodString>;
1166
- }, "strip", z.ZodTypeAny, {
1167
- $ref: string;
1168
- description?: string | undefined;
1169
- summary?: string | undefined;
1170
- }, {
1171
- $ref: string;
1172
- description?: string | undefined;
1173
- summary?: string | undefined;
1174
- }>]>, "many">>;
440
+ }, z.core.$strip>]>>>;
1175
441
  requestBody: z.ZodOptional<z.ZodUnknown>;
1176
442
  responses: z.ZodOptional<z.ZodUnknown>;
1177
443
  callbacks: z.ZodOptional<z.ZodUnknown>;
1178
444
  deprecated: z.ZodOptional<z.ZodBoolean>;
1179
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
1180
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1181
- }, "strip", z.ZodTypeAny, {
1182
- description?: string | undefined;
1183
- tags?: string[] | undefined;
1184
- summary?: string | undefined;
1185
- responses?: unknown;
1186
- parameters?: ({
1187
- name: string;
1188
- in: "path" | "header" | "cookie" | "query";
1189
- description?: string | undefined;
1190
- required?: boolean | undefined;
1191
- deprecated?: boolean | undefined;
1192
- allowEmptyValue?: boolean | undefined;
1193
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1194
- explode?: string | undefined;
1195
- allowReserved?: boolean | undefined;
1196
- schema?: unknown;
1197
- example?: unknown;
1198
- examples?: Record<string, unknown> | undefined;
1199
- content?: Record<string, unknown> | undefined;
1200
- } | {
1201
- $ref: string;
1202
- description?: string | undefined;
1203
- summary?: string | undefined;
1204
- })[] | undefined;
1205
- deprecated?: boolean | undefined;
1206
- externalDocs?: unknown;
1207
- operationId?: string | undefined;
1208
- requestBody?: unknown;
1209
- callbacks?: unknown;
1210
- security?: Record<string, string[]>[] | undefined;
1211
- servers?: unknown[] | undefined;
1212
- }, {
1213
- description?: string | undefined;
1214
- tags?: string[] | undefined;
1215
- summary?: string | undefined;
1216
- responses?: unknown;
1217
- parameters?: ({
1218
- name: string;
1219
- in: "path" | "header" | "cookie" | "query";
1220
- description?: string | undefined;
1221
- required?: boolean | undefined;
1222
- deprecated?: boolean | undefined;
1223
- allowEmptyValue?: boolean | undefined;
1224
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1225
- explode?: string | undefined;
1226
- allowReserved?: boolean | undefined;
1227
- schema?: unknown;
1228
- example?: unknown;
1229
- examples?: Record<string, unknown> | undefined;
1230
- content?: Record<string, unknown> | undefined;
1231
- } | {
1232
- $ref: string;
1233
- description?: string | undefined;
1234
- summary?: string | undefined;
1235
- })[] | undefined;
1236
- deprecated?: boolean | undefined;
1237
- externalDocs?: unknown;
1238
- operationId?: string | undefined;
1239
- requestBody?: unknown;
1240
- callbacks?: unknown;
1241
- security?: Record<string, string[]>[] | undefined;
1242
- servers?: unknown[] | undefined;
1243
- }>>;
445
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
446
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
447
+ }, z.core.$strip>>;
1244
448
  servers: z.ZodOptional<z.ZodObject<{
1245
449
  url: z.ZodString;
1246
450
  description: z.ZodOptional<z.ZodString>;
1247
451
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1248
- }, "strip", z.ZodTypeAny, {
1249
- url: string;
1250
- description?: string | undefined;
1251
- variables?: Record<string, unknown> | undefined;
1252
- }, {
1253
- url: string;
1254
- description?: string | undefined;
1255
- variables?: Record<string, unknown> | undefined;
1256
- }>>;
452
+ }, z.core.$strip>>;
1257
453
  parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
1258
454
  name: z.ZodString;
1259
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
455
+ in: z.ZodEnum<{
456
+ path: "path";
457
+ header: "header";
458
+ query: "query";
459
+ cookie: "cookie";
460
+ }>;
1260
461
  description: z.ZodOptional<z.ZodString>;
1261
462
  required: z.ZodOptional<z.ZodBoolean>;
1262
463
  deprecated: z.ZodOptional<z.ZodBoolean>;
1263
464
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
1264
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
465
+ style: z.ZodOptional<z.ZodEnum<{
466
+ matrix: "matrix";
467
+ label: "label";
468
+ form: "form";
469
+ simple: "simple";
470
+ spaceDelimited: "spaceDelimited";
471
+ pipeDelimited: "pipeDelimited";
472
+ deepObject: "deepObject";
473
+ }>>;
1265
474
  explode: z.ZodOptional<z.ZodString>;
1266
475
  allowReserved: z.ZodOptional<z.ZodBoolean>;
1267
476
  schema: z.ZodOptional<z.ZodUnknown>;
1268
477
  example: z.ZodOptional<z.ZodUnknown>;
1269
478
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1270
479
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1271
- }, "strip", z.ZodTypeAny, {
1272
- name: string;
1273
- in: "path" | "header" | "cookie" | "query";
1274
- description?: string | undefined;
1275
- required?: boolean | undefined;
1276
- deprecated?: boolean | undefined;
1277
- allowEmptyValue?: boolean | undefined;
1278
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1279
- explode?: string | undefined;
1280
- allowReserved?: boolean | undefined;
1281
- schema?: unknown;
1282
- example?: unknown;
1283
- examples?: Record<string, unknown> | undefined;
1284
- content?: Record<string, unknown> | undefined;
1285
- }, {
1286
- name: string;
1287
- in: "path" | "header" | "cookie" | "query";
1288
- description?: string | undefined;
1289
- required?: boolean | undefined;
1290
- deprecated?: boolean | undefined;
1291
- allowEmptyValue?: boolean | undefined;
1292
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1293
- explode?: string | undefined;
1294
- allowReserved?: boolean | undefined;
1295
- schema?: unknown;
1296
- example?: unknown;
1297
- examples?: Record<string, unknown> | undefined;
1298
- content?: Record<string, unknown> | undefined;
1299
- }>, "many">>;
1300
- }, "strip", z.ZodTypeAny, {
1301
- description?: string | undefined;
1302
- summary?: string | undefined;
1303
- parameters?: {
1304
- name: string;
1305
- in: "path" | "header" | "cookie" | "query";
1306
- description?: string | undefined;
1307
- required?: boolean | undefined;
1308
- deprecated?: boolean | undefined;
1309
- allowEmptyValue?: boolean | undefined;
1310
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1311
- explode?: string | undefined;
1312
- allowReserved?: boolean | undefined;
1313
- schema?: unknown;
1314
- example?: unknown;
1315
- examples?: Record<string, unknown> | undefined;
1316
- content?: Record<string, unknown> | undefined;
1317
- }[] | undefined;
1318
- get?: {
1319
- description?: string | undefined;
1320
- tags?: string[] | undefined;
1321
- summary?: string | undefined;
1322
- responses?: unknown;
1323
- parameters?: ({
1324
- name: string;
1325
- in: "path" | "header" | "cookie" | "query";
1326
- description?: string | undefined;
1327
- required?: boolean | undefined;
1328
- deprecated?: boolean | undefined;
1329
- allowEmptyValue?: boolean | undefined;
1330
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1331
- explode?: string | undefined;
1332
- allowReserved?: boolean | undefined;
1333
- schema?: unknown;
1334
- example?: unknown;
1335
- examples?: Record<string, unknown> | undefined;
1336
- content?: Record<string, unknown> | undefined;
1337
- } | {
1338
- $ref: string;
1339
- description?: string | undefined;
1340
- summary?: string | undefined;
1341
- })[] | undefined;
1342
- deprecated?: boolean | undefined;
1343
- externalDocs?: unknown;
1344
- operationId?: string | undefined;
1345
- requestBody?: unknown;
1346
- callbacks?: unknown;
1347
- security?: Record<string, string[]>[] | undefined;
1348
- servers?: unknown[] | undefined;
1349
- } | undefined;
1350
- post?: {
1351
- description?: string | undefined;
1352
- tags?: string[] | undefined;
1353
- summary?: string | undefined;
1354
- responses?: unknown;
1355
- parameters?: ({
1356
- name: string;
1357
- in: "path" | "header" | "cookie" | "query";
1358
- description?: string | undefined;
1359
- required?: boolean | undefined;
1360
- deprecated?: boolean | undefined;
1361
- allowEmptyValue?: boolean | undefined;
1362
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1363
- explode?: string | undefined;
1364
- allowReserved?: boolean | undefined;
1365
- schema?: unknown;
1366
- example?: unknown;
1367
- examples?: Record<string, unknown> | undefined;
1368
- content?: Record<string, unknown> | undefined;
1369
- } | {
1370
- $ref: string;
1371
- description?: string | undefined;
1372
- summary?: string | undefined;
1373
- })[] | undefined;
1374
- deprecated?: boolean | undefined;
1375
- externalDocs?: unknown;
1376
- operationId?: string | undefined;
1377
- requestBody?: unknown;
1378
- callbacks?: unknown;
1379
- security?: Record<string, string[]>[] | undefined;
1380
- servers?: unknown[] | undefined;
1381
- } | undefined;
1382
- put?: {
1383
- description?: string | undefined;
1384
- tags?: string[] | undefined;
1385
- summary?: string | undefined;
1386
- responses?: unknown;
1387
- parameters?: ({
1388
- name: string;
1389
- in: "path" | "header" | "cookie" | "query";
1390
- description?: string | undefined;
1391
- required?: boolean | undefined;
1392
- deprecated?: boolean | undefined;
1393
- allowEmptyValue?: boolean | undefined;
1394
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1395
- explode?: string | undefined;
1396
- allowReserved?: boolean | undefined;
1397
- schema?: unknown;
1398
- example?: unknown;
1399
- examples?: Record<string, unknown> | undefined;
1400
- content?: Record<string, unknown> | undefined;
1401
- } | {
1402
- $ref: string;
1403
- description?: string | undefined;
1404
- summary?: string | undefined;
1405
- })[] | undefined;
1406
- deprecated?: boolean | undefined;
1407
- externalDocs?: unknown;
1408
- operationId?: string | undefined;
1409
- requestBody?: unknown;
1410
- callbacks?: unknown;
1411
- security?: Record<string, string[]>[] | undefined;
1412
- servers?: unknown[] | undefined;
1413
- } | undefined;
1414
- delete?: {
1415
- description?: string | undefined;
1416
- tags?: string[] | undefined;
1417
- summary?: string | undefined;
1418
- responses?: unknown;
1419
- parameters?: ({
1420
- name: string;
1421
- in: "path" | "header" | "cookie" | "query";
1422
- description?: string | undefined;
1423
- required?: boolean | undefined;
1424
- deprecated?: boolean | undefined;
1425
- allowEmptyValue?: boolean | undefined;
1426
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1427
- explode?: string | undefined;
1428
- allowReserved?: boolean | undefined;
1429
- schema?: unknown;
1430
- example?: unknown;
1431
- examples?: Record<string, unknown> | undefined;
1432
- content?: Record<string, unknown> | undefined;
1433
- } | {
1434
- $ref: string;
1435
- description?: string | undefined;
1436
- summary?: string | undefined;
1437
- })[] | undefined;
1438
- deprecated?: boolean | undefined;
1439
- externalDocs?: unknown;
1440
- operationId?: string | undefined;
1441
- requestBody?: unknown;
1442
- callbacks?: unknown;
1443
- security?: Record<string, string[]>[] | undefined;
1444
- servers?: unknown[] | undefined;
1445
- } | undefined;
1446
- patch?: {
1447
- description?: string | undefined;
1448
- tags?: string[] | undefined;
1449
- summary?: string | undefined;
1450
- responses?: unknown;
1451
- parameters?: ({
1452
- name: string;
1453
- in: "path" | "header" | "cookie" | "query";
1454
- description?: string | undefined;
1455
- required?: boolean | undefined;
1456
- deprecated?: boolean | undefined;
1457
- allowEmptyValue?: boolean | undefined;
1458
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1459
- explode?: string | undefined;
1460
- allowReserved?: boolean | undefined;
1461
- schema?: unknown;
1462
- example?: unknown;
1463
- examples?: Record<string, unknown> | undefined;
1464
- content?: Record<string, unknown> | undefined;
1465
- } | {
1466
- $ref: string;
1467
- description?: string | undefined;
1468
- summary?: string | undefined;
1469
- })[] | undefined;
1470
- deprecated?: boolean | undefined;
1471
- externalDocs?: unknown;
1472
- operationId?: string | undefined;
1473
- requestBody?: unknown;
1474
- callbacks?: unknown;
1475
- security?: Record<string, string[]>[] | undefined;
1476
- servers?: unknown[] | undefined;
1477
- } | undefined;
1478
- head?: {
1479
- description?: string | undefined;
1480
- tags?: string[] | undefined;
1481
- summary?: string | undefined;
1482
- responses?: unknown;
1483
- parameters?: ({
1484
- name: string;
1485
- in: "path" | "header" | "cookie" | "query";
1486
- description?: string | undefined;
1487
- required?: boolean | undefined;
1488
- deprecated?: boolean | undefined;
1489
- allowEmptyValue?: boolean | undefined;
1490
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1491
- explode?: string | undefined;
1492
- allowReserved?: boolean | undefined;
1493
- schema?: unknown;
1494
- example?: unknown;
1495
- examples?: Record<string, unknown> | undefined;
1496
- content?: Record<string, unknown> | undefined;
1497
- } | {
1498
- $ref: string;
1499
- description?: string | undefined;
1500
- summary?: string | undefined;
1501
- })[] | undefined;
1502
- deprecated?: boolean | undefined;
1503
- externalDocs?: unknown;
1504
- operationId?: string | undefined;
1505
- requestBody?: unknown;
1506
- callbacks?: unknown;
1507
- security?: Record<string, string[]>[] | undefined;
1508
- servers?: unknown[] | undefined;
1509
- } | undefined;
1510
- options?: {
1511
- description?: string | undefined;
1512
- tags?: string[] | undefined;
1513
- summary?: string | undefined;
1514
- responses?: unknown;
1515
- parameters?: ({
1516
- name: string;
1517
- in: "path" | "header" | "cookie" | "query";
1518
- description?: string | undefined;
1519
- required?: boolean | undefined;
1520
- deprecated?: boolean | undefined;
1521
- allowEmptyValue?: boolean | undefined;
1522
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1523
- explode?: string | undefined;
1524
- allowReserved?: boolean | undefined;
1525
- schema?: unknown;
1526
- example?: unknown;
1527
- examples?: Record<string, unknown> | undefined;
1528
- content?: Record<string, unknown> | undefined;
1529
- } | {
1530
- $ref: string;
1531
- description?: string | undefined;
1532
- summary?: string | undefined;
1533
- })[] | undefined;
1534
- deprecated?: boolean | undefined;
1535
- externalDocs?: unknown;
1536
- operationId?: string | undefined;
1537
- requestBody?: unknown;
1538
- callbacks?: unknown;
1539
- security?: Record<string, string[]>[] | undefined;
1540
- servers?: unknown[] | undefined;
1541
- } | undefined;
1542
- servers?: {
1543
- url: string;
1544
- description?: string | undefined;
1545
- variables?: Record<string, unknown> | undefined;
1546
- } | undefined;
1547
- trace?: {
1548
- description?: string | undefined;
1549
- tags?: string[] | undefined;
1550
- summary?: string | undefined;
1551
- responses?: unknown;
1552
- parameters?: ({
1553
- name: string;
1554
- in: "path" | "header" | "cookie" | "query";
1555
- description?: string | undefined;
1556
- required?: boolean | undefined;
1557
- deprecated?: boolean | undefined;
1558
- allowEmptyValue?: boolean | undefined;
1559
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1560
- explode?: string | undefined;
1561
- allowReserved?: boolean | undefined;
1562
- schema?: unknown;
1563
- example?: unknown;
1564
- examples?: Record<string, unknown> | undefined;
1565
- content?: Record<string, unknown> | undefined;
1566
- } | {
1567
- $ref: string;
1568
- description?: string | undefined;
1569
- summary?: string | undefined;
1570
- })[] | undefined;
1571
- deprecated?: boolean | undefined;
1572
- externalDocs?: unknown;
1573
- operationId?: string | undefined;
1574
- requestBody?: unknown;
1575
- callbacks?: unknown;
1576
- security?: Record<string, string[]>[] | undefined;
1577
- servers?: unknown[] | undefined;
1578
- } | undefined;
1579
- }, {
1580
- description?: string | undefined;
1581
- summary?: string | undefined;
1582
- parameters?: {
1583
- name: string;
1584
- in: "path" | "header" | "cookie" | "query";
1585
- description?: string | undefined;
1586
- required?: boolean | undefined;
1587
- deprecated?: boolean | undefined;
1588
- allowEmptyValue?: boolean | undefined;
1589
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1590
- explode?: string | undefined;
1591
- allowReserved?: boolean | undefined;
1592
- schema?: unknown;
1593
- example?: unknown;
1594
- examples?: Record<string, unknown> | undefined;
1595
- content?: Record<string, unknown> | undefined;
1596
- }[] | undefined;
1597
- get?: {
1598
- description?: string | undefined;
1599
- tags?: string[] | undefined;
1600
- summary?: string | undefined;
1601
- responses?: unknown;
1602
- parameters?: ({
1603
- name: string;
1604
- in: "path" | "header" | "cookie" | "query";
1605
- description?: string | undefined;
1606
- required?: boolean | undefined;
1607
- deprecated?: boolean | undefined;
1608
- allowEmptyValue?: boolean | undefined;
1609
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1610
- explode?: string | undefined;
1611
- allowReserved?: boolean | undefined;
1612
- schema?: unknown;
1613
- example?: unknown;
1614
- examples?: Record<string, unknown> | undefined;
1615
- content?: Record<string, unknown> | undefined;
1616
- } | {
1617
- $ref: string;
1618
- description?: string | undefined;
1619
- summary?: string | undefined;
1620
- })[] | undefined;
1621
- deprecated?: boolean | undefined;
1622
- externalDocs?: unknown;
1623
- operationId?: string | undefined;
1624
- requestBody?: unknown;
1625
- callbacks?: unknown;
1626
- security?: Record<string, string[]>[] | undefined;
1627
- servers?: unknown[] | undefined;
1628
- } | undefined;
1629
- post?: {
1630
- description?: string | undefined;
1631
- tags?: string[] | undefined;
1632
- summary?: string | undefined;
1633
- responses?: unknown;
1634
- parameters?: ({
1635
- name: string;
1636
- in: "path" | "header" | "cookie" | "query";
1637
- description?: string | undefined;
1638
- required?: boolean | undefined;
1639
- deprecated?: boolean | undefined;
1640
- allowEmptyValue?: boolean | undefined;
1641
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1642
- explode?: string | undefined;
1643
- allowReserved?: boolean | undefined;
1644
- schema?: unknown;
1645
- example?: unknown;
1646
- examples?: Record<string, unknown> | undefined;
1647
- content?: Record<string, unknown> | undefined;
1648
- } | {
1649
- $ref: string;
1650
- description?: string | undefined;
1651
- summary?: string | undefined;
1652
- })[] | undefined;
1653
- deprecated?: boolean | undefined;
1654
- externalDocs?: unknown;
1655
- operationId?: string | undefined;
1656
- requestBody?: unknown;
1657
- callbacks?: unknown;
1658
- security?: Record<string, string[]>[] | undefined;
1659
- servers?: unknown[] | undefined;
1660
- } | undefined;
1661
- put?: {
1662
- description?: string | undefined;
1663
- tags?: string[] | undefined;
1664
- summary?: string | undefined;
1665
- responses?: unknown;
1666
- parameters?: ({
1667
- name: string;
1668
- in: "path" | "header" | "cookie" | "query";
1669
- description?: string | undefined;
1670
- required?: boolean | undefined;
1671
- deprecated?: boolean | undefined;
1672
- allowEmptyValue?: boolean | undefined;
1673
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1674
- explode?: string | undefined;
1675
- allowReserved?: boolean | undefined;
1676
- schema?: unknown;
1677
- example?: unknown;
1678
- examples?: Record<string, unknown> | undefined;
1679
- content?: Record<string, unknown> | undefined;
1680
- } | {
1681
- $ref: string;
1682
- description?: string | undefined;
1683
- summary?: string | undefined;
1684
- })[] | undefined;
1685
- deprecated?: boolean | undefined;
1686
- externalDocs?: unknown;
1687
- operationId?: string | undefined;
1688
- requestBody?: unknown;
1689
- callbacks?: unknown;
1690
- security?: Record<string, string[]>[] | undefined;
1691
- servers?: unknown[] | undefined;
1692
- } | undefined;
1693
- delete?: {
1694
- description?: string | undefined;
1695
- tags?: string[] | undefined;
1696
- summary?: string | undefined;
1697
- responses?: unknown;
1698
- parameters?: ({
1699
- name: string;
1700
- in: "path" | "header" | "cookie" | "query";
1701
- description?: string | undefined;
1702
- required?: boolean | undefined;
1703
- deprecated?: boolean | undefined;
1704
- allowEmptyValue?: boolean | undefined;
1705
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1706
- explode?: string | undefined;
1707
- allowReserved?: boolean | undefined;
1708
- schema?: unknown;
1709
- example?: unknown;
1710
- examples?: Record<string, unknown> | undefined;
1711
- content?: Record<string, unknown> | undefined;
1712
- } | {
1713
- $ref: string;
1714
- description?: string | undefined;
1715
- summary?: string | undefined;
1716
- })[] | undefined;
1717
- deprecated?: boolean | undefined;
1718
- externalDocs?: unknown;
1719
- operationId?: string | undefined;
1720
- requestBody?: unknown;
1721
- callbacks?: unknown;
1722
- security?: Record<string, string[]>[] | undefined;
1723
- servers?: unknown[] | undefined;
1724
- } | undefined;
1725
- patch?: {
1726
- description?: string | undefined;
1727
- tags?: string[] | undefined;
1728
- summary?: string | undefined;
1729
- responses?: unknown;
1730
- parameters?: ({
1731
- name: string;
1732
- in: "path" | "header" | "cookie" | "query";
1733
- description?: string | undefined;
1734
- required?: boolean | undefined;
1735
- deprecated?: boolean | undefined;
1736
- allowEmptyValue?: boolean | undefined;
1737
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1738
- explode?: string | undefined;
1739
- allowReserved?: boolean | undefined;
1740
- schema?: unknown;
1741
- example?: unknown;
1742
- examples?: Record<string, unknown> | undefined;
1743
- content?: Record<string, unknown> | undefined;
1744
- } | {
1745
- $ref: string;
1746
- description?: string | undefined;
1747
- summary?: string | undefined;
1748
- })[] | undefined;
1749
- deprecated?: boolean | undefined;
1750
- externalDocs?: unknown;
1751
- operationId?: string | undefined;
1752
- requestBody?: unknown;
1753
- callbacks?: unknown;
1754
- security?: Record<string, string[]>[] | undefined;
1755
- servers?: unknown[] | undefined;
1756
- } | undefined;
1757
- head?: {
1758
- description?: string | undefined;
1759
- tags?: string[] | undefined;
1760
- summary?: string | undefined;
1761
- responses?: unknown;
1762
- parameters?: ({
1763
- name: string;
1764
- in: "path" | "header" | "cookie" | "query";
1765
- description?: string | undefined;
1766
- required?: boolean | undefined;
1767
- deprecated?: boolean | undefined;
1768
- allowEmptyValue?: boolean | undefined;
1769
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1770
- explode?: string | undefined;
1771
- allowReserved?: boolean | undefined;
1772
- schema?: unknown;
1773
- example?: unknown;
1774
- examples?: Record<string, unknown> | undefined;
1775
- content?: Record<string, unknown> | undefined;
1776
- } | {
1777
- $ref: string;
1778
- description?: string | undefined;
1779
- summary?: string | undefined;
1780
- })[] | undefined;
1781
- deprecated?: boolean | undefined;
1782
- externalDocs?: unknown;
1783
- operationId?: string | undefined;
1784
- requestBody?: unknown;
1785
- callbacks?: unknown;
1786
- security?: Record<string, string[]>[] | undefined;
1787
- servers?: unknown[] | undefined;
1788
- } | undefined;
1789
- options?: {
1790
- description?: string | undefined;
1791
- tags?: string[] | undefined;
1792
- summary?: string | undefined;
1793
- responses?: unknown;
1794
- parameters?: ({
1795
- name: string;
1796
- in: "path" | "header" | "cookie" | "query";
1797
- description?: string | undefined;
1798
- required?: boolean | undefined;
1799
- deprecated?: boolean | undefined;
1800
- allowEmptyValue?: boolean | undefined;
1801
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1802
- explode?: string | undefined;
1803
- allowReserved?: boolean | undefined;
1804
- schema?: unknown;
1805
- example?: unknown;
1806
- examples?: Record<string, unknown> | undefined;
1807
- content?: Record<string, unknown> | undefined;
1808
- } | {
1809
- $ref: string;
1810
- description?: string | undefined;
1811
- summary?: string | undefined;
1812
- })[] | undefined;
1813
- deprecated?: boolean | undefined;
1814
- externalDocs?: unknown;
1815
- operationId?: string | undefined;
1816
- requestBody?: unknown;
1817
- callbacks?: unknown;
1818
- security?: Record<string, string[]>[] | undefined;
1819
- servers?: unknown[] | undefined;
1820
- } | undefined;
1821
- servers?: {
1822
- url: string;
1823
- description?: string | undefined;
1824
- variables?: Record<string, unknown> | undefined;
1825
- } | undefined;
1826
- trace?: {
1827
- description?: string | undefined;
1828
- tags?: string[] | undefined;
1829
- summary?: string | undefined;
1830
- responses?: unknown;
1831
- parameters?: ({
1832
- name: string;
1833
- in: "path" | "header" | "cookie" | "query";
1834
- description?: string | undefined;
1835
- required?: boolean | undefined;
1836
- deprecated?: boolean | undefined;
1837
- allowEmptyValue?: boolean | undefined;
1838
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1839
- explode?: string | undefined;
1840
- allowReserved?: boolean | undefined;
1841
- schema?: unknown;
1842
- example?: unknown;
1843
- examples?: Record<string, unknown> | undefined;
1844
- content?: Record<string, unknown> | undefined;
1845
- } | {
1846
- $ref: string;
1847
- description?: string | undefined;
1848
- summary?: string | undefined;
1849
- })[] | undefined;
1850
- deprecated?: boolean | undefined;
1851
- externalDocs?: unknown;
1852
- operationId?: string | undefined;
1853
- requestBody?: unknown;
1854
- callbacks?: unknown;
1855
- security?: Record<string, string[]>[] | undefined;
1856
- servers?: unknown[] | undefined;
1857
- } | undefined;
1858
- }>;
480
+ }, z.core.$strip>>>;
481
+ }, z.core.$strip>;
1859
482
  export declare const openapiSchema: z.ZodObject<{
1860
483
  openapi: z.ZodString;
1861
484
  info: z.ZodObject<{
@@ -1865,1786 +488,433 @@ export declare const openapiSchema: z.ZodObject<{
1865
488
  contact: z.ZodOptional<z.ZodObject<{
1866
489
  name: z.ZodOptional<z.ZodString>;
1867
490
  url: z.ZodOptional<z.ZodString>;
1868
- email: z.ZodOptional<z.ZodString>;
1869
- }, "strict", z.ZodTypeAny, {
1870
- name?: string | undefined;
1871
- url?: string | undefined;
1872
- email?: string | undefined;
1873
- }, {
1874
- name?: string | undefined;
1875
- url?: string | undefined;
1876
- email?: string | undefined;
1877
- }>>;
491
+ email: z.ZodOptional<z.ZodEmail>;
492
+ }, z.core.$strict>>;
1878
493
  license: z.ZodOptional<z.ZodObject<{
1879
494
  name: z.ZodString;
1880
495
  url: z.ZodOptional<z.ZodString>;
1881
- }, "strict", z.ZodTypeAny, {
1882
- name: string;
1883
- url?: string | undefined;
1884
- }, {
1885
- name: string;
1886
- url?: string | undefined;
1887
- }>>;
496
+ }, z.core.$strict>>;
1888
497
  version: z.ZodString;
1889
- }, "strict", z.ZodTypeAny, {
1890
- title: string;
1891
- version: string;
1892
- description?: string | undefined;
1893
- termsOfService?: string | undefined;
1894
- contact?: {
1895
- name?: string | undefined;
1896
- url?: string | undefined;
1897
- email?: string | undefined;
1898
- } | undefined;
1899
- license?: {
1900
- name: string;
1901
- url?: string | undefined;
1902
- } | undefined;
1903
- }, {
1904
- title: string;
1905
- version: string;
1906
- description?: string | undefined;
1907
- termsOfService?: string | undefined;
1908
- contact?: {
1909
- name?: string | undefined;
1910
- url?: string | undefined;
1911
- email?: string | undefined;
1912
- } | undefined;
1913
- license?: {
1914
- name: string;
1915
- url?: string | undefined;
1916
- } | undefined;
1917
- }>;
498
+ }, z.core.$strict>;
1918
499
  externalDocs: z.ZodOptional<z.ZodObject<{
1919
500
  description: z.ZodOptional<z.ZodString>;
1920
501
  url: z.ZodString;
1921
- }, "strict", z.ZodTypeAny, {
1922
- url: string;
1923
- description?: string | undefined;
1924
- }, {
1925
- url: string;
1926
- description?: string | undefined;
1927
- }>>;
502
+ }, z.core.$strict>>;
1928
503
  servers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1929
504
  url: z.ZodString;
1930
505
  description: z.ZodOptional<z.ZodString>;
1931
506
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1932
- enum: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
507
+ enum: z.ZodOptional<z.ZodArray<z.ZodString>>;
1933
508
  default: z.ZodString;
1934
509
  description: z.ZodOptional<z.ZodString>;
1935
- }, "strict", z.ZodTypeAny, {
1936
- default: string;
1937
- description?: string | undefined;
1938
- enum?: string[] | undefined;
1939
- }, {
1940
- default: string;
1941
- description?: string | undefined;
1942
- enum?: string[] | undefined;
1943
- }>>>;
1944
- }, "strict", z.ZodTypeAny, {
1945
- url: string;
1946
- description?: string | undefined;
1947
- variables?: Record<string, {
1948
- default: string;
1949
- description?: string | undefined;
1950
- enum?: string[] | undefined;
1951
- }> | undefined;
1952
- }, {
1953
- url: string;
1954
- description?: string | undefined;
1955
- variables?: Record<string, {
1956
- default: string;
1957
- description?: string | undefined;
1958
- enum?: string[] | undefined;
1959
- }> | undefined;
1960
- }>, "many">>;
1961
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
510
+ }, z.core.$strict>>>;
511
+ }, z.core.$strict>>>;
512
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
1962
513
  tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
1963
514
  name: z.ZodString;
1964
515
  description: z.ZodOptional<z.ZodString>;
1965
516
  externalDocs: z.ZodOptional<z.ZodObject<{
1966
517
  description: z.ZodOptional<z.ZodString>;
1967
518
  url: z.ZodString;
1968
- }, "strict", z.ZodTypeAny, {
1969
- url: string;
1970
- description?: string | undefined;
1971
- }, {
1972
- url: string;
1973
- description?: string | undefined;
1974
- }>>;
1975
- }, "strict", z.ZodTypeAny, {
1976
- name: string;
1977
- description?: string | undefined;
1978
- externalDocs?: {
1979
- url: string;
1980
- description?: string | undefined;
1981
- } | undefined;
1982
- }, {
1983
- name: string;
1984
- description?: string | undefined;
1985
- externalDocs?: {
1986
- url: string;
1987
- description?: string | undefined;
1988
- } | undefined;
1989
- }>, "many">>;
519
+ }, z.core.$strict>>;
520
+ }, z.core.$strict>>>;
1990
521
  paths: z.ZodRecord<z.ZodString, z.ZodObject<{
1991
522
  summary: z.ZodOptional<z.ZodString>;
1992
523
  description: z.ZodOptional<z.ZodString>;
1993
524
  get: z.ZodOptional<z.ZodObject<{
1994
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
525
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
1995
526
  summary: z.ZodOptional<z.ZodString>;
1996
527
  description: z.ZodOptional<z.ZodString>;
1997
528
  externalDocs: z.ZodOptional<z.ZodUnknown>;
1998
529
  operationId: z.ZodOptional<z.ZodString>;
1999
530
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2000
531
  name: z.ZodString;
2001
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
532
+ in: z.ZodEnum<{
533
+ path: "path";
534
+ header: "header";
535
+ query: "query";
536
+ cookie: "cookie";
537
+ }>;
2002
538
  description: z.ZodOptional<z.ZodString>;
2003
539
  required: z.ZodOptional<z.ZodBoolean>;
2004
540
  deprecated: z.ZodOptional<z.ZodBoolean>;
2005
541
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2006
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
542
+ style: z.ZodOptional<z.ZodEnum<{
543
+ matrix: "matrix";
544
+ label: "label";
545
+ form: "form";
546
+ simple: "simple";
547
+ spaceDelimited: "spaceDelimited";
548
+ pipeDelimited: "pipeDelimited";
549
+ deepObject: "deepObject";
550
+ }>>;
2007
551
  explode: z.ZodOptional<z.ZodString>;
2008
552
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2009
553
  schema: z.ZodOptional<z.ZodUnknown>;
2010
554
  example: z.ZodOptional<z.ZodUnknown>;
2011
555
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2012
556
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2013
- }, "strip", z.ZodTypeAny, {
2014
- name: string;
2015
- in: "path" | "header" | "cookie" | "query";
2016
- description?: string | undefined;
2017
- required?: boolean | undefined;
2018
- deprecated?: boolean | undefined;
2019
- allowEmptyValue?: boolean | undefined;
2020
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2021
- explode?: string | undefined;
2022
- allowReserved?: boolean | undefined;
2023
- schema?: unknown;
2024
- example?: unknown;
2025
- examples?: Record<string, unknown> | undefined;
2026
- content?: Record<string, unknown> | undefined;
2027
- }, {
2028
- name: string;
2029
- in: "path" | "header" | "cookie" | "query";
2030
- description?: string | undefined;
2031
- required?: boolean | undefined;
2032
- deprecated?: boolean | undefined;
2033
- allowEmptyValue?: boolean | undefined;
2034
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2035
- explode?: string | undefined;
2036
- allowReserved?: boolean | undefined;
2037
- schema?: unknown;
2038
- example?: unknown;
2039
- examples?: Record<string, unknown> | undefined;
2040
- content?: Record<string, unknown> | undefined;
2041
- }>, z.ZodObject<{
557
+ }, z.core.$strip>, z.ZodObject<{
2042
558
  $ref: z.ZodString;
2043
559
  summary: z.ZodOptional<z.ZodString>;
2044
560
  description: z.ZodOptional<z.ZodString>;
2045
- }, "strip", z.ZodTypeAny, {
2046
- $ref: string;
2047
- description?: string | undefined;
2048
- summary?: string | undefined;
2049
- }, {
2050
- $ref: string;
2051
- description?: string | undefined;
2052
- summary?: string | undefined;
2053
- }>]>, "many">>;
561
+ }, z.core.$strip>]>>>;
2054
562
  requestBody: z.ZodOptional<z.ZodUnknown>;
2055
563
  responses: z.ZodOptional<z.ZodUnknown>;
2056
564
  callbacks: z.ZodOptional<z.ZodUnknown>;
2057
565
  deprecated: z.ZodOptional<z.ZodBoolean>;
2058
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2059
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2060
- }, "strip", z.ZodTypeAny, {
2061
- description?: string | undefined;
2062
- tags?: string[] | undefined;
2063
- summary?: string | undefined;
2064
- responses?: unknown;
2065
- parameters?: ({
2066
- name: string;
2067
- in: "path" | "header" | "cookie" | "query";
2068
- description?: string | undefined;
2069
- required?: boolean | undefined;
2070
- deprecated?: boolean | undefined;
2071
- allowEmptyValue?: boolean | undefined;
2072
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2073
- explode?: string | undefined;
2074
- allowReserved?: boolean | undefined;
2075
- schema?: unknown;
2076
- example?: unknown;
2077
- examples?: Record<string, unknown> | undefined;
2078
- content?: Record<string, unknown> | undefined;
2079
- } | {
2080
- $ref: string;
2081
- description?: string | undefined;
2082
- summary?: string | undefined;
2083
- })[] | undefined;
2084
- deprecated?: boolean | undefined;
2085
- externalDocs?: unknown;
2086
- operationId?: string | undefined;
2087
- requestBody?: unknown;
2088
- callbacks?: unknown;
2089
- security?: Record<string, string[]>[] | undefined;
2090
- servers?: unknown[] | undefined;
2091
- }, {
2092
- description?: string | undefined;
2093
- tags?: string[] | undefined;
2094
- summary?: string | undefined;
2095
- responses?: unknown;
2096
- parameters?: ({
2097
- name: string;
2098
- in: "path" | "header" | "cookie" | "query";
2099
- description?: string | undefined;
2100
- required?: boolean | undefined;
2101
- deprecated?: boolean | undefined;
2102
- allowEmptyValue?: boolean | undefined;
2103
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2104
- explode?: string | undefined;
2105
- allowReserved?: boolean | undefined;
2106
- schema?: unknown;
2107
- example?: unknown;
2108
- examples?: Record<string, unknown> | undefined;
2109
- content?: Record<string, unknown> | undefined;
2110
- } | {
2111
- $ref: string;
2112
- description?: string | undefined;
2113
- summary?: string | undefined;
2114
- })[] | undefined;
2115
- deprecated?: boolean | undefined;
2116
- externalDocs?: unknown;
2117
- operationId?: string | undefined;
2118
- requestBody?: unknown;
2119
- callbacks?: unknown;
2120
- security?: Record<string, string[]>[] | undefined;
2121
- servers?: unknown[] | undefined;
2122
- }>>;
566
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
567
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
568
+ }, z.core.$strip>>;
2123
569
  put: z.ZodOptional<z.ZodObject<{
2124
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
570
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2125
571
  summary: z.ZodOptional<z.ZodString>;
2126
572
  description: z.ZodOptional<z.ZodString>;
2127
573
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2128
574
  operationId: z.ZodOptional<z.ZodString>;
2129
575
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2130
576
  name: z.ZodString;
2131
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
577
+ in: z.ZodEnum<{
578
+ path: "path";
579
+ header: "header";
580
+ query: "query";
581
+ cookie: "cookie";
582
+ }>;
2132
583
  description: z.ZodOptional<z.ZodString>;
2133
584
  required: z.ZodOptional<z.ZodBoolean>;
2134
585
  deprecated: z.ZodOptional<z.ZodBoolean>;
2135
586
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2136
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
587
+ style: z.ZodOptional<z.ZodEnum<{
588
+ matrix: "matrix";
589
+ label: "label";
590
+ form: "form";
591
+ simple: "simple";
592
+ spaceDelimited: "spaceDelimited";
593
+ pipeDelimited: "pipeDelimited";
594
+ deepObject: "deepObject";
595
+ }>>;
2137
596
  explode: z.ZodOptional<z.ZodString>;
2138
597
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2139
598
  schema: z.ZodOptional<z.ZodUnknown>;
2140
599
  example: z.ZodOptional<z.ZodUnknown>;
2141
600
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2142
601
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2143
- }, "strip", z.ZodTypeAny, {
2144
- name: string;
2145
- in: "path" | "header" | "cookie" | "query";
2146
- description?: string | undefined;
2147
- required?: boolean | undefined;
2148
- deprecated?: boolean | undefined;
2149
- allowEmptyValue?: boolean | undefined;
2150
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2151
- explode?: string | undefined;
2152
- allowReserved?: boolean | undefined;
2153
- schema?: unknown;
2154
- example?: unknown;
2155
- examples?: Record<string, unknown> | undefined;
2156
- content?: Record<string, unknown> | undefined;
2157
- }, {
2158
- name: string;
2159
- in: "path" | "header" | "cookie" | "query";
2160
- description?: string | undefined;
2161
- required?: boolean | undefined;
2162
- deprecated?: boolean | undefined;
2163
- allowEmptyValue?: boolean | undefined;
2164
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2165
- explode?: string | undefined;
2166
- allowReserved?: boolean | undefined;
2167
- schema?: unknown;
2168
- example?: unknown;
2169
- examples?: Record<string, unknown> | undefined;
2170
- content?: Record<string, unknown> | undefined;
2171
- }>, z.ZodObject<{
602
+ }, z.core.$strip>, z.ZodObject<{
2172
603
  $ref: z.ZodString;
2173
604
  summary: z.ZodOptional<z.ZodString>;
2174
605
  description: z.ZodOptional<z.ZodString>;
2175
- }, "strip", z.ZodTypeAny, {
2176
- $ref: string;
2177
- description?: string | undefined;
2178
- summary?: string | undefined;
2179
- }, {
2180
- $ref: string;
2181
- description?: string | undefined;
2182
- summary?: string | undefined;
2183
- }>]>, "many">>;
606
+ }, z.core.$strip>]>>>;
2184
607
  requestBody: z.ZodOptional<z.ZodUnknown>;
2185
608
  responses: z.ZodOptional<z.ZodUnknown>;
2186
609
  callbacks: z.ZodOptional<z.ZodUnknown>;
2187
610
  deprecated: z.ZodOptional<z.ZodBoolean>;
2188
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2189
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2190
- }, "strip", z.ZodTypeAny, {
2191
- description?: string | undefined;
2192
- tags?: string[] | undefined;
2193
- summary?: string | undefined;
2194
- responses?: unknown;
2195
- parameters?: ({
2196
- name: string;
2197
- in: "path" | "header" | "cookie" | "query";
2198
- description?: string | undefined;
2199
- required?: boolean | undefined;
2200
- deprecated?: boolean | undefined;
2201
- allowEmptyValue?: boolean | undefined;
2202
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2203
- explode?: string | undefined;
2204
- allowReserved?: boolean | undefined;
2205
- schema?: unknown;
2206
- example?: unknown;
2207
- examples?: Record<string, unknown> | undefined;
2208
- content?: Record<string, unknown> | undefined;
2209
- } | {
2210
- $ref: string;
2211
- description?: string | undefined;
2212
- summary?: string | undefined;
2213
- })[] | undefined;
2214
- deprecated?: boolean | undefined;
2215
- externalDocs?: unknown;
2216
- operationId?: string | undefined;
2217
- requestBody?: unknown;
2218
- callbacks?: unknown;
2219
- security?: Record<string, string[]>[] | undefined;
2220
- servers?: unknown[] | undefined;
2221
- }, {
2222
- description?: string | undefined;
2223
- tags?: string[] | undefined;
2224
- summary?: string | undefined;
2225
- responses?: unknown;
2226
- parameters?: ({
2227
- name: string;
2228
- in: "path" | "header" | "cookie" | "query";
2229
- description?: string | undefined;
2230
- required?: boolean | undefined;
2231
- deprecated?: boolean | undefined;
2232
- allowEmptyValue?: boolean | undefined;
2233
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2234
- explode?: string | undefined;
2235
- allowReserved?: boolean | undefined;
2236
- schema?: unknown;
2237
- example?: unknown;
2238
- examples?: Record<string, unknown> | undefined;
2239
- content?: Record<string, unknown> | undefined;
2240
- } | {
2241
- $ref: string;
2242
- description?: string | undefined;
2243
- summary?: string | undefined;
2244
- })[] | undefined;
2245
- deprecated?: boolean | undefined;
2246
- externalDocs?: unknown;
2247
- operationId?: string | undefined;
2248
- requestBody?: unknown;
2249
- callbacks?: unknown;
2250
- security?: Record<string, string[]>[] | undefined;
2251
- servers?: unknown[] | undefined;
2252
- }>>;
611
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
612
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
613
+ }, z.core.$strip>>;
2253
614
  post: z.ZodOptional<z.ZodObject<{
2254
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
615
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2255
616
  summary: z.ZodOptional<z.ZodString>;
2256
617
  description: z.ZodOptional<z.ZodString>;
2257
618
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2258
619
  operationId: z.ZodOptional<z.ZodString>;
2259
620
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2260
621
  name: z.ZodString;
2261
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
622
+ in: z.ZodEnum<{
623
+ path: "path";
624
+ header: "header";
625
+ query: "query";
626
+ cookie: "cookie";
627
+ }>;
2262
628
  description: z.ZodOptional<z.ZodString>;
2263
629
  required: z.ZodOptional<z.ZodBoolean>;
2264
630
  deprecated: z.ZodOptional<z.ZodBoolean>;
2265
631
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2266
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
632
+ style: z.ZodOptional<z.ZodEnum<{
633
+ matrix: "matrix";
634
+ label: "label";
635
+ form: "form";
636
+ simple: "simple";
637
+ spaceDelimited: "spaceDelimited";
638
+ pipeDelimited: "pipeDelimited";
639
+ deepObject: "deepObject";
640
+ }>>;
2267
641
  explode: z.ZodOptional<z.ZodString>;
2268
642
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2269
643
  schema: z.ZodOptional<z.ZodUnknown>;
2270
644
  example: z.ZodOptional<z.ZodUnknown>;
2271
645
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2272
646
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2273
- }, "strip", z.ZodTypeAny, {
2274
- name: string;
2275
- in: "path" | "header" | "cookie" | "query";
2276
- description?: string | undefined;
2277
- required?: boolean | undefined;
2278
- deprecated?: boolean | undefined;
2279
- allowEmptyValue?: boolean | undefined;
2280
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2281
- explode?: string | undefined;
2282
- allowReserved?: boolean | undefined;
2283
- schema?: unknown;
2284
- example?: unknown;
2285
- examples?: Record<string, unknown> | undefined;
2286
- content?: Record<string, unknown> | undefined;
2287
- }, {
2288
- name: string;
2289
- in: "path" | "header" | "cookie" | "query";
2290
- description?: string | undefined;
2291
- required?: boolean | undefined;
2292
- deprecated?: boolean | undefined;
2293
- allowEmptyValue?: boolean | undefined;
2294
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2295
- explode?: string | undefined;
2296
- allowReserved?: boolean | undefined;
2297
- schema?: unknown;
2298
- example?: unknown;
2299
- examples?: Record<string, unknown> | undefined;
2300
- content?: Record<string, unknown> | undefined;
2301
- }>, z.ZodObject<{
647
+ }, z.core.$strip>, z.ZodObject<{
2302
648
  $ref: z.ZodString;
2303
649
  summary: z.ZodOptional<z.ZodString>;
2304
650
  description: z.ZodOptional<z.ZodString>;
2305
- }, "strip", z.ZodTypeAny, {
2306
- $ref: string;
2307
- description?: string | undefined;
2308
- summary?: string | undefined;
2309
- }, {
2310
- $ref: string;
2311
- description?: string | undefined;
2312
- summary?: string | undefined;
2313
- }>]>, "many">>;
651
+ }, z.core.$strip>]>>>;
2314
652
  requestBody: z.ZodOptional<z.ZodUnknown>;
2315
653
  responses: z.ZodOptional<z.ZodUnknown>;
2316
654
  callbacks: z.ZodOptional<z.ZodUnknown>;
2317
655
  deprecated: z.ZodOptional<z.ZodBoolean>;
2318
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2319
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2320
- }, "strip", z.ZodTypeAny, {
2321
- description?: string | undefined;
2322
- tags?: string[] | undefined;
2323
- summary?: string | undefined;
2324
- responses?: unknown;
2325
- parameters?: ({
2326
- name: string;
2327
- in: "path" | "header" | "cookie" | "query";
2328
- description?: string | undefined;
2329
- required?: boolean | undefined;
2330
- deprecated?: boolean | undefined;
2331
- allowEmptyValue?: boolean | undefined;
2332
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2333
- explode?: string | undefined;
2334
- allowReserved?: boolean | undefined;
2335
- schema?: unknown;
2336
- example?: unknown;
2337
- examples?: Record<string, unknown> | undefined;
2338
- content?: Record<string, unknown> | undefined;
2339
- } | {
2340
- $ref: string;
2341
- description?: string | undefined;
2342
- summary?: string | undefined;
2343
- })[] | undefined;
2344
- deprecated?: boolean | undefined;
2345
- externalDocs?: unknown;
2346
- operationId?: string | undefined;
2347
- requestBody?: unknown;
2348
- callbacks?: unknown;
2349
- security?: Record<string, string[]>[] | undefined;
2350
- servers?: unknown[] | undefined;
2351
- }, {
2352
- description?: string | undefined;
2353
- tags?: string[] | undefined;
2354
- summary?: string | undefined;
2355
- responses?: unknown;
2356
- parameters?: ({
2357
- name: string;
2358
- in: "path" | "header" | "cookie" | "query";
2359
- description?: string | undefined;
2360
- required?: boolean | undefined;
2361
- deprecated?: boolean | undefined;
2362
- allowEmptyValue?: boolean | undefined;
2363
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2364
- explode?: string | undefined;
2365
- allowReserved?: boolean | undefined;
2366
- schema?: unknown;
2367
- example?: unknown;
2368
- examples?: Record<string, unknown> | undefined;
2369
- content?: Record<string, unknown> | undefined;
2370
- } | {
2371
- $ref: string;
2372
- description?: string | undefined;
2373
- summary?: string | undefined;
2374
- })[] | undefined;
2375
- deprecated?: boolean | undefined;
2376
- externalDocs?: unknown;
2377
- operationId?: string | undefined;
2378
- requestBody?: unknown;
2379
- callbacks?: unknown;
2380
- security?: Record<string, string[]>[] | undefined;
2381
- servers?: unknown[] | undefined;
2382
- }>>;
656
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
657
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
658
+ }, z.core.$strip>>;
2383
659
  delete: z.ZodOptional<z.ZodObject<{
2384
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
660
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2385
661
  summary: z.ZodOptional<z.ZodString>;
2386
662
  description: z.ZodOptional<z.ZodString>;
2387
663
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2388
664
  operationId: z.ZodOptional<z.ZodString>;
2389
665
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2390
666
  name: z.ZodString;
2391
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
667
+ in: z.ZodEnum<{
668
+ path: "path";
669
+ header: "header";
670
+ query: "query";
671
+ cookie: "cookie";
672
+ }>;
2392
673
  description: z.ZodOptional<z.ZodString>;
2393
674
  required: z.ZodOptional<z.ZodBoolean>;
2394
675
  deprecated: z.ZodOptional<z.ZodBoolean>;
2395
676
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2396
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
677
+ style: z.ZodOptional<z.ZodEnum<{
678
+ matrix: "matrix";
679
+ label: "label";
680
+ form: "form";
681
+ simple: "simple";
682
+ spaceDelimited: "spaceDelimited";
683
+ pipeDelimited: "pipeDelimited";
684
+ deepObject: "deepObject";
685
+ }>>;
2397
686
  explode: z.ZodOptional<z.ZodString>;
2398
687
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2399
688
  schema: z.ZodOptional<z.ZodUnknown>;
2400
689
  example: z.ZodOptional<z.ZodUnknown>;
2401
690
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2402
691
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2403
- }, "strip", z.ZodTypeAny, {
2404
- name: string;
2405
- in: "path" | "header" | "cookie" | "query";
2406
- description?: string | undefined;
2407
- required?: boolean | undefined;
2408
- deprecated?: boolean | undefined;
2409
- allowEmptyValue?: boolean | undefined;
2410
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2411
- explode?: string | undefined;
2412
- allowReserved?: boolean | undefined;
2413
- schema?: unknown;
2414
- example?: unknown;
2415
- examples?: Record<string, unknown> | undefined;
2416
- content?: Record<string, unknown> | undefined;
2417
- }, {
2418
- name: string;
2419
- in: "path" | "header" | "cookie" | "query";
2420
- description?: string | undefined;
2421
- required?: boolean | undefined;
2422
- deprecated?: boolean | undefined;
2423
- allowEmptyValue?: boolean | undefined;
2424
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2425
- explode?: string | undefined;
2426
- allowReserved?: boolean | undefined;
2427
- schema?: unknown;
2428
- example?: unknown;
2429
- examples?: Record<string, unknown> | undefined;
2430
- content?: Record<string, unknown> | undefined;
2431
- }>, z.ZodObject<{
692
+ }, z.core.$strip>, z.ZodObject<{
2432
693
  $ref: z.ZodString;
2433
694
  summary: z.ZodOptional<z.ZodString>;
2434
695
  description: z.ZodOptional<z.ZodString>;
2435
- }, "strip", z.ZodTypeAny, {
2436
- $ref: string;
2437
- description?: string | undefined;
2438
- summary?: string | undefined;
2439
- }, {
2440
- $ref: string;
2441
- description?: string | undefined;
2442
- summary?: string | undefined;
2443
- }>]>, "many">>;
696
+ }, z.core.$strip>]>>>;
2444
697
  requestBody: z.ZodOptional<z.ZodUnknown>;
2445
698
  responses: z.ZodOptional<z.ZodUnknown>;
2446
699
  callbacks: z.ZodOptional<z.ZodUnknown>;
2447
700
  deprecated: z.ZodOptional<z.ZodBoolean>;
2448
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2449
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2450
- }, "strip", z.ZodTypeAny, {
2451
- description?: string | undefined;
2452
- tags?: string[] | undefined;
2453
- summary?: string | undefined;
2454
- responses?: unknown;
2455
- parameters?: ({
2456
- name: string;
2457
- in: "path" | "header" | "cookie" | "query";
2458
- description?: string | undefined;
2459
- required?: boolean | undefined;
2460
- deprecated?: boolean | undefined;
2461
- allowEmptyValue?: boolean | undefined;
2462
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2463
- explode?: string | undefined;
2464
- allowReserved?: boolean | undefined;
2465
- schema?: unknown;
2466
- example?: unknown;
2467
- examples?: Record<string, unknown> | undefined;
2468
- content?: Record<string, unknown> | undefined;
2469
- } | {
2470
- $ref: string;
2471
- description?: string | undefined;
2472
- summary?: string | undefined;
2473
- })[] | undefined;
2474
- deprecated?: boolean | undefined;
2475
- externalDocs?: unknown;
2476
- operationId?: string | undefined;
2477
- requestBody?: unknown;
2478
- callbacks?: unknown;
2479
- security?: Record<string, string[]>[] | undefined;
2480
- servers?: unknown[] | undefined;
2481
- }, {
2482
- description?: string | undefined;
2483
- tags?: string[] | undefined;
2484
- summary?: string | undefined;
2485
- responses?: unknown;
2486
- parameters?: ({
2487
- name: string;
2488
- in: "path" | "header" | "cookie" | "query";
2489
- description?: string | undefined;
2490
- required?: boolean | undefined;
2491
- deprecated?: boolean | undefined;
2492
- allowEmptyValue?: boolean | undefined;
2493
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2494
- explode?: string | undefined;
2495
- allowReserved?: boolean | undefined;
2496
- schema?: unknown;
2497
- example?: unknown;
2498
- examples?: Record<string, unknown> | undefined;
2499
- content?: Record<string, unknown> | undefined;
2500
- } | {
2501
- $ref: string;
2502
- description?: string | undefined;
2503
- summary?: string | undefined;
2504
- })[] | undefined;
2505
- deprecated?: boolean | undefined;
2506
- externalDocs?: unknown;
2507
- operationId?: string | undefined;
2508
- requestBody?: unknown;
2509
- callbacks?: unknown;
2510
- security?: Record<string, string[]>[] | undefined;
2511
- servers?: unknown[] | undefined;
2512
- }>>;
701
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
702
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
703
+ }, z.core.$strip>>;
2513
704
  options: z.ZodOptional<z.ZodObject<{
2514
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
705
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2515
706
  summary: z.ZodOptional<z.ZodString>;
2516
707
  description: z.ZodOptional<z.ZodString>;
2517
708
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2518
709
  operationId: z.ZodOptional<z.ZodString>;
2519
710
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2520
711
  name: z.ZodString;
2521
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
712
+ in: z.ZodEnum<{
713
+ path: "path";
714
+ header: "header";
715
+ query: "query";
716
+ cookie: "cookie";
717
+ }>;
2522
718
  description: z.ZodOptional<z.ZodString>;
2523
719
  required: z.ZodOptional<z.ZodBoolean>;
2524
720
  deprecated: z.ZodOptional<z.ZodBoolean>;
2525
721
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2526
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
722
+ style: z.ZodOptional<z.ZodEnum<{
723
+ matrix: "matrix";
724
+ label: "label";
725
+ form: "form";
726
+ simple: "simple";
727
+ spaceDelimited: "spaceDelimited";
728
+ pipeDelimited: "pipeDelimited";
729
+ deepObject: "deepObject";
730
+ }>>;
2527
731
  explode: z.ZodOptional<z.ZodString>;
2528
732
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2529
733
  schema: z.ZodOptional<z.ZodUnknown>;
2530
734
  example: z.ZodOptional<z.ZodUnknown>;
2531
735
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2532
736
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2533
- }, "strip", z.ZodTypeAny, {
2534
- name: string;
2535
- in: "path" | "header" | "cookie" | "query";
2536
- description?: string | undefined;
2537
- required?: boolean | undefined;
2538
- deprecated?: boolean | undefined;
2539
- allowEmptyValue?: boolean | undefined;
2540
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2541
- explode?: string | undefined;
2542
- allowReserved?: boolean | undefined;
2543
- schema?: unknown;
2544
- example?: unknown;
2545
- examples?: Record<string, unknown> | undefined;
2546
- content?: Record<string, unknown> | undefined;
2547
- }, {
2548
- name: string;
2549
- in: "path" | "header" | "cookie" | "query";
2550
- description?: string | undefined;
2551
- required?: boolean | undefined;
2552
- deprecated?: boolean | undefined;
2553
- allowEmptyValue?: boolean | undefined;
2554
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2555
- explode?: string | undefined;
2556
- allowReserved?: boolean | undefined;
2557
- schema?: unknown;
2558
- example?: unknown;
2559
- examples?: Record<string, unknown> | undefined;
2560
- content?: Record<string, unknown> | undefined;
2561
- }>, z.ZodObject<{
737
+ }, z.core.$strip>, z.ZodObject<{
2562
738
  $ref: z.ZodString;
2563
739
  summary: z.ZodOptional<z.ZodString>;
2564
740
  description: z.ZodOptional<z.ZodString>;
2565
- }, "strip", z.ZodTypeAny, {
2566
- $ref: string;
2567
- description?: string | undefined;
2568
- summary?: string | undefined;
2569
- }, {
2570
- $ref: string;
2571
- description?: string | undefined;
2572
- summary?: string | undefined;
2573
- }>]>, "many">>;
741
+ }, z.core.$strip>]>>>;
2574
742
  requestBody: z.ZodOptional<z.ZodUnknown>;
2575
743
  responses: z.ZodOptional<z.ZodUnknown>;
2576
744
  callbacks: z.ZodOptional<z.ZodUnknown>;
2577
745
  deprecated: z.ZodOptional<z.ZodBoolean>;
2578
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2579
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2580
- }, "strip", z.ZodTypeAny, {
2581
- description?: string | undefined;
2582
- tags?: string[] | undefined;
2583
- summary?: string | undefined;
2584
- responses?: unknown;
2585
- parameters?: ({
2586
- name: string;
2587
- in: "path" | "header" | "cookie" | "query";
2588
- description?: string | undefined;
2589
- required?: boolean | undefined;
2590
- deprecated?: boolean | undefined;
2591
- allowEmptyValue?: boolean | undefined;
2592
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2593
- explode?: string | undefined;
2594
- allowReserved?: boolean | undefined;
2595
- schema?: unknown;
2596
- example?: unknown;
2597
- examples?: Record<string, unknown> | undefined;
2598
- content?: Record<string, unknown> | undefined;
2599
- } | {
2600
- $ref: string;
2601
- description?: string | undefined;
2602
- summary?: string | undefined;
2603
- })[] | undefined;
2604
- deprecated?: boolean | undefined;
2605
- externalDocs?: unknown;
2606
- operationId?: string | undefined;
2607
- requestBody?: unknown;
2608
- callbacks?: unknown;
2609
- security?: Record<string, string[]>[] | undefined;
2610
- servers?: unknown[] | undefined;
2611
- }, {
2612
- description?: string | undefined;
2613
- tags?: string[] | undefined;
2614
- summary?: string | undefined;
2615
- responses?: unknown;
2616
- parameters?: ({
2617
- name: string;
2618
- in: "path" | "header" | "cookie" | "query";
2619
- description?: string | undefined;
2620
- required?: boolean | undefined;
2621
- deprecated?: boolean | undefined;
2622
- allowEmptyValue?: boolean | undefined;
2623
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2624
- explode?: string | undefined;
2625
- allowReserved?: boolean | undefined;
2626
- schema?: unknown;
2627
- example?: unknown;
2628
- examples?: Record<string, unknown> | undefined;
2629
- content?: Record<string, unknown> | undefined;
2630
- } | {
2631
- $ref: string;
2632
- description?: string | undefined;
2633
- summary?: string | undefined;
2634
- })[] | undefined;
2635
- deprecated?: boolean | undefined;
2636
- externalDocs?: unknown;
2637
- operationId?: string | undefined;
2638
- requestBody?: unknown;
2639
- callbacks?: unknown;
2640
- security?: Record<string, string[]>[] | undefined;
2641
- servers?: unknown[] | undefined;
2642
- }>>;
746
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
747
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
748
+ }, z.core.$strip>>;
2643
749
  head: z.ZodOptional<z.ZodObject<{
2644
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
750
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2645
751
  summary: z.ZodOptional<z.ZodString>;
2646
752
  description: z.ZodOptional<z.ZodString>;
2647
753
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2648
754
  operationId: z.ZodOptional<z.ZodString>;
2649
755
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2650
756
  name: z.ZodString;
2651
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
757
+ in: z.ZodEnum<{
758
+ path: "path";
759
+ header: "header";
760
+ query: "query";
761
+ cookie: "cookie";
762
+ }>;
2652
763
  description: z.ZodOptional<z.ZodString>;
2653
764
  required: z.ZodOptional<z.ZodBoolean>;
2654
765
  deprecated: z.ZodOptional<z.ZodBoolean>;
2655
766
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2656
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
767
+ style: z.ZodOptional<z.ZodEnum<{
768
+ matrix: "matrix";
769
+ label: "label";
770
+ form: "form";
771
+ simple: "simple";
772
+ spaceDelimited: "spaceDelimited";
773
+ pipeDelimited: "pipeDelimited";
774
+ deepObject: "deepObject";
775
+ }>>;
2657
776
  explode: z.ZodOptional<z.ZodString>;
2658
777
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2659
778
  schema: z.ZodOptional<z.ZodUnknown>;
2660
779
  example: z.ZodOptional<z.ZodUnknown>;
2661
780
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2662
781
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2663
- }, "strip", z.ZodTypeAny, {
2664
- name: string;
2665
- in: "path" | "header" | "cookie" | "query";
2666
- description?: string | undefined;
2667
- required?: boolean | undefined;
2668
- deprecated?: boolean | undefined;
2669
- allowEmptyValue?: boolean | undefined;
2670
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2671
- explode?: string | undefined;
2672
- allowReserved?: boolean | undefined;
2673
- schema?: unknown;
2674
- example?: unknown;
2675
- examples?: Record<string, unknown> | undefined;
2676
- content?: Record<string, unknown> | undefined;
2677
- }, {
2678
- name: string;
2679
- in: "path" | "header" | "cookie" | "query";
2680
- description?: string | undefined;
2681
- required?: boolean | undefined;
2682
- deprecated?: boolean | undefined;
2683
- allowEmptyValue?: boolean | undefined;
2684
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2685
- explode?: string | undefined;
2686
- allowReserved?: boolean | undefined;
2687
- schema?: unknown;
2688
- example?: unknown;
2689
- examples?: Record<string, unknown> | undefined;
2690
- content?: Record<string, unknown> | undefined;
2691
- }>, z.ZodObject<{
782
+ }, z.core.$strip>, z.ZodObject<{
2692
783
  $ref: z.ZodString;
2693
784
  summary: z.ZodOptional<z.ZodString>;
2694
785
  description: z.ZodOptional<z.ZodString>;
2695
- }, "strip", z.ZodTypeAny, {
2696
- $ref: string;
2697
- description?: string | undefined;
2698
- summary?: string | undefined;
2699
- }, {
2700
- $ref: string;
2701
- description?: string | undefined;
2702
- summary?: string | undefined;
2703
- }>]>, "many">>;
786
+ }, z.core.$strip>]>>>;
2704
787
  requestBody: z.ZodOptional<z.ZodUnknown>;
2705
788
  responses: z.ZodOptional<z.ZodUnknown>;
2706
789
  callbacks: z.ZodOptional<z.ZodUnknown>;
2707
790
  deprecated: z.ZodOptional<z.ZodBoolean>;
2708
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2709
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2710
- }, "strip", z.ZodTypeAny, {
2711
- description?: string | undefined;
2712
- tags?: string[] | undefined;
2713
- summary?: string | undefined;
2714
- responses?: unknown;
2715
- parameters?: ({
2716
- name: string;
2717
- in: "path" | "header" | "cookie" | "query";
2718
- description?: string | undefined;
2719
- required?: boolean | undefined;
2720
- deprecated?: boolean | undefined;
2721
- allowEmptyValue?: boolean | undefined;
2722
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2723
- explode?: string | undefined;
2724
- allowReserved?: boolean | undefined;
2725
- schema?: unknown;
2726
- example?: unknown;
2727
- examples?: Record<string, unknown> | undefined;
2728
- content?: Record<string, unknown> | undefined;
2729
- } | {
2730
- $ref: string;
2731
- description?: string | undefined;
2732
- summary?: string | undefined;
2733
- })[] | undefined;
2734
- deprecated?: boolean | undefined;
2735
- externalDocs?: unknown;
2736
- operationId?: string | undefined;
2737
- requestBody?: unknown;
2738
- callbacks?: unknown;
2739
- security?: Record<string, string[]>[] | undefined;
2740
- servers?: unknown[] | undefined;
2741
- }, {
2742
- description?: string | undefined;
2743
- tags?: string[] | undefined;
2744
- summary?: string | undefined;
2745
- responses?: unknown;
2746
- parameters?: ({
2747
- name: string;
2748
- in: "path" | "header" | "cookie" | "query";
2749
- description?: string | undefined;
2750
- required?: boolean | undefined;
2751
- deprecated?: boolean | undefined;
2752
- allowEmptyValue?: boolean | undefined;
2753
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2754
- explode?: string | undefined;
2755
- allowReserved?: boolean | undefined;
2756
- schema?: unknown;
2757
- example?: unknown;
2758
- examples?: Record<string, unknown> | undefined;
2759
- content?: Record<string, unknown> | undefined;
2760
- } | {
2761
- $ref: string;
2762
- description?: string | undefined;
2763
- summary?: string | undefined;
2764
- })[] | undefined;
2765
- deprecated?: boolean | undefined;
2766
- externalDocs?: unknown;
2767
- operationId?: string | undefined;
2768
- requestBody?: unknown;
2769
- callbacks?: unknown;
2770
- security?: Record<string, string[]>[] | undefined;
2771
- servers?: unknown[] | undefined;
2772
- }>>;
791
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
792
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
793
+ }, z.core.$strip>>;
2773
794
  patch: z.ZodOptional<z.ZodObject<{
2774
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
795
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2775
796
  summary: z.ZodOptional<z.ZodString>;
2776
797
  description: z.ZodOptional<z.ZodString>;
2777
798
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2778
799
  operationId: z.ZodOptional<z.ZodString>;
2779
800
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2780
801
  name: z.ZodString;
2781
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
802
+ in: z.ZodEnum<{
803
+ path: "path";
804
+ header: "header";
805
+ query: "query";
806
+ cookie: "cookie";
807
+ }>;
2782
808
  description: z.ZodOptional<z.ZodString>;
2783
809
  required: z.ZodOptional<z.ZodBoolean>;
2784
810
  deprecated: z.ZodOptional<z.ZodBoolean>;
2785
811
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2786
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
812
+ style: z.ZodOptional<z.ZodEnum<{
813
+ matrix: "matrix";
814
+ label: "label";
815
+ form: "form";
816
+ simple: "simple";
817
+ spaceDelimited: "spaceDelimited";
818
+ pipeDelimited: "pipeDelimited";
819
+ deepObject: "deepObject";
820
+ }>>;
2787
821
  explode: z.ZodOptional<z.ZodString>;
2788
822
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2789
823
  schema: z.ZodOptional<z.ZodUnknown>;
2790
824
  example: z.ZodOptional<z.ZodUnknown>;
2791
825
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2792
826
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2793
- }, "strip", z.ZodTypeAny, {
2794
- name: string;
2795
- in: "path" | "header" | "cookie" | "query";
2796
- description?: string | undefined;
2797
- required?: boolean | undefined;
2798
- deprecated?: boolean | undefined;
2799
- allowEmptyValue?: boolean | undefined;
2800
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2801
- explode?: string | undefined;
2802
- allowReserved?: boolean | undefined;
2803
- schema?: unknown;
2804
- example?: unknown;
2805
- examples?: Record<string, unknown> | undefined;
2806
- content?: Record<string, unknown> | undefined;
2807
- }, {
2808
- name: string;
2809
- in: "path" | "header" | "cookie" | "query";
2810
- description?: string | undefined;
2811
- required?: boolean | undefined;
2812
- deprecated?: boolean | undefined;
2813
- allowEmptyValue?: boolean | undefined;
2814
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2815
- explode?: string | undefined;
2816
- allowReserved?: boolean | undefined;
2817
- schema?: unknown;
2818
- example?: unknown;
2819
- examples?: Record<string, unknown> | undefined;
2820
- content?: Record<string, unknown> | undefined;
2821
- }>, z.ZodObject<{
827
+ }, z.core.$strip>, z.ZodObject<{
2822
828
  $ref: z.ZodString;
2823
829
  summary: z.ZodOptional<z.ZodString>;
2824
830
  description: z.ZodOptional<z.ZodString>;
2825
- }, "strip", z.ZodTypeAny, {
2826
- $ref: string;
2827
- description?: string | undefined;
2828
- summary?: string | undefined;
2829
- }, {
2830
- $ref: string;
2831
- description?: string | undefined;
2832
- summary?: string | undefined;
2833
- }>]>, "many">>;
831
+ }, z.core.$strip>]>>>;
2834
832
  requestBody: z.ZodOptional<z.ZodUnknown>;
2835
833
  responses: z.ZodOptional<z.ZodUnknown>;
2836
834
  callbacks: z.ZodOptional<z.ZodUnknown>;
2837
835
  deprecated: z.ZodOptional<z.ZodBoolean>;
2838
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2839
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2840
- }, "strip", z.ZodTypeAny, {
2841
- description?: string | undefined;
2842
- tags?: string[] | undefined;
2843
- summary?: string | undefined;
2844
- responses?: unknown;
2845
- parameters?: ({
2846
- name: string;
2847
- in: "path" | "header" | "cookie" | "query";
2848
- description?: string | undefined;
2849
- required?: boolean | undefined;
2850
- deprecated?: boolean | undefined;
2851
- allowEmptyValue?: boolean | undefined;
2852
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2853
- explode?: string | undefined;
2854
- allowReserved?: boolean | undefined;
2855
- schema?: unknown;
2856
- example?: unknown;
2857
- examples?: Record<string, unknown> | undefined;
2858
- content?: Record<string, unknown> | undefined;
2859
- } | {
2860
- $ref: string;
2861
- description?: string | undefined;
2862
- summary?: string | undefined;
2863
- })[] | undefined;
2864
- deprecated?: boolean | undefined;
2865
- externalDocs?: unknown;
2866
- operationId?: string | undefined;
2867
- requestBody?: unknown;
2868
- callbacks?: unknown;
2869
- security?: Record<string, string[]>[] | undefined;
2870
- servers?: unknown[] | undefined;
2871
- }, {
2872
- description?: string | undefined;
2873
- tags?: string[] | undefined;
2874
- summary?: string | undefined;
2875
- responses?: unknown;
2876
- parameters?: ({
2877
- name: string;
2878
- in: "path" | "header" | "cookie" | "query";
2879
- description?: string | undefined;
2880
- required?: boolean | undefined;
2881
- deprecated?: boolean | undefined;
2882
- allowEmptyValue?: boolean | undefined;
2883
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2884
- explode?: string | undefined;
2885
- allowReserved?: boolean | undefined;
2886
- schema?: unknown;
2887
- example?: unknown;
2888
- examples?: Record<string, unknown> | undefined;
2889
- content?: Record<string, unknown> | undefined;
2890
- } | {
2891
- $ref: string;
2892
- description?: string | undefined;
2893
- summary?: string | undefined;
2894
- })[] | undefined;
2895
- deprecated?: boolean | undefined;
2896
- externalDocs?: unknown;
2897
- operationId?: string | undefined;
2898
- requestBody?: unknown;
2899
- callbacks?: unknown;
2900
- security?: Record<string, string[]>[] | undefined;
2901
- servers?: unknown[] | undefined;
2902
- }>>;
836
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
837
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
838
+ }, z.core.$strip>>;
2903
839
  trace: z.ZodOptional<z.ZodObject<{
2904
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
840
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
2905
841
  summary: z.ZodOptional<z.ZodString>;
2906
842
  description: z.ZodOptional<z.ZodString>;
2907
843
  externalDocs: z.ZodOptional<z.ZodUnknown>;
2908
844
  operationId: z.ZodOptional<z.ZodString>;
2909
845
  parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2910
846
  name: z.ZodString;
2911
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
847
+ in: z.ZodEnum<{
848
+ path: "path";
849
+ header: "header";
850
+ query: "query";
851
+ cookie: "cookie";
852
+ }>;
2912
853
  description: z.ZodOptional<z.ZodString>;
2913
854
  required: z.ZodOptional<z.ZodBoolean>;
2914
855
  deprecated: z.ZodOptional<z.ZodBoolean>;
2915
856
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2916
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
857
+ style: z.ZodOptional<z.ZodEnum<{
858
+ matrix: "matrix";
859
+ label: "label";
860
+ form: "form";
861
+ simple: "simple";
862
+ spaceDelimited: "spaceDelimited";
863
+ pipeDelimited: "pipeDelimited";
864
+ deepObject: "deepObject";
865
+ }>>;
2917
866
  explode: z.ZodOptional<z.ZodString>;
2918
867
  allowReserved: z.ZodOptional<z.ZodBoolean>;
2919
868
  schema: z.ZodOptional<z.ZodUnknown>;
2920
869
  example: z.ZodOptional<z.ZodUnknown>;
2921
870
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2922
871
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2923
- }, "strip", z.ZodTypeAny, {
2924
- name: string;
2925
- in: "path" | "header" | "cookie" | "query";
2926
- description?: string | undefined;
2927
- required?: boolean | undefined;
2928
- deprecated?: boolean | undefined;
2929
- allowEmptyValue?: boolean | undefined;
2930
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2931
- explode?: string | undefined;
2932
- allowReserved?: boolean | undefined;
2933
- schema?: unknown;
2934
- example?: unknown;
2935
- examples?: Record<string, unknown> | undefined;
2936
- content?: Record<string, unknown> | undefined;
2937
- }, {
2938
- name: string;
2939
- in: "path" | "header" | "cookie" | "query";
2940
- description?: string | undefined;
2941
- required?: boolean | undefined;
2942
- deprecated?: boolean | undefined;
2943
- allowEmptyValue?: boolean | undefined;
2944
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2945
- explode?: string | undefined;
2946
- allowReserved?: boolean | undefined;
2947
- schema?: unknown;
2948
- example?: unknown;
2949
- examples?: Record<string, unknown> | undefined;
2950
- content?: Record<string, unknown> | undefined;
2951
- }>, z.ZodObject<{
872
+ }, z.core.$strip>, z.ZodObject<{
2952
873
  $ref: z.ZodString;
2953
874
  summary: z.ZodOptional<z.ZodString>;
2954
875
  description: z.ZodOptional<z.ZodString>;
2955
- }, "strip", z.ZodTypeAny, {
2956
- $ref: string;
2957
- description?: string | undefined;
2958
- summary?: string | undefined;
2959
- }, {
2960
- $ref: string;
2961
- description?: string | undefined;
2962
- summary?: string | undefined;
2963
- }>]>, "many">>;
876
+ }, z.core.$strip>]>>>;
2964
877
  requestBody: z.ZodOptional<z.ZodUnknown>;
2965
878
  responses: z.ZodOptional<z.ZodUnknown>;
2966
879
  callbacks: z.ZodOptional<z.ZodUnknown>;
2967
880
  deprecated: z.ZodOptional<z.ZodBoolean>;
2968
- security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2969
- servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2970
- }, "strip", z.ZodTypeAny, {
2971
- description?: string | undefined;
2972
- tags?: string[] | undefined;
2973
- summary?: string | undefined;
2974
- responses?: unknown;
2975
- parameters?: ({
2976
- name: string;
2977
- in: "path" | "header" | "cookie" | "query";
2978
- description?: string | undefined;
2979
- required?: boolean | undefined;
2980
- deprecated?: boolean | undefined;
2981
- allowEmptyValue?: boolean | undefined;
2982
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2983
- explode?: string | undefined;
2984
- allowReserved?: boolean | undefined;
2985
- schema?: unknown;
2986
- example?: unknown;
2987
- examples?: Record<string, unknown> | undefined;
2988
- content?: Record<string, unknown> | undefined;
2989
- } | {
2990
- $ref: string;
2991
- description?: string | undefined;
2992
- summary?: string | undefined;
2993
- })[] | undefined;
2994
- deprecated?: boolean | undefined;
2995
- externalDocs?: unknown;
2996
- operationId?: string | undefined;
2997
- requestBody?: unknown;
2998
- callbacks?: unknown;
2999
- security?: Record<string, string[]>[] | undefined;
3000
- servers?: unknown[] | undefined;
3001
- }, {
3002
- description?: string | undefined;
3003
- tags?: string[] | undefined;
3004
- summary?: string | undefined;
3005
- responses?: unknown;
3006
- parameters?: ({
3007
- name: string;
3008
- in: "path" | "header" | "cookie" | "query";
3009
- description?: string | undefined;
3010
- required?: boolean | undefined;
3011
- deprecated?: boolean | undefined;
3012
- allowEmptyValue?: boolean | undefined;
3013
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3014
- explode?: string | undefined;
3015
- allowReserved?: boolean | undefined;
3016
- schema?: unknown;
3017
- example?: unknown;
3018
- examples?: Record<string, unknown> | undefined;
3019
- content?: Record<string, unknown> | undefined;
3020
- } | {
3021
- $ref: string;
3022
- description?: string | undefined;
3023
- summary?: string | undefined;
3024
- })[] | undefined;
3025
- deprecated?: boolean | undefined;
3026
- externalDocs?: unknown;
3027
- operationId?: string | undefined;
3028
- requestBody?: unknown;
3029
- callbacks?: unknown;
3030
- security?: Record<string, string[]>[] | undefined;
3031
- servers?: unknown[] | undefined;
3032
- }>>;
881
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>>;
882
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
883
+ }, z.core.$strip>>;
3033
884
  servers: z.ZodOptional<z.ZodObject<{
3034
885
  url: z.ZodString;
3035
886
  description: z.ZodOptional<z.ZodString>;
3036
887
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3037
- }, "strip", z.ZodTypeAny, {
3038
- url: string;
3039
- description?: string | undefined;
3040
- variables?: Record<string, unknown> | undefined;
3041
- }, {
3042
- url: string;
3043
- description?: string | undefined;
3044
- variables?: Record<string, unknown> | undefined;
3045
- }>>;
888
+ }, z.core.$strip>>;
3046
889
  parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
3047
890
  name: z.ZodString;
3048
- in: z.ZodEnum<["query", "header", "path", "cookie"]>;
891
+ in: z.ZodEnum<{
892
+ path: "path";
893
+ header: "header";
894
+ query: "query";
895
+ cookie: "cookie";
896
+ }>;
3049
897
  description: z.ZodOptional<z.ZodString>;
3050
898
  required: z.ZodOptional<z.ZodBoolean>;
3051
899
  deprecated: z.ZodOptional<z.ZodBoolean>;
3052
900
  allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
3053
- style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
901
+ style: z.ZodOptional<z.ZodEnum<{
902
+ matrix: "matrix";
903
+ label: "label";
904
+ form: "form";
905
+ simple: "simple";
906
+ spaceDelimited: "spaceDelimited";
907
+ pipeDelimited: "pipeDelimited";
908
+ deepObject: "deepObject";
909
+ }>>;
3054
910
  explode: z.ZodOptional<z.ZodString>;
3055
911
  allowReserved: z.ZodOptional<z.ZodBoolean>;
3056
912
  schema: z.ZodOptional<z.ZodUnknown>;
3057
913
  example: z.ZodOptional<z.ZodUnknown>;
3058
914
  examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3059
915
  content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3060
- }, "strip", z.ZodTypeAny, {
3061
- name: string;
3062
- in: "path" | "header" | "cookie" | "query";
3063
- description?: string | undefined;
3064
- required?: boolean | undefined;
3065
- deprecated?: boolean | undefined;
3066
- allowEmptyValue?: boolean | undefined;
3067
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3068
- explode?: string | undefined;
3069
- allowReserved?: boolean | undefined;
3070
- schema?: unknown;
3071
- example?: unknown;
3072
- examples?: Record<string, unknown> | undefined;
3073
- content?: Record<string, unknown> | undefined;
3074
- }, {
3075
- name: string;
3076
- in: "path" | "header" | "cookie" | "query";
3077
- description?: string | undefined;
3078
- required?: boolean | undefined;
3079
- deprecated?: boolean | undefined;
3080
- allowEmptyValue?: boolean | undefined;
3081
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3082
- explode?: string | undefined;
3083
- allowReserved?: boolean | undefined;
3084
- schema?: unknown;
3085
- example?: unknown;
3086
- examples?: Record<string, unknown> | undefined;
3087
- content?: Record<string, unknown> | undefined;
3088
- }>, "many">>;
3089
- }, "strip", z.ZodTypeAny, {
3090
- description?: string | undefined;
3091
- summary?: string | undefined;
3092
- parameters?: {
3093
- name: string;
3094
- in: "path" | "header" | "cookie" | "query";
3095
- description?: string | undefined;
3096
- required?: boolean | undefined;
3097
- deprecated?: boolean | undefined;
3098
- allowEmptyValue?: boolean | undefined;
3099
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3100
- explode?: string | undefined;
3101
- allowReserved?: boolean | undefined;
3102
- schema?: unknown;
3103
- example?: unknown;
3104
- examples?: Record<string, unknown> | undefined;
3105
- content?: Record<string, unknown> | undefined;
3106
- }[] | undefined;
3107
- get?: {
3108
- description?: string | undefined;
3109
- tags?: string[] | undefined;
3110
- summary?: string | undefined;
3111
- responses?: unknown;
3112
- parameters?: ({
3113
- name: string;
3114
- in: "path" | "header" | "cookie" | "query";
3115
- description?: string | undefined;
3116
- required?: boolean | undefined;
3117
- deprecated?: boolean | undefined;
3118
- allowEmptyValue?: boolean | undefined;
3119
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3120
- explode?: string | undefined;
3121
- allowReserved?: boolean | undefined;
3122
- schema?: unknown;
3123
- example?: unknown;
3124
- examples?: Record<string, unknown> | undefined;
3125
- content?: Record<string, unknown> | undefined;
3126
- } | {
3127
- $ref: string;
3128
- description?: string | undefined;
3129
- summary?: string | undefined;
3130
- })[] | undefined;
3131
- deprecated?: boolean | undefined;
3132
- externalDocs?: unknown;
3133
- operationId?: string | undefined;
3134
- requestBody?: unknown;
3135
- callbacks?: unknown;
3136
- security?: Record<string, string[]>[] | undefined;
3137
- servers?: unknown[] | undefined;
3138
- } | undefined;
3139
- post?: {
3140
- description?: string | undefined;
3141
- tags?: string[] | undefined;
3142
- summary?: string | undefined;
3143
- responses?: unknown;
3144
- parameters?: ({
3145
- name: string;
3146
- in: "path" | "header" | "cookie" | "query";
3147
- description?: string | undefined;
3148
- required?: boolean | undefined;
3149
- deprecated?: boolean | undefined;
3150
- allowEmptyValue?: boolean | undefined;
3151
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3152
- explode?: string | undefined;
3153
- allowReserved?: boolean | undefined;
3154
- schema?: unknown;
3155
- example?: unknown;
3156
- examples?: Record<string, unknown> | undefined;
3157
- content?: Record<string, unknown> | undefined;
3158
- } | {
3159
- $ref: string;
3160
- description?: string | undefined;
3161
- summary?: string | undefined;
3162
- })[] | undefined;
3163
- deprecated?: boolean | undefined;
3164
- externalDocs?: unknown;
3165
- operationId?: string | undefined;
3166
- requestBody?: unknown;
3167
- callbacks?: unknown;
3168
- security?: Record<string, string[]>[] | undefined;
3169
- servers?: unknown[] | undefined;
3170
- } | undefined;
3171
- put?: {
3172
- description?: string | undefined;
3173
- tags?: string[] | undefined;
3174
- summary?: string | undefined;
3175
- responses?: unknown;
3176
- parameters?: ({
3177
- name: string;
3178
- in: "path" | "header" | "cookie" | "query";
3179
- description?: string | undefined;
3180
- required?: boolean | undefined;
3181
- deprecated?: boolean | undefined;
3182
- allowEmptyValue?: boolean | undefined;
3183
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3184
- explode?: string | undefined;
3185
- allowReserved?: boolean | undefined;
3186
- schema?: unknown;
3187
- example?: unknown;
3188
- examples?: Record<string, unknown> | undefined;
3189
- content?: Record<string, unknown> | undefined;
3190
- } | {
3191
- $ref: string;
3192
- description?: string | undefined;
3193
- summary?: string | undefined;
3194
- })[] | undefined;
3195
- deprecated?: boolean | undefined;
3196
- externalDocs?: unknown;
3197
- operationId?: string | undefined;
3198
- requestBody?: unknown;
3199
- callbacks?: unknown;
3200
- security?: Record<string, string[]>[] | undefined;
3201
- servers?: unknown[] | undefined;
3202
- } | undefined;
3203
- delete?: {
3204
- description?: string | undefined;
3205
- tags?: string[] | undefined;
3206
- summary?: string | undefined;
3207
- responses?: unknown;
3208
- parameters?: ({
3209
- name: string;
3210
- in: "path" | "header" | "cookie" | "query";
3211
- description?: string | undefined;
3212
- required?: boolean | undefined;
3213
- deprecated?: boolean | undefined;
3214
- allowEmptyValue?: boolean | undefined;
3215
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3216
- explode?: string | undefined;
3217
- allowReserved?: boolean | undefined;
3218
- schema?: unknown;
3219
- example?: unknown;
3220
- examples?: Record<string, unknown> | undefined;
3221
- content?: Record<string, unknown> | undefined;
3222
- } | {
3223
- $ref: string;
3224
- description?: string | undefined;
3225
- summary?: string | undefined;
3226
- })[] | undefined;
3227
- deprecated?: boolean | undefined;
3228
- externalDocs?: unknown;
3229
- operationId?: string | undefined;
3230
- requestBody?: unknown;
3231
- callbacks?: unknown;
3232
- security?: Record<string, string[]>[] | undefined;
3233
- servers?: unknown[] | undefined;
3234
- } | undefined;
3235
- patch?: {
3236
- description?: string | undefined;
3237
- tags?: string[] | undefined;
3238
- summary?: string | undefined;
3239
- responses?: unknown;
3240
- parameters?: ({
3241
- name: string;
3242
- in: "path" | "header" | "cookie" | "query";
3243
- description?: string | undefined;
3244
- required?: boolean | undefined;
3245
- deprecated?: boolean | undefined;
3246
- allowEmptyValue?: boolean | undefined;
3247
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3248
- explode?: string | undefined;
3249
- allowReserved?: boolean | undefined;
3250
- schema?: unknown;
3251
- example?: unknown;
3252
- examples?: Record<string, unknown> | undefined;
3253
- content?: Record<string, unknown> | undefined;
3254
- } | {
3255
- $ref: string;
3256
- description?: string | undefined;
3257
- summary?: string | undefined;
3258
- })[] | undefined;
3259
- deprecated?: boolean | undefined;
3260
- externalDocs?: unknown;
3261
- operationId?: string | undefined;
3262
- requestBody?: unknown;
3263
- callbacks?: unknown;
3264
- security?: Record<string, string[]>[] | undefined;
3265
- servers?: unknown[] | undefined;
3266
- } | undefined;
3267
- head?: {
3268
- description?: string | undefined;
3269
- tags?: string[] | undefined;
3270
- summary?: string | undefined;
3271
- responses?: unknown;
3272
- parameters?: ({
3273
- name: string;
3274
- in: "path" | "header" | "cookie" | "query";
3275
- description?: string | undefined;
3276
- required?: boolean | undefined;
3277
- deprecated?: boolean | undefined;
3278
- allowEmptyValue?: boolean | undefined;
3279
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3280
- explode?: string | undefined;
3281
- allowReserved?: boolean | undefined;
3282
- schema?: unknown;
3283
- example?: unknown;
3284
- examples?: Record<string, unknown> | undefined;
3285
- content?: Record<string, unknown> | undefined;
3286
- } | {
3287
- $ref: string;
3288
- description?: string | undefined;
3289
- summary?: string | undefined;
3290
- })[] | undefined;
3291
- deprecated?: boolean | undefined;
3292
- externalDocs?: unknown;
3293
- operationId?: string | undefined;
3294
- requestBody?: unknown;
3295
- callbacks?: unknown;
3296
- security?: Record<string, string[]>[] | undefined;
3297
- servers?: unknown[] | undefined;
3298
- } | undefined;
3299
- options?: {
3300
- description?: string | undefined;
3301
- tags?: string[] | undefined;
3302
- summary?: string | undefined;
3303
- responses?: unknown;
3304
- parameters?: ({
3305
- name: string;
3306
- in: "path" | "header" | "cookie" | "query";
3307
- description?: string | undefined;
3308
- required?: boolean | undefined;
3309
- deprecated?: boolean | undefined;
3310
- allowEmptyValue?: boolean | undefined;
3311
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3312
- explode?: string | undefined;
3313
- allowReserved?: boolean | undefined;
3314
- schema?: unknown;
3315
- example?: unknown;
3316
- examples?: Record<string, unknown> | undefined;
3317
- content?: Record<string, unknown> | undefined;
3318
- } | {
3319
- $ref: string;
3320
- description?: string | undefined;
3321
- summary?: string | undefined;
3322
- })[] | undefined;
3323
- deprecated?: boolean | undefined;
3324
- externalDocs?: unknown;
3325
- operationId?: string | undefined;
3326
- requestBody?: unknown;
3327
- callbacks?: unknown;
3328
- security?: Record<string, string[]>[] | undefined;
3329
- servers?: unknown[] | undefined;
3330
- } | undefined;
3331
- servers?: {
3332
- url: string;
3333
- description?: string | undefined;
3334
- variables?: Record<string, unknown> | undefined;
3335
- } | undefined;
3336
- trace?: {
3337
- description?: string | undefined;
3338
- tags?: string[] | undefined;
3339
- summary?: string | undefined;
3340
- responses?: unknown;
3341
- parameters?: ({
3342
- name: string;
3343
- in: "path" | "header" | "cookie" | "query";
3344
- description?: string | undefined;
3345
- required?: boolean | undefined;
3346
- deprecated?: boolean | undefined;
3347
- allowEmptyValue?: boolean | undefined;
3348
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3349
- explode?: string | undefined;
3350
- allowReserved?: boolean | undefined;
3351
- schema?: unknown;
3352
- example?: unknown;
3353
- examples?: Record<string, unknown> | undefined;
3354
- content?: Record<string, unknown> | undefined;
3355
- } | {
3356
- $ref: string;
3357
- description?: string | undefined;
3358
- summary?: string | undefined;
3359
- })[] | undefined;
3360
- deprecated?: boolean | undefined;
3361
- externalDocs?: unknown;
3362
- operationId?: string | undefined;
3363
- requestBody?: unknown;
3364
- callbacks?: unknown;
3365
- security?: Record<string, string[]>[] | undefined;
3366
- servers?: unknown[] | undefined;
3367
- } | undefined;
3368
- }, {
3369
- description?: string | undefined;
3370
- summary?: string | undefined;
3371
- parameters?: {
3372
- name: string;
3373
- in: "path" | "header" | "cookie" | "query";
3374
- description?: string | undefined;
3375
- required?: boolean | undefined;
3376
- deprecated?: boolean | undefined;
3377
- allowEmptyValue?: boolean | undefined;
3378
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3379
- explode?: string | undefined;
3380
- allowReserved?: boolean | undefined;
3381
- schema?: unknown;
3382
- example?: unknown;
3383
- examples?: Record<string, unknown> | undefined;
3384
- content?: Record<string, unknown> | undefined;
3385
- }[] | undefined;
3386
- get?: {
3387
- description?: string | undefined;
3388
- tags?: string[] | undefined;
3389
- summary?: string | undefined;
3390
- responses?: unknown;
3391
- parameters?: ({
3392
- name: string;
3393
- in: "path" | "header" | "cookie" | "query";
3394
- description?: string | undefined;
3395
- required?: boolean | undefined;
3396
- deprecated?: boolean | undefined;
3397
- allowEmptyValue?: boolean | undefined;
3398
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3399
- explode?: string | undefined;
3400
- allowReserved?: boolean | undefined;
3401
- schema?: unknown;
3402
- example?: unknown;
3403
- examples?: Record<string, unknown> | undefined;
3404
- content?: Record<string, unknown> | undefined;
3405
- } | {
3406
- $ref: string;
3407
- description?: string | undefined;
3408
- summary?: string | undefined;
3409
- })[] | undefined;
3410
- deprecated?: boolean | undefined;
3411
- externalDocs?: unknown;
3412
- operationId?: string | undefined;
3413
- requestBody?: unknown;
3414
- callbacks?: unknown;
3415
- security?: Record<string, string[]>[] | undefined;
3416
- servers?: unknown[] | undefined;
3417
- } | undefined;
3418
- post?: {
3419
- description?: string | undefined;
3420
- tags?: string[] | undefined;
3421
- summary?: string | undefined;
3422
- responses?: unknown;
3423
- parameters?: ({
3424
- name: string;
3425
- in: "path" | "header" | "cookie" | "query";
3426
- description?: string | undefined;
3427
- required?: boolean | undefined;
3428
- deprecated?: boolean | undefined;
3429
- allowEmptyValue?: boolean | undefined;
3430
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3431
- explode?: string | undefined;
3432
- allowReserved?: boolean | undefined;
3433
- schema?: unknown;
3434
- example?: unknown;
3435
- examples?: Record<string, unknown> | undefined;
3436
- content?: Record<string, unknown> | undefined;
3437
- } | {
3438
- $ref: string;
3439
- description?: string | undefined;
3440
- summary?: string | undefined;
3441
- })[] | undefined;
3442
- deprecated?: boolean | undefined;
3443
- externalDocs?: unknown;
3444
- operationId?: string | undefined;
3445
- requestBody?: unknown;
3446
- callbacks?: unknown;
3447
- security?: Record<string, string[]>[] | undefined;
3448
- servers?: unknown[] | undefined;
3449
- } | undefined;
3450
- put?: {
3451
- description?: string | undefined;
3452
- tags?: string[] | undefined;
3453
- summary?: string | undefined;
3454
- responses?: unknown;
3455
- parameters?: ({
3456
- name: string;
3457
- in: "path" | "header" | "cookie" | "query";
3458
- description?: string | undefined;
3459
- required?: boolean | undefined;
3460
- deprecated?: boolean | undefined;
3461
- allowEmptyValue?: boolean | undefined;
3462
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3463
- explode?: string | undefined;
3464
- allowReserved?: boolean | undefined;
3465
- schema?: unknown;
3466
- example?: unknown;
3467
- examples?: Record<string, unknown> | undefined;
3468
- content?: Record<string, unknown> | undefined;
3469
- } | {
3470
- $ref: string;
3471
- description?: string | undefined;
3472
- summary?: string | undefined;
3473
- })[] | undefined;
3474
- deprecated?: boolean | undefined;
3475
- externalDocs?: unknown;
3476
- operationId?: string | undefined;
3477
- requestBody?: unknown;
3478
- callbacks?: unknown;
3479
- security?: Record<string, string[]>[] | undefined;
3480
- servers?: unknown[] | undefined;
3481
- } | undefined;
3482
- delete?: {
3483
- description?: string | undefined;
3484
- tags?: string[] | undefined;
3485
- summary?: string | undefined;
3486
- responses?: unknown;
3487
- parameters?: ({
3488
- name: string;
3489
- in: "path" | "header" | "cookie" | "query";
3490
- description?: string | undefined;
3491
- required?: boolean | undefined;
3492
- deprecated?: boolean | undefined;
3493
- allowEmptyValue?: boolean | undefined;
3494
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3495
- explode?: string | undefined;
3496
- allowReserved?: boolean | undefined;
3497
- schema?: unknown;
3498
- example?: unknown;
3499
- examples?: Record<string, unknown> | undefined;
3500
- content?: Record<string, unknown> | undefined;
3501
- } | {
3502
- $ref: string;
3503
- description?: string | undefined;
3504
- summary?: string | undefined;
3505
- })[] | undefined;
3506
- deprecated?: boolean | undefined;
3507
- externalDocs?: unknown;
3508
- operationId?: string | undefined;
3509
- requestBody?: unknown;
3510
- callbacks?: unknown;
3511
- security?: Record<string, string[]>[] | undefined;
3512
- servers?: unknown[] | undefined;
3513
- } | undefined;
3514
- patch?: {
3515
- description?: string | undefined;
3516
- tags?: string[] | undefined;
3517
- summary?: string | undefined;
3518
- responses?: unknown;
3519
- parameters?: ({
3520
- name: string;
3521
- in: "path" | "header" | "cookie" | "query";
3522
- description?: string | undefined;
3523
- required?: boolean | undefined;
3524
- deprecated?: boolean | undefined;
3525
- allowEmptyValue?: boolean | undefined;
3526
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3527
- explode?: string | undefined;
3528
- allowReserved?: boolean | undefined;
3529
- schema?: unknown;
3530
- example?: unknown;
3531
- examples?: Record<string, unknown> | undefined;
3532
- content?: Record<string, unknown> | undefined;
3533
- } | {
3534
- $ref: string;
3535
- description?: string | undefined;
3536
- summary?: string | undefined;
3537
- })[] | undefined;
3538
- deprecated?: boolean | undefined;
3539
- externalDocs?: unknown;
3540
- operationId?: string | undefined;
3541
- requestBody?: unknown;
3542
- callbacks?: unknown;
3543
- security?: Record<string, string[]>[] | undefined;
3544
- servers?: unknown[] | undefined;
3545
- } | undefined;
3546
- head?: {
3547
- description?: string | undefined;
3548
- tags?: string[] | undefined;
3549
- summary?: string | undefined;
3550
- responses?: unknown;
3551
- parameters?: ({
3552
- name: string;
3553
- in: "path" | "header" | "cookie" | "query";
3554
- description?: string | undefined;
3555
- required?: boolean | undefined;
3556
- deprecated?: boolean | undefined;
3557
- allowEmptyValue?: boolean | undefined;
3558
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3559
- explode?: string | undefined;
3560
- allowReserved?: boolean | undefined;
3561
- schema?: unknown;
3562
- example?: unknown;
3563
- examples?: Record<string, unknown> | undefined;
3564
- content?: Record<string, unknown> | undefined;
3565
- } | {
3566
- $ref: string;
3567
- description?: string | undefined;
3568
- summary?: string | undefined;
3569
- })[] | undefined;
3570
- deprecated?: boolean | undefined;
3571
- externalDocs?: unknown;
3572
- operationId?: string | undefined;
3573
- requestBody?: unknown;
3574
- callbacks?: unknown;
3575
- security?: Record<string, string[]>[] | undefined;
3576
- servers?: unknown[] | undefined;
3577
- } | undefined;
3578
- options?: {
3579
- description?: string | undefined;
3580
- tags?: string[] | undefined;
3581
- summary?: string | undefined;
3582
- responses?: unknown;
3583
- parameters?: ({
3584
- name: string;
3585
- in: "path" | "header" | "cookie" | "query";
3586
- description?: string | undefined;
3587
- required?: boolean | undefined;
3588
- deprecated?: boolean | undefined;
3589
- allowEmptyValue?: boolean | undefined;
3590
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3591
- explode?: string | undefined;
3592
- allowReserved?: boolean | undefined;
3593
- schema?: unknown;
3594
- example?: unknown;
3595
- examples?: Record<string, unknown> | undefined;
3596
- content?: Record<string, unknown> | undefined;
3597
- } | {
3598
- $ref: string;
3599
- description?: string | undefined;
3600
- summary?: string | undefined;
3601
- })[] | undefined;
3602
- deprecated?: boolean | undefined;
3603
- externalDocs?: unknown;
3604
- operationId?: string | undefined;
3605
- requestBody?: unknown;
3606
- callbacks?: unknown;
3607
- security?: Record<string, string[]>[] | undefined;
3608
- servers?: unknown[] | undefined;
3609
- } | undefined;
3610
- servers?: {
3611
- url: string;
3612
- description?: string | undefined;
3613
- variables?: Record<string, unknown> | undefined;
3614
- } | undefined;
3615
- trace?: {
3616
- description?: string | undefined;
3617
- tags?: string[] | undefined;
3618
- summary?: string | undefined;
3619
- responses?: unknown;
3620
- parameters?: ({
3621
- name: string;
3622
- in: "path" | "header" | "cookie" | "query";
3623
- description?: string | undefined;
3624
- required?: boolean | undefined;
3625
- deprecated?: boolean | undefined;
3626
- allowEmptyValue?: boolean | undefined;
3627
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3628
- explode?: string | undefined;
3629
- allowReserved?: boolean | undefined;
3630
- schema?: unknown;
3631
- example?: unknown;
3632
- examples?: Record<string, unknown> | undefined;
3633
- content?: Record<string, unknown> | undefined;
3634
- } | {
3635
- $ref: string;
3636
- description?: string | undefined;
3637
- summary?: string | undefined;
3638
- })[] | undefined;
3639
- deprecated?: boolean | undefined;
3640
- externalDocs?: unknown;
3641
- operationId?: string | undefined;
3642
- requestBody?: unknown;
3643
- callbacks?: unknown;
3644
- security?: Record<string, string[]>[] | undefined;
3645
- servers?: unknown[] | undefined;
3646
- } | undefined;
3647
- }>>;
916
+ }, z.core.$strip>>>;
917
+ }, z.core.$strip>>;
3648
918
  components: z.ZodOptional<z.ZodObject<{
3649
919
  schemas: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3650
920
  responses: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -3655,688 +925,8 @@ export declare const openapiSchema: z.ZodObject<{
3655
925
  securitySchemes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3656
926
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3657
927
  callbacks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3658
- }, "strict", z.ZodTypeAny, {
3659
- headers?: Record<string, any> | undefined;
3660
- responses?: Record<string, any> | undefined;
3661
- parameters?: Record<string, any> | undefined;
3662
- examples?: Record<string, any> | undefined;
3663
- callbacks?: Record<string, any> | undefined;
3664
- schemas?: Record<string, any> | undefined;
3665
- requestBodies?: Record<string, any> | undefined;
3666
- securitySchemes?: Record<string, any> | undefined;
3667
- links?: Record<string, any> | undefined;
3668
- }, {
3669
- headers?: Record<string, any> | undefined;
3670
- responses?: Record<string, any> | undefined;
3671
- parameters?: Record<string, any> | undefined;
3672
- examples?: Record<string, any> | undefined;
3673
- callbacks?: Record<string, any> | undefined;
3674
- schemas?: Record<string, any> | undefined;
3675
- requestBodies?: Record<string, any> | undefined;
3676
- securitySchemes?: Record<string, any> | undefined;
3677
- links?: Record<string, any> | undefined;
3678
- }>>;
3679
- }, "strip", z.ZodTypeAny, {
3680
- info: {
3681
- title: string;
3682
- version: string;
3683
- description?: string | undefined;
3684
- termsOfService?: string | undefined;
3685
- contact?: {
3686
- name?: string | undefined;
3687
- url?: string | undefined;
3688
- email?: string | undefined;
3689
- } | undefined;
3690
- license?: {
3691
- name: string;
3692
- url?: string | undefined;
3693
- } | undefined;
3694
- };
3695
- openapi: string;
3696
- paths: Record<string, {
3697
- description?: string | undefined;
3698
- summary?: string | undefined;
3699
- parameters?: {
3700
- name: string;
3701
- in: "path" | "header" | "cookie" | "query";
3702
- description?: string | undefined;
3703
- required?: boolean | undefined;
3704
- deprecated?: boolean | undefined;
3705
- allowEmptyValue?: boolean | undefined;
3706
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3707
- explode?: string | undefined;
3708
- allowReserved?: boolean | undefined;
3709
- schema?: unknown;
3710
- example?: unknown;
3711
- examples?: Record<string, unknown> | undefined;
3712
- content?: Record<string, unknown> | undefined;
3713
- }[] | undefined;
3714
- get?: {
3715
- description?: string | undefined;
3716
- tags?: string[] | undefined;
3717
- summary?: string | undefined;
3718
- responses?: unknown;
3719
- parameters?: ({
3720
- name: string;
3721
- in: "path" | "header" | "cookie" | "query";
3722
- description?: string | undefined;
3723
- required?: boolean | undefined;
3724
- deprecated?: boolean | undefined;
3725
- allowEmptyValue?: boolean | undefined;
3726
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3727
- explode?: string | undefined;
3728
- allowReserved?: boolean | undefined;
3729
- schema?: unknown;
3730
- example?: unknown;
3731
- examples?: Record<string, unknown> | undefined;
3732
- content?: Record<string, unknown> | undefined;
3733
- } | {
3734
- $ref: string;
3735
- description?: string | undefined;
3736
- summary?: string | undefined;
3737
- })[] | undefined;
3738
- deprecated?: boolean | undefined;
3739
- externalDocs?: unknown;
3740
- operationId?: string | undefined;
3741
- requestBody?: unknown;
3742
- callbacks?: unknown;
3743
- security?: Record<string, string[]>[] | undefined;
3744
- servers?: unknown[] | undefined;
3745
- } | undefined;
3746
- post?: {
3747
- description?: string | undefined;
3748
- tags?: string[] | undefined;
3749
- summary?: string | undefined;
3750
- responses?: unknown;
3751
- parameters?: ({
3752
- name: string;
3753
- in: "path" | "header" | "cookie" | "query";
3754
- description?: string | undefined;
3755
- required?: boolean | undefined;
3756
- deprecated?: boolean | undefined;
3757
- allowEmptyValue?: boolean | undefined;
3758
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3759
- explode?: string | undefined;
3760
- allowReserved?: boolean | undefined;
3761
- schema?: unknown;
3762
- example?: unknown;
3763
- examples?: Record<string, unknown> | undefined;
3764
- content?: Record<string, unknown> | undefined;
3765
- } | {
3766
- $ref: string;
3767
- description?: string | undefined;
3768
- summary?: string | undefined;
3769
- })[] | undefined;
3770
- deprecated?: boolean | undefined;
3771
- externalDocs?: unknown;
3772
- operationId?: string | undefined;
3773
- requestBody?: unknown;
3774
- callbacks?: unknown;
3775
- security?: Record<string, string[]>[] | undefined;
3776
- servers?: unknown[] | undefined;
3777
- } | undefined;
3778
- put?: {
3779
- description?: string | undefined;
3780
- tags?: string[] | undefined;
3781
- summary?: string | undefined;
3782
- responses?: unknown;
3783
- parameters?: ({
3784
- name: string;
3785
- in: "path" | "header" | "cookie" | "query";
3786
- description?: string | undefined;
3787
- required?: boolean | undefined;
3788
- deprecated?: boolean | undefined;
3789
- allowEmptyValue?: boolean | undefined;
3790
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3791
- explode?: string | undefined;
3792
- allowReserved?: boolean | undefined;
3793
- schema?: unknown;
3794
- example?: unknown;
3795
- examples?: Record<string, unknown> | undefined;
3796
- content?: Record<string, unknown> | undefined;
3797
- } | {
3798
- $ref: string;
3799
- description?: string | undefined;
3800
- summary?: string | undefined;
3801
- })[] | undefined;
3802
- deprecated?: boolean | undefined;
3803
- externalDocs?: unknown;
3804
- operationId?: string | undefined;
3805
- requestBody?: unknown;
3806
- callbacks?: unknown;
3807
- security?: Record<string, string[]>[] | undefined;
3808
- servers?: unknown[] | undefined;
3809
- } | undefined;
3810
- delete?: {
3811
- description?: string | undefined;
3812
- tags?: string[] | undefined;
3813
- summary?: string | undefined;
3814
- responses?: unknown;
3815
- parameters?: ({
3816
- name: string;
3817
- in: "path" | "header" | "cookie" | "query";
3818
- description?: string | undefined;
3819
- required?: boolean | undefined;
3820
- deprecated?: boolean | undefined;
3821
- allowEmptyValue?: boolean | undefined;
3822
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3823
- explode?: string | undefined;
3824
- allowReserved?: boolean | undefined;
3825
- schema?: unknown;
3826
- example?: unknown;
3827
- examples?: Record<string, unknown> | undefined;
3828
- content?: Record<string, unknown> | undefined;
3829
- } | {
3830
- $ref: string;
3831
- description?: string | undefined;
3832
- summary?: string | undefined;
3833
- })[] | undefined;
3834
- deprecated?: boolean | undefined;
3835
- externalDocs?: unknown;
3836
- operationId?: string | undefined;
3837
- requestBody?: unknown;
3838
- callbacks?: unknown;
3839
- security?: Record<string, string[]>[] | undefined;
3840
- servers?: unknown[] | undefined;
3841
- } | undefined;
3842
- patch?: {
3843
- description?: string | undefined;
3844
- tags?: string[] | undefined;
3845
- summary?: string | undefined;
3846
- responses?: unknown;
3847
- parameters?: ({
3848
- name: string;
3849
- in: "path" | "header" | "cookie" | "query";
3850
- description?: string | undefined;
3851
- required?: boolean | undefined;
3852
- deprecated?: boolean | undefined;
3853
- allowEmptyValue?: boolean | undefined;
3854
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3855
- explode?: string | undefined;
3856
- allowReserved?: boolean | undefined;
3857
- schema?: unknown;
3858
- example?: unknown;
3859
- examples?: Record<string, unknown> | undefined;
3860
- content?: Record<string, unknown> | undefined;
3861
- } | {
3862
- $ref: string;
3863
- description?: string | undefined;
3864
- summary?: string | undefined;
3865
- })[] | undefined;
3866
- deprecated?: boolean | undefined;
3867
- externalDocs?: unknown;
3868
- operationId?: string | undefined;
3869
- requestBody?: unknown;
3870
- callbacks?: unknown;
3871
- security?: Record<string, string[]>[] | undefined;
3872
- servers?: unknown[] | undefined;
3873
- } | undefined;
3874
- head?: {
3875
- description?: string | undefined;
3876
- tags?: string[] | undefined;
3877
- summary?: string | undefined;
3878
- responses?: unknown;
3879
- parameters?: ({
3880
- name: string;
3881
- in: "path" | "header" | "cookie" | "query";
3882
- description?: string | undefined;
3883
- required?: boolean | undefined;
3884
- deprecated?: boolean | undefined;
3885
- allowEmptyValue?: boolean | undefined;
3886
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3887
- explode?: string | undefined;
3888
- allowReserved?: boolean | undefined;
3889
- schema?: unknown;
3890
- example?: unknown;
3891
- examples?: Record<string, unknown> | undefined;
3892
- content?: Record<string, unknown> | undefined;
3893
- } | {
3894
- $ref: string;
3895
- description?: string | undefined;
3896
- summary?: string | undefined;
3897
- })[] | undefined;
3898
- deprecated?: boolean | undefined;
3899
- externalDocs?: unknown;
3900
- operationId?: string | undefined;
3901
- requestBody?: unknown;
3902
- callbacks?: unknown;
3903
- security?: Record<string, string[]>[] | undefined;
3904
- servers?: unknown[] | undefined;
3905
- } | undefined;
3906
- options?: {
3907
- description?: string | undefined;
3908
- tags?: string[] | undefined;
3909
- summary?: string | undefined;
3910
- responses?: unknown;
3911
- parameters?: ({
3912
- name: string;
3913
- in: "path" | "header" | "cookie" | "query";
3914
- description?: string | undefined;
3915
- required?: boolean | undefined;
3916
- deprecated?: boolean | undefined;
3917
- allowEmptyValue?: boolean | undefined;
3918
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3919
- explode?: string | undefined;
3920
- allowReserved?: boolean | undefined;
3921
- schema?: unknown;
3922
- example?: unknown;
3923
- examples?: Record<string, unknown> | undefined;
3924
- content?: Record<string, unknown> | undefined;
3925
- } | {
3926
- $ref: string;
3927
- description?: string | undefined;
3928
- summary?: string | undefined;
3929
- })[] | undefined;
3930
- deprecated?: boolean | undefined;
3931
- externalDocs?: unknown;
3932
- operationId?: string | undefined;
3933
- requestBody?: unknown;
3934
- callbacks?: unknown;
3935
- security?: Record<string, string[]>[] | undefined;
3936
- servers?: unknown[] | undefined;
3937
- } | undefined;
3938
- servers?: {
3939
- url: string;
3940
- description?: string | undefined;
3941
- variables?: Record<string, unknown> | undefined;
3942
- } | undefined;
3943
- trace?: {
3944
- description?: string | undefined;
3945
- tags?: string[] | undefined;
3946
- summary?: string | undefined;
3947
- responses?: unknown;
3948
- parameters?: ({
3949
- name: string;
3950
- in: "path" | "header" | "cookie" | "query";
3951
- description?: string | undefined;
3952
- required?: boolean | undefined;
3953
- deprecated?: boolean | undefined;
3954
- allowEmptyValue?: boolean | undefined;
3955
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3956
- explode?: string | undefined;
3957
- allowReserved?: boolean | undefined;
3958
- schema?: unknown;
3959
- example?: unknown;
3960
- examples?: Record<string, unknown> | undefined;
3961
- content?: Record<string, unknown> | undefined;
3962
- } | {
3963
- $ref: string;
3964
- description?: string | undefined;
3965
- summary?: string | undefined;
3966
- })[] | undefined;
3967
- deprecated?: boolean | undefined;
3968
- externalDocs?: unknown;
3969
- operationId?: string | undefined;
3970
- requestBody?: unknown;
3971
- callbacks?: unknown;
3972
- security?: Record<string, string[]>[] | undefined;
3973
- servers?: unknown[] | undefined;
3974
- } | undefined;
3975
- }>;
3976
- tags?: {
3977
- name: string;
3978
- description?: string | undefined;
3979
- externalDocs?: {
3980
- url: string;
3981
- description?: string | undefined;
3982
- } | undefined;
3983
- }[] | undefined;
3984
- externalDocs?: {
3985
- url: string;
3986
- description?: string | undefined;
3987
- } | undefined;
3988
- security?: Record<string, string[]>[] | undefined;
3989
- servers?: {
3990
- url: string;
3991
- description?: string | undefined;
3992
- variables?: Record<string, {
3993
- default: string;
3994
- description?: string | undefined;
3995
- enum?: string[] | undefined;
3996
- }> | undefined;
3997
- }[] | undefined;
3998
- components?: {
3999
- headers?: Record<string, any> | undefined;
4000
- responses?: Record<string, any> | undefined;
4001
- parameters?: Record<string, any> | undefined;
4002
- examples?: Record<string, any> | undefined;
4003
- callbacks?: Record<string, any> | undefined;
4004
- schemas?: Record<string, any> | undefined;
4005
- requestBodies?: Record<string, any> | undefined;
4006
- securitySchemes?: Record<string, any> | undefined;
4007
- links?: Record<string, any> | undefined;
4008
- } | undefined;
4009
- }, {
4010
- info: {
4011
- title: string;
4012
- version: string;
4013
- description?: string | undefined;
4014
- termsOfService?: string | undefined;
4015
- contact?: {
4016
- name?: string | undefined;
4017
- url?: string | undefined;
4018
- email?: string | undefined;
4019
- } | undefined;
4020
- license?: {
4021
- name: string;
4022
- url?: string | undefined;
4023
- } | undefined;
4024
- };
4025
- openapi: string;
4026
- paths: Record<string, {
4027
- description?: string | undefined;
4028
- summary?: string | undefined;
4029
- parameters?: {
4030
- name: string;
4031
- in: "path" | "header" | "cookie" | "query";
4032
- description?: string | undefined;
4033
- required?: boolean | undefined;
4034
- deprecated?: boolean | undefined;
4035
- allowEmptyValue?: boolean | undefined;
4036
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4037
- explode?: string | undefined;
4038
- allowReserved?: boolean | undefined;
4039
- schema?: unknown;
4040
- example?: unknown;
4041
- examples?: Record<string, unknown> | undefined;
4042
- content?: Record<string, unknown> | undefined;
4043
- }[] | undefined;
4044
- get?: {
4045
- description?: string | undefined;
4046
- tags?: string[] | undefined;
4047
- summary?: string | undefined;
4048
- responses?: unknown;
4049
- parameters?: ({
4050
- name: string;
4051
- in: "path" | "header" | "cookie" | "query";
4052
- description?: string | undefined;
4053
- required?: boolean | undefined;
4054
- deprecated?: boolean | undefined;
4055
- allowEmptyValue?: boolean | undefined;
4056
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4057
- explode?: string | undefined;
4058
- allowReserved?: boolean | undefined;
4059
- schema?: unknown;
4060
- example?: unknown;
4061
- examples?: Record<string, unknown> | undefined;
4062
- content?: Record<string, unknown> | undefined;
4063
- } | {
4064
- $ref: string;
4065
- description?: string | undefined;
4066
- summary?: string | undefined;
4067
- })[] | undefined;
4068
- deprecated?: boolean | undefined;
4069
- externalDocs?: unknown;
4070
- operationId?: string | undefined;
4071
- requestBody?: unknown;
4072
- callbacks?: unknown;
4073
- security?: Record<string, string[]>[] | undefined;
4074
- servers?: unknown[] | undefined;
4075
- } | undefined;
4076
- post?: {
4077
- description?: string | undefined;
4078
- tags?: string[] | undefined;
4079
- summary?: string | undefined;
4080
- responses?: unknown;
4081
- parameters?: ({
4082
- name: string;
4083
- in: "path" | "header" | "cookie" | "query";
4084
- description?: string | undefined;
4085
- required?: boolean | undefined;
4086
- deprecated?: boolean | undefined;
4087
- allowEmptyValue?: boolean | undefined;
4088
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4089
- explode?: string | undefined;
4090
- allowReserved?: boolean | undefined;
4091
- schema?: unknown;
4092
- example?: unknown;
4093
- examples?: Record<string, unknown> | undefined;
4094
- content?: Record<string, unknown> | undefined;
4095
- } | {
4096
- $ref: string;
4097
- description?: string | undefined;
4098
- summary?: string | undefined;
4099
- })[] | undefined;
4100
- deprecated?: boolean | undefined;
4101
- externalDocs?: unknown;
4102
- operationId?: string | undefined;
4103
- requestBody?: unknown;
4104
- callbacks?: unknown;
4105
- security?: Record<string, string[]>[] | undefined;
4106
- servers?: unknown[] | undefined;
4107
- } | undefined;
4108
- put?: {
4109
- description?: string | undefined;
4110
- tags?: string[] | undefined;
4111
- summary?: string | undefined;
4112
- responses?: unknown;
4113
- parameters?: ({
4114
- name: string;
4115
- in: "path" | "header" | "cookie" | "query";
4116
- description?: string | undefined;
4117
- required?: boolean | undefined;
4118
- deprecated?: boolean | undefined;
4119
- allowEmptyValue?: boolean | undefined;
4120
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4121
- explode?: string | undefined;
4122
- allowReserved?: boolean | undefined;
4123
- schema?: unknown;
4124
- example?: unknown;
4125
- examples?: Record<string, unknown> | undefined;
4126
- content?: Record<string, unknown> | undefined;
4127
- } | {
4128
- $ref: string;
4129
- description?: string | undefined;
4130
- summary?: string | undefined;
4131
- })[] | undefined;
4132
- deprecated?: boolean | undefined;
4133
- externalDocs?: unknown;
4134
- operationId?: string | undefined;
4135
- requestBody?: unknown;
4136
- callbacks?: unknown;
4137
- security?: Record<string, string[]>[] | undefined;
4138
- servers?: unknown[] | undefined;
4139
- } | undefined;
4140
- delete?: {
4141
- description?: string | undefined;
4142
- tags?: string[] | undefined;
4143
- summary?: string | undefined;
4144
- responses?: unknown;
4145
- parameters?: ({
4146
- name: string;
4147
- in: "path" | "header" | "cookie" | "query";
4148
- description?: string | undefined;
4149
- required?: boolean | undefined;
4150
- deprecated?: boolean | undefined;
4151
- allowEmptyValue?: boolean | undefined;
4152
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4153
- explode?: string | undefined;
4154
- allowReserved?: boolean | undefined;
4155
- schema?: unknown;
4156
- example?: unknown;
4157
- examples?: Record<string, unknown> | undefined;
4158
- content?: Record<string, unknown> | undefined;
4159
- } | {
4160
- $ref: string;
4161
- description?: string | undefined;
4162
- summary?: string | undefined;
4163
- })[] | undefined;
4164
- deprecated?: boolean | undefined;
4165
- externalDocs?: unknown;
4166
- operationId?: string | undefined;
4167
- requestBody?: unknown;
4168
- callbacks?: unknown;
4169
- security?: Record<string, string[]>[] | undefined;
4170
- servers?: unknown[] | undefined;
4171
- } | undefined;
4172
- patch?: {
4173
- description?: string | undefined;
4174
- tags?: string[] | undefined;
4175
- summary?: string | undefined;
4176
- responses?: unknown;
4177
- parameters?: ({
4178
- name: string;
4179
- in: "path" | "header" | "cookie" | "query";
4180
- description?: string | undefined;
4181
- required?: boolean | undefined;
4182
- deprecated?: boolean | undefined;
4183
- allowEmptyValue?: boolean | undefined;
4184
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4185
- explode?: string | undefined;
4186
- allowReserved?: boolean | undefined;
4187
- schema?: unknown;
4188
- example?: unknown;
4189
- examples?: Record<string, unknown> | undefined;
4190
- content?: Record<string, unknown> | undefined;
4191
- } | {
4192
- $ref: string;
4193
- description?: string | undefined;
4194
- summary?: string | undefined;
4195
- })[] | undefined;
4196
- deprecated?: boolean | undefined;
4197
- externalDocs?: unknown;
4198
- operationId?: string | undefined;
4199
- requestBody?: unknown;
4200
- callbacks?: unknown;
4201
- security?: Record<string, string[]>[] | undefined;
4202
- servers?: unknown[] | undefined;
4203
- } | undefined;
4204
- head?: {
4205
- description?: string | undefined;
4206
- tags?: string[] | undefined;
4207
- summary?: string | undefined;
4208
- responses?: unknown;
4209
- parameters?: ({
4210
- name: string;
4211
- in: "path" | "header" | "cookie" | "query";
4212
- description?: string | undefined;
4213
- required?: boolean | undefined;
4214
- deprecated?: boolean | undefined;
4215
- allowEmptyValue?: boolean | undefined;
4216
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4217
- explode?: string | undefined;
4218
- allowReserved?: boolean | undefined;
4219
- schema?: unknown;
4220
- example?: unknown;
4221
- examples?: Record<string, unknown> | undefined;
4222
- content?: Record<string, unknown> | undefined;
4223
- } | {
4224
- $ref: string;
4225
- description?: string | undefined;
4226
- summary?: string | undefined;
4227
- })[] | undefined;
4228
- deprecated?: boolean | undefined;
4229
- externalDocs?: unknown;
4230
- operationId?: string | undefined;
4231
- requestBody?: unknown;
4232
- callbacks?: unknown;
4233
- security?: Record<string, string[]>[] | undefined;
4234
- servers?: unknown[] | undefined;
4235
- } | undefined;
4236
- options?: {
4237
- description?: string | undefined;
4238
- tags?: string[] | undefined;
4239
- summary?: string | undefined;
4240
- responses?: unknown;
4241
- parameters?: ({
4242
- name: string;
4243
- in: "path" | "header" | "cookie" | "query";
4244
- description?: string | undefined;
4245
- required?: boolean | undefined;
4246
- deprecated?: boolean | undefined;
4247
- allowEmptyValue?: boolean | undefined;
4248
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4249
- explode?: string | undefined;
4250
- allowReserved?: boolean | undefined;
4251
- schema?: unknown;
4252
- example?: unknown;
4253
- examples?: Record<string, unknown> | undefined;
4254
- content?: Record<string, unknown> | undefined;
4255
- } | {
4256
- $ref: string;
4257
- description?: string | undefined;
4258
- summary?: string | undefined;
4259
- })[] | undefined;
4260
- deprecated?: boolean | undefined;
4261
- externalDocs?: unknown;
4262
- operationId?: string | undefined;
4263
- requestBody?: unknown;
4264
- callbacks?: unknown;
4265
- security?: Record<string, string[]>[] | undefined;
4266
- servers?: unknown[] | undefined;
4267
- } | undefined;
4268
- servers?: {
4269
- url: string;
4270
- description?: string | undefined;
4271
- variables?: Record<string, unknown> | undefined;
4272
- } | undefined;
4273
- trace?: {
4274
- description?: string | undefined;
4275
- tags?: string[] | undefined;
4276
- summary?: string | undefined;
4277
- responses?: unknown;
4278
- parameters?: ({
4279
- name: string;
4280
- in: "path" | "header" | "cookie" | "query";
4281
- description?: string | undefined;
4282
- required?: boolean | undefined;
4283
- deprecated?: boolean | undefined;
4284
- allowEmptyValue?: boolean | undefined;
4285
- style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4286
- explode?: string | undefined;
4287
- allowReserved?: boolean | undefined;
4288
- schema?: unknown;
4289
- example?: unknown;
4290
- examples?: Record<string, unknown> | undefined;
4291
- content?: Record<string, unknown> | undefined;
4292
- } | {
4293
- $ref: string;
4294
- description?: string | undefined;
4295
- summary?: string | undefined;
4296
- })[] | undefined;
4297
- deprecated?: boolean | undefined;
4298
- externalDocs?: unknown;
4299
- operationId?: string | undefined;
4300
- requestBody?: unknown;
4301
- callbacks?: unknown;
4302
- security?: Record<string, string[]>[] | undefined;
4303
- servers?: unknown[] | undefined;
4304
- } | undefined;
4305
- }>;
4306
- tags?: {
4307
- name: string;
4308
- description?: string | undefined;
4309
- externalDocs?: {
4310
- url: string;
4311
- description?: string | undefined;
4312
- } | undefined;
4313
- }[] | undefined;
4314
- externalDocs?: {
4315
- url: string;
4316
- description?: string | undefined;
4317
- } | undefined;
4318
- security?: Record<string, string[]>[] | undefined;
4319
- servers?: {
4320
- url: string;
4321
- description?: string | undefined;
4322
- variables?: Record<string, {
4323
- default: string;
4324
- description?: string | undefined;
4325
- enum?: string[] | undefined;
4326
- }> | undefined;
4327
- }[] | undefined;
4328
- components?: {
4329
- headers?: Record<string, any> | undefined;
4330
- responses?: Record<string, any> | undefined;
4331
- parameters?: Record<string, any> | undefined;
4332
- examples?: Record<string, any> | undefined;
4333
- callbacks?: Record<string, any> | undefined;
4334
- schemas?: Record<string, any> | undefined;
4335
- requestBodies?: Record<string, any> | undefined;
4336
- securitySchemes?: Record<string, any> | undefined;
4337
- links?: Record<string, any> | undefined;
4338
- } | undefined;
4339
- }>;
928
+ }, z.core.$strict>>;
929
+ }, z.core.$strip>;
4340
930
  export type OpenApiOperation = z.infer<typeof openapiOperation>;
4341
931
  export type OpenApiPathItem = z.infer<typeof openapiPathItem>;
4342
932
  export type OpenApiSchema = z.infer<typeof openapiSchema>;