cognite-toolkit 0.7.56__py3-none-any.whl → 0.7.57__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_toolkit/_cdf_tk/apps/_auth_app.py +2 -2
- cognite_toolkit/_cdf_tk/apps/_core_app.py +4 -4
- cognite_toolkit/_cdf_tk/apps/_dev_app.py +10 -1
- cognite_toolkit/_cdf_tk/apps/_download_app.py +13 -12
- cognite_toolkit/_cdf_tk/apps/_dump_app.py +13 -13
- cognite_toolkit/_cdf_tk/apps/_landing_app.py +10 -1
- cognite_toolkit/_cdf_tk/apps/_migrate_app.py +13 -13
- cognite_toolkit/_cdf_tk/apps/_modules_app.py +29 -5
- cognite_toolkit/_cdf_tk/apps/_profile_app.py +4 -4
- cognite_toolkit/_cdf_tk/apps/_purge.py +4 -5
- cognite_toolkit/_cdf_tk/apps/_repo_app.py +9 -2
- cognite_toolkit/_cdf_tk/apps/_run.py +5 -4
- cognite_toolkit/_cdf_tk/apps/_upload_app.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/agents.py +2 -4
- cognite_toolkit/_cdf_tk/client/api/annotations.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/assets.py +3 -5
- cognite_toolkit/_cdf_tk/client/api/containers.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/data_models.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/datasets.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/events.py +3 -5
- cognite_toolkit/_cdf_tk/client/api/extraction_pipelines.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/filemetadata.py +6 -6
- cognite_toolkit/_cdf_tk/client/api/function_schedules.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/functions.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/graphql_data_models.py +5 -5
- cognite_toolkit/_cdf_tk/client/api/groups.py +5 -7
- cognite_toolkit/_cdf_tk/client/api/hosted_extractor_destinations.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/hosted_extractor_jobs.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/hosted_extractor_mappings.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/hosted_extractor_sources.py +4 -4
- cognite_toolkit/_cdf_tk/client/api/infield.py +8 -8
- cognite_toolkit/_cdf_tk/client/api/instances.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/labels.py +3 -5
- cognite_toolkit/_cdf_tk/client/api/legacy/extended_functions.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/location_filters.py +8 -8
- cognite_toolkit/_cdf_tk/client/api/project.py +14 -2
- cognite_toolkit/_cdf_tk/client/api/raw.py +5 -5
- cognite_toolkit/_cdf_tk/client/api/relationships.py +2 -2
- cognite_toolkit/_cdf_tk/client/api/robotics_capabilities.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/robotics_data_postprocessing.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/robotics_frames.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/robotics_locations.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/robotics_maps.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/robotics_robots.py +3 -5
- cognite_toolkit/_cdf_tk/client/api/search_config.py +5 -5
- cognite_toolkit/_cdf_tk/client/api/security_categories.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/sequences.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/simulator_models.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/spaces.py +2 -4
- cognite_toolkit/_cdf_tk/client/api/streams.py +6 -6
- cognite_toolkit/_cdf_tk/client/api/three_d.py +5 -5
- cognite_toolkit/_cdf_tk/client/api/timeseries.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/transformations.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/views.py +2 -4
- cognite_toolkit/_cdf_tk/client/api/workflow_triggers.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/workflow_versions.py +3 -3
- cognite_toolkit/_cdf_tk/client/api/workflows.py +3 -3
- cognite_toolkit/_cdf_tk/client/cdf_client/api.py +11 -11
- cognite_toolkit/_cdf_tk/client/http_client/__init__.py +23 -23
- cognite_toolkit/_cdf_tk/client/http_client/_client.py +46 -50
- cognite_toolkit/_cdf_tk/client/http_client/{_data_classes2.py → _data_classes.py} +25 -25
- cognite_toolkit/_cdf_tk/client/http_client/_item_classes.py +16 -16
- cognite_toolkit/_cdf_tk/client/resource_classes/project.py +30 -0
- cognite_toolkit/_cdf_tk/commands/_base.py +18 -1
- cognite_toolkit/_cdf_tk/commands/_import_cmd.py +3 -1
- cognite_toolkit/_cdf_tk/commands/_migrate/command.py +7 -7
- cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py +11 -11
- cognite_toolkit/_cdf_tk/commands/_profile.py +10 -5
- cognite_toolkit/_cdf_tk/commands/_purge.py +17 -21
- cognite_toolkit/_cdf_tk/commands/_upload.py +3 -3
- cognite_toolkit/_cdf_tk/commands/build_cmd.py +2 -1
- cognite_toolkit/_cdf_tk/commands/build_v2/build_cmd.py +8 -2
- cognite_toolkit/_cdf_tk/commands/deploy.py +8 -2
- cognite_toolkit/_cdf_tk/commands/init.py +9 -2
- cognite_toolkit/_cdf_tk/commands/modules.py +3 -1
- cognite_toolkit/_cdf_tk/commands/pull.py +8 -2
- cognite_toolkit/_cdf_tk/commands/repo.py +3 -1
- cognite_toolkit/_cdf_tk/commands/resources.py +0 -3
- cognite_toolkit/_cdf_tk/data_classes/_tracking_info.py +1 -0
- cognite_toolkit/_cdf_tk/storageio/_applications.py +6 -6
- cognite_toolkit/_cdf_tk/storageio/_base.py +2 -2
- cognite_toolkit/_cdf_tk/storageio/_datapoints.py +7 -7
- cognite_toolkit/_cdf_tk/storageio/_file_content.py +22 -22
- cognite_toolkit/_cdf_tk/storageio/_raw.py +2 -2
- cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +1 -1
- cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +1 -1
- cognite_toolkit/_resources/cdf.toml +1 -1
- cognite_toolkit/_version.py +1 -1
- {cognite_toolkit-0.7.56.dist-info → cognite_toolkit-0.7.57.dist-info}/METADATA +1 -1
- {cognite_toolkit-0.7.56.dist-info → cognite_toolkit-0.7.57.dist-info}/RECORD +92 -91
- {cognite_toolkit-0.7.56.dist-info → cognite_toolkit-0.7.57.dist-info}/WHEEL +0 -0
- {cognite_toolkit-0.7.56.dist-info → cognite_toolkit-0.7.57.dist-info}/entry_points.txt +0 -0
|
@@ -10,14 +10,14 @@ from cognite.client.data_classes.data_modeling import ViewId
|
|
|
10
10
|
|
|
11
11
|
from cognite_toolkit._cdf_tk.client import ToolkitClient
|
|
12
12
|
from cognite_toolkit._cdf_tk.client.http_client import (
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
ErrorDetails,
|
|
14
|
+
FailedResponse,
|
|
15
15
|
HTTPClient,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
HTTPResult,
|
|
17
|
+
RequestMessage,
|
|
18
|
+
SuccessResponse,
|
|
19
19
|
)
|
|
20
|
-
from cognite_toolkit._cdf_tk.client.http_client._item_classes import
|
|
20
|
+
from cognite_toolkit._cdf_tk.client.http_client._item_classes import ItemsFailedResponse, ItemsResultList
|
|
21
21
|
from cognite_toolkit._cdf_tk.client.resource_classes.data_modeling import NodeReference
|
|
22
22
|
from cognite_toolkit._cdf_tk.client.resource_classes.filemetadata import FileMetadataRequest, FileMetadataResponse
|
|
23
23
|
from cognite_toolkit._cdf_tk.cruds import FileMetadataCRUD
|
|
@@ -121,7 +121,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
121
121
|
def _retrieve_metadata(self, identifiers: Sequence[FileIdentifier]) -> Sequence[FileMetadataResponse] | None:
|
|
122
122
|
config = self.client.config
|
|
123
123
|
response = self.client.http_client.request_single_retries(
|
|
124
|
-
message=
|
|
124
|
+
message=RequestMessage(
|
|
125
125
|
endpoint_url=config.create_api_url("/files/byids"),
|
|
126
126
|
method="POST",
|
|
127
127
|
body_content={
|
|
@@ -133,7 +133,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
133
133
|
},
|
|
134
134
|
)
|
|
135
135
|
)
|
|
136
|
-
if not isinstance(response,
|
|
136
|
+
if not isinstance(response, SuccessResponse):
|
|
137
137
|
return None
|
|
138
138
|
try:
|
|
139
139
|
body = response.body_json
|
|
@@ -184,13 +184,13 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
184
184
|
def _retrieve_download_url(self, identifier: FileIdentifier) -> str | None:
|
|
185
185
|
config = self.client.config
|
|
186
186
|
response = self.client.http_client.request_single_retries(
|
|
187
|
-
message=
|
|
187
|
+
message=RequestMessage(
|
|
188
188
|
endpoint_url=config.create_api_url("/files/downloadlink"),
|
|
189
189
|
method="POST",
|
|
190
190
|
body_content={"items": [identifier.model_dump(mode="json", by_alias=True, exclude={"id_type"})]},
|
|
191
191
|
)
|
|
192
192
|
)
|
|
193
|
-
if not isinstance(response,
|
|
193
|
+
if not isinstance(response, SuccessResponse):
|
|
194
194
|
return None
|
|
195
195
|
|
|
196
196
|
try:
|
|
@@ -281,7 +281,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
281
281
|
|
|
282
282
|
content_bytes = item.file_path.read_bytes()
|
|
283
283
|
upload_response = http_client.request_single_retries(
|
|
284
|
-
|
|
284
|
+
RequestMessage(
|
|
285
285
|
endpoint_url=upload_url,
|
|
286
286
|
method="PUT",
|
|
287
287
|
content_type=item.mime_type,
|
|
@@ -296,7 +296,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
296
296
|
self, item: UploadFileContentItem, http_client: HTTPClient, results: ItemsResultList
|
|
297
297
|
) -> str | None:
|
|
298
298
|
response = http_client.request_single_retries(
|
|
299
|
-
message=
|
|
299
|
+
message=RequestMessage(
|
|
300
300
|
endpoint_url=http_client.config.create_api_url(self.UPLOAD_ENDPOINT),
|
|
301
301
|
method="POST",
|
|
302
302
|
body_content=item.dump(),
|
|
@@ -330,13 +330,13 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
330
330
|
# We know that instance_id is always set for data modeling uploads
|
|
331
331
|
instance_id = cast(NodeReference, item.item.instance_id)
|
|
332
332
|
response = http_client.request_single_retries(
|
|
333
|
-
message=
|
|
333
|
+
message=RequestMessage(
|
|
334
334
|
endpoint_url=http_client.config.create_api_url("/files/uploadlink"),
|
|
335
335
|
method="POST",
|
|
336
336
|
body_content={"items": [{"instanceId": instance_id.dump()}]},
|
|
337
337
|
)
|
|
338
338
|
)
|
|
339
|
-
if isinstance(response,
|
|
339
|
+
if isinstance(response, FailedResponse) and response.error.missing and not created_node:
|
|
340
340
|
if self._create_cognite_file_node(instance_id, http_client, item.source_id, results):
|
|
341
341
|
return self._upload_url_data_modeling(item, http_client, results, created_node=True)
|
|
342
342
|
else:
|
|
@@ -349,7 +349,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
349
349
|
cls, instance_id: NodeReference, http_client: HTTPClient, upload_id: str, results: ItemsResultList
|
|
350
350
|
) -> bool:
|
|
351
351
|
node_creation = http_client.request_single_retries(
|
|
352
|
-
message=
|
|
352
|
+
message=RequestMessage(
|
|
353
353
|
endpoint_url=http_client.config.create_api_url("/models/instances"),
|
|
354
354
|
method="POST",
|
|
355
355
|
body_content={
|
|
@@ -369,7 +369,7 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
369
369
|
},
|
|
370
370
|
)
|
|
371
371
|
)
|
|
372
|
-
if isinstance(node_creation,
|
|
372
|
+
if isinstance(node_creation, SuccessResponse):
|
|
373
373
|
# Node created successfully
|
|
374
374
|
return True
|
|
375
375
|
results.append(node_creation.as_item_response(upload_id))
|
|
@@ -377,19 +377,19 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
377
377
|
|
|
378
378
|
@classmethod
|
|
379
379
|
def _parse_upload_link_response(
|
|
380
|
-
cls, response:
|
|
380
|
+
cls, response: HTTPResult, item: UploadFileContentItem, results: ItemsResultList
|
|
381
381
|
) -> str | None:
|
|
382
|
-
if not isinstance(response,
|
|
382
|
+
if not isinstance(response, SuccessResponse):
|
|
383
383
|
results.append(response.as_item_response(item.source_id))
|
|
384
384
|
return None
|
|
385
385
|
try:
|
|
386
386
|
body = response.body_json
|
|
387
387
|
except ValueError:
|
|
388
388
|
results.append(
|
|
389
|
-
|
|
389
|
+
ItemsFailedResponse(
|
|
390
390
|
status_code=response.status_code,
|
|
391
391
|
body=response.body,
|
|
392
|
-
error=
|
|
392
|
+
error=ErrorDetails(code=response.status_code, message="Invalid JSON response"),
|
|
393
393
|
ids=[item.source_id],
|
|
394
394
|
)
|
|
395
395
|
)
|
|
@@ -400,10 +400,10 @@ class FileContentIO(UploadableStorageIO[FileContentSelector, MetadataWithFilePat
|
|
|
400
400
|
upload_url = cast(str, body["uploadUrl"])
|
|
401
401
|
except (KeyError, IndexError):
|
|
402
402
|
results.append(
|
|
403
|
-
|
|
403
|
+
ItemsFailedResponse(
|
|
404
404
|
status_code=200,
|
|
405
405
|
body=json.dumps(body),
|
|
406
|
-
error=
|
|
406
|
+
error=ErrorDetails(code=200, message="Malformed response"),
|
|
407
407
|
ids=[item.source_id],
|
|
408
408
|
)
|
|
409
409
|
)
|
|
@@ -5,7 +5,7 @@ from uuid import uuid4
|
|
|
5
5
|
from cognite.client.data_classes import Row, RowWrite
|
|
6
6
|
|
|
7
7
|
from cognite_toolkit._cdf_tk.client.http_client import HTTPClient
|
|
8
|
-
from cognite_toolkit._cdf_tk.client.http_client._item_classes import
|
|
8
|
+
from cognite_toolkit._cdf_tk.client.http_client._item_classes import ItemsRequest, ItemsResultList
|
|
9
9
|
from cognite_toolkit._cdf_tk.cruds import RawDatabaseCRUD, RawTableCRUD
|
|
10
10
|
from cognite_toolkit._cdf_tk.exceptions import ToolkitValueError
|
|
11
11
|
from cognite_toolkit._cdf_tk.utils import sanitize_filename
|
|
@@ -67,7 +67,7 @@ class RawIO(
|
|
|
67
67
|
url = self.UPLOAD_ENDPOINT.format(dbName=selector.table.db_name, tableName=selector.table.table_name)
|
|
68
68
|
config = http_client.config
|
|
69
69
|
return http_client.request_items_retries(
|
|
70
|
-
message=
|
|
70
|
+
message=ItemsRequest(
|
|
71
71
|
endpoint_url=config.create_api_url(url),
|
|
72
72
|
method="POST",
|
|
73
73
|
items=data_chunk,
|
cognite_toolkit/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.7.
|
|
1
|
+
__version__ = "0.7.57"
|
|
@@ -2,21 +2,21 @@ cognite_toolkit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
cognite_toolkit/_cdf.py,sha256=W3VpmgXn3fUtXErTk45Y34qpGbO-nbirsWin_WA4Xe4,5549
|
|
3
3
|
cognite_toolkit/_cdf_tk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
cognite_toolkit/_cdf_tk/apps/__init__.py,sha256=80XM_8Tx7nIav2weV7Ni03Oqy84jDtyDPUtDeSaPk5E,754
|
|
5
|
-
cognite_toolkit/_cdf_tk/apps/_auth_app.py,sha256=
|
|
6
|
-
cognite_toolkit/_cdf_tk/apps/_core_app.py,sha256=
|
|
5
|
+
cognite_toolkit/_cdf_tk/apps/_auth_app.py,sha256=XD9BqzTjmQ42ItBiT0ybIFewRfBMSumPBPd9m0FXY0s,3528
|
|
6
|
+
cognite_toolkit/_cdf_tk/apps/_core_app.py,sha256=ogHzZCTILj6bHQn0GmLZRKldFHlxL33hoKcWvsNKQNI,14103
|
|
7
7
|
cognite_toolkit/_cdf_tk/apps/_data_app.py,sha256=LeplXlxXtyIymRPgbatQrRFodU4VZBFxI0bqDutLSbg,806
|
|
8
|
-
cognite_toolkit/_cdf_tk/apps/_dev_app.py,sha256=
|
|
9
|
-
cognite_toolkit/_cdf_tk/apps/_download_app.py,sha256=
|
|
10
|
-
cognite_toolkit/_cdf_tk/apps/_dump_app.py,sha256=
|
|
8
|
+
cognite_toolkit/_cdf_tk/apps/_dev_app.py,sha256=zae8O55y4Gp-I1DLqh_yCRbRPOa-OlSVqXgrx_w-UV0,3313
|
|
9
|
+
cognite_toolkit/_cdf_tk/apps/_download_app.py,sha256=Iw-q4lIMagFQ7b8RVRubUQNAPbqFKP2NmPi30yI7qG0,40455
|
|
10
|
+
cognite_toolkit/_cdf_tk/apps/_dump_app.py,sha256=TE8NhCsR-iUvp2Ij7K5RPqYh2VkNmYjIOMyHyxcmN2Y,37307
|
|
11
11
|
cognite_toolkit/_cdf_tk/apps/_import_app.py,sha256=5n5AF40HJ0Q_3LENCknG0MxH4pMUS8OwsqvtCYj_t7w,2086
|
|
12
|
-
cognite_toolkit/_cdf_tk/apps/_landing_app.py,sha256=
|
|
13
|
-
cognite_toolkit/_cdf_tk/apps/_migrate_app.py,sha256=
|
|
14
|
-
cognite_toolkit/_cdf_tk/apps/_modules_app.py,sha256=
|
|
15
|
-
cognite_toolkit/_cdf_tk/apps/_profile_app.py,sha256=
|
|
16
|
-
cognite_toolkit/_cdf_tk/apps/_purge.py,sha256=
|
|
17
|
-
cognite_toolkit/_cdf_tk/apps/_repo_app.py,sha256=
|
|
18
|
-
cognite_toolkit/_cdf_tk/apps/_run.py,sha256=
|
|
19
|
-
cognite_toolkit/_cdf_tk/apps/_upload_app.py,sha256=
|
|
12
|
+
cognite_toolkit/_cdf_tk/apps/_landing_app.py,sha256=qZqO0qN33-6TTF9O4fYuNF6zhJH-QyUWsuElWr8sH6w,1365
|
|
13
|
+
cognite_toolkit/_cdf_tk/apps/_migrate_app.py,sha256=WYgwfevjrp1biyQ5NS8OOHnG7Pc7VKvhDstZs99UVKo,47298
|
|
14
|
+
cognite_toolkit/_cdf_tk/apps/_modules_app.py,sha256=sbgTYVKSb-HdaSJrccZGLRj28ifCIjbxQC6eADy16vk,8958
|
|
15
|
+
cognite_toolkit/_cdf_tk/apps/_profile_app.py,sha256=ilJ8GuFkzexEAqZDuEqp7P-H_RxSFH2oO1t_bcDhJIQ,7067
|
|
16
|
+
cognite_toolkit/_cdf_tk/apps/_purge.py,sha256=P7WoQURdrUGDOvBQMZ695Xqj_j8Mfln6eIovGQdOqUE,14172
|
|
17
|
+
cognite_toolkit/_cdf_tk/apps/_repo_app.py,sha256=GiSzl5YpVRb940VIXKlIZcTGBEGMpkN_welfqzWdwqs,1948
|
|
18
|
+
cognite_toolkit/_cdf_tk/apps/_run.py,sha256=J0-uICKP3yEybEq46YPLwxJzbGwg0R3nqIDSv-oQxKQ,9085
|
|
19
|
+
cognite_toolkit/_cdf_tk/apps/_upload_app.py,sha256=1PeHgg88QU2MtkYp1iTL7NxB5F3X9elbVgzHYAFb9Kg,3942
|
|
20
20
|
cognite_toolkit/_cdf_tk/builders/__init__.py,sha256=8073Ijf621XiAtiwup-rLfrbYd403H8lo9e65_iP1JA,1186
|
|
21
21
|
cognite_toolkit/_cdf_tk/builders/_base.py,sha256=_4Gd6GtuAmnPvl3IjvuAUfuSQtEVJekUaqzk3IH-tIY,7462
|
|
22
22
|
cognite_toolkit/_cdf_tk/builders/_datamodels.py,sha256=hN3fWQAktrWdaGAItZ0tHpBXqJDu0JfH6t7pO7EIl2Q,3541
|
|
@@ -32,34 +32,34 @@ cognite_toolkit/_cdf_tk/client/_constants.py,sha256=COUGcea37mDF2sf6MGqJXWmecTY_
|
|
|
32
32
|
cognite_toolkit/_cdf_tk/client/_resource_base.py,sha256=Zbo-Z3K9xGbF7WjRl_aIWQjxIa9V94Yc7RvKI2CF5fQ,7227
|
|
33
33
|
cognite_toolkit/_cdf_tk/client/_toolkit_client.py,sha256=P3zJeXdUDShf40XCAf9i9SjhZn7myo_COyMlJHfWr6s,5297
|
|
34
34
|
cognite_toolkit/_cdf_tk/client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
cognite_toolkit/_cdf_tk/client/api/agents.py,sha256=
|
|
36
|
-
cognite_toolkit/_cdf_tk/client/api/annotations.py,sha256=
|
|
37
|
-
cognite_toolkit/_cdf_tk/client/api/assets.py,sha256=
|
|
38
|
-
cognite_toolkit/_cdf_tk/client/api/containers.py,sha256=
|
|
39
|
-
cognite_toolkit/_cdf_tk/client/api/data_models.py,sha256=
|
|
40
|
-
cognite_toolkit/_cdf_tk/client/api/datasets.py,sha256=
|
|
41
|
-
cognite_toolkit/_cdf_tk/client/api/events.py,sha256=
|
|
42
|
-
cognite_toolkit/_cdf_tk/client/api/extraction_pipelines.py,sha256=
|
|
43
|
-
cognite_toolkit/_cdf_tk/client/api/filemetadata.py,sha256=
|
|
44
|
-
cognite_toolkit/_cdf_tk/client/api/function_schedules.py,sha256=
|
|
45
|
-
cognite_toolkit/_cdf_tk/client/api/functions.py,sha256=
|
|
46
|
-
cognite_toolkit/_cdf_tk/client/api/graphql_data_models.py,sha256=
|
|
47
|
-
cognite_toolkit/_cdf_tk/client/api/groups.py,sha256=
|
|
48
|
-
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_destinations.py,sha256=
|
|
49
|
-
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_jobs.py,sha256=
|
|
50
|
-
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_mappings.py,sha256=
|
|
51
|
-
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_sources.py,sha256=
|
|
35
|
+
cognite_toolkit/_cdf_tk/client/api/agents.py,sha256=XtwYBKXZt_oyBmF0vVKyILrkVngd_YcgwMQPeI6w7Eo,3885
|
|
36
|
+
cognite_toolkit/_cdf_tk/client/api/annotations.py,sha256=8k0fsLeSExh2Sxu_8VVXgvLxMJl1CX13yQ-HrtRxtFw,4634
|
|
37
|
+
cognite_toolkit/_cdf_tk/client/api/assets.py,sha256=XgjBadGmn44ozlSTtn9L2FKTXlvXk83s9o-AZkGA3ZY,5111
|
|
38
|
+
cognite_toolkit/_cdf_tk/client/api/containers.py,sha256=LNOXNUBG8F7q1suiilDswZ5GLFbFQlcT3ffbEeAoCHM,4666
|
|
39
|
+
cognite_toolkit/_cdf_tk/client/api/data_models.py,sha256=hBJOGKsUERQzk7F6onJOQ5owtMDNxrK2_dzUMqDZbow,4840
|
|
40
|
+
cognite_toolkit/_cdf_tk/client/api/datasets.py,sha256=98VjWvn6iie4hTd6L7uF_NcDcv03nP9nX-6w0_8mgp8,5469
|
|
41
|
+
cognite_toolkit/_cdf_tk/client/api/events.py,sha256=jesZlUEzZ1q6uK1au4bz50ehmM215LOvF3osroKzivg,4943
|
|
42
|
+
cognite_toolkit/_cdf_tk/client/api/extraction_pipelines.py,sha256=fHoEyXHRO6KvXq4oBuTY8eLcosfhKZubeWRbnoxik58,5941
|
|
43
|
+
cognite_toolkit/_cdf_tk/client/api/filemetadata.py,sha256=m6aMYfPSW-rQ2lYMlpcW90qOugFFzsF4hyAKxbiIoww,7078
|
|
44
|
+
cognite_toolkit/_cdf_tk/client/api/function_schedules.py,sha256=UO0_XqfISUW7O-ns-VlQsz-0RR-7foUKFJDwF_F6be0,4143
|
|
45
|
+
cognite_toolkit/_cdf_tk/client/api/functions.py,sha256=oqt0WF9Cc2XQzx4KgpC_cPyV1-hzLrak5oW9DD3FzQg,3937
|
|
46
|
+
cognite_toolkit/_cdf_tk/client/api/graphql_data_models.py,sha256=oNKENLu82PJ9KR9aOGn-iUkkYtElfWBuYETwNIDgJ2U,6176
|
|
47
|
+
cognite_toolkit/_cdf_tk/client/api/groups.py,sha256=G6kFeCtUK_UVNWUsFTpNO9H-hdUxOLMPLqaDYyowymE,4221
|
|
48
|
+
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_destinations.py,sha256=9hB7cU35xiFUcRJuizSmeIJAHd7KHVxxVcFdCZClcKs,5245
|
|
49
|
+
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_jobs.py,sha256=l46ocQlWFEMqxemHEPcfxhHwEfktZGP33E_NjcsQ-Ac,4721
|
|
50
|
+
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_mappings.py,sha256=bqPRiAuaNMm35NPwtZ10WTcmshnrZcMSfa322Rav3eo,5084
|
|
51
|
+
cognite_toolkit/_cdf_tk/client/api/hosted_extractor_sources.py,sha256=1gOm6HJ_oBj0ub-QPJqiod_yxBdmF_R3sOAFbhN2a88,5510
|
|
52
52
|
cognite_toolkit/_cdf_tk/client/api/hosted_extractors.py,sha256=sjo9M98_SNXoIcM1nYR8qPLhtP9zT64bd-7jt6leWYI,1004
|
|
53
|
-
cognite_toolkit/_cdf_tk/client/api/infield.py,sha256=
|
|
54
|
-
cognite_toolkit/_cdf_tk/client/api/instances.py,sha256=
|
|
55
|
-
cognite_toolkit/_cdf_tk/client/api/labels.py,sha256=
|
|
53
|
+
cognite_toolkit/_cdf_tk/client/api/infield.py,sha256=7OzvDVNqlm1yfxaIjL_P-8EUbi3lfIug_lPRZGEr6dU,11036
|
|
54
|
+
cognite_toolkit/_cdf_tk/client/api/instances.py,sha256=Ticso6Jh9R51OPKTjKs9IOaQ1j_usnQIUGIUktx3YZw,5615
|
|
55
|
+
cognite_toolkit/_cdf_tk/client/api/labels.py,sha256=3gjJKJWfARA1yWehM2SyMY-B07-gclGUkAzeXiVnfJQ,4341
|
|
56
56
|
cognite_toolkit/_cdf_tk/client/api/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
cognite_toolkit/_cdf_tk/client/api/legacy/canvas.py,sha256=Xyded-e7dqu-l2PR3U9PZ3maSKyjH56ApTJTpCPAh08,9313
|
|
58
58
|
cognite_toolkit/_cdf_tk/client/api/legacy/charts.py,sha256=5NtyySLHfITYEw1D7osSZjW75js0Uu7ow34_CJq-pSc,4964
|
|
59
59
|
cognite_toolkit/_cdf_tk/client/api/legacy/dml.py,sha256=8b1lo86JdvfEsz9mP2rx0Mp9fyWsU6mbXHqLBtvSidU,3546
|
|
60
60
|
cognite_toolkit/_cdf_tk/client/api/legacy/extended_data_modeling.py,sha256=XgVMPDDERqlB6wphWmNcWYJ1kS0XIkTYqMQDJUZLTTw,12978
|
|
61
61
|
cognite_toolkit/_cdf_tk/client/api/legacy/extended_files.py,sha256=zzY5jtNqFKDb2-z12NKYHIEE-KEZ8XI-WAlwr992OII,9213
|
|
62
|
-
cognite_toolkit/_cdf_tk/client/api/legacy/extended_functions.py,sha256=
|
|
62
|
+
cognite_toolkit/_cdf_tk/client/api/legacy/extended_functions.py,sha256=wVyK5yIEhFQyxoEsW6KK4C_w1VZP-mVKgBkL-FOdsx8,3442
|
|
63
63
|
cognite_toolkit/_cdf_tk/client/api/legacy/extended_raw.py,sha256=Z_vk_nox9uYecOWYdoJX4sKvGFTLABI191K_BFgEYMk,2129
|
|
64
64
|
cognite_toolkit/_cdf_tk/client/api/legacy/extended_timeseries.py,sha256=Pj9B-u3UxndidSzJqQnm0g3tGZUGj_bBgsS4INdGpxA,17809
|
|
65
65
|
cognite_toolkit/_cdf_tk/client/api/legacy/fixed_transformations.py,sha256=m66cqbx4oCtjv5TBQOWLNFrz475qVTCXBu_pTxbdCD4,5589
|
|
@@ -74,46 +74,46 @@ cognite_toolkit/_cdf_tk/client/api/legacy/robotics/maps.py,sha256=08J3cXEeAdPdxf
|
|
|
74
74
|
cognite_toolkit/_cdf_tk/client/api/legacy/robotics/robots.py,sha256=AebJdlo4ydYWBzIItZTqzq2SzcChTw985MIt8nOD80U,4044
|
|
75
75
|
cognite_toolkit/_cdf_tk/client/api/legacy/robotics/utlis.py,sha256=EMwyrIb9CfM1q6HAfPe6qqfmE1Gdm_UiM8XicsbEAzE,329
|
|
76
76
|
cognite_toolkit/_cdf_tk/client/api/legacy/search_config.py,sha256=dArd1eApJz8uvtNnHMODwNpZrkFDagaXHrukeELOJtk,1852
|
|
77
|
-
cognite_toolkit/_cdf_tk/client/api/location_filters.py,sha256=
|
|
77
|
+
cognite_toolkit/_cdf_tk/client/api/location_filters.py,sha256=TBoIUCGbJC7vLn6SYXwRmqE1Y0m9_0kmullCkrKa6YM,6866
|
|
78
78
|
cognite_toolkit/_cdf_tk/client/api/lookup.py,sha256=c-cvtgfGGGYyk8ROcJu44qlo1ocqbk0o1zafCql79fU,17652
|
|
79
79
|
cognite_toolkit/_cdf_tk/client/api/migration.py,sha256=wYwu5xzNS_-E_vJIOXxPWr6_iRsL9Mld2rLZtOeK9pQ,23106
|
|
80
|
-
cognite_toolkit/_cdf_tk/client/api/project.py,sha256=
|
|
81
|
-
cognite_toolkit/_cdf_tk/client/api/raw.py,sha256=
|
|
82
|
-
cognite_toolkit/_cdf_tk/client/api/relationships.py,sha256=
|
|
80
|
+
cognite_toolkit/_cdf_tk/client/api/project.py,sha256=IN6F2oWT_GBaNQhW8fWoVr-GBQMfncKV2Ibgxd3qRmA,1634
|
|
81
|
+
cognite_toolkit/_cdf_tk/client/api/raw.py,sha256=MiFubP5b1F45yr0uTfb7V2aMVezuwKXQiueV_LkTgZs,7700
|
|
82
|
+
cognite_toolkit/_cdf_tk/client/api/relationships.py,sha256=RpKav2wWoEmSfGNLsi_3Zh0yyEZ7XlmmKJyhUOlGIjg,4983
|
|
83
83
|
cognite_toolkit/_cdf_tk/client/api/robotics.py,sha256=N32x6d4s4RNLrotAiYzBQMmXKRGS0pefjoQGkBmbSPI,969
|
|
84
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_capabilities.py,sha256=
|
|
85
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_data_postprocessing.py,sha256=
|
|
86
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_frames.py,sha256=
|
|
87
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_locations.py,sha256=
|
|
88
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_maps.py,sha256=
|
|
89
|
-
cognite_toolkit/_cdf_tk/client/api/robotics_robots.py,sha256=
|
|
84
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_capabilities.py,sha256=HBUW6sEUjxSo3fpmtVZYrD_MFkt2c7sSE0Ert1ox0-I,4734
|
|
85
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_data_postprocessing.py,sha256=ft2QqCc2KuMvKZ3CNnX463sEvxNnif3EvIc-o_fmCho,5319
|
|
86
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_frames.py,sha256=SacwN0VYph13AbTl_Jw1cZvIBTV9mdEJ7S4oJ6MiBEg,4485
|
|
87
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_locations.py,sha256=4y6B0IgrMoyNAVPN67eTXDXwvV1OpqNRZRHxeLRIHjQ,4647
|
|
88
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_maps.py,sha256=GoClTOAndjC1J3SyJdR80nKgOCFkKSSo34-x2c3uHdE,4411
|
|
89
|
+
cognite_toolkit/_cdf_tk/client/api/robotics_robots.py,sha256=Vi367r7IHy6B7MiIN-Blnf9XYO9EYi69UHQmKNw81J4,4353
|
|
90
90
|
cognite_toolkit/_cdf_tk/client/api/search.py,sha256=wl6MjmkELCWmkXf9yYM03LElLC5l0_DwwifsZc_tXSg,694
|
|
91
|
-
cognite_toolkit/_cdf_tk/client/api/search_config.py,sha256=
|
|
92
|
-
cognite_toolkit/_cdf_tk/client/api/security_categories.py,sha256=
|
|
93
|
-
cognite_toolkit/_cdf_tk/client/api/sequences.py,sha256
|
|
94
|
-
cognite_toolkit/_cdf_tk/client/api/simulator_models.py,sha256=
|
|
91
|
+
cognite_toolkit/_cdf_tk/client/api/search_config.py,sha256=UwreiuDY4bjDTJ6OY4gEePtnfBCvlPSxea7w2CKhkNM,3606
|
|
92
|
+
cognite_toolkit/_cdf_tk/client/api/security_categories.py,sha256=qyYAVHAfoZD5D0DI2Q0aa2A4uCJVRt7gWK7CqVIdg0A,3532
|
|
93
|
+
cognite_toolkit/_cdf_tk/client/api/sequences.py,sha256=irpz_xm7FhKQs7WnTuW-TQ0kyjZlEkJ27z5GSu2lyd0,5110
|
|
94
|
+
cognite_toolkit/_cdf_tk/client/api/simulator_models.py,sha256=nOoljEDiR49TZmcbN1mg2DeOZtyKIN6N36kylio9Z7Y,5749
|
|
95
95
|
cognite_toolkit/_cdf_tk/client/api/simulators.py,sha256=61pnNOXkCSigwRbfdBu6wV7bWainQjoWkweFXnChoXM,250
|
|
96
|
-
cognite_toolkit/_cdf_tk/client/api/spaces.py,sha256=
|
|
97
|
-
cognite_toolkit/_cdf_tk/client/api/streams.py,sha256=
|
|
98
|
-
cognite_toolkit/_cdf_tk/client/api/three_d.py,sha256=
|
|
99
|
-
cognite_toolkit/_cdf_tk/client/api/timeseries.py,sha256=
|
|
96
|
+
cognite_toolkit/_cdf_tk/client/api/spaces.py,sha256=91tNo2TZe8kKWyLYfP-mHOlN-Wma5zJjeBWKudatErY,3997
|
|
97
|
+
cognite_toolkit/_cdf_tk/client/api/streams.py,sha256=nsXAQ9NKiBqick2qbi7jg9E8QZFr976DooY5BjngVxQ,3846
|
|
98
|
+
cognite_toolkit/_cdf_tk/client/api/three_d.py,sha256=74mh2qUfK9Lsl7JBrsmNE61Zfr1nVwr6XtyM35MRJyM,16760
|
|
99
|
+
cognite_toolkit/_cdf_tk/client/api/timeseries.py,sha256=1G3s_efCWw0K4OzzyuQi1JApAeSlJocdZA_dMXG1H-s,5259
|
|
100
100
|
cognite_toolkit/_cdf_tk/client/api/token.py,sha256=6wJIos7LB2cXvO6LaklpJL0do8kRvTqkBJyJ1Ba-4kg,5135
|
|
101
|
-
cognite_toolkit/_cdf_tk/client/api/transformations.py,sha256=
|
|
101
|
+
cognite_toolkit/_cdf_tk/client/api/transformations.py,sha256=bheUWrY4PaYEJWthQ2Z3iakRW_7G0tmgzNVk2MhTpoo,5780
|
|
102
102
|
cognite_toolkit/_cdf_tk/client/api/verify.py,sha256=-x6z6lMaOZG91adi0m9NtJ4wIQgoZURbzluPALXM-ps,3730
|
|
103
|
-
cognite_toolkit/_cdf_tk/client/api/views.py,sha256=
|
|
104
|
-
cognite_toolkit/_cdf_tk/client/api/workflow_triggers.py,sha256=
|
|
105
|
-
cognite_toolkit/_cdf_tk/client/api/workflow_versions.py,sha256=
|
|
106
|
-
cognite_toolkit/_cdf_tk/client/api/workflows.py,sha256=
|
|
103
|
+
cognite_toolkit/_cdf_tk/client/api/views.py,sha256=gEUyVBtlD4fL3EfqB5L-5K9zUID9INCi-ZvXuZQOuds,4607
|
|
104
|
+
cognite_toolkit/_cdf_tk/client/api/workflow_triggers.py,sha256=v2pl2XS7_Ztl5bLCNvUYEFszvpdKfMxBpdmeZfQHL0Y,4744
|
|
105
|
+
cognite_toolkit/_cdf_tk/client/api/workflow_versions.py,sha256=TjidsRhGvMxdQU3IHhGmmUB1H5rcSdkO9TLPVMWA0qU,5194
|
|
106
|
+
cognite_toolkit/_cdf_tk/client/api/workflows.py,sha256=TimrAG0QGPr4pQLl4A4VvYwcnhC72pYORQCoq9H7jw4,4404
|
|
107
107
|
cognite_toolkit/_cdf_tk/client/api_client.py,sha256=CQdD_gfDqQkz5OYHrTnKvBvEvzHPdHDB1BkZPWRoahg,440
|
|
108
108
|
cognite_toolkit/_cdf_tk/client/cdf_client/__init__.py,sha256=jTu-l5BjBWOyQdhYMk9n9JFG7sN_xlCyC8X9KcYPReI,225
|
|
109
|
-
cognite_toolkit/_cdf_tk/client/cdf_client/api.py,sha256=
|
|
109
|
+
cognite_toolkit/_cdf_tk/client/cdf_client/api.py,sha256=ThRChQU-56zlfgxi6h_cALBr7kEd8Q_Nt03pvRCBHWs,14535
|
|
110
110
|
cognite_toolkit/_cdf_tk/client/cdf_client/responses.py,sha256=UVhvU_8UKCLsjCFaSiVFF6uk72pHOx87ZLk88dhuOYk,1050
|
|
111
111
|
cognite_toolkit/_cdf_tk/client/config.py,sha256=weMR43z-gqHMn-Jqvfmh_nJ0HbgEdyeCGtISuEf3OuY,4269
|
|
112
|
-
cognite_toolkit/_cdf_tk/client/http_client/__init__.py,sha256=
|
|
113
|
-
cognite_toolkit/_cdf_tk/client/http_client/_client.py,sha256=
|
|
114
|
-
cognite_toolkit/_cdf_tk/client/http_client/
|
|
112
|
+
cognite_toolkit/_cdf_tk/client/http_client/__init__.py,sha256=_B_eB9yZ97ctfWFNrrK722R-WkMbktZECeiqZlUUee8,674
|
|
113
|
+
cognite_toolkit/_cdf_tk/client/http_client/_client.py,sha256=wPq3Sya_a-SbiMNoAGWFgdefeQN4a16xZ7ytS0F0TV0,15860
|
|
114
|
+
cognite_toolkit/_cdf_tk/client/http_client/_data_classes.py,sha256=qBXasZtaNTi9IRN07poW5JCunyliuY-3sKuJlTMDvfY,5414
|
|
115
115
|
cognite_toolkit/_cdf_tk/client/http_client/_exception.py,sha256=9dE5tm1qTviG93JppLql6ltlmAgm8TxWh9wWPdm0ITA,428
|
|
116
|
-
cognite_toolkit/_cdf_tk/client/http_client/_item_classes.py,sha256=
|
|
116
|
+
cognite_toolkit/_cdf_tk/client/http_client/_item_classes.py,sha256=Jjbvt0HjR9kcDpmFXsVRtwJvQqvEq6UOJO9xutSibr8,4454
|
|
117
117
|
cognite_toolkit/_cdf_tk/client/http_client/_tracker.py,sha256=pu6oA-XpOeaOLdoeD_mGfJXC3BFGWfh5oGcRDpb6maw,1407
|
|
118
118
|
cognite_toolkit/_cdf_tk/client/request_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
119
|
cognite_toolkit/_cdf_tk/client/request_classes/base.py,sha256=-4KjNxurkZpHEfKHz_J6hwTvavaGkGdy8oH79Njm1Io,636
|
|
@@ -187,6 +187,7 @@ cognite_toolkit/_cdf_tk/client/resource_classes/legacy/search_config.py,sha256=R
|
|
|
187
187
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/sequences.py,sha256=02d34fPcJ1H7U5ZnCCfOi36z5WJ4WnRfCWwkp99mW2E,6234
|
|
188
188
|
cognite_toolkit/_cdf_tk/client/resource_classes/legacy/streamlit_.py,sha256=nEk00FH3i-px2r6ql4kk1VVL4sytjUn0_sTkEdDSHVc,6746
|
|
189
189
|
cognite_toolkit/_cdf_tk/client/resource_classes/location_filter.py,sha256=GKvfTlnF_JiVrIAAgLZY5nElLvb9bhC5VqT4Jezml5Y,2838
|
|
190
|
+
cognite_toolkit/_cdf_tk/client/resource_classes/project.py,sha256=smElRldxcG_M_yrFBxUW-ka6eQDgYApMBMESkljAri8,758
|
|
190
191
|
cognite_toolkit/_cdf_tk/client/resource_classes/raw.py,sha256=4PrHSVvK0dD0VeCDjErLdNwHcu6pT4DUujk1dSaPt_o,1234
|
|
191
192
|
cognite_toolkit/_cdf_tk/client/resource_classes/relationship.py,sha256=cqe45BYHZ_6ZNjlyglLNdQWm01jxxftUHSjBa1EYwZs,1421
|
|
192
193
|
cognite_toolkit/_cdf_tk/client/resource_classes/resource_view_mapping.py,sha256=0A4U9EFo69hca5w6ddQNU9GNnzw8og0uC_rvi5k7j94,1159
|
|
@@ -216,13 +217,13 @@ cognite_toolkit/_cdf_tk/client/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
216
217
|
cognite_toolkit/_cdf_tk/client/utils/_concurrency.py,sha256=3GtQbKDaosyKHEt-KzxKK9Yie4TvZPdoou2vUk6dUa8,2298
|
|
217
218
|
cognite_toolkit/_cdf_tk/client/utils/_http_client.py,sha256=oXNKrIaizG4WiSAhL_kSCHAuL4aaaEhCU4pOJGxh6Xs,483
|
|
218
219
|
cognite_toolkit/_cdf_tk/commands/__init__.py,sha256=g-k-P7jWUVzDM0iIBlq9kXdAs_dlGji3NxYEEmTv0L8,1412
|
|
219
|
-
cognite_toolkit/_cdf_tk/commands/_base.py,sha256=
|
|
220
|
+
cognite_toolkit/_cdf_tk/commands/_base.py,sha256=8Z436Pqd5vX7Hz2aihPrZVTx2wlMp9Ky6wfA-qapFSQ,3359
|
|
220
221
|
cognite_toolkit/_cdf_tk/commands/_changes.py,sha256=sU0KaTtPVSJgAZcaZ1Tkcajj36pmhd13kh7V8QbIED8,22987
|
|
221
222
|
cognite_toolkit/_cdf_tk/commands/_cli_commands.py,sha256=TK6U_rm6VZT_V941kTyHMoulWgJzbDC8YIIQDPJ5x3w,1011
|
|
222
223
|
cognite_toolkit/_cdf_tk/commands/_download.py,sha256=dVddH9t7oGx1kdQ3CCYYQb96Uxxy-xC8Opph98lo46U,6869
|
|
223
|
-
cognite_toolkit/_cdf_tk/commands/_import_cmd.py,sha256=
|
|
224
|
+
cognite_toolkit/_cdf_tk/commands/_import_cmd.py,sha256=_qUF8xdJFoXDbtDYGCVC6kz9kyrcN_abXV9nFicThvw,11276
|
|
224
225
|
cognite_toolkit/_cdf_tk/commands/_migrate/__init__.py,sha256=8ki04tJGH1dHdF2NtVF4HyhaC0XDDS7onrH_nvd9KtE,153
|
|
225
|
-
cognite_toolkit/_cdf_tk/commands/_migrate/command.py,sha256=
|
|
226
|
+
cognite_toolkit/_cdf_tk/commands/_migrate/command.py,sha256=meyp2cFcq5Wtq4FvELSqdwHRA45o9FMWFL_5AnXALvc,13587
|
|
226
227
|
cognite_toolkit/_cdf_tk/commands/_migrate/conversion.py,sha256=-sZktmsDIqkhNg-kg95Ty6eTm7FiyFRi1ZQLOkZ5x2w,17889
|
|
227
228
|
cognite_toolkit/_cdf_tk/commands/_migrate/creators.py,sha256=Gp3CKruTxeSDS3HiWiLsQ4mN2SZ4BQB5xQ50o68GTs8,9616
|
|
228
229
|
cognite_toolkit/_cdf_tk/commands/_migrate/data_classes.py,sha256=4hv_TKTfEZoC9h6lIlAW_ewKlT6F4KrquQpqUz8M1iw,11679
|
|
@@ -230,34 +231,34 @@ cognite_toolkit/_cdf_tk/commands/_migrate/data_mapper.py,sha256=qHYeFCBBGPejbgC_
|
|
|
230
231
|
cognite_toolkit/_cdf_tk/commands/_migrate/data_model.py,sha256=0lRyDRJ8zo00OngwWagQgHQIaemK4eufW9kbWwZ9Yo0,7901
|
|
231
232
|
cognite_toolkit/_cdf_tk/commands/_migrate/default_mappings.py,sha256=nH_wC0RzcI721sXwH_pThOxPv1nq4-oBd1rCDSGbr9Y,5555
|
|
232
233
|
cognite_toolkit/_cdf_tk/commands/_migrate/issues.py,sha256=SFkfLBCLI4nZBIWSRnyu6G4xcdS-csYJwzmzc4Jmzho,6988
|
|
233
|
-
cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py,sha256=
|
|
234
|
+
cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py,sha256=PuIGH5B2vbAzQ9FHZe_nFDRYZkByyBR0Nwv2tc1GiYs,26815
|
|
234
235
|
cognite_toolkit/_cdf_tk/commands/_migrate/prepare.py,sha256=RfqaNoso5CyBwc-p6ckwcYqBfZXKhdJgdGIyd0TATaI,2635
|
|
235
236
|
cognite_toolkit/_cdf_tk/commands/_migrate/selectors.py,sha256=N1H_-rBpPUD6pbrlcofn1uEK1bA694EUXEe1zIXeqyo,2489
|
|
236
|
-
cognite_toolkit/_cdf_tk/commands/_profile.py,sha256=
|
|
237
|
-
cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=
|
|
237
|
+
cognite_toolkit/_cdf_tk/commands/_profile.py,sha256=STkSHgT0BwOdhYYIYaY0ok-vUSTxoU9KaoF-QY52cq0,43403
|
|
238
|
+
cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=zO7_k36Wch2_kTm_IBnOqZ2QIIwKMnvv02-X9vYOLDY,32919
|
|
238
239
|
cognite_toolkit/_cdf_tk/commands/_questionary_style.py,sha256=h-w7fZKkGls3TrzIGBKjsZSGoXJJIYchgD1StfA40r8,806
|
|
239
|
-
cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=
|
|
240
|
+
cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=h4Ct02_7zyGr_SfQ2hOQAkDEcbjakA264ck09t8En04,13046
|
|
240
241
|
cognite_toolkit/_cdf_tk/commands/_utils.py,sha256=UxMJW5QYKts4om5n6x2Tq2ihvfO9gWjhQKeqZNFTlKg,402
|
|
241
242
|
cognite_toolkit/_cdf_tk/commands/_virtual_env.py,sha256=GFAid4hplixmj9_HkcXqU5yCLj-fTXm4cloGD6U2swY,2180
|
|
242
243
|
cognite_toolkit/_cdf_tk/commands/about.py,sha256=pEXNdCeJYONOalH8x-7QRsKLgj-9gdIqN16pPxA3bhg,9395
|
|
243
244
|
cognite_toolkit/_cdf_tk/commands/auth.py,sha256=dDw6zi7vQKHKD6soumvngTg16H2FKvg7G79PQMrnrrU,32542
|
|
244
|
-
cognite_toolkit/_cdf_tk/commands/build_cmd.py,sha256=
|
|
245
|
+
cognite_toolkit/_cdf_tk/commands/build_cmd.py,sha256=e9BwCdfc_QyEJLC5jxmmD_Tbvy7oL-fC6HBoaMyQbjU,29145
|
|
245
246
|
cognite_toolkit/_cdf_tk/commands/build_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
247
|
cognite_toolkit/_cdf_tk/commands/build_v2/_module_parser.py,sha256=B_Ddt8oB3tWto0Ocja9kvWaoIZyt8Oa-ukuoptQBYww,5916
|
|
247
248
|
cognite_toolkit/_cdf_tk/commands/build_v2/_modules_parser.py,sha256=se9IhfwtbvWusqNeN2BzDnUEK3j97sN4Yugoh5xlc5U,6782
|
|
248
|
-
cognite_toolkit/_cdf_tk/commands/build_v2/build_cmd.py,sha256=
|
|
249
|
+
cognite_toolkit/_cdf_tk/commands/build_v2/build_cmd.py,sha256=ui3pW8ZNedQDLKG7ayr2DSxTRqweLK1QmKlb8b45AFE,9667
|
|
249
250
|
cognite_toolkit/_cdf_tk/commands/build_v2/build_parameters.py,sha256=ZsH4M-eBsbRfQcfS3l2vQub4qaXhOwlVs16CaMrvyPo,2729
|
|
250
251
|
cognite_toolkit/_cdf_tk/commands/build_v2/data_classes/_modules.py,sha256=dAYdiMG_KyslSpQ4onII5kk5sNHpFGDDSxqu_0jY764,700
|
|
251
252
|
cognite_toolkit/_cdf_tk/commands/build_v2/data_classes/_resource.py,sha256=4tNKkt08RK1XgqNyhvoSMvlxmNxXoQyJgrl6pTcnThE,410
|
|
252
253
|
cognite_toolkit/_cdf_tk/commands/clean.py,sha256=bsrT-W__Vd4c9rbGC8p-KosdcdH7519ipIwad1dpuqo,16716
|
|
253
254
|
cognite_toolkit/_cdf_tk/commands/collect.py,sha256=zBMKhhvjOpuASMnwP0eeHRI02tANcvFEZgv0CQO1ECc,627
|
|
254
|
-
cognite_toolkit/_cdf_tk/commands/deploy.py,sha256=
|
|
255
|
+
cognite_toolkit/_cdf_tk/commands/deploy.py,sha256=GhVHFXbuAdMM_ax0wU-c8ALlkmU2DyEHoqIP7xpE1XQ,23354
|
|
255
256
|
cognite_toolkit/_cdf_tk/commands/dump_resource.py,sha256=E7fX0TGwoVkj6neRcoF3QnLB92JLocZc-WQPb8eOm_M,40891
|
|
256
|
-
cognite_toolkit/_cdf_tk/commands/init.py,sha256=
|
|
257
|
-
cognite_toolkit/_cdf_tk/commands/modules.py,sha256=
|
|
258
|
-
cognite_toolkit/_cdf_tk/commands/pull.py,sha256=
|
|
259
|
-
cognite_toolkit/_cdf_tk/commands/repo.py,sha256=
|
|
260
|
-
cognite_toolkit/_cdf_tk/commands/resources.py,sha256=
|
|
257
|
+
cognite_toolkit/_cdf_tk/commands/init.py,sha256=og4PDPkRmjJ1sLq6cZ1Ozk6m7XnQPcE4I4RBtyrA0Yc,9427
|
|
258
|
+
cognite_toolkit/_cdf_tk/commands/modules.py,sha256=9s9pMHT6ySoO5TXBmG8Qe7z_iQka4ctLSE_wpf191MU,41447
|
|
259
|
+
cognite_toolkit/_cdf_tk/commands/pull.py,sha256=p2Per2Wpb5FmZU1qlsU1V-4PHWWbbLhkyv1XiAdDUSA,44086
|
|
260
|
+
cognite_toolkit/_cdf_tk/commands/repo.py,sha256=EzOwFNelii53ih96uZLQ8G0F2x-53Bk3gXyxuWhzU-E,3969
|
|
261
|
+
cognite_toolkit/_cdf_tk/commands/resources.py,sha256=KhydYyTU4XkNtkf8EROYtcsqdG2wNd2eU45ixX-9QZ8,7273
|
|
261
262
|
cognite_toolkit/_cdf_tk/commands/run.py,sha256=ETOuPokyF8_mnwVYF8j3hSGiSxKZnRUOKDBMYJ4Rmeo,37403
|
|
262
263
|
cognite_toolkit/_cdf_tk/constants.py,sha256=TplKm2J9pGRHq7nAnLI0caTMHetS04OIz3hfq-jvGzo,7236
|
|
263
264
|
cognite_toolkit/_cdf_tk/cruds/__init__.py,sha256=xABXmF_3BhfNMRpr9aF9PyUayx7tkhqvVmzrRAf8eRE,7073
|
|
@@ -302,7 +303,7 @@ cognite_toolkit/_cdf_tk/data_classes/_module_directories.py,sha256=EubSOJhtYiR1U
|
|
|
302
303
|
cognite_toolkit/_cdf_tk/data_classes/_module_resources.py,sha256=9I_2IGNbaiWGWDv7907TWYLTOJog6BdM65l3VihOsiA,9199
|
|
303
304
|
cognite_toolkit/_cdf_tk/data_classes/_module_toml.py,sha256=V7FF3sU_5XRZ139VgHchBD6w0W1K3rifGQ9Hqs7CyDE,2773
|
|
304
305
|
cognite_toolkit/_cdf_tk/data_classes/_packages.py,sha256=RPAi54GCBwMZFAA4XgIa1rGoQY4LiCC3ICl9GQpF8lI,4837
|
|
305
|
-
cognite_toolkit/_cdf_tk/data_classes/_tracking_info.py,sha256=
|
|
306
|
+
cognite_toolkit/_cdf_tk/data_classes/_tracking_info.py,sha256=pDK5-veMj-8fdONKl4u62Hm732s0M71AzPjrDioGQUc,2445
|
|
306
307
|
cognite_toolkit/_cdf_tk/data_classes/_yaml_comments.py,sha256=zfuDu9aAsb1ExeZBAJIqVaoqIZ050tO_oh3dApzlDwY,4937
|
|
307
308
|
cognite_toolkit/_cdf_tk/exceptions.py,sha256=xG0jMwi5A20nvPvyo6sCyz_cyKycynPyIzpYiGR4gcU,6064
|
|
308
309
|
cognite_toolkit/_cdf_tk/feature_flags.py,sha256=YjhssJBqJlBTjNFEwskjHv1ub1GyoP6NsON6ucNicyM,2533
|
|
@@ -369,14 +370,14 @@ cognite_toolkit/_cdf_tk/resource_classes/workflow_trigger.py,sha256=aSN0WFPupQ38
|
|
|
369
370
|
cognite_toolkit/_cdf_tk/resource_classes/workflow_version.py,sha256=ZCn7xJyTEQCjWbvceny6yJYhqFcS64LbR228dbGjLXI,10195
|
|
370
371
|
cognite_toolkit/_cdf_tk/storageio/__init__.py,sha256=h5Wr4i7zNIgsslrsRJxmp7ls4bNRKl0uZzQ7GLRMP7g,1920
|
|
371
372
|
cognite_toolkit/_cdf_tk/storageio/_annotations.py,sha256=QcFrikDgz-9VjNy4Xq7wchM4VOQh-z2JaHcWR2C1sEs,4879
|
|
372
|
-
cognite_toolkit/_cdf_tk/storageio/_applications.py,sha256=
|
|
373
|
+
cognite_toolkit/_cdf_tk/storageio/_applications.py,sha256=Wer0j9dX9up2Nn0UB_KukC5x-TpFNixvPKyIy_ICpx4,21390
|
|
373
374
|
cognite_toolkit/_cdf_tk/storageio/_asset_centric.py,sha256=IM17Ouq-5ozbvr6LbE6-fiijorHUV734VRj7S2JjbJw,32822
|
|
374
|
-
cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=
|
|
375
|
+
cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=9ynMSMWxZBVh52Vx4U7N_M8DkknR4v_hv9G5tgruWZk,13459
|
|
375
376
|
cognite_toolkit/_cdf_tk/storageio/_data_classes.py,sha256=s3TH04BJ1q7rXndRhEbVMEnoOXjxrGg4n-w9Z5uUL-o,3480
|
|
376
|
-
cognite_toolkit/_cdf_tk/storageio/_datapoints.py,sha256=
|
|
377
|
-
cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=
|
|
377
|
+
cognite_toolkit/_cdf_tk/storageio/_datapoints.py,sha256=43GvQGIqtc_NYLkeLw0JUX015gW1QTQx4Jba2tucHC8,20748
|
|
378
|
+
cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=QPD7ba2rsZq7137CC0ZxkDPwfB3vQxy3XYtWDOF9gX0,19447
|
|
378
379
|
cognite_toolkit/_cdf_tk/storageio/_instances.py,sha256=2mb9nTC63cn3r1B9YqA0wAmHcbJhMDiET78T7XY5Yco,10821
|
|
379
|
-
cognite_toolkit/_cdf_tk/storageio/_raw.py,sha256=
|
|
380
|
+
cognite_toolkit/_cdf_tk/storageio/_raw.py,sha256=PX7P3o_6noZN4i1F0FxabRVe5eObkFNbtMu6f0f-Z94,5223
|
|
380
381
|
cognite_toolkit/_cdf_tk/storageio/logger.py,sha256=RDQvauxSjtlVX-V5XGkFCtqiWpv4KdjJrEcPFVNqPF0,5557
|
|
381
382
|
cognite_toolkit/_cdf_tk/storageio/selectors/__init__.py,sha256=5qqgeCrsmMLVsrRuYKxCKq1bNnvJkWeAsATpTKN1eC4,4394
|
|
382
383
|
cognite_toolkit/_cdf_tk/storageio/selectors/_asset_centric.py,sha256=7Iv_ccVX6Vzt3ZLFZ0Er3hN92iEsFTm9wgF-yermOWE,1467
|
|
@@ -431,14 +432,14 @@ cognite_toolkit/_repo_files/.gitignore,sha256=ip9kf9tcC5OguF4YF4JFEApnKYw0nG0vPi
|
|
|
431
432
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md,sha256=OLA0D7yCX2tACpzvkA0IfkgQ4_swSd-OlJ1tYcTBpsA,240
|
|
432
433
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml,sha256=brULcs8joAeBC_w_aoWjDDUHs3JheLMIR9ajPUK96nc,693
|
|
433
434
|
cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml,sha256=OBFDhFWK1mlT4Dc6mDUE2Es834l8sAlYG50-5RxRtHk,723
|
|
434
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=
|
|
435
|
-
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=
|
|
436
|
-
cognite_toolkit/_resources/cdf.toml,sha256=
|
|
437
|
-
cognite_toolkit/_version.py,sha256=
|
|
435
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=K8CEikoq_8csKpUGiJwMdEoWiiC6BBR3Q6y8V6--EN4,667
|
|
436
|
+
cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=NosqQooe6DEVAbeMT8f8I-pTBzQ1OQApp0soN9glkOI,2430
|
|
437
|
+
cognite_toolkit/_resources/cdf.toml,sha256=gdq7kqHi2crVxpdYfKIBsErMRKVLrdpA-vLJLXrpgeU,475
|
|
438
|
+
cognite_toolkit/_version.py,sha256=1IlwcEleDcwlACthNdOg_qf-tEa-sO9VidX5tu_sIc4,23
|
|
438
439
|
cognite_toolkit/config.dev.yaml,sha256=M33FiIKdS3XKif-9vXniQ444GTZ-bLXV8aFH86u9iUQ,332
|
|
439
440
|
cognite_toolkit/demo/__init__.py,sha256=-m1JoUiwRhNCL18eJ6t7fZOL7RPfowhCuqhYFtLgrss,72
|
|
440
441
|
cognite_toolkit/demo/_base.py,sha256=6xKBUQpXZXGQ3fJ5f7nj7oT0s2n7OTAGIa17ZlKHZ5U,8052
|
|
441
|
-
cognite_toolkit-0.7.
|
|
442
|
-
cognite_toolkit-0.7.
|
|
443
|
-
cognite_toolkit-0.7.
|
|
444
|
-
cognite_toolkit-0.7.
|
|
442
|
+
cognite_toolkit-0.7.57.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
|
|
443
|
+
cognite_toolkit-0.7.57.dist-info/entry_points.txt,sha256=EtZ17K2mUjh-AY0QNU1CPIB_aDSSOdmtNI_4Fj967mA,84
|
|
444
|
+
cognite_toolkit-0.7.57.dist-info/METADATA,sha256=3eu9SdahPgounSrMiVTua06g9pLduWr_MH5ww7-c5pY,5026
|
|
445
|
+
cognite_toolkit-0.7.57.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|