diff --git a/package.json b/package.json index a826d16..13286a2 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://github.com/TeleSign/node_telesign_enterprise" }, - "main": "src/Telesign.js", + "main": "src/TeleSign.js", "dependencies": { "telesignsdk": "2.0.0" }, diff --git a/src/TeleSign.js b/src/TeleSign.js index ad75d64..49edead 100644 --- a/src/TeleSign.js +++ b/src/TeleSign.js @@ -1,6 +1,6 @@ const Verify = require('./Verify.js'); const PhoneID = require('./PhoneID.js'); -const TeleBureau = require('./TeleBureau.js'); +const TeleBureau = require('./Telebureau.js'); module.exports = class TeleSign { constructor(customerId, @@ -13,4 +13,4 @@ module.exports = class TeleSign { this.phoneid = new PhoneID(customerId, apiKey, restEndpoint, timeout, useragent); this.telebureau = new TeleBureau(customerId, apiKey, restEndpoint, timeout, useragent); } -}; \ No newline at end of file +};