Skip to content

Commit 6045d3e

Browse files
committed
Fix codegen snapshots
1 parent c6371df commit 6045d3e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

packages/rtk-query-codegen-openapi/test/__snapshots__/generateEndpoints.test.ts.snap

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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;
418418
export 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;
718719
export 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;
16511653
export 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;
20522055
export type CreateUserApiArg = {
20532056
/** Created user object */
20542057
user: User;

0 commit comments

Comments
 (0)