@rowengine/common 1.0.94 → 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.
@@ -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 = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowengine/common",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "exports": {