@malloy-publisher/sdk 0.0.129 → 0.0.131
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.
- package/dist/client/api.d.ts +12 -0
- package/dist/index.cjs.js +73 -73
- package/dist/index.es.js +2747 -2739
- package/package.json +1 -1
- package/src/components/Connections/common.ts +10 -0
- package/src/components/Model/Model.tsx +8 -10
package/dist/client/api.d.ts
CHANGED
|
@@ -862,6 +862,18 @@ export interface SnowflakeConnection {
|
|
|
862
862
|
* @memberof SnowflakeConnection
|
|
863
863
|
*/
|
|
864
864
|
'password'?: string;
|
|
865
|
+
/**
|
|
866
|
+
* Snowflake private key for authentication
|
|
867
|
+
* @type {string}
|
|
868
|
+
* @memberof SnowflakeConnection
|
|
869
|
+
*/
|
|
870
|
+
'privateKey'?: string;
|
|
871
|
+
/**
|
|
872
|
+
* Passphrase for the Snowflake private key
|
|
873
|
+
* @type {string}
|
|
874
|
+
* @memberof SnowflakeConnection
|
|
875
|
+
*/
|
|
876
|
+
'privateKeyPass'?: string;
|
|
865
877
|
/**
|
|
866
878
|
* Snowflake warehouse name
|
|
867
879
|
* @type {string}
|