opticedge-types 1.0.82 → 1.0.83

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.
@@ -42,6 +42,8 @@ export declare enum CardRejectType {
42
42
  MODEL_FAILURE = "Model failure"
43
43
  }
44
44
  export declare enum CardRescanType {
45
+ ENVIRONMENT_LOW_SCORE = "Environment - Low Score",
46
+ ACCURACY_LOW_SCORE = "Accuracy - Low Score",
45
47
  ENVIRONMENT_LIGHTING = "Environment - Lighting",
46
48
  ENVIRONMENT_ARTEFACTS = "Environment - Artefacts",
47
49
  CARD_IN_SLAB_SLEEVE = "Card in Slab/Sleeve",
@@ -50,6 +50,8 @@ var CardRejectType;
50
50
  })(CardRejectType || (exports.CardRejectType = CardRejectType = {}));
51
51
  var CardRescanType;
52
52
  (function (CardRescanType) {
53
+ CardRescanType["ENVIRONMENT_LOW_SCORE"] = "Environment - Low Score";
54
+ CardRescanType["ACCURACY_LOW_SCORE"] = "Accuracy - Low Score";
53
55
  CardRescanType["ENVIRONMENT_LIGHTING"] = "Environment - Lighting";
54
56
  CardRescanType["ENVIRONMENT_ARTEFACTS"] = "Environment - Artefacts";
55
57
  CardRescanType["CARD_IN_SLAB_SLEEVE"] = "Card in Slab/Sleeve";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/enums/card.ts CHANGED
@@ -48,6 +48,8 @@ export enum CardRejectType {
48
48
  }
49
49
 
50
50
  export enum CardRescanType {
51
+ ENVIRONMENT_LOW_SCORE = 'Environment - Low Score',
52
+ ACCURACY_LOW_SCORE = 'Accuracy - Low Score',
51
53
  ENVIRONMENT_LIGHTING = 'Environment - Lighting',
52
54
  ENVIRONMENT_ARTEFACTS = 'Environment - Artefacts',
53
55
  CARD_IN_SLAB_SLEEVE = 'Card in Slab/Sleeve',