Skip to content

Commit 508c097

Browse files
Merge pull request #2 from humanstupidity/develop
Develop
2 parents 29fe21d + 69045d6 commit 508c097

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

AdvertisingClient.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ const Regions = {
2929

3030
module.exports = class AdvertisingClient {
3131

32-
tokenUrl;
33-
3432
constructor(options) {
3533

3634
this.options = options

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/**
22
* Module dependencies.
33
*/
4-
var Strategy = require('./strategy');
4+
var AdvertisingClient = require('./AdvertisingClient');
55

66

77
/**
88
* Expose `Strategy` directly from package.
99
*/
10-
exports = module.exports = Strategy;
10+
exports = module.exports = AdvertisingClient;
1111

1212
/**
1313
* Expose constructors.
1414
*/
15-
exports.Strategy = Strategy;
15+
exports.Class = AdvertisingClient;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "amazon-advertising-api",
3-
"version": "1.0.0",
2+
"name": "amz-advertising-api",
3+
"version": "1.0.1",
44
"description": "This class helps you interfacing the Amazon Advertising API.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)