refactor: integrate standard pagination, update payment methods API, and replace custom data table with EnterpriseDataTable component

This commit is contained in:
Firman Ramdhani
2026-07-20 17:04:04 +07:00
parent a761ba05c9
commit bd88ed53a4
2 changed files with 11 additions and 3 deletions
@@ -34,6 +34,9 @@ export const ModuleAction = {
LOGS: 'LOGS',
NOTES: 'NOTES',
FILTER: 'FILTER',
CONFIG: 'CONFIG',
} as const;
/**
@@ -145,7 +148,7 @@ export interface SelectionSlice<
export interface EnterpriseModuleState<
E extends BaseEntity = BaseEntity,
TFilter = Record<string, unknown>,
TMeta = Record<string, unknown>
TMeta = Record<string, unknown>,
> {
metaData: TMeta | null;
setMetaData: (data: TMeta | null) => void;