@rowengine/common 1.0.31 → 1.0.33

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.
@@ -18,6 +18,10 @@ export interface Activity {
18
18
  * Time spent on the queue in seconds.
19
19
  */
20
20
  timeOnQueue?: number;
21
+ /**
22
+ * The percentage of good points on the points cloud.
23
+ */
24
+ goodPointsPercentage?: number;
21
25
  };
22
26
  createdAt: Date;
23
27
  }
@@ -8,6 +8,7 @@ export declare enum ProjectStatus {
8
8
  PREPARING = "PREPARING",
9
9
  PROCESSING = "PROCESSING",
10
10
  FAILED = "FAILED",
11
+ NOT_ENOUGH_CREDITS = "NOT_ENOUGH_CREDITS",
11
12
  READY = "READY",
12
13
  DELETING = "DELETING"
13
14
  }
@@ -7,6 +7,7 @@ var ProjectStatus;
7
7
  ProjectStatus["PREPARING"] = "PREPARING";
8
8
  ProjectStatus["PROCESSING"] = "PROCESSING";
9
9
  ProjectStatus["FAILED"] = "FAILED";
10
+ ProjectStatus["NOT_ENOUGH_CREDITS"] = "NOT_ENOUGH_CREDITS";
10
11
  ProjectStatus["READY"] = "READY";
11
12
  ProjectStatus["DELETING"] = "DELETING";
12
13
  })(ProjectStatus || (exports.ProjectStatus = ProjectStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowengine/common",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "exports": {