@chaosinsight/postoffice-portalclient 2.0.28 → 2.0.29
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.
|
@@ -69,9 +69,9 @@ export declare enum DealState {
|
|
|
69
69
|
active = "active",
|
|
70
70
|
expired = "expired"
|
|
71
71
|
}
|
|
72
|
-
export type DealTextKeysCommon = "OutOfStockHeader" | "ExpiredHeader" | "AlcoholFooter" | "PleaseTryAgain" | "PickupReminder" | "PickupReminderLastDay";
|
|
73
|
-
export type DealTextKeysRegular = "Footer" | "VariantFooter" | "Confirmation" | "ConfirmationWithLink" | "ConfirmationWithExternalCheckout" | "ConfirmationWithWebshop" | "Expired" | "OutOfStock" | "ExceedsMaxAllowedQuantity" | "ExceedsStock";
|
|
74
|
-
export type DealTextKeysLive = "LiveFooter" | "RobotDisconnectedHeader" | "OrderCheckout" | "Confirmation" | "ConfirmationWithLink" | "StreamEndedWithExternalCheckout" | "ConfirmationWithExternalCheckout" | "StreamEndedConfirmationWithExternalCheckout" | "StreamEndedWithWebshop" | "ConfirmationWithWebshop" | "StreamEndedConfirmationWithWebshop" | "RobotConnected" | "ProductSoldOut";
|
|
72
|
+
export type DealTextKeysCommon = "OutOfStockHeader" | "ExpiredHeader" | "AlcoholFooter" | "PleaseTryAgain" | "PickupReminder" | "PickupReminderLastDay" | "SalesSubscription";
|
|
73
|
+
export type DealTextKeysRegular = "Footer" | "VariantFooter" | "Confirmation" | "ConfirmationWithLink" | "ConfirmationWithExternalCheckout" | "ConfirmationWithWebshop" | "Expired" | "OutOfStock" | "ExceedsMaxAllowedQuantity" | "ExceedsStock" | "SalesSubscription";
|
|
74
|
+
export type DealTextKeysLive = "LiveFooter" | "RobotDisconnectedHeader" | "OrderCheckout" | "Confirmation" | "ConfirmationWithLink" | "StreamEndedWithExternalCheckout" | "ConfirmationWithExternalCheckout" | "StreamEndedConfirmationWithExternalCheckout" | "StreamEndedWithWebshop" | "ConfirmationWithWebshop" | "StreamEndedConfirmationWithWebshop" | "RobotConnected" | "ProductSoldOut" | "SalesSubscription";
|
|
75
75
|
export type IDealTextConfiguration<T> = {
|
|
76
76
|
Common: IDealConfigurationSection<DealTextKeysCommon, T>;
|
|
77
77
|
Regular: IDealConfigurationSection<DealTextKeysRegular, T>;
|
package/package.json
CHANGED
package/src/extensions/deals.ts
CHANGED
|
@@ -87,9 +87,9 @@ export enum DealState {
|
|
|
87
87
|
expired = "expired"
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
export type DealTextKeysCommon = "OutOfStockHeader" | "ExpiredHeader" | "AlcoholFooter" | "PleaseTryAgain" | "PickupReminder" | "PickupReminderLastDay"
|
|
91
|
-
export type DealTextKeysRegular = "Footer" | "VariantFooter" | "Confirmation" | "ConfirmationWithLink" | "ConfirmationWithExternalCheckout" | "ConfirmationWithWebshop" | "Expired" | "OutOfStock" | "ExceedsMaxAllowedQuantity" | "ExceedsStock"
|
|
92
|
-
export type DealTextKeysLive = "LiveFooter" | "RobotDisconnectedHeader" | "OrderCheckout" | "Confirmation" | "ConfirmationWithLink" | "StreamEndedWithExternalCheckout" | "ConfirmationWithExternalCheckout" | "StreamEndedConfirmationWithExternalCheckout" | "StreamEndedWithWebshop" | "ConfirmationWithWebshop" | "StreamEndedConfirmationWithWebshop" | "RobotConnected" | "ProductSoldOut"
|
|
90
|
+
export type DealTextKeysCommon = "OutOfStockHeader" | "ExpiredHeader" | "AlcoholFooter" | "PleaseTryAgain" | "PickupReminder" | "PickupReminderLastDay" | "SalesSubscription"
|
|
91
|
+
export type DealTextKeysRegular = "Footer" | "VariantFooter" | "Confirmation" | "ConfirmationWithLink" | "ConfirmationWithExternalCheckout" | "ConfirmationWithWebshop" | "Expired" | "OutOfStock" | "ExceedsMaxAllowedQuantity" | "ExceedsStock" | "SalesSubscription"
|
|
92
|
+
export type DealTextKeysLive = "LiveFooter" | "RobotDisconnectedHeader" | "OrderCheckout" | "Confirmation" | "ConfirmationWithLink" | "StreamEndedWithExternalCheckout" | "ConfirmationWithExternalCheckout" | "StreamEndedConfirmationWithExternalCheckout" | "StreamEndedWithWebshop" | "ConfirmationWithWebshop" | "StreamEndedConfirmationWithWebshop" | "RobotConnected" | "ProductSoldOut" | "SalesSubscription"
|
|
93
93
|
|
|
94
94
|
export type IDealTextConfiguration<T> = {
|
|
95
95
|
Common: IDealConfigurationSection<DealTextKeysCommon, T>
|