@trackunit/react-core-contexts-api
Advanced tools
Comparing version 0.0.61 to 0.0.62
var UserSubscriptionPackageType; | ||
(function (UserSubscriptionPackageType) { | ||
UserSubscriptionPackageType["EXPAND_FLEET_OWNER"] = "Expand (Fleet Owner)"; | ||
UserSubscriptionPackageType["EVOLVE_FLEET_OWNER"] = "Evolve (Fleet Owner)"; | ||
UserSubscriptionPackageType["EXPLORE_FLEET_OWNER"] = "Explore (Fleet Owner)"; // OLD PACKAGES | ||
UserSubscriptionPackageType["Collect"] = "COLLECT"; | ||
UserSubscriptionPackageType["Insight"] = "INSIGHT"; | ||
UserSubscriptionPackageType["View"] = "VIEW"; | ||
UserSubscriptionPackageType["None"] = "NONE"; | ||
UserSubscriptionPackageType["View"] = "VIEW"; | ||
})(UserSubscriptionPackageType || (UserSubscriptionPackageType = {})); | ||
export { UserSubscriptionPackageType }; |
{ | ||
"name": "@trackunit/react-core-contexts-api", | ||
"version": "0.0.61", | ||
"version": "0.0.62", | ||
"repository": "https://github.com/Trackunit/manager", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.txt", |
@@ -10,11 +10,11 @@ export interface IUserSubscriptionContext { | ||
features: IFeature[] | null; | ||
hasCollectPackage: boolean; | ||
hasViewPackage: boolean; | ||
hasInsightPackage: boolean; | ||
} | ||
export declare enum UserSubscriptionPackageType { | ||
EXPAND_FLEET_OWNER = "Expand (Fleet Owner)", | ||
EVOLVE_FLEET_OWNER = "Evolve (Fleet Owner)", | ||
EXPLORE_FLEET_OWNER = "Explore (Fleet Owner)", | ||
Collect = "COLLECT", | ||
Insight = "INSIGHT", | ||
None = "NONE", | ||
View = "VIEW" | ||
View = "VIEW", | ||
None = "NONE" | ||
} | ||
@@ -21,0 +21,0 @@ export interface IFeature { |
5850
144