kodexa 7.4.413425371807__py3-none-any.whl → 7.4.413440412847__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 CHANGED
@@ -2899,7 +2899,6 @@ class ProjectOptions(BaseModel):
2899
2899
  )
2900
2900
 
2901
2901
 
2902
-
2903
2902
  class Project(BaseModel):
2904
2903
  model_config = ConfigDict(
2905
2904
  populate_by_name=True,
@@ -2935,6 +2934,9 @@ class Project(BaseModel):
2935
2934
  document_statuses: Optional[List[DocumentStatus]] = Field(
2936
2935
  None, alias="documentStatuses"
2937
2936
  )
2937
+ task_statuses: Optional[List[TaskStatus]] = Field(
2938
+ None, alias="taskStatuses"
2939
+ )
2938
2940
  attribute_statuses: Optional[List[AttributeStatus]] = Field(
2939
2941
  None, alias="attributeStatuses"
2940
2942
  )
kodexa/platform/client.py CHANGED
@@ -2683,21 +2683,6 @@ class WorkspaceEndpoint(EntityEndpoint, Workspace):
2683
2683
  raise ValueError("Workspace has no channel")
2684
2684
 
2685
2685
 
2686
- class TaskTemplateEndpoint(EntityEndpoint, Task):
2687
- """Represents a task endpoint.
2688
-
2689
- This class is used to interact with the task endpoint of the API.
2690
- """
2691
-
2692
- def get_type(self) -> str:
2693
- """Get the type of the endpoint.
2694
-
2695
- Returns:
2696
- str: The type of the endpoint, in this case "projects".
2697
- """
2698
- return "taskTemplates"
2699
-
2700
-
2701
2686
  class RetainedGuidanceEndpoint(EntityEndpoint, RetainedGuidance):
2702
2687
  """Represents a retained guidance endpoint.
2703
2688
 
@@ -3043,70 +3028,6 @@ class AssistantsEndpoint(EntitiesEndpoint):
3043
3028
  return PageAssistantEndpoint
3044
3029
 
3045
3030
 
3046
- class TaskTemplatesEndpoint(EntitiesEndpoint):
3047
- """Represents a projects endpoint"""
3048
-
3049
- def get_type(self) -> str:
3050
- """
3051
- Get the type of the endpoint.
3052
-
3053
- Returns:
3054
- str: The type of the endpoint.
3055
- """
3056
- return "taskTemplates"
3057
-
3058
- def get_instance_class(self, object_dict=None):
3059
- """
3060
- Get the instance class of the endpoint.
3061
-
3062
- Returns:
3063
- ProjectEndpoint: The instance class of the endpoint.
3064
- """
3065
- return TaskTemplateEndpoint
3066
-
3067
- def get_page_class(self, object_dict=None):
3068
- """
3069
- Get the page class of the endpoint.
3070
-
3071
- Returns:
3072
- PageProjectEndpoint: The page class of the endpoint.
3073
- """
3074
- return PageTaskTemplateEndpoint
3075
-
3076
-
3077
- class TasksEndpoint(EntitiesEndpoint):
3078
- """Represents a projects endpoint"""
3079
-
3080
- """Represents a projects endpoint"""
3081
-
3082
- def get_type(self) -> str:
3083
- """
3084
- Get the type of the endpoint.
3085
-
3086
- Returns:
3087
- str: The type of the endpoint.
3088
- """
3089
- return "tasks"
3090
-
3091
- def get_instance_class(self, object_dict=None):
3092
- """
3093
- Get the instance class of the endpoint.
3094
-
3095
- Returns:
3096
- ProjectEndpoint: The instance class of the endpoint.
3097
- """
3098
- return TaskEndpoint
3099
-
3100
- def get_page_class(self, object_dict=None):
3101
- """
3102
- Get the page class of the endpoint.
3103
-
3104
- Returns:
3105
- PageProjectEndpoint: The page class of the endpoint.
3106
- """
3107
- return PageTaskEndpoint
3108
-
3109
-
3110
3031
  class RetainedGuidancesEndpoint(EntitiesEndpoint):
3111
3032
  """Represents a projects endpoint"""
3112
3033
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kodexa
3
- Version: 7.4.413425371807
3
+ Version: 7.4.413440412847
4
4
  Summary: Python SDK for the Kodexa Platform
5
5
  Author: Austin Redenbaugh
6
6
  Author-email: austin@kodexa.com
@@ -13,13 +13,13 @@ kodexa/model/entities/product.py,sha256=StUhTEeLXmc05cj6XnZppQfeJsqCPbX1jdhsysHH
13
13
  kodexa/model/entities/product_group.py,sha256=540fRGyUf34h1BzAN1DiWu6rGgvaj3xDFhZ2k-RvSFY,3617
14
14
  kodexa/model/entities/product_subscription.py,sha256=UcmWR-qgLfdV7VCtJNwzgkanoS8nBSL6ngVuxQUK1M8,3810
15
15
  kodexa/model/model.py,sha256=qh1YUew3UgtjU0t4fAwSXYYuzQjXTOZWZkafyFp_w8M,118801
16
- kodexa/model/objects.py,sha256=aX2iaUzRq1ZWIe4PkFK0rkzc3583L590I22bcs5Gi6Q,188885
16
+ kodexa/model/objects.py,sha256=uFFIGvI1B1U8koooSa0nCHkV-dALryYr3WEZ6TwWHP0,188980
17
17
  kodexa/model/persistence.py,sha256=jUgQ8xwsAFIoZ_bEynxCDEWhUII42eN0e0Mum0dkQPg,72043
18
18
  kodexa/model/utils.py,sha256=6R-3rFiW9irBwj0Mq5yhp7EDXkNUFaeFhr3bWmnlW4g,2961
19
19
  kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
20
20
  kodexa/pipeline/pipeline.py,sha256=zyNEpA7KlGhPs_l-vgV6m-OCb16dbxQhl8QezeylugA,25540
21
21
  kodexa/platform/__init__.py,sha256=1O3oiWMg292NPL_NacKDnK1T3_R6cMorrPRue_9e-O4,216
22
- kodexa/platform/client.py,sha256=bWIpL_WhMlO01CC0i-OBgUJ3NJ6BVlxHXyxFZBAXTYc,232634
22
+ kodexa/platform/client.py,sha256=4wnUPN68MR2QYi2YDtXUW2sGrdqP-7pEZgOQp2SEJsI,230736
23
23
  kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
24
24
  kodexa/platform/kodexa.py,sha256=tPXHO500q3S75GhKGDcaxO51Viq2PNlHmAzpBZlahgo,34857
25
25
  kodexa/selectors/__init__.py,sha256=xA9-4vpyaAZWPSk3bh2kvDLkdv6XEmm7PjFbpziiTIk,100
@@ -44,7 +44,7 @@ kodexa/testing/test_utils.py,sha256=v44p__gE7ia67W7WeHN2HBFCWSCUrCZt7G4xBNCmwf8,
44
44
  kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
45
45
  kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  kodexa/utils/__init__.py,sha256=Pnim1o9_db5YEnNvDTxpM7HG-qTlL6n8JwFwOafU9wo,5928
47
- kodexa-7.4.413425371807.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
48
- kodexa-7.4.413425371807.dist-info/METADATA,sha256=CQEInol0c8Kx2uL4bbznYQ6YTK7EsO1LzpwDwIimBpg,2813
49
- kodexa-7.4.413425371807.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
50
- kodexa-7.4.413425371807.dist-info/RECORD,,
47
+ kodexa-7.4.413440412847.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
48
+ kodexa-7.4.413440412847.dist-info/METADATA,sha256=NAWgSqmGSTDJ9iAHexWyhL6UYnKEDqvhm_J5kCKLUBQ,2813
49
+ kodexa-7.4.413440412847.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
50
+ kodexa-7.4.413440412847.dist-info/RECORD,,