@lightdash/common 0.1346.0 → 0.1347.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/catalog.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/catalog.d.ts
CHANGED
@@ -19,9 +19,10 @@ export type CatalogSelection = {
|
|
19
19
|
field?: string;
|
20
20
|
};
|
21
21
|
export type ApiCatalogSearch = {
|
22
|
-
|
22
|
+
searchQuery?: string;
|
23
23
|
type?: CatalogType;
|
24
24
|
filter?: CatalogFilter;
|
25
|
+
catalogTags?: string[];
|
25
26
|
};
|
26
27
|
export type CatalogField = Pick<Field, 'name' | 'label' | 'fieldType' | 'tableLabel' | 'description'> & Pick<Dimension, 'requiredAttributes'> & {
|
27
28
|
catalogSearchUuid: string;
|