@movalib/movalib-commons 1.59.22 → 1.59.23

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.
@@ -13,6 +13,8 @@ interface roiInterface {
13
13
  moTwo: number;
14
14
  moThree: number;
15
15
  comment: string;
16
+ workforce: number;
17
+ workingTimePerEmployee: number;
16
18
  }
17
19
  export default class Subscription {
18
20
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movalib/movalib-commons",
3
- "version": "1.59.22",
3
+ "version": "1.59.23",
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",
@@ -12,7 +12,9 @@ interface roiInterface {
12
12
  moOne: number,
13
13
  moTwo: number,
14
14
  moThree: number,
15
- comment: string
15
+ comment: string,
16
+ workforce: number,
17
+ workingTimePerEmployee: number
16
18
  }
17
19
  export default class Subscription {
18
20