sinfactura-types 1.6.13 → 1.6.14
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.
|
@@ -87,7 +87,12 @@ declare global {
|
|
|
87
87
|
event: 'Customer Identified';
|
|
88
88
|
customer_id: string;
|
|
89
89
|
}
|
|
90
|
-
|
|
90
|
+
interface CustomerPasswordResetRequestedEvent extends StorefrontEventBase {
|
|
91
|
+
event: 'Customer Password Reset Requested';
|
|
92
|
+
email: string;
|
|
93
|
+
customer_found: boolean;
|
|
94
|
+
}
|
|
95
|
+
type StorefrontEvent = ProductViewedEvent | ProductListViewedEvent | CartItemAddedEvent | CartItemRemovedEvent | CartViewedEvent | SearchSubmittedEvent | CheckoutStartedEvent | CheckoutStepCompletedEvent | PaymentInfoEnteredEvent | OrderCompletedEvent | CustomerLoggedInEvent | CustomerSignedUpEvent | CustomerLoggedOutEvent | CustomerIdentifiedEvent | CustomerPasswordResetRequestedEvent;
|
|
91
96
|
interface IdentityLink {
|
|
92
97
|
tenant_store_id: string;
|
|
93
98
|
anonymous_id: string;
|