@trackunit/react-core-contexts-api 0.0.39-abo-fuel-consumption-rest-api.1 → 0.0.42
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.d.ts +1 -0
- package/index.js +23 -1
- package/package.json +1 -1
- package/whitelabelContext.d.ts +22 -0
package/index.d.ts
CHANGED
package/index.js
CHANGED
@@ -7,4 +7,26 @@ var UserSubscriptionPackageType;
|
|
7
7
|
UserSubscriptionPackageType["View"] = "VIEW";
|
8
8
|
})(UserSubscriptionPackageType || (UserSubscriptionPackageType = {}));
|
9
9
|
|
10
|
-
|
10
|
+
var Brand;
|
11
|
+
|
12
|
+
(function (Brand) {
|
13
|
+
Brand["Manitou"] = "Manitou";
|
14
|
+
Brand["WackerNeuson"] = "WackerNeuson";
|
15
|
+
Brand["Trackunit"] = "Trackunit";
|
16
|
+
Brand["Niftylift"] = "Niftylift";
|
17
|
+
Brand["Skyjack"] = "SkyjackTheme";
|
18
|
+
Brand["Ahern"] = "Ahern";
|
19
|
+
Brand["Birch"] = "Birch";
|
20
|
+
Brand["MyMagni"] = "MyMagni";
|
21
|
+
Brand["Loxam"] = "Loxam";
|
22
|
+
Brand["Terberg"] = "Terberg";
|
23
|
+
Brand["Sakai"] = "Sakai";
|
24
|
+
Brand["Mecalac"] = "Mecalac";
|
25
|
+
Brand["DeLille"] = "DeLille";
|
26
|
+
Brand["Cooper"] = "Cooper";
|
27
|
+
Brand["Hayden"] = "Hayden";
|
28
|
+
Brand["UnitedRentals"] = "UnitedRentals";
|
29
|
+
Brand["Eijkelkamp"] = "Eijkelkamp";
|
30
|
+
})(Brand || (Brand = {}));
|
31
|
+
|
32
|
+
export { Brand, UserSubscriptionPackageType };
|
package/package.json
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
export interface IWhiteLabelProviderContext {
|
2
|
+
brand: Brand;
|
3
|
+
}
|
4
|
+
export declare enum Brand {
|
5
|
+
Manitou = "Manitou",
|
6
|
+
WackerNeuson = "WackerNeuson",
|
7
|
+
Trackunit = "Trackunit",
|
8
|
+
Niftylift = "Niftylift",
|
9
|
+
Skyjack = "SkyjackTheme",
|
10
|
+
Ahern = "Ahern",
|
11
|
+
Birch = "Birch",
|
12
|
+
MyMagni = "MyMagni",
|
13
|
+
Loxam = "Loxam",
|
14
|
+
Terberg = "Terberg",
|
15
|
+
Sakai = "Sakai",
|
16
|
+
Mecalac = "Mecalac",
|
17
|
+
DeLille = "DeLille",
|
18
|
+
Cooper = "Cooper",
|
19
|
+
Hayden = "Hayden",
|
20
|
+
UnitedRentals = "UnitedRentals",
|
21
|
+
Eijkelkamp = "Eijkelkamp"
|
22
|
+
}
|