@qrush/types 2.0.14 → 2.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Promotion.d.ts +3 -0
- package/package.json +1 -1
package/dist/Promotion.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface CustomizationRules {
|
|
|
8
8
|
allowSavingEdit: boolean;
|
|
9
9
|
savingMin?: number;
|
|
10
10
|
savingMax?: number;
|
|
11
|
+
allowMinRedemptionsEdit: number;
|
|
11
12
|
allowActiveDaysEdit: boolean;
|
|
12
13
|
allowResetMinutesEdit: boolean;
|
|
13
14
|
}
|
|
@@ -49,6 +50,7 @@ export interface PromotionInstance {
|
|
|
49
50
|
resetMinutes?: number;
|
|
50
51
|
resetTime?: number;
|
|
51
52
|
customizationRules: CustomizationRules;
|
|
53
|
+
minRedemptions: number;
|
|
52
54
|
dailyRedemptionCount: number;
|
|
53
55
|
totalRedemptionCount: number;
|
|
54
56
|
lastRedemptionReset?: Timestamp;
|
|
@@ -111,6 +113,7 @@ export interface ActivePromotion {
|
|
|
111
113
|
resetMinutes?: number;
|
|
112
114
|
resetTime?: number;
|
|
113
115
|
maxRedemptions?: number;
|
|
116
|
+
minRedemptions?: number;
|
|
114
117
|
displayOrder?: number;
|
|
115
118
|
titleSnapshot: string;
|
|
116
119
|
savingSnapshot: number;
|