@@ -247,6 +247,8 @@ export interface components {
247
247
pathItems: never;
248
248
}
249
249
250
+ export type $defs = Record<string, never>;
251
+
250
252
export type external = Record<string, never>;
251
253
252
254
export interface operations {
@@ -273,11 +275,17 @@ export interface operations {
273
275
};
274
276
};
275
277
/** @description Invalid ID supplied */
276
- 400 : never ;
278
+ 400 : {
279
+ content: never ;
280
+ };
277
281
/** @description Pet not found */
278
- 404 : never ;
282
+ 404 : {
283
+ content: never ;
284
+ };
279
285
/** @description Validation exception */
280
- 405 : never ;
286
+ 405 : {
287
+ content: never ;
288
+ };
281
289
};
282
290
} ;
283
291
/**
@@ -302,7 +310,9 @@ export interface operations {
302
310
};
303
311
};
304
312
/** @description Invalid input */
305
- 405 : never ;
313
+ 405 : {
314
+ content: never ;
315
+ };
306
316
} ;
307
317
};
308
318
/**
@@ -325,7 +335,9 @@ export interface operations {
325
335
};
326
336
};
327
337
/** @description Invalid status value */
328
- 400 : never ;
338
+ 400 : {
339
+ content: never ;
340
+ };
329
341
} ;
330
342
};
331
343
/**
@@ -348,7 +360,9 @@ export interface operations {
348
360
};
349
361
};
350
362
/** @description Invalid tag value */
351
- 400 : never ;
363
+ 400 : {
364
+ content: never ;
365
+ };
352
366
} ;
353
367
};
354
368
/**
@@ -371,9 +385,13 @@ export interface operations {
371
385
};
372
386
};
373
387
/** @description Invalid ID supplied */
374
- 400 : never ;
388
+ 400 : {
389
+ content: never ;
390
+ };
375
391
/** @description Pet not found */
376
- 404 : never ;
392
+ 404 : {
393
+ content: never ;
394
+ };
377
395
} ;
378
396
};
379
397
/** Updates a pet in the store with form data */
@@ -392,7 +410,9 @@ export interface operations {
392
410
} ;
393
411
responses: {
394
412
/** @description Invalid input */
395
- 405 : never ;
413
+ 405 : {
414
+ content: never ;
415
+ };
396
416
} ;
397
417
};
398
418
/** Deletes a pet */
@@ -408,7 +428,9 @@ export interface operations {
408
428
} ;
409
429
responses: {
410
430
/** @description Invalid pet value */
411
- 400 : never ;
431
+ 400 : {
432
+ content: never ;
433
+ };
412
434
} ;
413
435
};
414
436
/** uploads an image */
@@ -447,7 +469,7 @@ export interface operations {
447
469
200: {
448
470
content: {
449
471
\\" application/json\\ " : {
450
- [key : string ]: number | undefined ;
472
+ [key : string ]: number ;
451
473
};
452
474
};
453
475
};
@@ -473,7 +495,9 @@ export interface operations {
473
495
};
474
496
};
475
497
/** @description Invalid input */
476
- 405 : never ;
498
+ 405 : {
499
+ content: never ;
500
+ };
477
501
} ;
478
502
};
479
503
/**
@@ -496,9 +520,13 @@ export interface operations {
496
520
};
497
521
};
498
522
/** @description Invalid ID supplied */
499
- 400 : never ;
523
+ 400 : {
524
+ content: never ;
525
+ };
500
526
/** @description Order not found */
501
- 404 : never ;
527
+ 404 : {
528
+ content: never ;
529
+ };
502
530
} ;
503
531
};
504
532
/**
@@ -514,9 +542,13 @@ export interface operations {
514
542
};
515
543
responses : {
516
544
/** @description Invalid ID supplied */
517
- 400: never;
545
+ 400: {
546
+ content: never ;
547
+ };
518
548
/** @description Order not found */
519
- 404: never;
549
+ 404 : {
550
+ content: never ;
551
+ };
520
552
} ;
521
553
};
522
554
/**
@@ -561,7 +593,9 @@ export interface operations {
561
593
};
562
594
};
563
595
/** @description successful operation */
564
- default : never ;
596
+ default : {
597
+ content: never ;
598
+ };
565
599
} ;
566
600
};
567
601
/** Logs user into the system */
@@ -589,14 +623,18 @@ export interface operations {
589
623
};
590
624
};
591
625
/** @description Invalid username/password supplied */
592
- 400 : never ;
626
+ 400 : {
627
+ content: never ;
628
+ };
593
629
} ;
594
630
};
595
631
/** Logs out current logged in user session */
596
632
logoutUser: {
597
633
responses : {
598
634
/** @description successful operation */
599
- default: never ;
635
+ default: {
636
+ content: never ;
637
+ };
600
638
};
601
639
} ;
602
640
/** Get user by user name */
@@ -616,9 +654,13 @@ export interface operations {
616
654
};
617
655
};
618
656
/** @description Invalid username supplied */
619
- 400 : never ;
657
+ 400 : {
658
+ content: never ;
659
+ };
620
660
/** @description User not found */
621
- 404 : never ;
661
+ 404 : {
662
+ content: never ;
663
+ };
622
664
} ;
623
665
};
624
666
/**
@@ -642,7 +684,9 @@ export interface operations {
642
684
};
643
685
responses : {
644
686
/** @description successful operation */
645
- default: never ;
687
+ default: {
688
+ content: never ;
689
+ };
646
690
};
647
691
} ;
648
692
/**
@@ -658,9 +702,13 @@ export interface operations {
658
702
};
659
703
responses : {
660
704
/** @description Invalid username supplied */
661
- 400: never;
705
+ 400: {
706
+ content: never ;
707
+ };
662
708
/** @description User not found */
663
- 404: never;
709
+ 404 : {
710
+ content: never ;
711
+ };
664
712
} ;
665
713
};
666
714
}
0 commit comments