fix(domain-events): remove not used event
This commit is contained in:
parent
c351f01f67
commit
cb9499b87f
3 changed files with 0 additions and 19 deletions
|
@ -1,8 +0,0 @@
|
|||
import { DomainEventInterface } from './DomainEventInterface'
|
||||
|
||||
import { EmailSubscriptionSyncRequestedEventPayload } from './EmailSubscriptionSyncRequestedEventPayload'
|
||||
|
||||
export interface EmailSubscriptionSyncRequestedEvent extends DomainEventInterface {
|
||||
type: 'EMAIL_SUBSCRIPTION_SYNC_REQUESTED'
|
||||
payload: EmailSubscriptionSyncRequestedEventPayload
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
export interface EmailSubscriptionSyncRequestedEventPayload {
|
||||
username: string
|
||||
userUuid: string
|
||||
subscriptionPlanName: string | null
|
||||
muteFailedBackupsEmails: boolean
|
||||
muteFailedCloudBackupsEmails: boolean
|
||||
muteMarketingEmails: boolean
|
||||
muteSignInEmails: boolean
|
||||
}
|
|
@ -30,8 +30,6 @@ export * from './Event/EmailBackupRequestedEvent'
|
|||
export * from './Event/EmailBackupRequestedEventPayload'
|
||||
export * from './Event/EmailMessageRequestedEvent'
|
||||
export * from './Event/EmailMessageRequestedEventPayload'
|
||||
export * from './Event/EmailSubscriptionSyncRequestedEvent'
|
||||
export * from './Event/EmailSubscriptionSyncRequestedEventPayload'
|
||||
export * from './Event/ExitDiscountAppliedEvent'
|
||||
export * from './Event/ExitDiscountAppliedEventPayload'
|
||||
export * from './Event/ExitDiscountApplyRequestedEvent'
|
||||
|
|
Loading…
Reference in a new issue