Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
13 changes: 12 additions & 1 deletion lib/sbcsinformation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ function reportsSbcsHtml(data) {
return bisRequest('reports/sbcs/html', data);
}

/**
* Premier Reports SBCS scores
*
* @param {object} data Request Object
* @returns {Promise} Request as a promise
*/
function reportsSbcsscores(data) {
return bisRequest('reports/sbcsscores', data);
}

/**
* Business API Request
*
Expand Down Expand Up @@ -118,5 +128,6 @@ module.exports.us = {
search: search,
headers: headers,
aggregates: aggregates,
reportsSbcsHtml: reportsSbcsHtml
reportsSbcsHtml: reportsSbcsHtml,
reportsSbcsscores: reportsSbcsscores
};
79 changes: 42 additions & 37 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,43 @@
{
"name": "experian-node",
"version": "1.0.0",
"description": "Experian Node.js Library",
"main": "lib/experian.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"bluebird": "3.5.0",
"request": "2.81.0"
},
"devDependencies": {
"chai": "~4.1.2",
"chai-as-promised": "^7.1.1",
"jscs": "^2.3.5",
"mocha": "~3.5.3"
},
"scripts": {
"mocha": "mocha",
"test": "mocha ./test/ --timeout 120000"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:experianplc/experian-node.git"
},
"keywords": [
"experian",
"business",
"data",
"api",
"credit",
"score"
],
"author": "Experian <support@experian.com> (https://developer.experian.com)",
"license": "MIT"
}
"name": "experian-node",
"version": "1.0.1",
"description": "Experian Node.js Library",
"main": "lib/experian.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"dependencies": {
"bluebird": "3.5.0",
"request": "2.81.0"
},
"devDependencies": {
"chai": "~4.1.2",
"chai-as-promised": "^7.1.1",
"jscs": "^2.3.5",
"mocha": "~3.5.3"
},
"scripts": {
"mocha": "mocha",
"test": "mocha ./test/ --timeout 120000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/experianplc/experian-node.git"
},
"keywords": [
"experian",
"business",
"data",
"api",
"credit",
"score"
],
"author": "Experian <support@experian.com> (https://developer.experian.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/experianplc/experian-node/issues"
},
"homepage": "https://github.com/experianplc/experian-node#readme"
}