@@ -414,7 +414,7 @@ export type DeleteOrderApiArg = {
414
414
/** ID of the order that needs to be deleted */
415
415
orderId: number;
416
416
};
417
- export type CreateUserApiResponse = unknown ;
417
+ export type CreateUserApiResponse = /** status default successful operation */ User ;
418
418
export type CreateUserApiArg = {
419
419
/** Created user object */
420
420
user: User;
@@ -714,7 +714,8 @@ export type DeleteOrderApiArg = {
714
714
/** ID of the order that needs to be deleted */
715
715
orderId: number;
716
716
};
717
- export type CreateUserApiResponse = unknown;
717
+ export type CreateUserApiResponse =
718
+ /** status default successful operation */ User;
718
719
export type CreateUserApiArg = {
719
720
/** Created user object */
720
721
user: User;
@@ -1647,7 +1648,8 @@ export type DeleteOrderApiArg = {
1647
1648
/** ID of the order that needs to be deleted */
1648
1649
orderId: number;
1649
1650
};
1650
- export type CreateUserApiResponse = /** status default successful operation */ User;
1651
+ export type CreateUserApiResponse =
1652
+ /** status default successful operation */ User;
1651
1653
export type CreateUserApiArg = {
1652
1654
/** Created user object */
1653
1655
user: User;
@@ -2048,7 +2050,8 @@ export type DeleteOrderApiArg = {
2048
2050
/** ID of the order that needs to be deleted */
2049
2051
orderId: number;
2050
2052
};
2051
- export type CreateUserApiResponse = /** status default successful operation */ User;
2053
+ export type CreateUserApiResponse =
2054
+ /** status default successful operation */ User;
2052
2055
export type CreateUserApiArg = {
2053
2056
/** Created user object */
2054
2057
user: User;
0 commit comments