@hastehaul/common 2.0.19 → 2.0.21
Sign up to get free protection for your applications and to get access to all the features.
- package/build/events/common/interfaces/customer-events-interfaces/customer-created-event.d.ts +1 -1
- package/build/events/common/interfaces/customer-events-interfaces/customer-new-event.d.ts +2 -2
- package/build/events/common/interfaces/customer-events-interfaces/customer-paymentmethod.d.ts +4 -1
- package/package.json +1 -1
package/build/events/common/interfaces/customer-events-interfaces/customer-created-event.d.ts
CHANGED
@@ -22,7 +22,6 @@ export interface CustomerCreatedEvent {
|
|
22
22
|
* Events of different types may be grouped into different streams based on their common characteristics.
|
23
23
|
*/
|
24
24
|
stream: CustomerStream.Customer;
|
25
|
-
type: string;
|
26
25
|
/**
|
27
26
|
* The data payload of the "Customer Created" event.
|
28
27
|
* The data payload contains specific details related to the customer cancellation, such as customer ID, version, status, user ID, and trip ID.
|
@@ -30,5 +29,6 @@ export interface CustomerCreatedEvent {
|
|
30
29
|
data: {
|
31
30
|
userId: null | string;
|
32
31
|
phoneNumber: string;
|
32
|
+
isNew: boolean;
|
33
33
|
};
|
34
34
|
}
|