Updated on 2026-08-14
This commit is contained in:
parent
285bed34a4
commit
e5c441a9f0
19 changed files with 573 additions and 2 deletions
|
|
@ -509,6 +509,24 @@ sealed class AppRoute(val path: String) : Route {
|
|||
@Serializable
|
||||
data class Kyc(val userWalletId: UserWalletId) : AppRoute(path = "/kyc")
|
||||
|
||||
@Serializable
|
||||
data class VirtualAccountOnboarding(
|
||||
val mode: Mode,
|
||||
) : AppRoute(path = "/virtual_account_onboarding/$mode") {
|
||||
|
||||
@Serializable
|
||||
sealed class Mode {
|
||||
@Serializable
|
||||
data class Deeplink(val userWalletId: UserWalletId, val deeplink: String) : Mode()
|
||||
|
||||
@Serializable
|
||||
data class FromMain(val userWalletId: UserWalletId) : Mode()
|
||||
|
||||
@Serializable
|
||||
data class FromDetailsScreen(val userWalletId: UserWalletId) : Mode()
|
||||
}
|
||||
}
|
||||
|
||||
@Serializable
|
||||
data class Survey(val token: String, val displayId: String? = null) : AppRoute(path = "/survey")
|
||||
|
||||
|
|
|
|||
|
|
@ -68,6 +68,10 @@ sealed class DeepLinkRoute {
|
|||
override val host: String = "onboard-visa"
|
||||
}
|
||||
|
||||
data object OnboardVirtualAccounts : DeepLinkRoute() {
|
||||
override val host: String = "onboard-virtual-account"
|
||||
}
|
||||
|
||||
data object PayApp : DeepLinkRoute() {
|
||||
override val host: String = "tangem.com"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue