kodexa 7.0.8895840398__py3-none-any.whl → 7.0.8897197016__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/entities/__init__.py +0 -0
- kodexa/model/entities/product.py +3 -4
- kodexa/model/entities/product_subscription.py +2 -3
- kodexa/model/objects.py +32 -32
- kodexa/platform/client.py +44 -0
- {kodexa-7.0.8895840398.dist-info → kodexa-7.0.8897197016.dist-info}/METADATA +1 -1
- {kodexa-7.0.8895840398.dist-info → kodexa-7.0.8897197016.dist-info}/RECORD +9 -8
- {kodexa-7.0.8895840398.dist-info → kodexa-7.0.8897197016.dist-info}/LICENSE +0 -0
- {kodexa-7.0.8895840398.dist-info → kodexa-7.0.8897197016.dist-info}/WHEEL +0 -0
File without changes
|
kodexa/model/entities/product.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1
|
-
from dataclasses import Field
|
2
1
|
from typing import Optional, List
|
3
2
|
|
4
|
-
from pydantic import BaseModel, ConfigDict
|
5
|
-
|
3
|
+
from pydantic import BaseModel, ConfigDict, Field
|
6
4
|
from kodexa.model.base import StandardDateTime
|
7
5
|
from kodexa.platform.client import EntityEndpoint, PageEndpoint, EntitiesEndpoint
|
8
6
|
|
@@ -21,7 +19,8 @@ class Product(BaseModel):
|
|
21
19
|
A product
|
22
20
|
"""
|
23
21
|
|
24
|
-
|
22
|
+
|
23
|
+
id: Optional[str] = None
|
25
24
|
uuid: Optional[str] = None
|
26
25
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
27
26
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1,7 +1,6 @@
|
|
1
|
-
from dataclasses import Field
|
2
1
|
from typing import Optional, List
|
3
2
|
|
4
|
-
from pydantic import BaseModel, ConfigDict
|
3
|
+
from pydantic import BaseModel, ConfigDict, Field
|
5
4
|
|
6
5
|
from kodexa.model.base import StandardDateTime
|
7
6
|
from kodexa.model.entities.product import Product
|
@@ -20,7 +19,7 @@ class ProductSubscription(BaseModel):
|
|
20
19
|
protected_namespaces=("model_config",),
|
21
20
|
)
|
22
21
|
|
23
|
-
id: Optional[str] = Field(None
|
22
|
+
id: Optional[str] = Field(None)
|
24
23
|
uuid: Optional[str] = None
|
25
24
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
26
25
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
kodexa/model/objects.py
CHANGED
@@ -218,7 +218,7 @@ class Organization(BaseModel):
|
|
218
218
|
arbitrary_types_allowed=True,
|
219
219
|
protected_namespaces=("model_config",),
|
220
220
|
)
|
221
|
-
id: Optional[str] = Field(None
|
221
|
+
id: Optional[str] = Field(None)
|
222
222
|
uuid: Optional[str] = None
|
223
223
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
224
224
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -240,7 +240,7 @@ class Team(BaseModel):
|
|
240
240
|
arbitrary_types_allowed=True,
|
241
241
|
protected_namespaces=("model_config",),
|
242
242
|
)
|
243
|
-
id: Optional[str] = Field(None
|
243
|
+
id: Optional[str] = Field(None)
|
244
244
|
uuid: Optional[str] = None
|
245
245
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
246
246
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1115,7 +1115,7 @@ class AttributeStatus(BaseModel):
|
|
1115
1115
|
arbitrary_types_allowed=True,
|
1116
1116
|
protected_namespaces=("model_config",),
|
1117
1117
|
)
|
1118
|
-
id: Optional[str] = Field(None
|
1118
|
+
id: Optional[str] = Field(None)
|
1119
1119
|
uuid: Optional[str] = None
|
1120
1120
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
1121
1121
|
updated_on: Optional[StandardDateTime] = Field(None, alias="updatedOn")
|
@@ -1202,7 +1202,7 @@ class DocumentStatus(BaseModel):
|
|
1202
1202
|
arbitrary_types_allowed=True,
|
1203
1203
|
protected_namespaces=("model_config",),
|
1204
1204
|
)
|
1205
|
-
id: Optional[str] = Field(None
|
1205
|
+
id: Optional[str] = Field(None)
|
1206
1206
|
uuid: Optional[str] = None
|
1207
1207
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1208
1208
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1237,7 +1237,7 @@ class DocumentTransition(BaseModel):
|
|
1237
1237
|
Provides the definition of a transition for a document, where a change was applied by an assistant, user or external process
|
1238
1238
|
"""
|
1239
1239
|
|
1240
|
-
id: Optional[str] = Field(None
|
1240
|
+
id: Optional[str] = Field(None)
|
1241
1241
|
uuid: Optional[str] = None
|
1242
1242
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1243
1243
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1417,7 +1417,7 @@ class Label(BaseModel):
|
|
1417
1417
|
The labels from the latest content object in the family
|
1418
1418
|
"""
|
1419
1419
|
|
1420
|
-
id: Optional[str] = Field(None
|
1420
|
+
id: Optional[str] = Field(None)
|
1421
1421
|
uuid: Optional[str] = None
|
1422
1422
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1423
1423
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1441,7 +1441,7 @@ class ProjectTag(BaseModel):
|
|
1441
1441
|
A project tag
|
1442
1442
|
"""
|
1443
1443
|
|
1444
|
-
id: Optional[str] = Field(None
|
1444
|
+
id: Optional[str] = Field(None)
|
1445
1445
|
name: str
|
1446
1446
|
color: Optional[str] = None
|
1447
1447
|
|
@@ -1519,7 +1519,7 @@ class Session(BaseModel):
|
|
1519
1519
|
arbitrary_types_allowed=True,
|
1520
1520
|
protected_namespaces=("model_config",),
|
1521
1521
|
)
|
1522
|
-
id: Optional[str] = Field(None
|
1522
|
+
id: Optional[str] = Field(None)
|
1523
1523
|
uuid: Optional[str] = None
|
1524
1524
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1525
1525
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1578,7 +1578,7 @@ class ValidationError(BaseModel):
|
|
1578
1578
|
arbitrary_types_allowed=True,
|
1579
1579
|
protected_namespaces=("model_config",),
|
1580
1580
|
)
|
1581
|
-
id: Optional[str] = Field(None
|
1581
|
+
id: Optional[str] = Field(None)
|
1582
1582
|
uuid: Optional[str] = None
|
1583
1583
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
1584
1584
|
updated_on: Optional[StandardDateTime] = Field(None, alias="updatedOn")
|
@@ -1672,7 +1672,7 @@ class DataException(BaseModel):
|
|
1672
1672
|
A data exception
|
1673
1673
|
"""
|
1674
1674
|
|
1675
|
-
id: Optional[str] = Field(None
|
1675
|
+
id: Optional[str] = Field(None)
|
1676
1676
|
uuid: Optional[str] = None
|
1677
1677
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1678
1678
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1822,7 +1822,7 @@ class PlatformConfiguration(BaseModel):
|
|
1822
1822
|
arbitrary_types_allowed=True,
|
1823
1823
|
protected_namespaces=("model_config",),
|
1824
1824
|
)
|
1825
|
-
id: Optional[str] = Field(None
|
1825
|
+
id: Optional[str] = Field(None)
|
1826
1826
|
uuid: Optional[str] = None
|
1827
1827
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1828
1828
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -1874,7 +1874,7 @@ class ModelTraining(BaseModel):
|
|
1874
1874
|
arbitrary_types_allowed=True,
|
1875
1875
|
protected_namespaces=("model_config",),
|
1876
1876
|
)
|
1877
|
-
id: Optional[str] = Field(None
|
1877
|
+
id: Optional[str] = Field(None)
|
1878
1878
|
uuid: Optional[str] = None
|
1879
1879
|
name: Optional[str] = None
|
1880
1880
|
state: Optional[str] = None
|
@@ -1967,7 +1967,7 @@ class ExecutionLogEntry(BaseModel):
|
|
1967
1967
|
arbitrary_types_allowed=True,
|
1968
1968
|
protected_namespaces=("model_config",),
|
1969
1969
|
)
|
1970
|
-
id: Optional[str] = Field(None
|
1970
|
+
id: Optional[str] = Field(None)
|
1971
1971
|
uuid: Optional[str] = None
|
1972
1972
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
1973
1973
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -2194,7 +2194,7 @@ class User(BaseModel):
|
|
2194
2194
|
A user within the Kodexa platform
|
2195
2195
|
"""
|
2196
2196
|
|
2197
|
-
id: Optional[str] = Field(None
|
2197
|
+
id: Optional[str] = Field(None)
|
2198
2198
|
uuid: Optional[str] = None
|
2199
2199
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
2200
2200
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -2684,7 +2684,7 @@ class ContentObject(BaseModel):
|
|
2684
2684
|
arbitrary_types_allowed=True,
|
2685
2685
|
protected_namespaces=("model_config",),
|
2686
2686
|
)
|
2687
|
-
id: Optional[str] = Field(None
|
2687
|
+
id: Optional[str] = Field(None)
|
2688
2688
|
uuid: Optional[str] = None
|
2689
2689
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
2690
2690
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -2718,7 +2718,7 @@ class DocumentAssignment(BaseModel):
|
|
2718
2718
|
A list of the assignments to users for this document
|
2719
2719
|
"""
|
2720
2720
|
|
2721
|
-
id: Optional[str] = Field(None
|
2721
|
+
id: Optional[str] = Field(None)
|
2722
2722
|
uuid: Optional[str] = None
|
2723
2723
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
2724
2724
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -2795,7 +2795,7 @@ class ProjectStatus(BaseModel):
|
|
2795
2795
|
arbitrary_types_allowed=True,
|
2796
2796
|
protected_namespaces=("model_config",),
|
2797
2797
|
)
|
2798
|
-
id: Optional[str] = Field(None
|
2798
|
+
id: Optional[str] = Field(None)
|
2799
2799
|
uuid: Optional[str] = None
|
2800
2800
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
2801
2801
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -2825,7 +2825,7 @@ class Project(BaseModel):
|
|
2825
2825
|
arbitrary_types_allowed=True,
|
2826
2826
|
protected_namespaces=("model_config",),
|
2827
2827
|
)
|
2828
|
-
id: Optional[str] = Field(None
|
2828
|
+
id: Optional[str] = Field(None)
|
2829
2829
|
uuid: Optional[str] = None
|
2830
2830
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
2831
2831
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3119,7 +3119,7 @@ class DataAttribute(BaseModel):
|
|
3119
3119
|
arbitrary_types_allowed=True,
|
3120
3120
|
protected_namespaces=("model_config",),
|
3121
3121
|
)
|
3122
|
-
id: Optional[str] = Field(None
|
3122
|
+
id: Optional[str] = Field(None)
|
3123
3123
|
uuid: Optional[str] = None
|
3124
3124
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3125
3125
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3164,7 +3164,7 @@ class Role(BaseModel):
|
|
3164
3164
|
A role that can be used to manage rights
|
3165
3165
|
"""
|
3166
3166
|
|
3167
|
-
id: Optional[str] = Field(None
|
3167
|
+
id: Optional[str] = Field(None)
|
3168
3168
|
uuid: Optional[str] = None
|
3169
3169
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3170
3170
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3184,7 +3184,7 @@ class Membership(BaseModel):
|
|
3184
3184
|
arbitrary_types_allowed=True,
|
3185
3185
|
protected_namespaces=("model_config",),
|
3186
3186
|
)
|
3187
|
-
id: Optional[str] = Field(None
|
3187
|
+
id: Optional[str] = Field(None)
|
3188
3188
|
uuid: Optional[str] = None
|
3189
3189
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3190
3190
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3614,7 +3614,7 @@ class ContentException(BaseModel):
|
|
3614
3614
|
A list of the content exceptions from the content objects
|
3615
3615
|
"""
|
3616
3616
|
|
3617
|
-
id: Optional[str] = Field(None
|
3617
|
+
id: Optional[str] = Field(None)
|
3618
3618
|
uuid: Optional[str] = None
|
3619
3619
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3620
3620
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3693,7 +3693,7 @@ class Execution(BaseModel):
|
|
3693
3693
|
arbitrary_types_allowed=True,
|
3694
3694
|
protected_namespaces=("model_config",),
|
3695
3695
|
)
|
3696
|
-
id: Optional[str] = Field(None
|
3696
|
+
id: Optional[str] = Field(None)
|
3697
3697
|
uuid: Optional[str] = None
|
3698
3698
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3699
3699
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3728,7 +3728,7 @@ class ExecutionSnapshot(BaseModel):
|
|
3728
3728
|
arbitrary_types_allowed=True,
|
3729
3729
|
protected_namespaces=("model_config",),
|
3730
3730
|
)
|
3731
|
-
id: Optional[str] = Field(None
|
3731
|
+
id: Optional[str] = Field(None)
|
3732
3732
|
uuid: Optional[str] = None
|
3733
3733
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3734
3734
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3864,7 +3864,7 @@ class DocumentFamily(BaseModel):
|
|
3864
3864
|
A document family is the representation of a single piece of external content (ie. a PDF) and all the related document representations of that file
|
3865
3865
|
"""
|
3866
3866
|
|
3867
|
-
id: Optional[str] = Field(None
|
3867
|
+
id: Optional[str] = Field(None)
|
3868
3868
|
uuid: Optional[str] = None
|
3869
3869
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3870
3870
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -3963,7 +3963,7 @@ class ExecutionAssistant(BaseModel):
|
|
3963
3963
|
arbitrary_types_allowed=True,
|
3964
3964
|
protected_namespaces=("model_config",),
|
3965
3965
|
)
|
3966
|
-
id: Optional[str] = Field(None
|
3966
|
+
id: Optional[str] = Field(None)
|
3967
3967
|
uuid: Optional[str] = None
|
3968
3968
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
3969
3969
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4010,7 +4010,7 @@ class DataObject(BaseModel):
|
|
4010
4010
|
arbitrary_types_allowed=True,
|
4011
4011
|
protected_namespaces=("model_config",),
|
4012
4012
|
)
|
4013
|
-
id: Optional[str] = Field(None
|
4013
|
+
id: Optional[str] = Field(None)
|
4014
4014
|
uuid: Optional[str] = None
|
4015
4015
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4016
4016
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4042,7 +4042,7 @@ class Assistant(BaseModel):
|
|
4042
4042
|
arbitrary_types_allowed=True,
|
4043
4043
|
protected_namespaces=("model_config",),
|
4044
4044
|
)
|
4045
|
-
id: Optional[str] = Field(None
|
4045
|
+
id: Optional[str] = Field(None)
|
4046
4046
|
uuid: Optional[str] = None
|
4047
4047
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4048
4048
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4248,7 +4248,7 @@ class ExecutionEvent(BaseModel):
|
|
4248
4248
|
arbitrary_types_allowed=True,
|
4249
4249
|
protected_namespaces=("model_config",),
|
4250
4250
|
)
|
4251
|
-
id: Optional[str] = Field(None
|
4251
|
+
id: Optional[str] = Field(None)
|
4252
4252
|
uuid: Optional[str] = None
|
4253
4253
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4254
4254
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4476,7 +4476,7 @@ class SearchContent(BaseModel):
|
|
4476
4476
|
A document family is the representation of a single peice of external content (ie. a PDF) and all the related document representations of that file
|
4477
4477
|
"""
|
4478
4478
|
|
4479
|
-
id: Optional[str] = Field(None
|
4479
|
+
id: Optional[str] = Field(None)
|
4480
4480
|
uuid: Optional[str] = None
|
4481
4481
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4482
4482
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4560,7 +4560,7 @@ class PlatformEvent(BaseModel):
|
|
4560
4560
|
arbitrary_types_allowed=True,
|
4561
4561
|
protected_namespaces=("model_config",),
|
4562
4562
|
)
|
4563
|
-
id: Optional[str] = Field(None
|
4563
|
+
id: Optional[str] = Field(None)
|
4564
4564
|
uuid: Optional[str] = None
|
4565
4565
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4566
4566
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
@@ -4617,7 +4617,7 @@ class AuditEvent(BaseModel):
|
|
4617
4617
|
An audit event captures a data to a data structure or document
|
4618
4618
|
"""
|
4619
4619
|
|
4620
|
-
id: Optional[str] = Field(None
|
4620
|
+
id: Optional[str] = Field(None)
|
4621
4621
|
uuid: Optional[str] = None
|
4622
4622
|
change_sequence: Optional[int] = Field(None, alias="changeSequence")
|
4623
4623
|
created_on: Optional[StandardDateTime] = Field(None, alias="createdOn")
|
kodexa/platform/client.py
CHANGED
@@ -888,6 +888,44 @@ class OrganizationsEndpoint(EntitiesEndpoint):
|
|
888
888
|
return None
|
889
889
|
return organizations.content[0]
|
890
890
|
|
891
|
+
def get_subscriptions(self, page: int = 1, page_size: int = 10) -> "PageProductSubscriptionEndpoint":
|
892
|
+
"""
|
893
|
+
Get the subscriptions of the organization.
|
894
|
+
|
895
|
+
Returns:
|
896
|
+
The subscriptions of the organization.
|
897
|
+
"""
|
898
|
+
url = f"/api/productSubscriptions"
|
899
|
+
params = {
|
900
|
+
filter: f"organization.id: '{self.organization.id}'",
|
901
|
+
}
|
902
|
+
response = self.client.get(url, params=params)
|
903
|
+
|
904
|
+
from kodexa.model.entities.product_subscription import PageProductSubscriptionEndpoint
|
905
|
+
return PageProductSubscriptionEndpoint.model_validate(response.json()).set_client(self.client)
|
906
|
+
|
907
|
+
def remove_subscription(self, subscription_id: str) -> None:
|
908
|
+
"""
|
909
|
+
Remove a subscription from the organization.
|
910
|
+
|
911
|
+
Args:
|
912
|
+
subscription_id (str): The id of the subscription to remove.
|
913
|
+
"""
|
914
|
+
url = f"/api/productSubscriptions/{subscription_id}"
|
915
|
+
self.client.delete(url)
|
916
|
+
|
917
|
+
def add_subscription(self, product: "Product") -> None:
|
918
|
+
"""
|
919
|
+
Add a subscription to the organization.
|
920
|
+
|
921
|
+
Args:
|
922
|
+
product (Product): The product to subscribe to.
|
923
|
+
"""
|
924
|
+
url = f"/api/productSubscriptions"
|
925
|
+
from kodexa.model.entities.product_subscription import ProductSubscription
|
926
|
+
new_product_subscription = ProductSubscription(organization=self.organization, product=product)
|
927
|
+
self.client.post(url, body=new_product_subscription.model_dump_json(by_alias=True))
|
928
|
+
|
891
929
|
|
892
930
|
class PageEndpoint(ClientEndpoint):
|
893
931
|
"""
|
@@ -6184,6 +6222,8 @@ class KodexaClient:
|
|
6184
6222
|
self.channels = ChannelsEndpoint(self)
|
6185
6223
|
self.assistants = AssistantsEndpoint(self)
|
6186
6224
|
self.messages = MessagesEndpoint(self)
|
6225
|
+
from kodexa.model.entities.product import ProductsEndpoint
|
6226
|
+
self.products = ProductsEndpoint(self)
|
6187
6227
|
|
6188
6228
|
@staticmethod
|
6189
6229
|
def login(url, token):
|
@@ -6733,6 +6773,8 @@ class KodexaClient:
|
|
6733
6773
|
|
6734
6774
|
raise Exception("A store must have a storeType")
|
6735
6775
|
|
6776
|
+
from kodexa.model.entities.product import ProductEndpoint
|
6777
|
+
from kodexa.model.entities.product_subscription import ProductSubscriptionEndpoint
|
6736
6778
|
known_components = {
|
6737
6779
|
"taxonomy": TaxonomyEndpoint,
|
6738
6780
|
"pipeline": PipelineEndpoint,
|
@@ -6756,6 +6798,8 @@ class KodexaClient:
|
|
6756
6798
|
"prompt": PromptEndpoint,
|
6757
6799
|
"guidance": GuidanceSetEndpoint,
|
6758
6800
|
"channel": ChannelEndpoint,
|
6801
|
+
"product": ProductEndpoint,
|
6802
|
+
"productSubscription": ProductSubscriptionEndpoint,
|
6759
6803
|
}
|
6760
6804
|
|
6761
6805
|
if component_type in known_components:
|
@@ -5,15 +5,16 @@ kodexa/connectors/__init__.py,sha256=WF6G_MUeU32TlKSUKkpNoNX7dq8iBPliFMep4E8BmZc
|
|
5
5
|
kodexa/connectors/connectors.py,sha256=FpUZDkSyHld2b9eYRuVOWzaFtuGoaRuPXXicJB7THbc,10413
|
6
6
|
kodexa/model/__init__.py,sha256=rtLXYJBxB-rnukhslN9rlqoB3--1H3253HyHGbD_Gc8,796
|
7
7
|
kodexa/model/base.py,sha256=CaZK8nMhT1LdCpt4aLhebJGcorjq9qRID1FjnXnP14M,521
|
8
|
-
kodexa/model/entities/
|
9
|
-
kodexa/model/entities/
|
8
|
+
kodexa/model/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
kodexa/model/entities/product.py,sha256=ZDpHuBE_9FJ-klnkyBvTfPwYOqBkM1wraZMtHqNA8FQ,3526
|
10
|
+
kodexa/model/entities/product_subscription.py,sha256=vWKYo3OWlLdQIIp7onjT8R5FTHnm7ZwpdP3DrbQ2FfA,3814
|
10
11
|
kodexa/model/model.py,sha256=xAUPiW_1V9Kn9yitrvKFVuG_ms_N4HlAx23dwGln8Ro,115561
|
11
|
-
kodexa/model/objects.py,sha256=
|
12
|
+
kodexa/model/objects.py,sha256=aMDDBN3sKMsSvz3i5ZjDof1oFaTNQ65W87GJh7l9GoY,174318
|
12
13
|
kodexa/model/persistence.py,sha256=sx5FwTSsWMdAZpAs0-6PqyULHkQyNQClApUKJZ-ly8M,62032
|
13
14
|
kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
|
14
15
|
kodexa/pipeline/pipeline.py,sha256=ZYpJAWcwV4YRK589DUhU0vXGQlkNSj4J2TsGbYqTLjo,25221
|
15
16
|
kodexa/platform/__init__.py,sha256=1O3oiWMg292NPL_NacKDnK1T3_R6cMorrPRue_9e-O4,216
|
16
|
-
kodexa/platform/client.py,sha256=
|
17
|
+
kodexa/platform/client.py,sha256=w8SZFUNy9bKvbsWnnfXLlKapM53ZXtJh8GDE5QFvYi4,216867
|
17
18
|
kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
|
18
19
|
kodexa/platform/kodexa.py,sha256=Bvf6x43FWsFuAuQ4N8TvjSZq6niEtBTESmFCWVPASeQ,34024
|
19
20
|
kodexa/selectors/__init__.py,sha256=xA9-4vpyaAZWPSk3bh2kvDLkdv6XEmm7PjFbpziiTIk,100
|
@@ -37,7 +38,7 @@ kodexa/testing/test_components.py,sha256=g5lP-GY0nTHuH5cIEw45vIejEeBaWkPKQGHL36j
|
|
37
38
|
kodexa/testing/test_utils.py,sha256=DrLCkHxdb6AbZ-X3WmTMbQmnVIm55VEBL8MjtUK9POs,14021
|
38
39
|
kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
|
39
40
|
kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
kodexa-7.0.
|
41
|
-
kodexa-7.0.
|
42
|
-
kodexa-7.0.
|
43
|
-
kodexa-7.0.
|
41
|
+
kodexa-7.0.8897197016.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
42
|
+
kodexa-7.0.8897197016.dist-info/METADATA,sha256=zpuMYng4et9dXwqOqfQ-pHiKQdJuf5_DGRn7pZY5IQQ,3493
|
43
|
+
kodexa-7.0.8897197016.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
44
|
+
kodexa-7.0.8897197016.dist-info/RECORD,,
|
File without changes
|
File without changes
|