@rowengine/common 1.0.93 → 1.0.95
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.
|
@@ -10,16 +10,10 @@ export declare enum ActivityFinalStatus {
|
|
|
10
10
|
PROCESSING = "PROCESSING",
|
|
11
11
|
/** The provider rejected the entire project */
|
|
12
12
|
REJECTED = "REJECTED",
|
|
13
|
-
/**
|
|
14
|
-
FULL_EDITED = "FULL_EDITED",
|
|
15
|
-
/** Provider fast edited the project. */
|
|
16
|
-
FAST_EDITED = "FAST_EDITED",
|
|
17
|
-
/** Provider aproved project without edit */
|
|
13
|
+
/** Project was a success. */
|
|
18
14
|
APPROVED = "APPROVED",
|
|
19
15
|
/** User project owner refused full edit and parcial result. */
|
|
20
|
-
EDIT_REFUSED = "EDIT_REFUSED"
|
|
21
|
-
/** User project owner accepted parcial result. */
|
|
22
|
-
PARTIAL_RESULT_ACCEPTED = "PARTIAL_RESULT_ACCEPTED"
|
|
16
|
+
EDIT_REFUSED = "EDIT_REFUSED"
|
|
23
17
|
}
|
|
24
18
|
export interface Activity {
|
|
25
19
|
id: string;
|
|
@@ -11,14 +11,8 @@ var ActivityFinalStatus;
|
|
|
11
11
|
ActivityFinalStatus["PROCESSING"] = "PROCESSING";
|
|
12
12
|
/** The provider rejected the entire project */
|
|
13
13
|
ActivityFinalStatus["REJECTED"] = "REJECTED";
|
|
14
|
-
/**
|
|
15
|
-
ActivityFinalStatus["FULL_EDITED"] = "FULL_EDITED";
|
|
16
|
-
/** Provider fast edited the project. */
|
|
17
|
-
ActivityFinalStatus["FAST_EDITED"] = "FAST_EDITED";
|
|
18
|
-
/** Provider aproved project without edit */
|
|
14
|
+
/** Project was a success. */
|
|
19
15
|
ActivityFinalStatus["APPROVED"] = "APPROVED";
|
|
20
16
|
/** User project owner refused full edit and parcial result. */
|
|
21
17
|
ActivityFinalStatus["EDIT_REFUSED"] = "EDIT_REFUSED";
|
|
22
|
-
/** User project owner accepted parcial result. */
|
|
23
|
-
ActivityFinalStatus["PARTIAL_RESULT_ACCEPTED"] = "PARTIAL_RESULT_ACCEPTED";
|
|
24
18
|
})(ActivityFinalStatus || (exports.ActivityFinalStatus = ActivityFinalStatus = {}));
|
|
@@ -51,6 +51,10 @@ export declare enum BonusExportableStatus {
|
|
|
51
51
|
READY = "READY",
|
|
52
52
|
FAILED = "FAILED"
|
|
53
53
|
}
|
|
54
|
+
export declare enum HighlightType {
|
|
55
|
+
DARK = "dark",
|
|
56
|
+
BRIGHT = "bright"
|
|
57
|
+
}
|
|
54
58
|
export interface ProjectBonusExportables {
|
|
55
59
|
status: BonusExportableStatus;
|
|
56
60
|
exportables: Exportable[];
|
|
@@ -82,6 +86,7 @@ export interface Project {
|
|
|
82
86
|
fields?: Field[];
|
|
83
87
|
tilesBBox?: BBox;
|
|
84
88
|
goodPointsPercentage?: number;
|
|
89
|
+
highlightType?: HighlightType;
|
|
85
90
|
bonusExportables?: ProjectBonusExportables;
|
|
86
91
|
pixViewerStatus?: PixViewerStatus;
|
|
87
92
|
serviceProvided?: ServiceProvided;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BonusExportableStatus = exports.PixViewerStatus = exports.ProviderEditMode = exports.ProviderStatus = exports.ProjectStatus = void 0;
|
|
3
|
+
exports.HighlightType = exports.BonusExportableStatus = exports.PixViewerStatus = exports.ProviderEditMode = exports.ProviderStatus = exports.ProjectStatus = void 0;
|
|
4
4
|
/* STATUS TO SHOW TO THE USER */
|
|
5
5
|
var ProjectStatus;
|
|
6
6
|
(function (ProjectStatus) {
|
|
@@ -55,3 +55,8 @@ var BonusExportableStatus;
|
|
|
55
55
|
BonusExportableStatus["READY"] = "READY";
|
|
56
56
|
BonusExportableStatus["FAILED"] = "FAILED";
|
|
57
57
|
})(BonusExportableStatus || (exports.BonusExportableStatus = BonusExportableStatus = {}));
|
|
58
|
+
var HighlightType;
|
|
59
|
+
(function (HighlightType) {
|
|
60
|
+
HighlightType["DARK"] = "dark";
|
|
61
|
+
HighlightType["BRIGHT"] = "bright";
|
|
62
|
+
})(HighlightType || (exports.HighlightType = HighlightType = {}));
|