2 Commits

Author SHA1 Message Date
fe62ecd0e1 1.0.8 2020-08-23 15:35:28 +00:00
4972b135d5 fix(core): update 2020-08-23 15:35:28 +00:00
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@mojoio/paypal",
"version": "1.0.7",
"version": "1.0.8",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "@mojoio/paypal",
"private": false,
"version": "1.0.7",
"version": "1.0.8",
"description": "mojoio PayPal API abstraction",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@@ -5,7 +5,7 @@ export interface IPayPalOptions {
clientSecret: string;
}
export class PayPal {
export class PayPalAccount {
public apiBaseUrl: string = 'https://api.paypal.com'
public options: IPayPalOptions;