@open-tender/types 0.3.16 → 0.3.17
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.
|
@@ -31,10 +31,10 @@ export interface LoyaltyTier {
|
|
|
31
31
|
threshold: Money;
|
|
32
32
|
tier_no: number;
|
|
33
33
|
}
|
|
34
|
-
export declare type
|
|
34
|
+
export declare type LoyaltyTiers = LoyaltyTier[];
|
|
35
35
|
export interface LoyaltyStatus {
|
|
36
36
|
progress: Money;
|
|
37
|
-
tiers:
|
|
37
|
+
tiers: LoyaltyTiers;
|
|
38
38
|
}
|
|
39
39
|
export declare type LoyaltyPerkType = 'BANKABLE_POINTS' | 'DISCRETE_REWARD' | 'DOLLARS_CREDIT';
|
|
40
40
|
export interface LoyaltyPerk {
|
|
@@ -31,10 +31,10 @@ export interface LoyaltyTier {
|
|
|
31
31
|
threshold: Money;
|
|
32
32
|
tier_no: number;
|
|
33
33
|
}
|
|
34
|
-
export declare type
|
|
34
|
+
export declare type LoyaltyTiers = LoyaltyTier[];
|
|
35
35
|
export interface LoyaltyStatus {
|
|
36
36
|
progress: Money;
|
|
37
|
-
tiers:
|
|
37
|
+
tiers: LoyaltyTiers;
|
|
38
38
|
}
|
|
39
39
|
export declare type LoyaltyPerkType = 'BANKABLE_POINTS' | 'DISCRETE_REWARD' | 'DOLLARS_CREDIT';
|
|
40
40
|
export interface LoyaltyPerk {
|
package/package.json
CHANGED