transform core api codes into this project, update modules as admin/pos context modules

This commit is contained in:
2026-03-07 11:25:11 +03:30
parent b949500482
commit 8c5f1d4d49
167 changed files with 26975 additions and 1837 deletions
+10 -10
View File
@@ -1,18 +1,18 @@
export enum TokenType {
ACCESS,
REFRESH,
ACCESS = 'ACCESS',
REFRESH = 'REFRESH',
}
export enum AccountType {
PARTNER,
BUSINESS,
ADMIN,
PROVIDER,
POS,
PARTNER = 'PARTNER',
BUSINESS = 'BUSINESS',
ADMIN = 'ADMIN',
PROVIDER = 'PROVIDER',
POS = 'POS',
}
export enum GoldKarat {
KARAT_18 = 18,
KARAT_21 = 21,
KARAT_24 = 24,
KARAT_18 = '18',
KARAT_21 = '21',
KARAT_24 = '24',
}