@rowengine/common 1.0.34 → 1.0.36

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,7 +13,7 @@ export interface Activity {
13
13
  /**
14
14
  * The percentage of good points on the points cloud.
15
15
  */
16
- goodPointsPercentage: number;
16
+ goodPointsPercentage?: number;
17
17
  /**
18
18
  * Processing time in seconds.
19
19
  */
@@ -1,5 +1,4 @@
1
1
  import { Company } from "./company";
2
- import { Project } from "./project";
3
2
  /**
4
3
  * Store the processing time for each executable/stage in seconds.
5
4
  */
@@ -23,7 +22,7 @@ export interface ExportablesTimes {
23
22
  * on the queues (in seconds).
24
23
  */
25
24
  export interface StageTimes {
26
- project: Project;
25
+ activityId: string;
27
26
  company: Company;
28
27
  date: Date;
29
28
  area?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowengine/common",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "exports": {