From fd8b40d9aa7e410fe5b00c326d117a8df54cd32c Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 2 May 2024 16:11:14 -0700 Subject: [PATCH] feat(web): callback types myKeys & linkKey --- web/store/callback.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/store/callback.ts b/web/store/callback.ts index 4844108e1..a9b092d53 100644 --- a/web/store/callback.ts +++ b/web/store/callback.ts @@ -24,7 +24,9 @@ export type Renew = 'renew'; export type Upgrade = 'upgrade'; export type UpdateOs = 'updateOs'; export type Manage = 'manage'; -export type AccountActionTypes = Troubleshoot | SignIn | SignOut | OemSignOut | Manage; +export type MyKeys = 'myKeys'; +export type LinkKey = 'linkKey'; +export type AccountActionTypes = Troubleshoot | SignIn | SignOut | OemSignOut | Manage | MyKeys | LinkKey; export type AccountKeyActionTypes = Recover | Replace | TrialExtend | TrialStart | UpdateOs; export type PurchaseActionTypes = Purchase | Redeem | Renew | Upgrade;