├── .eslintrc.js ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── bug_report.md └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── code.js ├── img ├── authorization.png ├── logo-96.png ├── metadata.png ├── preview-ui.png ├── primitive.png ├── priority.png ├── require-token.png └── structural.png ├── metadata.yaml ├── package.json ├── template.tpl └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/bug_report.md -------------------------------------------------------------------------------- /.github/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/.github/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | .eslintcache 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | ### 1.0.0 / May 4th, 2021 3 | - Initialize -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/README.md -------------------------------------------------------------------------------- /code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/code.js -------------------------------------------------------------------------------- /img/authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/authorization.png -------------------------------------------------------------------------------- /img/logo-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/logo-96.png -------------------------------------------------------------------------------- /img/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/metadata.png -------------------------------------------------------------------------------- /img/preview-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/preview-ui.png -------------------------------------------------------------------------------- /img/primitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/primitive.png -------------------------------------------------------------------------------- /img/priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/priority.png -------------------------------------------------------------------------------- /img/require-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/require-token.png -------------------------------------------------------------------------------- /img/structural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/img/structural.png -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/metadata.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/package.json -------------------------------------------------------------------------------- /template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/template.tpl -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/server-to-server-gtm-client/HEAD/yarn.lock --------------------------------------------------------------------------------