@@ -176,7 +176,7 @@ export type UploadFileApiArg = {
176
176
export type GetInventoryApiResponse = /** status 200 successful operation */ {
177
177
[key: string]: number;
178
178
};
179
- export type GetInventoryApiArg = {} ;
179
+ export type GetInventoryApiArg = void ;
180
180
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
181
181
export type PlaceOrderApiArg = {
182
182
order: Order;
@@ -208,7 +208,7 @@ export type LoginUserApiArg = {
208
208
password?: string;
209
209
};
210
210
export type LogoutUserApiResponse = unknown;
211
- export type LogoutUserApiArg = {} ;
211
+ export type LogoutUserApiArg = void ;
212
212
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
213
213
export type GetUserByNameApiArg = {
214
214
/** The name that needs to be fetched. Use user1 for testing. */
@@ -352,7 +352,7 @@ export const api = createApi({
352
352
export type GetHealthcheckApiResponse = /** status 200 OK */ {
353
353
message: string;
354
354
};
355
- export type GetHealthcheckApiArg = {} ;
355
+ export type GetHealthcheckApiArg = void ;
356
356
export type UpdatePetApiResponse = /** status 200 Successful operation */ Pet;
357
357
export type UpdatePetApiArg = {
358
358
/** Update an existent pet in the store */
@@ -404,7 +404,7 @@ export type UploadFileApiArg = {
404
404
export type GetInventoryApiResponse = /** status 200 successful operation */ {
405
405
[key: string]: number;
406
406
};
407
- export type GetInventoryApiArg = {} ;
407
+ export type GetInventoryApiArg = void ;
408
408
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
409
409
export type PlaceOrderApiArg = {
410
410
order: Order;
@@ -436,7 +436,7 @@ export type LoginUserApiArg = {
436
436
password?: string;
437
437
};
438
438
export type LogoutUserApiResponse = unknown;
439
- export type LogoutUserApiArg = {} ;
439
+ export type LogoutUserApiArg = void ;
440
440
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
441
441
export type GetUserByNameApiArg = {
442
442
/** The name that needs to be fetched. Use user1 for testing. */
@@ -631,7 +631,7 @@ export const api = createApi({
631
631
export type GetHealthcheckApiResponse = /** status 200 OK */ {
632
632
message: string;
633
633
};
634
- export type GetHealthcheckApiArg = {} ;
634
+ export type GetHealthcheckApiArg = void ;
635
635
export type UpdatePetApiResponse = /** status 200 Successful operation */ Pet;
636
636
export type UpdatePetApiArg = {
637
637
/** Update an existent pet in the store */
@@ -683,7 +683,7 @@ export type UploadFileApiArg = {
683
683
export type GetInventoryApiResponse = /** status 200 successful operation */ {
684
684
[key: string]: number;
685
685
};
686
- export type GetInventoryApiArg = {} ;
686
+ export type GetInventoryApiArg = void ;
687
687
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
688
688
export type PlaceOrderApiArg = {
689
689
order: Order;
@@ -715,7 +715,7 @@ export type LoginUserApiArg = {
715
715
password?: string;
716
716
};
717
717
export type LogoutUserApiResponse = unknown;
718
- export type LogoutUserApiArg = {} ;
718
+ export type LogoutUserApiArg = void ;
719
719
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
720
720
export type GetUserByNameApiArg = {
721
721
/** The name that needs to be fetched. Use user1 for testing. */
@@ -932,7 +932,7 @@ export const api = createApi({
932
932
export type GetHealthcheckApiResponse = /** status 200 OK */ {
933
933
message: string;
934
934
};
935
- export type GetHealthcheckApiArg = {} ;
935
+ export type GetHealthcheckApiArg = void ;
936
936
export type UpdatePetApiResponse = /** status 200 Successful operation */ Pet;
937
937
export type UpdatePetApiArg = {
938
938
/** Update an existent pet in the store */
@@ -984,7 +984,7 @@ export type UploadFileApiArg = {
984
984
export type GetInventoryApiResponse = /** status 200 successful operation */ {
985
985
[key: string]: number;
986
986
};
987
- export type GetInventoryApiArg = {} ;
987
+ export type GetInventoryApiArg = void ;
988
988
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
989
989
export type PlaceOrderApiArg = {
990
990
order: Order;
@@ -1016,7 +1016,7 @@ export type LoginUserApiArg = {
1016
1016
password?: string;
1017
1017
};
1018
1018
export type LogoutUserApiResponse = unknown;
1019
- export type LogoutUserApiArg = {} ;
1019
+ export type LogoutUserApiArg = void ;
1020
1020
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
1021
1021
export type GetUserByNameApiArg = {
1022
1022
/** The name that needs to be fetched. Use user1 for testing. */
@@ -1205,7 +1205,7 @@ export type UploadFileApiArg = {
1205
1205
export type GetInventoryApiResponse = /** status 200 successful operation */ {
1206
1206
[key: string]: number;
1207
1207
};
1208
- export type GetInventoryApiArg = {} ;
1208
+ export type GetInventoryApiArg = void ;
1209
1209
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
1210
1210
export type PlaceOrderApiArg = {
1211
1211
order: Order;
@@ -1237,7 +1237,7 @@ export type LoginUserApiArg = {
1237
1237
password?: string;
1238
1238
};
1239
1239
export type LogoutUserApiResponse = unknown;
1240
- export type LogoutUserApiArg = {} ;
1240
+ export type LogoutUserApiArg = void ;
1241
1241
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
1242
1242
export type GetUserByNameApiArg = {
1243
1243
/** The name that needs to be fetched. Use user1 for testing. */
@@ -1522,7 +1522,7 @@ export type UploadFileApiArg = {
1522
1522
export type GetInventoryApiResponse = /** status 200 successful operation */ {
1523
1523
[key: string]: number;
1524
1524
};
1525
- export type GetInventoryApiArg = {} ;
1525
+ export type GetInventoryApiArg = void ;
1526
1526
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
1527
1527
export type PlaceOrderApiArg = {
1528
1528
order: Order;
@@ -1554,7 +1554,7 @@ export type LoginUserApiArg = {
1554
1554
password?: string;
1555
1555
};
1556
1556
export type LogoutUserApiResponse = unknown;
1557
- export type LogoutUserApiArg = {} ;
1557
+ export type LogoutUserApiArg = void ;
1558
1558
export type GetUserByNameApiResponse = /** status 200 successful operation */ User;
1559
1559
export type GetUserByNameApiArg = {
1560
1560
/** The name that needs to be fetched. Use user1 for testing. */
0 commit comments