1.1.7 • Published 5 years ago

brewery-gcash v1.1.7

Weekly downloads
18
License
ISC
Repository
-
Last release
5 years ago

Brewery Gcash Client

Promise based wrapper client for Gcash.

Install

npm i brewery-gcash

Usage

The methods return promises which are compatible to be used on async/await functions. The default configuration settings can be overridden on the constructor of BreweryGcash.

const { BreweryGcash } = require('brewery-gcash');
const breweryGcashClient = new BreweryGcash({
  clientId: 'id',
  clientSecret: 'secret',
  url: 'http://url.com',
});

breweryGcashClient.createOrder({
  ...restOfParameters,
})
  .then((data) => {
    console.log(data);
  })
  .catch(error) => {
    console.log(error);
  });
1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago