├── LICENSE ├── README.md ├── docs ├── code-of-conduct.md └── contributing.md ├── features ├── dataDictionary.js ├── eventTags.js ├── paramsAndUserProps.js └── variableUsage.js ├── shared ├── menu.js ├── rangeData.js └── shared.js └── utils ├── checks.js ├── gtmAPIWrapper.js ├── gtmApiWrapper.js ├── gtmVariables.js └── gtmWorkspace.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/README.md -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/docs/code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /features/dataDictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/features/dataDictionary.js -------------------------------------------------------------------------------- /features/eventTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/features/eventTags.js -------------------------------------------------------------------------------- /features/paramsAndUserProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/features/paramsAndUserProps.js -------------------------------------------------------------------------------- /features/variableUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/features/variableUsage.js -------------------------------------------------------------------------------- /shared/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/shared/menu.js -------------------------------------------------------------------------------- /shared/rangeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/shared/rangeData.js -------------------------------------------------------------------------------- /shared/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/shared/shared.js -------------------------------------------------------------------------------- /utils/checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/utils/checks.js -------------------------------------------------------------------------------- /utils/gtmAPIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/utils/gtmAPIWrapper.js -------------------------------------------------------------------------------- /utils/gtmApiWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/utils/gtmApiWrapper.js -------------------------------------------------------------------------------- /utils/gtmVariables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/utils/gtmVariables.js -------------------------------------------------------------------------------- /utils/gtmWorkspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/ga4-gtm-utilities/HEAD/utils/gtmWorkspace.js --------------------------------------------------------------------------------