ignos-api-client 2023.5.22.5244__py3-none-any.whl → 2023.7.7.5556__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.
- ignos/api/client/_client.py +16 -0
- ignos/api/client/_version.py +1 -1
- ignos/api/client/aio/_client.py +16 -0
- ignos/api/client/aio/operations/__init__.py +8 -0
- ignos/api/client/aio/operations/_operations.py +2346 -891
- ignos/api/client/models/__init__.py +70 -0
- ignos/api/client/models/_enums.py +108 -0
- ignos/api/client/models/_models.py +2182 -194
- ignos/api/client/operations/__init__.py +8 -0
- ignos/api/client/operations/_operations.py +2156 -434
- {ignos_api_client-2023.5.22.5244.dist-info → ignos_api_client-2023.7.7.5556.dist-info}/METADATA +2 -2
- ignos_api_client-2023.7.7.5556.dist-info/RECORD +27 -0
- ignos_api_client-2023.5.22.5244.dist-info/RECORD +0 -27
- {ignos_api_client-2023.5.22.5244.dist-info → ignos_api_client-2023.7.7.5556.dist-info}/WHEEL +0 -0
- {ignos_api_client-2023.5.22.5244.dist-info → ignos_api_client-2023.7.7.5556.dist-info}/top_level.txt +0 -0
|
@@ -14,6 +14,8 @@ from ._operations import CncFileTransferOperations
|
|
|
14
14
|
from ._operations import CncSetupOperations
|
|
15
15
|
from ._operations import CountriesOperations
|
|
16
16
|
from ._operations import CustomersOperations
|
|
17
|
+
from ._operations import DocumentsOperations
|
|
18
|
+
from ._operations import DocumentTypesOperations
|
|
17
19
|
from ._operations import CustomerOrdersOperations
|
|
18
20
|
from ._operations import WorkordersOperations
|
|
19
21
|
from ._operations import ExternalOperations
|
|
@@ -33,12 +35,14 @@ from ._operations import MesOperations
|
|
|
33
35
|
from ._operations import MesProductionOrderOperations
|
|
34
36
|
from ._operations import MesProductionScheduleOperations
|
|
35
37
|
from ._operations import MesResourceOperations
|
|
38
|
+
from ._operations import MrbOperations
|
|
36
39
|
from ._operations import OperatorCalculatorsOperations
|
|
37
40
|
from ._operations import PowerOperations
|
|
38
41
|
from ._operations import PresentationOperations
|
|
39
42
|
from ._operations import SuppliersOperations
|
|
40
43
|
from ._operations import SustainabilityOperations
|
|
41
44
|
from ._operations import SystemHealthDashboardOperations
|
|
45
|
+
from ._operations import TraceOperations
|
|
42
46
|
from ._operations import UploadOperations
|
|
43
47
|
from ._operations import UsersOperations
|
|
44
48
|
from ._operations import WorkspacesOperations
|
|
@@ -58,6 +62,8 @@ __all__ = [
|
|
|
58
62
|
"CncSetupOperations",
|
|
59
63
|
"CountriesOperations",
|
|
60
64
|
"CustomersOperations",
|
|
65
|
+
"DocumentsOperations",
|
|
66
|
+
"DocumentTypesOperations",
|
|
61
67
|
"CustomerOrdersOperations",
|
|
62
68
|
"WorkordersOperations",
|
|
63
69
|
"ExternalOperations",
|
|
@@ -77,12 +83,14 @@ __all__ = [
|
|
|
77
83
|
"MesProductionOrderOperations",
|
|
78
84
|
"MesProductionScheduleOperations",
|
|
79
85
|
"MesResourceOperations",
|
|
86
|
+
"MrbOperations",
|
|
80
87
|
"OperatorCalculatorsOperations",
|
|
81
88
|
"PowerOperations",
|
|
82
89
|
"PresentationOperations",
|
|
83
90
|
"SuppliersOperations",
|
|
84
91
|
"SustainabilityOperations",
|
|
85
92
|
"SystemHealthDashboardOperations",
|
|
93
|
+
"TraceOperations",
|
|
86
94
|
"UploadOperations",
|
|
87
95
|
"UsersOperations",
|
|
88
96
|
"WorkspacesOperations",
|