@vizzly/api-client 0.0.64 → 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
- snapshotDataSourceFields: DataOptimiser.DataSourceFields;
186
+ executedInSnowflakeSessionId: string;
185
187
  }>;
186
188
  }>>>;
187
189
  /** Send request to create a snapshot */
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<ActionResult extends {
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizzly/api-client",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "private": false,
5
5
  "license": "NONE",
6
6
  "source": "src/index.ts",