├── .gitignore ├── LICENSE.md ├── README.md ├── lib └── index.js ├── package.json ├── s-module.json └── webhook ├── event.json ├── handler.js └── s-function.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/package.json -------------------------------------------------------------------------------- /s-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/s-module.json -------------------------------------------------------------------------------- /webhook/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "webhook": {} 3 | } -------------------------------------------------------------------------------- /webhook/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/webhook/handler.js -------------------------------------------------------------------------------- /webhook/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahefnawy/serverless-stripe-webhook/HEAD/webhook/s-function.json --------------------------------------------------------------------------------