feat: add accepting subscription invite route type

This commit is contained in:
Karol Sójko
2022-10-21 10:05:31 +02:00
parent 30310dbb45
commit 83b484002c
15 changed files with 115 additions and 63 deletions

View File

@@ -0,0 +1,3 @@
export type DemoParams = {
token: string
}

View File

@@ -0,0 +1,3 @@
export type OnboardingParams = {
fromHomepage: boolean
}

View File

@@ -0,0 +1,4 @@
export type PurchaseParams = {
plan: string
period: string
}

View File

@@ -0,0 +1,5 @@
import { PreferenceId } from '../../Preferences/PreferenceId'
export type SettingsParams = {
panel: PreferenceId
}

View File

@@ -0,0 +1,5 @@
import { Uuid } from '@standardnotes/common'
export type SubscriptionInviteParams = {
inviteUuid: Uuid
}