@vizzly/api-client 0.0.63 → 0.0.65
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.
|
@@ -140,9 +140,11 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
140
140
|
toBucket: string;
|
|
141
141
|
toPath: string;
|
|
142
142
|
fromSnowflakeTableAddress: string[];
|
|
143
|
+
executedInSnowflakeSessionId: string;
|
|
143
144
|
}>;
|
|
144
145
|
ingest_s3_storage_to_snowflake: DataOptimiser.ActionResult<{
|
|
145
146
|
destinationAddress: string[];
|
|
147
|
+
executedInSnowflakeSessionId: string;
|
|
146
148
|
}>;
|
|
147
149
|
}>>>;
|
|
148
150
|
/** Get the status of a call to ingest data for a data source. */
|
|
@@ -181,7 +183,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
181
183
|
primaryDateFieldId?: string | undefined;
|
|
182
184
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
183
185
|
create_snapshot: DataOptimiser.ActionStatus<{
|
|
184
|
-
|
|
186
|
+
executedInSnowflakeSessionId: string;
|
|
185
187
|
}>;
|
|
186
188
|
}>>>;
|
|
187
189
|
/** Send request to create a snapshot */
|
|
@@ -205,6 +207,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
205
207
|
snapshotDataSourceId: string;
|
|
206
208
|
subsnapDataSourceId: string;
|
|
207
209
|
snapshotFields: DataOptimiser.DataSourceFields;
|
|
210
|
+
internalCompanyConnection: DataOptimiser.QueryEngineConnection;
|
|
208
211
|
}>): Promise<import("../types").Response<DataOptimiser.ExecuteResponse<{
|
|
209
212
|
create_subsnap: DataOptimiser.ActionResult<{
|
|
210
213
|
subsnapFields: DataOptimiser.DataSourceFields;
|
|
@@ -216,6 +219,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
216
219
|
snapshotDataSourceId: string;
|
|
217
220
|
subsnapDataSourceId: string;
|
|
218
221
|
snapshotFields: DataOptimiser.DataSourceFields;
|
|
222
|
+
internalCompanyConnection: DataOptimiser.QueryEngineConnection;
|
|
219
223
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
220
224
|
create_subsnap: DataOptimiser.ActionStatus<{
|
|
221
225
|
subsnapDataSourceFields: DataOptimiser.DataSourceFields;
|
|
@@ -545,6 +545,7 @@ class VizzlyQueryEngineApi extends Api_1.Api {
|
|
|
545
545
|
snapshotDataSourceId: params.snapshotDataSourceId,
|
|
546
546
|
subsnapDataSourceId: params.subsnapDataSourceId,
|
|
547
547
|
snapshotFields: params.snapshotFields,
|
|
548
|
+
internalCompanyConnection: params.internalCompanyConnection
|
|
548
549
|
},
|
|
549
550
|
acceptedAuthParams: ['queryEngineApiKey'],
|
|
550
551
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -527,15 +527,13 @@ export declare namespace DataOptimiser {
|
|
|
527
527
|
};
|
|
528
528
|
status: Status;
|
|
529
529
|
};
|
|
530
|
-
type ExecuteResponse<
|
|
530
|
+
type ExecuteResponse<WorkflowResult extends {
|
|
531
531
|
[actionId: string]: {
|
|
532
532
|
status: ActionResultStatus;
|
|
533
533
|
content: any;
|
|
534
534
|
};
|
|
535
535
|
}> = {
|
|
536
|
-
actionResults:
|
|
537
|
-
[actionId: string]: ActionResult;
|
|
538
|
-
};
|
|
536
|
+
actionResults: WorkflowResult;
|
|
539
537
|
};
|
|
540
538
|
type QueryEngineConnection = {
|
|
541
539
|
encryptedCredentials: string;
|