Comparing version 1.56.1 to 1.57.0
@@ -677,2 +677,21 @@ var Util = require('util'); | ||
BaseService.addMethod(MessageService.prototype, 'checkAutoDenyNumber', function (CorpNum, success, error) { | ||
this.checkAutoDenyNumber(CorpNum, '', success, error); | ||
}); | ||
BaseService.addMethod(MessageService.prototype, 'checkAutoDenyNumber', function (CorpNum, UserID, success, error) { | ||
this._executeAction({ | ||
uri: '/Message/AutoDenyNumberInfo', | ||
CorpNum: CorpNum, | ||
UserID: UserID, | ||
Method: 'GET', | ||
success: function (response) { | ||
if (success) success(response); | ||
}, | ||
error: error | ||
}); | ||
}); | ||
BaseService.addMethod(MessageService.prototype, 'getStates', function (CorpNum, ReciptNumList, success, error) { | ||
@@ -679,0 +698,0 @@ this.getStates(CorpNum, ReciptNumList, "", success, error); |
@@ -304,2 +304,9 @@ var popbill = require('./'); | ||
console.log(error); | ||
}); | ||
}); | ||
messageService.checkAutoDenyNumber('0000000001', | ||
function(response){ | ||
console.log(response); | ||
},function(error){ | ||
console.log(error); | ||
}); |
{ | ||
"name": "popbill", | ||
"version": "1.56.1", | ||
"description": "Popbill API SDK for node. see www.popbill.com", | ||
"author": "Kim Seongjun <pallet027@gmail.com>", | ||
"contributors": [ | ||
{ | ||
"name": "Kim Seongjun", | ||
"email": "pallet027@gmail.com" | ||
}, | ||
{ | ||
"name": "JeongYohan", | ||
"email": "code@linkhubcorp.com" | ||
} | ||
], | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">= 0.10.0" | ||
"name": "popbill", | ||
"version": "1.57.0", | ||
"description": "Popbill API SDK for node. see www.popbill.com", | ||
"author": "Kim Seongjun <pallet027@gmail.com>", | ||
"contributors": [ | ||
{ | ||
"name": "Kim Seongjun", | ||
"email": "pallet027@gmail.com" | ||
}, | ||
"dependencies": { | ||
"linkhub": "^1.7.0", | ||
"sync-request": "^2.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/linkhub-sdk/node-popbill.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/linkhub-sdk/node-popbill/issues" | ||
}, | ||
"keywords": [ | ||
"popbill", | ||
"taxinvoice", | ||
"cashbill", | ||
"statement", | ||
"closedown", | ||
"bizinfocheck", | ||
"hometax", | ||
"accountcheck", | ||
"SMS", | ||
"KakaoTalk", | ||
"FAX", | ||
"api", | ||
"sdk" | ||
], | ||
"preferGlobal": true, | ||
"subdomain": "popbill", | ||
"license": "MIT" | ||
{ | ||
"name": "JeongYohan", | ||
"email": "code@linkhubcorp.com" | ||
} | ||
], | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">= 0.10.0" | ||
}, | ||
"dependencies": { | ||
"linkhub": "^1.7.0", | ||
"sync-request": "^2.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/linkhub-sdk/node-popbill.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/linkhub-sdk/node-popbill/issues" | ||
}, | ||
"keywords": [ | ||
"popbill", | ||
"taxinvoice", | ||
"cashbill", | ||
"statement", | ||
"closedown", | ||
"bizinfocheck", | ||
"hometax", | ||
"accountcheck", | ||
"SMS", | ||
"KakaoTalk", | ||
"FAX", | ||
"api", | ||
"sdk" | ||
], | ||
"preferGlobal": true, | ||
"subdomain": "popbill", | ||
"license": "MIT" | ||
} | ||
# node-popbill | ||
팝빌 node.js SDK v1.56.1 | ||
팝빌 node.js SDK v1.57.0 | ||
@@ -4,0 +4,0 @@ ## Install |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
422650
9949