├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── contributing.md ├── docs ├── README.md ├── img │ ├── architecture-diagram-google-ads-floodlight.png │ ├── architecture-diagram-google-analytics-apps.png │ ├── architecture-diagram-google-analytics.png │ ├── auth-firestore-iam.png │ ├── auth-iam-permissions.png │ ├── auth-sgtm-service-account.png │ ├── demo-apps.gif │ ├── demo.gif │ ├── firestore-with-return-rate.png │ ├── gtm-floodlight-tag.png │ ├── gtm-google-ads-tag.png │ ├── gtm-google-analytics-tag-apps.png │ ├── gtm-google-analytics-tag.png │ ├── gtm-template-permissions.png │ ├── image1.png │ ├── image1_apps.png │ ├── image2-apps.png │ ├── image2.png │ ├── image3-apps.png │ ├── image3.png │ ├── image4-apps.png │ ├── image4.png │ ├── image5-apps.png │ ├── image5.png │ └── image6.png └── mobile-apps.md └── src └── gtm └── firestore-value-template.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac 2 | .DS_Store 3 | 4 | # IDE Directories 5 | .vscode/ 6 | .idea/ 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/img/architecture-diagram-google-ads-floodlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/architecture-diagram-google-ads-floodlight.png -------------------------------------------------------------------------------- /docs/img/architecture-diagram-google-analytics-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/architecture-diagram-google-analytics-apps.png -------------------------------------------------------------------------------- /docs/img/architecture-diagram-google-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/architecture-diagram-google-analytics.png -------------------------------------------------------------------------------- /docs/img/auth-firestore-iam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/auth-firestore-iam.png -------------------------------------------------------------------------------- /docs/img/auth-iam-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/auth-iam-permissions.png -------------------------------------------------------------------------------- /docs/img/auth-sgtm-service-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/auth-sgtm-service-account.png -------------------------------------------------------------------------------- /docs/img/demo-apps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/demo-apps.gif -------------------------------------------------------------------------------- /docs/img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/demo.gif -------------------------------------------------------------------------------- /docs/img/firestore-with-return-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/firestore-with-return-rate.png -------------------------------------------------------------------------------- /docs/img/gtm-floodlight-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/gtm-floodlight-tag.png -------------------------------------------------------------------------------- /docs/img/gtm-google-ads-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/gtm-google-ads-tag.png -------------------------------------------------------------------------------- /docs/img/gtm-google-analytics-tag-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/gtm-google-analytics-tag-apps.png -------------------------------------------------------------------------------- /docs/img/gtm-google-analytics-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/gtm-google-analytics-tag.png -------------------------------------------------------------------------------- /docs/img/gtm-template-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/gtm-template-permissions.png -------------------------------------------------------------------------------- /docs/img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image1.png -------------------------------------------------------------------------------- /docs/img/image1_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image1_apps.png -------------------------------------------------------------------------------- /docs/img/image2-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image2-apps.png -------------------------------------------------------------------------------- /docs/img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image2.png -------------------------------------------------------------------------------- /docs/img/image3-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image3-apps.png -------------------------------------------------------------------------------- /docs/img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image3.png -------------------------------------------------------------------------------- /docs/img/image4-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image4-apps.png -------------------------------------------------------------------------------- /docs/img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image4.png -------------------------------------------------------------------------------- /docs/img/image5-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image5-apps.png -------------------------------------------------------------------------------- /docs/img/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image5.png -------------------------------------------------------------------------------- /docs/img/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/img/image6.png -------------------------------------------------------------------------------- /docs/mobile-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/docs/mobile-apps.md -------------------------------------------------------------------------------- /src/gtm/firestore-value-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-marketing-solutions/gps_soteria/HEAD/src/gtm/firestore-value-template.tpl --------------------------------------------------------------------------------