@movalib/movalib-commons 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.
|
@@ -15,12 +15,12 @@ export declare enum ProductType {
|
|
|
15
15
|
CONSUMABLE = "CONSUMABLE"
|
|
16
16
|
}
|
|
17
17
|
export declare enum PartsApplicationType {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
18
|
+
FRONT = "FT",
|
|
19
|
+
REAR = "RR",
|
|
20
|
+
FRONT_REAR = "FTRR",
|
|
21
|
+
LEFT = "LT",
|
|
22
|
+
RIGHT = "RT",
|
|
23
|
+
LEFT_RIGHT = "LTRT"
|
|
24
24
|
}
|
|
25
25
|
export declare enum APIMethod {
|
|
26
26
|
GET = "GET",
|
|
@@ -22,12 +22,12 @@ var ProductType;
|
|
|
22
22
|
})(ProductType = exports.ProductType || (exports.ProductType = {}));
|
|
23
23
|
var PartsApplicationType;
|
|
24
24
|
(function (PartsApplicationType) {
|
|
25
|
-
PartsApplicationType["
|
|
26
|
-
PartsApplicationType["
|
|
27
|
-
PartsApplicationType["
|
|
28
|
-
PartsApplicationType["
|
|
29
|
-
PartsApplicationType["
|
|
30
|
-
PartsApplicationType["
|
|
25
|
+
PartsApplicationType["FRONT"] = "FT";
|
|
26
|
+
PartsApplicationType["REAR"] = "RR";
|
|
27
|
+
PartsApplicationType["FRONT_REAR"] = "FTRR";
|
|
28
|
+
PartsApplicationType["LEFT"] = "LT";
|
|
29
|
+
PartsApplicationType["RIGHT"] = "RT";
|
|
30
|
+
PartsApplicationType["LEFT_RIGHT"] = "LTRT";
|
|
31
31
|
})(PartsApplicationType = exports.PartsApplicationType || (exports.PartsApplicationType = {}));
|
|
32
32
|
var APIMethod;
|
|
33
33
|
(function (APIMethod) {
|
package/package.json
CHANGED
package/src/helpers/Enums.ts
CHANGED
|
@@ -18,12 +18,12 @@ export enum ProductType {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export enum PartsApplicationType {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
FRONT = 'FT',
|
|
22
|
+
REAR = 'RR',
|
|
23
|
+
FRONT_REAR = "FTRR",
|
|
24
|
+
LEFT = "LT",
|
|
25
|
+
RIGHT = "RT",
|
|
26
|
+
LEFT_RIGHT = "LTRT"
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export enum APIMethod {
|