@@ -258,6 +258,7 @@ export type Pet = {
258
258
category?: Category | undefined;
259
259
photoUrls: string[];
260
260
tags?: Tag[] | undefined;
261
+ /** pet status in the store */
261
262
status?: ("available" | "pending" | "sold") | undefined;
262
263
};
263
264
export type ApiResponse = {
@@ -270,6 +271,7 @@ export type Order = {
270
271
petId?: number | undefined;
271
272
quantity?: number | undefined;
272
273
shipDate?: string | undefined;
274
+ /** Order Status */
273
275
status?: ("placed" | "approved" | "delivered") | undefined;
274
276
complete?: boolean | undefined;
275
277
};
@@ -281,6 +283,7 @@ export type User = {
281
283
email?: string | undefined;
282
284
password?: string | undefined;
283
285
phone?: string | undefined;
286
+ /** User Status */
284
287
userStatus?: number | undefined;
285
288
};
286
289
"
@@ -386,6 +389,7 @@ export type Order = {
386
389
petId?: number | undefined;
387
390
quantity?: number | undefined;
388
391
shipDate?: string | undefined;
392
+ /** Order Status */
389
393
status?: ("placed" | "approved" | "delivered") | undefined;
390
394
complete?: boolean | undefined;
391
395
};
@@ -494,6 +498,7 @@ export type Pet = {
494
498
category?: Category | undefined;
495
499
photoUrls: string[];
496
500
tags?: Tag[] | undefined;
501
+ /** pet status in the store */
497
502
status?: ("available" | "pending" | "sold") | undefined;
498
503
};
499
504
export const { useAddPetMutation, useGetPetByIdQuery } = injectedRtkApi;
@@ -680,6 +685,7 @@ export type Pet = {
680
685
category?: Category;
681
686
photoUrls: string[];
682
687
tags?: Tag[];
688
+ /** pet status in the store */
683
689
status?: "available" | "pending" | "sold";
684
690
};
685
691
export const { useAddPetMutation, useGetPetByIdQuery, useLazyGetPetByIdQuery } =
@@ -729,6 +735,7 @@ export type Pet = {
729
735
category?: Category;
730
736
photoUrls: string[];
731
737
tags?: Tag[];
738
+ /** pet status in the store */
732
739
status?: "available" | "pending" | "sold";
733
740
};
734
741
export const { useLazyGetPetByIdQuery } = injectedRtkApi;
@@ -777,6 +784,7 @@ export type Pet = {
777
784
category?: Category;
778
785
photoUrls: string[];
779
786
tags?: Tag[];
787
+ /** pet status in the store */
780
788
status?: "available" | "pending" | "sold";
781
789
};
782
790
export const { useAddPetMutation } = injectedRtkApi;
@@ -825,6 +833,7 @@ export type Pet = {
825
833
category?: Category;
826
834
photoUrls: string[];
827
835
tags?: Tag[];
836
+ /** pet status in the store */
828
837
status?: "available" | "pending" | "sold";
829
838
};
830
839
export const { useGetPetByIdQuery } = injectedRtkApi;
@@ -1153,6 +1162,7 @@ export type Pet = {
1153
1162
category?: Category | undefined;
1154
1163
photoUrls: string[];
1155
1164
tags?: Tag[] | undefined;
1165
+ /** pet status in the store */
1156
1166
status?: ("available" | "pending" | "sold") | undefined;
1157
1167
};
1158
1168
export type ApiResponse = {
@@ -1165,6 +1175,7 @@ export type Order = {
1165
1175
petId?: number | undefined;
1166
1176
quantity?: number | undefined;
1167
1177
shipDate?: string | undefined;
1178
+ /** Order Status */
1168
1179
status?: ("placed" | "approved" | "delivered") | undefined;
1169
1180
complete?: boolean | undefined;
1170
1181
};
@@ -1176,6 +1187,7 @@ export type User = {
1176
1187
email?: string | undefined;
1177
1188
password?: string | undefined;
1178
1189
phone?: string | undefined;
1190
+ /** User Status */
1179
1191
userStatus?: number | undefined;
1180
1192
};
1181
1193
export const {
@@ -1537,6 +1549,7 @@ export type Pet = {
1537
1549
category?: Category | undefined;
1538
1550
photoUrls: string[];
1539
1551
tags?: Tag[] | undefined;
1552
+ /** pet status in the store */
1540
1553
status?: ("available" | "pending" | "sold") | undefined;
1541
1554
};
1542
1555
export type ApiResponse = {
@@ -1549,6 +1562,7 @@ export type Order = {
1549
1562
petId?: number | undefined;
1550
1563
quantity?: number | undefined;
1551
1564
shipDate?: string | undefined;
1565
+ /** Order Status */
1552
1566
status?: ("placed" | "approved" | "delivered") | undefined;
1553
1567
complete?: boolean | undefined;
1554
1568
};
@@ -1560,6 +1574,7 @@ export type User = {
1560
1574
email?: string | undefined;
1561
1575
password?: string | undefined;
1562
1576
phone?: string | undefined;
1577
+ /** User Status */
1563
1578
userStatus?: number | undefined;
1564
1579
};
1565
1580
export const {
0 commit comments