Skip to content

Commit d011224

Browse files
committed
join password and null auth method type
1 parent d7248c2 commit d011224

File tree

1 file changed

+1
-6
lines changed
  • src/webviews/webview-side/integrations

1 file changed

+1
-6
lines changed

src/webviews/webview-side/integrations/types.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,7 @@ interface BaseSnowflakeConfig extends BaseIntegrationConfig {
5151
export type SnowflakeIntegrationConfig = BaseSnowflakeConfig &
5252
(
5353
| {
54-
authMethod: null;
55-
username: string;
56-
password: string;
57-
}
58-
| {
59-
authMethod: typeof SnowflakeAuthMethods.PASSWORD;
54+
authMethod: typeof SnowflakeAuthMethods.PASSWORD | null;
6055
username: string;
6156
password: string;
6257
}

0 commit comments

Comments
 (0)