documente_shared 0.1.130__py3-none-any.whl → 0.1.131__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.
Potentially problematic release.
This version of documente_shared might be problematic. Click here for more details.
- documente_shared/domain/entities/document.py +5 -5
- {documente_shared-0.1.130.dist-info → documente_shared-0.1.131.dist-info}/METADATA +1 -1
- {documente_shared-0.1.130.dist-info → documente_shared-0.1.131.dist-info}/RECORD +4 -4
- {documente_shared-0.1.130.dist-info → documente_shared-0.1.131.dist-info}/WHEEL +0 -0
|
@@ -27,7 +27,7 @@ class DocumentProcessing(object):
|
|
|
27
27
|
status: DocumentProcessingStatus
|
|
28
28
|
category: DocumentProcessingCategory
|
|
29
29
|
file_path: Optional[str] = None
|
|
30
|
-
|
|
30
|
+
file_auxiliar_path: Optional[str] = None
|
|
31
31
|
file_bytes: Optional[bytes] = None
|
|
32
32
|
sub_category: Optional[DocumentProcessingSubCategory] = None
|
|
33
33
|
uploaded_from: Optional[DocumentProcessingSource] = None
|
|
@@ -229,7 +229,7 @@ class DocumentProcessing(object):
|
|
|
229
229
|
self.digest == other.digest
|
|
230
230
|
and self.status == other.status
|
|
231
231
|
and self.file_path == other.file_path
|
|
232
|
-
and self.
|
|
232
|
+
and self.file_auxiliar_path == other.file_auxiliar_path
|
|
233
233
|
and self.issued_at == other.issued_at
|
|
234
234
|
and self.uploaded_at == other.uploaded_at
|
|
235
235
|
and self.enqueued_at == other.enqueued_at
|
|
@@ -244,7 +244,7 @@ class DocumentProcessing(object):
|
|
|
244
244
|
'digest': self.digest,
|
|
245
245
|
'status': str(self.status),
|
|
246
246
|
'file_path': self.file_path,
|
|
247
|
-
'
|
|
247
|
+
'file_auxiliar_path': self.file_auxiliar_path,
|
|
248
248
|
'category': (
|
|
249
249
|
str(self.category)
|
|
250
250
|
if self.category else None
|
|
@@ -301,7 +301,7 @@ class DocumentProcessing(object):
|
|
|
301
301
|
'status',
|
|
302
302
|
'metadata',
|
|
303
303
|
'file_path',
|
|
304
|
-
'
|
|
304
|
+
'file_auxiliar_path',
|
|
305
305
|
'file_bytes',
|
|
306
306
|
'category',
|
|
307
307
|
'sub_category',
|
|
@@ -339,7 +339,7 @@ class DocumentProcessing(object):
|
|
|
339
339
|
digest=data.get('digest'),
|
|
340
340
|
status=DocumentProcessingStatus.from_value(data.get('status')),
|
|
341
341
|
file_path=data.get('file_path'),
|
|
342
|
-
|
|
342
|
+
file_auxiliar_path=data.get('file_auxiliar_path'),
|
|
343
343
|
category=(
|
|
344
344
|
DocumentProcessingCategory.from_value(data.get('category'))
|
|
345
345
|
if data.get('category') else None
|
|
@@ -14,7 +14,7 @@ documente_shared/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
14
14
|
documente_shared/domain/base_enum.py,sha256=DojAfn-zQdtjtImeHUpBzE6TBTm07XrbMOdW3h8RVd8,1449
|
|
15
15
|
documente_shared/domain/constants.py,sha256=NG5BGaXBr_FnzudjTRPxpDpyiSDdaB_PLCdlYlFUQeU,187
|
|
16
16
|
documente_shared/domain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
documente_shared/domain/entities/document.py,sha256=
|
|
17
|
+
documente_shared/domain/entities/document.py,sha256=eEEoAujD_wjFdcSvwB1WW6QbCNQSpijc0UfaMlytprk,13464
|
|
18
18
|
documente_shared/domain/entities/document_metadata.py,sha256=ygyFIC5qwxlm8DUM5kvVFny9zJfPQS8vNLM2br5XsQ8,2353
|
|
19
19
|
documente_shared/domain/entities/in_memory_document.py,sha256=6LlUtF9YbFPNxP-ytrWkFYQzvdJJJ9iC8X4_U125hEE,2113
|
|
20
20
|
documente_shared/domain/entities/processing_case.py,sha256=D57zP704mBtt563Pbmd41PFQSna4chVWsWTR_2ZAtTU,6602
|
|
@@ -55,6 +55,6 @@ documente_shared/infrastructure/services/http_scaling.py,sha256=cIo-61nfIwbtO86E
|
|
|
55
55
|
documente_shared/infrastructure/sqs_queue.py,sha256=KZWeHZ9zmXmrxoNpOQX7GEdDhZ1knbPXgwSwFwJblGg,1504
|
|
56
56
|
documente_shared/presentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
documente_shared/presentation/presenters.py,sha256=GGAEwefmjCIVepsUA2oZOVLxXbhhiISPM0Jgt6dT6O0,423
|
|
58
|
-
documente_shared-0.1.
|
|
59
|
-
documente_shared-0.1.
|
|
60
|
-
documente_shared-0.1.
|
|
58
|
+
documente_shared-0.1.131.dist-info/METADATA,sha256=AXX_tT5o0nB_QV8wrFHu8SE5lk0mKvZMKyFF8M0_Xqw,963
|
|
59
|
+
documente_shared-0.1.131.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
60
|
+
documente_shared-0.1.131.dist-info/RECORD,,
|
|
File without changes
|