opticedge-types 1.0.76 → 1.0.78

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.
@@ -6,7 +6,8 @@ export declare enum TradingCardType {
6
6
  DIGIMON = "digimon",
7
7
  DRAGON_BALL = "dragon_ball",
8
8
  ONE_PIECE = "one_piece",
9
- OTHER_TCG = "other_tcg"
9
+ OTHER_TCG = "other_tcg",
10
+ OTHER_NON_TCG = "other"
10
11
  }
11
12
  export declare enum SportsCardType {
12
13
  BASEBALL = "baseball",
@@ -11,6 +11,7 @@ var TradingCardType;
11
11
  TradingCardType["DRAGON_BALL"] = "dragon_ball";
12
12
  TradingCardType["ONE_PIECE"] = "one_piece";
13
13
  TradingCardType["OTHER_TCG"] = "other_tcg";
14
+ TradingCardType["OTHER_NON_TCG"] = "other";
14
15
  })(TradingCardType || (exports.TradingCardType = TradingCardType = {}));
15
16
  var SportsCardType;
16
17
  (function (SportsCardType) {
@@ -57,6 +57,7 @@ export type PriceChartingDbCard = {
57
57
  ocrText?: string;
58
58
  createdAt?: Date;
59
59
  updatedAt: Date;
60
+ priceAt?: Date;
60
61
  };
61
62
  export type PriceChartingDbCardDto = Omit<PriceChartingDbCard, 'createdAt' | 'updatedAt'> & {
62
63
  createdAt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
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
@@ -6,7 +6,8 @@ export enum TradingCardType {
6
6
  DIGIMON = 'digimon',
7
7
  DRAGON_BALL = 'dragon_ball',
8
8
  ONE_PIECE = 'one_piece',
9
- OTHER_TCG = 'other_tcg'
9
+ OTHER_TCG = 'other_tcg',
10
+ OTHER_NON_TCG = 'other'
10
11
  }
11
12
 
12
13
  export enum SportsCardType {
@@ -63,6 +63,7 @@ export type PriceChartingDbCard = {
63
63
  ocrText?: string
64
64
  createdAt?: Date
65
65
  updatedAt: Date
66
+ priceAt?: Date
66
67
  }
67
68
 
68
69
  export type PriceChartingDbCardDto = Omit<PriceChartingDbCard, 'createdAt' | 'updatedAt'> & {