@vizzly/api-client 0.0.67 → 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
- create_aws_infra_action: DataOptimiser.ActionStatus<{}>;
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
- ingest_to_s3: DataOptimiser.ActionStatus<{
157
+ ingest_to_storage: DataOptimiser.ActionStatus<{
154
158
  s3Bucket: {
155
159
  path: string;
156
160
  bucket: string;
157
161
  };
158
162
  }>;
159
- ingest_s3_storage_to_snowflake: DataOptimiser.ActionStatus<{
163
+ ingest_storage_to_snowflake: DataOptimiser.ActionStatus<{
160
164
  destinationAddress: string[];
161
165
  destinationFields: DataOptimiser.DataSourceFields;
162
166
  }>;
package/dist/types.d.ts CHANGED
@@ -541,13 +541,13 @@ export declare namespace DataOptimiser {
541
541
  };
542
542
  type IngestExecuteResponse = ExecuteResponse<{
543
543
  setup_export_data_integration: DataOptimiser.ActionResult<{}>;
544
- ingest_to_s3: DataOptimiser.ActionResult<{
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
- ingest_s3_storage_to_snowflake: DataOptimiser.ActionResult<{
550
+ ingest_storage_to_snowflake: DataOptimiser.ActionResult<{
551
551
  destinationAddress: string[];
552
552
  executedInSnowflakeSessionId: string;
553
553
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizzly/api-client",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "private": false,
5
5
  "license": "NONE",
6
6
  "source": "src/index.ts",