diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2025-05-08 10:34:07 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2025-05-08 10:34:07 +0000 |
| commit | 746a11b810ae9e8a974a76d0548297cd0faff9b5 (patch) | |
| tree | 79c8c89300a3b42a6e62d282a6041c1a42e6c2ce /src-migrate/types | |
| parent | 5c8a5df24a9758f3b3a6366d326f61c2c6a13c42 (diff) | |
| parent | a9a92c02e24bf77b9e490be51d7002cc2ef41bf1 (diff) | |
Merged in feat_voucher-category (pull request #407)
Feat voucher category
Approved-by: trisusilo
Diffstat (limited to 'src-migrate/types')
| -rw-r--r-- | src-migrate/types/product.ts | 2 | ||||
| -rw-r--r-- | src-migrate/types/voucher.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src-migrate/types/product.ts b/src-migrate/types/product.ts index 14ba718f..746cdd4a 100644 --- a/src-migrate/types/product.ts +++ b/src-migrate/types/product.ts @@ -35,7 +35,7 @@ export interface IProduct { name: string; logo: string; }; - voucher_pasti_hemat : any; + voucher_pasti_hemat: any; } export interface IProductDetail extends IProduct { diff --git a/src-migrate/types/voucher.ts b/src-migrate/types/voucher.ts index 3e90f449..d3140372 100644 --- a/src-migrate/types/voucher.ts +++ b/src-migrate/types/voucher.ts @@ -3,6 +3,7 @@ export interface IVoucher { image: string; name: string; code: string; + voucher_category: []; description: string | false; remaining_time: string; } |
