@@ -247,6 +247,8 @@ export interface components {
247247 pathItems: never;
248248}
249249
250+ export type $defs = Record<string, never>;
251+
250252export type external = Record<string, never>;
251253
252254export interface operations {
@@ -273,11 +275,17 @@ export interface operations {
273275 };
274276 };
275277 /** @description Invalid ID supplied */
276- 400 : never ;
278+ 400 : {
279+ content: never ;
280+ };
277281 /** @description Pet not found */
278- 404 : never ;
282+ 404 : {
283+ content: never ;
284+ };
279285 /** @description Validation exception */
280- 405 : never ;
286+ 405 : {
287+ content: never ;
288+ };
281289 };
282290 } ;
283291 /**
@@ -302,7 +310,9 @@ export interface operations {
302310 };
303311 };
304312 /** @description Invalid input */
305- 405 : never ;
313+ 405 : {
314+ content: never ;
315+ };
306316 } ;
307317 };
308318 /**
@@ -325,7 +335,9 @@ export interface operations {
325335 };
326336 };
327337 /** @description Invalid status value */
328- 400 : never ;
338+ 400 : {
339+ content: never ;
340+ };
329341 } ;
330342 };
331343 /**
@@ -348,7 +360,9 @@ export interface operations {
348360 };
349361 };
350362 /** @description Invalid tag value */
351- 400 : never ;
363+ 400 : {
364+ content: never ;
365+ };
352366 } ;
353367 };
354368 /**
@@ -371,9 +385,13 @@ export interface operations {
371385 };
372386 };
373387 /** @description Invalid ID supplied */
374- 400 : never ;
388+ 400 : {
389+ content: never ;
390+ };
375391 /** @description Pet not found */
376- 404 : never ;
392+ 404 : {
393+ content: never ;
394+ };
377395 } ;
378396 };
379397 /** Updates a pet in the store with form data */
@@ -392,7 +410,9 @@ export interface operations {
392410 } ;
393411 responses: {
394412 /** @description Invalid input */
395- 405 : never ;
413+ 405 : {
414+ content: never ;
415+ };
396416 } ;
397417 };
398418 /** Deletes a pet */
@@ -408,7 +428,9 @@ export interface operations {
408428 } ;
409429 responses: {
410430 /** @description Invalid pet value */
411- 400 : never ;
431+ 400 : {
432+ content: never ;
433+ };
412434 } ;
413435 };
414436 /** uploads an image */
@@ -447,7 +469,7 @@ export interface operations {
447469 200: {
448470 content: {
449471 \\" application/json\\ " : {
450- [key : string ]: number | undefined ;
472+ [key : string ]: number ;
451473 };
452474 };
453475 };
@@ -473,7 +495,9 @@ export interface operations {
473495 };
474496 };
475497 /** @description Invalid input */
476- 405 : never ;
498+ 405 : {
499+ content: never ;
500+ };
477501 } ;
478502 };
479503 /**
@@ -496,9 +520,13 @@ export interface operations {
496520 };
497521 };
498522 /** @description Invalid ID supplied */
499- 400 : never ;
523+ 400 : {
524+ content: never ;
525+ };
500526 /** @description Order not found */
501- 404 : never ;
527+ 404 : {
528+ content: never ;
529+ };
502530 } ;
503531 };
504532 /**
@@ -514,9 +542,13 @@ export interface operations {
514542 };
515543 responses : {
516544 /** @description Invalid ID supplied */
517- 400: never;
545+ 400: {
546+ content: never ;
547+ };
518548 /** @description Order not found */
519- 404: never;
549+ 404 : {
550+ content: never ;
551+ };
520552 } ;
521553 };
522554 /**
@@ -561,7 +593,9 @@ export interface operations {
561593 };
562594 };
563595 /** @description successful operation */
564- default : never ;
596+ default : {
597+ content: never ;
598+ };
565599 } ;
566600 };
567601 /** Logs user into the system */
@@ -589,14 +623,18 @@ export interface operations {
589623 };
590624 };
591625 /** @description Invalid username/password supplied */
592- 400 : never ;
626+ 400 : {
627+ content: never ;
628+ };
593629 } ;
594630 };
595631 /** Logs out current logged in user session */
596632 logoutUser: {
597633 responses : {
598634 /** @description successful operation */
599- default: never ;
635+ default: {
636+ content: never ;
637+ };
600638 };
601639 } ;
602640 /** Get user by user name */
@@ -616,9 +654,13 @@ export interface operations {
616654 };
617655 };
618656 /** @description Invalid username supplied */
619- 400 : never ;
657+ 400 : {
658+ content: never ;
659+ };
620660 /** @description User not found */
621- 404 : never ;
661+ 404 : {
662+ content: never ;
663+ };
622664 } ;
623665 };
624666 /**
@@ -642,7 +684,9 @@ export interface operations {
642684 };
643685 responses : {
644686 /** @description successful operation */
645- default: never ;
687+ default: {
688+ content: never ;
689+ };
646690 };
647691 } ;
648692 /**
@@ -658,9 +702,13 @@ export interface operations {
658702 };
659703 responses : {
660704 /** @description Invalid username supplied */
661- 400: never;
705+ 400: {
706+ content: never ;
707+ };
662708 /** @description User not found */
663- 404: never;
709+ 404 : {
710+ content: never ;
711+ };
664712 } ;
665713 };
666714}
0 commit comments