@trackunit/react-core-contexts-api 0.2.3 → 0.2.4
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.js +2 -6
- package/package.json +2 -2
- /package/{assetSortingContext.d.ts → src/assetSortingContext.d.ts} +0 -0
- /package/{currentUserContext.d.ts → src/currentUserContext.d.ts} +0 -0
- /package/{developerSettingsContext.d.ts → src/developerSettingsContext.d.ts} +0 -0
- /package/{environmentContext.d.ts → src/environmentContext.d.ts} +0 -0
- /package/{globalSelectionContext.d.ts → src/globalSelectionContext.d.ts} +0 -0
- /package/{index.d.ts → src/index.d.ts} +0 -0
- /package/{test → src/test}/config/jest.setup.d.ts +0 -0
- /package/{toastContext.d.ts → src/toastContext.d.ts} +0 -0
- /package/{tokenContext.d.ts → src/tokenContext.d.ts} +0 -0
- /package/{userSubscriptionContext.d.ts → src/userSubscriptionContext.d.ts} +0 -0
package/index.js
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
var AssetSortByProperty;
|
2
|
-
|
3
2
|
(function (AssetSortByProperty) {
|
4
3
|
AssetSortByProperty["Activity"] = "ACTIVITY";
|
5
4
|
AssetSortByProperty["Brand"] = "BRAND";
|
@@ -19,24 +18,21 @@ var AssetSortByProperty;
|
|
19
18
|
AssetSortByProperty["TelematicsDeviceSerialNumber"] = "TELEMATICS_DEVICE_SERIAL_NUMBER";
|
20
19
|
AssetSortByProperty["Type"] = "TYPE";
|
21
20
|
})(AssetSortByProperty || (AssetSortByProperty = {}));
|
22
|
-
|
23
21
|
var SortOrder;
|
24
|
-
|
25
22
|
(function (SortOrder) {
|
26
23
|
SortOrder["Asc"] = "ASC";
|
27
24
|
SortOrder["Desc"] = "DESC";
|
28
25
|
})(SortOrder || (SortOrder = {}));
|
29
26
|
|
30
27
|
var UserSubscriptionPackageType;
|
31
|
-
|
32
28
|
(function (UserSubscriptionPackageType) {
|
33
29
|
UserSubscriptionPackageType["EXPLORE_FLEET_OWNER"] = "Explore (Fleet Owner)";
|
34
30
|
UserSubscriptionPackageType["EVOLVE_FLEET_OWNER"] = "Evolve (Fleet Owner)";
|
35
31
|
UserSubscriptionPackageType["EXPAND_FLEET_OWNER"] = "Expand (Fleet Owner)";
|
36
32
|
UserSubscriptionPackageType["EXPLORE_OEM"] = "Explore (OEM)";
|
37
33
|
UserSubscriptionPackageType["EVOLVE_OEM"] = "Evolve (OEM)";
|
38
|
-
UserSubscriptionPackageType["EXPAND_OEM"] = "Expand (OEM)";
|
39
|
-
|
34
|
+
UserSubscriptionPackageType["EXPAND_OEM"] = "Expand (OEM)";
|
35
|
+
// OLD PACKAGES
|
40
36
|
UserSubscriptionPackageType["Collect"] = "COLLECT";
|
41
37
|
UserSubscriptionPackageType["Insight"] = "INSIGHT";
|
42
38
|
UserSubscriptionPackageType["View"] = "VIEW";
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@trackunit/react-core-contexts-api",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.4",
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"module": "./index.js",
|
7
7
|
"main": "./index.js",
|
8
8
|
"type": "module",
|
9
|
-
"types": "./index.d.ts"
|
9
|
+
"types": "./src/index.d.ts"
|
10
10
|
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|