feat(domain-events): add discount code to subscription purchased event

This commit is contained in:
Karol Sójko 2022-07-26 13:50:13 +02:00
parent e936ac4ce1
commit 28e1c65631
No known key found for this signature in database
GPG key ID: A50543BF560BDEB0

View file

@ -7,4 +7,5 @@ export interface SubscriptionPurchasedEventPayload {
subscriptionExpiresAt: number
timestamp: number
offline: boolean
discountCode: string | null
}