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