heartraite 1.0.89 → 1.0.90

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.
@@ -1,3 +1,7 @@
1
1
  export declare enum IAPProductIdentifier {
2
2
  UNLOCK_SA = "unlock_sa"
3
3
  }
4
+ export declare enum Entitlement {
5
+ PREMIUM = "Premium",
6
+ UNLOCK_SA = "Self Awareness"
7
+ }
@@ -1,7 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IAPProductIdentifier = void 0;
3
+ exports.Entitlement = exports.IAPProductIdentifier = void 0;
4
4
  var IAPProductIdentifier;
5
5
  (function (IAPProductIdentifier) {
6
6
  IAPProductIdentifier["UNLOCK_SA"] = "unlock_sa";
7
7
  })(IAPProductIdentifier || (exports.IAPProductIdentifier = IAPProductIdentifier = {}));
8
+ var Entitlement;
9
+ (function (Entitlement) {
10
+ Entitlement["PREMIUM"] = "Premium";
11
+ Entitlement["UNLOCK_SA"] = "Self Awareness";
12
+ })(Entitlement || (exports.Entitlement = Entitlement = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +1,8 @@
1
1
  export enum IAPProductIdentifier {
2
2
  UNLOCK_SA = "unlock_sa",
3
3
  }
4
+
5
+ export enum Entitlement {
6
+ PREMIUM = "Premium",
7
+ UNLOCK_SA = "Self Awareness",
8
+ }