Comparing version 1.3.0 to 1.3.1
@@ -56,11 +56,11 @@ var popbill = require('./'); | ||
receiveName : '수신자성명', | ||
receiveNum : '111222333', | ||
receiveNum : '07043042991', | ||
}, | ||
{ | ||
receiveName : '수신자성명', | ||
receiveNum : '111222333', | ||
receiveNum : '07043042991', | ||
}, | ||
] | ||
faxService.sendFax('1234567890','07075103710','111222333', '수신자명', FilePaths, '', | ||
faxService.sendFax('1234567890','07043042991','07043042991', '수신자명', FilePaths, '', '발신자명', true, | ||
function(receiptNum){ | ||
@@ -70,3 +70,3 @@ console.log('receiptNum is : ' + receiptNum); | ||
console.log(error); | ||
}); | ||
}); | ||
@@ -73,0 +73,0 @@ faxService.sendFax('1234567890','07075103710',Receivers, FilePaths, '', |
@@ -40,2 +40,15 @@ var Util = require('util'); | ||
BaseService.addMethod(FaxService.prototype, "sendFax", function(CorpNum, Sender, Receiver, ReceiverName, FilePaths, ReserveDT, SenderName, AdsYN, success, error){ | ||
var options = { | ||
SenderNum : Sender, | ||
SenderName : SenderName, | ||
Receiver : Receiver, | ||
ReceiverName : ReceiverName, | ||
FilePaths : FilePaths, | ||
ReserveDT : ReserveDT, | ||
AdsYN : AdsYN, | ||
} | ||
this.sendFax(CorpNum, options, success, error); | ||
}); | ||
BaseService.addMethod(FaxService.prototype, "sendFax", function(CorpNum, Sender, Receiver, ReceiverName, FilePaths, ReserveDT, SenderName, success, error){ | ||
@@ -90,2 +103,3 @@ var options = { | ||
sndDT : options.ReserveDT, | ||
adsYN : options.AdsYN, | ||
rcvs : [] | ||
@@ -92,0 +106,0 @@ }; |
{ | ||
"name": "popbill", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Popbill API SDK for node. see www.popbill.com", | ||
@@ -5,0 +5,0 @@ "author": "Kim Seongjun <pallet027@gmail.com>", |
# node-popbill | ||
팝빌 node.js SDK v1.3.0 | ||
팝빌 node.js SDK v1.3.1 | ||
@@ -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
227109
5604