6.0.0 • Published 7 months ago

chargehound v6.0.0

Weekly downloads
33
License
MIT
Repository
github
Last release
7 months ago

Chargehound node.js bindings

Build Status npm version

Installation

npm install chargehound

Usage

Every resource is accessed via the chargehound instance:

var chargehound = require('chargehound')('{ YOUR_API_KEY }');

Requests

Every resource method accepts an optional callback as the last argument:

chargehound.Disputes.submit('dp_123', {fields: {customer_name: 'Susie'}},
  function (err, dispute) {
    err; // null if no error occurred
    dispute; // the submitted dispute object
  }
);

Additionally, every resource method returns a promise, so you don't have to use the regular callback. E.g.

chargehound.Disputes.submit('dp_123', {fields: {customer_name: 'Susie'}})
  .then(function (dispute) {
    // Success
  .catch(function (err) {
    // Deal with an error
  });

Responses

Responses from the API are automatically parsed from JSON and returned as JavaScript objects.

Responses also include the HTTP status code on the response object as the status field.

chargehound.Disputes.retrieve('dp_123').then(dispute => {
  console.log(dispute.state)
  // 'needs_response'
  console.log(dispute.response.status)
  // 200
});

Documentation

Disputes

Errors

Development

To build and install from the latest source:

$ git clone git@github.com:chargehound/chargehound-node.git
$ npm install

The source code is written in ES6. For development you will need Node.js >= v8.

Run the tests using npm:

$ npm test

Deployment

To deploy a new version of the SDK, perform the following steps:

  1. Update the CHANGELOG to describe what feature have been added.
  2. Bump the version number in package.json
  3. Rebuild and deploy the package with: npm publish
  4. Confirm the new package version is available at https://www.npmjs.com/package/chargehound
6.0.0

7 months ago

5.1.0

3 years ago

5.0.0

5 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.2.0

6 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.0

8 years ago

1.4.0

8 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago