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
ignos/api/client/_client.py
CHANGED
|
@@ -25,6 +25,8 @@ from .operations import (
|
|
|
25
25
|
CountriesOperations,
|
|
26
26
|
CustomerOrdersOperations,
|
|
27
27
|
CustomersOperations,
|
|
28
|
+
DocumentTypesOperations,
|
|
29
|
+
DocumentsOperations,
|
|
28
30
|
ElectricalOperations,
|
|
29
31
|
ExternalAccessOperations,
|
|
30
32
|
ExternalOperations,
|
|
@@ -41,12 +43,14 @@ from .operations import (
|
|
|
41
43
|
MesProductionOrderOperations,
|
|
42
44
|
MesProductionScheduleOperations,
|
|
43
45
|
MesResourceOperations,
|
|
46
|
+
MrbOperations,
|
|
44
47
|
OperatorCalculatorsOperations,
|
|
45
48
|
PowerOperations,
|
|
46
49
|
PresentationOperations,
|
|
47
50
|
SuppliersOperations,
|
|
48
51
|
SustainabilityOperations,
|
|
49
52
|
SystemHealthDashboardOperations,
|
|
53
|
+
TraceOperations,
|
|
50
54
|
UploadOperations,
|
|
51
55
|
UsersOperations,
|
|
52
56
|
WeldingOperations,
|
|
@@ -80,6 +84,10 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
80
84
|
:vartype countries: ignos.api.client.operations.CountriesOperations
|
|
81
85
|
:ivar customers: CustomersOperations operations
|
|
82
86
|
:vartype customers: ignos.api.client.operations.CustomersOperations
|
|
87
|
+
:ivar documents: DocumentsOperations operations
|
|
88
|
+
:vartype documents: ignos.api.client.operations.DocumentsOperations
|
|
89
|
+
:ivar document_types: DocumentTypesOperations operations
|
|
90
|
+
:vartype document_types: ignos.api.client.operations.DocumentTypesOperations
|
|
83
91
|
:ivar customer_orders: CustomerOrdersOperations operations
|
|
84
92
|
:vartype customer_orders: ignos.api.client.operations.CustomerOrdersOperations
|
|
85
93
|
:ivar workorders: WorkordersOperations operations
|
|
@@ -119,6 +127,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
119
127
|
:vartype mes_production_schedule: ignos.api.client.operations.MesProductionScheduleOperations
|
|
120
128
|
:ivar mes_resource: MesResourceOperations operations
|
|
121
129
|
:vartype mes_resource: ignos.api.client.operations.MesResourceOperations
|
|
130
|
+
:ivar mrb: MrbOperations operations
|
|
131
|
+
:vartype mrb: ignos.api.client.operations.MrbOperations
|
|
122
132
|
:ivar operator_calculators: OperatorCalculatorsOperations operations
|
|
123
133
|
:vartype operator_calculators: ignos.api.client.operations.OperatorCalculatorsOperations
|
|
124
134
|
:ivar power: PowerOperations operations
|
|
@@ -131,6 +141,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
131
141
|
:vartype sustainability: ignos.api.client.operations.SustainabilityOperations
|
|
132
142
|
:ivar system_health_dashboard: SystemHealthDashboardOperations operations
|
|
133
143
|
:vartype system_health_dashboard: ignos.api.client.operations.SystemHealthDashboardOperations
|
|
144
|
+
:ivar trace: TraceOperations operations
|
|
145
|
+
:vartype trace: ignos.api.client.operations.TraceOperations
|
|
134
146
|
:ivar upload: UploadOperations operations
|
|
135
147
|
:vartype upload: ignos.api.client.operations.UploadOperations
|
|
136
148
|
:ivar users: UsersOperations operations
|
|
@@ -166,6 +178,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
166
178
|
self.cnc_setup = CncSetupOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
167
179
|
self.countries = CountriesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
168
180
|
self.customers = CustomersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
181
|
+
self.documents = DocumentsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
182
|
+
self.document_types = DocumentTypesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
169
183
|
self.customer_orders = CustomerOrdersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
170
184
|
self.workorders = WorkordersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
171
185
|
self.external = ExternalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -197,6 +211,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
197
211
|
self._client, self._config, self._serialize, self._deserialize
|
|
198
212
|
)
|
|
199
213
|
self.mes_resource = MesResourceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
214
|
+
self.mrb = MrbOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
200
215
|
self.operator_calculators = OperatorCalculatorsOperations(
|
|
201
216
|
self._client, self._config, self._serialize, self._deserialize
|
|
202
217
|
)
|
|
@@ -207,6 +222,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
207
222
|
self.system_health_dashboard = SystemHealthDashboardOperations(
|
|
208
223
|
self._client, self._config, self._serialize, self._deserialize
|
|
209
224
|
)
|
|
225
|
+
self.trace = TraceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
210
226
|
self.upload = UploadOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
211
227
|
self.users = UsersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
212
228
|
self.workspaces = WorkspacesOperations(self._client, self._config, self._serialize, self._deserialize)
|
ignos/api/client/_version.py
CHANGED
ignos/api/client/aio/_client.py
CHANGED
|
@@ -25,6 +25,8 @@ from .operations import (
|
|
|
25
25
|
CountriesOperations,
|
|
26
26
|
CustomerOrdersOperations,
|
|
27
27
|
CustomersOperations,
|
|
28
|
+
DocumentTypesOperations,
|
|
29
|
+
DocumentsOperations,
|
|
28
30
|
ElectricalOperations,
|
|
29
31
|
ExternalAccessOperations,
|
|
30
32
|
ExternalOperations,
|
|
@@ -41,12 +43,14 @@ from .operations import (
|
|
|
41
43
|
MesProductionOrderOperations,
|
|
42
44
|
MesProductionScheduleOperations,
|
|
43
45
|
MesResourceOperations,
|
|
46
|
+
MrbOperations,
|
|
44
47
|
OperatorCalculatorsOperations,
|
|
45
48
|
PowerOperations,
|
|
46
49
|
PresentationOperations,
|
|
47
50
|
SuppliersOperations,
|
|
48
51
|
SustainabilityOperations,
|
|
49
52
|
SystemHealthDashboardOperations,
|
|
53
|
+
TraceOperations,
|
|
50
54
|
UploadOperations,
|
|
51
55
|
UsersOperations,
|
|
52
56
|
WeldingOperations,
|
|
@@ -80,6 +84,10 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
80
84
|
:vartype countries: ignos.api.client.aio.operations.CountriesOperations
|
|
81
85
|
:ivar customers: CustomersOperations operations
|
|
82
86
|
:vartype customers: ignos.api.client.aio.operations.CustomersOperations
|
|
87
|
+
:ivar documents: DocumentsOperations operations
|
|
88
|
+
:vartype documents: ignos.api.client.aio.operations.DocumentsOperations
|
|
89
|
+
:ivar document_types: DocumentTypesOperations operations
|
|
90
|
+
:vartype document_types: ignos.api.client.aio.operations.DocumentTypesOperations
|
|
83
91
|
:ivar customer_orders: CustomerOrdersOperations operations
|
|
84
92
|
:vartype customer_orders: ignos.api.client.aio.operations.CustomerOrdersOperations
|
|
85
93
|
:ivar workorders: WorkordersOperations operations
|
|
@@ -121,6 +129,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
121
129
|
ignos.api.client.aio.operations.MesProductionScheduleOperations
|
|
122
130
|
:ivar mes_resource: MesResourceOperations operations
|
|
123
131
|
:vartype mes_resource: ignos.api.client.aio.operations.MesResourceOperations
|
|
132
|
+
:ivar mrb: MrbOperations operations
|
|
133
|
+
:vartype mrb: ignos.api.client.aio.operations.MrbOperations
|
|
124
134
|
:ivar operator_calculators: OperatorCalculatorsOperations operations
|
|
125
135
|
:vartype operator_calculators: ignos.api.client.aio.operations.OperatorCalculatorsOperations
|
|
126
136
|
:ivar power: PowerOperations operations
|
|
@@ -134,6 +144,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
134
144
|
:ivar system_health_dashboard: SystemHealthDashboardOperations operations
|
|
135
145
|
:vartype system_health_dashboard:
|
|
136
146
|
ignos.api.client.aio.operations.SystemHealthDashboardOperations
|
|
147
|
+
:ivar trace: TraceOperations operations
|
|
148
|
+
:vartype trace: ignos.api.client.aio.operations.TraceOperations
|
|
137
149
|
:ivar upload: UploadOperations operations
|
|
138
150
|
:vartype upload: ignos.api.client.aio.operations.UploadOperations
|
|
139
151
|
:ivar users: UsersOperations operations
|
|
@@ -169,6 +181,8 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
169
181
|
self.cnc_setup = CncSetupOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
170
182
|
self.countries = CountriesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
171
183
|
self.customers = CustomersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
184
|
+
self.documents = DocumentsOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
185
|
+
self.document_types = DocumentTypesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
172
186
|
self.customer_orders = CustomerOrdersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
173
187
|
self.workorders = WorkordersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
174
188
|
self.external = ExternalOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -200,6 +214,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
200
214
|
self._client, self._config, self._serialize, self._deserialize
|
|
201
215
|
)
|
|
202
216
|
self.mes_resource = MesResourceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
217
|
+
self.mrb = MrbOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
203
218
|
self.operator_calculators = OperatorCalculatorsOperations(
|
|
204
219
|
self._client, self._config, self._serialize, self._deserialize
|
|
205
220
|
)
|
|
@@ -210,6 +225,7 @@ class IgnosPortal: # pylint: disable=client-accepts-api-version-keyword,too-man
|
|
|
210
225
|
self.system_health_dashboard = SystemHealthDashboardOperations(
|
|
211
226
|
self._client, self._config, self._serialize, self._deserialize
|
|
212
227
|
)
|
|
228
|
+
self.trace = TraceOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
213
229
|
self.upload = UploadOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
214
230
|
self.users = UsersOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
215
231
|
self.workspaces = WorkspacesOperations(self._client, self._config, self._serialize, self._deserialize)
|
|
@@ -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",
|