@rowengine/common 1.0.67 → 1.0.68
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.
|
@@ -16,7 +16,7 @@ export declare enum ProjectStatus {
|
|
|
16
16
|
export declare enum ProviderStatus {
|
|
17
17
|
AWAITING_ANALYSIS = "AWAITING_ANALYSIS",
|
|
18
18
|
REJECTED = "REJECTED",
|
|
19
|
-
|
|
19
|
+
EDITING = "EDITING",
|
|
20
20
|
DONE = "DONE",
|
|
21
21
|
AWAITING_CONFIRMATION = "AWAITING_CONFIRMATION"
|
|
22
22
|
}
|
|
@@ -14,10 +14,12 @@ var ProjectStatus;
|
|
|
14
14
|
})(ProjectStatus || (exports.ProjectStatus = ProjectStatus = {}));
|
|
15
15
|
var ProviderStatus;
|
|
16
16
|
(function (ProviderStatus) {
|
|
17
|
+
/* Project got out of exportables queue and now is waiting for analysis. */
|
|
17
18
|
ProviderStatus["AWAITING_ANALYSIS"] = "AWAITING_ANALYSIS";
|
|
19
|
+
/* The provider rejected the entire project */
|
|
18
20
|
ProviderStatus["REJECTED"] = "REJECTED";
|
|
19
|
-
/*
|
|
20
|
-
ProviderStatus["
|
|
21
|
+
/* The provider is editing the project. */
|
|
22
|
+
ProviderStatus["EDITING"] = "EDITING";
|
|
21
23
|
/* Edited or not, but the provider finished the job. */
|
|
22
24
|
ProviderStatus["DONE"] = "DONE";
|
|
23
25
|
/* Awaiting user to accept or reject the provider's job. */
|