Skip to content

Commit

Permalink
fix: update attribute names in Pagination and MemberStorageItemRespon…
Browse files Browse the repository at this point in the history
…se types
  • Loading branch information
mariembencheikh committed Jul 23, 2024
1 parent 9326679 commit 666e3df
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/member/member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@ export type MemberStorageItem = {

export type Pagination = {
totalItems: number;
totalPages: number;
currentPage: number;
page: number;
pageSize: number;
};

export type MemberStorageItemsResponse = {
items: MemberStorageItem[];
data: MemberStorageItem[];
pagination: Pagination;
};

Expand Down

0 comments on commit 666e3df

Please sign in to comment.