@rowengine/common 1.0.125 → 1.0.126
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Center } from
|
|
2
|
-
import { Company } from
|
|
3
|
-
import { Field } from
|
|
4
|
-
import { ServiceProvided } from
|
|
5
|
-
import { User } from
|
|
1
|
+
import { Center } from './center';
|
|
2
|
+
import { Company } from './company';
|
|
3
|
+
import { Field } from './field';
|
|
4
|
+
import { ServiceProvided } from './project';
|
|
5
|
+
import { User } from './user';
|
|
6
6
|
/**
|
|
7
7
|
* If the activity has no status, it means that it was approved.
|
|
8
8
|
* (Older versions of the project did not have this field).
|
|
@@ -12,7 +12,9 @@ export declare enum ProjectStatus {
|
|
|
12
12
|
PROCESSING = "PROCESSING",
|
|
13
13
|
FAILED = "FAILED",
|
|
14
14
|
NOT_ENOUGH_CREDITS = "NOT_ENOUGH_CREDITS",
|
|
15
|
-
READY = "READY"
|
|
15
|
+
READY = "READY",
|
|
16
|
+
UPDATING_FILES = "UPDATING_FILES",// sent to send-local-files queue.
|
|
17
|
+
REPROCESSING_GAPS = "REPROCESSING_GAPS"
|
|
16
18
|
}
|
|
17
19
|
export declare enum ProviderStatus {
|
|
18
20
|
/** Project got out of exportables queue and now is waiting for analysis. */
|
|
@@ -12,6 +12,8 @@ var ProjectStatus;
|
|
|
12
12
|
ProjectStatus["FAILED"] = "FAILED";
|
|
13
13
|
ProjectStatus["NOT_ENOUGH_CREDITS"] = "NOT_ENOUGH_CREDITS";
|
|
14
14
|
ProjectStatus["READY"] = "READY";
|
|
15
|
+
ProjectStatus["UPDATING_FILES"] = "UPDATING_FILES";
|
|
16
|
+
ProjectStatus["REPROCESSING_GAPS"] = "REPROCESSING_GAPS";
|
|
15
17
|
})(ProjectStatus || (exports.ProjectStatus = ProjectStatus = {}));
|
|
16
18
|
var ProviderStatus;
|
|
17
19
|
(function (ProviderStatus) {
|