feat: add accepting subscription invite route type
This commit is contained in:
3
packages/ui-services/src/Route/Params/DemoParams.ts
Normal file
3
packages/ui-services/src/Route/Params/DemoParams.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export type DemoParams = {
|
||||
token: string
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export type OnboardingParams = {
|
||||
fromHomepage: boolean
|
||||
}
|
||||
4
packages/ui-services/src/Route/Params/PurchaseParams.ts
Normal file
4
packages/ui-services/src/Route/Params/PurchaseParams.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export type PurchaseParams = {
|
||||
plan: string
|
||||
period: string
|
||||
}
|
||||
5
packages/ui-services/src/Route/Params/SettingsParams.ts
Normal file
5
packages/ui-services/src/Route/Params/SettingsParams.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { PreferenceId } from '../../Preferences/PreferenceId'
|
||||
|
||||
export type SettingsParams = {
|
||||
panel: PreferenceId
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import { Uuid } from '@standardnotes/common'
|
||||
|
||||
export type SubscriptionInviteParams = {
|
||||
inviteUuid: Uuid
|
||||
}
|
||||
Reference in New Issue
Block a user