@trackunit/react-core-contexts-api 0.2.105 → 0.2.107

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.
package/index.cjs.js CHANGED
@@ -185,6 +185,12 @@ const UserSubscriptionPackage = {
185
185
  INSIGHT: "INSIGHT",
186
186
  VIEW: "VIEW",
187
187
  NONE: "NONE",
188
+ EXPLORE: "Explore",
189
+ EVOLVE: "Evolve",
190
+ EXPAND: "Expand",
191
+ LINK: "Link",
192
+ LIFT: "Lift",
193
+ LEAP: "Leap",
188
194
  };
189
195
 
190
196
  exports.SystemOfMeasurement = SystemOfMeasurement;
package/index.esm.js CHANGED
@@ -181,6 +181,12 @@ const UserSubscriptionPackage = {
181
181
  INSIGHT: "INSIGHT",
182
182
  VIEW: "VIEW",
183
183
  NONE: "NONE",
184
+ EXPLORE: "Explore",
185
+ EVOLVE: "Evolve",
186
+ EXPAND: "Expand",
187
+ LINK: "Link",
188
+ LIFT: "Lift",
189
+ LEAP: "Leap",
184
190
  };
185
191
 
186
192
  export { AssetSortByProperty, SiteSortByProperty, SortOrder, SystemOfMeasurement, TimeZonePreference, UserSubscriptionPackage, assetHomePageIds, createEvent, isIrisOptions, siteHomePageIds, validateStringAsAssetSortByProperty, validateStringAsSiteSortByProperty };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-contexts-api",
3
- "version": "0.2.105",
3
+ "version": "0.2.107",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -27,6 +27,7 @@ export interface IEnvironmentContext {
27
27
  environment: string;
28
28
  sentryDsn: string;
29
29
  sessionId: string;
30
+ uptimeId: string;
30
31
  trackunitRestApiUrl: string;
31
32
  hubspotRequestAppAccessFormId: string;
32
33
  }
@@ -31,6 +31,12 @@ export declare const UserSubscriptionPackage: {
31
31
  readonly INSIGHT: "INSIGHT";
32
32
  readonly VIEW: "VIEW";
33
33
  readonly NONE: "NONE";
34
+ readonly EXPLORE: "Explore";
35
+ readonly EVOLVE: "Evolve";
36
+ readonly EXPAND: "Expand";
37
+ readonly LINK: "Link";
38
+ readonly LIFT: "Lift";
39
+ readonly LEAP: "Leap";
34
40
  };
35
41
  export type UserSubscriptionPackageType = keyof typeof UserSubscriptionPackage;
36
42
  export interface IFeature {