cognite-toolkit 0.7.54__py3-none-any.whl → 0.7.56__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.
Files changed (39) hide show
  1. cognite_toolkit/_cdf_tk/apps/_download_app.py +19 -42
  2. cognite_toolkit/_cdf_tk/apps/_migrate_app.py +28 -36
  3. cognite_toolkit/_cdf_tk/apps/_purge.py +14 -15
  4. cognite_toolkit/_cdf_tk/apps/_upload_app.py +3 -9
  5. cognite_toolkit/_cdf_tk/client/http_client/__init__.py +0 -38
  6. cognite_toolkit/_cdf_tk/client/http_client/_client.py +4 -161
  7. cognite_toolkit/_cdf_tk/client/http_client/_data_classes2.py +18 -18
  8. cognite_toolkit/_cdf_tk/client/resource_classes/filemetadata.py +7 -1
  9. cognite_toolkit/_cdf_tk/commands/_migrate/command.py +8 -8
  10. cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py +26 -25
  11. cognite_toolkit/_cdf_tk/commands/_profile.py +1 -1
  12. cognite_toolkit/_cdf_tk/commands/_purge.py +20 -21
  13. cognite_toolkit/_cdf_tk/commands/_upload.py +4 -6
  14. cognite_toolkit/_cdf_tk/commands/auth.py +12 -15
  15. cognite_toolkit/_cdf_tk/commands/clean.py +2 -1
  16. cognite_toolkit/_cdf_tk/commands/dump_resource.py +30 -19
  17. cognite_toolkit/_cdf_tk/commands/init.py +3 -3
  18. cognite_toolkit/_cdf_tk/commands/modules.py +17 -10
  19. cognite_toolkit/_cdf_tk/commands/pull.py +2 -2
  20. cognite_toolkit/_cdf_tk/commands/repo.py +1 -1
  21. cognite_toolkit/_cdf_tk/commands/resources.py +8 -5
  22. cognite_toolkit/_cdf_tk/commands/run.py +8 -7
  23. cognite_toolkit/_cdf_tk/protocols.py +3 -1
  24. cognite_toolkit/_cdf_tk/storageio/_applications.py +3 -3
  25. cognite_toolkit/_cdf_tk/storageio/_base.py +16 -11
  26. cognite_toolkit/_cdf_tk/storageio/_datapoints.py +37 -25
  27. cognite_toolkit/_cdf_tk/storageio/_file_content.py +39 -35
  28. cognite_toolkit/_cdf_tk/storageio/_raw.py +6 -5
  29. cognite_toolkit/_cdf_tk/utils/auth.py +7 -7
  30. cognite_toolkit/_cdf_tk/utils/interactive_select.py +49 -49
  31. cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +1 -1
  32. cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +1 -1
  33. cognite_toolkit/_resources/cdf.toml +1 -1
  34. cognite_toolkit/_version.py +1 -1
  35. {cognite_toolkit-0.7.54.dist-info → cognite_toolkit-0.7.56.dist-info}/METADATA +1 -1
  36. {cognite_toolkit-0.7.54.dist-info → cognite_toolkit-0.7.56.dist-info}/RECORD +38 -39
  37. cognite_toolkit/_cdf_tk/client/http_client/_data_classes.py +0 -428
  38. {cognite_toolkit-0.7.54.dist-info → cognite_toolkit-0.7.56.dist-info}/WHEEL +0 -0
  39. {cognite_toolkit-0.7.54.dist-info → cognite_toolkit-0.7.56.dist-info}/entry_points.txt +0 -0
@@ -140,9 +140,7 @@ class AssetCentricInteractiveSelect(ABC):
140
140
  def select_hierarchies_or_data_sets(self) -> Literal["Hierarchy", "Data Set"]:
141
141
  what = questionary.select(
142
142
  f"Do you want to {self.operation} a hierarchy or a data set?", choices=["Hierarchy", "Data Set"]
143
- ).ask()
144
- if what is None:
145
- raise ToolkitValueError("No selection made. Aborting.")
143
+ ).unsafe_ask()
146
144
  if what not in ["Hierarchy", "Data Set"]:
147
145
  raise ToolkitValueError(f"Unexpected selection: {what}. Aborting.")
148
146
  return what
@@ -209,9 +207,13 @@ class AssetCentricInteractiveSelect(ABC):
209
207
 
210
208
  message = f"Select a {what} to {self.operation} listed as 'name (external_id) [count]'"
211
209
  if plurality == "multiple":
212
- selected = questionary.checkbox(message, choices=choices).ask()
210
+ selected = questionary.checkbox(
211
+ message,
212
+ choices=choices,
213
+ validate=lambda choices: "You must select at least one." if not choices else True,
214
+ ).unsafe_ask()
213
215
  else:
214
- selected = questionary.select(message, choices=choices).ask()
216
+ selected = questionary.select(message, choices=choices).unsafe_ask()
215
217
  if selected is None:
216
218
  raise ToolkitValueError(f"No {what} selected. Aborting.")
217
219
  elif selected is none_sentinel or (isinstance(selected, list) and none_sentinel in selected):
@@ -267,9 +269,7 @@ class RawTableInteractiveSelect:
267
269
  selected_database = questionary.select(
268
270
  f"Select a Raw Database to {self.operation}",
269
271
  choices=[questionary.Choice(title=db, value=db) for db in databases],
270
- ).ask()
271
- if selected_database is None:
272
- raise ToolkitValueError("No database selected. Aborting.")
272
+ ).unsafe_ask()
273
273
  available_tables = self._available_tables(selected_database)
274
274
  if not available_tables:
275
275
  raise ToolkitValueError(f"No raw tables available in database '{selected_database}'. Aborting.")
@@ -277,10 +277,9 @@ class RawTableInteractiveSelect:
277
277
  selected_tables = questionary.checkbox(
278
278
  f"Select Raw Tables in {selected_database} to {self.operation}",
279
279
  choices=[questionary.Choice(title=f"{table.table_name}", value=table) for table in available_tables],
280
- ).ask()
280
+ validate=lambda choices: True if choices else "You must select at least one table.",
281
+ ).unsafe_ask()
281
282
 
282
- if selected_tables is None:
283
- raise ToolkitValueError("No tables selected. Aborting.")
284
283
  return selected_tables
285
284
 
286
285
 
@@ -330,9 +329,7 @@ class InteractiveCanvasSelect:
330
329
  user_response = questionary.select(
331
330
  "Which Canvases do you want to select?",
332
331
  choices=cls.opening_choices,
333
- ).ask()
334
- if user_response is None:
335
- raise ToolkitValueError("No Canvas selection made. Aborting.")
332
+ ).unsafe_ask()
336
333
  return user_response
337
334
 
338
335
  def _select_external_ids(self, select_filter: CanvasFilter) -> list[str]:
@@ -356,12 +353,15 @@ class InteractiveCanvasSelect:
356
353
  for user in users
357
354
  if user.user_identifier in canvas_by_user
358
355
  ],
359
- ).ask()
356
+ ).unsafe_ask()
360
357
  available_canvases = NodeList[Canvas](user_response)
361
358
 
362
359
  if select_filter.select_all:
363
360
  return [canvas.external_id for canvas in available_canvases]
364
361
 
362
+ if not available_canvases:
363
+ raise ToolkitValueError("No Canvases available to select. Aborting.")
364
+
365
365
  selected_canvases = questionary.checkbox(
366
366
  "Select Canvases",
367
367
  choices=[
@@ -371,7 +371,8 @@ class InteractiveCanvasSelect:
371
371
  )
372
372
  for canvas in available_canvases
373
373
  ],
374
- ).ask()
374
+ validate=lambda selected: "You must select at least one Canvas." if not selected else True,
375
+ ).unsafe_ask()
375
376
 
376
377
  return selected_canvases or []
377
378
 
@@ -403,9 +404,7 @@ class InteractiveChartSelect:
403
404
  user_response = questionary.select(
404
405
  "Which Charts do you want to select?",
405
406
  choices=cls.opening_choices,
406
- ).ask()
407
- if user_response is None:
408
- raise ToolkitValueError("No Chart selection made. Aborting.")
407
+ ).unsafe_ask()
409
408
  return user_response
410
409
 
411
410
  def _select_external_ids(self, select_filter: ChartFilter) -> list[str]:
@@ -432,7 +431,8 @@ class InteractiveChartSelect:
432
431
  )
433
432
  for chart in available_charts
434
433
  ],
435
- ).ask()
434
+ validate=lambda selected: "You must select at least one Chart." if not selected else True,
435
+ ).unsafe_ask()
436
436
  return selected_charts or []
437
437
 
438
438
  @classmethod
@@ -450,7 +450,7 @@ class InteractiveChartSelect:
450
450
  for user in users
451
451
  if user.user_identifier in chart_by_user
452
452
  ],
453
- ).ask()
453
+ ).unsafe_ask()
454
454
  available_charts = ChartList(user_response)
455
455
  return available_charts
456
456
 
@@ -473,9 +473,7 @@ class AssetCentricDestinationSelect:
473
473
  destination_type = questionary.select(
474
474
  "Select a destination type",
475
475
  choices=[questionary.Choice(title=dest.capitalize(), value=dest) for dest in cls.valid_destinations],
476
- ).ask()
477
- if destination_type is None:
478
- raise ToolkitValueError("No destination type selected. Aborting.")
476
+ ).unsafe_ask()
479
477
  # We only input valid destination types, so we can safely skip MyPy's type checking here
480
478
  return destination_type
481
479
 
@@ -579,11 +577,13 @@ class DataModelingSelect:
579
577
  question = message or f"Which view do you want to use to select instances to {self.operation}?"
580
578
  choices = [Choice(title=f"{view.external_id} (version={view.version})", value=view) for view in views]
581
579
  if multiselect:
582
- selected_views = questionary.checkbox(question, choices=choices).ask()
580
+ selected_views = questionary.checkbox(
581
+ question,
582
+ choices=choices,
583
+ validate=lambda choises: True if choises else "You must select at least one view.",
584
+ ).unsafe_ask()
583
585
  else:
584
- selected_views = questionary.select(question, choices=choices).ask()
585
- if selected_views is None:
586
- raise ToolkitValueError("No view(s) selected")
586
+ selected_views = questionary.select(question, choices=choices).unsafe_ask()
587
587
  if multiselect:
588
588
  if not isinstance(selected_views, list) or not all(isinstance(v, View) for v in selected_views):
589
589
  raise ToolkitValueError(f"Selected views is not a valid list of View objects: {selected_views!r}")
@@ -607,9 +607,7 @@ class DataModelingSelect:
607
607
  selected_space = questionary.select(
608
608
  message,
609
609
  [Choice(title=space.space, value=space) for space in sorted(spaces, key=lambda s: s.space)],
610
- ).ask()
611
- if selected_space is None:
612
- raise ToolkitValueError("No space selected")
610
+ ).unsafe_ask()
613
611
  if not isinstance(selected_space, Space):
614
612
  raise ToolkitValueError(f"Selected space is not a valid Space object: {selected_space!r}")
615
613
  return selected_space
@@ -634,9 +632,8 @@ class DataModelingSelect:
634
632
  Choice(title="Nodes", value="node"),
635
633
  Choice(title="Edges", value="edge"),
636
634
  ],
637
- ).ask()
638
- if selected_instance_type is None:
639
- raise ToolkitValueError("No instance type selected")
635
+ ).unsafe_ask()
636
+
640
637
  if selected_instance_type not in ("node", "edge"):
641
638
  raise ToolkitValueError(f"Selected instance type is not valid: {selected_instance_type!r}")
642
639
  return selected_instance_type
@@ -649,9 +646,7 @@ class DataModelingSelect:
649
646
  Choice(title="Schema spaces with schema", value="schema"),
650
647
  Choice(title="Empty spaces without schema or instances", value="empty"),
651
648
  ],
652
- ).ask()
653
- if selected_space_type is None:
654
- raise ToolkitValueError("No space type selected")
649
+ ).unsafe_ask()
655
650
  if selected_space_type not in ["instance", "schema", "empty"]:
656
651
  raise ToolkitValueError(f"Selected space type is not valid: {selected_space_type!r}")
657
652
  return selected_space_type
@@ -718,9 +713,13 @@ class DataModelingSelect:
718
713
  for space, count in sorted(count_by_space.items(), key=lambda item: item[1], reverse=True)
719
714
  ]
720
715
  if multiselect:
721
- selected_spaces = questionary.checkbox(message, choices=choices).ask()
716
+ selected_spaces = questionary.checkbox(
717
+ message,
718
+ choices=choices,
719
+ validate=lambda choises: True if choises else "You must select at least one space.",
720
+ ).unsafe_ask()
722
721
  else:
723
- selected_spaces = questionary.select(message, choices=choices).ask()
722
+ selected_spaces = questionary.select(message, choices=choices).unsafe_ask()
724
723
  if selected_spaces is None or (isinstance(selected_spaces, list) and len(selected_spaces) == 0):
725
724
  raise ToolkitValueError(
726
725
  f"No instance space selected to {self.operation}. Use arrow keys to navigate and space key to select. Press enter to confirm."
@@ -748,9 +747,13 @@ class DataModelingSelect:
748
747
  message = f"In which empty Space{'(s)' if multiselect else ''} do you want to {self.operation}?"
749
748
  choices = [Choice(title=f"{space}", value=space) for space in sorted(empty_spaces)]
750
749
  if multiselect:
751
- selected_spaces = questionary.checkbox(message, choices=choices).ask()
750
+ selected_spaces = questionary.checkbox(
751
+ message,
752
+ choices=choices,
753
+ validate=lambda choises: True if choises else "You must select at least one space.",
754
+ ).unsafe_ask()
752
755
  else:
753
- selected_spaces = questionary.select(message, choices=choices).ask()
756
+ selected_spaces = questionary.select(message, choices=choices).unsafe_ask()
754
757
  if selected_spaces is None or (isinstance(selected_spaces, list) and len(selected_spaces) == 0):
755
758
  raise ToolkitValueError(f"No empty space selected to {self.operation}. Aborting.")
756
759
  return selected_spaces
@@ -816,9 +819,7 @@ class ResourceViewMappingInteractiveSelect:
816
819
  selected_mapping = questionary.select(
817
820
  f"Which Resource View Mapping do you want to use to {self.operation}? [identifier] (ingestion view)",
818
821
  choices=choices,
819
- ).ask()
820
- if selected_mapping is None:
821
- raise ToolkitValueError("No Resource View Mapping selected.")
822
+ ).unsafe_ask()
822
823
  if not isinstance(selected_mapping, ResourceViewMapping):
823
824
  raise ToolkitValueError(
824
825
  f"Selected Resource View Mapping is not a valid ResourceViewMapping object: {selected_mapping!r}"
@@ -840,9 +841,7 @@ class ThreeDInteractiveSelect:
840
841
  Choice(title="Classic models", value="classic"),
841
842
  Choice(title="Data modeling 3D", value="dm"),
842
843
  ],
843
- ).ask()
844
- if model_type is None:
845
- raise ToolkitValueError("No 3D model type selected.")
844
+ ).unsafe_ask()
846
845
  published = questionary.select(
847
846
  f"Do you want to {self.operation} published or unpublished 3D models?",
848
847
  choices=[
@@ -850,7 +849,7 @@ class ThreeDInteractiveSelect:
850
849
  Choice(title="Unpublished models", value=False),
851
850
  Choice(title="Both published and unpublished models", value=None),
852
851
  ],
853
- ).ask()
852
+ ).unsafe_ask()
854
853
 
855
854
  models = self.client.tool.three_d.models_classic.list(
856
855
  published=published, include_revision_info=True, limit=None
@@ -868,7 +867,8 @@ class ThreeDInteractiveSelect:
868
867
  selected_models = questionary.checkbox(
869
868
  f"Select 3D models to {self.operation}:",
870
869
  choices=choices,
871
- ).ask()
870
+ validate=lambda choices: True if choices else "You must select at least one 3D model.",
871
+ ).unsafe_ask()
872
872
  if selected_models is None or len(selected_models) == 0:
873
873
  raise ToolkitValueError("No 3D models selected.")
874
874
  return selected_models
@@ -12,7 +12,7 @@ jobs:
12
12
  environment: dev
13
13
  name: Deploy
14
14
  container:
15
- image: cognite/toolkit:0.7.54
15
+ image: cognite/toolkit:0.7.56
16
16
  env:
17
17
  CDF_CLUSTER: ${{ vars.CDF_CLUSTER }}
18
18
  CDF_PROJECT: ${{ vars.CDF_PROJECT }}
@@ -10,7 +10,7 @@ jobs:
10
10
  environment: dev
11
11
  name: Deploy Dry Run
12
12
  container:
13
- image: cognite/toolkit:0.7.54
13
+ image: cognite/toolkit:0.7.56
14
14
  env:
15
15
  CDF_CLUSTER: ${{ vars.CDF_CLUSTER }}
16
16
  CDF_PROJECT: ${{ vars.CDF_PROJECT }}
@@ -4,7 +4,7 @@ default_env = "<DEFAULT_ENV_PLACEHOLDER>"
4
4
  [modules]
5
5
  # This is the version of the modules. It should not be changed manually.
6
6
  # It will be updated by the 'cdf modules upgrade' command.
7
- version = "0.7.54"
7
+ version = "0.7.56"
8
8
 
9
9
 
10
10
  [plugins]
@@ -1 +1 @@
1
- __version__ = "0.7.54"
1
+ __version__ = "0.7.56"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cognite_toolkit
3
- Version: 0.7.54
3
+ Version: 0.7.56
4
4
  Summary: Official Cognite Data Fusion tool for project templates and configuration deployment
5
5
  Author: Cognite AS
6
6
  Author-email: Cognite AS <support@cognite.com>
@@ -6,17 +6,17 @@ cognite_toolkit/_cdf_tk/apps/_auth_app.py,sha256=ER7uYb3ViwsHMXiQEZpyhwU6TIjKaB9
6
6
  cognite_toolkit/_cdf_tk/apps/_core_app.py,sha256=BiY7GWInq0INa7uCiGQyt4cBs1Eguyr5BBCW14JHo3I,14018
7
7
  cognite_toolkit/_cdf_tk/apps/_data_app.py,sha256=LeplXlxXtyIymRPgbatQrRFodU4VZBFxI0bqDutLSbg,806
8
8
  cognite_toolkit/_cdf_tk/apps/_dev_app.py,sha256=FaY67PFdKwdiMKgJbTcjHT1X2Xfbog2PKL6T-kcawyc,2818
9
- cognite_toolkit/_cdf_tk/apps/_download_app.py,sha256=jrk4gS1TyblpkAAkxQ-D50LMhXgUNIRKctq-a9rWF4M,41141
9
+ cognite_toolkit/_cdf_tk/apps/_download_app.py,sha256=ZOnx1m2lu3M52LXbsiFQVb7xmFE-qHRwgzwcDSN53js,40248
10
10
  cognite_toolkit/_cdf_tk/apps/_dump_app.py,sha256=BhGJiSPkAW4tooci7-bm1QlHEo4vkb_gY-GWKR8hO3I,37138
11
11
  cognite_toolkit/_cdf_tk/apps/_import_app.py,sha256=5n5AF40HJ0Q_3LENCknG0MxH4pMUS8OwsqvtCYj_t7w,2086
12
12
  cognite_toolkit/_cdf_tk/apps/_landing_app.py,sha256=YR9z83OY7PhhgBVC5gmRLgo9iTXoGoZfRhOU3gd_r2o,888
13
- cognite_toolkit/_cdf_tk/apps/_migrate_app.py,sha256=8Axe7cGfDu5qMSf9VkKJSoCCvAqv_C_E-zoC5S9NQy0,47648
13
+ cognite_toolkit/_cdf_tk/apps/_migrate_app.py,sha256=V37KamXCg-wkBsIqKSlVeaeU1cRlCCsZegpGnPuoMsU,47129
14
14
  cognite_toolkit/_cdf_tk/apps/_modules_app.py,sha256=t0SPvulgbgkF_OO2E68mQ_ZUcJ6HoaurYe0IkmXie0o,7449
15
15
  cognite_toolkit/_cdf_tk/apps/_profile_app.py,sha256=vSRJW54bEvIul8_4rOqyOYA7ztXx7TFOvZRZWZTxMbg,7007
16
- cognite_toolkit/_cdf_tk/apps/_purge.py,sha256=KYI1wFy7yHFEM1qJnTYc4_8E2FVGu4QhPsWsxop1sZA,14242
16
+ cognite_toolkit/_cdf_tk/apps/_purge.py,sha256=RjEg9g4cLyGxt0j-XrwQJLsM2vkubDuRGHil4aSajfE,14134
17
17
  cognite_toolkit/_cdf_tk/apps/_repo_app.py,sha256=jOf_s7oUWJqnRyz89JFiSzT2l8GlyQ7wqidHUQavGo0,1455
18
18
  cognite_toolkit/_cdf_tk/apps/_run.py,sha256=eXua4n0hW4qRMkzaxR0PiZh-JFLf8gnWw1_5O-0-vm0,8987
19
- cognite_toolkit/_cdf_tk/apps/_upload_app.py,sha256=gI8iAlLpO4Grs6Yc1ZIp_eiA30Ae1V_T3QxJZNYNqrM,4227
19
+ cognite_toolkit/_cdf_tk/apps/_upload_app.py,sha256=hsGxyaCqmF5t1-1uKm_dWhDIS--9eI5v1zzIHgmGhlw,3929
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
@@ -109,10 +109,9 @@ cognite_toolkit/_cdf_tk/client/cdf_client/__init__.py,sha256=jTu-l5BjBWOyQdhYMk9
109
109
  cognite_toolkit/_cdf_tk/client/cdf_client/api.py,sha256=QaL5P3HyyI51j3xprm02K0Pc-tEaJqywXs7IeVIwggk,14547
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=-RNm4iXlNX9f_JLW4QKXiet7LrWotCE36ZOlIqyhZT8,1504
113
- cognite_toolkit/_cdf_tk/client/http_client/_client.py,sha256=a9ZcW46Ht5mt7wtJJH_ty34E9IxUJTv1NY0xclNUeCg,22752
114
- cognite_toolkit/_cdf_tk/client/http_client/_data_classes.py,sha256=c-Uau6qOi5TLM5cPE84CkTfrKB_dGhoYHWLXSEOo5AM,15438
115
- cognite_toolkit/_cdf_tk/client/http_client/_data_classes2.py,sha256=2aV1pmwBxyuUnEYoNr294GnZSykGH3hQyfMyjE-9hq4,5439
112
+ cognite_toolkit/_cdf_tk/client/http_client/__init__.py,sha256=Z4p6Zn5SUo6NdqXEBDNGdM3RLATab_fG3dZkSQdrA0I,697
113
+ cognite_toolkit/_cdf_tk/client/http_client/_client.py,sha256=UvN_2Dg4BS0BiXDi3-Yxw1MSeG63Xq748kbjCIVylVs,15946
114
+ cognite_toolkit/_cdf_tk/client/http_client/_data_classes2.py,sha256=xuPpOT8UjCUFmj-Hq6tQ0Eh8VCPhcnbUNtMYbLPTYgE,5442
116
115
  cognite_toolkit/_cdf_tk/client/http_client/_exception.py,sha256=9dE5tm1qTviG93JppLql6ltlmAgm8TxWh9wWPdm0ITA,428
117
116
  cognite_toolkit/_cdf_tk/client/http_client/_item_classes.py,sha256=BRilwk05WTHoM03DifyUBQx-4-OHIHp8gOoQPh1zNBg,4474
118
117
  cognite_toolkit/_cdf_tk/client/http_client/_tracker.py,sha256=pu6oA-XpOeaOLdoeD_mGfJXC3BFGWfh5oGcRDpb6maw,1407
@@ -142,7 +141,7 @@ cognite_toolkit/_cdf_tk/client/resource_classes/data_modeling/_view_property.py,
142
141
  cognite_toolkit/_cdf_tk/client/resource_classes/dataset.py,sha256=OAddeyFdbJSyuOBHiqPYWl6L5eJTG64l05Lx0LOoZxM,1022
143
142
  cognite_toolkit/_cdf_tk/client/resource_classes/event.py,sha256=nnqxqEzhRmo-dqKrAgflbz7kRxIhEHo8fdPxCvsjq4U,1223
144
143
  cognite_toolkit/_cdf_tk/client/resource_classes/extraction_pipeline.py,sha256=VG9PgX1C5du_iTFy4k_vUvrpYzlYxa2-nbyM9wcNGf0,1732
145
- cognite_toolkit/_cdf_tk/client/resource_classes/filemetadata.py,sha256=1s16bgWwadl-NmK_kwVmqU08u1T7V9SnxQQtygDqnPo,2132
144
+ cognite_toolkit/_cdf_tk/client/resource_classes/filemetadata.py,sha256=wsnZ91lzEvoXI_6LeusuTQMExFAUU3FWCqjsvRkaHd8,2356
146
145
  cognite_toolkit/_cdf_tk/client/resource_classes/function.py,sha256=LRwiS4LHrjBEn9HnsD2SJhejGCzDdf_GPEkhwRxxbwc,1657
147
146
  cognite_toolkit/_cdf_tk/client/resource_classes/function_schedule.py,sha256=_rUgayCIdrhSOiifsqg_78heyswOk4TCUPPBAjpxHfY,1994
148
147
  cognite_toolkit/_cdf_tk/client/resource_classes/graphql_data_model.py,sha256=Us21oW8mlOUqNKiBqCqSI6kclaINOQe8ZzNXrLnxYBw,1212
@@ -223,7 +222,7 @@ cognite_toolkit/_cdf_tk/commands/_cli_commands.py,sha256=TK6U_rm6VZT_V941kTyHMou
223
222
  cognite_toolkit/_cdf_tk/commands/_download.py,sha256=dVddH9t7oGx1kdQ3CCYYQb96Uxxy-xC8Opph98lo46U,6869
224
223
  cognite_toolkit/_cdf_tk/commands/_import_cmd.py,sha256=RkJ7RZI6zxe0_1xrPB-iJhCVchurmIAChilx0_XMR6k,11141
225
224
  cognite_toolkit/_cdf_tk/commands/_migrate/__init__.py,sha256=8ki04tJGH1dHdF2NtVF4HyhaC0XDDS7onrH_nvd9KtE,153
226
- cognite_toolkit/_cdf_tk/commands/_migrate/command.py,sha256=S5ZB7POjJ2ue3D54kW8TZLFuRJAilqwlLlELu3HGEMM,13579
225
+ cognite_toolkit/_cdf_tk/commands/_migrate/command.py,sha256=wNYtOUiPQWWJoDRoLVSU-YZqFUSsbfVgDW_DRZPw4yc,13595
227
226
  cognite_toolkit/_cdf_tk/commands/_migrate/conversion.py,sha256=-sZktmsDIqkhNg-kg95Ty6eTm7FiyFRi1ZQLOkZ5x2w,17889
228
227
  cognite_toolkit/_cdf_tk/commands/_migrate/creators.py,sha256=Gp3CKruTxeSDS3HiWiLsQ4mN2SZ4BQB5xQ50o68GTs8,9616
229
228
  cognite_toolkit/_cdf_tk/commands/_migrate/data_classes.py,sha256=4hv_TKTfEZoC9h6lIlAW_ewKlT6F4KrquQpqUz8M1iw,11679
@@ -231,17 +230,17 @@ cognite_toolkit/_cdf_tk/commands/_migrate/data_mapper.py,sha256=qHYeFCBBGPejbgC_
231
230
  cognite_toolkit/_cdf_tk/commands/_migrate/data_model.py,sha256=0lRyDRJ8zo00OngwWagQgHQIaemK4eufW9kbWwZ9Yo0,7901
232
231
  cognite_toolkit/_cdf_tk/commands/_migrate/default_mappings.py,sha256=nH_wC0RzcI721sXwH_pThOxPv1nq4-oBd1rCDSGbr9Y,5555
233
232
  cognite_toolkit/_cdf_tk/commands/_migrate/issues.py,sha256=SFkfLBCLI4nZBIWSRnyu6G4xcdS-csYJwzmzc4Jmzho,6988
234
- cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py,sha256=ZrmI_jx6sf7G027-G9arVjtr0DyUn8onUAMmsEFn67E,26798
233
+ cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py,sha256=bJhBL8LNpvO4paksut6DupBFHwKKmNruTi9mmygDUQI,26826
235
234
  cognite_toolkit/_cdf_tk/commands/_migrate/prepare.py,sha256=RfqaNoso5CyBwc-p6ckwcYqBfZXKhdJgdGIyd0TATaI,2635
236
235
  cognite_toolkit/_cdf_tk/commands/_migrate/selectors.py,sha256=N1H_-rBpPUD6pbrlcofn1uEK1bA694EUXEe1zIXeqyo,2489
237
- cognite_toolkit/_cdf_tk/commands/_profile.py,sha256=c42Na8r1Xcd1zSIJtU8eZMQTFBTzNmxtTIBLKBePzyA,43131
238
- cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=5r5zgzalGvzd4NYGY-rKFvpzn9JdsLeKJpPbjkBKc2U,32832
236
+ cognite_toolkit/_cdf_tk/commands/_profile.py,sha256=CQthu52V2Lyi8nbqNHqjyiKnIHLWfK7GNZ5A0SlaI-Y,43138
237
+ cognite_toolkit/_cdf_tk/commands/_purge.py,sha256=hOLPl9hz723rUzGHRk9iaZe8yDmrK84ZgzUBiCh3fn0,33009
239
238
  cognite_toolkit/_cdf_tk/commands/_questionary_style.py,sha256=h-w7fZKkGls3TrzIGBKjsZSGoXJJIYchgD1StfA40r8,806
240
- cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=ncI1XIKRsqLzCPFS6twsKwKdpcrS6QKwzQpC8-uv0X4,13041
239
+ cognite_toolkit/_cdf_tk/commands/_upload.py,sha256=jsEHm1AiR04CuZPz43M4PfrlT0n6OU4cWbeNfGqEhxI,13050
241
240
  cognite_toolkit/_cdf_tk/commands/_utils.py,sha256=UxMJW5QYKts4om5n6x2Tq2ihvfO9gWjhQKeqZNFTlKg,402
242
241
  cognite_toolkit/_cdf_tk/commands/_virtual_env.py,sha256=GFAid4hplixmj9_HkcXqU5yCLj-fTXm4cloGD6U2swY,2180
243
242
  cognite_toolkit/_cdf_tk/commands/about.py,sha256=pEXNdCeJYONOalH8x-7QRsKLgj-9gdIqN16pPxA3bhg,9395
244
- cognite_toolkit/_cdf_tk/commands/auth.py,sha256=TX_8YuVCjMVIQjEdfBE66bSDrojJhCnxf_jcT3-9wM8,32550
243
+ cognite_toolkit/_cdf_tk/commands/auth.py,sha256=dDw6zi7vQKHKD6soumvngTg16H2FKvg7G79PQMrnrrU,32542
245
244
  cognite_toolkit/_cdf_tk/commands/build_cmd.py,sha256=NuHbOj0xMbyuESlP716GHZuD1IY-OMoSaTtx0NUnVmk,29092
246
245
  cognite_toolkit/_cdf_tk/commands/build_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
246
  cognite_toolkit/_cdf_tk/commands/build_v2/_module_parser.py,sha256=B_Ddt8oB3tWto0Ocja9kvWaoIZyt8Oa-ukuoptQBYww,5916
@@ -250,16 +249,16 @@ cognite_toolkit/_cdf_tk/commands/build_v2/build_cmd.py,sha256=6Z8XIhevMQ59qrYpeQ
250
249
  cognite_toolkit/_cdf_tk/commands/build_v2/build_parameters.py,sha256=ZsH4M-eBsbRfQcfS3l2vQub4qaXhOwlVs16CaMrvyPo,2729
251
250
  cognite_toolkit/_cdf_tk/commands/build_v2/data_classes/_modules.py,sha256=dAYdiMG_KyslSpQ4onII5kk5sNHpFGDDSxqu_0jY764,700
252
251
  cognite_toolkit/_cdf_tk/commands/build_v2/data_classes/_resource.py,sha256=4tNKkt08RK1XgqNyhvoSMvlxmNxXoQyJgrl6pTcnThE,410
253
- cognite_toolkit/_cdf_tk/commands/clean.py,sha256=JNPIjNSiOJaP-cUhFzT8H3s30luA9lI39yH18QxHaYM,16603
252
+ cognite_toolkit/_cdf_tk/commands/clean.py,sha256=bsrT-W__Vd4c9rbGC8p-KosdcdH7519ipIwad1dpuqo,16716
254
253
  cognite_toolkit/_cdf_tk/commands/collect.py,sha256=zBMKhhvjOpuASMnwP0eeHRI02tANcvFEZgv0CQO1ECc,627
255
254
  cognite_toolkit/_cdf_tk/commands/deploy.py,sha256=DpA6q0f17qCpsrYUywavvaRjJ-qaIm78ukw8kIfCNbg,23262
256
- cognite_toolkit/_cdf_tk/commands/dump_resource.py,sha256=ieSYxcryix0addATgd3-uJfhrTa9_ZMRXrB6TyFT534,39830
257
- cognite_toolkit/_cdf_tk/commands/init.py,sha256=pcxFhZheXm3FPU1pkeh10M0WXPg7EcLFUgJlrE817tE,9257
258
- cognite_toolkit/_cdf_tk/commands/modules.py,sha256=91Fov16fEIVk-3ZmBd3MlibbbzRuYLjUY9CUnudV4w0,40976
259
- cognite_toolkit/_cdf_tk/commands/pull.py,sha256=hQopF9PY4p-CnuuEk4GFLj27gtb6QJ3At4z1ucYia48,43980
260
- cognite_toolkit/_cdf_tk/commands/repo.py,sha256=MNy8MWphTklIZHvQOROCweq8_SYxGv6BaqnLpkFFnuk,3845
261
- cognite_toolkit/_cdf_tk/commands/resources.py,sha256=NeHVA1b1TMsP-2wgd5u1vif_N6nln7ePxZ0BXypwt-k,7377
262
- cognite_toolkit/_cdf_tk/commands/run.py,sha256=EAR6NwpSIZqJ4U8_k1x3EiKM1-ufS4C8Bx-WLZ21EZY,37342
255
+ cognite_toolkit/_cdf_tk/commands/dump_resource.py,sha256=E7fX0TGwoVkj6neRcoF3QnLB92JLocZc-WQPb8eOm_M,40891
256
+ cognite_toolkit/_cdf_tk/commands/init.py,sha256=z5zOD8lVceabICLcwOF-0Fbz0D6TZ46hImRnSmfCkp8,9278
257
+ cognite_toolkit/_cdf_tk/commands/modules.py,sha256=2uk-Yl-WW7pVwj4VtyWNMDB_DpU7QHOxQnLMxM-sQKU,41337
258
+ cognite_toolkit/_cdf_tk/commands/pull.py,sha256=OmZ3VsBL8CkHm8PJWALoF1XQlpw0rXFWqdecEjcWhns,43994
259
+ cognite_toolkit/_cdf_tk/commands/repo.py,sha256=N2xNF5kUoVGRUAVS481jJX3iEV5ShDLliG1phsdF30U,3852
260
+ cognite_toolkit/_cdf_tk/commands/resources.py,sha256=bJTVaBR3pdAQ_5AqF1ccQjpKpAZXfMMuDza42k7tBuw,7448
261
+ cognite_toolkit/_cdf_tk/commands/run.py,sha256=ETOuPokyF8_mnwVYF8j3hSGiSxKZnRUOKDBMYJ4Rmeo,37403
263
262
  cognite_toolkit/_cdf_tk/constants.py,sha256=TplKm2J9pGRHq7nAnLI0caTMHetS04OIz3hfq-jvGzo,7236
264
263
  cognite_toolkit/_cdf_tk/cruds/__init__.py,sha256=xABXmF_3BhfNMRpr9aF9PyUayx7tkhqvVmzrRAf8eRE,7073
265
264
  cognite_toolkit/_cdf_tk/cruds/_base_cruds.py,sha256=6I1P0kZKxX7CDHM3_xPNnMJQi_QEviE_XnhpM_PAULc,17652
@@ -309,7 +308,7 @@ cognite_toolkit/_cdf_tk/exceptions.py,sha256=xG0jMwi5A20nvPvyo6sCyz_cyKycynPyIzp
309
308
  cognite_toolkit/_cdf_tk/feature_flags.py,sha256=YjhssJBqJlBTjNFEwskjHv1ub1GyoP6NsON6ucNicyM,2533
310
309
  cognite_toolkit/_cdf_tk/hints.py,sha256=UI1ymi2T5wCcYOpEbKbVaDnlyFReFy8TDtMVt-5E1h8,6493
311
310
  cognite_toolkit/_cdf_tk/plugins.py,sha256=0V14rceAWLZQF8iWdyL5QmK7xB796YaDEtb9RIj5AOc,836
312
- cognite_toolkit/_cdf_tk/protocols.py,sha256=Lc8XnBfmDZN6dwmSopmK7cFE9a9jZ2zdUryEeCXn27I,3052
311
+ cognite_toolkit/_cdf_tk/protocols.py,sha256=Mmehp93i-FA8uRnNcUpReYG_aB89SlsoZhbakyXz21Q,3109
313
312
  cognite_toolkit/_cdf_tk/resource_classes/__init__.py,sha256=SKNqqKMWk6vnuYPB7Bbl2CrKwoAxZ_qu8doaA6ULwZc,4080
314
313
  cognite_toolkit/_cdf_tk/resource_classes/agent.py,sha256=5rglrj551Z-0eT53S_UmSA3wz4m4Y494QxleWVs0ECE,1786
315
314
  cognite_toolkit/_cdf_tk/resource_classes/agent_tools.py,sha256=oNkpPCQF3CyV9zcD6NTuEAnATLXzslw2GOyFz58ZGZg,2891
@@ -370,14 +369,14 @@ cognite_toolkit/_cdf_tk/resource_classes/workflow_trigger.py,sha256=aSN0WFPupQ38
370
369
  cognite_toolkit/_cdf_tk/resource_classes/workflow_version.py,sha256=ZCn7xJyTEQCjWbvceny6yJYhqFcS64LbR228dbGjLXI,10195
371
370
  cognite_toolkit/_cdf_tk/storageio/__init__.py,sha256=h5Wr4i7zNIgsslrsRJxmp7ls4bNRKl0uZzQ7GLRMP7g,1920
372
371
  cognite_toolkit/_cdf_tk/storageio/_annotations.py,sha256=QcFrikDgz-9VjNy4Xq7wchM4VOQh-z2JaHcWR2C1sEs,4879
373
- cognite_toolkit/_cdf_tk/storageio/_applications.py,sha256=8XYcXHnrshxw0wB6ehtbiVZXgQxx-ci7czmUbwP-tXE,21338
372
+ cognite_toolkit/_cdf_tk/storageio/_applications.py,sha256=u3J9zixYcvHStIW8Df0EUYriXQdQS71ox0n3Zrg5A4Q,21396
374
373
  cognite_toolkit/_cdf_tk/storageio/_asset_centric.py,sha256=IM17Ouq-5ozbvr6LbE6-fiijorHUV734VRj7S2JjbJw,32822
375
- cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=EBAueJQBSkMShRCt5PYoscGAxOeKuQEteG5lSEFrXf0,13158
374
+ cognite_toolkit/_cdf_tk/storageio/_base.py,sha256=bs6iWPN80kY75gSlrMyDpe8HKtNRGEWvvSUdgHrzmVg,13461
376
375
  cognite_toolkit/_cdf_tk/storageio/_data_classes.py,sha256=s3TH04BJ1q7rXndRhEbVMEnoOXjxrGg4n-w9Z5uUL-o,3480
377
- cognite_toolkit/_cdf_tk/storageio/_datapoints.py,sha256=sgO5TAD87gHn8gxTwRM3yn__yVDsOrNR_MDoOpZwcUg,20207
378
- cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=Flfh2yekYQQKjx9TKclQ6LvaifZlDAK2PNLFGgBhfuo,19408
376
+ cognite_toolkit/_cdf_tk/storageio/_datapoints.py,sha256=ZAfsjeXjmZ96-ranQgynJcMOnbVlzWXhxpM-eCPG8hE,20755
377
+ cognite_toolkit/_cdf_tk/storageio/_file_content.py,sha256=5Az-oWHV77SS_44Nb4PAmORgdbsb4JBh6-yeAKhZf3U,19469
379
378
  cognite_toolkit/_cdf_tk/storageio/_instances.py,sha256=2mb9nTC63cn3r1B9YqA0wAmHcbJhMDiET78T7XY5Yco,10821
380
- cognite_toolkit/_cdf_tk/storageio/_raw.py,sha256=VqzAF79ON3hjrVRTBsSiSGK9B_Xmm-PWhFxvA0YKgPE,5162
379
+ cognite_toolkit/_cdf_tk/storageio/_raw.py,sha256=AvGmMySZ3ENN5X8EnwORVXqaF4E4fmGcx0PIJRLLSyg,5225
381
380
  cognite_toolkit/_cdf_tk/storageio/logger.py,sha256=RDQvauxSjtlVX-V5XGkFCtqiWpv4KdjJrEcPFVNqPF0,5557
382
381
  cognite_toolkit/_cdf_tk/storageio/selectors/__init__.py,sha256=5qqgeCrsmMLVsrRuYKxCKq1bNnvJkWeAsATpTKN1eC4,4394
383
382
  cognite_toolkit/_cdf_tk/storageio/selectors/_asset_centric.py,sha256=7Iv_ccVX6Vzt3ZLFZ0Er3hN92iEsFTm9wgF-yermOWE,1467
@@ -397,7 +396,7 @@ cognite_toolkit/_cdf_tk/tracker.py,sha256=jhxzI8LOSZw3zDBPsTLW3zC2YcQK2abp_aVtRK
397
396
  cognite_toolkit/_cdf_tk/utils/__init__.py,sha256=DGuPTiY3fRhPuR_r-bCT_bDKl46nvF3q2ZY-yt2okT8,1640
398
397
  cognite_toolkit/_cdf_tk/utils/_auxiliary.py,sha256=tvvgFiWwLOCVDkPg83U5XqBLfOOt_gI3697EQr7-GSE,1198
399
398
  cognite_toolkit/_cdf_tk/utils/aggregators.py,sha256=JJlBYtolnIQjD_L1dLdij06ED-4GUgKAr77YnYIQwSI,17925
400
- cognite_toolkit/_cdf_tk/utils/auth.py,sha256=O_VuLXS8xYdjBeTATIHWht7KtemmhZIfxUrzgqCdrMQ,23106
399
+ cognite_toolkit/_cdf_tk/utils/auth.py,sha256=BzH83m6nHx2BXBuoE2PJEoEWDlh24RzqoCLv2dfFAB0,23155
401
400
  cognite_toolkit/_cdf_tk/utils/auxiliary.py,sha256=BLhWEBz8ErY4CVwJOaN6H9pUrkMJBT-ylYNuvDORMXQ,814
402
401
  cognite_toolkit/_cdf_tk/utils/cdf.py,sha256=ozrZS2zG37_j-WPamKYEMhJSG1d-NoV44dQiySxu3xM,18293
403
402
  cognite_toolkit/_cdf_tk/utils/cicd.py,sha256=74XQKpm6IHvCbxv-66ouc0MfSdW3RhH9kBSJtjeYdv4,535
@@ -413,7 +412,7 @@ cognite_toolkit/_cdf_tk/utils/fileio/_readers.py,sha256=IjOSHyW0GiID_lKdgAwQZao9
413
412
  cognite_toolkit/_cdf_tk/utils/fileio/_writers.py,sha256=mc23m0kJgl57FUDvwLmS7yR3xVZWQguPJa_63-qQ_L0,17731
414
413
  cognite_toolkit/_cdf_tk/utils/graphql_parser.py,sha256=2i2wDjg_Uw3hJ-pHtPK8hczIuCj5atrK8HZbgWJB-Pk,11532
415
414
  cognite_toolkit/_cdf_tk/utils/hashing.py,sha256=3NyNfljyYNTqAyAFBd6XlyWaj43jRzENxIuPdOY6nqo,2116
416
- cognite_toolkit/_cdf_tk/utils/interactive_select.py,sha256=q0yzNse22TDwHulkE6PD1Rxhdy8TBAayvEJn0VX75IA,37957
415
+ cognite_toolkit/_cdf_tk/utils/interactive_select.py,sha256=G8UqFMzxOOImMwHfCvXEe-nTTqay9PYCwbpyIQae_XU,38000
417
416
  cognite_toolkit/_cdf_tk/utils/modules.py,sha256=zI0Qv1WSZRj3B58TwItnXwEtahwpRpDXU3GHew3Qffs,6216
418
417
  cognite_toolkit/_cdf_tk/utils/pip_validator.py,sha256=dzizb6-U0bee4ismqrvccUq_K2ASKY0xk40RbDzorEg,3231
419
418
  cognite_toolkit/_cdf_tk/utils/producer_worker.py,sha256=1l77HIehkq1ARCBH6SlZ_V-jd6QKijYKeWetcUmAXg0,14216
@@ -432,14 +431,14 @@ cognite_toolkit/_repo_files/.gitignore,sha256=ip9kf9tcC5OguF4YF4JFEApnKYw0nG0vPi
432
431
  cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md,sha256=OLA0D7yCX2tACpzvkA0IfkgQ4_swSd-OlJ1tYcTBpsA,240
433
432
  cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml,sha256=brULcs8joAeBC_w_aoWjDDUHs3JheLMIR9ajPUK96nc,693
434
433
  cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml,sha256=OBFDhFWK1mlT4Dc6mDUE2Es834l8sAlYG50-5RxRtHk,723
435
- cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=tXweR6WMMb-kz4QRfh9uIHOJh8eWTTvQhi-ilKY2k1Q,667
436
- cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=fMRQrB9Vai5L3hZBnfcjKkAQvWFquXbwdwCrntPZfV0,2430
437
- cognite_toolkit/_resources/cdf.toml,sha256=aivdY-grwyZ_jbyTtYTai3Lp8xVqG2P0gasvxyjtJdE,475
438
- cognite_toolkit/_version.py,sha256=drRfaMVbXe8_5hc9xNe4bDzCjjTLvVLeM4E3Lrnbszc,23
434
+ cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml,sha256=2i9Ng74EywCNtMWB3p6RH_ougZxhuXyep_kg3eDKrVA,667
435
+ cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml,sha256=rKeaGepihOXaQpyMBo34JBKvsEdNxmy-jYhakfETD14,2430
436
+ cognite_toolkit/_resources/cdf.toml,sha256=Y90ZeHswQtBDSZOwQY5fIgKxG5J-3CouSwkdgAxF4lA,475
437
+ cognite_toolkit/_version.py,sha256=T4f8KhXLIFbit-GdCb09Sz4JRKr4HXaM2f5YW5zmzJo,23
439
438
  cognite_toolkit/config.dev.yaml,sha256=M33FiIKdS3XKif-9vXniQ444GTZ-bLXV8aFH86u9iUQ,332
440
439
  cognite_toolkit/demo/__init__.py,sha256=-m1JoUiwRhNCL18eJ6t7fZOL7RPfowhCuqhYFtLgrss,72
441
440
  cognite_toolkit/demo/_base.py,sha256=6xKBUQpXZXGQ3fJ5f7nj7oT0s2n7OTAGIa17ZlKHZ5U,8052
442
- cognite_toolkit-0.7.54.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
443
- cognite_toolkit-0.7.54.dist-info/entry_points.txt,sha256=EtZ17K2mUjh-AY0QNU1CPIB_aDSSOdmtNI_4Fj967mA,84
444
- cognite_toolkit-0.7.54.dist-info/METADATA,sha256=NMbgNpAqYHr8pZWq08GmIG5F7lqE9_ejermRYx0vCOE,5026
445
- cognite_toolkit-0.7.54.dist-info/RECORD,,
441
+ cognite_toolkit-0.7.56.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
442
+ cognite_toolkit-0.7.56.dist-info/entry_points.txt,sha256=EtZ17K2mUjh-AY0QNU1CPIB_aDSSOdmtNI_4Fj967mA,84
443
+ cognite_toolkit-0.7.56.dist-info/METADATA,sha256=sezNguEqp_kSwhuDxIxI1DZ21sqLAGlxFCS8wjGWj7U,5026
444
+ cognite_toolkit-0.7.56.dist-info/RECORD,,