@@ -258,6 +258,7 @@ export type Pet = {
258258 category?: Category | undefined;
259259 photoUrls: string[];
260260 tags?: Tag[] | undefined;
261+ /** pet status in the store */
261262 status?: ("available" | "pending" | "sold") | undefined;
262263};
263264export type ApiResponse = {
@@ -270,6 +271,7 @@ export type Order = {
270271 petId?: number | undefined;
271272 quantity?: number | undefined;
272273 shipDate?: string | undefined;
274+ /** Order Status */
273275 status?: ("placed" | "approved" | "delivered") | undefined;
274276 complete?: boolean | undefined;
275277};
@@ -281,6 +283,7 @@ export type User = {
281283 email?: string | undefined;
282284 password?: string | undefined;
283285 phone?: string | undefined;
286+ /** User Status */
284287 userStatus?: number | undefined;
285288};
286289"
@@ -386,6 +389,7 @@ export type Order = {
386389 petId?: number | undefined;
387390 quantity?: number | undefined;
388391 shipDate?: string | undefined;
392+ /** Order Status */
389393 status?: ("placed" | "approved" | "delivered") | undefined;
390394 complete?: boolean | undefined;
391395};
@@ -494,6 +498,7 @@ export type Pet = {
494498 category?: Category | undefined;
495499 photoUrls: string[];
496500 tags?: Tag[] | undefined;
501+ /** pet status in the store */
497502 status?: ("available" | "pending" | "sold") | undefined;
498503};
499504export const { useAddPetMutation, useGetPetByIdQuery } = injectedRtkApi;
@@ -680,6 +685,7 @@ export type Pet = {
680685 category?: Category;
681686 photoUrls: string[];
682687 tags?: Tag[];
688+ /** pet status in the store */
683689 status?: "available" | "pending" | "sold";
684690};
685691export const { useAddPetMutation, useGetPetByIdQuery, useLazyGetPetByIdQuery } =
@@ -729,6 +735,7 @@ export type Pet = {
729735 category?: Category;
730736 photoUrls: string[];
731737 tags?: Tag[];
738+ /** pet status in the store */
732739 status?: "available" | "pending" | "sold";
733740};
734741export const { useLazyGetPetByIdQuery } = injectedRtkApi;
@@ -777,6 +784,7 @@ export type Pet = {
777784 category?: Category;
778785 photoUrls: string[];
779786 tags?: Tag[];
787+ /** pet status in the store */
780788 status?: "available" | "pending" | "sold";
781789};
782790export const { useAddPetMutation } = injectedRtkApi;
@@ -825,6 +833,7 @@ export type Pet = {
825833 category?: Category;
826834 photoUrls: string[];
827835 tags?: Tag[];
836+ /** pet status in the store */
828837 status?: "available" | "pending" | "sold";
829838};
830839export const { useGetPetByIdQuery } = injectedRtkApi;
@@ -1153,6 +1162,7 @@ export type Pet = {
11531162 category?: Category | undefined;
11541163 photoUrls: string[];
11551164 tags?: Tag[] | undefined;
1165+ /** pet status in the store */
11561166 status?: ("available" | "pending" | "sold") | undefined;
11571167};
11581168export type ApiResponse = {
@@ -1165,6 +1175,7 @@ export type Order = {
11651175 petId?: number | undefined;
11661176 quantity?: number | undefined;
11671177 shipDate?: string | undefined;
1178+ /** Order Status */
11681179 status?: ("placed" | "approved" | "delivered") | undefined;
11691180 complete?: boolean | undefined;
11701181};
@@ -1176,6 +1187,7 @@ export type User = {
11761187 email?: string | undefined;
11771188 password?: string | undefined;
11781189 phone?: string | undefined;
1190+ /** User Status */
11791191 userStatus?: number | undefined;
11801192};
11811193export const {
@@ -1537,6 +1549,7 @@ export type Pet = {
15371549 category?: Category | undefined;
15381550 photoUrls: string[];
15391551 tags?: Tag[] | undefined;
1552+ /** pet status in the store */
15401553 status?: ("available" | "pending" | "sold") | undefined;
15411554};
15421555export type ApiResponse = {
@@ -1549,6 +1562,7 @@ export type Order = {
15491562 petId?: number | undefined;
15501563 quantity?: number | undefined;
15511564 shipDate?: string | undefined;
1565+ /** Order Status */
15521566 status?: ("placed" | "approved" | "delivered") | undefined;
15531567 complete?: boolean | undefined;
15541568};
@@ -1560,6 +1574,7 @@ export type User = {
15601574 email?: string | undefined;
15611575 password?: string | undefined;
15621576 phone?: string | undefined;
1577+ /** User Status */
15631578 userStatus?: number | undefined;
15641579};
15651580export const {
0 commit comments