@power-plant/openapi-typescript 0.0.2

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