@becollective/utils 2.0.7 → 2.0.8
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,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.subscriptions = void 0;
|
|
3
|
+
exports.subscriptions = exports.tierValues = void 0;
|
|
4
|
+
exports.tierValues = {
|
|
5
|
+
none: 0, // none of the below tiers
|
|
6
|
+
standard: 1,
|
|
7
|
+
plus: 2,
|
|
8
|
+
pro: 3,
|
|
9
|
+
};
|
|
4
10
|
exports.subscriptions = {
|
|
5
|
-
tierValues:
|
|
6
|
-
none: 0, // none of the below tiers
|
|
7
|
-
standard: 1,
|
|
8
|
-
plus: 2,
|
|
9
|
-
pro: 3,
|
|
10
|
-
},
|
|
11
|
+
tierValues: exports.tierValues,
|
|
11
12
|
};
|
|
12
13
|
exports.default = exports.subscriptions;
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
export const tierValues = {
|
|
2
|
+
none: 0, // none of the below tiers
|
|
3
|
+
standard: 1,
|
|
4
|
+
plus: 2,
|
|
5
|
+
pro: 3,
|
|
6
|
+
};
|
|
7
|
+
|
|
1
8
|
export const subscriptions = {
|
|
2
|
-
tierValues
|
|
3
|
-
none: 0, // none of the below tiers
|
|
4
|
-
standard: 1,
|
|
5
|
-
plus: 2,
|
|
6
|
-
pro: 3,
|
|
7
|
-
},
|
|
9
|
+
tierValues,
|
|
8
10
|
};
|
|
9
11
|
|
|
10
12
|
export default subscriptions;
|