@lightdash/common 0.1352.5 → 0.1352.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/catalog.d.ts +2 -2
- package/dist/types/filter.js +0 -1
- package/package.json +1 -1
package/dist/types/catalog.d.ts
CHANGED
@@ -31,7 +31,7 @@ export type CatalogField = Pick<Field, 'name' | 'label' | 'fieldType' | 'tableLa
|
|
31
31
|
tableName: string;
|
32
32
|
tableGroupLabel?: string;
|
33
33
|
tags?: string[];
|
34
|
-
|
34
|
+
categories: Pick<Tag, 'name' | 'color' | 'tagUuid'>[];
|
35
35
|
chartUsage: number | undefined;
|
36
36
|
};
|
37
37
|
export type CatalogTable = Pick<TableBase, 'name' | 'label' | 'groupLabel' | 'description' | 'requiredAttributes'> & {
|
@@ -40,7 +40,7 @@ export type CatalogTable = Pick<TableBase, 'name' | 'label' | 'groupLabel' | 'de
|
|
40
40
|
type: CatalogType.Table;
|
41
41
|
groupLabel?: string;
|
42
42
|
tags?: string[];
|
43
|
-
|
43
|
+
categories: Pick<Tag, 'name' | 'color' | 'tagUuid'>[];
|
44
44
|
joinedTables?: CompiledExploreJoin[];
|
45
45
|
chartUsage: number | undefined;
|
46
46
|
};
|
package/dist/types/filter.js
CHANGED