@@ -19,7 +19,6 @@ export type IntegrationAuthenticationKeys =
19
19
export const enum SyncedStorageKeys {
20
20
Version = 'gitlens:synced:version' ,
21
21
PreReleaseVersion = 'gitlens:synced:preVersion' ,
22
- HomeViewWelcomeVisible = 'gitlens:views:welcome:visible' ,
23
22
}
24
23
25
24
export type DeprecatedGlobalStorage = {
@@ -36,6 +35,8 @@ export type DeprecatedGlobalStorage = {
36
35
/** @deprecated */
37
36
'home:banners:dismissed' : string [ ] ;
38
37
/** @deprecated */
38
+ pendingWelcomeOnFocus : boolean ;
39
+ /** @deprecated */
39
40
'plus:discountNotificationShown' : boolean ;
40
41
/** @deprecated */
41
42
'plus:migratedAuthentication' : boolean ;
@@ -45,6 +46,8 @@ export type DeprecatedGlobalStorage = {
45
46
'views:layout' : 'gitlens' | 'scm' ;
46
47
/** @deprecated */
47
48
'views:commitDetails:dismissed' : 'sidebar' [ ] ;
49
+ /** @deprecated */
50
+ 'views:welcome:visible' : boolean ;
48
51
} & {
49
52
/** @deprecated */
50
53
[ key in `disallow:connection:${string } `] : any ;
@@ -54,7 +57,6 @@ export type GlobalStorage = {
54
57
avatars : [ string , StoredAvatar ] [ ] ;
55
58
repoVisibility : [ string , StoredRepoVisibilityInfo ] [ ] ;
56
59
'deepLinks:pending' : StoredDeepLinkContext ;
57
- pendingWelcomeOnFocus : boolean ;
58
60
pendingWhatsNewOnFocus : boolean ;
59
61
// Don't change this key name ('premium`) as its the stored subscription
60
62
'premium:subscription' : Stored < Subscription & { lastValidatedAt : number | undefined } > ;
@@ -65,7 +67,6 @@ export type GlobalStorage = {
65
67
version : string ;
66
68
// Keep the pre-release version separate from the released version
67
69
preVersion : string ;
68
- 'views:welcome:visible' : boolean ;
69
70
'confirm:draft:storage' : boolean ;
70
71
'home:sections:collapsed' : string [ ] ;
71
72
'home:walkthrough:dismissed' : boolean ;
0 commit comments