Comparing version 1.54.0 to 1.54.1
@@ -258,7 +258,8 @@ var Util = require('util'); | ||
//SendATS same (altSubject) | ||
BaseService.addMethod(KakaoService.prototype, 'sendATS_same', function (CorpNum, templateCode, snd, content, altSubject, altContent, altSendType, sndDT, msgs, UserID, requestNum, success, error) { | ||
this.sendATS_same(CorpNum, templateCode, snd, content, altSubject, altContent, altSendType, sndDT, msgs, UserID, requestNum, null, success, error) | ||
//SendATS same (btns) | ||
BaseService.addMethod(KakaoService.prototype, 'sendATS_same', function (CorpNum, templateCode, snd, content, altContent, altSendType, sndDT, msgs, UserID, requestNum, btns, success, error) { | ||
this.sendATS_same(CorpNum, templateCode, snd, content, null, altContent, altSendType, sndDT, msgs, UserID, requestNum, btns, success, error) | ||
}); | ||
//SendATS same (altSubject) | ||
BaseService.addMethod(KakaoService.prototype, 'sendATS_same', function (CorpNum, templateCode, snd, content, altSubject, altContent, altSendType, sndDT, msgs, UserID, requestNum, btns, success, error) { | ||
@@ -370,9 +371,9 @@ if (!CorpNum || 0 === CorpNum.length) { | ||
//SendFTS multi | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_multi', function (CropNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, success, error) { | ||
this.sendFTS_multi(CropNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, "", "", success, error); | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_multi', function (CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, success, error) { | ||
this.sendFTS_multi(CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, "", "", success, error); | ||
}); | ||
//SendFTS multi (UserID) | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_multi', function (CropNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, UserID, success, error) { | ||
this.sendFTS_multi(CropNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, UserID, "", success, error); | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_multi', function (CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, UserID, success, error) { | ||
this.sendFTS_multi(CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, msgs, btns, UserID, "", success, error); | ||
}); | ||
@@ -386,9 +387,9 @@ | ||
//SendFTS same | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_same', function (CropNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, msgs, btns, success, error) { | ||
this.sendFTS_same(CropNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, "", "", success, error); | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_same', function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, msgs, btns, success, error) { | ||
this.sendFTS_same(CorpNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, "", "", success, error); | ||
}); | ||
//SendFTS same (UserID) | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_same', function (CropNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, success, error) { | ||
this.sendFTS_same(CropNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, "", success, error); | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_same', function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, success, error) { | ||
this.sendFTS_same(CorpNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, "", success, error); | ||
}); | ||
@@ -398,3 +399,3 @@ | ||
BaseService.addMethod(KakaoService.prototype, 'sendFTS_same', function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, requestNum, success, error) { | ||
this.sendFTS_same(CropNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, requestNum, success, error); | ||
this.sendFTS_same(CorpNum, plusFriendID, snd, content, '', altContent, altSendType, sndDT, adsYN, msgs, btns, UserID, requestNum, success, error); | ||
}); | ||
@@ -480,3 +481,3 @@ | ||
//SenddFMS one | ||
//SendFMS one | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_one", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, success, error) { | ||
@@ -486,3 +487,3 @@ this.sendFMS_one(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, "", "", success, error); | ||
//SenddFMS one (UserID) | ||
//SendFMS one (UserID) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_one", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, UserID, success, error) { | ||
@@ -492,3 +493,3 @@ this.sendFMS_one(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, UserID, "", success, error); | ||
//SenddFMS one (requestNum) | ||
//SendFMS one (requestNum) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_one", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, UserID, requestNum, success, error) { | ||
@@ -498,3 +499,3 @@ this.sendFMS_one(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, UserID, requestNum, success, error); | ||
//SenddFMS one (altSubject) | ||
//SendFMS one (altSubject) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_one", function (CorpNum, plusFriendID, snd, content, altSubject, altContent, altSendType, sndDT, receiver, receiverName, adsYN, imageURL, FilePath, btns, UserID, requestNum, success, error) { | ||
@@ -512,3 +513,3 @@ var msg = { | ||
//SenddFMS multi | ||
//SendFMS multi | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_multi", function (CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, success, error) { | ||
@@ -518,3 +519,3 @@ this.sendFMS_multi(CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, "", "", success, error); | ||
//SenddFMS multi (UserID) | ||
//SendFMS multi (UserID) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_multi", function (CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, success, error) { | ||
@@ -524,3 +525,3 @@ this.sendFMS_multi(CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, "", success, error); | ||
//SenddFMS multi (requestNum) | ||
//SendFMS multi (requestNum) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_multi", function (CorpNum, plusFriendID, snd, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, requestNum, success, error) { | ||
@@ -530,3 +531,3 @@ this.sendFMS_same(CorpNum, plusFriendID, snd, '', '', '', altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, requestNum, success, error); | ||
//SenddFMS same | ||
//SendFMS same | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_same", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, success, error) { | ||
@@ -536,3 +537,3 @@ this.sendFMS_same(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, "", "", success, error); | ||
//SenddFMS same (UserID) | ||
//SendFMS same (UserID) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_same", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, success, error) { | ||
@@ -542,3 +543,3 @@ this.sendFMS_same(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, "", success, error); | ||
//SenddFMS same (requestNum) | ||
//SendFMS same (requestNum) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_same", function (CorpNum, plusFriendID, snd, content, altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, requestNum, success, error) { | ||
@@ -548,3 +549,3 @@ this.sendFMS_same(CorpNum, plusFriendID, snd, content, "", altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, "", success, error); | ||
//SenddFMS same (altSubject) | ||
//SendFMS same (altSubject) | ||
BaseService.addMethod(KakaoService.prototype, "sendFMS_same", function (CorpNum, plusFriendID, snd, content, altSubject, altContent, altSendType, sndDT, adsYN, imageURL, FilePath, msgs, btns, UserID, requestNum, success, error) { | ||
@@ -551,0 +552,0 @@ if (!CorpNum || 0 === CorpNum.length) { |
{ | ||
"name": "popbill", | ||
"version": "1.54.0", | ||
"version": "1.54.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.54.0 | ||
팝빌 node.js SDK v1.54.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
9758
415956