opticedge-types 1.0.28 → 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.
@@ -38,10 +38,12 @@ export type FBCard = {
38
38
  grading_environment: number;
39
39
  hp: number;
40
40
  identifier: string;
41
- isPulledFromPack: boolean;
42
- isRead: boolean;
43
- isSetCostOfCard: boolean;
44
- isSold: boolean;
41
+ isPulledFromPack?: boolean;
42
+ isRead?: boolean;
43
+ isSetCostOfCard?: boolean;
44
+ isSold?: boolean;
45
+ isCustomize?: boolean;
46
+ isViewed?: boolean;
45
47
  latitude: number;
46
48
  longitude: number;
47
49
  moneyEarn: number;
@@ -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.28",
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",
package/src/types/card.ts CHANGED
@@ -40,10 +40,12 @@ export type FBCard = {
40
40
  grading_environment: number
41
41
  hp: number
42
42
  identifier: string
43
- isPulledFromPack: boolean
44
- isRead: boolean
45
- isSetCostOfCard: boolean
46
- isSold: boolean
43
+ isPulledFromPack?: boolean
44
+ isRead?: boolean
45
+ isSetCostOfCard?: boolean
46
+ isSold?: boolean
47
+ isCustomize?: boolean
48
+ isViewed?: boolean
47
49
  latitude: number
48
50
  longitude: number
49
51
  moneyEarn: number
@@ -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
  }