kodexa 7.0.8694499307__tar.gz → 7.0.8694772302__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.
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/PKG-INFO +1 -1
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/model/objects.py +12 -1
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/pyproject.toml +1 -1
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/LICENSE +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/README.md +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/assistant/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/assistant/assistant.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/connectors/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/connectors/connectors.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/model/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/model/base.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/model/model.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/model/persistence.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/pipeline/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/pipeline/pipeline.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/platform/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/platform/client.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/platform/interaction.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/platform/kodexa.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/ast.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/core.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/lexrules.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/lextab.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/lextab.pyi +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/parserules.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/parserules.pyi +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/parsetab.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/selectors/parsetab.pyi +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/spatial/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/spatial/azure_models.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/spatial/bbox_common.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/spatial/table_form_common.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/steps/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/steps/common.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/testing/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/testing/test_components.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/testing/test_utils.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/training/__init__.py +0 -0
- {kodexa-7.0.8694499307 → kodexa-7.0.8694772302}/kodexa/training/train_utils.py +0 -0
@@ -674,6 +674,12 @@ class StorePurpose(Enum):
|
|
674
674
|
training = "TRAINING"
|
675
675
|
|
676
676
|
|
677
|
+
class ProjectStoreFile(BaseModel):
|
678
|
+
|
679
|
+
url: Optional[str] = None
|
680
|
+
metadata: Optional[Dict[str,str]] = None
|
681
|
+
|
682
|
+
|
677
683
|
class ProjectStore(BaseModel):
|
678
684
|
"""
|
679
685
|
|
@@ -708,10 +714,12 @@ class ProjectStore(BaseModel):
|
|
708
714
|
None, description="Allow data editing", alias="allowDataEditing"
|
709
715
|
)
|
710
716
|
|
717
|
+
files: Optional[List[ProjectStoreFile]] = Field(None, description="Files to load in the store")
|
718
|
+
|
711
719
|
|
712
720
|
class TaxonomyType(Enum):
|
713
721
|
"""
|
714
|
-
|
722
|
+
The type of taxonomy
|
715
723
|
"""
|
716
724
|
|
717
725
|
content = "CONTENT"
|
@@ -4318,6 +4326,9 @@ class Guidance(BaseModel):
|
|
4318
4326
|
priority: Optional[int] = 1
|
4319
4327
|
user_instructions: Optional[str] = Field(None, alias="userInstructions")
|
4320
4328
|
user_instructions_properties: Optional[Dict[str, Any]] = Field(None, alias="userInstructionsProperties")
|
4329
|
+
created: Optional[StandardDateTime] = None
|
4330
|
+
updated: Optional[StandardDateTime] = None
|
4331
|
+
userId: Optional[str] = Field(None, alias="userId")
|
4321
4332
|
|
4322
4333
|
# users selected text, text and line_uuid
|
4323
4334
|
user_selection: Optional[List[UserSelection]] = Field(None, alias="userSelection")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "kodexa"
|
3
|
-
version = "7.0.
|
3
|
+
version = "7.0.08694772302"
|
4
4
|
description = "Python SDK for the Kodexa Platform"
|
5
5
|
authors = ["Austin Redenbaugh <austin@kodexa.com>", "Philip Dodds <philip@kodexa.com>", "Romar Cablao <rcablao@kodexa.com>", "Amadea Paula Dodds <amadeapaula@kodexa.com>"]
|
6
6
|
readme = "README.md"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|