@lightdash/common 0.1460.0 → 0.1460.1

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -292,7 +292,7 @@ export type UpdateMetadata = {
292
292
  };
293
293
  export type ApiCompiledQueryResults = string;
294
294
  export type ApiExploresResults = SummaryExplore[];
295
- export type ApiExploreResults = Explore;
295
+ export type ApiExploreResults = Omit<Explore, 'unfilteredTables'>;
296
296
  export type ApiStatusResults = 'loading' | 'ready' | 'error';
297
297
  export type ApiRefreshResults = {
298
298
  jobUuid: string;
@@ -35,6 +35,9 @@ export type Explore = {
35
35
  tables: {
36
36
  [tableName: string]: CompiledTable;
37
37
  };
38
+ unfilteredTables?: {
39
+ [tableName: string]: CompiledTable;
40
+ };
38
41
  targetDatabase: SupportedDbtAdapter;
39
42
  warehouse?: string;
40
43
  ymlPath?: string;
@@ -43,6 +43,9 @@ export declare const replaceDimensionInExplore: (explore: Explore, dimension: Co
43
43
  groupLabel?: string | undefined;
44
44
  baseTable: string;
45
45
  joinedTables: import("../types/explore").CompiledExploreJoin[];
46
+ unfilteredTables?: {
47
+ [tableName: string]: import("../types/explore").CompiledTable;
48
+ } | undefined;
46
49
  targetDatabase: import("..").SupportedDbtAdapter;
47
50
  warehouse?: string | undefined;
48
51
  ymlPath?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightdash/common",
3
- "version": "0.1460.0",
3
+ "version": "0.1460.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [