Skip to content

Commit 9b8e414

Browse files
Renames integrationAuthentication -> integrationAuthenticationProvider
1 parent 58991fd commit 9b8e414

15 files changed

+19
-19
lines changed

src/plus/gk/utils/-webview/integrationAuthentication.utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { wrapForForcedInsecureSSL } from '@env/fetch';
33
import type { IntegrationId } from '../../../../constants.integrations';
44
import type { Container } from '../../../../container';
55
import { sequentialize } from '../../../../system/function';
6-
import type { IntegrationAuthenticationSessionDescriptor } from '../../../integrations/authentication/integrationAuthentication';
6+
import type { IntegrationAuthenticationSessionDescriptor } from '../../../integrations/authentication/integrationAuthenticationProvider';
77
import type { ProviderAuthenticationSession } from '../../../integrations/authentication/models';
88

99
export const getBuiltInIntegrationSession = sequentialize(

src/plus/integrations/authentication/azureDevOps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { Disposable, QuickInputButton } from 'vscode';
22
import { env, ThemeIcon, Uri, window } from 'vscode';
33
import { HostingIntegrationId } from '../../../constants.integrations';
44
import { base64 } from '../../../system/string';
5-
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthentication';
6-
import { LocalIntegrationAuthenticationProvider } from './integrationAuthentication';
5+
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthenticationProvider';
6+
import { LocalIntegrationAuthenticationProvider } from './integrationAuthenticationProvider';
77
import type { ProviderAuthenticationSession } from './models';
88

99
export class AzureDevOpsAuthenticationProvider extends LocalIntegrationAuthenticationProvider<HostingIntegrationId.AzureDevOps> {

src/plus/integrations/authentication/bitbucket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { Disposable, QuickInputButton } from 'vscode';
22
import { env, ThemeIcon, Uri, window } from 'vscode';
33
import { HostingIntegrationId } from '../../../constants.integrations';
44
import { base64 } from '../../../system/string';
5-
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthentication';
6-
import { LocalIntegrationAuthenticationProvider } from './integrationAuthentication';
5+
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthenticationProvider';
6+
import { LocalIntegrationAuthenticationProvider } from './integrationAuthenticationProvider';
77
import type { ProviderAuthenticationSession } from './models';
88

99
export class BitbucketAuthenticationProvider extends LocalIntegrationAuthenticationProvider<HostingIntegrationId.Bitbucket> {

src/plus/integrations/authentication/github.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { wrapForForcedInsecureSSL } from '@env/fetch';
44
import { HostingIntegrationId, SelfHostedIntegrationId } from '../../../constants.integrations';
55
import type { Sources } from '../../../constants.telemetry';
66
import type { Container } from '../../../container';
7-
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthentication';
7+
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthenticationProvider';
88
import {
99
CloudIntegrationAuthenticationProvider,
1010
LocalIntegrationAuthenticationProvider,
11-
} from './integrationAuthentication';
11+
} from './integrationAuthenticationProvider';
1212
import type { IntegrationAuthenticationService } from './integrationAuthenticationService';
1313
import type { ProviderAuthenticationSession } from './models';
1414

src/plus/integrations/authentication/gitlab.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import type { Disposable, QuickInputButton } from 'vscode';
22
import { env, ThemeIcon, Uri, window } from 'vscode';
33
import { HostingIntegrationId, SelfHostedIntegrationId } from '../../../constants.integrations';
44
import type { Container } from '../../../container';
5-
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthentication';
5+
import type { IntegrationAuthenticationSessionDescriptor } from './integrationAuthenticationProvider';
66
import {
77
CloudIntegrationAuthenticationProvider,
88
LocalIntegrationAuthenticationProvider,
9-
} from './integrationAuthentication';
9+
} from './integrationAuthenticationProvider';
1010
import type { IntegrationAuthenticationService } from './integrationAuthenticationService';
1111
import type { ProviderAuthenticationSession } from './models';
1212

src/plus/integrations/authentication/integrationAuthenticationService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import type { Container } from '../../../container';
66
import { gate } from '../../../system/decorators/-webview/gate';
77
import { log } from '../../../system/decorators/log';
88
import { supportedIntegrationIds } from '../providers/models';
9-
import type { IntegrationAuthenticationProvider } from './integrationAuthentication';
10-
import { BuiltInAuthenticationProvider } from './integrationAuthentication';
9+
import type { IntegrationAuthenticationProvider } from './integrationAuthenticationProvider';
10+
import { BuiltInAuthenticationProvider } from './integrationAuthenticationProvider';
1111
import type { ConfiguredIntegrationDescriptor } from './models';
1212
import { isSupportedCloudIntegrationId } from './models';
1313

src/plus/integrations/authentication/jira.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { IssueIntegrationId } from '../../../constants.integrations';
2-
import { CloudIntegrationAuthenticationProvider } from './integrationAuthentication';
2+
import { CloudIntegrationAuthenticationProvider } from './integrationAuthenticationProvider';
33

44
export class JiraAuthenticationProvider extends CloudIntegrationAuthenticationProvider<IssueIntegrationId.Jira> {
55
protected override get authProviderId(): IssueIntegrationId.Jira {

src/plus/integrations/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import { isSubscriptionStatePaidOrTrial } from '../gk/utils/subscription.utils';
3636
import type {
3737
IntegrationAuthenticationProviderDescriptor,
3838
IntegrationAuthenticationSessionDescriptor,
39-
} from './authentication/integrationAuthentication';
39+
} from './authentication/integrationAuthenticationProvider';
4040
import type { IntegrationAuthenticationService } from './authentication/integrationAuthenticationService';
4141
import type { ProviderAuthenticationSession } from './authentication/models';
4242
import type {

src/plus/integrations/providers/azureDevOps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type {
1313
} from '../../../git/models/pullRequest';
1414
import type { RepositoryMetadata } from '../../../git/models/repositoryMetadata';
1515
import { Logger } from '../../../system/logger';
16-
import type { IntegrationAuthenticationProviderDescriptor } from '../authentication/integrationAuthentication';
16+
import type { IntegrationAuthenticationProviderDescriptor } from '../authentication/integrationAuthenticationProvider';
1717
import type { ResourceDescriptor } from '../integration';
1818
import { HostingIntegration } from '../integration';
1919
import type { ProviderRepository } from './models';

0 commit comments

Comments
 (0)