opticedge-types 1.0.6__tar.gz → 1.0.8__tar.gz

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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opticedge_types
3
- Version: 1.0.6
3
+ Version: 1.0.8
4
4
  Summary: Common types for opticedge
5
5
  Author-email: velopace <velopace7@gmail.com>
6
6
  License: MIT
@@ -25,3 +25,6 @@ class CardType(Enum):
25
25
  MAGIC = "magic"
26
26
  YUGIOH = "yugioh"
27
27
  VIDEO_GAMES = "video_games"
28
+ DIGIMON = "digimon"
29
+ DRAGON_BALL = "dragon_ball"
30
+ ONE_PIECE = "one_piece"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opticedge_types
3
- Version: 1.0.6
3
+ Version: 1.0.8
4
4
  Summary: Common types for opticedge
5
5
  Author-email: velopace <velopace7@gmail.com>
6
6
  License: MIT
@@ -6,8 +6,6 @@ opticedge_types.egg-info/SOURCES.txt
6
6
  opticedge_types.egg-info/dependency_links.txt
7
7
  opticedge_types.egg-info/requires.txt
8
8
  opticedge_types.egg-info/top_level.txt
9
- opticedge_types/constants/__init__.py
10
- opticedge_types/constants/card.py
11
9
  opticedge_types/enums/__init__.py
12
10
  opticedge_types/enums/card.py
13
11
  opticedge_types/enums/user.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "opticedge_types"
7
- version = "1.0.6"
7
+ version = "1.0.8"
8
8
  description = "Common types for opticedge"
9
9
  readme = "README.md"
10
10
  dependencies = []
@@ -1,10 +0,0 @@
1
- from opticedge_types.enums.card import CardType
2
-
3
-
4
- CARD_COLLECTION_MAP: dict[CardType, str] = {
5
- CardType.POKEMON: "pokemon_cards",
6
- CardType.LORCANA: "lorcana_cards",
7
- CardType.MAGIC: "magic_cards",
8
- CardType.YUGIOH: "yugioh_cards",
9
- CardType.VIDEO_GAMES: "video_games",
10
- }
File without changes