@open-tender/types 0.3.16 → 0.3.18

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 LoyaltyTier2 = LoyaltyTier[];
34
+ export declare type LoyaltyTiers = LoyaltyTier[];
35
35
  export interface LoyaltyStatus {
36
36
  progress: Money;
37
- tiers: LoyaltyTier2;
37
+ tiers: LoyaltyTiers;
38
38
  }
39
39
  export declare type LoyaltyPerkType = 'BANKABLE_POINTS' | 'DISCRETE_REWARD' | 'DOLLARS_CREDIT';
40
40
  export interface LoyaltyPerk {
@@ -581,6 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
581
581
  bgColor: string;
582
582
  borderColor: string;
583
583
  }
584
+ export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
584
585
  export interface ThemeModifiersBox extends Record<string, string | number> {
585
586
  border: string;
586
587
  borderMobile: string;
@@ -588,7 +589,7 @@ export interface ThemeModifiersBox extends Record<string, string | number> {
588
589
  boxShadow: string;
589
590
  gap: string;
590
591
  gapHalf: string;
591
- layout: string;
592
+ layout: ThemeModifiersBoxType;
592
593
  margin: string;
593
594
  marginMobile: string;
594
595
  minHeight: string;
@@ -31,10 +31,10 @@ export interface LoyaltyTier {
31
31
  threshold: Money;
32
32
  tier_no: number;
33
33
  }
34
- export declare type LoyaltyTier2 = LoyaltyTier[];
34
+ export declare type LoyaltyTiers = LoyaltyTier[];
35
35
  export interface LoyaltyStatus {
36
36
  progress: Money;
37
- tiers: LoyaltyTier2;
37
+ tiers: LoyaltyTiers;
38
38
  }
39
39
  export declare type LoyaltyPerkType = 'BANKABLE_POINTS' | 'DISCRETE_REWARD' | 'DOLLARS_CREDIT';
40
40
  export interface LoyaltyPerk {
@@ -581,6 +581,7 @@ export interface ThemeModifiersColors extends Record<string, string> {
581
581
  bgColor: string;
582
582
  borderColor: string;
583
583
  }
584
+ export declare type ThemeModifiersBoxType = 'DEFAULT' | 'CARDS' | 'SQUARES';
584
585
  export interface ThemeModifiersBox extends Record<string, string | number> {
585
586
  border: string;
586
587
  borderMobile: string;
@@ -588,7 +589,7 @@ export interface ThemeModifiersBox extends Record<string, string | number> {
588
589
  boxShadow: string;
589
590
  gap: string;
590
591
  gapHalf: string;
591
- layout: string;
592
+ layout: ThemeModifiersBoxType;
592
593
  margin: string;
593
594
  marginMobile: string;
594
595
  minHeight: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.3.16",
3
+ "version": "0.3.18",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",