architectonics 0.0.24__py3-none-any.whl → 0.0.25__py3-none-any.whl

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,12 +3,11 @@ import uuid
3
3
  from sqlalchemy import Column, DateTime, String
4
4
  from sqlalchemy.orm import as_declarative
5
5
 
6
- from architectonics.common.interfaces.base_entity_interface import BaseEntityInterface
7
6
  from architectonics.common.utils.utils import get_current_datetime
8
7
 
9
8
 
10
9
  @as_declarative()
11
- class BaseEntity(BaseEntityInterface):
10
+ class BaseEntity:
12
11
  __abstract__ = True
13
12
 
14
13
  id = Column(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: architectonics
3
- Version: 0.0.24
3
+ Version: 0.0.25
4
4
  Summary:
5
5
  Author: Your Name
6
6
  Author-email: you@example.com
@@ -1,6 +1,5 @@
1
1
  architectonics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  architectonics/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- architectonics/common/interfaces/base_entity_interface.py,sha256=pc83rhpKIod82rLUiJO4si7f-RuQe8YrY7dfgZiZSPs,293
4
3
  architectonics/common/utils/utils.py,sha256=a5dAvgfwYKQ5MwYaDxmy_YLHNHQxNgEH94YFuVrD4N0,84
5
4
  architectonics/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
5
  architectonics/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -11,7 +10,7 @@ architectonics/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
11
10
  architectonics/infrastructure/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
11
  architectonics/infrastructure/config/database.py,sha256=ZhV7UJRJGvhblzs9lS11cqlGZU8M-9y1pkjJl48vd1Q,545
13
12
  architectonics/infrastructure/config/database_settings.py,sha256=d1HA8rQj3LMACEvrC2-uxzs6vyoQB1Qw1_wSAdSmN_g,676
14
- architectonics/infrastructure/entities/base_entity.py,sha256=mT9GWK3hOeBFHeGwTWF12PJwirgx3CLKsYVW3_F0DzU,686
15
- architectonics-0.0.24.dist-info/WHEEL,sha256=y3eDiaFVSNTPbgzfNn0nYn5tEn1cX6WrdetDlQM4xWw,83
16
- architectonics-0.0.24.dist-info/METADATA,sha256=qZjN1vE0EVZY7vFSZzOsp1DtZ4o4WtTDPq4PTDu6rO4,469
17
- architectonics-0.0.24.dist-info/RECORD,,
13
+ architectonics/infrastructure/entities/base_entity.py,sha256=HtrQ7z7pqNFUpoREWN-s1b1H1aiBompcWNZ1dkAWnw8,578
14
+ architectonics-0.0.25.dist-info/WHEEL,sha256=y3eDiaFVSNTPbgzfNn0nYn5tEn1cX6WrdetDlQM4xWw,83
15
+ architectonics-0.0.25.dist-info/METADATA,sha256=cvooHDoGhw9lhQgenidQNB3FgWIS_ITHb87OURCLWGI,469
16
+ architectonics-0.0.25.dist-info/RECORD,,
@@ -1,15 +0,0 @@
1
- from datetime import datetime
2
- from typing import ClassVar, Protocol
3
-
4
-
5
- class BaseEntityInterface(Protocol):
6
- PK_FIELD: ClassVar[str]
7
-
8
- @property
9
- def id(self) -> str: ...
10
-
11
- @property
12
- def created_at(self) -> datetime: ...
13
-
14
- @property
15
- def updated_at(self) -> datetime: ...