@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 +1 -1
- package/dist/types/explore.d.ts +3 -0
- package/dist/utils/item.d.ts +3 -0
- package/package.json +1 -1
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;
|
package/dist/types/explore.d.ts
CHANGED
package/dist/utils/item.d.ts
CHANGED
@@ -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;
|