opticedge-types 1.0.73 → 1.0.75

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.
@@ -3,10 +3,21 @@ export declare enum CardType {
3
3
  LORCANA = "lorcana",
4
4
  MAGIC = "magic",
5
5
  YUGIOH = "yugioh",
6
- VIDEO_GAMES = "video_games",
7
6
  DIGIMON = "digimon",
8
7
  DRAGON_BALL = "dragon_ball",
9
- ONE_PIECE = "one_piece"
8
+ ONE_PIECE = "one_piece",
9
+ OTHER_TCG = "other_tcg",
10
+ BASEBALL = "baseball",
11
+ BASKETBALL = "basketball",
12
+ FOOTBALL = "football",
13
+ HOCKEY = "hockey",
14
+ SOCCER = "soccer",
15
+ RACING = "racing",
16
+ WRESTLING = "wrestling",
17
+ UFC = "ufc",
18
+ BOXING = "boxing",
19
+ GOLF = "golf",
20
+ TENNIS = "tennis"
10
21
  }
11
22
  export declare enum CardApprovalStatus {
12
23
  Rescan = -2,
@@ -3,14 +3,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CardVersions = exports.CardInstantGradeType = exports.CardGradingType = exports.CardRescanType = exports.CardRejectType = exports.CardApprovalStatus = exports.CardType = void 0;
4
4
  var CardType;
5
5
  (function (CardType) {
6
+ // Trading Cards
6
7
  CardType["POKEMON"] = "pokemon";
7
8
  CardType["LORCANA"] = "lorcana";
8
9
  CardType["MAGIC"] = "magic";
9
10
  CardType["YUGIOH"] = "yugioh";
10
- CardType["VIDEO_GAMES"] = "video_games";
11
11
  CardType["DIGIMON"] = "digimon";
12
12
  CardType["DRAGON_BALL"] = "dragon_ball";
13
13
  CardType["ONE_PIECE"] = "one_piece";
14
+ CardType["OTHER_TCG"] = "other_tcg";
15
+ // Sports Cards
16
+ CardType["BASEBALL"] = "baseball";
17
+ CardType["BASKETBALL"] = "basketball";
18
+ CardType["FOOTBALL"] = "football";
19
+ CardType["HOCKEY"] = "hockey";
20
+ CardType["SOCCER"] = "soccer";
21
+ CardType["RACING"] = "racing";
22
+ CardType["WRESTLING"] = "wrestling";
23
+ CardType["UFC"] = "ufc";
24
+ CardType["BOXING"] = "boxing";
25
+ CardType["GOLF"] = "golf";
26
+ CardType["TENNIS"] = "tennis";
14
27
  })(CardType || (exports.CardType = CardType = {}));
15
28
  var CardApprovalStatus;
16
29
  (function (CardApprovalStatus) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.73",
3
+ "version": "1.0.75",
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
@@ -1,12 +1,26 @@
1
1
  export enum CardType {
2
+ // Trading Cards
2
3
  POKEMON = 'pokemon',
3
4
  LORCANA = 'lorcana',
4
5
  MAGIC = 'magic',
5
6
  YUGIOH = 'yugioh',
6
- VIDEO_GAMES = 'video_games',
7
7
  DIGIMON = 'digimon',
8
8
  DRAGON_BALL = 'dragon_ball',
9
- ONE_PIECE = 'one_piece'
9
+ ONE_PIECE = 'one_piece',
10
+ OTHER_TCG = 'other_tcg',
11
+
12
+ // Sports Cards
13
+ BASEBALL = "baseball",
14
+ BASKETBALL = "basketball",
15
+ FOOTBALL = "football",
16
+ HOCKEY = "hockey",
17
+ SOCCER = "soccer",
18
+ RACING = "racing",
19
+ WRESTLING = "wrestling",
20
+ UFC = "ufc",
21
+ BOXING = "boxing",
22
+ GOLF = "golf",
23
+ TENNIS = "tennis"
10
24
  }
11
25
 
12
26
  export enum CardApprovalStatus {