@movalib/movalib-commons 1.0.36 → 1.0.37

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.
@@ -46,9 +46,8 @@ export declare enum DayOfWeek {
46
46
  SUNDAY = "SUNDAY"
47
47
  }
48
48
  export declare enum DocumentType {
49
- INVOICE = "INVOICE",
50
- TYRE_PICTURE = "TYRE_PICTURE",
51
- CAR_PICTURE = "CAR_PICTURE"
49
+ VEHICLE_MAINTENANCE_INVOICE = "VEHICLE_MAINTENANCE_INVOICE",
50
+ VEHICLE_TIRE_PHOTO = "VEHICLE_TIRE_PHOTO"
52
51
  }
53
52
  export declare enum MovaAppType {
54
53
  /**
@@ -54,9 +54,8 @@ var DayOfWeek;
54
54
  })(DayOfWeek = exports.DayOfWeek || (exports.DayOfWeek = {}));
55
55
  var DocumentType;
56
56
  (function (DocumentType) {
57
- DocumentType["INVOICE"] = "INVOICE";
58
- DocumentType["TYRE_PICTURE"] = "TYRE_PICTURE";
59
- DocumentType["CAR_PICTURE"] = "CAR_PICTURE";
57
+ DocumentType["VEHICLE_MAINTENANCE_INVOICE"] = "VEHICLE_MAINTENANCE_INVOICE";
58
+ DocumentType["VEHICLE_TIRE_PHOTO"] = "VEHICLE_TIRE_PHOTO";
60
59
  })(DocumentType = exports.DocumentType || (exports.DocumentType = {}));
61
60
  var MovaAppType;
62
61
  (function (MovaAppType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movalib/movalib-commons",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Bibliothèque d'objets communs à l'ensemble des projets React de Movalib",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -50,9 +50,8 @@ export enum DayOfWeek {
50
50
  }
51
51
 
52
52
  export enum DocumentType {
53
- INVOICE = 'INVOICE',
54
- TYRE_PICTURE = 'TYRE_PICTURE',
55
- CAR_PICTURE = 'CAR_PICTURE'
53
+ VEHICLE_MAINTENANCE_INVOICE = 'VEHICLE_MAINTENANCE_INVOICE',
54
+ VEHICLE_TIRE_PHOTO = 'VEHICLE_TIRE_PHOTO'
56
55
  }
57
56
 
58
57
  export enum MovaAppType {