cognite-toolkit 0.7.10__tar.gz → 0.7.12__tar.gz
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-0.7.10 → cognite_toolkit-0.7.12}/PKG-INFO +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cdf.toml +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf.py +8 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/__init__.py +2 -2
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_purge.py +27 -28
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_upload.py +5 -1
- cognite_toolkit-0.7.12/cognite_toolkit/_cdf_tk/commands/about.py +221 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/clean.py +11 -13
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/deploy.py +9 -17
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/dump_resource.py +6 -4
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/pull.py +6 -19
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_base_cruds.py +7 -25
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_data_cruds.py +3 -6
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/agent.py +4 -6
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/auth.py +4 -12
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/classic.py +19 -36
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/configuration.py +4 -10
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/data_organization.py +4 -12
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/datamodel.py +16 -41
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/extraction_pipeline.py +5 -15
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/fieldops.py +8 -21
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/file.py +6 -22
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/function.py +5 -15
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/hosted_extractors.py +12 -26
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/industrial_tool.py +3 -6
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/location.py +3 -14
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/migration.py +4 -8
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/raw.py +4 -8
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/relationship.py +3 -6
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/robotics.py +15 -34
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/streams.py +2 -5
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/three_d_model.py +3 -6
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/timeseries.py +5 -13
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/transformation.py +4 -19
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/workflow.py +20 -37
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_worker.py +13 -30
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/feature_flags.py +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_base.py +23 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_file_content.py +4 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/fileio/_readers.py +42 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/GitHub/.github/workflows/deploy.yaml +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/GitHub/.github/workflows/dry-run.yaml +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_resources/cdf.toml +1 -1
- cognite_toolkit-0.7.12/cognite_toolkit/_version.py +1 -0
- cognite_toolkit-0.7.12/last_changelog_entry.md +6 -0
- cognite_toolkit-0.7.12/last_git_message.txt +28 -0
- cognite_toolkit-0.7.12/last_version.txt +1 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/pyproject.toml +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/build_group_with_unknown_acl/_build_environment.yaml +1 -1
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/cdf_toml_data/cdf.toml +1 -1
- {cognite_toolkit-0.7.10/tests/data/complete_org_alpha_flags → cognite_toolkit-0.7.12/tests/data/complete_org}/cdf.toml +1 -1
- {cognite_toolkit-0.7.10/tests/data/complete_org_only_identifier → cognite_toolkit-0.7.12/tests/data/complete_org_alpha_flags}/cdf.toml +1 -1
- {cognite_toolkit-0.7.10/tests/data/naughty_project → cognite_toolkit-0.7.12/tests/data/complete_org_only_identifier}/cdf.toml +1 -1
- {cognite_toolkit-0.7.10/tests/data/complete_org → cognite_toolkit-0.7.12/tests/data/naughty_project}/cdf.toml +1 -1
- cognite_toolkit-0.7.12/tests/data/project_no_cognite_modules/cdf.toml +4 -0
- cognite_toolkit-0.7.12/tests/data/project_with_bad_modules/cdf.toml +4 -0
- cognite_toolkit-0.7.12/tests/data/project_with_duplicates/cdf.toml +4 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/cdf.toml +1 -1
- cognite_toolkit-0.7.12/tests/test_unit/test_cdf_tk/conftest.py +23 -0
- cognite_toolkit-0.7.12/tests/test_unit/test_cdf_tk/test_commands/test_about.py +234 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_init.py +0 -11
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_modules.py +0 -7
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_base.py +5 -3
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_cdf_toml.py +0 -9
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_fileio.py +4 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/uv.lock +1 -1
- cognite_toolkit-0.7.10/cognite_toolkit/_cdf_tk/commands/featureflag.py +0 -27
- cognite_toolkit-0.7.10/cognite_toolkit/_version.py +0 -1
- cognite_toolkit-0.7.10/last_changelog_entry.md +0 -6
- cognite_toolkit-0.7.10/last_git_message.txt +0 -19
- cognite_toolkit-0.7.10/last_version.txt +0 -1
- cognite_toolkit-0.7.10/tests/data/project_no_cognite_modules/cdf.toml +0 -4
- cognite_toolkit-0.7.10/tests/data/project_with_bad_modules/cdf.toml +0 -4
- cognite_toolkit-0.7.10/tests/data/project_with_duplicates/cdf.toml +0 -4
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.cursorignore +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.gemini/styleguide.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.github/CODEOWNERS +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.github/pull_request_template.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.github/renovate.json +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.github/workflows/demo.yml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.github/workflows/release.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.gitignore +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.markdownlint.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.pre-commit-config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/.vscode/launch.json +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/CONTRIBUTING.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/Dockerfile +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/LIBRARIES.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/LICENSE +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/branding/toolkit.png +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/branding/toolkit.svg +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/branding/toolkit.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cdf-tk +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cdf-tk-dev.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_auth_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_core_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_data_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_dev_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_download_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_dump_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_landing_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_migrate_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_modules_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_profile_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_purge.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_repo_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_run.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/apps/_upload_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_datamodels.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_file.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_function.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_location.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_streamlit.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/builders/_transformation.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cdf_toml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/_constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/_toolkit_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/charts.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/dml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/extended_data_modeling.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/extended_files.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/extended_functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/extended_raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/extended_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/fixed_transformations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/infield.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/location_filters.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/lookup.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/project.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/api.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/capabilities.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/data_postprocessing.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/frames.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/locations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/maps.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/robots.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/robotics/utlis.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/search.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/streams.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/three_d.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/token.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api/verify.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/api_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/api_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/apm_config_v1.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/capabilities.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/charts.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/charts_data.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/extendable_cognite_file.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/extended_filemetadata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/extended_filemetdata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/extended_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/graphql_data_models.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/infield.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/instance_api.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/instances.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/location_filters.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/pending_instances_ids.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/project.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/robotics.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/sequences.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/streamlit_.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/streams.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/data_classes/three_d.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/testing.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/utils/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/utils/_concurrency.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/client/utils/_http_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_changes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_cli_commands.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_download.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/command.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/conversion.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/creators.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/data_mapper.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/default_mappings.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/issues.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/migration_io.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/prepare.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_migrate/selectors.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_profile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_questionary_style.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_utils.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_virtual_env.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/auth.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/build_cmd.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/collect.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/init.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/modules.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/repo.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/resources.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/run.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/cruds/_resource_cruds/group_scoped.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_build_files.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_build_variables.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_built_modules.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_built_resources.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_config_yaml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_deploy_results.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_module_directories.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_module_resources.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_module_toml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_packages.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_tracking_info.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/data_classes/_yaml_comments.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/exceptions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/hints.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/plugins.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/protocols.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/prototypes/commands/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/prototypes/commands/import_.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/prototypes/import_app.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/agent.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/agent_tools.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/asset.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/authentication.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/capabilities.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/cognitefile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/container_field_definitions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/containers.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/datapoint_subscription.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/dataset.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/event.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/extraction_pipeline.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/extraction_pipeline_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/filemetadata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/function_schedule.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/graphql_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/groups.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_destination.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_job.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_mapping.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/hosted_extractor_source.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/infield_location_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/infield_v1.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/instance.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/labels.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/location.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/raw_database_table.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/relationship.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/capability.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/data_postprocessing.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/frame.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/location.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/robotics/map.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/securitycategories.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/sequence.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/space.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/streamlit_.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/streams.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/threedmodels.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/transformation_destination.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/transformation_notification.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/transformation_schedule.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/transformations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/view_field_definitions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/views.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/workflow.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/workflow_trigger.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/resource_classes/workflow_version.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_annotations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_applications.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_asset_centric.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_datapoints.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_instances.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/_raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_asset_centric.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_charts.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_datapoints.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_file_content.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_instances.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/storageio/selectors/_raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/tk_warnings/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/tk_warnings/base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/tk_warnings/fileread.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/tk_warnings/other.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/tracker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/_auxiliary.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/aggregators.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/auth.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/auxiliary.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/cdf.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/cicd.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/cli_args.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/collection.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/diff_list.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/dtype_conversion.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/file.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/fileio/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/fileio/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/fileio/_compression.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/fileio/_writers.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/graphql_parser.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/hashing.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/http_client/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/http_client/_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/http_client/_data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/http_client/_exception.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/http_client/_tracker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/interactive_select.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/modules.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/producer_worker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/progress_tracker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/repository.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/sentry_utils.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/sql_parser.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/text.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/thread_safe_dict.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/useful_types.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/utils/validate_access.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/validation.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/.env.tmpl +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/.gitignore +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/AzureDevOps/.devops/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/AzureDevOps/.devops/deploy-pipeline.yml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_repo_files/AzureDevOps/.devops/dry-run-pipeline.yml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/demo/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/demo/_base.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/demo/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/demo/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/demo/config.demo.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/demo/preproc.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/dev.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/module_upgrade/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/module_upgrade/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/module_upgrade/run_check.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/auth_utils.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/auth_data/groups.json +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/auth_data/project_info.json +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/auth_data/rw-group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/build_group_with_unknown_acl/auth/1.group_with_unknown_acl.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/data_models/demo.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/data_sets/demo.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/extraction_pipelines/ctx_files_direct_relation_write.ExtractionPipeline.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/extraction_pipelines/ctx_files_direct_relation_write.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/functions/contextualization_connection_writer/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/functions/contextualization_connection_writer/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/functions/write.Function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/module.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/raw/contextualization_state.DataBase.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/raw/contextualization_state.Table.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_common/raw/source.DataBase.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/auth/user.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/auth/workflow.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/module.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/workflows/ingest.Workflow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/workflows/trigger.WorkflowTrigger.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_ingestion/workflows/v1.WorkflowVersion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/auth/workflow.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/extraction_pipelines/extractor.Config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/extraction_pipelines/extractor.ExtractionPipeline.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/module.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/raw/timeseries.Table.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/transformations/population/timeseries.Transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/transformations/population/timeseries.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/workflows/population.Workflow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/workflows/trigger.WorkflowTrigger.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/cdf_pi/workflows/v1.WorkflowVersion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/buildable_package/modules/packages.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/calc_hash_data/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/calc_hash_data/src/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/calc_hash_data/src/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/cdf/core_containers_no_3d.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/cdf/core_no_3d.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/cdf/extractor_views.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/3dmodels/my_model.3DModel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/agents/my.Agent.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/auth/all_scoped.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/auth/my_security_category.SecurityCategory.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/auth/resource_scoped.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/cdf_applications/basic.SearchConfig.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/cdf_applications/complex.SearchConfig.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/my.Event.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/my.Relationship.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/my_asset.Asset.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/my_labels.Label.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/my_sequence.Sequence.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/power_curve.Sequence.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/power_curve.SequenceRow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/root.Asset.csv +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/classic/some.Asset.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/child.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/description.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/edge.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/edge.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/edge_nodes.Node.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/file_extension.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/file_extension.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/instance.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/knowledge_graph.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/location.DataModel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/location.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/my.Edge.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/name.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/parent.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_modeling/types.Node.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/data_sets/data_sets.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/extraction_pipelines/hamburg.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/extraction_pipelines/my.ExtractionPipeline.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/files/classic.FileMetadata.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/files/classicfile.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/files/filecontent.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/files/vanilla.CogniteFile.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/code_in_cognite_file.function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/first.function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/first.schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_data_modeling_only_function/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_data_modeling_only_function/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/arbitrary.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/src/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/functions/fn_first_function/src/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/hosted_extractors/destination.Destination.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/hosted_extractors/job.Job.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/hosted_extractors/mapping.Mapping.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/hosted_extractors/my_eventhub.Source.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/locations/data_model_based.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/locations/nested.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/locations/view_based.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/raw/example.Table.csv +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/raw/example.Table.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/raw/staging.Database.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/robotics/navigation.Map.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/robotics/read_dial_gauge.DataPostProcessing.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/robotics/robot.RobotCapability.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/robotics/root.Frame.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/robotics/water_treatment_plant.Location.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/streamlit/myapp/main.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/streamlit/myapp/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/streamlit/myapp.Streamlit.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/timeseries/datapoints.csv +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/timeseries/my_subscription.DatapointSubscription.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/timeseries/timeseries.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/transformations/first.notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/transformations/first.transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/transformations/inline.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/workflows/first.Workflow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/workflows/first.WorkflowTrigger.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_example_module/workflows/first.WorkflowVersion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_file_expand_module/data_modeling/file.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_file_expand_module/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_file_expand_module/files/filecontent.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/my_file_expand_module/files/my.CogniteFile.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/packages.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/populate_model/data_modeling/PrimitiveNullable.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/populate_model/data_modeling/PrimitiveNullable.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/populate_model/data_modeling/instance.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/populate_model/data_modeling/model.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org/modules/populate_model/data_modeling/population.DataModel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/cdf_applications/my_location.InFieldLocationConfig.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/cdf_applications/my_location.InfieldV1.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/AssetHierarchy.GraphQLSchema.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/AssetHierarchy.graphql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/data_modeling/spaces.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/data_sets/data_sets.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/files/anotherfile.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/files/config.FileMetadata.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/files/config_shop.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/files/extended.CogniteFile.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/other_module.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/fn_multi_file_function/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/functions/multi_file.function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/migration/default_asset.ResourceViewMapping.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/my_example_module/streams/my_stream.Streams.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/to_repeat/classic/my_asset.Asset.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_alpha_flags/modules/to_repeat/data_sets/location.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/3dmodels/my_model.3DModel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/auth/my.Group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/auth/my_security_category.SecurityCategory.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/classic/my.Event.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/classic/my.Relationship.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/classic/my_asset.Asset.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/classic/my_labels.Label.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/classic/my_sequence.Sequence.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.DataModel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.Edge.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/my.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/name.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/schema.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_models/types.Node.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/data_sets/data_sets.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/extraction_pipelines/hamburg.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/extraction_pipelines/my.ExtractionPipeline.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/files/classic.FileMetadata.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/files/vanilla.CogniteFile.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/locations/data_model_based.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/raw/example.Table.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/raw/staging.Database.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/robotics/navigation.Map.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/robotics/read_dial_gauge.DataPostProcessing.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/robotics/robot.RobotCapability.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/robotics/root.Frame.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/robotics/water_treatment_plant.Location.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/timeseries/my_subscription.DatapointSubscription.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/timeseries/timeseries.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.transformation.schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/transformations/first.transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.Workflow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.WorkflowTrigger.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/complete_org_only_identifier/modules/identifier/workflows/first.WorkflowVersion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_1/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_1/module.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_1/raw/.gitkeep +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_2/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_2/module.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/external_module_2/raw/.gitkeep +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/external_package/packages.toml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/auth/1.my_group_list_combined.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/auth/1.my_group_scoped.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/auth/1.my_group_unscoped.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/data_sets/1.my_datasets.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/datamodels/snake_cased_view_property.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/files/my_file.FileMetadata.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/files/my_file.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/functions/1.my_function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/functions/1.my_functions.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/locations/exhaustive.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/locations/minimum.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/timeseries/wrong_case.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/load_data/timeseries_datapoints/datapoints.csv +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/README.md +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/difficult_graphql/misbehaving_grandparent.GraphQLSchema.graphql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/difficult_graphql/misbehaving_grandparent.GraphQLSchema.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/difficult_graphql/space.Space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/encoding_issue/data_sets/ds_teste_data_team_1.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/encoding_issue/transformations/create_data.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/encoding_issue/transformations/my_cp1252.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/encoding_issue/transformations/my_utf-8.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/multi_locations/first_location/locations/this.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/naughty_project/modules/multi_locations/second_location/locations/this.LocationFilter.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/a_module/auth/readonly.all.group.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/a_module/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_models/containers/my_container.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_models/data_models/my_data_model.datamodel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_models/spaces/my_space.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_models/views/10.my_other_view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_models/views/4.my_view.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/data_sets/file.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/files/files.FileMetadata.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/another_module/files/my_text.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/parent_module/child_module/data_sets/transformation.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/parent_module/child_module/default.config.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/parent_module/child_module/transformations/tr_asset_oid_workmate_asset_hierarchy_example.Transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_for_test/modules/parent_module/child_module/transformations/tr_asset_oid_workmate_asset_hierarchy_example.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/config.top_level_variables.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/my_model.GraphQLSchema.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/my_model.graphql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/data_modeling/thespace.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/data_sets/datasets.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/data_sets/extraction.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/extraction_pipelines/my.ExtractionPipeline.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/raw/all.RawTable.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/timeseries/timeseries.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/transformations/my.Transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/transformations/my.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/a_module/transformations/some.Notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/a_space.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/config.node.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/my.Container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/data_modeling/my.View.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/data_sets/datasets.DataSet.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/robotics/navigation.Map.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/robotics/read_dial_gauge.DataPostProcessing.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/robotics/robot.RobotCapability.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/robotics/root.Frame.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/robotics/water_treatment_plant.Location.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/my.Transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/my.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_no_cognite_modules/modules/another_module/transformations/subfolder/some.Notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_bad_modules/config.ill_module.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_bad_modules/config.no_module.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_bad_modules/modules/ill_made_module/auth/1.my_group_scoped.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_bad_modules/modules/ill_made_module/spaces/apm_simple.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_bad_modules/modules/not_module/group/1.my_group_list_combined.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_duplicates/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_duplicates/modules/examples/module1/data_models/my_space.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/project_with_duplicates/modules/models/module1/data_models/my_space.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/config.dev.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/handler.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/part_of_code.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/fn_test3/requirements.txt +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/my.Function.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/functions/my.Schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/workflows/population.Workflow.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/workflows/trigger.WorkflowTrigger.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/run_data/modules/examples/run_local_functions/workflows/v1.WorkflowVersion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/1.Production.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/10.SimNode.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/12.SimSubNode.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/13.SimEdge.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/14.Property.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/15.Coordinate.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/16.Coordinates.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/17.ModelExecutionEnvironment.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/18.Coordinate.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/19.Coordinates.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/2.SimulationModel.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/20.SimEdge.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/21.ProductionTimeseries.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/22.SimNode.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/23.Production.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/24.SimSubNode.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/25.SimulationResultFile.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/26.InputProperty.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/28.OutputProperty.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/29.Property.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/3.strongly-coupled-model.datamodel.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/30.SimulationModel.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/31.SimNodeAndEdge.view.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/5.my.space.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/6.ModelExecutionEnvironment.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/7.ProductionTimeseries.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/8.SimNodeAndEdge.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/strongly_coupled_model/data_modeling/9.SimulationResultFile.container.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest.Notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest.Schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest_to_asset.Notification.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest_to_asset.Schedule.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest_to_asset.Transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest_to_asset.Transformation.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/manifest_to_asset.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/data/transformation_cli/transformation.sql +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_deploy.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_deploy_data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_download_command.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_dump_data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_dump_extraction_pipeline.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_dump_transformation.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_migrate_assets.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_migrate_files.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_migrate_prepare.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_profile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_purge.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_commands/test_upload.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_cruds/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_cruds/test_resource_crud_containers.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_cruds/test_resource_cruds.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_storageio/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_storageio/test_applications.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_storageio/test_filecontent.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_3D.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_charts.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_extended_files.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_extended_functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_extended_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_infield.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_instances.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_locations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_lookup.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_projects.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_raw_profile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_robotics.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_toolkit_client/test_streams.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_utils/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_utils/test_aggregators.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_utils/test_cdf.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_integration/test_utils/test_http_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/approval_client/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/approval_client/client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/approval_client/config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/approval_client/data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/approval_client/test_toolkit_client_mock.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/get_type_hints.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/snapshots/load_data_snapshots/files.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/snapshots/load_data_snapshots/timeseries.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_builders/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_builders/test_builder.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_builders/test_location_builder.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_apm_config_v1.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_capabilities.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_charts.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_client_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_extended_filemetadata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_extended_functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_extended_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_instances.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_lookup.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_raw_data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_resource_view_mapping.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_client/test_token_api.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_auth.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_build.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_clean.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_deploy.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_download.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_dump_resource.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_import.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_command.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_conversion.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_creator.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_data_mapper.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migrate_canvas.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migration_io.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_migration_cmd/test_migration_issues.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_profile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_pull.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_purge.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_resources.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_run.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_commands/test_upload.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_classic.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_container.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_data_set.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_extraction_pipeline.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_fieldops.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_file_metadata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_function.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_group.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_hosted_extractor.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_industrial_tool.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_locations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_raw_file.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_time_series.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_transformation.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_view.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_worker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_cruds/test_workflow.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/conftest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_build_config_yaml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_build_variables.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_built_modules.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_config_yaml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_packages.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_plugins.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_tracking_info.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/test_yaml_comments.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_data_classes/tests_module_directories.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_agents.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_asset.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_capabilities.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_cognitefile.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_containers.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_data_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_datapoint_subscription_yaml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_dataset.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_event.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_extraction_pipeline.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_extraction_pipeline_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_filemetadata.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_functions.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_functionschedule.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_graphql_model.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_groups.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_destination.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_jobs.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_mapping.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_hosted_extractor_source.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_infield_location_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_infield_v1.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_instance.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_labels.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_location.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_migration.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_raw_database_table.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_relationships.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_capability.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_data_postprocessing.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_frame.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_location.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_robotics/test_map.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_search_config.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_securitycategories.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_sequence.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_space.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_streamlit.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_streams.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_threedmodels.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_timeseries.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformation_notification.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformation_schedule.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_transformations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_view.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow_triggers.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_resource_classes/test_workflow_version.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_annotations.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_applications.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_asset_centric.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_data_classes.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_filecontent.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_instance_io.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_raw.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_storageio/test_selectors.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_tk_warnings/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_tk_warnings/test_warnings_metatest.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_tracker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_aggregators.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_auth.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_auxiliary.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_cdf.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_cli_args.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_collection.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_dtype_conversion.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_file.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_graphql_parser.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_http_client.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_interactive_select.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_producer_worker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_progress_tracker.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_text.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_thread_safe_dict.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_utils.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_utils/test_validate_access.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_validation/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_validation/test_read_yaml.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/test_validation/test_validate_resource_pydantic.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cdf_tk/tests_constants.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/__init__.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_behavior.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_common.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_ingestion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_clean_snapshots/cdf_pi.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_common.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_ingestion.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_deploy_snapshots/cdf_pi.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_deploy_snapshots/complete_org.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_build_deploy_snapshots/complete_org_alpha_flags.yaml +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_cli/test_command_sequences.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/test_toolkit_release_process.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/test_unit/utils.py +0 -0
- {cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/tests/trigger_mixpanel_event.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cognite_toolkit
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.12
|
|
4
4
|
Summary: Official Cognite Data Fusion tool for project templates and configuration deployment
|
|
5
5
|
Project-URL: Homepage, https://docs.cognite.com/cdf/deploy/cdf_toolkit/
|
|
6
6
|
Project-URL: Changelog, https://github.com/cognitedata/toolkit/releases
|
|
@@ -36,6 +36,7 @@ from cognite_toolkit._cdf_tk.apps import (
|
|
|
36
36
|
)
|
|
37
37
|
from cognite_toolkit._cdf_tk.cdf_toml import CDFToml
|
|
38
38
|
from cognite_toolkit._cdf_tk.commands import (
|
|
39
|
+
AboutCommand,
|
|
39
40
|
CollectCommand,
|
|
40
41
|
)
|
|
41
42
|
from cognite_toolkit._cdf_tk.constants import HINT_LEAD_TEXT, URL, USE_SENTRY
|
|
@@ -115,6 +116,13 @@ _app.add_typer(ModulesApp(**default_typer_kws), name="modules")
|
|
|
115
116
|
_app.command("init")(landing_app.main_init)
|
|
116
117
|
|
|
117
118
|
|
|
119
|
+
@_app.command("about")
|
|
120
|
+
def about() -> None:
|
|
121
|
+
"""Display information about the Toolkit installation and configuration."""
|
|
122
|
+
cmd = AboutCommand()
|
|
123
|
+
cmd.run(lambda: cmd.execute(Path.cwd()))
|
|
124
|
+
|
|
125
|
+
|
|
118
126
|
def app() -> NoReturn:
|
|
119
127
|
# --- Main entry point ---
|
|
120
128
|
# Users run 'app()' directly, but that doesn't allow us to control excepton handling:
|
{cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/__init__.py
RENAMED
|
@@ -6,13 +6,13 @@ from ._migrate import (
|
|
|
6
6
|
from ._profile import ProfileAssetCentricCommand, ProfileAssetCommand, ProfileRawCommand, ProfileTransformationCommand
|
|
7
7
|
from ._purge import PurgeCommand
|
|
8
8
|
from ._upload import UploadCommand
|
|
9
|
+
from .about import AboutCommand
|
|
9
10
|
from .auth import AuthCommand
|
|
10
11
|
from .build_cmd import BuildCommand
|
|
11
12
|
from .clean import CleanCommand
|
|
12
13
|
from .collect import CollectCommand
|
|
13
14
|
from .deploy import DeployCommand
|
|
14
15
|
from .dump_resource import DumpResourceCommand
|
|
15
|
-
from .featureflag import FeatureFlagCommand
|
|
16
16
|
from .init import InitCommand
|
|
17
17
|
from .modules import ModulesCommand
|
|
18
18
|
from .pull import PullCommand
|
|
@@ -21,6 +21,7 @@ from .resources import ResourcesCommand
|
|
|
21
21
|
from .run import RunFunctionCommand, RunTransformationCommand, RunWorkflowCommand
|
|
22
22
|
|
|
23
23
|
__all__ = [
|
|
24
|
+
"AboutCommand",
|
|
24
25
|
"AuthCommand",
|
|
25
26
|
"BuildCommand",
|
|
26
27
|
"CleanCommand",
|
|
@@ -28,7 +29,6 @@ __all__ = [
|
|
|
28
29
|
"DeployCommand",
|
|
29
30
|
"DownloadCommand",
|
|
30
31
|
"DumpResourceCommand",
|
|
31
|
-
"FeatureFlagCommand",
|
|
32
32
|
"InitCommand",
|
|
33
33
|
"MigrationCanvasCommand",
|
|
34
34
|
"MigrationPrepareCommand",
|
{cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_purge.py
RENAMED
|
@@ -7,12 +7,7 @@ from typing import Literal, cast
|
|
|
7
7
|
|
|
8
8
|
import questionary
|
|
9
9
|
from cognite.client.data_classes import DataSetUpdate
|
|
10
|
-
from cognite.client.data_classes.
|
|
11
|
-
from cognite.client.data_classes.data_modeling import (
|
|
12
|
-
EdgeList,
|
|
13
|
-
NodeId,
|
|
14
|
-
NodeList,
|
|
15
|
-
)
|
|
10
|
+
from cognite.client.data_classes.data_modeling import Edge, NodeId
|
|
16
11
|
from cognite.client.data_classes.data_modeling.statistics import SpaceStatistics
|
|
17
12
|
from cognite.client.exceptions import CogniteAPIError
|
|
18
13
|
from cognite.client.utils._identifier import InstanceId
|
|
@@ -46,6 +41,7 @@ from cognite_toolkit._cdf_tk.exceptions import (
|
|
|
46
41
|
AuthorizationError,
|
|
47
42
|
ToolkitMissingResourceError,
|
|
48
43
|
)
|
|
44
|
+
from cognite_toolkit._cdf_tk.protocols import ResourceResponseProtocol
|
|
49
45
|
from cognite_toolkit._cdf_tk.storageio import InstanceIO
|
|
50
46
|
from cognite_toolkit._cdf_tk.storageio.selectors import InstanceSelector
|
|
51
47
|
from cognite_toolkit._cdf_tk.tk_warnings import (
|
|
@@ -107,7 +103,7 @@ class ToDelete(ABC):
|
|
|
107
103
|
@abstractmethod
|
|
108
104
|
def get_process_function(
|
|
109
105
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
110
|
-
) -> Callable[[
|
|
106
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
111
107
|
raise NotImplementedError()
|
|
112
108
|
|
|
113
109
|
def get_extra_fields(self) -> dict[str, JsonVal]:
|
|
@@ -118,9 +114,10 @@ class ToDelete(ABC):
|
|
|
118
114
|
class DataModelingToDelete(ToDelete):
|
|
119
115
|
def get_process_function(
|
|
120
116
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
121
|
-
) -> Callable[[
|
|
122
|
-
def as_id(chunk:
|
|
123
|
-
|
|
117
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
118
|
+
def as_id(chunk: list[ResourceResponseProtocol]) -> list[JsonVal]:
|
|
119
|
+
# We know that all data modeling resources implement as_id
|
|
120
|
+
return [item.as_id().dump(include_type=False) for item in chunk] # type: ignore[attr-defined]
|
|
124
121
|
|
|
125
122
|
return as_id
|
|
126
123
|
|
|
@@ -129,11 +126,11 @@ class DataModelingToDelete(ToDelete):
|
|
|
129
126
|
class EdgeToDelete(ToDelete):
|
|
130
127
|
def get_process_function(
|
|
131
128
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
132
|
-
) -> Callable[[
|
|
133
|
-
def as_id(chunk:
|
|
129
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
130
|
+
def as_id(chunk: list[ResourceResponseProtocol]) -> list[JsonVal]:
|
|
134
131
|
return [
|
|
135
132
|
{"space": item.space, "externalId": item.external_id, "instanceType": "edge"}
|
|
136
|
-
for item in cast(
|
|
133
|
+
for item in cast(list[Edge], chunk)
|
|
137
134
|
]
|
|
138
135
|
|
|
139
136
|
return as_id
|
|
@@ -146,9 +143,10 @@ class NodesToDelete(ToDelete):
|
|
|
146
143
|
|
|
147
144
|
def get_process_function(
|
|
148
145
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
149
|
-
) -> Callable[[
|
|
150
|
-
def check_for_data(chunk:
|
|
151
|
-
|
|
146
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
147
|
+
def check_for_data(chunk: list[ResourceResponseProtocol]) -> list[JsonVal]:
|
|
148
|
+
# We know that all node resources implement as_id
|
|
149
|
+
node_ids = [item.as_id() for item in chunk] # type: ignore[attr-defined]
|
|
152
150
|
found_ids: set[InstanceId] = set()
|
|
153
151
|
if not self.delete_datapoints:
|
|
154
152
|
timeseries = client.time_series.retrieve_multiple(instance_ids=node_ids, ignore_unknown_ids=True)
|
|
@@ -164,8 +162,7 @@ class NodesToDelete(ToDelete):
|
|
|
164
162
|
dumped = node_id.dump(include_instance_type=True)
|
|
165
163
|
# The delete endpoint expects "instanceType" instead of "type"
|
|
166
164
|
dumped["instanceType"] = dumped.pop("type")
|
|
167
|
-
|
|
168
|
-
result.append(dumped) # type: ignore[arg-type]
|
|
165
|
+
result.append(dumped)
|
|
169
166
|
return result
|
|
170
167
|
|
|
171
168
|
return check_for_data
|
|
@@ -175,9 +172,10 @@ class NodesToDelete(ToDelete):
|
|
|
175
172
|
class IdResourceToDelete(ToDelete):
|
|
176
173
|
def get_process_function(
|
|
177
174
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
178
|
-
) -> Callable[[
|
|
179
|
-
def as_id(chunk:
|
|
180
|
-
|
|
175
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
176
|
+
def as_id(chunk: list[ResourceResponseProtocol]) -> list[JsonVal]:
|
|
177
|
+
# We know that all id resources have an id attribute
|
|
178
|
+
return [{"id": item.id} for item in chunk] # type: ignore[attr-defined]
|
|
181
179
|
|
|
182
180
|
return as_id
|
|
183
181
|
|
|
@@ -186,9 +184,10 @@ class IdResourceToDelete(ToDelete):
|
|
|
186
184
|
class ExternalIdToDelete(ToDelete):
|
|
187
185
|
def get_process_function(
|
|
188
186
|
self, client: ToolkitClient, console: Console, verbose: bool, process_results: ResourceDeployResult
|
|
189
|
-
) -> Callable[[
|
|
190
|
-
def as_external_id(chunk:
|
|
191
|
-
|
|
187
|
+
) -> Callable[[list[ResourceResponseProtocol]], list[JsonVal]]:
|
|
188
|
+
def as_external_id(chunk: list[ResourceResponseProtocol]) -> list[JsonVal]:
|
|
189
|
+
# We know that all external id resources have an external_id attribute
|
|
190
|
+
return [{"externalId": item.external_id} for item in chunk] # type: ignore[attr-defined]
|
|
192
191
|
|
|
193
192
|
return as_external_id
|
|
194
193
|
|
|
@@ -321,7 +320,7 @@ class PurgeCommand(ToolkitCommand):
|
|
|
321
320
|
iteration_count = item.total // self.BATCH_SIZE_DM + (
|
|
322
321
|
1 if item.total % self.BATCH_SIZE_DM > 0 else 0
|
|
323
322
|
)
|
|
324
|
-
executor = ProducerWorkerExecutor[
|
|
323
|
+
executor = ProducerWorkerExecutor[list[ResourceResponseProtocol], list[JsonVal]](
|
|
325
324
|
download_iterable=self._iterate_batch(
|
|
326
325
|
item.crud, space, data_set_external_id, batch_size=self.BATCH_SIZE_DM
|
|
327
326
|
),
|
|
@@ -348,13 +347,13 @@ class PurgeCommand(ToolkitCommand):
|
|
|
348
347
|
@staticmethod
|
|
349
348
|
def _iterate_batch(
|
|
350
349
|
crud: ResourceCRUD, selected_space: str | None, data_set_external_id: str | None, batch_size: int
|
|
351
|
-
) -> Iterable[
|
|
352
|
-
batch =
|
|
350
|
+
) -> Iterable[list[ResourceResponseProtocol]]:
|
|
351
|
+
batch: list[ResourceResponseProtocol] = []
|
|
353
352
|
for resource in crud.iterate(space=selected_space, data_set_external_id=data_set_external_id):
|
|
354
353
|
batch.append(resource)
|
|
355
354
|
if len(batch) >= batch_size:
|
|
356
355
|
yield batch
|
|
357
|
-
batch =
|
|
356
|
+
batch = []
|
|
358
357
|
if batch:
|
|
359
358
|
yield batch
|
|
360
359
|
|
{cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/_upload.py
RENAMED
|
@@ -215,6 +215,10 @@ class UploadCommand(ToolkitCommand):
|
|
|
215
215
|
reader = MultiFileReader(datafiles)
|
|
216
216
|
if reader.is_table and not isinstance(io, TableUploadableStorageIO):
|
|
217
217
|
raise ToolkitValueError(f"{selector.display_name} does not support {reader.format!r} files.")
|
|
218
|
+
|
|
219
|
+
chunk_count = io.count_chunks(reader)
|
|
220
|
+
iteration_count = chunk_count // io.CHUNK_SIZE + (1 if chunk_count % io.CHUNK_SIZE > 0 else 0)
|
|
221
|
+
|
|
218
222
|
tracker = ProgressTracker[str]([self._UPLOAD])
|
|
219
223
|
executor = ProducerWorkerExecutor[list[tuple[str, dict[str, JsonVal]]], Sequence[UploadItem]](
|
|
220
224
|
download_iterable=io.read_chunks(reader, selector),
|
|
@@ -230,7 +234,7 @@ class UploadCommand(ToolkitCommand):
|
|
|
230
234
|
tracker=tracker,
|
|
231
235
|
console=console,
|
|
232
236
|
),
|
|
233
|
-
iteration_count=
|
|
237
|
+
iteration_count=iteration_count,
|
|
234
238
|
max_queue_size=self._MAX_QUEUE_SIZE,
|
|
235
239
|
download_description=f"Reading {selector.display_name!r} files",
|
|
236
240
|
process_description="Processing",
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import platform
|
|
2
|
+
import sys
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
from rich import print
|
|
6
|
+
from rich.table import Table
|
|
7
|
+
|
|
8
|
+
from cognite_toolkit._cdf_tk.cdf_toml import CDFToml, _read_toml
|
|
9
|
+
from cognite_toolkit._cdf_tk.commands._base import ToolkitCommand
|
|
10
|
+
from cognite_toolkit._cdf_tk.constants import clean_name
|
|
11
|
+
from cognite_toolkit._cdf_tk.feature_flags import Flags
|
|
12
|
+
from cognite_toolkit._cdf_tk.plugins import Plugins
|
|
13
|
+
from cognite_toolkit._cdf_tk.tk_warnings import LowSeverityWarning, MediumSeverityWarning
|
|
14
|
+
from cognite_toolkit._version import __version__
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class AboutCommand(ToolkitCommand):
|
|
18
|
+
def execute(self, cwd: Path) -> None:
|
|
19
|
+
# Version information
|
|
20
|
+
print(f"\n[bold cyan]Cognite Toolkit[/bold cyan] version: [yellow]{__version__}[/yellow]")
|
|
21
|
+
print(f"Python version: {sys.version.split()[0]}")
|
|
22
|
+
print(f"Platform: {platform.system()} {platform.release()}")
|
|
23
|
+
|
|
24
|
+
# Check for cdf.toml in the current directory
|
|
25
|
+
cdf_toml_path = cwd / CDFToml.file_name
|
|
26
|
+
|
|
27
|
+
if cdf_toml_path.exists():
|
|
28
|
+
print(f"\n[bold green]Configuration file found:[/bold green] {cdf_toml_path}")
|
|
29
|
+
|
|
30
|
+
cdf_toml = CDFToml.load(cwd)
|
|
31
|
+
|
|
32
|
+
# We need to read the raw TOML to get original key names for plugins and alpha flags
|
|
33
|
+
raw_toml = _read_toml(cdf_toml_path)
|
|
34
|
+
|
|
35
|
+
self._check_unrecognized_sections(raw_toml)
|
|
36
|
+
self._display_plugins(cdf_toml, raw_toml)
|
|
37
|
+
self._display_alpha_flags(cdf_toml, raw_toml)
|
|
38
|
+
self._display_additional_config(cdf_toml)
|
|
39
|
+
|
|
40
|
+
else:
|
|
41
|
+
# Search for cdf.toml in subdirectories
|
|
42
|
+
found_files = self._search_cdf_toml(cwd)
|
|
43
|
+
|
|
44
|
+
if found_files:
|
|
45
|
+
print(f"\n[bold yellow]No cdf.toml found in current directory:[/bold yellow] {cwd}")
|
|
46
|
+
print("\n[bold]Found cdf.toml files in subdirectories:[/bold]")
|
|
47
|
+
for file in found_files:
|
|
48
|
+
rel_path = file.relative_to(cwd)
|
|
49
|
+
print(f" • {rel_path}")
|
|
50
|
+
print(f"\n[bold cyan]Hint:[/bold cyan] Move one of these files to {cwd} or navigate to its directory.")
|
|
51
|
+
else:
|
|
52
|
+
print("\n[bold yellow]No cdf.toml found[/bold yellow] in current directory or subdirectories.")
|
|
53
|
+
print(f"Current directory: {cwd}")
|
|
54
|
+
print("\n[bold cyan]Hint:[/bold cyan] Run [yellow]cdf init[/yellow] to create a new project.")
|
|
55
|
+
|
|
56
|
+
def _check_unrecognized_sections(self, raw_toml: dict) -> None:
|
|
57
|
+
"""Check for unrecognized tables in cdf.toml and warn about them."""
|
|
58
|
+
# Valid top-level tables in cdf.toml
|
|
59
|
+
valid_tables = {"cdf", "modules", "alpha_flags", "feature_flags", "plugins", "library"}
|
|
60
|
+
|
|
61
|
+
# Filter out empty keys, whitespace-only keys, and check for unrecognized tables
|
|
62
|
+
unrecognized_tables = [key for key in raw_toml.keys() if key and key.strip() and key not in valid_tables]
|
|
63
|
+
|
|
64
|
+
if unrecognized_tables:
|
|
65
|
+
print()
|
|
66
|
+
|
|
67
|
+
for table in unrecognized_tables:
|
|
68
|
+
# Try to find a matching valid table by stripping non-alphabetical characters
|
|
69
|
+
suggestion = self._find_similar_table(table, valid_tables)
|
|
70
|
+
|
|
71
|
+
message = f"Table '{table}' in cdf.toml is not recognized and will have no effect."
|
|
72
|
+
if suggestion:
|
|
73
|
+
message += f" Did you mean '{suggestion}'?"
|
|
74
|
+
|
|
75
|
+
self.warn(MediumSeverityWarning(message))
|
|
76
|
+
|
|
77
|
+
@staticmethod
|
|
78
|
+
def _find_similar_table(unrecognized: str, valid_tables: set[str]) -> str | None:
|
|
79
|
+
"""Find a similar valid table by comparing alphabetical characters only.
|
|
80
|
+
|
|
81
|
+
Returns None if the unrecognized table is already valid or if no similar match is found.
|
|
82
|
+
"""
|
|
83
|
+
# If it's already a valid table, return None (no suggestion needed)
|
|
84
|
+
if unrecognized in valid_tables:
|
|
85
|
+
return None
|
|
86
|
+
|
|
87
|
+
# Keep only alphabetical characters and lowercase
|
|
88
|
+
normalized_unrecognized = "".join(c for c in unrecognized if c.isalpha()).lower()
|
|
89
|
+
|
|
90
|
+
# First, try exact match (after normalization)
|
|
91
|
+
for valid in valid_tables:
|
|
92
|
+
normalized_valid = "".join(c for c in valid if c.isalpha()).lower()
|
|
93
|
+
if normalized_unrecognized == normalized_valid:
|
|
94
|
+
return valid
|
|
95
|
+
|
|
96
|
+
# If no match, check for singular/plural variations (missing 's')
|
|
97
|
+
for valid in valid_tables:
|
|
98
|
+
normalized_valid = "".join(c for c in valid if c.isalpha()).lower()
|
|
99
|
+
|
|
100
|
+
# Check if adding 's' to unrecognized matches valid (e.g., "plugin" -> "plugins")
|
|
101
|
+
if normalized_unrecognized + "s" == normalized_valid:
|
|
102
|
+
return valid
|
|
103
|
+
|
|
104
|
+
return None
|
|
105
|
+
|
|
106
|
+
def _display_plugins(self, cdf_toml: CDFToml, raw_toml: dict) -> None:
|
|
107
|
+
"""Display all available plugins and their status."""
|
|
108
|
+
table = Table(title="Plugins", show_header=True)
|
|
109
|
+
table.add_column("Plugin", justify="left", style="cyan")
|
|
110
|
+
table.add_column("Status", justify="center")
|
|
111
|
+
table.add_column("Description", justify="left")
|
|
112
|
+
|
|
113
|
+
# Track which plugins we've seen
|
|
114
|
+
seen_plugins = set()
|
|
115
|
+
|
|
116
|
+
# Show all plugins from the enum
|
|
117
|
+
for plugin in Plugins:
|
|
118
|
+
plugin_name = plugin.value.name
|
|
119
|
+
cleaned_key = clean_name(plugin_name)
|
|
120
|
+
seen_plugins.add(cleaned_key)
|
|
121
|
+
|
|
122
|
+
is_enabled = cdf_toml.plugins.get(cleaned_key, False)
|
|
123
|
+
if is_enabled:
|
|
124
|
+
status = "[green]✓ enabled[/green]"
|
|
125
|
+
else:
|
|
126
|
+
status = "[dim]○ disabled[/dim]"
|
|
127
|
+
|
|
128
|
+
table.add_row(plugin_name, status, plugin.value.description)
|
|
129
|
+
|
|
130
|
+
print()
|
|
131
|
+
print(table)
|
|
132
|
+
|
|
133
|
+
# Show any unrecognized plugins from cdf.toml using original key names
|
|
134
|
+
raw_plugins = raw_toml.get("plugins", {})
|
|
135
|
+
unrecognized = []
|
|
136
|
+
for original_key, value in raw_plugins.items():
|
|
137
|
+
cleaned_key = clean_name(original_key)
|
|
138
|
+
if cleaned_key not in seen_plugins:
|
|
139
|
+
unrecognized.append((original_key, value))
|
|
140
|
+
|
|
141
|
+
for original_key, is_enabled in unrecognized:
|
|
142
|
+
status = "enabled" if is_enabled else "disabled"
|
|
143
|
+
self.warn(
|
|
144
|
+
LowSeverityWarning(f"Plugin '{original_key}' in cdf.toml is not recognized and will have no effect.")
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
def _display_alpha_flags(self, cdf_toml: CDFToml, raw_toml: dict) -> None:
|
|
148
|
+
"""Display available alpha flags and their status."""
|
|
149
|
+
table = Table(title="Alpha Flags", show_header=True)
|
|
150
|
+
table.add_column("Flag", justify="left", style="yellow")
|
|
151
|
+
table.add_column("Status", justify="center")
|
|
152
|
+
table.add_column("Description", justify="left")
|
|
153
|
+
|
|
154
|
+
# Track which flags we've seen
|
|
155
|
+
seen_flags = set()
|
|
156
|
+
|
|
157
|
+
# Show flags from the enum that are either enabled or visible
|
|
158
|
+
for flag in Flags:
|
|
159
|
+
cleaned_key = clean_name(flag.name)
|
|
160
|
+
seen_flags.add(cleaned_key)
|
|
161
|
+
|
|
162
|
+
is_enabled = cdf_toml.alpha_flags.get(cleaned_key, False)
|
|
163
|
+
|
|
164
|
+
# Only show if enabled or visible
|
|
165
|
+
if is_enabled or flag.value.visible:
|
|
166
|
+
# Convert enum name to kebab-case for display
|
|
167
|
+
display_name = flag.name.lower().replace("_", "-")
|
|
168
|
+
|
|
169
|
+
if is_enabled:
|
|
170
|
+
status = "[green]✓ enabled[/green]"
|
|
171
|
+
else:
|
|
172
|
+
status = "[dim]○ disabled[/dim]"
|
|
173
|
+
|
|
174
|
+
table.add_row(display_name, status, flag.value.description)
|
|
175
|
+
|
|
176
|
+
print()
|
|
177
|
+
print(table)
|
|
178
|
+
|
|
179
|
+
# Show any unrecognized flags from cdf.toml using original key names
|
|
180
|
+
raw_flags = raw_toml.get("alpha_flags", {})
|
|
181
|
+
unrecognized = []
|
|
182
|
+
for original_key, value in raw_flags.items():
|
|
183
|
+
cleaned_key = clean_name(original_key)
|
|
184
|
+
if cleaned_key not in seen_flags:
|
|
185
|
+
unrecognized.append((original_key, value))
|
|
186
|
+
|
|
187
|
+
for original_key, is_enabled in unrecognized:
|
|
188
|
+
status = "enabled" if is_enabled else "disabled"
|
|
189
|
+
self.warn(
|
|
190
|
+
LowSeverityWarning(
|
|
191
|
+
f"Alpha flag '{original_key}' in cdf.toml is not recognized and will have no effect."
|
|
192
|
+
)
|
|
193
|
+
)
|
|
194
|
+
|
|
195
|
+
def _display_additional_config(self, cdf_toml: CDFToml) -> None:
|
|
196
|
+
"""Display additional configuration information."""
|
|
197
|
+
print("\n[bold]Additional Configuration:[/bold]")
|
|
198
|
+
|
|
199
|
+
print(f" Default environment: [cyan]{cdf_toml.cdf.default_env}[/cyan]")
|
|
200
|
+
|
|
201
|
+
if cdf_toml.cdf.has_user_set_default_org:
|
|
202
|
+
print(f" Default organization dir: [cyan]{cdf_toml.cdf.default_organization_dir}[/cyan]")
|
|
203
|
+
|
|
204
|
+
if cdf_toml.cdf.file_encoding:
|
|
205
|
+
print(f" File encoding: [cyan]{cdf_toml.cdf.file_encoding}[/cyan]")
|
|
206
|
+
|
|
207
|
+
print(f" Modules version: [cyan]{cdf_toml.modules.version}[/cyan]")
|
|
208
|
+
|
|
209
|
+
if cdf_toml.libraries:
|
|
210
|
+
print(f" Configured libraries: [cyan]{len(cdf_toml.libraries)}[/cyan]")
|
|
211
|
+
for lib_name, lib_config in cdf_toml.libraries.items():
|
|
212
|
+
print(f" • {lib_name}: [dim]{lib_config.url}[/dim]")
|
|
213
|
+
|
|
214
|
+
def _search_cdf_toml(self, cwd: Path) -> list[Path]:
|
|
215
|
+
"""Search for cdf.toml files in immediate subdirectories (one level down)."""
|
|
216
|
+
try:
|
|
217
|
+
return sorted(
|
|
218
|
+
[potential_file for potential_file in cwd.glob(f"*/{CDFToml.file_name}") if potential_file.is_file()]
|
|
219
|
+
)
|
|
220
|
+
except PermissionError:
|
|
221
|
+
return []
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import traceback
|
|
2
|
+
from collections.abc import Sequence
|
|
2
3
|
from graphlib import TopologicalSorter
|
|
3
4
|
from pathlib import Path
|
|
4
5
|
|
|
@@ -24,14 +25,7 @@ from cognite_toolkit._cdf_tk.cruds import (
|
|
|
24
25
|
ResourceCRUD,
|
|
25
26
|
ResourceWorker,
|
|
26
27
|
)
|
|
27
|
-
from cognite_toolkit._cdf_tk.cruds._base_cruds import
|
|
28
|
-
T_ID,
|
|
29
|
-
Loader,
|
|
30
|
-
T_ResourceRequest,
|
|
31
|
-
T_ResourceRequestList,
|
|
32
|
-
T_ResourceResponse,
|
|
33
|
-
T_ResourceResponseList,
|
|
34
|
-
)
|
|
28
|
+
from cognite_toolkit._cdf_tk.cruds._base_cruds import Loader
|
|
35
29
|
from cognite_toolkit._cdf_tk.data_classes import (
|
|
36
30
|
BuildEnvironment,
|
|
37
31
|
DeployResults,
|
|
@@ -46,6 +40,7 @@ from cognite_toolkit._cdf_tk.exceptions import (
|
|
|
46
40
|
ToolkitValidationError,
|
|
47
41
|
ToolkitValueError,
|
|
48
42
|
)
|
|
43
|
+
from cognite_toolkit._cdf_tk.protocols import T_ResourceRequest, T_ResourceResponse
|
|
49
44
|
from cognite_toolkit._cdf_tk.tk_warnings import (
|
|
50
45
|
LowSeverityWarning,
|
|
51
46
|
MediumSeverityWarning,
|
|
@@ -57,6 +52,7 @@ from cognite_toolkit._cdf_tk.utils import (
|
|
|
57
52
|
read_yaml_file,
|
|
58
53
|
)
|
|
59
54
|
from cognite_toolkit._cdf_tk.utils.auth import EnvironmentVariables
|
|
55
|
+
from cognite_toolkit._cdf_tk.utils.useful_types import T_ID
|
|
60
56
|
|
|
61
57
|
from ._utils import _print_ids_or_length
|
|
62
58
|
|
|
@@ -66,9 +62,7 @@ AVAILABLE_DATA_TYPES: tuple[str, ...] = tuple(CRUDS_BY_FOLDER_NAME)
|
|
|
66
62
|
class CleanCommand(ToolkitCommand):
|
|
67
63
|
def clean_resources(
|
|
68
64
|
self,
|
|
69
|
-
loader: ResourceCRUD[
|
|
70
|
-
T_ID, T_ResourceRequest, T_ResourceResponse, T_ResourceRequestList, T_ResourceResponseList
|
|
71
|
-
],
|
|
65
|
+
loader: ResourceCRUD[T_ID, T_ResourceRequest, T_ResourceResponse],
|
|
72
66
|
env_vars: EnvironmentVariables,
|
|
73
67
|
read_modules: list[ReadModule],
|
|
74
68
|
dry_run: bool = False,
|
|
@@ -139,7 +133,7 @@ class CleanCommand(ToolkitCommand):
|
|
|
139
133
|
return ResourceDeployResult(name=loader.display_name)
|
|
140
134
|
|
|
141
135
|
def _delete_resources(
|
|
142
|
-
self, loaded_resources:
|
|
136
|
+
self, loaded_resources: Sequence[T_ResourceResponse], loader: ResourceCRUD, dry_run: bool, verbose: bool
|
|
143
137
|
) -> int:
|
|
144
138
|
nr_of_deleted = 0
|
|
145
139
|
resource_ids = loader.get_ids(loaded_resources)
|
|
@@ -164,7 +158,11 @@ class CleanCommand(ToolkitCommand):
|
|
|
164
158
|
return nr_of_deleted
|
|
165
159
|
|
|
166
160
|
def _drop_data(
|
|
167
|
-
self,
|
|
161
|
+
self,
|
|
162
|
+
loaded_resources: Sequence[T_ResourceResponse],
|
|
163
|
+
loader: ResourceContainerCRUD,
|
|
164
|
+
dry_run: bool,
|
|
165
|
+
verbose: bool,
|
|
168
166
|
) -> int:
|
|
169
167
|
nr_of_dropped = 0
|
|
170
168
|
resource_ids = loader.get_ids(loaded_resources)
|
{cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/deploy.py
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from collections.abc import Hashable
|
|
1
|
+
from collections.abc import Hashable, Sequence
|
|
2
2
|
from graphlib import TopologicalSorter
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from typing import overload
|
|
@@ -46,9 +46,7 @@ from cognite_toolkit._cdf_tk.exceptions import (
|
|
|
46
46
|
)
|
|
47
47
|
from cognite_toolkit._cdf_tk.protocols import (
|
|
48
48
|
T_ResourceRequest,
|
|
49
|
-
T_ResourceRequestList,
|
|
50
49
|
T_ResourceResponse,
|
|
51
|
-
T_ResourceResponseList,
|
|
52
50
|
)
|
|
53
51
|
from cognite_toolkit._cdf_tk.tk_warnings import EnvironmentVariableMissingWarning
|
|
54
52
|
from cognite_toolkit._cdf_tk.tk_warnings.base import WarningList, catch_warnings
|
|
@@ -338,9 +336,7 @@ class DeployCommand(ToolkitCommand):
|
|
|
338
336
|
|
|
339
337
|
def deploy_resource_type(
|
|
340
338
|
self,
|
|
341
|
-
loader: ResourceCRUD[
|
|
342
|
-
T_ID, T_ResourceRequest, T_ResourceResponse, T_ResourceRequestList, T_ResourceResponseList
|
|
343
|
-
],
|
|
339
|
+
loader: ResourceCRUD[T_ID, T_ResourceRequest, T_ResourceResponse],
|
|
344
340
|
env_vars: EnvironmentVariables,
|
|
345
341
|
read_modules: list[ReadModule] | None = None,
|
|
346
342
|
dry_run: bool = False,
|
|
@@ -402,10 +398,8 @@ class DeployCommand(ToolkitCommand):
|
|
|
402
398
|
|
|
403
399
|
def actual_deploy(
|
|
404
400
|
self,
|
|
405
|
-
resources: CategorizedResources[T_ID,
|
|
406
|
-
loader: ResourceCRUD[
|
|
407
|
-
T_ID, T_ResourceRequest, T_ResourceResponse, T_ResourceRequestList, T_ResourceResponseList
|
|
408
|
-
],
|
|
401
|
+
resources: CategorizedResources[T_ID, T_ResourceRequest],
|
|
402
|
+
loader: ResourceCRUD[T_ID, T_ResourceRequest, T_ResourceResponse],
|
|
409
403
|
env_var_warnings: WarningList | None = None,
|
|
410
404
|
) -> ResourceDeployResult:
|
|
411
405
|
environment_variable_warning_by_id = {
|
|
@@ -436,10 +430,8 @@ class DeployCommand(ToolkitCommand):
|
|
|
436
430
|
|
|
437
431
|
@staticmethod
|
|
438
432
|
def dry_run_deploy(
|
|
439
|
-
resources: CategorizedResources[T_ID,
|
|
440
|
-
loader: ResourceCRUD[
|
|
441
|
-
T_ID, T_ResourceRequest, T_ResourceResponse, T_ResourceRequestList, T_ResourceResponseList
|
|
442
|
-
],
|
|
433
|
+
resources: CategorizedResources[T_ID, T_ResourceRequest],
|
|
434
|
+
loader: ResourceCRUD[T_ID, T_ResourceRequest, T_ResourceResponse],
|
|
443
435
|
has_done_drop: bool,
|
|
444
436
|
has_dropped_data: bool,
|
|
445
437
|
) -> ResourceDeployResult:
|
|
@@ -470,7 +462,7 @@ class DeployCommand(ToolkitCommand):
|
|
|
470
462
|
|
|
471
463
|
@staticmethod
|
|
472
464
|
def _verbose_print(
|
|
473
|
-
resources: CategorizedResources[T_ID,
|
|
465
|
+
resources: CategorizedResources[T_ID, T_ResourceRequest],
|
|
474
466
|
loader: ResourceCRUD,
|
|
475
467
|
dry_run: bool,
|
|
476
468
|
) -> None:
|
|
@@ -494,7 +486,7 @@ class DeployCommand(ToolkitCommand):
|
|
|
494
486
|
|
|
495
487
|
def _create_resources(
|
|
496
488
|
self,
|
|
497
|
-
resources:
|
|
489
|
+
resources: Sequence[T_ResourceRequest],
|
|
498
490
|
loader: ResourceCRUD,
|
|
499
491
|
environment_variable_warning_by_id: dict[Hashable, EnvironmentVariableMissingWarning],
|
|
500
492
|
) -> int:
|
|
@@ -517,7 +509,7 @@ class DeployCommand(ToolkitCommand):
|
|
|
517
509
|
|
|
518
510
|
def _update_resources(
|
|
519
511
|
self,
|
|
520
|
-
resources:
|
|
512
|
+
resources: Sequence[T_ResourceRequest],
|
|
521
513
|
loader: ResourceCRUD,
|
|
522
514
|
environment_variable_warning_by_id: dict[Hashable, EnvironmentVariableMissingWarning],
|
|
523
515
|
) -> int:
|
{cognite_toolkit-0.7.10 → cognite_toolkit-0.7.12}/cognite_toolkit/_cdf_tk/commands/dump_resource.py
RENAMED
|
@@ -3,7 +3,7 @@ import json
|
|
|
3
3
|
import zipfile
|
|
4
4
|
from abc import ABC, abstractmethod
|
|
5
5
|
from collections import defaultdict
|
|
6
|
-
from collections.abc import Hashable, Iterable, Iterator
|
|
6
|
+
from collections.abc import Hashable, Iterable, Iterator, Sequence
|
|
7
7
|
from functools import cached_property
|
|
8
8
|
from pathlib import Path
|
|
9
9
|
from typing import Generic, cast
|
|
@@ -22,6 +22,7 @@ from cognite.client.data_classes import (
|
|
|
22
22
|
filters,
|
|
23
23
|
)
|
|
24
24
|
from cognite.client.data_classes._base import (
|
|
25
|
+
CogniteResource,
|
|
25
26
|
CogniteResourceList,
|
|
26
27
|
)
|
|
27
28
|
from cognite.client.data_classes.agents import (
|
|
@@ -113,7 +114,7 @@ class ResourceFinder(Iterable, ABC, Generic[T_ID]):
|
|
|
113
114
|
raise NotImplementedError
|
|
114
115
|
|
|
115
116
|
# Can be implemented in subclasses
|
|
116
|
-
def update(self, resources:
|
|
117
|
+
def update(self, resources: Sequence[CogniteResource]) -> None: ...
|
|
117
118
|
|
|
118
119
|
|
|
119
120
|
class DataModelFinder(ResourceFinder[DataModelId]):
|
|
@@ -178,7 +179,7 @@ class DataModelFinder(ResourceFinder[DataModelId]):
|
|
|
178
179
|
self.data_model = models_by_version[selected_model]
|
|
179
180
|
return self.data_model.as_id()
|
|
180
181
|
|
|
181
|
-
def update(self, resources:
|
|
182
|
+
def update(self, resources: Sequence[CogniteResource]) -> None:
|
|
182
183
|
if isinstance(resources, dm.DataModelList):
|
|
183
184
|
self.view_ids |= {
|
|
184
185
|
view.as_id() if isinstance(view, dm.View) else view for item in resources for view in item.views
|
|
@@ -187,7 +188,7 @@ class DataModelFinder(ResourceFinder[DataModelId]):
|
|
|
187
188
|
self.container_ids |= resources.referenced_containers()
|
|
188
189
|
elif isinstance(resources, dm.SpaceList):
|
|
189
190
|
return
|
|
190
|
-
self.space_ids |= {item.space for item in resources}
|
|
191
|
+
self.space_ids |= {item.space for item in resources if hasattr(item, "space")}
|
|
191
192
|
|
|
192
193
|
def __iter__(self) -> Iterator[tuple[list[Hashable], CogniteResourceList | None, ResourceCRUD, None | str]]:
|
|
193
194
|
self.identifier = self._selected()
|
|
@@ -804,6 +805,7 @@ class DumpResourceCommand(ToolkitCommand):
|
|
|
804
805
|
output_dir.mkdir(exist_ok=True)
|
|
805
806
|
|
|
806
807
|
dumped_ids: list[Hashable] = []
|
|
808
|
+
resources: Sequence[CogniteResource] | None = None
|
|
807
809
|
for identifiers, resources, loader, subfolder in finder:
|
|
808
810
|
if not identifiers and not resources:
|
|
809
811
|
# No resources to dump
|