@chaosinsight/postoffice-portalclient 1.22.0 → 1.22.2
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.
|
@@ -88,9 +88,9 @@ export interface IDealReplies {
|
|
|
88
88
|
export interface IDealTexts {
|
|
89
89
|
Footer: string | null;
|
|
90
90
|
VariantFooter: string | null;
|
|
91
|
+
LiveFooter: string | null;
|
|
91
92
|
OutOfStockHeader: string | null;
|
|
92
93
|
ExpiredHeader: string | null;
|
|
93
|
-
DealLiveFooter: string | null;
|
|
94
94
|
AlcoholFooter: string | null;
|
|
95
95
|
}
|
|
96
96
|
export interface IDealText {
|
|
@@ -40,7 +40,7 @@ export interface IOrganization {
|
|
|
40
40
|
IsActive: boolean;
|
|
41
41
|
IsDealMessagingPrioritized: boolean;
|
|
42
42
|
DealConfiguration: IDealConfiguration;
|
|
43
|
-
|
|
43
|
+
Features: IOrganizationFeatures;
|
|
44
44
|
Locations: number;
|
|
45
45
|
LocationsWithDeals: number;
|
|
46
46
|
}
|
package/package.json
CHANGED
package/src/extensions/deals.ts
CHANGED
|
@@ -107,9 +107,9 @@ export interface IDealReplies {
|
|
|
107
107
|
export interface IDealTexts {
|
|
108
108
|
Footer: string | null
|
|
109
109
|
VariantFooter: string | null
|
|
110
|
+
LiveFooter: string | null
|
|
110
111
|
OutOfStockHeader: string | null
|
|
111
112
|
ExpiredHeader: string | null
|
|
112
|
-
DealLiveFooter: string | null
|
|
113
113
|
AlcoholFooter: string | null
|
|
114
114
|
}
|
|
115
115
|
|