@paystack/checkout-js 1.52.0-beta.2 → 1.52.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/checkout.js +3 -0
- package/es/checkout.js +3 -0
- package/lib/checkout.js +3 -0
- package/package.json +1 -1
package/dist/checkout.js
CHANGED
|
@@ -20352,6 +20352,7 @@ var Paystack = (function (exports) {
|
|
|
20352
20352
|
id = payload.id,
|
|
20353
20353
|
deviceFingerprint = payload.deviceFingerprint,
|
|
20354
20354
|
channels = payload.channels;
|
|
20355
|
+
console.log('buildMobileMoneyParams channels', channels);
|
|
20355
20356
|
return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
|
|
20356
20357
|
provider: provider,
|
|
20357
20358
|
registrationToken: registrationToken,
|
|
@@ -20415,6 +20416,7 @@ var Paystack = (function (exports) {
|
|
|
20415
20416
|
channels = payload.channels;
|
|
20416
20417
|
return validate$1(phoneNumber).then(function () {
|
|
20417
20418
|
_this3.logMobileMoneyActions(payload);
|
|
20419
|
+
console.log('authenticateMobileMoney channels', channels);
|
|
20418
20420
|
var params = buildMobileMoneyParams({
|
|
20419
20421
|
provider: provider,
|
|
20420
20422
|
registrationToken: registrationToken,
|
|
@@ -20423,6 +20425,7 @@ var Paystack = (function (exports) {
|
|
|
20423
20425
|
id: _this3.id,
|
|
20424
20426
|
deviceFingerprint: _this3.deviceFingerprint
|
|
20425
20427
|
});
|
|
20428
|
+
console.log('authenticateMobileMoney params', params);
|
|
20426
20429
|
return MobileMoneyAPI.charge(params).then(function (response) {
|
|
20427
20430
|
if (response.status === 'success') {
|
|
20428
20431
|
_this3.mobileMoney = response;
|
package/es/checkout.js
CHANGED
|
@@ -20349,6 +20349,7 @@ function buildMobileMoneyParams(payload) {
|
|
|
20349
20349
|
id = payload.id,
|
|
20350
20350
|
deviceFingerprint = payload.deviceFingerprint,
|
|
20351
20351
|
channels = payload.channels;
|
|
20352
|
+
console.log('buildMobileMoneyParams channels', channels);
|
|
20352
20353
|
return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
|
|
20353
20354
|
provider: provider,
|
|
20354
20355
|
registrationToken: registrationToken,
|
|
@@ -20412,6 +20413,7 @@ var MobileMoneyCharge = {
|
|
|
20412
20413
|
channels = payload.channels;
|
|
20413
20414
|
return validate$1(phoneNumber).then(function () {
|
|
20414
20415
|
_this3.logMobileMoneyActions(payload);
|
|
20416
|
+
console.log('authenticateMobileMoney channels', channels);
|
|
20415
20417
|
var params = buildMobileMoneyParams({
|
|
20416
20418
|
provider: provider,
|
|
20417
20419
|
registrationToken: registrationToken,
|
|
@@ -20420,6 +20422,7 @@ var MobileMoneyCharge = {
|
|
|
20420
20422
|
id: _this3.id,
|
|
20421
20423
|
deviceFingerprint: _this3.deviceFingerprint
|
|
20422
20424
|
});
|
|
20425
|
+
console.log('authenticateMobileMoney params', params);
|
|
20423
20426
|
return MobileMoneyAPI.charge(params).then(function (response) {
|
|
20424
20427
|
if (response.status === 'success') {
|
|
20425
20428
|
_this3.mobileMoney = response;
|
package/lib/checkout.js
CHANGED
|
@@ -20353,6 +20353,7 @@ function buildMobileMoneyParams(payload) {
|
|
|
20353
20353
|
id = payload.id,
|
|
20354
20354
|
deviceFingerprint = payload.deviceFingerprint,
|
|
20355
20355
|
channels = payload.channels;
|
|
20356
|
+
console.log('buildMobileMoneyParams channels', channels);
|
|
20356
20357
|
return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
|
|
20357
20358
|
provider: provider,
|
|
20358
20359
|
registrationToken: registrationToken,
|
|
@@ -20416,6 +20417,7 @@ var MobileMoneyCharge = {
|
|
|
20416
20417
|
channels = payload.channels;
|
|
20417
20418
|
return validate$1(phoneNumber).then(function () {
|
|
20418
20419
|
_this3.logMobileMoneyActions(payload);
|
|
20420
|
+
console.log('authenticateMobileMoney channels', channels);
|
|
20419
20421
|
var params = buildMobileMoneyParams({
|
|
20420
20422
|
provider: provider,
|
|
20421
20423
|
registrationToken: registrationToken,
|
|
@@ -20424,6 +20426,7 @@ var MobileMoneyCharge = {
|
|
|
20424
20426
|
id: _this3.id,
|
|
20425
20427
|
deviceFingerprint: _this3.deviceFingerprint
|
|
20426
20428
|
});
|
|
20429
|
+
console.log('authenticateMobileMoney params', params);
|
|
20427
20430
|
return MobileMoneyAPI.charge(params).then(function (response) {
|
|
20428
20431
|
if (response.status === 'success') {
|
|
20429
20432
|
_this3.mobileMoney = response;
|