opticedge-types 1.0.64 → 1.0.65

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.
@@ -1,4 +1,4 @@
1
- import { CardApprovalStatus, CardGradingType } from '../enums/card';
1
+ import { CardApprovalStatus, CardGradingType, CardRejectType, CardRescanType } from '../enums/card';
2
2
  import { ChainId, Token } from './blockchain';
3
3
  import { DefectMap, SubGrades } from './instant';
4
4
  import { FbUser } from './user';
@@ -63,7 +63,9 @@ export type FbCard = {
63
63
  priceLow: number;
64
64
  priceMarket: number;
65
65
  priceValue: number;
66
+ rejectionReasons?: CardRejectType[];
66
67
  releaseDate?: number;
68
+ rescanReasons?: CardRescanType[];
67
69
  resultInvisible: boolean;
68
70
  saleNote: string;
69
71
  series: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
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
@@ -1,4 +1,4 @@
1
- import { CardApprovalStatus, CardGradingType } from '../enums/card'
1
+ import { CardApprovalStatus, CardGradingType, CardRejectType, CardRescanType } from '../enums/card'
2
2
  import { ChainId, Token } from './blockchain'
3
3
  import { DefectMap, SubGrades } from './instant'
4
4
  import { FbUser } from './user'
@@ -65,7 +65,9 @@ export type FbCard = {
65
65
  priceLow: number
66
66
  priceMarket: number
67
67
  priceValue: number
68
+ rejectionReasons?: CardRejectType[]
68
69
  releaseDate?: number
70
+ rescanReasons?: CardRescanType[]
69
71
  resultInvisible: boolean
70
72
  saleNote: string
71
73
  series: string