kodexa 7.0.9706058442__py3-none-any.whl → 7.0.9774637276__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.
- kodexa/model/objects.py +2 -2
- kodexa/platform/client.py +2 -2
- {kodexa-7.0.9706058442.dist-info → kodexa-7.0.9774637276.dist-info}/METADATA +1 -1
- {kodexa-7.0.9706058442.dist-info → kodexa-7.0.9774637276.dist-info}/RECORD +6 -6
- {kodexa-7.0.9706058442.dist-info → kodexa-7.0.9774637276.dist-info}/LICENSE +0 -0
- {kodexa-7.0.9706058442.dist-info → kodexa-7.0.9774637276.dist-info}/WHEEL +0 -0
kodexa/model/objects.py
CHANGED
@@ -5073,7 +5073,7 @@ class ModelContentMetadata(BaseModel):
|
|
5073
5073
|
description="This are additional properties that can be set on a label when the model is part of the project",
|
5074
5074
|
)
|
5075
5075
|
|
5076
|
-
taxon_features: Optional[TaxonFeatures] = Field(
|
5076
|
+
taxon_features: Optional[List[TaxonFeatures]] = Field(
|
5077
5077
|
None,
|
5078
5078
|
alias="taxonFeatures",
|
5079
5079
|
description="This are additional properties that can be set as part of the taxon in the taxonomy (not a label but at the taxon level) they will be stored under the type_features",
|
@@ -5171,7 +5171,7 @@ class AssistantDefinition(ExtensionPackProvided):
|
|
5171
5171
|
alias="additionalTaxonOptions",
|
5172
5172
|
description="This are additional properties that can be set on a label when the assistant is part of the project",
|
5173
5173
|
)
|
5174
|
-
taxon_features: Optional[TaxonFeatures] = Field(
|
5174
|
+
taxon_features: Optional[List[TaxonFeatures]] = Field(
|
5175
5175
|
None,
|
5176
5176
|
alias="taxonFeatures",
|
5177
5177
|
description="This are additional properties that can be set as part of the taxon in the taxonomy (not a label but at the taxon level) they will be stored under the type_features",
|
kodexa/platform/client.py
CHANGED
@@ -2235,7 +2235,7 @@ class ProjectGuidanceSetsEndpoint(ProjectResourceEndpoint):
|
|
2235
2235
|
return "guidance"
|
2236
2236
|
|
2237
2237
|
def get_instance_class(self, object_dict=None):
|
2238
|
-
return
|
2238
|
+
return GuidanceSetEndpoint
|
2239
2239
|
|
2240
2240
|
|
2241
2241
|
class ProjectDataFormEndpoint(ProjectResourceEndpoint):
|
@@ -2537,7 +2537,7 @@ class ProjectEndpoint(EntityEndpoint, Project):
|
|
2537
2537
|
stores: List["StoreEndpoint"] = None,
|
2538
2538
|
taxonomies: List["TaxonomyEndpoint"] = None,
|
2539
2539
|
data_forms: List["DataFormEndpoint"] = None,
|
2540
|
-
guidance: List["
|
2540
|
+
guidance: List["GuidanceSetEndpoint"] = None,
|
2541
2541
|
dashboards: List["DashboardEndpoint"] = None,
|
2542
2542
|
):
|
2543
2543
|
"""Update the resources of the project.
|
@@ -9,12 +9,12 @@ kodexa/model/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
9
9
|
kodexa/model/entities/product.py,sha256=ZDpHuBE_9FJ-klnkyBvTfPwYOqBkM1wraZMtHqNA8FQ,3526
|
10
10
|
kodexa/model/entities/product_subscription.py,sha256=UcmWR-qgLfdV7VCtJNwzgkanoS8nBSL6ngVuxQUK1M8,3810
|
11
11
|
kodexa/model/model.py,sha256=BURhrOEVTTlKkDJho5CEFeLR9Dyq157mztlvbAdL1d4,115769
|
12
|
-
kodexa/model/objects.py,sha256=
|
12
|
+
kodexa/model/objects.py,sha256=Rxa9gljfs2bq2UrRfsDJKerBvlEA8WY5wiDriqROBYU,175797
|
13
13
|
kodexa/model/persistence.py,sha256=sx5FwTSsWMdAZpAs0-6PqyULHkQyNQClApUKJZ-ly8M,62032
|
14
14
|
kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
|
15
15
|
kodexa/pipeline/pipeline.py,sha256=ZYpJAWcwV4YRK589DUhU0vXGQlkNSj4J2TsGbYqTLjo,25221
|
16
16
|
kodexa/platform/__init__.py,sha256=1O3oiWMg292NPL_NacKDnK1T3_R6cMorrPRue_9e-O4,216
|
17
|
-
kodexa/platform/client.py,sha256=
|
17
|
+
kodexa/platform/client.py,sha256=htzLV7xdiYIdO5d8essrjtRhUgUQwVc7sAKHO8ijqjQ,221173
|
18
18
|
kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
|
19
19
|
kodexa/platform/kodexa.py,sha256=Bvf6x43FWsFuAuQ4N8TvjSZq6niEtBTESmFCWVPASeQ,34024
|
20
20
|
kodexa/selectors/__init__.py,sha256=xA9-4vpyaAZWPSk3bh2kvDLkdv6XEmm7PjFbpziiTIk,100
|
@@ -38,7 +38,7 @@ kodexa/testing/test_components.py,sha256=g5lP-GY0nTHuH5cIEw45vIejEeBaWkPKQGHL36j
|
|
38
38
|
kodexa/testing/test_utils.py,sha256=DrLCkHxdb6AbZ-X3WmTMbQmnVIm55VEBL8MjtUK9POs,14021
|
39
39
|
kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
|
40
40
|
kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
-
kodexa-7.0.
|
42
|
-
kodexa-7.0.
|
43
|
-
kodexa-7.0.
|
44
|
-
kodexa-7.0.
|
41
|
+
kodexa-7.0.9774637276.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
42
|
+
kodexa-7.0.9774637276.dist-info/METADATA,sha256=hN0bao1YNMConcwbZJGPk8eSQLRiFQSeFHDDjBTiwCM,3486
|
43
|
+
kodexa-7.0.9774637276.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
44
|
+
kodexa-7.0.9774637276.dist-info/RECORD,,
|
File without changes
|
File without changes
|