@vizzly/api-client 0.0.97 → 0.0.98
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.
|
@@ -114,6 +114,10 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
114
114
|
* */
|
|
115
115
|
createCompanyInfrastructure(params: RequestParams<{
|
|
116
116
|
companyId: string;
|
|
117
|
+
externalConnection?: {
|
|
118
|
+
account: string;
|
|
119
|
+
databases: string[];
|
|
120
|
+
};
|
|
117
121
|
}>): Promise<import("../types").Response<{
|
|
118
122
|
aws?: {
|
|
119
123
|
bucket: string;
|
|
@@ -131,6 +135,14 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
131
135
|
warehouse: string;
|
|
132
136
|
username: string;
|
|
133
137
|
};
|
|
138
|
+
externalConnection?: {
|
|
139
|
+
account: string;
|
|
140
|
+
privateKey: string;
|
|
141
|
+
databases: string[];
|
|
142
|
+
role: string;
|
|
143
|
+
warehouse: string;
|
|
144
|
+
username: string;
|
|
145
|
+
} | undefined;
|
|
134
146
|
}>>;
|
|
135
147
|
/** Get the status of a create company infrastructure call */
|
|
136
148
|
getCreateCompanyInfrastructureStatus(params: RequestParams<{
|