opticedge-types 1.0.29 → 1.0.30

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.
@@ -55,6 +55,7 @@ export type PriceChartingDBCard = {
55
55
  cardNumber?: string | null;
56
56
  deleted?: boolean;
57
57
  type: CardType;
58
+ ocrText?: string;
58
59
  };
59
60
  export type PriceChartingAPICard = {
60
61
  priceChartingId: number;
@@ -66,5 +67,6 @@ export type PriceChartingAPICard = {
66
67
  images?: Image;
67
68
  type: CardType;
68
69
  version: string;
70
+ text?: string;
69
71
  };
70
72
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -61,6 +61,7 @@ export type PriceChartingDBCard = {
61
61
  cardNumber?: string | null
62
62
  deleted?: boolean
63
63
  type: CardType
64
+ ocrText?: string
64
65
  }
65
66
 
66
67
  export type PriceChartingAPICard = {
@@ -73,4 +74,5 @@ export type PriceChartingAPICard = {
73
74
  images?: Image
74
75
  type: CardType
75
76
  version: string
77
+ text?: string
76
78
  }