Merge pull request #11219 from Budibase/fix-qa-core-types

Allow authtype undefined by default
This commit is contained in:
Adria Navarro 2023-07-13 10:24:22 +01:00 committed by GitHub
commit aaa2d7b264
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ interface NTLMMSSQLConfig extends BasicMSSQLConfig {
}
type MSSQLConfig =
| (BasicMSSQLConfig & { authType: undefined })
| (BasicMSSQLConfig & { authType?: undefined })
| AzureADMSSQLConfig
| NTLMMSSQLConfig