@rowengine/common 1.0.61 → 1.0.62
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,6 +16,7 @@ export declare enum ProjectStatus {
|
|
|
16
16
|
export declare enum ProviderStatus {
|
|
17
17
|
AWAITING_ANALYSIS = "AWAITING_ANALYSIS",
|
|
18
18
|
REJECTED = "REJECTED",
|
|
19
|
+
STANDBY = "STANDBY",
|
|
19
20
|
DONE = "DONE",
|
|
20
21
|
AWAITING_CONFIRMATION = "AWAITING_CONFIRMATION"
|
|
21
22
|
}
|
|
@@ -53,6 +54,7 @@ export interface Project {
|
|
|
53
54
|
area?: number;
|
|
54
55
|
fields?: Field[];
|
|
55
56
|
tilesBBox?: BBox;
|
|
57
|
+
goodPointsPercentage?: number;
|
|
56
58
|
bonusExportables?: ProjectBonusExportables;
|
|
57
59
|
pixViewerStatus?: PixViewerStatus;
|
|
58
60
|
providerStatus?: ProviderStatus;
|
|
@@ -16,6 +16,8 @@ var ProviderStatus;
|
|
|
16
16
|
(function (ProviderStatus) {
|
|
17
17
|
ProviderStatus["AWAITING_ANALYSIS"] = "AWAITING_ANALYSIS";
|
|
18
18
|
ProviderStatus["REJECTED"] = "REJECTED";
|
|
19
|
+
/* Provider saw and put on stanbdy. */
|
|
20
|
+
ProviderStatus["STANDBY"] = "STANDBY";
|
|
19
21
|
/* Edited or not, but the provider finished the job. */
|
|
20
22
|
ProviderStatus["DONE"] = "DONE";
|
|
21
23
|
/* Awaiting user to accept or reject the provider's job. */
|