cognite-neat 1.0.31__py3-none-any.whl → 1.0.33__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.
- cognite/neat/_client/data_classes.py +32 -0
- cognite/neat/_client/statistics_api.py +28 -1
- cognite/neat/_data_model/_analysis.py +3 -0
- cognite/neat/_data_model/_constants.py +4 -0
- cognite/neat/_data_model/deployer/_differ_container.py +1 -1
- cognite/neat/_data_model/deployer/data_classes.py +15 -16
- cognite/neat/_data_model/deployer/deployer.py +40 -13
- cognite/neat/_data_model/models/dms/_http.py +10 -1
- cognite/neat/_data_model/models/dms/_references.py +38 -4
- cognite/neat/_data_model/{validation/dms → rules}/_base.py +11 -5
- cognite/neat/_data_model/rules/cdf/__init__.py +3 -0
- cognite/neat/_data_model/rules/cdf/_base.py +5 -0
- cognite/neat/_data_model/rules/cdf/_orchestrator.py +56 -0
- cognite/neat/_data_model/rules/cdf/_spaces.py +47 -0
- cognite/neat/_data_model/{validation → rules}/dms/__init__.py +2 -2
- cognite/neat/_data_model/{validation → rules}/dms/_ai_readiness.py +17 -17
- cognite/neat/_data_model/rules/dms/_base.py +5 -0
- cognite/neat/_data_model/{validation → rules}/dms/_connections.py +23 -23
- cognite/neat/_data_model/{validation → rules}/dms/_consistency.py +3 -3
- cognite/neat/_data_model/{validation → rules}/dms/_containers.py +9 -9
- cognite/neat/_data_model/{validation → rules}/dms/_limits.py +14 -14
- cognite/neat/_data_model/{validation → rules}/dms/_orchestrator.py +7 -7
- cognite/neat/_data_model/{validation → rules}/dms/_performance.py +7 -7
- cognite/neat/_data_model/{validation → rules}/dms/_views.py +7 -7
- cognite/neat/_session/_cdf.py +15 -1
- cognite/neat/_session/_physical.py +6 -6
- cognite/neat/_session/_wrappers.py +1 -1
- cognite/neat/_state_machine/_states.py +1 -1
- cognite/neat/_store/_store.py +19 -1
- cognite/neat/_version.py +1 -1
- {cognite_neat-1.0.31.dist-info → cognite_neat-1.0.33.dist-info}/METADATA +1 -1
- {cognite_neat-1.0.31.dist-info → cognite_neat-1.0.33.dist-info}/RECORD +34 -29
- {cognite_neat-1.0.31.dist-info → cognite_neat-1.0.33.dist-info}/WHEEL +1 -1
- /cognite/neat/_data_model/{validation → rules}/__init__.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"""Validators for checking containers in the data model."""
|
|
2
2
|
|
|
3
3
|
from cognite.neat._data_model.models.dms._view_property import ViewCorePropertyRequest
|
|
4
|
-
from cognite.neat._data_model.
|
|
4
|
+
from cognite.neat._data_model.rules.dms._base import DataModelRule
|
|
5
5
|
from cognite.neat._issues import ConsistencyError
|
|
6
6
|
|
|
7
7
|
BASE_CODE = "NEAT-DMS-VIEW"
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class ViewToContainerMappingNotPossible(
|
|
10
|
+
class ViewToContainerMappingNotPossible(DataModelRule):
|
|
11
11
|
"""Validates that container and container property referenced by view property exist.
|
|
12
12
|
|
|
13
13
|
## What it does
|
|
@@ -26,7 +26,7 @@ class ViewToContainerMappingNotPossible(DataModelValidator):
|
|
|
26
26
|
code = f"{BASE_CODE}-001"
|
|
27
27
|
issue_type = ConsistencyError
|
|
28
28
|
|
|
29
|
-
def
|
|
29
|
+
def validate(self) -> list[ConsistencyError]:
|
|
30
30
|
errors: list[ConsistencyError] = []
|
|
31
31
|
|
|
32
32
|
if not self.validation_resources.merged_data_model.views:
|
|
@@ -79,7 +79,7 @@ class ViewToContainerMappingNotPossible(DataModelValidator):
|
|
|
79
79
|
return errors
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class ImplementedViewNotExisting(
|
|
82
|
+
class ImplementedViewNotExisting(DataModelRule):
|
|
83
83
|
"""Validates that implemented (inherited) view exists.
|
|
84
84
|
|
|
85
85
|
## What it does
|
|
@@ -97,7 +97,7 @@ class ImplementedViewNotExisting(DataModelValidator):
|
|
|
97
97
|
code = f"{BASE_CODE}-002"
|
|
98
98
|
issue_type = ConsistencyError
|
|
99
99
|
|
|
100
|
-
def
|
|
100
|
+
def validate(self) -> list[ConsistencyError]:
|
|
101
101
|
errors: list[ConsistencyError] = []
|
|
102
102
|
|
|
103
103
|
if not self.validation_resources.merged_data_model.views:
|
|
@@ -126,7 +126,7 @@ class ImplementedViewNotExisting(DataModelValidator):
|
|
|
126
126
|
return errors
|
|
127
127
|
|
|
128
128
|
|
|
129
|
-
class CyclicImplements(
|
|
129
|
+
class CyclicImplements(DataModelRule):
|
|
130
130
|
"""Validates that view implements are not forming a cycle (i.e. cyclic graph of implements)
|
|
131
131
|
|
|
132
132
|
## What it does
|
|
@@ -146,7 +146,7 @@ class CyclicImplements(DataModelValidator):
|
|
|
146
146
|
issue_type = ConsistencyError
|
|
147
147
|
alpha = True
|
|
148
148
|
|
|
149
|
-
def
|
|
149
|
+
def validate(self) -> list[ConsistencyError]:
|
|
150
150
|
errors: list[ConsistencyError] = []
|
|
151
151
|
|
|
152
152
|
for cycle in self.validation_resources.implements_cycles:
|
cognite/neat/_session/_cdf.py
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
# /Users/nikola/repos/neat/cognite/neat/_session/_cdf.py
|
|
2
1
|
import uuid
|
|
3
2
|
|
|
4
3
|
from cognite.neat._client import NeatClient
|
|
5
4
|
from cognite.neat._config import NeatConfig
|
|
5
|
+
from cognite.neat._data_model.rules.cdf._orchestrator import CDFRulesOrchestrator
|
|
6
|
+
from cognite.neat._session._wrappers import session_wrapper
|
|
6
7
|
from cognite.neat._store._store import NeatStore
|
|
7
8
|
|
|
8
9
|
from ._html._render import render
|
|
9
10
|
|
|
10
11
|
|
|
12
|
+
@session_wrapper
|
|
11
13
|
class CDF:
|
|
12
14
|
"""Read from a data source into NeatSession graph store."""
|
|
13
15
|
|
|
@@ -34,3 +36,15 @@ class CDF:
|
|
|
34
36
|
"data_models_limit": self._store.cdf_limits.data_models.limit,
|
|
35
37
|
},
|
|
36
38
|
)
|
|
39
|
+
|
|
40
|
+
def analyze(self) -> None:
|
|
41
|
+
"""Analyze the entity of CDF data models."""
|
|
42
|
+
|
|
43
|
+
on_success = CDFRulesOrchestrator(
|
|
44
|
+
limits=self._store.cdf_limits,
|
|
45
|
+
space_statistics=self._store.cdf_space_statistics,
|
|
46
|
+
can_run_validator=self._config.validation.can_run_validator,
|
|
47
|
+
enable_alpha_validators=self._config.alpha.enable_experimental_validators,
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
return self._store.cdf_analyze(on_success)
|
|
@@ -16,7 +16,7 @@ from cognite.neat._data_model.exporters import (
|
|
|
16
16
|
from cognite.neat._data_model.exporters._table_exporter.workbook import WorkbookOptions
|
|
17
17
|
from cognite.neat._data_model.importers import DMSAPICreator, DMSAPIImporter, DMSImporter, DMSTableImporter
|
|
18
18
|
from cognite.neat._data_model.models.dms import DataModelReference
|
|
19
|
-
from cognite.neat._data_model.
|
|
19
|
+
from cognite.neat._data_model.rules.dms import DmsDataModelRulesOrchestrator
|
|
20
20
|
from cognite.neat._exceptions import UserInputError
|
|
21
21
|
from cognite.neat._state_machine import PhysicalState
|
|
22
22
|
from cognite.neat._store._store import NeatStore
|
|
@@ -109,7 +109,7 @@ class ReadPhysicalDataModel:
|
|
|
109
109
|
else:
|
|
110
110
|
raise UserInputError(f"Unsupported format: {format}. Supported formats are 'neat' and 'toolkit'.")
|
|
111
111
|
|
|
112
|
-
on_success =
|
|
112
|
+
on_success = DmsDataModelRulesOrchestrator(
|
|
113
113
|
modus_operandi=self._config.modeling.mode,
|
|
114
114
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
115
115
|
limits=self._store.cdf_limits,
|
|
@@ -138,7 +138,7 @@ class ReadPhysicalDataModel:
|
|
|
138
138
|
else:
|
|
139
139
|
raise UserInputError(f"Unsupported format: {format}. Supported formats are 'neat' and 'toolkit'.")
|
|
140
140
|
|
|
141
|
-
on_success =
|
|
141
|
+
on_success = DmsDataModelRulesOrchestrator(
|
|
142
142
|
modus_operandi=self._config.modeling.mode,
|
|
143
143
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
144
144
|
limits=self._store.cdf_limits,
|
|
@@ -158,7 +158,7 @@ class ReadPhysicalDataModel:
|
|
|
158
158
|
path = NeatReader.create(io).materialize_path()
|
|
159
159
|
reader = DMSTableImporter.from_excel(path)
|
|
160
160
|
|
|
161
|
-
on_success =
|
|
161
|
+
on_success = DmsDataModelRulesOrchestrator(
|
|
162
162
|
modus_operandi=self._config.modeling.mode,
|
|
163
163
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
164
164
|
limits=self._store.cdf_limits,
|
|
@@ -181,7 +181,7 @@ class ReadPhysicalDataModel:
|
|
|
181
181
|
DataModelReference(space=space, external_id=external_id, version=version), self._client
|
|
182
182
|
)
|
|
183
183
|
|
|
184
|
-
on_success =
|
|
184
|
+
on_success = DmsDataModelRulesOrchestrator(
|
|
185
185
|
modus_operandi=self._config.modeling.mode,
|
|
186
186
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
187
187
|
limits=self._store.cdf_limits,
|
|
@@ -337,7 +337,7 @@ def create(
|
|
|
337
337
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
338
338
|
)
|
|
339
339
|
|
|
340
|
-
on_success =
|
|
340
|
+
on_success = DmsDataModelRulesOrchestrator(
|
|
341
341
|
modus_operandi=self._config.modeling.mode,
|
|
342
342
|
cdf_snapshot=self._store.cdf_snapshot,
|
|
343
343
|
limits=self._store.cdf_limits,
|
|
@@ -28,7 +28,7 @@ def session_wrapper(cls: type[T_Class]) -> type[T_Class]:
|
|
|
28
28
|
identifier = f"{cls.__name__}.{func.__name__}"
|
|
29
29
|
try:
|
|
30
30
|
res = func(self, *args, **kwargs)
|
|
31
|
-
if not self._store.provenance or "DataModel" not in identifier:
|
|
31
|
+
if not self._store.provenance or ("DataModel" not in identifier and "CDF" not in identifier):
|
|
32
32
|
print(f"{display_name} ✅")
|
|
33
33
|
if _COLLECTOR.can_collect:
|
|
34
34
|
_COLLECTOR.collect("action", {"action": identifier, "success": True})
|
|
@@ -34,7 +34,7 @@ class EmptyState(State):
|
|
|
34
34
|
The initial state with empty NEAT store.
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
-
def transition(self, event: Any) -> State:
|
|
37
|
+
def transition(self, event: Any | None) -> State:
|
|
38
38
|
if isinstance(event, DMSImporter):
|
|
39
39
|
return PhysicalState()
|
|
40
40
|
return ForbiddenState(self)
|
cognite/neat/_store/_store.py
CHANGED
|
@@ -4,6 +4,7 @@ from datetime import datetime, timezone
|
|
|
4
4
|
from typing import Any, cast
|
|
5
5
|
|
|
6
6
|
from cognite.neat._client.client import NeatClient
|
|
7
|
+
from cognite.neat._client.data_classes import SpaceStatisticsResponse
|
|
7
8
|
from cognite.neat._config import NeatConfig
|
|
8
9
|
from cognite.neat._data_model._shared import OnSuccess, OnSuccessIssuesChecker, OnSuccessResultProducer
|
|
9
10
|
from cognite.neat._data_model._snapshot import SchemaSnapshot
|
|
@@ -36,6 +37,15 @@ class NeatStore:
|
|
|
36
37
|
# Placeholder for CDF schema and limit snapshot
|
|
37
38
|
self._cdf_snapshot: SchemaSnapshot | None = None
|
|
38
39
|
self._cdf_limits: SchemaLimits | None = None
|
|
40
|
+
self._cdf_space_statistics: SpaceStatisticsResponse | None = None
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
def cdf_space_statistics(self) -> SpaceStatisticsResponse:
|
|
44
|
+
if self._cdf_space_statistics is None:
|
|
45
|
+
self._cdf_space_statistics = self._client.statistics.space_statistics(
|
|
46
|
+
[space.space for space in self.cdf_snapshot.spaces.keys()]
|
|
47
|
+
)
|
|
48
|
+
return self._cdf_space_statistics
|
|
39
49
|
|
|
40
50
|
@property
|
|
41
51
|
def cdf_limits(self) -> SchemaLimits:
|
|
@@ -91,8 +101,16 @@ class NeatStore:
|
|
|
91
101
|
and isinstance(on_success, SchemaDeployer)
|
|
92
102
|
and not on_success.options.dry_run
|
|
93
103
|
):
|
|
94
|
-
# Update CDF snapshot after
|
|
104
|
+
# Update CDF snapshot and space statistics after deployment
|
|
95
105
|
self._cdf_snapshot = SchemaSnapshot.fetch_entire_cdf(self._client)
|
|
106
|
+
self._cdf_space_statistics = self._client.statistics.space_statistics(
|
|
107
|
+
[space.space for space in self.cdf_snapshot.spaces.keys()]
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
def cdf_analyze(self, on_success: OnSuccess) -> None:
|
|
111
|
+
"""Analyze the entity of CDF data models"""
|
|
112
|
+
change, _ = self._do_activity(lambda: self.cdf_snapshot, on_success)
|
|
113
|
+
self.provenance.append(change)
|
|
96
114
|
|
|
97
115
|
def _gather_data_model(self, writer: DMSExporter) -> PhysicalDataModel:
|
|
98
116
|
"""Gather the current physical data model from the store
|
cognite/neat/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "1.0.
|
|
1
|
+
__version__ = "1.0.33"
|
|
2
2
|
__engine__ = "^2.0.4"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cognite-neat
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.33
|
|
4
4
|
Summary: Knowledge graph transformation
|
|
5
5
|
Author: Nikola Vasiljevic, Anders Albert
|
|
6
6
|
Author-email: Nikola Vasiljevic <nikola.vasiljevic@cognite.com>, Anders Albert <anders.albert@cognite.com>
|
|
@@ -4,7 +4,7 @@ cognite/neat/_client/api.py,sha256=VOtXyr9-Ouxkl3nWUj6fffr-9VG6wzVRGWSr_QqR5d8,6
|
|
|
4
4
|
cognite/neat/_client/client.py,sha256=h0HELAHiBFxMNInkDu4AzbgfEIXqeM0BqqnMBmXjgi0,903
|
|
5
5
|
cognite/neat/_client/config.py,sha256=eIIdWaA13yncRP6X7vTYsTpmXmVcmkhZPv5oPnLUEVc,1484
|
|
6
6
|
cognite/neat/_client/containers_api.py,sha256=zFHb9SwfwqAxUkrEStLBV8BDSvRWvBBOY8mVuCIOWQU,3116
|
|
7
|
-
cognite/neat/_client/data_classes.py,sha256=
|
|
7
|
+
cognite/neat/_client/data_classes.py,sha256=C1GNg5MmWaZFwtdV39Mcza7T3dt_cyXVtK6RF0aIHgM,2324
|
|
8
8
|
cognite/neat/_client/data_model_api.py,sha256=fxJ77RbKd8UAsm4jfDH3P16Jp-GwKWPrxx2jyA_xCnk,3518
|
|
9
9
|
cognite/neat/_client/filters.py,sha256=1tPpbp_GFAh7Jq5tdwUvZz6nOoWB36zIxa_ZO-1UER0,1138
|
|
10
10
|
cognite/neat/_client/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -13,23 +13,23 @@ cognite/neat/_client/init/env_vars.py,sha256=9nOEVABp4rI2TtFHCMItLouQ5MXFL0zzL4P
|
|
|
13
13
|
cognite/neat/_client/init/interactive.py,sha256=YVnsvRblQJPojf24dA050gVlrrqADK8afSQ6hkXn7Cs,4801
|
|
14
14
|
cognite/neat/_client/init/main.py,sha256=D-9bsor07T84iFnTZLnhIFA1Xey9zsooHaDhXVeNdos,2508
|
|
15
15
|
cognite/neat/_client/spaces_api.py,sha256=yb26ju3sKbVgiduMEbN4LDGan6vsC3z_JaW3p4FUdr0,2929
|
|
16
|
-
cognite/neat/_client/statistics_api.py,sha256=
|
|
16
|
+
cognite/neat/_client/statistics_api.py,sha256=3KNVsD2OV-EDFb1eqIrCXfYwjvyCDO80bPEpu_aHieI,1813
|
|
17
17
|
cognite/neat/_client/views_api.py,sha256=YMaw7IaxU4gmixpd_t1u9JK9BHfNerf5DMNinGPCAa0,3692
|
|
18
18
|
cognite/neat/_config.py,sha256=IJS_R-86M4SLxdo644LZ0dE9h0jg2XBL1A4QKWJj0TQ,10160
|
|
19
19
|
cognite/neat/_data_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
cognite/neat/_data_model/_analysis.py,sha256=
|
|
21
|
-
cognite/neat/_data_model/_constants.py,sha256=
|
|
20
|
+
cognite/neat/_data_model/_analysis.py,sha256=sZO2NATkyuSzlo3uRgXJ6B3btKWkwblNos7SXT6LHLc,43779
|
|
21
|
+
cognite/neat/_data_model/_constants.py,sha256=pPDtRwBsOq80IkYXRJ0XaRfFOb7CPvxz81IQzcPgAuc,1889
|
|
22
22
|
cognite/neat/_data_model/_identifiers.py,sha256=lDLvMvYDgRNFgk5GmxWzOUunG7M3synAciNjzJI0m_o,1913
|
|
23
23
|
cognite/neat/_data_model/_shared.py,sha256=H0gFqa8tKFNWuvdat5jL6OwySjCw3aQkLPY3wtb9Wrw,1302
|
|
24
24
|
cognite/neat/_data_model/_snapshot.py,sha256=JBaKmL0Tmprz59SZ1JeB49BPMB8Hqa-OAOt0Bai8cw4,6305
|
|
25
25
|
cognite/neat/_data_model/deployer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
cognite/neat/_data_model/deployer/_differ.py,sha256=1ircRBCoaFooSzMTmTZBTORHeAhDa8YtDEnVwBo6TUI,4742
|
|
27
|
-
cognite/neat/_data_model/deployer/_differ_container.py,sha256=
|
|
27
|
+
cognite/neat/_data_model/deployer/_differ_container.py,sha256=AGD4emPRCEdFGFN4rJzLn8JhOjbTrHtYVtXr8q9vSPY,14668
|
|
28
28
|
cognite/neat/_data_model/deployer/_differ_data_model.py,sha256=iA7Xp-7NRvzZJXLLpJaLebkKKpv_VCBKPX6f-RU9wBk,1864
|
|
29
29
|
cognite/neat/_data_model/deployer/_differ_space.py,sha256=J_AaqiseLpwQsOkKc7gmho4U2oSWAGVeEdQNepZiWw0,343
|
|
30
30
|
cognite/neat/_data_model/deployer/_differ_view.py,sha256=g1xHwsoxFUaTOTtQa19nntKF3rxFzc2FxpKKFAUN_NE,11412
|
|
31
|
-
cognite/neat/_data_model/deployer/data_classes.py,sha256=
|
|
32
|
-
cognite/neat/_data_model/deployer/deployer.py,sha256=
|
|
31
|
+
cognite/neat/_data_model/deployer/data_classes.py,sha256=HhByk8m7SbEPAKkUNDF7koRtQPHhILpVXN3f83icfKs,27028
|
|
32
|
+
cognite/neat/_data_model/deployer/deployer.py,sha256=CaD_N6fy2wk6TfrAyRssC65vf_FRvl3yfLQXtGUFdCo,20870
|
|
33
33
|
cognite/neat/_data_model/exporters/__init__.py,sha256=AskjmB_0Vqib4kN84bWt8-M8nO42QypFf-l-E8oA5W8,482
|
|
34
34
|
cognite/neat/_data_model/exporters/_api_exporter.py,sha256=nBDHx9dGbaje0T4IEQv0Kulk2Yu7FkPXgXK_MgLbE50,4948
|
|
35
35
|
cognite/neat/_data_model/exporters/_base.py,sha256=rG_qAU5i5Hh5hUMep2UmDFFZID4x3LEenL6Z5C6N8GQ,646
|
|
@@ -59,10 +59,10 @@ cognite/neat/_data_model/models/dms/_constraints.py,sha256=cyGgDlByXAuSMWJg7Oc25
|
|
|
59
59
|
cognite/neat/_data_model/models/dms/_container.py,sha256=wtQbNUwtpymltT1jav8wD4kIfjaIYnvhhz1KS0ffAbo,6044
|
|
60
60
|
cognite/neat/_data_model/models/dms/_data_model.py,sha256=tq_JGNN-1JxG46bhBhunZiLedklYbDXFEfINB0x3a3Q,3219
|
|
61
61
|
cognite/neat/_data_model/models/dms/_data_types.py,sha256=FMt_d5aJD-o3s9VQWyyCVlHk7D_p3RlSNXBP1OACPs4,6424
|
|
62
|
-
cognite/neat/_data_model/models/dms/_http.py,sha256=
|
|
62
|
+
cognite/neat/_data_model/models/dms/_http.py,sha256=FxOWb0qDKOc7urVXp8J0xl8gRV_psHWwfQLyAS8sLeM,1074
|
|
63
63
|
cognite/neat/_data_model/models/dms/_indexes.py,sha256=ZtXe8ABuRcsAwRIZ9FCanS3uwZHpkOAhvDvjSXtx_Fs,900
|
|
64
64
|
cognite/neat/_data_model/models/dms/_limits.py,sha256=-vwRutprJ7rPXLleSxCh_satR9AqRAvEMig5wSVBEXg,3596
|
|
65
|
-
cognite/neat/_data_model/models/dms/_references.py,sha256=
|
|
65
|
+
cognite/neat/_data_model/models/dms/_references.py,sha256=2l9ZD4ZCj-gzc0QB-rV4iVm8-fsnczziEOn2mZTaEfE,4934
|
|
66
66
|
cognite/neat/_data_model/models/dms/_schema.py,sha256=2JFLcm52smzPdtZ69Lf02UbYAD8I_hpRbI7ZAzdxJJs,641
|
|
67
67
|
cognite/neat/_data_model/models/dms/_space.py,sha256=mj6gID4vcAGsHNtgfXm4_4FMOQbUOkMd3HaYEdy07XM,1895
|
|
68
68
|
cognite/neat/_data_model/models/dms/_types.py,sha256=5-cgC53AG186OZUqkltv7pMjcGNLuH7Etbn8IUcgk1c,447
|
|
@@ -75,21 +75,26 @@ cognite/neat/_data_model/models/entities/_constants.py,sha256=EK9Bus8UgFgxK5cVFM
|
|
|
75
75
|
cognite/neat/_data_model/models/entities/_data_types.py,sha256=DfdEWGek7gODro-_0SiiInhPGwul4zn-ASACQfn8HUY,2838
|
|
76
76
|
cognite/neat/_data_model/models/entities/_identifiers.py,sha256=a7ojJKY1ErZgUANHscEwkctX4RJ7bWEEWOQt5g5Tsdk,1915
|
|
77
77
|
cognite/neat/_data_model/models/entities/_parser.py,sha256=zef_pSDZYMZrJl4IKreFDR577KutfhtN1xpH3Ayjt2o,7669
|
|
78
|
-
cognite/neat/_data_model/
|
|
79
|
-
cognite/neat/_data_model/
|
|
80
|
-
cognite/neat/_data_model/
|
|
81
|
-
cognite/neat/_data_model/
|
|
82
|
-
cognite/neat/_data_model/
|
|
83
|
-
cognite/neat/_data_model/
|
|
84
|
-
cognite/neat/_data_model/
|
|
85
|
-
cognite/neat/_data_model/
|
|
86
|
-
cognite/neat/_data_model/
|
|
87
|
-
cognite/neat/_data_model/
|
|
88
|
-
cognite/neat/_data_model/
|
|
78
|
+
cognite/neat/_data_model/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
+
cognite/neat/_data_model/rules/_base.py,sha256=W5VHNQipinWkXnaI0CfFvqhPar0OuauhG5ixa4XnTLo,1032
|
|
80
|
+
cognite/neat/_data_model/rules/cdf/__init__.py,sha256=Bn9_DkkO4OPUYh0CsM3Pf1fD_UkhfhWqATOzB6iLquk,60
|
|
81
|
+
cognite/neat/_data_model/rules/cdf/_base.py,sha256=59fqmFi_Gvzx3swLsIyc2ACkHAzKAKiqNlwwGnW5bDg,128
|
|
82
|
+
cognite/neat/_data_model/rules/cdf/_orchestrator.py,sha256=egzcYUuFDd8Vm7neBpZFofqZBfYjuElAjYwJWAScutc,2250
|
|
83
|
+
cognite/neat/_data_model/rules/cdf/_spaces.py,sha256=Lsfrp2e7yzgRimkD0qynJ5M2S7Zwzplfg_4Pim1voHk,1605
|
|
84
|
+
cognite/neat/_data_model/rules/dms/__init__.py,sha256=ThCvtSCPzEhciJNnzBKDoTWMimw5U74MbfUwoF6e7F8,2950
|
|
85
|
+
cognite/neat/_data_model/rules/dms/_ai_readiness.py,sha256=1KvOk3Q8aQkE8G6oHml7O-SHiTeIBNmyKPWr3hPcCCw,16133
|
|
86
|
+
cognite/neat/_data_model/rules/dms/_base.py,sha256=BnzBELon389lEXJi7dlb9t3SPjiXgVquiI445I7-APU,134
|
|
87
|
+
cognite/neat/_data_model/rules/dms/_connections.py,sha256=vi_cJp5S4MpfX-jA1eqZClnHdKznkQMDvZk9iIj42mM,30343
|
|
88
|
+
cognite/neat/_data_model/rules/dms/_consistency.py,sha256=7u-EDQk08eV4CJoY5nRbrYXs2cbkQkH6TQCcPOyUGI8,2425
|
|
89
|
+
cognite/neat/_data_model/rules/dms/_containers.py,sha256=eb0eLy13n7OozKp2vrE_oXqD6m2uyX-9fhoCqU_gJqc,10542
|
|
90
|
+
cognite/neat/_data_model/rules/dms/_limits.py,sha256=L6dAsLWVBEpfVFZgw3SvJk1PnEGf4lhJ3SOXjDUsY2Q,14820
|
|
91
|
+
cognite/neat/_data_model/rules/dms/_orchestrator.py,sha256=tTXxLH1yThAeTW_GdDeD-to19faK72c_z8QL9kzgGJc,3069
|
|
92
|
+
cognite/neat/_data_model/rules/dms/_performance.py,sha256=7LTs1E86xA-hvL4fqiIhAHcgIeohwb1pODzh3o6tuzQ,8601
|
|
93
|
+
cognite/neat/_data_model/rules/dms/_views.py,sha256=Tp4VW2512eGSGgeMRoUFh7hqK2vsZD8ryN_EJ7QJoEg,6335
|
|
89
94
|
cognite/neat/_exceptions.py,sha256=hOjPL1vFNNAZzqAHFB9l9ek-XJEBKcqiaPk0onwLPns,2540
|
|
90
95
|
cognite/neat/_issues.py,sha256=wH1mnkrpBsHUkQMGUHFLUIQWQlfJ_qMfdF7q0d9wNhY,1871
|
|
91
96
|
cognite/neat/_session/__init__.py,sha256=owqW5Mml2DSZx1AvPvwNRTBngfhBNrQ6EH-7CKL7Jp0,61
|
|
92
|
-
cognite/neat/_session/_cdf.py,sha256
|
|
97
|
+
cognite/neat/_session/_cdf.py,sha256=-Z1mTCd2no25zWEADS9LwqC7ycLdR6__7Hf9Tok_QYw,1924
|
|
93
98
|
cognite/neat/_session/_html/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
99
|
cognite/neat/_session/_html/_render.py,sha256=ksauN5-lW9GFakPILfaql3CGXpVMwIuvaY8XaEjhFnE,1520
|
|
95
100
|
cognite/neat/_session/_html/static/__init__.py,sha256=VLqgkeITPLrR_WAbVkc_BtGOaHCHbreTHewkoCdgPgQ,427
|
|
@@ -105,7 +110,7 @@ cognite/neat/_session/_html/templates/deployment.html,sha256=aLDXMbF3pcSqnCpUYVG
|
|
|
105
110
|
cognite/neat/_session/_html/templates/issues.html,sha256=zjhkJcPK0hMp_ZKJ9RCf88tuZxQyTYRPxzpqx33Nkt0,1661
|
|
106
111
|
cognite/neat/_session/_html/templates/statistics.html,sha256=C-ghoT8xzBehAJLOonNzCB418LW-FA60MaZBHlW1D5c,968
|
|
107
112
|
cognite/neat/_session/_issues.py,sha256=E8UQeSJURg2dm4MF1pfD9dp-heSRT7pgQZgKlD1-FGs,2723
|
|
108
|
-
cognite/neat/_session/_physical.py,sha256=
|
|
113
|
+
cognite/neat/_session/_physical.py,sha256=k4O-qXDekiC4ZvRRMRdSyKaplLqADbFTMmLk6Hvlq2I,14485
|
|
109
114
|
cognite/neat/_session/_result/__init__.py,sha256=8A0BKgsqnjxkiHUlCpHBNl3mrFWtyjaWYnh0jssE6QU,50
|
|
110
115
|
cognite/neat/_session/_result/_deployment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
116
|
cognite/neat/_session/_result/_deployment/_physical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -118,13 +123,13 @@ cognite/neat/_session/_usage_analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
118
123
|
cognite/neat/_session/_usage_analytics/_collector.py,sha256=8yVfzt8KFfZ-ldkVjDWazuQbs45Q3r6vWKcZEwU8i18,4734
|
|
119
124
|
cognite/neat/_session/_usage_analytics/_constants.py,sha256=-tVdYrCTMKfuMlbO7AlzC29Nug41ug6uuX9DFuihpJg,561
|
|
120
125
|
cognite/neat/_session/_usage_analytics/_storage.py,sha256=w3mUvmPysww6vM3PZBjg6jzNEsDISl7FJ1j19LNs26E,7779
|
|
121
|
-
cognite/neat/_session/_wrappers.py,sha256=
|
|
126
|
+
cognite/neat/_session/_wrappers.py,sha256=hTk2AI9-CWe1sfx3WveP3yKvYxTIE9P6awaP3SV4YhE,5477
|
|
122
127
|
cognite/neat/_state_machine/__init__.py,sha256=wrtQUHETiLzYM0pFo7JC6pJCiXetHADQbyMu8pU8rQU,195
|
|
123
128
|
cognite/neat/_state_machine/_base.py,sha256=-ZpeAhM6l6N6W70dET25tAzOxaaK5aa474eabwZVzjA,1112
|
|
124
|
-
cognite/neat/_state_machine/_states.py,sha256=
|
|
129
|
+
cognite/neat/_state_machine/_states.py,sha256=cE1WzYZCJygaT1rieTp4aFsI7t2CiISK-slRs_t414k,1177
|
|
125
130
|
cognite/neat/_store/__init__.py,sha256=TvM9CcFbtOSrxydPAuJi6Bv_iiGard1Mxfx42ZFoTl0,55
|
|
126
131
|
cognite/neat/_store/_provenance.py,sha256=1zzRDWjR9twZu2jVyIG3UdYdIXtQKJ7uF8a0hV7LEuA,3368
|
|
127
|
-
cognite/neat/_store/_store.py,sha256=
|
|
132
|
+
cognite/neat/_store/_store.py,sha256=Obx6s4vVjBhZZoUclj4On4bxW3Y8_v3fKileQLrI0VI,10630
|
|
128
133
|
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
134
|
cognite/neat/_utils/_reader.py,sha256=pBAwGK_UMd-mGnAP3cXXj3SrORocR3lFKxn-WaVjqsY,5367
|
|
130
135
|
cognite/neat/_utils/auxiliary.py,sha256=YQMpqCxccex_slmLYrR5icVX9aeLbD793ou7IrbNTFs,1654
|
|
@@ -328,9 +333,9 @@ cognite/neat/_v0/session/_template.py,sha256=BNcvrW5y7LWzRM1XFxZkfR1Nc7e8UgjBClH
|
|
|
328
333
|
cognite/neat/_v0/session/_to.py,sha256=AnsRSDDdfFyYwSgi0Z-904X7WdLtPfLlR0x1xsu_jAo,19447
|
|
329
334
|
cognite/neat/_v0/session/_wizard.py,sha256=baPJgXAAF3d1bn4nbIzon1gWfJOeS5T43UXRDJEnD3c,1490
|
|
330
335
|
cognite/neat/_v0/session/exceptions.py,sha256=jv52D-SjxGfgqaHR8vnpzo0SOJETIuwbyffSWAxSDJw,3495
|
|
331
|
-
cognite/neat/_version.py,sha256=
|
|
336
|
+
cognite/neat/_version.py,sha256=1SKg9QyerZ0e2dpVZc97ky2WseNfvIsmQKsSm-Ot5NM,45
|
|
332
337
|
cognite/neat/legacy.py,sha256=DMFeLCSBLT2enk-nm1KfX1rKR2DQDpxY-w6ThY0y9c8,421
|
|
333
338
|
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
cognite_neat-1.0.
|
|
335
|
-
cognite_neat-1.0.
|
|
336
|
-
cognite_neat-1.0.
|
|
339
|
+
cognite_neat-1.0.33.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
|
|
340
|
+
cognite_neat-1.0.33.dist-info/METADATA,sha256=2xWjKg7ErSy3X3GJbvybZB952bXdMJPT5ETumyMEahw,6872
|
|
341
|
+
cognite_neat-1.0.33.dist-info/RECORD,,
|
|
File without changes
|