File tree Expand file tree Collapse file tree 5 files changed +8
-1
lines changed
Expand file tree Collapse file tree 5 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,6 @@ export const VSLS_REQUEST_NAME = 'git';
99export const VSLS_GIT_PR_SESSION_NAME = 'ghpr' ;
1010
1111export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize' ;
12+
1213export const VSLS_STATE_CHANGE_NOTIFY_NAME = 'statechange' ;
1314export const FOCUS_REVIEW_MODE = 'github:focusedReview' ;
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
1111 IExperimentationService ,
1212 IExperimentationTelemetry ,
1313 TargetPopulation ,
14+
1415} from 'vscode-tas-client' ;
1516
1617/* __GDPR__
@@ -20,6 +21,7 @@ import {
2021 }
2122*/
2223
24+
2325export class ExperimentationTelemetry implements IExperimentationTelemetry {
2426 private sharedProperties : Record < string , string > = { } ;
2527
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { GitApiImpl } from './api/api1';
1313import { registerCommands } from './commands' ;
1414import Logger from './common/logger' ;
1515import * as PersistentState from './common/persistentState' ;
16+
1617import { Resource } from './common/resources' ;
1718import { SessionState } from './common/sessionState' ;
1819import { FILE_LIST_LAYOUT } from './common/settingKeys' ;
Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ export const REPO_KEYS = 'github.pullRequest.repos';
1414
1515export interface RepoState {
1616 mentionableUsers ?: IAccount [ ] ;
17+
1718 stateModifiedTime ?: number ;
18-
19+
1920}
2021
2122export interface ReposState {
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ interface Repository {
1313 readonly description : string | null ;
1414 readonly clone_url : string ;
1515 readonly ssh_url : string ;
16+
1617}
1718
1819function repoResponseAsRemoteSource ( raw : OctokitCommon . SearchReposResponseItem ) : RemoteSource {
@@ -21,6 +22,7 @@ function repoResponseAsRemoteSource(raw: OctokitCommon.SearchReposResponseItem):
2122 description : raw . description || undefined ,
2223 url : raw . url ,
2324 } ;
25+
2426}
2527
2628function asRemoteSource ( raw : Repository ) : RemoteSource {
You can’t perform that action at this time.
0 commit comments