Add AuthenticationType enum to typings (#20699)

* Add AuthenticationType enum to typings

* fix

* const

* Add comments

* fix comment

* remove unused
This commit is contained in:
Charles Gagnon
2022-09-30 16:49:36 -07:00
committed by GitHub
parent d6d75d8817
commit 85dc506a3c
49 changed files with 236 additions and 164 deletions

View File

@@ -15,7 +15,7 @@ export const mockIConnectionProfile: azdata.IConnectionProfile = {
databaseName: 'My Database',
userName: 'My User',
password: 'My Pwd',
authenticationType: 'SqlLogin',
authenticationType: azdata.connection.AuthenticationType.SqlLogin,
savePassword: false,
groupFullName: 'My groupName',
groupId: 'My GroupId',
@@ -38,7 +38,7 @@ export const mockConnectionInfo = {
databaseName: 'My Database',
userName: 'My User',
password: 'My Pwd',
authenticationType: 'SqlLogin'
authenticationType: azdata.connection.AuthenticationType.SqlLogin
};
export const mockFilePath: string = 'test.dacpac';