This commit is contained in:
focp212@naver.com
2025-09-08 17:14:21 +09:00
parent c92fdc2bd1
commit 065a4fd348
15 changed files with 319 additions and 91 deletions

View File

@@ -10,7 +10,7 @@ import {
export const codesCacheRefresh = () => {
return resultify(
axios.post<CodesCacheRefreshResponse>(API_URL.counselList()),
axios.post<CodesCacheRefreshResponse>(API_URL.codesCacheRefresh()),
);
};

View File

@@ -1,8 +1,8 @@
export const DEFAULT_PAGE_PARAM = {
cursor: 'string',
page: 0,
size: 0,
sortBy: 'string',
sortOrder: 'ASC',
orderBy: 'string',
limit: 0,
offset: 0
};

View File

@@ -1,3 +1,11 @@
export interface DefaultRequestPagination {
page: number;
size: number;
sortBy: string;
sortOrder: string;
orderBy: string;
offset: number;
};
export interface DefaulResponsePagination {
nextCursor: string | null;
hasNext: boolean;