@rowengine/common 1.0.48 → 1.0.50
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum ExportableType {
|
|
2
|
+
GAPS_REPORT = "GAPS_REPORT",
|
|
3
|
+
BETWEEN_ROWS = "BETWEEN_ROWS",
|
|
4
|
+
TRAMPLING_REPORT = "TRAMPLING_REPORT",
|
|
5
|
+
ROWS_REPORT = "ROWS_REPORT",
|
|
6
|
+
PARALLELISM_POINTS = "PARALLELISM_POINTS",
|
|
7
|
+
PERFORMANCE_REPORT = "PERFORMANCE_REPORT"
|
|
8
|
+
}
|
|
9
|
+
export interface Exportable {
|
|
10
|
+
type: ExportableType;
|
|
11
|
+
options: any;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExportableType = void 0;
|
|
4
|
+
var ExportableType;
|
|
5
|
+
(function (ExportableType) {
|
|
6
|
+
ExportableType["GAPS_REPORT"] = "GAPS_REPORT";
|
|
7
|
+
ExportableType["BETWEEN_ROWS"] = "BETWEEN_ROWS";
|
|
8
|
+
ExportableType["TRAMPLING_REPORT"] = "TRAMPLING_REPORT";
|
|
9
|
+
ExportableType["ROWS_REPORT"] = "ROWS_REPORT";
|
|
10
|
+
ExportableType["PARALLELISM_POINTS"] = "PARALLELISM_POINTS";
|
|
11
|
+
ExportableType["PERFORMANCE_REPORT"] = "PERFORMANCE_REPORT";
|
|
12
|
+
})(ExportableType || (exports.ExportableType = ExportableType = {}));
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BBox } from "./bbox";
|
|
2
2
|
import { Center } from "./center";
|
|
3
3
|
import { Company } from "./company";
|
|
4
|
+
import { Exportable } from "./exportable";
|
|
4
5
|
import { Field } from "./field";
|
|
5
6
|
import { User } from "./user";
|
|
6
7
|
export declare enum ProjectStatus {
|
|
@@ -18,6 +19,15 @@ export declare enum PixViewerStatus {
|
|
|
18
19
|
FAILED = "FAILED",
|
|
19
20
|
NOT_ENOUGH_SPACE = "NOT_ENOUGH_SPACE"
|
|
20
21
|
}
|
|
22
|
+
export declare enum BonusExportableStatus {
|
|
23
|
+
PROCESSING = "PROCESSING",
|
|
24
|
+
READY = "READY",
|
|
25
|
+
FAILED = "FAILED"
|
|
26
|
+
}
|
|
27
|
+
export interface ProjectBonusExportables {
|
|
28
|
+
status: BonusExportableStatus;
|
|
29
|
+
exportables: Exportable[];
|
|
30
|
+
}
|
|
21
31
|
export interface Project {
|
|
22
32
|
id: string;
|
|
23
33
|
user: User;
|
|
@@ -33,5 +43,6 @@ export interface Project {
|
|
|
33
43
|
area?: number;
|
|
34
44
|
fields?: Field[];
|
|
35
45
|
tilesBBox?: BBox;
|
|
46
|
+
bonusExportables?: ProjectBonusExportables;
|
|
36
47
|
pixViewerStatus?: PixViewerStatus;
|
|
37
48
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PixViewerStatus = exports.ProjectStatus = void 0;
|
|
3
|
+
exports.BonusExportableStatus = exports.PixViewerStatus = exports.ProjectStatus = void 0;
|
|
4
4
|
var ProjectStatus;
|
|
5
5
|
(function (ProjectStatus) {
|
|
6
6
|
ProjectStatus["PENDING_BOUNDARY"] = "PENDING_BOUNDARY";
|
|
@@ -18,3 +18,9 @@ var PixViewerStatus;
|
|
|
18
18
|
PixViewerStatus["FAILED"] = "FAILED";
|
|
19
19
|
PixViewerStatus["NOT_ENOUGH_SPACE"] = "NOT_ENOUGH_SPACE";
|
|
20
20
|
})(PixViewerStatus || (exports.PixViewerStatus = PixViewerStatus = {}));
|
|
21
|
+
var BonusExportableStatus;
|
|
22
|
+
(function (BonusExportableStatus) {
|
|
23
|
+
BonusExportableStatus["PROCESSING"] = "PROCESSING";
|
|
24
|
+
BonusExportableStatus["READY"] = "READY";
|
|
25
|
+
BonusExportableStatus["FAILED"] = "FAILED";
|
|
26
|
+
})(BonusExportableStatus || (exports.BonusExportableStatus = BonusExportableStatus = {}));
|