@vizzly/api-client 0.0.73 → 0.0.74

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.
@@ -232,6 +232,7 @@ export declare class VizzlyQueryEngineApi extends Api {
232
232
  }>>>;
233
233
  private buildCreateSubsnapRequest;
234
234
  ingestFromUpload(params: RequestParams<{
235
+ companyId: string;
235
236
  dataSourceId: string;
236
237
  ingestFields: DataOptimiser.EphemeralDataSourceFields;
237
238
  transformations: Array<{
@@ -241,6 +242,7 @@ export declare class VizzlyQueryEngineApi extends Api {
241
242
  previousWorkflowResults: Partial<DataOptimiser.IngestFromUploadExecuteResponse['workflowResults']>;
242
243
  }>): Promise<import("../types").Response<DataOptimiser.IngestFromUploadExecuteResponse>>;
243
244
  getIngestFromUploadStatus(params: RequestParams<{
245
+ companyId: string;
244
246
  dataSourceId: string;
245
247
  ingestFields: DataOptimiser.EphemeralDataSourceFields;
246
248
  transformations: Array<{
@@ -257,6 +259,7 @@ export declare class VizzlyQueryEngineApi extends Api {
257
259
  private buildIngestFromUploadRequest;
258
260
  /** Send request to create upload table */
259
261
  createUploadTable(params: RequestParams<{
262
+ companyId: string;
260
263
  dataSourceId: string;
261
264
  locationName: string;
262
265
  folderPath: string;
@@ -265,6 +268,7 @@ export declare class VizzlyQueryEngineApi extends Api {
265
268
  }>): Promise<import("../types").Response<DataOptimiser.CreateUploadTableExecuteResponse>>;
266
269
  /** Get the status of a create upload table call */
267
270
  getCreateUploadTableStatus(params: RequestParams<{
271
+ companyId: string;
268
272
  dataSourceId: string;
269
273
  locationName: string;
270
274
  folderPath: string;
@@ -604,6 +604,7 @@ class VizzlyQueryEngineApi extends Api_1.Api {
604
604
  method: 'post',
605
605
  abortSignal: params.abortSignal,
606
606
  body: {
607
+ company: { id: params.companyId },
607
608
  dataSourceId: params.dataSourceId,
608
609
  ingestFields: params.ingestFields,
609
610
  transformations: params.transformations,
@@ -631,6 +632,7 @@ class VizzlyQueryEngineApi extends Api_1.Api {
631
632
  method: 'post',
632
633
  abortSignal: params.abortSignal,
633
634
  body: {
635
+ company: { id: params.companyId },
634
636
  dataSourceId: params.dataSourceId,
635
637
  locationName: params.locationName,
636
638
  folderPath: params.folderPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizzly/api-client",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "private": false,
5
5
  "license": "NONE",
6
6
  "source": "src/index.ts",