├── .gitignore ├── LICENSE ├── README.md ├── gtm_gear ├── __init__.py ├── built_in_variable.py ├── cache.py ├── container.py ├── entity.py ├── folder.py ├── samples │ └── base_samples.py ├── service.py ├── setup.py ├── tag.py ├── template.py ├── trigger.py ├── utils.py ├── variable.py ├── version.py └── workspace.py ├── setup.py └── tests ├── data ├── container.json └── ga3_migration_container.json ├── entity_test.py └── helpers ├── request_builder.py ├── request_config.py └── request_mock.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/README.md -------------------------------------------------------------------------------- /gtm_gear/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/__init__.py -------------------------------------------------------------------------------- /gtm_gear/built_in_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/built_in_variable.py -------------------------------------------------------------------------------- /gtm_gear/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/cache.py -------------------------------------------------------------------------------- /gtm_gear/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/container.py -------------------------------------------------------------------------------- /gtm_gear/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/entity.py -------------------------------------------------------------------------------- /gtm_gear/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/folder.py -------------------------------------------------------------------------------- /gtm_gear/samples/base_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/samples/base_samples.py -------------------------------------------------------------------------------- /gtm_gear/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/service.py -------------------------------------------------------------------------------- /gtm_gear/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/setup.py -------------------------------------------------------------------------------- /gtm_gear/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/tag.py -------------------------------------------------------------------------------- /gtm_gear/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/template.py -------------------------------------------------------------------------------- /gtm_gear/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/trigger.py -------------------------------------------------------------------------------- /gtm_gear/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/utils.py -------------------------------------------------------------------------------- /gtm_gear/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/variable.py -------------------------------------------------------------------------------- /gtm_gear/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/version.py -------------------------------------------------------------------------------- /gtm_gear/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/gtm_gear/workspace.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/data/container.json -------------------------------------------------------------------------------- /tests/data/ga3_migration_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/data/ga3_migration_container.json -------------------------------------------------------------------------------- /tests/entity_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/entity_test.py -------------------------------------------------------------------------------- /tests/helpers/request_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/helpers/request_builder.py -------------------------------------------------------------------------------- /tests/helpers/request_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/helpers/request_config.py -------------------------------------------------------------------------------- /tests/helpers/request_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemKorneevGA/gtm-gear/HEAD/tests/helpers/request_mock.py --------------------------------------------------------------------------------