@@ -414,7 +414,7 @@ export type DeleteOrderApiArg = {
414414 /** ID of the order that needs to be deleted */
415415 orderId: number;
416416};
417- export type CreateUserApiResponse = unknown ;
417+ export type CreateUserApiResponse = /** status default successful operation */ User ;
418418export type CreateUserApiArg = {
419419 /** Created user object */
420420 user: User;
@@ -714,7 +714,8 @@ export type DeleteOrderApiArg = {
714714 /** ID of the order that needs to be deleted */
715715 orderId: number;
716716};
717- export type CreateUserApiResponse = unknown;
717+ export type CreateUserApiResponse =
718+ /** status default successful operation */ User;
718719export type CreateUserApiArg = {
719720 /** Created user object */
720721 user: User;
@@ -1647,7 +1648,8 @@ export type DeleteOrderApiArg = {
16471648 /** ID of the order that needs to be deleted */
16481649 orderId: number;
16491650};
1650- export type CreateUserApiResponse = /** status default successful operation */ User;
1651+ export type CreateUserApiResponse =
1652+ /** status default successful operation */ User;
16511653export type CreateUserApiArg = {
16521654 /** Created user object */
16531655 user: User;
@@ -2048,7 +2050,8 @@ export type DeleteOrderApiArg = {
20482050 /** ID of the order that needs to be deleted */
20492051 orderId: number;
20502052};
2051- export type CreateUserApiResponse = /** status default successful operation */ User;
2053+ export type CreateUserApiResponse =
2054+ /** status default successful operation */ User;
20522055export type CreateUserApiArg = {
20532056 /** Created user object */
20542057 user: User;
0 commit comments