gocardless-nodejs icon indicating copy to clipboard operation
gocardless-nodejs copied to clipboard

GoCardless Node.js client

Results 29 gocardless-nodejs issues
Sort by recently updated
recently updated
newest added

Since release 3.0.0 all fields on Payment became optional. What is the rational for this? How are these types should now be used? Should we be using not-null assertion? According...

In the docs it states this is a number

Hello 👋 We use TypeScript throughout our projects. Typically we use ES modules syntax (`import`/`export`) to load our modules, this then gets boiled down to CommonJS style (`require`) after the...

Hey team, I have noticed that a payout's amount using cURL is of type integer (in line with your [Java SDK](https://github.com/gocardless/gocardless-pro-java/blob/master/src/main/java/com/gocardless/resources/Payout.java#L19)), yet for some reason Node version of the SDK...

Trying to use this API on an Angular 12 app, following the instructions. Importing the module as follows: ``` const gocardless = require('gocardless-nodejs'); const constants = require("gocardless-nodejs/constants"); ``` Then trying...

Hello 👋 When using this module as per the readme instructions, we don't get type definitions for the core client object. It comes back as `any` type. This then has...

Full error output is below. This comes from any call that I've tried, e.g. ```await client.customers.find('CUXXXXX')``` ``` GotError: connect ECONNREFUSED 127.0.0.1:443 at onError (/Users/laurie/wrisk/runbook/.yarn/cache/got-npm-10.7.0-9215e39e3e-e233703fcf.zip/node_modules/got/dist/source/request-as-event-emitter.js:140:29) at handleRequest (/Users/laurie/wrisk/runbook/.yarn/cache/got-npm-10.7.0-9215e39e3e-e233703fcf.zip/node_modules/got/dist/source/request-as-event-emitter.js:173:17) at processTicksAndRejections (internal/process/task_queues.js:95:5)...

Hello, When I fill the `description` attribute of the create method of redirectFlows, it is ignored. It used to worked well before, but recently this field has stopped to be...

InvalidStateError: Customer has not yet completed the Billing Request Flow payment pages ---- The payment method creation seems to be flaky. We did receive the `redirect_flow_id` from the URL but...

Moving to V3, everything is optional by default: https://github.com/gocardless/gocardless-nodejs/compare/v2.4.0...v3.0.0#files_bucket Is there a reason for that? I feel like `status` , `amount`, `currency` perhaps? Can a big rework of typing be...