diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-26 00:35:00 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-10-26 00:35:00 +0700 |
| commit | 17619265037a35926122a3ef74a646b2021d856e (patch) | |
| tree | 7faac6e3c6b11f633292487ef2e7d960974b6fb7 | |
| parent | f42fbce8242d89bec250cab37bab7d6f67625134 (diff) | |
<MIqdad> voucher types
| -rw-r--r-- | src-migrate/types/product.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src-migrate/types/product.ts b/src-migrate/types/product.ts index 746cdd4a..bc58ad7c 100644 --- a/src-migrate/types/product.ts +++ b/src-migrate/types/product.ts @@ -35,7 +35,12 @@ export interface IProduct { name: string; logo: string; }; - voucher_pasti_hemat: any; + new_voucher_pasti_hemat: { + min_purchase: number; + discount_percentage: number; + max_discount: number; + discount_type: string; + }; } export interface IProductDetail extends IProduct { |
