@lightdash/common 0.1351.0 → 0.1352.0

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.
@@ -211,6 +211,7 @@ const convertTable = (adapterType, model, dbtMetrics, startOfWeek) => {
211
211
  label: dim.label,
212
212
  groups: dim.groups,
213
213
  sql: dim.sql,
214
+ description: dim.description,
214
215
  },
215
216
  },
216
217
  }
@@ -75,10 +75,25 @@ export type CatalogFieldMap = {
75
75
  cachedExploreUuid: string;
76
76
  };
77
77
  };
78
+ export type CatalogItemWithTagUuids = {
79
+ catalogSearchUuid: string;
80
+ cachedExploreUuid: string;
81
+ projectUuid: string;
82
+ name: string;
83
+ type: CatalogType;
84
+ fieldType?: string;
85
+ exploreBaseTable: string;
86
+ catalogTags: {
87
+ tagUuid: string;
88
+ createdByUserUuid: string | null;
89
+ createdAt: Date;
90
+ }[];
91
+ };
78
92
  export type SchedulerIndexCatalogJobPayload = {
79
93
  projectUuid: string;
80
94
  explores: (Explore | ExploreError)[];
81
95
  userUuid: string;
96
+ prevCatalogItemsWithTags: CatalogItemWithTagUuids[];
82
97
  };
83
98
  export type CatalogFieldWhere = {
84
99
  fieldName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightdash/common",
3
- "version": "0.1351.0",
3
+ "version": "0.1352.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [