feat(common): add user request type

This commit is contained in:
Karol Sójko 2022-11-01 10:27:41 +01:00
parent 9d1a357b5b
commit d4af1d743e
No known key found for this signature in database
GPG key ID: A50543BF560BDEB0
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,3 @@
export enum UserRequestType {
ExitDiscount = 'exit-discount',
}

View file

@ -23,6 +23,7 @@ export * from './Subscription/SubscriptionBillingFrequency'
export * from './Subscription/SubscriptionName'
export * from './Type/Either'
export * from './Type/Only'
export * from './User/UserRequestType'
export * from './Validator/UuidValidator'
export * from './Validator/ValidatorInterface'
export * from './Workspace/WorkspaceAccessLevel'