kodexa 7.0.1a9194120328__py3-none-any.whl → 7.0.1a9196705380__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/platform/client.py CHANGED
@@ -2151,13 +2151,13 @@ class ProjectTaxonomiesEndpoint(ProjectResourceEndpoint):
2151
2151
  return TaxonomyEndpoint
2152
2152
 
2153
2153
 
2154
- class ProjectGuidanceEndpoint(ProjectResourceEndpoint):
2154
+ class ProjectGuidanceSetsEndpoint(ProjectResourceEndpoint):
2155
2155
 
2156
2156
  def get_type(self) -> str:
2157
2157
  return "guidance"
2158
2158
 
2159
2159
  def get_instance_class(self, object_dict=None):
2160
- return GuidanceSetEndpoint
2160
+ return GuidanceSetsEndpoint
2161
2161
 
2162
2162
 
2163
2163
  class ProjectDataFormEndpoint(ProjectResourceEndpoint):
@@ -2459,7 +2459,7 @@ class ProjectEndpoint(EntityEndpoint, Project):
2459
2459
  stores: List["StoreEndpoint"] = None,
2460
2460
  taxonomies: List["TaxonomyEndpoint"] = None,
2461
2461
  data_forms: List["DataFormEndpoint"] = None,
2462
- guidance: List["GuidanceSetEndpoint"] = None,
2462
+ guidance: List["GuidanceSetsEndpoint"] = None,
2463
2463
  dashboards: List["DashboardEndpoint"] = None,
2464
2464
  ):
2465
2465
  """Update the resources of the project.
@@ -2546,7 +2546,7 @@ class ProjectEndpoint(EntityEndpoint, Project):
2546
2546
  Returns:
2547
2547
  GuidanceSetsEndpoint: The guidance sets endpoint of the project.
2548
2548
  """
2549
- return ProjectGuidanceEndpoint().set_client(self.client).set_project(self)
2549
+ return ProjectGuidanceSetEndpoint().set_client(self.client).set_project(self)
2550
2550
 
2551
2551
  @property
2552
2552
  def assistants(self) -> ProjectAssistantsEndpoint:
@@ -2582,42 +2582,6 @@ class ProjectEndpoint(EntityEndpoint, Project):
2582
2582
  return [ProjectTag.model_validate(tag) for tag in response.json()]
2583
2583
 
2584
2584
 
2585
- class GuidanceSetsEndpoint(EntitiesEndpoint):
2586
- """Represents a message endpoint"""
2587
-
2588
- def get_type(self) -> str:
2589
- """
2590
- Get the type of the endpoint.
2591
-
2592
- Returns:
2593
- str: The type of the endpoint, in this case "guidance".
2594
- """
2595
- return "guidance"
2596
-
2597
- def get_instance_class(self, object_dict=None):
2598
- """
2599
- Get the instance class of the endpoint.
2600
-
2601
- Args:
2602
- object_dict (dict, optional): An optional dictionary object. Defaults to None.
2603
-
2604
- Returns:
2605
- GuidanceSetEndpoint: The instance class of the endpoint.
2606
- """
2607
- return GuidanceSetEndpoint
2608
-
2609
- def get_page_class(self, object_dict=None):
2610
- """
2611
- Get the page class of the endpoint.
2612
-
2613
- Args:
2614
- object_dict (dict, optional): An optional dictionary object. Defaults to None.
2615
-
2616
- Returns:
2617
- PageGuidanceSetEndpoint: The page class of the endpoint.
2618
- """
2619
- return PageGuidanceSetEndpoint
2620
-
2621
2585
 
2622
2586
  class MessagesEndpoint(EntitiesEndpoint):
2623
2587
  """Represents a message endpoint"""
@@ -3003,9 +2967,9 @@ class StoresEndpoint(ComponentEndpoint, ClientEndpoint, OrganizationOwned):
3003
2967
  raise ValueError(f"Unknown store type {object_dict['storeType']}")
3004
2968
 
3005
2969
 
3006
- class GuidanceEndpoint(ComponentEndpoint, ClientEndpoint, OrganizationOwned):
2970
+ class GuidanceSetsEndpoint(ComponentEndpoint, ClientEndpoint, OrganizationOwned):
3007
2971
  """
3008
- Represents a guidance endpoint.
2972
+ Represents a guidance set endpoint.
3009
2973
 
3010
2974
  This class is used to interact with the guidance endpoint of the API.
3011
2975
  It provides methods to get the type, page class, and instance class of the endpoint,
@@ -6027,7 +5991,7 @@ OBJECT_TYPES = {
6027
5991
  "name": "guidance",
6028
5992
  "plural": "guidance",
6029
5993
  "type": GuidanceSetEndpoint,
6030
- "endpoint": GuidanceEndpoint,
5994
+ "endpoint": GuidanceSetsEndpoint,
6031
5995
  },
6032
5996
  "modelRuntimes": {
6033
5997
  "name": "modelRuntime",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kodexa
3
- Version: 7.0.1a9194120328
3
+ Version: 7.0.1a9196705380
4
4
  Summary: Python SDK for the Kodexa Platform
5
5
  Author: Austin Redenbaugh
6
6
  Author-email: austin@kodexa.com
@@ -14,7 +14,7 @@ kodexa/model/persistence.py,sha256=sx5FwTSsWMdAZpAs0-6PqyULHkQyNQClApUKJZ-ly8M,6
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=vFRNeeyCZF85L80S17rxJ-ckstSgZenxp6u2pwZeXB0,218990
17
+ kodexa/platform/client.py,sha256=ZfdDS0L0DK6Zi88fe2cYCcCqQRLamv2ARXkXL4Z7xww,218016
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.1a9194120328.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
42
- kodexa-7.0.1a9194120328.dist-info/METADATA,sha256=y0Po_nR1acJli4IdPUPbPmNX0yMfgJEbGkzdig2kT74,3488
43
- kodexa-7.0.1a9194120328.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
44
- kodexa-7.0.1a9194120328.dist-info/RECORD,,
41
+ kodexa-7.0.1a9196705380.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
42
+ kodexa-7.0.1a9196705380.dist-info/METADATA,sha256=NWe1rHgXrTCXOXoFrj5Tb3C0yHbuViVtsZ_naHdG8WA,3488
43
+ kodexa-7.0.1a9196705380.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
44
+ kodexa-7.0.1a9196705380.dist-info/RECORD,,