kodexa 7.0.8458473320__tar.gz → 7.0.8490893071__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.8458473320 → kodexa-7.0.8490893071}/PKG-INFO +1 -1
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/model/objects.py +16 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/pyproject.toml +1 -1
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/LICENSE +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/README.md +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/assistant/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/assistant/assistant.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/connectors/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/connectors/connectors.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/model/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/model/base.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/model/model.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/model/persistence.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/pipeline/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/pipeline/pipeline.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/platform/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/platform/client.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/platform/interaction.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/platform/kodexa.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/ast.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/core.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/lexrules.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/lextab.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/lextab.pyi +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/parserules.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/parserules.pyi +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/parsetab.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/selectors/parsetab.pyi +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/spatial/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/spatial/azure_models.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/spatial/bbox_common.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/spatial/table_form_common.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/steps/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/steps/common.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/testing/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/testing/test_components.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/testing/test_utils.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/training/__init__.py +0 -0
- {kodexa-7.0.8458473320 → kodexa-7.0.8490893071}/kodexa/training/train_utils.py +0 -0
@@ -2479,6 +2479,20 @@ class ProjectAssistant(BaseModel):
|
|
2479
2479
|
assistant_role: Optional[str] = Field(None, alias="assistantRole")
|
2480
2480
|
|
2481
2481
|
|
2482
|
+
class TaxonConditionalFormat(BaseModel):
|
2483
|
+
|
2484
|
+
model_config = ConfigDict(
|
2485
|
+
populate_by_name=True,
|
2486
|
+
use_enum_values=True,
|
2487
|
+
arbitrary_types_allowed=True,
|
2488
|
+
protected_namespaces=("model_config",),
|
2489
|
+
)
|
2490
|
+
|
2491
|
+
type: Optional[str] = None
|
2492
|
+
condition: Optional[str] = None
|
2493
|
+
properties: Optional[Dict[str, Any]] = Field(default_factory=dict)
|
2494
|
+
|
2495
|
+
|
2482
2496
|
class Taxon(BaseModel):
|
2483
2497
|
"""
|
2484
2498
|
|
@@ -2631,6 +2645,8 @@ class Taxon(BaseModel):
|
|
2631
2645
|
description="A list of synonyms of the taxon values, used to understand the taxon",
|
2632
2646
|
)
|
2633
2647
|
|
2648
|
+
conditional_formats: Optional[List[TaxonConditionalFormat]] = Field(None, alias="conditionalFormats")
|
2649
|
+
|
2634
2650
|
def update_path(self, parent_path=None):
|
2635
2651
|
if parent_path is None:
|
2636
2652
|
parent_path = ""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "kodexa"
|
3
|
-
version = "7.0.
|
3
|
+
version = "7.0.08490893071"
|
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
|