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