├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions-and-help.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── docs └── README.md ├── manifest.json ├── node ├── connector.ts ├── flow.ts ├── index.ts ├── package.json ├── tsconfig.json ├── utils.ts └── yarn.lock ├── package.json ├── paymentProvider └── configuration.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | *.snap.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions-and-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.github/ISSUE_TEMPLATE/questions-and-help.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@vtex/prettier-config" -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/docs/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/manifest.json -------------------------------------------------------------------------------- /node/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/connector.ts -------------------------------------------------------------------------------- /node/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/flow.ts -------------------------------------------------------------------------------- /node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/index.ts -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/package.json -------------------------------------------------------------------------------- /node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/tsconfig.json -------------------------------------------------------------------------------- /node/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/utils.ts -------------------------------------------------------------------------------- /node/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/node/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/package.json -------------------------------------------------------------------------------- /paymentProvider/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/paymentProvider/configuration.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtex-apps/payment-provider-example/HEAD/yarn.lock --------------------------------------------------------------------------------