├── .circleci └── config.yml ├── .github ├── dependabot.yml └── workflows │ ├── run-conventional-commits-check.yml │ └── run-danger-yarn.yml ├── .gitignore ├── .npmignore ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── apple-developer-merchantid-domain-association.txt ├── constants.ts ├── jest.config.js ├── package.json ├── test.ts ├── tsconfig.json ├── worker.ts ├── wrangler.toml └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/run-conventional-commits-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.github/workflows/run-conventional-commits-check.yml -------------------------------------------------------------------------------- /.github/workflows/run-danger-yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.github/workflows/run-danger-yarn.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/.npmignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.9.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/README.md -------------------------------------------------------------------------------- /apple-developer-merchantid-domain-association.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/apple-developer-merchantid-domain-association.txt -------------------------------------------------------------------------------- /constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/constants.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/worker.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/wrangler.toml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsy/artsy-eigen-web-association/HEAD/yarn.lock --------------------------------------------------------------------------------