kodexa 7.4.413640242188__py3-none-any.whl → 7.4.413698864785__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 +204 -2
- kodexa/platform/client.py +48 -8
- {kodexa-7.4.413640242188.dist-info → kodexa-7.4.413698864785.dist-info}/METADATA +1 -1
- {kodexa-7.4.413640242188.dist-info → kodexa-7.4.413698864785.dist-info}/RECORD +6 -6
- {kodexa-7.4.413640242188.dist-info → kodexa-7.4.413698864785.dist-info}/LICENSE +0 -0
- {kodexa-7.4.413640242188.dist-info → kodexa-7.4.413698864785.dist-info}/WHEEL +0 -0
kodexa/model/objects.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
from enum import Enum
|
4
|
-
from typing import Optional, List, Dict, Any
|
4
|
+
from typing import Optional, List, Dict, Any, Set
|
5
5
|
from typing import Union
|
6
6
|
|
7
7
|
from pydantic import AnyUrl, Field, RootModel, BaseModel, ConfigDict
|
@@ -2900,6 +2900,79 @@ class ProjectOptions(BaseModel):
|
|
2900
2900
|
)
|
2901
2901
|
|
2902
2902
|
|
2903
|
+
class NodePosition(BaseModel):
|
2904
|
+
model_config = ConfigDict(
|
2905
|
+
populate_by_name=True,
|
2906
|
+
use_enum_values=True,
|
2907
|
+
arbitrary_types_allowed=True,
|
2908
|
+
protected_namespaces=("model_config",),
|
2909
|
+
)
|
2910
|
+
x: float = 0
|
2911
|
+
y: float = 0
|
2912
|
+
|
2913
|
+
|
2914
|
+
class NodeDimensions(BaseModel):
|
2915
|
+
model_config = ConfigDict(
|
2916
|
+
populate_by_name=True,
|
2917
|
+
use_enum_values=True,
|
2918
|
+
arbitrary_types_allowed=True,
|
2919
|
+
protected_namespaces=("model_config",),
|
2920
|
+
)
|
2921
|
+
width: float = 0
|
2922
|
+
height: float = 0
|
2923
|
+
|
2924
|
+
|
2925
|
+
class FlowViewPort(BaseModel):
|
2926
|
+
model_config = ConfigDict(
|
2927
|
+
populate_by_name=True,
|
2928
|
+
use_enum_values=True,
|
2929
|
+
arbitrary_types_allowed=True,
|
2930
|
+
protected_namespaces=("model_config",),
|
2931
|
+
)
|
2932
|
+
x: float = 0
|
2933
|
+
y: float = 0
|
2934
|
+
zoom: float = 1
|
2935
|
+
|
2936
|
+
|
2937
|
+
class DataFlowNode(BaseModel):
|
2938
|
+
model_config = ConfigDict(
|
2939
|
+
populate_by_name=True,
|
2940
|
+
use_enum_values=True,
|
2941
|
+
arbitrary_types_allowed=True,
|
2942
|
+
protected_namespaces=("model_config",),
|
2943
|
+
)
|
2944
|
+
id: Optional[str] = None
|
2945
|
+
parent_id: Optional[str] = Field(None, alias="parentId")
|
2946
|
+
type: Optional[str] = None
|
2947
|
+
position: Optional[NodePosition] = None
|
2948
|
+
dimensions: Optional[NodeDimensions] = None
|
2949
|
+
properties: Dict[str, Any] = Field(default_factory=dict)
|
2950
|
+
|
2951
|
+
|
2952
|
+
class DataFlowEdge(BaseModel):
|
2953
|
+
model_config = ConfigDict(
|
2954
|
+
populate_by_name=True,
|
2955
|
+
use_enum_values=True,
|
2956
|
+
arbitrary_types_allowed=True,
|
2957
|
+
protected_namespaces=("model_config",),
|
2958
|
+
)
|
2959
|
+
id: Optional[str] = None
|
2960
|
+
source: Optional[str] = None
|
2961
|
+
target: Optional[str] = None
|
2962
|
+
properties: Dict[str, Any] = Field(default_factory=dict)
|
2963
|
+
|
2964
|
+
|
2965
|
+
class ProjectDataFlow(BaseModel):
|
2966
|
+
model_config = ConfigDict(
|
2967
|
+
populate_by_name=True,
|
2968
|
+
use_enum_values=True,
|
2969
|
+
arbitrary_types_allowed=True,
|
2970
|
+
protected_namespaces=("model_config",),
|
2971
|
+
)
|
2972
|
+
view_port: Optional[FlowViewPort] = Field(None, alias="viewPort")
|
2973
|
+
nodes: List[DataFlowNode] = Field(default_factory=list)
|
2974
|
+
edges: List[DataFlowEdge] = Field(default_factory=list)
|
2975
|
+
|
2903
2976
|
class Project(BaseModel):
|
2904
2977
|
model_config = ConfigDict(
|
2905
2978
|
populate_by_name=True,
|
@@ -2945,13 +3018,142 @@ class Project(BaseModel):
|
|
2945
3018
|
owner: Optional[User] = None
|
2946
3019
|
options: Optional[ProjectOptions] = Field(None, alias="options")
|
2947
3020
|
|
2948
|
-
|
2949
3021
|
class TaskStatusType(str, Enum):
|
2950
3022
|
"""Enum for task status types"""
|
2951
3023
|
TODO = "TODO"
|
2952
3024
|
IN_PROGRESS = "IN_PROGRESS"
|
2953
3025
|
DONE = "DONE"
|
2954
3026
|
|
3027
|
+
class ProjectAttributeStatus(BaseModel):
|
3028
|
+
"""
|
3029
|
+
Represents an attribute status for a project.
|
3030
|
+
"""
|
3031
|
+
model_config = ConfigDict(
|
3032
|
+
populate_by_name=True,
|
3033
|
+
use_enum_values=True,
|
3034
|
+
arbitrary_types_allowed=True,
|
3035
|
+
protected_namespaces=("model_config",),
|
3036
|
+
)
|
3037
|
+
color: Optional[str] = Field(None, max_length=25)
|
3038
|
+
icon: Optional[str] = Field(None, max_length=25)
|
3039
|
+
status: Optional[str] = Field(None, max_length=255)
|
3040
|
+
status_type: Optional[StatusType2] = Field(None, alias="statusType")
|
3041
|
+
|
3042
|
+
class ProjectDocumentStatus(BaseModel):
|
3043
|
+
"""
|
3044
|
+
Represents a document status for a project.
|
3045
|
+
"""
|
3046
|
+
model_config = ConfigDict(
|
3047
|
+
populate_by_name=True,
|
3048
|
+
use_enum_values=True,
|
3049
|
+
arbitrary_types_allowed=True,
|
3050
|
+
protected_namespaces=("model_config",),
|
3051
|
+
)
|
3052
|
+
color: Optional[str] = Field(None, max_length=25)
|
3053
|
+
icon: Optional[str] = Field(None, max_length=25)
|
3054
|
+
status: str = Field(..., max_length=255)
|
3055
|
+
status_type: Optional[StatusType2] = Field(None, alias="statusType")
|
3056
|
+
|
3057
|
+
class ProjectTaskStatus(BaseModel):
|
3058
|
+
"""
|
3059
|
+
Represents a task status for a project.
|
3060
|
+
"""
|
3061
|
+
model_config = ConfigDict(
|
3062
|
+
populate_by_name=True,
|
3063
|
+
use_enum_values=True,
|
3064
|
+
arbitrary_types_allowed=True,
|
3065
|
+
protected_namespaces=("model_config",),
|
3066
|
+
)
|
3067
|
+
color: Optional[str] = Field(None, max_length=25)
|
3068
|
+
icon: Optional[str] = Field(None, max_length=25)
|
3069
|
+
label: str = Field(..., max_length=255)
|
3070
|
+
status_type: Optional[TaskStatusType] = Field(None, alias="statusType")
|
3071
|
+
|
3072
|
+
class ProjectTemplateTag(BaseModel):
|
3073
|
+
"""
|
3074
|
+
Represents a tag for a project template.
|
3075
|
+
"""
|
3076
|
+
model_config = ConfigDict(
|
3077
|
+
populate_by_name=True,
|
3078
|
+
use_enum_values=True,
|
3079
|
+
arbitrary_types_allowed=True,
|
3080
|
+
protected_namespaces=("model_config",),
|
3081
|
+
)
|
3082
|
+
label: Optional[str] = None
|
3083
|
+
color: Optional[str] = None
|
3084
|
+
|
3085
|
+
class ProjectTaskTemplate(BaseModel):
|
3086
|
+
"""
|
3087
|
+
Represents a task template for a project.
|
3088
|
+
"""
|
3089
|
+
model_config = ConfigDict(
|
3090
|
+
populate_by_name=True,
|
3091
|
+
use_enum_values=True,
|
3092
|
+
arbitrary_types_allowed=True,
|
3093
|
+
protected_namespaces=("model_config",),
|
3094
|
+
)
|
3095
|
+
title: Optional[str] = None
|
3096
|
+
description: Optional[str] = None
|
3097
|
+
|
3098
|
+
class ProjectResource(BaseModel):
|
3099
|
+
"""
|
3100
|
+
Represents a resource for a project.
|
3101
|
+
"""
|
3102
|
+
model_config = ConfigDict(
|
3103
|
+
populate_by_name=True,
|
3104
|
+
use_enum_values=True,
|
3105
|
+
arbitrary_types_allowed=True,
|
3106
|
+
protected_namespaces=("model_config",),
|
3107
|
+
)
|
3108
|
+
uri: Optional[str] = None
|
3109
|
+
type: Optional[str] = None
|
3110
|
+
name: Optional[str] = None
|
3111
|
+
description: Optional[str] = None
|
3112
|
+
copy: Optional[bool] = False
|
3113
|
+
slug: Optional[str] = None
|
3114
|
+
original_uri: Optional[str] = Field(None, alias="originalUri")
|
3115
|
+
|
3116
|
+
class WorkspaceResource(BaseModel):
|
3117
|
+
"""
|
3118
|
+
Represents a workspace resource.
|
3119
|
+
"""
|
3120
|
+
model_config = ConfigDict(
|
3121
|
+
populate_by_name=True,
|
3122
|
+
use_enum_values=True,
|
3123
|
+
arbitrary_types_allowed=True,
|
3124
|
+
protected_namespaces=("model_config",),
|
3125
|
+
)
|
3126
|
+
name: Optional[str] = None
|
3127
|
+
description: Optional[str] = None
|
3128
|
+
storage: Optional[WorkspaceStorage] = None
|
3129
|
+
|
3130
|
+
class ProjectTemplateRequest(BaseModel):
|
3131
|
+
"""
|
3132
|
+
Represents a request to create a project template.
|
3133
|
+
"""
|
3134
|
+
model_config = ConfigDict(
|
3135
|
+
populate_by_name=True,
|
3136
|
+
use_enum_values=True,
|
3137
|
+
arbitrary_types_allowed=True,
|
3138
|
+
protected_namespaces=("model_config",),
|
3139
|
+
)
|
3140
|
+
name: Optional[str] = None
|
3141
|
+
description: Optional[str] = None
|
3142
|
+
options: Optional[ProjectOptions] = None
|
3143
|
+
memory: Optional[ProjectMemory] = None
|
3144
|
+
image_url: Optional[str] = Field(None, alias="imageUrl")
|
3145
|
+
icon: Optional[str] = None
|
3146
|
+
overview_markdown: Optional[str] = Field(None, alias="overviewMarkdown")
|
3147
|
+
provider: Optional[str] = None
|
3148
|
+
provider_url: Optional[str] = Field(None, alias="providerUrl")
|
3149
|
+
provider_image_url: Optional[str] = Field(None, alias="providerImageUrl")
|
3150
|
+
public_access: Optional[bool] = Field(False, alias="publicAccess")
|
3151
|
+
resources: List[ProjectResource] = Field(default_factory=list)
|
3152
|
+
workspaces: List[ProjectWorkspace] = Field(default_factory=list)
|
3153
|
+
assistants: List[ProjectAssistant] = Field(default_factory=list)
|
3154
|
+
document_statuses: List[ProjectDocumentStatus] = Field(default_factory=list, alias="documentStatuses")
|
3155
|
+
task_statuses: List[ProjectTaskStatus] = Field(default_factory=list, alias="taskStatuses")
|
3156
|
+
tags: Set[str] = Field(default_factory=set)
|
2955
3157
|
|
2956
3158
|
class TaskStatus(BaseModel):
|
2957
3159
|
"""Model representing a task status entity"""
|
kodexa/platform/client.py
CHANGED
@@ -85,7 +85,7 @@ from kodexa.model.objects import (
|
|
85
85
|
PageOrganization,
|
86
86
|
DocumentFamilyStatistics, MessageContext, PagePrompt, Prompt, GuidanceSet, PageGuidanceSet, DocumentEmbedding,
|
87
87
|
DocumentExternalData, Task, PageTask, RetainedGuidance, PageRetainedGuidance, TaskTemplate, TaskStatus,
|
88
|
-
TaskActivity, TaskDocumentFamily, TaskTag,
|
88
|
+
TaskActivity, TaskDocumentFamily, TaskTag, ProjectTemplateRequest,
|
89
89
|
)
|
90
90
|
|
91
91
|
logger = logging.getLogger()
|
@@ -306,7 +306,7 @@ class ProjectResourceEndpoint(ClientEndpoint):
|
|
306
306
|
page += 1
|
307
307
|
|
308
308
|
def list(
|
309
|
-
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
309
|
+
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
310
310
|
filters: Optional[List[str]] = None
|
311
311
|
):
|
312
312
|
"""
|
@@ -502,7 +502,7 @@ class ComponentEndpoint(ClientEndpoint, OrganizationOwned):
|
|
502
502
|
params["page"] += 1
|
503
503
|
|
504
504
|
def list(
|
505
|
-
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
505
|
+
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
506
506
|
filters: Optional[List[str]] = None
|
507
507
|
):
|
508
508
|
"""
|
@@ -730,7 +730,7 @@ class EntitiesEndpoint:
|
|
730
730
|
page += 1
|
731
731
|
|
732
732
|
def list(
|
733
|
-
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
733
|
+
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
734
734
|
filters: Optional[List[str]] = None
|
735
735
|
):
|
736
736
|
"""List the resources.
|
@@ -1164,34 +1164,43 @@ class PageTaskEndpoint(PageTask, PageEndpoint):
|
|
1164
1164
|
"""
|
1165
1165
|
Represents a page of tasks.
|
1166
1166
|
"""
|
1167
|
+
|
1167
1168
|
def get_type(self) -> Optional[str]:
|
1168
1169
|
return "task"
|
1169
1170
|
|
1171
|
+
|
1170
1172
|
class PageTaskActivityEndpoint(PageEndpoint):
|
1171
1173
|
"""
|
1172
1174
|
Represents a page of task activities.
|
1173
1175
|
"""
|
1176
|
+
|
1174
1177
|
def get_type(self) -> Optional[str]:
|
1175
1178
|
return "taskActivities"
|
1176
1179
|
|
1180
|
+
|
1177
1181
|
class PageTaskDocumentFamilyEndpoint(PageEndpoint):
|
1178
1182
|
"""
|
1179
1183
|
Represents a page of task document families.
|
1180
1184
|
"""
|
1185
|
+
|
1181
1186
|
def get_type(self) -> Optional[str]:
|
1182
1187
|
return "taskDocumentFamilies"
|
1183
1188
|
|
1189
|
+
|
1184
1190
|
class PageTaskTagEndpoint(PageEndpoint):
|
1185
1191
|
"""
|
1186
1192
|
Represents a page of task tags.
|
1187
1193
|
"""
|
1194
|
+
|
1188
1195
|
def get_type(self) -> Optional[str]:
|
1189
1196
|
return "taskTags"
|
1190
1197
|
|
1198
|
+
|
1191
1199
|
class TaskEndpoint(EntityEndpoint, Task):
|
1192
1200
|
"""
|
1193
1201
|
Represents a task endpoint.
|
1194
1202
|
"""
|
1203
|
+
|
1195
1204
|
def get_type(self) -> str:
|
1196
1205
|
return "tasks"
|
1197
1206
|
|
@@ -1219,10 +1228,12 @@ class TaskEndpoint(EntityEndpoint, Task):
|
|
1219
1228
|
response = self.client.delete(url)
|
1220
1229
|
return TaskEndpoint.model_validate(response.json()).set_client(self.client)
|
1221
1230
|
|
1231
|
+
|
1222
1232
|
class TasksEndpoint(EntitiesEndpoint):
|
1223
1233
|
"""
|
1224
1234
|
Represents tasks endpoints.
|
1225
1235
|
"""
|
1236
|
+
|
1226
1237
|
def get_type(self) -> str:
|
1227
1238
|
return "tasks"
|
1228
1239
|
|
@@ -1232,28 +1243,34 @@ class TasksEndpoint(EntitiesEndpoint):
|
|
1232
1243
|
def get_page_class(self, object_dict=None):
|
1233
1244
|
return PageTaskEndpoint
|
1234
1245
|
|
1235
|
-
def create_with_template(self, task: Task, task_template: Optional[TaskTemplate] = None,
|
1246
|
+
def create_with_template(self, task: Task, task_template: Optional[TaskTemplate] = None,
|
1247
|
+
document_families: Optional[List[DocumentFamily]] = None) -> TaskEndpoint:
|
1236
1248
|
"""Create a task with the given template."""
|
1237
1249
|
url = "/api/tasks/createTaskWithRequest"
|
1238
1250
|
create_body = {
|
1239
1251
|
"task": task.model_dump(mode="json", by_alias=True),
|
1240
1252
|
"taskTemplate": task_template.model_dump(mode="json", by_alias=True) if task_template else None,
|
1241
|
-
"documentFamilies": [df.model_dump(mode="json", by_alias=True) for df in
|
1253
|
+
"documentFamilies": [df.model_dump(mode="json", by_alias=True) for df in
|
1254
|
+
document_families] if document_families else None
|
1242
1255
|
}
|
1243
1256
|
response = self.client.post(url, create_body)
|
1244
1257
|
return TaskEndpoint.model_validate(response.json()).set_client(self.client)
|
1245
1258
|
|
1259
|
+
|
1246
1260
|
class TaskTemplateEndpoint(EntityEndpoint, TaskTemplate):
|
1247
1261
|
"""
|
1248
1262
|
Represents a task template endpoint.
|
1249
1263
|
"""
|
1264
|
+
|
1250
1265
|
def get_type(self) -> str:
|
1251
1266
|
return "taskTemplates"
|
1252
1267
|
|
1268
|
+
|
1253
1269
|
class TaskTemplatesEndpoint(EntitiesEndpoint):
|
1254
1270
|
"""
|
1255
1271
|
Represents task templates endpoints.
|
1256
1272
|
"""
|
1273
|
+
|
1257
1274
|
def get_type(self) -> str:
|
1258
1275
|
return "taskTemplates"
|
1259
1276
|
|
@@ -1263,17 +1280,21 @@ class TaskTemplatesEndpoint(EntitiesEndpoint):
|
|
1263
1280
|
def get_page_class(self, object_dict=None):
|
1264
1281
|
return PageTaskTemplateEndpoint
|
1265
1282
|
|
1283
|
+
|
1266
1284
|
class TaskActivityEndpoint(EntityEndpoint, TaskActivity):
|
1267
1285
|
"""
|
1268
1286
|
Represents a task activity endpoint.
|
1269
1287
|
"""
|
1288
|
+
|
1270
1289
|
def get_type(self) -> str:
|
1271
1290
|
return "taskActivities"
|
1272
1291
|
|
1292
|
+
|
1273
1293
|
class TaskActivitiesEndpoint(EntitiesEndpoint):
|
1274
1294
|
"""
|
1275
1295
|
Represents task activities endpoints.
|
1276
1296
|
"""
|
1297
|
+
|
1277
1298
|
def get_type(self) -> str:
|
1278
1299
|
return "taskActivities"
|
1279
1300
|
|
@@ -1283,17 +1304,21 @@ class TaskActivitiesEndpoint(EntitiesEndpoint):
|
|
1283
1304
|
def get_page_class(self, object_dict=None):
|
1284
1305
|
return PageTaskActivityEndpoint
|
1285
1306
|
|
1307
|
+
|
1286
1308
|
class TaskDocumentFamilyEndpoint(EntityEndpoint, TaskDocumentFamily):
|
1287
1309
|
"""
|
1288
1310
|
Represents a task document family endpoint.
|
1289
1311
|
"""
|
1312
|
+
|
1290
1313
|
def get_type(self) -> str:
|
1291
1314
|
return "taskDocumentFamilies"
|
1292
1315
|
|
1316
|
+
|
1293
1317
|
class TaskDocumentFamiliesEndpoint(EntitiesEndpoint):
|
1294
1318
|
"""
|
1295
1319
|
Represents task document families endpoints.
|
1296
1320
|
"""
|
1321
|
+
|
1297
1322
|
def get_type(self) -> str:
|
1298
1323
|
return "taskDocumentFamilies"
|
1299
1324
|
|
@@ -1303,17 +1328,21 @@ class TaskDocumentFamiliesEndpoint(EntitiesEndpoint):
|
|
1303
1328
|
def get_page_class(self, object_dict=None):
|
1304
1329
|
return PageTaskDocumentFamilyEndpoint
|
1305
1330
|
|
1331
|
+
|
1306
1332
|
class TaskTagEndpoint(EntityEndpoint, TaskTag):
|
1307
1333
|
"""
|
1308
1334
|
Represents a task tag endpoint.
|
1309
1335
|
"""
|
1336
|
+
|
1310
1337
|
def get_type(self) -> str:
|
1311
1338
|
return "taskTags"
|
1312
1339
|
|
1340
|
+
|
1313
1341
|
class TaskTagsEndpoint(EntitiesEndpoint):
|
1314
1342
|
"""
|
1315
1343
|
Represents task tags endpoints.
|
1316
1344
|
"""
|
1345
|
+
|
1317
1346
|
def get_type(self) -> str:
|
1318
1347
|
return "taskTags"
|
1319
1348
|
|
@@ -2857,6 +2886,16 @@ class ProjectEndpoint(EntityEndpoint, Project):
|
|
2857
2886
|
)
|
2858
2887
|
return [ProjectTag.model_validate(tag) for tag in response.json()]
|
2859
2888
|
|
2889
|
+
def create_project_template_request(self) -> ProjectTemplateRequest:
|
2890
|
+
"""Create a project template request from this project.
|
2891
|
+
|
2892
|
+
Returns:
|
2893
|
+
ProjectTemplateRequest: A project template request object.
|
2894
|
+
"""
|
2895
|
+
response = self.client.get(f"/api/projects/{self.id}/createProjectTemplateRequest")
|
2896
|
+
return ProjectTemplateRequest.model_validate(response.json())
|
2897
|
+
|
2898
|
+
|
2860
2899
|
|
2861
2900
|
class MessagesEndpoint(EntitiesEndpoint):
|
2862
2901
|
"""Represents a message endpoint"""
|
@@ -3477,6 +3516,7 @@ class ProjectTemplatesEndpoint(ComponentEndpoint, ClientEndpoint, OrganizationOw
|
|
3477
3516
|
"""
|
3478
3517
|
return ProjectTemplateEndpoint
|
3479
3518
|
|
3519
|
+
|
3480
3520
|
class DataFormsEndpoint(ComponentEndpoint, ClientEndpoint, OrganizationOwned):
|
3481
3521
|
"""
|
3482
3522
|
A class used to represent the DataFormsEndpoint.
|
@@ -4637,7 +4677,7 @@ class DocumentFamilyEndpoint(DocumentFamily, ClientEndpoint):
|
|
4637
4677
|
project_id: Optional[str] = None,
|
4638
4678
|
friendly_names=False,
|
4639
4679
|
include_ids=True,
|
4640
|
-
include_exceptions=False,
|
4680
|
+
include_exceptions=False,
|
4641
4681
|
) -> str:
|
4642
4682
|
"""Get the JSON export for the document family
|
4643
4683
|
|
@@ -5106,7 +5146,7 @@ class DataStoreExceptionsEndpoint(EntitiesEndpoint):
|
|
5106
5146
|
super().__init__(client)
|
5107
5147
|
|
5108
5148
|
def list(
|
5109
|
-
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
5149
|
+
self, query: str = "*", page: int = 1, page_size: int = 10, sort: Optional[str] = None,
|
5110
5150
|
filters: Optional[List[str]] = None
|
5111
5151
|
):
|
5112
5152
|
"""
|
@@ -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=q3zEm6pPOB-xPCKbOxmTMqLALzmQr2Ppam8knApoSEE,119645
|
16
|
-
kodexa/model/objects.py,sha256=
|
16
|
+
kodexa/model/objects.py,sha256=Y1aHbFbVNLhI1Sv9XddmKne4A8mYgVRpdWzc6avF-Uo,196684
|
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=
|
22
|
+
kodexa/platform/client.py,sha256=NK00OhqiGWWblXTF4g6i2P8ffdN0FHu8z2mXSepsM-k,231947
|
23
23
|
kodexa/platform/interaction.py,sha256=6zpcwXKNZstUGNS6m4JsoRXAqCZPJHWI-ZN3co8nnF0,1055
|
24
24
|
kodexa/platform/kodexa.py,sha256=izvvUUkRUNYFZGMiL4DcJpZ4gZznHpxkfbexV0Vn_38,35041
|
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.
|
48
|
-
kodexa-7.4.
|
49
|
-
kodexa-7.4.
|
50
|
-
kodexa-7.4.
|
47
|
+
kodexa-7.4.413698864785.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
48
|
+
kodexa-7.4.413698864785.dist-info/METADATA,sha256=wcIJSD3dHPfQh70UUEOE8ycKT8m9Vo2KuhtM-Iu_3JQ,2813
|
49
|
+
kodexa-7.4.413698864785.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
50
|
+
kodexa-7.4.413698864785.dist-info/RECORD,,
|
File without changes
|
File without changes
|