@vizzly/api-client 0.0.98 → 0.0.100
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.
|
@@ -115,6 +115,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
115
115
|
createCompanyInfrastructure(params: RequestParams<{
|
|
116
116
|
companyId: string;
|
|
117
117
|
externalConnection?: {
|
|
118
|
+
clientName: string;
|
|
118
119
|
account: string;
|
|
119
120
|
databases: string[];
|
|
120
121
|
};
|
|
@@ -244,6 +245,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
244
245
|
primaryDateFieldId?: string | undefined;
|
|
245
246
|
previousWorkflowResults: Partial<DataOptimiser.CreateSnapshotExecuteResponse['workflowResults']>;
|
|
246
247
|
warehouseOverrideMapping?: DataOptimiser.WarehouseOverrideMapping;
|
|
248
|
+
optOutOfPreAggregation?: boolean;
|
|
247
249
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
248
250
|
create_snapshot: DataOptimiser.ActionStatus<{
|
|
249
251
|
snapshotDataSourceFields: DataOptimiser.DataSourceFields;
|
|
@@ -260,6 +262,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
260
262
|
primaryDateFieldId?: string | undefined;
|
|
261
263
|
previousWorkflowResults: Partial<DataOptimiser.CreateSnapshotExecuteResponse['workflowResults']>;
|
|
262
264
|
warehouseOverrideMapping?: DataOptimiser.WarehouseOverrideMapping;
|
|
265
|
+
optOutOfPreAggregation?: boolean;
|
|
263
266
|
}>): Promise<import("../types").Response<DataOptimiser.CreateSnapshotExecuteResponse>>;
|
|
264
267
|
private buildCreateSnapshotRequest;
|
|
265
268
|
createSubsnap(params: RequestParams<{
|
|
@@ -629,6 +629,7 @@ class VizzlyQueryEngineApi extends Api_1.Api {
|
|
|
629
629
|
internalCompanyConnection: params.internalCompanyConnection,
|
|
630
630
|
previousWorkflowResults: params.previousWorkflowResults,
|
|
631
631
|
warehouseOverrideMapping: params.warehouseOverrideMapping || {},
|
|
632
|
+
optOutOfPreAggregation: params.optOutOfPreAggregation,
|
|
632
633
|
},
|
|
633
634
|
acceptedAuthParams: ['queryEngineApiKey'],
|
|
634
635
|
};
|