├── .env.example ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── verify-build.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── eslint.config.cjs ├── package.json ├── src ├── __tests__ │ ├── flow.invoices.test.ts │ ├── flow.merchant.test.ts │ ├── flowCoupons.test.ts │ ├── flowCustomers.test.ts │ ├── flowPayments.test.ts │ └── flowPlans.test.ts ├── clients │ ├── flow.coupons.ts │ ├── flow.customers.ts │ ├── flow.invoices.ts │ ├── flow.merchants.ts │ ├── flow.payments.ts │ ├── flow.plans.ts │ ├── flow.refunds.ts │ ├── flow.settlement.ts │ ├── flow.subscriptions.ts │ ├── flow.subscriptionsItems.ts │ └── flow.ts ├── constants │ └── flow.constants.ts ├── errors.ts ├── index.ts ├── jest.config.cjs ├── jest.setup.ts ├── types │ ├── flow.common.ts │ ├── flow.payments.ts │ └── flow.ts └── utils │ └── flow.utils.ts ├── tsconfig.json └── typedoc.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/verify-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.github/workflows/verify-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/flow.invoices.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flow.invoices.test.ts -------------------------------------------------------------------------------- /src/__tests__/flow.merchant.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flow.merchant.test.ts -------------------------------------------------------------------------------- /src/__tests__/flowCoupons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flowCoupons.test.ts -------------------------------------------------------------------------------- /src/__tests__/flowCustomers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flowCustomers.test.ts -------------------------------------------------------------------------------- /src/__tests__/flowPayments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flowPayments.test.ts -------------------------------------------------------------------------------- /src/__tests__/flowPlans.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/__tests__/flowPlans.test.ts -------------------------------------------------------------------------------- /src/clients/flow.coupons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.coupons.ts -------------------------------------------------------------------------------- /src/clients/flow.customers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.customers.ts -------------------------------------------------------------------------------- /src/clients/flow.invoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.invoices.ts -------------------------------------------------------------------------------- /src/clients/flow.merchants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.merchants.ts -------------------------------------------------------------------------------- /src/clients/flow.payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.payments.ts -------------------------------------------------------------------------------- /src/clients/flow.plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.plans.ts -------------------------------------------------------------------------------- /src/clients/flow.refunds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.refunds.ts -------------------------------------------------------------------------------- /src/clients/flow.settlement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.settlement.ts -------------------------------------------------------------------------------- /src/clients/flow.subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.subscriptions.ts -------------------------------------------------------------------------------- /src/clients/flow.subscriptionsItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.subscriptionsItems.ts -------------------------------------------------------------------------------- /src/clients/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/clients/flow.ts -------------------------------------------------------------------------------- /src/constants/flow.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/constants/flow.constants.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | // src/index.ts 2 | export { default as Flow } from './clients/flow'; 3 | -------------------------------------------------------------------------------- /src/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/jest.config.cjs -------------------------------------------------------------------------------- /src/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/jest.setup.ts -------------------------------------------------------------------------------- /src/types/flow.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/types/flow.common.ts -------------------------------------------------------------------------------- /src/types/flow.payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/types/flow.payments.ts -------------------------------------------------------------------------------- /src/types/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/types/flow.ts -------------------------------------------------------------------------------- /src/utils/flow.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/src/utils/flow.utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicotordev/flowcl-pagos/HEAD/typedoc.json --------------------------------------------------------------------------------