documente_shared 0.1.18__tar.gz → 0.1.19__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.

Potentially problematic release.


This version of documente_shared might be problematic. Click here for more details.

Files changed (16) hide show
  1. {documente_shared-0.1.18 → documente_shared-0.1.19}/PKG-INFO +1 -1
  2. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/domain/repositories.py +1 -1
  3. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/infrastructure/dynamo_repositories.py +3 -1
  4. {documente_shared-0.1.18 → documente_shared-0.1.19}/pyproject.toml +1 -1
  5. {documente_shared-0.1.18 → documente_shared-0.1.19}/README.md +0 -0
  6. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/__init__.py +0 -0
  7. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/application/__init__.py +0 -0
  8. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/application/digest.py +0 -0
  9. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/domain/__init__.py +0 -0
  10. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/domain/base_enum.py +0 -0
  11. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/domain/entities.py +0 -0
  12. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/domain/enums.py +0 -0
  13. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/infrastructure/__init__.py +0 -0
  14. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/infrastructure/dynamo_table.py +0 -0
  15. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/infrastructure/s3_bucket.py +0 -0
  16. {documente_shared-0.1.18 → documente_shared-0.1.19}/documente_shared/infrastructure/sqs_queue.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: documente_shared
3
- Version: 0.1.18
3
+ Version: 0.1.19
4
4
  Summary: Shared utilities for Documente AI projects
5
5
  License: MIT
6
6
  Author: Tech
@@ -1,7 +1,7 @@
1
1
  from abc import ABC, abstractmethod
2
+ from typing import Optional
2
3
 
3
4
  from documente_shared.domain.entities import DocumentProcess
4
- from python_layer.python.typing_extensions import Optional
5
5
 
6
6
 
7
7
  class DocumentProcessRepository(ABC):
@@ -1,7 +1,9 @@
1
+ from typing import Optional
2
+
1
3
  from documente_shared.domain.entities import DocumentProcess
2
4
  from documente_shared.domain.repositories import DocumentProcessRepository
3
5
  from documente_shared.infrastructure.dynamo_table import DynamoDBTable
4
- from python_layer.python.typing_extensions import Optional
6
+
5
7
 
6
8
 
7
9
  class DynamoDocumentProcessRepository(
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "documente_shared"
3
- version = "0.1.18"
3
+ version = "0.1.19"
4
4
  description = "Shared utilities for Documente AI projects"
5
5
  authors = ["Tech <tech@llamitai.com>"]
6
6
  license = "MIT"