@@ -34,9 +34,12 @@ type InternalGraphWebviewCommands =
3434 | 'gitlens.graph.abortPausedOperation'
3535 | 'gitlens.graph.continuePausedOperation'
3636 | 'gitlens.graph.openRebaseEditor'
37- | 'gitlens.graph.skipPausedOperation' ;
37+ | 'gitlens.graph.skipPausedOperation'
38+ | 'gitlens.visualizeHistory.repo:graph' ;
3839
3940type InternalHomeWebviewCommands =
41+ | 'gitlens.ai.explainWip:home'
42+ | 'gitlens.ai.explainBranch:home'
4043 | 'gitlens.home.changeBranchMergeTarget'
4144 | 'gitlens.home.deleteBranchOrWorktree'
4245 | 'gitlens.home.pushBranch'
@@ -50,8 +53,6 @@ type InternalHomeWebviewCommands =
5053 | 'gitlens.home.switchToBranch'
5154 | 'gitlens.home.fetch'
5255 | 'gitlens.home.openInGraph'
53- | 'gitlens.home.visualizeHistory.repo:home'
54- | 'gitlens.home.visualizeHistory.branch:home'
5556 | 'gitlens.home.createBranch'
5657 | 'gitlens.home.mergeIntoCurrent'
5758 | 'gitlens.home.rebaseCurrentOnto'
@@ -60,10 +61,10 @@ type InternalHomeWebviewCommands =
6061 | 'gitlens.home.skipPausedOperation'
6162 | 'gitlens.home.continuePausedOperation'
6263 | 'gitlens.home.abortPausedOperation'
63- | 'gitlens.ai.explainWip:home'
64- | 'gitlens.ai.explainBranch:home'
6564 | 'gitlens.home.openRebaseEditor'
66- | 'gitlens.home.enableAi' ;
65+ | 'gitlens.home.enableAi'
66+ | 'gitlens.visualizeHistory.repo:home'
67+ | 'gitlens.visualizeHistory.branch:home' ;
6768
6869type InternalHomeWebviewViewCommands =
6970 | 'gitlens.views.home.account.resync'
@@ -126,8 +127,6 @@ type InternalGlCommands =
126127 | 'gitlens.openWalkthrough'
127128 | 'gitlens.refreshHover'
128129 | 'gitlens.visualizeHistory'
129- | 'gitlens.visualizeHistory.repo:home'
130- | 'gitlens.visualizeHistory.branch:home'
131130 | InternalGraphWebviewCommands
132131 | InternalHomeWebviewCommands
133132 | InternalHomeWebviewViewCommands
@@ -201,6 +200,8 @@ type FilterCommands<Prefix extends string, U, Suffix extends string = ''> = U ex
201200 : never
202201 : never ;
203202
203+ export type PlusCommands = FilterCommands < 'gitlens.plus.' , GlCommands > ;
204+
204205export type TreeViewCommands =
205206 | FilterCommands < `gitlens.views.${TreeViewTypes } `, GlCommands >
206207 | FilterCommands < `gitlens.`, GlCommands , ':views' > ;
0 commit comments