├── .codebeatignore ├── Charge Customer └── index.js ├── Create Customer └── index.js ├── LICENSE ├── README.md ├── Screenshots ├── GCF-Stripe.png └── gcf-menu.png ├── Source Management ├── Add Payment Source │ └── index.js └── Update Payment Source │ └── index.js └── Subscriptions ├── Cancel Subscription └── index.js └── Subscribe Customer └── index.js /.codebeatignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/.codebeatignore -------------------------------------------------------------------------------- /Charge Customer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Charge Customer/index.js -------------------------------------------------------------------------------- /Create Customer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Create Customer/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/GCF-Stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Screenshots/GCF-Stripe.png -------------------------------------------------------------------------------- /Screenshots/gcf-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Screenshots/gcf-menu.png -------------------------------------------------------------------------------- /Source Management/Add Payment Source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Source Management/Add Payment Source/index.js -------------------------------------------------------------------------------- /Source Management/Update Payment Source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Source Management/Update Payment Source/index.js -------------------------------------------------------------------------------- /Subscriptions/Cancel Subscription/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Subscriptions/Cancel Subscription/index.js -------------------------------------------------------------------------------- /Subscriptions/Subscribe Customer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldaulton/GCF-Stripe/HEAD/Subscriptions/Subscribe Customer/index.js --------------------------------------------------------------------------------