@lightdash/cli 0.1685.0 → 0.1686.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -103,7 +103,9 @@ const convertSnowflakeSchema = async (target) => {
103
103
  password: target.password,
104
104
  privateKey,
105
105
  privateKeyPass: target.private_key_passphrase,
106
- authenticationType: privateKey ? 'private_key' : 'password',
106
+ authenticationType: privateKey
107
+ ? common_1.SnowflakeAuthenticationType.PRIVATE_KEY
108
+ : common_1.SnowflakeAuthenticationType.PASSWORD,
107
109
  role: target.role,
108
110
  warehouse: target.warehouse,
109
111
  database: target.database,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightdash/cli",
3
- "version": "0.1685.0",
3
+ "version": "0.1686.0",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "lightdash": "dist/index.js"
@@ -30,8 +30,8 @@
30
30
  "parse-node-version": "^2.0.0",
31
31
  "unique-names-generator": "^4.7.1",
32
32
  "uuid": "^11.0.3",
33
- "@lightdash/common": "0.1685.0",
34
- "@lightdash/warehouses": "0.1685.0"
33
+ "@lightdash/common": "0.1686.0",
34
+ "@lightdash/warehouses": "0.1686.0"
35
35
  },
36
36
  "description": "Lightdash CLI tool",
37
37
  "devDependencies": {