@lightdash/common 0.1384.0 → 0.1385.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,5 +23,9 @@ export declare enum FeatureFlags {
|
|
23
23
|
/**
|
24
24
|
* Enable dashboard comments
|
25
25
|
*/
|
26
|
-
DashboardComments = "dashboard-comments-enabled"
|
26
|
+
DashboardComments = "dashboard-comments-enabled",
|
27
|
+
/**
|
28
|
+
* Enable metric trees
|
29
|
+
*/
|
30
|
+
MetricTrees = "metric-trees"
|
27
31
|
}
|
@@ -33,4 +33,8 @@ var FeatureFlags;
|
|
33
33
|
* Enable dashboard comments
|
34
34
|
*/
|
35
35
|
FeatureFlags["DashboardComments"] = "dashboard-comments-enabled";
|
36
|
+
/**
|
37
|
+
* Enable metric trees
|
38
|
+
*/
|
39
|
+
FeatureFlags["MetricTrees"] = "metric-trees";
|
36
40
|
})(FeatureFlags = exports.FeatureFlags || (exports.FeatureFlags = {}));
|