@vizzly/api-client 0.0.66 → 0.0.68
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.
|
@@ -102,10 +102,14 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
102
102
|
createCompanyInfrastructure(params: RequestParams<{
|
|
103
103
|
companyId: string;
|
|
104
104
|
}>): Promise<import("../types").Response<{
|
|
105
|
-
aws
|
|
105
|
+
aws?: {
|
|
106
106
|
bucket: string;
|
|
107
107
|
role: string;
|
|
108
|
-
};
|
|
108
|
+
} | undefined;
|
|
109
|
+
azure?: {
|
|
110
|
+
container: string;
|
|
111
|
+
account: string;
|
|
112
|
+
} | undefined;
|
|
109
113
|
connection: {
|
|
110
114
|
account: string;
|
|
111
115
|
database: string;
|
|
@@ -120,7 +124,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
120
124
|
companyId: string;
|
|
121
125
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
122
126
|
create_database_action: DataOptimiser.ActionStatus<{}>;
|
|
123
|
-
|
|
127
|
+
create_cloud_storage_infra_action: DataOptimiser.ActionStatus<{}>;
|
|
124
128
|
}>>>;
|
|
125
129
|
private buildCreateCompanyInfrastructureRequest;
|
|
126
130
|
/** Send request to ingest data */
|
|
@@ -150,13 +154,13 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
150
154
|
previousWorkflowResults: Partial<DataOptimiser.IngestExecuteResponse['workflowResults']>;
|
|
151
155
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
152
156
|
setup_export_data_integration: DataOptimiser.ActionStatus<{}>;
|
|
153
|
-
|
|
157
|
+
ingest_to_storage: DataOptimiser.ActionStatus<{
|
|
154
158
|
s3Bucket: {
|
|
155
159
|
path: string;
|
|
156
160
|
bucket: string;
|
|
157
161
|
};
|
|
158
162
|
}>;
|
|
159
|
-
|
|
163
|
+
ingest_storage_to_snowflake: DataOptimiser.ActionStatus<{
|
|
160
164
|
destinationAddress: string[];
|
|
161
165
|
destinationFields: DataOptimiser.DataSourceFields;
|
|
162
166
|
}>;
|
|
@@ -174,7 +178,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
174
178
|
previousWorkflowResults: Partial<DataOptimiser.CreateSnapshotExecuteResponse['workflowResults']>;
|
|
175
179
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
176
180
|
create_snapshot: DataOptimiser.ActionStatus<{
|
|
177
|
-
|
|
181
|
+
snapshotDataSourceFields: DataOptimiser.DataSourceFields;
|
|
178
182
|
}>;
|
|
179
183
|
}>>>;
|
|
180
184
|
/** Send request to create a snapshot */
|
package/dist/types.d.ts
CHANGED
|
@@ -541,19 +541,20 @@ export declare namespace DataOptimiser {
|
|
|
541
541
|
};
|
|
542
542
|
type IngestExecuteResponse = ExecuteResponse<{
|
|
543
543
|
setup_export_data_integration: DataOptimiser.ActionResult<{}>;
|
|
544
|
-
|
|
544
|
+
ingest_to_storage: DataOptimiser.ActionResult<{
|
|
545
545
|
toBucket: string;
|
|
546
546
|
toPath: string;
|
|
547
547
|
fromSnowflakeTableAddress: string[];
|
|
548
548
|
executedInSnowflakeSessionId: string;
|
|
549
549
|
}>;
|
|
550
|
-
|
|
550
|
+
ingest_storage_to_snowflake: DataOptimiser.ActionResult<{
|
|
551
551
|
destinationAddress: string[];
|
|
552
552
|
executedInSnowflakeSessionId: string;
|
|
553
553
|
}>;
|
|
554
554
|
}>;
|
|
555
555
|
type CreateSnapshotExecuteResponse = DataOptimiser.ExecuteResponse<{
|
|
556
556
|
create_snapshot: DataOptimiser.ActionResult<{
|
|
557
|
+
executedInSnowflakeSessionId: string;
|
|
557
558
|
snapshotFields: DataOptimiser.DataSourceFields;
|
|
558
559
|
}>;
|
|
559
560
|
}>;
|