@paydock/client-sdk 1.116.0-beta → 1.116.2
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/README.md +0 -39
- package/bundles/index.cjs +20 -86
- package/bundles/index.mjs +20 -86
- package/bundles/types/checkout/layout-widgets/payment-methods.d.ts +0 -1
- package/bundles/types/checkout/layout-widgets/payment-methods.d.ts.map +1 -1
- package/bundles/types/secure-remote-commerce/index.d.ts +0 -1
- package/bundles/types/secure-remote-commerce/index.d.ts.map +1 -1
- package/bundles/types/secure-remote-commerce/interfaces.d.ts +1 -5
- package/bundles/types/secure-remote-commerce/interfaces.d.ts.map +1 -1
- package/bundles/types/secure-remote-commerce/providers/mastercard-src/mastercard-src.d.ts.map +1 -1
- package/bundles/widget.umd.js +20 -86
- package/bundles/widget.umd.min.js +6 -6
- package/docs/click-to-pay-examples.md +0 -36
- package/docs/click-to-pay.md +0 -3
- package/package.json +1 -1
- package/slate.md +0 -36
package/README.md
CHANGED
|
@@ -7629,42 +7629,6 @@ src.setStyles({
|
|
|
7629
7629
|
});
|
|
7630
7630
|
```
|
|
7631
7631
|
|
|
7632
|
-
## Recognition token
|
|
7633
|
-
|
|
7634
|
-
In order to store user information for further payments, click to pay provides a recognition token that is used to load user information.
|
|
7635
|
-
If you already have a recognitionToken stored, you can use it in meta to load the user information.
|
|
7636
|
-
|
|
7637
|
-
### Storage suggestions
|
|
7638
|
-
Merchant can store the tokens by dropping the token as a 1st party cookie in the browser, and must ensure to manage all the security aspects around dropping/storing the cookie by following the security standards:
|
|
7639
|
-
|
|
7640
|
-
- `Expiration Date=` cookie should be set to expire at a max 180 days
|
|
7641
|
-
- `Secure` flag
|
|
7642
|
-
- `httpOnly` flag
|
|
7643
|
-
- `sameSite=` strict
|
|
7644
|
-
- `Value=` recognition token JWT
|
|
7645
|
-
|
|
7646
|
-
### Example code
|
|
7647
|
-
|
|
7648
|
-
```javascript
|
|
7649
|
-
var src = new paydock.ClickToPay(
|
|
7650
|
-
"#checkoutIframe",
|
|
7651
|
-
"service_id",
|
|
7652
|
-
"paydock_public_key",
|
|
7653
|
-
{
|
|
7654
|
-
"recognition_token": "eyJraWQiOiIy...",
|
|
7655
|
-
},
|
|
7656
|
-
);
|
|
7657
|
-
src.on('recognitionTokenRequested', (data) => {
|
|
7658
|
-
console.log('Recognition token was found: ' + data.data.recognitionToken);
|
|
7659
|
-
// Add recognition token to your store
|
|
7660
|
-
});
|
|
7661
|
-
|
|
7662
|
-
src.on('recognitionTokenDropped', () => {
|
|
7663
|
-
console.log('Recognition token was droped');
|
|
7664
|
-
// Delete recognition token from your store
|
|
7665
|
-
});
|
|
7666
|
-
```
|
|
7667
|
-
|
|
7668
7632
|
## Classes
|
|
7669
7633
|
|
|
7670
7634
|
<dl>
|
|
@@ -7745,7 +7709,6 @@ Interface of data used for the Mastercard Checkout. For further information refe
|
|
|
7745
7709
|
| [customer.phone.country_code] | <code>string</code> | Customer phone country code (example "1" for US). |
|
|
7746
7710
|
| [customer.phone.phone] | <code>string</code> | Customer phone number. |
|
|
7747
7711
|
| [unaccepted_card_type] | <code>string</code> | Used to block a specific card type. Options are 'CREDIT', 'DEBIT'. |
|
|
7748
|
-
| [recognition_token] | <code>string</code> | Used for Click to Pay to load user information and preferences. |
|
|
7749
7712
|
|
|
7750
7713
|
<a name="EventData" id="EventData" href="#EventData"> </a>
|
|
7751
7714
|
|
|
@@ -7988,8 +7951,6 @@ List of available event's name in the Click To Pay checkout lifecycle
|
|
|
7988
7951
|
| CHECKOUT_POPUP_CLOSE | <code>string</code> | <code>"checkoutPopupClose"</code> | Event sent when Click To Pay checkout flow is closed, regardless of embedded or windowed mode. |
|
|
7989
7952
|
| CHECKOUT_COMPLETED | <code>string</code> | <code>"checkoutCompleted"</code> | Event sent on successful checkout by customer. Check [data](#EventDataCheckoutCompletedData) for more information. |
|
|
7990
7953
|
| CHECKOUT_ERROR | <code>string</code> | <code>"checkoutError"</code> | Event sent on error checkout by customer. Check [data](#EventData) for more information. |
|
|
7991
|
-
| RECOGNITION_TOKEN_REQUESTED | <code>string</code> | <code>"recognitionTokenRequested"</code> | Event sent when a recognition token was found on the mastercard SDK response. |
|
|
7992
|
-
| RECOGNITION_TOKEN_DROPPED | <code>string</code> | <code>"recognitionTokenDropped"</code> | Event sent when a recognition token needs to be dropped for user be no longer remembered. |
|
|
7993
7954
|
|
|
7994
7955
|
<a name="EVENT_DATA_TYPE" id="EVENT_DATA_TYPE" href="#EVENT_DATA_TYPE"> </a>
|
|
7995
7956
|
|
package/bundles/index.cjs
CHANGED
|
@@ -891,7 +891,7 @@ SDK.headerKeys = Object.freeze({
|
|
|
891
891
|
version: 'x-sdk-version',
|
|
892
892
|
type: 'x-sdk-type'
|
|
893
893
|
});
|
|
894
|
-
SDK._version = 'v1.116.
|
|
894
|
+
SDK._version = 'v1.116.2';
|
|
895
895
|
|
|
896
896
|
/******************************************************************************
|
|
897
897
|
Copyright (c) Microsoft Corporation.
|
|
@@ -3958,8 +3958,8 @@ function createNewrelicConfig() {
|
|
|
3958
3958
|
var params = {
|
|
3959
3959
|
enabled: 'true',
|
|
3960
3960
|
accountId: '974691',
|
|
3961
|
-
agentId: '
|
|
3962
|
-
applicationId: '
|
|
3961
|
+
agentId: '1386157152',
|
|
3962
|
+
applicationId: '1386157152',
|
|
3963
3963
|
licenseKey: '4848a32285',
|
|
3964
3964
|
trustKey: '974691'
|
|
3965
3965
|
};
|
|
@@ -9107,8 +9107,6 @@ var HtmlPaymentSourceWidget = /*#__PURE__*/function (_PaymentSourceWidget) {
|
|
|
9107
9107
|
* @param {string} CHECKOUT_POPUP_CLOSE=checkoutPopupClose Event sent when Click To Pay checkout flow is closed, regardless of embedded or windowed mode.
|
|
9108
9108
|
* @param {string} CHECKOUT_COMPLETED=checkoutCompleted Event sent on successful checkout by customer. Check [data](#EventDataCheckoutCompletedData) for more information.
|
|
9109
9109
|
* @param {string} CHECKOUT_ERROR=checkoutError Event sent on error checkout by customer. Check [data](#EventData) for more information.
|
|
9110
|
-
* @param {string} RECOGNITION_TOKEN_REQUESTED=recognitionTokenRequested Event sent when a recognition token was found on the mastercard SDK response.
|
|
9111
|
-
* @param {string} RECOGNITION_TOKEN_DROPPED=recognitionTokenDropped Event sent when a recognition token needs to be dropped for user be no longer remembered.
|
|
9112
9110
|
*/
|
|
9113
9111
|
var EVENT$3;
|
|
9114
9112
|
(function (EVENT) {
|
|
@@ -9118,8 +9116,6 @@ var EVENT$3;
|
|
|
9118
9116
|
EVENT["CHECKOUT_ERROR"] = "checkoutError";
|
|
9119
9117
|
EVENT["CHECKOUT_POPUP_OPEN"] = "checkoutPopupOpen";
|
|
9120
9118
|
EVENT["CHECKOUT_POPUP_CLOSE"] = "checkoutPopupClose";
|
|
9121
|
-
EVENT["RECOGNITION_TOKEN_REQUESTED"] = "recognitionTokenRequested";
|
|
9122
|
-
EVENT["RECOGNITION_TOKEN_DROPPED"] = "recognitionTokenDropped";
|
|
9123
9119
|
})(EVENT$3 || (EVENT$3 = {}));
|
|
9124
9120
|
/**
|
|
9125
9121
|
* List of available event data types
|
|
@@ -9196,13 +9192,6 @@ var ClickToPaySRC = /*#__PURE__*/function () {
|
|
|
9196
9192
|
var data = _ref5.data;
|
|
9197
9193
|
_this.eventEmitter.emit(EVENT$3.CHECKOUT_ERROR, data);
|
|
9198
9194
|
});
|
|
9199
|
-
this.iFrameEvent.on(EVENT$3.RECOGNITION_TOKEN_REQUESTED, widgetId, function (_ref6) {
|
|
9200
|
-
var data = _ref6.data;
|
|
9201
|
-
_this.eventEmitter.emit(EVENT$3.RECOGNITION_TOKEN_REQUESTED, data);
|
|
9202
|
-
});
|
|
9203
|
-
this.iFrameEvent.on(EVENT$3.RECOGNITION_TOKEN_DROPPED, widgetId, function () {
|
|
9204
|
-
_this.eventEmitter.emit(EVENT$3.RECOGNITION_TOKEN_DROPPED);
|
|
9205
|
-
});
|
|
9206
9195
|
if (this.autoResize) this.useAutoResize(true);
|
|
9207
9196
|
}
|
|
9208
9197
|
}, {
|
|
@@ -9250,8 +9239,8 @@ var ClickToPaySRC = /*#__PURE__*/function () {
|
|
|
9250
9239
|
this.autoResize = true;
|
|
9251
9240
|
var params = this.link.getParams();
|
|
9252
9241
|
if (!(params === null || params === void 0 ? void 0 : params.widget_id)) return;
|
|
9253
|
-
this.iFrameEvent.on('resize', params.widget_id, function (
|
|
9254
|
-
var data =
|
|
9242
|
+
this.iFrameEvent.on('resize', params.widget_id, function (_ref6) {
|
|
9243
|
+
var data = _ref6.data;
|
|
9255
9244
|
var _a, _b;
|
|
9256
9245
|
var iframeElement = _this3.iFrame.getElement();
|
|
9257
9246
|
if (iframeElement) {
|
|
@@ -14701,7 +14690,7 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14701
14690
|
_iterator.s();
|
|
14702
14691
|
case 4:
|
|
14703
14692
|
if ((_step = _iterator.n()).done) {
|
|
14704
|
-
_context.next =
|
|
14693
|
+
_context.next = 11;
|
|
14705
14694
|
break;
|
|
14706
14695
|
}
|
|
14707
14696
|
method = _step.value;
|
|
@@ -14709,46 +14698,30 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14709
14698
|
_context.next = 8;
|
|
14710
14699
|
break;
|
|
14711
14700
|
}
|
|
14712
|
-
return _context.abrupt("continue",
|
|
14701
|
+
return _context.abrupt("continue", 9);
|
|
14713
14702
|
case 8:
|
|
14714
|
-
_context.t0 = method === PAYMENTS_METHODS.GOOGLE_PAY;
|
|
14715
|
-
if (!_context.t0) {
|
|
14716
|
-
_context.next = 13;
|
|
14717
|
-
break;
|
|
14718
|
-
}
|
|
14719
|
-
_context.next = 12;
|
|
14720
|
-
return this.isGooglePaySupported();
|
|
14721
|
-
case 12:
|
|
14722
|
-
_context.t0 = !_context.sent;
|
|
14723
|
-
case 13:
|
|
14724
|
-
if (!_context.t0) {
|
|
14725
|
-
_context.next = 15;
|
|
14726
|
-
break;
|
|
14727
|
-
}
|
|
14728
|
-
return _context.abrupt("continue", 16);
|
|
14729
|
-
case 15:
|
|
14730
14703
|
paymentMethodsAllowed.push(PAYMENT_METHOD[method]);
|
|
14731
|
-
case
|
|
14704
|
+
case 9:
|
|
14732
14705
|
_context.next = 4;
|
|
14733
14706
|
break;
|
|
14734
|
-
case
|
|
14735
|
-
_context.next =
|
|
14707
|
+
case 11:
|
|
14708
|
+
_context.next = 16;
|
|
14736
14709
|
break;
|
|
14737
|
-
case
|
|
14738
|
-
_context.prev =
|
|
14739
|
-
_context.
|
|
14740
|
-
_iterator.e(_context.
|
|
14741
|
-
case
|
|
14742
|
-
_context.prev =
|
|
14710
|
+
case 13:
|
|
14711
|
+
_context.prev = 13;
|
|
14712
|
+
_context.t0 = _context["catch"](2);
|
|
14713
|
+
_iterator.e(_context.t0);
|
|
14714
|
+
case 16:
|
|
14715
|
+
_context.prev = 16;
|
|
14743
14716
|
_iterator.f();
|
|
14744
|
-
return _context.finish(
|
|
14745
|
-
case
|
|
14717
|
+
return _context.finish(16);
|
|
14718
|
+
case 19:
|
|
14746
14719
|
resolve(paymentMethodsAllowed.join(' '));
|
|
14747
|
-
case
|
|
14720
|
+
case 20:
|
|
14748
14721
|
case "end":
|
|
14749
14722
|
return _context.stop();
|
|
14750
14723
|
}
|
|
14751
|
-
}, _callee, this, [[2,
|
|
14724
|
+
}, _callee, this, [[2, 13, 16, 19]]);
|
|
14752
14725
|
}));
|
|
14753
14726
|
});
|
|
14754
14727
|
initState.then(function (content) {
|
|
@@ -14814,45 +14787,6 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14814
14787
|
value: function isApplePaySupported() {
|
|
14815
14788
|
return window.ApplePaySession && ApplePaySession.canMakePayments();
|
|
14816
14789
|
}
|
|
14817
|
-
}, {
|
|
14818
|
-
key: "isGooglePaySupported",
|
|
14819
|
-
value: function isGooglePaySupported() {
|
|
14820
|
-
return __awaiter(this, void 0, void 0, /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
14821
|
-
var paymentRequest;
|
|
14822
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
14823
|
-
while (1) switch (_context2.prev = _context2.next) {
|
|
14824
|
-
case 0:
|
|
14825
|
-
_context2.prev = 0;
|
|
14826
|
-
if (window.PaymentRequest) {
|
|
14827
|
-
_context2.next = 3;
|
|
14828
|
-
break;
|
|
14829
|
-
}
|
|
14830
|
-
return _context2.abrupt("return", false);
|
|
14831
|
-
case 3:
|
|
14832
|
-
paymentRequest = new PaymentRequest([{
|
|
14833
|
-
supportedMethods: 'https://google.com/pay'
|
|
14834
|
-
}], {
|
|
14835
|
-
total: {
|
|
14836
|
-
label: 'Test',
|
|
14837
|
-
amount: {
|
|
14838
|
-
currency: 'USD',
|
|
14839
|
-
value: '0.00'
|
|
14840
|
-
}
|
|
14841
|
-
}
|
|
14842
|
-
});
|
|
14843
|
-
return _context2.abrupt("return", paymentRequest.canMakePayment());
|
|
14844
|
-
case 7:
|
|
14845
|
-
_context2.prev = 7;
|
|
14846
|
-
_context2.t0 = _context2["catch"](0);
|
|
14847
|
-
console.error('Error google pay check support:');
|
|
14848
|
-
return _context2.abrupt("return", false);
|
|
14849
|
-
case 11:
|
|
14850
|
-
case "end":
|
|
14851
|
-
return _context2.stop();
|
|
14852
|
-
}
|
|
14853
|
-
}, _callee2, null, [[0, 7]]);
|
|
14854
|
-
}));
|
|
14855
|
-
}
|
|
14856
14790
|
}, {
|
|
14857
14791
|
key: "setStylesToStandaloneWidget",
|
|
14858
14792
|
value: function setStylesToStandaloneWidget() {
|
package/bundles/index.mjs
CHANGED
|
@@ -889,7 +889,7 @@ SDK.headerKeys = Object.freeze({
|
|
|
889
889
|
version: 'x-sdk-version',
|
|
890
890
|
type: 'x-sdk-type'
|
|
891
891
|
});
|
|
892
|
-
SDK._version = 'v1.116.
|
|
892
|
+
SDK._version = 'v1.116.2';
|
|
893
893
|
|
|
894
894
|
/******************************************************************************
|
|
895
895
|
Copyright (c) Microsoft Corporation.
|
|
@@ -3956,8 +3956,8 @@ function createNewrelicConfig() {
|
|
|
3956
3956
|
var params = {
|
|
3957
3957
|
enabled: 'true',
|
|
3958
3958
|
accountId: '974691',
|
|
3959
|
-
agentId: '
|
|
3960
|
-
applicationId: '
|
|
3959
|
+
agentId: '1386157152',
|
|
3960
|
+
applicationId: '1386157152',
|
|
3961
3961
|
licenseKey: '4848a32285',
|
|
3962
3962
|
trustKey: '974691'
|
|
3963
3963
|
};
|
|
@@ -9105,8 +9105,6 @@ var HtmlPaymentSourceWidget = /*#__PURE__*/function (_PaymentSourceWidget) {
|
|
|
9105
9105
|
* @param {string} CHECKOUT_POPUP_CLOSE=checkoutPopupClose Event sent when Click To Pay checkout flow is closed, regardless of embedded or windowed mode.
|
|
9106
9106
|
* @param {string} CHECKOUT_COMPLETED=checkoutCompleted Event sent on successful checkout by customer. Check [data](#EventDataCheckoutCompletedData) for more information.
|
|
9107
9107
|
* @param {string} CHECKOUT_ERROR=checkoutError Event sent on error checkout by customer. Check [data](#EventData) for more information.
|
|
9108
|
-
* @param {string} RECOGNITION_TOKEN_REQUESTED=recognitionTokenRequested Event sent when a recognition token was found on the mastercard SDK response.
|
|
9109
|
-
* @param {string} RECOGNITION_TOKEN_DROPPED=recognitionTokenDropped Event sent when a recognition token needs to be dropped for user be no longer remembered.
|
|
9110
9108
|
*/
|
|
9111
9109
|
var EVENT$3;
|
|
9112
9110
|
(function (EVENT) {
|
|
@@ -9116,8 +9114,6 @@ var EVENT$3;
|
|
|
9116
9114
|
EVENT["CHECKOUT_ERROR"] = "checkoutError";
|
|
9117
9115
|
EVENT["CHECKOUT_POPUP_OPEN"] = "checkoutPopupOpen";
|
|
9118
9116
|
EVENT["CHECKOUT_POPUP_CLOSE"] = "checkoutPopupClose";
|
|
9119
|
-
EVENT["RECOGNITION_TOKEN_REQUESTED"] = "recognitionTokenRequested";
|
|
9120
|
-
EVENT["RECOGNITION_TOKEN_DROPPED"] = "recognitionTokenDropped";
|
|
9121
9117
|
})(EVENT$3 || (EVENT$3 = {}));
|
|
9122
9118
|
/**
|
|
9123
9119
|
* List of available event data types
|
|
@@ -9194,13 +9190,6 @@ var ClickToPaySRC = /*#__PURE__*/function () {
|
|
|
9194
9190
|
var data = _ref5.data;
|
|
9195
9191
|
_this.eventEmitter.emit(EVENT$3.CHECKOUT_ERROR, data);
|
|
9196
9192
|
});
|
|
9197
|
-
this.iFrameEvent.on(EVENT$3.RECOGNITION_TOKEN_REQUESTED, widgetId, function (_ref6) {
|
|
9198
|
-
var data = _ref6.data;
|
|
9199
|
-
_this.eventEmitter.emit(EVENT$3.RECOGNITION_TOKEN_REQUESTED, data);
|
|
9200
|
-
});
|
|
9201
|
-
this.iFrameEvent.on(EVENT$3.RECOGNITION_TOKEN_DROPPED, widgetId, function () {
|
|
9202
|
-
_this.eventEmitter.emit(EVENT$3.RECOGNITION_TOKEN_DROPPED);
|
|
9203
|
-
});
|
|
9204
9193
|
if (this.autoResize) this.useAutoResize(true);
|
|
9205
9194
|
}
|
|
9206
9195
|
}, {
|
|
@@ -9248,8 +9237,8 @@ var ClickToPaySRC = /*#__PURE__*/function () {
|
|
|
9248
9237
|
this.autoResize = true;
|
|
9249
9238
|
var params = this.link.getParams();
|
|
9250
9239
|
if (!(params === null || params === void 0 ? void 0 : params.widget_id)) return;
|
|
9251
|
-
this.iFrameEvent.on('resize', params.widget_id, function (
|
|
9252
|
-
var data =
|
|
9240
|
+
this.iFrameEvent.on('resize', params.widget_id, function (_ref6) {
|
|
9241
|
+
var data = _ref6.data;
|
|
9253
9242
|
var _a, _b;
|
|
9254
9243
|
var iframeElement = _this3.iFrame.getElement();
|
|
9255
9244
|
if (iframeElement) {
|
|
@@ -14699,7 +14688,7 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14699
14688
|
_iterator.s();
|
|
14700
14689
|
case 4:
|
|
14701
14690
|
if ((_step = _iterator.n()).done) {
|
|
14702
|
-
_context.next =
|
|
14691
|
+
_context.next = 11;
|
|
14703
14692
|
break;
|
|
14704
14693
|
}
|
|
14705
14694
|
method = _step.value;
|
|
@@ -14707,46 +14696,30 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14707
14696
|
_context.next = 8;
|
|
14708
14697
|
break;
|
|
14709
14698
|
}
|
|
14710
|
-
return _context.abrupt("continue",
|
|
14699
|
+
return _context.abrupt("continue", 9);
|
|
14711
14700
|
case 8:
|
|
14712
|
-
_context.t0 = method === PAYMENTS_METHODS.GOOGLE_PAY;
|
|
14713
|
-
if (!_context.t0) {
|
|
14714
|
-
_context.next = 13;
|
|
14715
|
-
break;
|
|
14716
|
-
}
|
|
14717
|
-
_context.next = 12;
|
|
14718
|
-
return this.isGooglePaySupported();
|
|
14719
|
-
case 12:
|
|
14720
|
-
_context.t0 = !_context.sent;
|
|
14721
|
-
case 13:
|
|
14722
|
-
if (!_context.t0) {
|
|
14723
|
-
_context.next = 15;
|
|
14724
|
-
break;
|
|
14725
|
-
}
|
|
14726
|
-
return _context.abrupt("continue", 16);
|
|
14727
|
-
case 15:
|
|
14728
14701
|
paymentMethodsAllowed.push(PAYMENT_METHOD[method]);
|
|
14729
|
-
case
|
|
14702
|
+
case 9:
|
|
14730
14703
|
_context.next = 4;
|
|
14731
14704
|
break;
|
|
14732
|
-
case
|
|
14733
|
-
_context.next =
|
|
14705
|
+
case 11:
|
|
14706
|
+
_context.next = 16;
|
|
14734
14707
|
break;
|
|
14735
|
-
case
|
|
14736
|
-
_context.prev =
|
|
14737
|
-
_context.
|
|
14738
|
-
_iterator.e(_context.
|
|
14739
|
-
case
|
|
14740
|
-
_context.prev =
|
|
14708
|
+
case 13:
|
|
14709
|
+
_context.prev = 13;
|
|
14710
|
+
_context.t0 = _context["catch"](2);
|
|
14711
|
+
_iterator.e(_context.t0);
|
|
14712
|
+
case 16:
|
|
14713
|
+
_context.prev = 16;
|
|
14741
14714
|
_iterator.f();
|
|
14742
|
-
return _context.finish(
|
|
14743
|
-
case
|
|
14715
|
+
return _context.finish(16);
|
|
14716
|
+
case 19:
|
|
14744
14717
|
resolve(paymentMethodsAllowed.join(' '));
|
|
14745
|
-
case
|
|
14718
|
+
case 20:
|
|
14746
14719
|
case "end":
|
|
14747
14720
|
return _context.stop();
|
|
14748
14721
|
}
|
|
14749
|
-
}, _callee, this, [[2,
|
|
14722
|
+
}, _callee, this, [[2, 13, 16, 19]]);
|
|
14750
14723
|
}));
|
|
14751
14724
|
});
|
|
14752
14725
|
initState.then(function (content) {
|
|
@@ -14812,45 +14785,6 @@ var PaymentMethods = /*#__PURE__*/function () {
|
|
|
14812
14785
|
value: function isApplePaySupported() {
|
|
14813
14786
|
return window.ApplePaySession && ApplePaySession.canMakePayments();
|
|
14814
14787
|
}
|
|
14815
|
-
}, {
|
|
14816
|
-
key: "isGooglePaySupported",
|
|
14817
|
-
value: function isGooglePaySupported() {
|
|
14818
|
-
return __awaiter(this, void 0, void 0, /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
14819
|
-
var paymentRequest;
|
|
14820
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
14821
|
-
while (1) switch (_context2.prev = _context2.next) {
|
|
14822
|
-
case 0:
|
|
14823
|
-
_context2.prev = 0;
|
|
14824
|
-
if (window.PaymentRequest) {
|
|
14825
|
-
_context2.next = 3;
|
|
14826
|
-
break;
|
|
14827
|
-
}
|
|
14828
|
-
return _context2.abrupt("return", false);
|
|
14829
|
-
case 3:
|
|
14830
|
-
paymentRequest = new PaymentRequest([{
|
|
14831
|
-
supportedMethods: 'https://google.com/pay'
|
|
14832
|
-
}], {
|
|
14833
|
-
total: {
|
|
14834
|
-
label: 'Test',
|
|
14835
|
-
amount: {
|
|
14836
|
-
currency: 'USD',
|
|
14837
|
-
value: '0.00'
|
|
14838
|
-
}
|
|
14839
|
-
}
|
|
14840
|
-
});
|
|
14841
|
-
return _context2.abrupt("return", paymentRequest.canMakePayment());
|
|
14842
|
-
case 7:
|
|
14843
|
-
_context2.prev = 7;
|
|
14844
|
-
_context2.t0 = _context2["catch"](0);
|
|
14845
|
-
console.error('Error google pay check support:');
|
|
14846
|
-
return _context2.abrupt("return", false);
|
|
14847
|
-
case 11:
|
|
14848
|
-
case "end":
|
|
14849
|
-
return _context2.stop();
|
|
14850
|
-
}
|
|
14851
|
-
}, _callee2, null, [[0, 7]]);
|
|
14852
|
-
}));
|
|
14853
|
-
}
|
|
14854
14788
|
}, {
|
|
14855
14789
|
key: "setStylesToStandaloneWidget",
|
|
14856
14790
|
value: function setStylesToStandaloneWidget() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-methods.d.ts","sourceRoot":"","sources":["../../../src/checkout/layout-widgets/payment-methods.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAEvD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAQ5D,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,eAAe,EAAE,GAAG,CAAC;KACxB;CACJ;AAED,eAAO,MAAM,gBAAgB;;;CAG5B,CAAC;AACF,qBAAa,cAAc;IAcnB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE;IAC3B,SAAS,CAAC,MAAM,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE;IAC5J,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI;IAd5C,SAAS,CAAC,MAAM,EAAE,MAAM,CAAU;IAClC,SAAS,CAAC,YAAY,EAAE,YAAY,CAAC;IACrC,SAAS,CAAC,SAAS,EAAE,SAAS,CAAC;IAC/B,SAAS,CAAC,GAAG,EAAE,MAAM,CAAe;IACpC,SAAS,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,GAAG,EAAE,WAAW,CAAC;IAC3B,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,KAAK,EAAE,WAAW,CAAC;IAC7B,SAAS,CAAC,2BAA2B,EAAE,OAAO,CAAC;gBAG3C,QAAQ,EAAE,MAAM,EACN,OAAO,EAAE,MAAM,EAAE,EACjB,MAAM,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAClJ,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EACxC,iBAAiB,EAAE,MAAM,EACzB,IAAI,GAAE,OAAe;IAYzB,OAAO,CAAC,IAAI;
|
|
1
|
+
{"version":3,"file":"payment-methods.d.ts","sourceRoot":"","sources":["../../../src/checkout/layout-widgets/payment-methods.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAEvD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAQ5D,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,eAAe,EAAE,GAAG,CAAC;KACxB;CACJ;AAED,eAAO,MAAM,gBAAgB;;;CAG5B,CAAC;AACF,qBAAa,cAAc;IAcnB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE;IAC3B,SAAS,CAAC,MAAM,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE;IAC5J,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI;IAd5C,SAAS,CAAC,MAAM,EAAE,MAAM,CAAU;IAClC,SAAS,CAAC,YAAY,EAAE,YAAY,CAAC;IACrC,SAAS,CAAC,SAAS,EAAE,SAAS,CAAC;IAC/B,SAAS,CAAC,GAAG,EAAE,MAAM,CAAe;IACpC,SAAS,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,GAAG,EAAE,WAAW,CAAC;IAC3B,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,KAAK,EAAE,WAAW,CAAC;IAC7B,SAAS,CAAC,2BAA2B,EAAE,OAAO,CAAC;gBAG3C,QAAQ,EAAE,MAAM,EACN,OAAO,EAAE,MAAM,EAAE,EACjB,MAAM,EAAE;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAClJ,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EACxC,iBAAiB,EAAE,MAAM,EACzB,IAAI,GAAE,OAAe;IAYzB,OAAO,CAAC,IAAI;IAsCZ,OAAO,CAAC,kBAAkB;IAmBnB,MAAM,CAAC,iBAAiB,KAAA;IAS/B,OAAO,CAAC,SAAS;IAkCjB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,2BAA2B;IAM5B,oBAAoB;CAmB9B"}
|
|
@@ -49,7 +49,6 @@ export { ClickToPay } from './click-to-pay-secure-remote-commerce';
|
|
|
49
49
|
* @param {string} [customer.phone.country_code] Customer phone country code (example "1" for US).
|
|
50
50
|
* @param {string} [customer.phone.phone] Customer phone number.
|
|
51
51
|
* @param {string} [unaccepted_card_type] Used to block a specific card type. Options are 'CREDIT', 'DEBIT'.
|
|
52
|
-
* @param {string} [recognition_token] Used for Click to Pay to load user information and preferences.
|
|
53
52
|
*/
|
|
54
53
|
/**
|
|
55
54
|
* Interface for data returned in callbacks
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/secure-remote-commerce/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,uCAAuC,CAAC;AAEnE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/secure-remote-commerce/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,uCAAuC,CAAC;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AAEH;;;;;;;GAOG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAEH;;;;;;;;;;;GAWG"}
|
|
@@ -9,8 +9,6 @@
|
|
|
9
9
|
* @param {string} CHECKOUT_POPUP_CLOSE=checkoutPopupClose Event sent when Click To Pay checkout flow is closed, regardless of embedded or windowed mode.
|
|
10
10
|
* @param {string} CHECKOUT_COMPLETED=checkoutCompleted Event sent on successful checkout by customer. Check [data](#EventDataCheckoutCompletedData) for more information.
|
|
11
11
|
* @param {string} CHECKOUT_ERROR=checkoutError Event sent on error checkout by customer. Check [data](#EventData) for more information.
|
|
12
|
-
* @param {string} RECOGNITION_TOKEN_REQUESTED=recognitionTokenRequested Event sent when a recognition token was found on the mastercard SDK response.
|
|
13
|
-
* @param {string} RECOGNITION_TOKEN_DROPPED=recognitionTokenDropped Event sent when a recognition token needs to be dropped for user be no longer remembered.
|
|
14
12
|
*/
|
|
15
13
|
export declare enum EVENT {
|
|
16
14
|
IFRAME_LOADED = "iframeLoaded",
|
|
@@ -18,9 +16,7 @@ export declare enum EVENT {
|
|
|
18
16
|
CHECKOUT_COMPLETED = "checkoutCompleted",
|
|
19
17
|
CHECKOUT_ERROR = "checkoutError",
|
|
20
18
|
CHECKOUT_POPUP_OPEN = "checkoutPopupOpen",
|
|
21
|
-
CHECKOUT_POPUP_CLOSE = "checkoutPopupClose"
|
|
22
|
-
RECOGNITION_TOKEN_REQUESTED = "recognitionTokenRequested",
|
|
23
|
-
RECOGNITION_TOKEN_DROPPED = "recognitionTokenDropped"
|
|
19
|
+
CHECKOUT_POPUP_CLOSE = "checkoutPopupClose"
|
|
24
20
|
}
|
|
25
21
|
export interface EventData {
|
|
26
22
|
type: EVENT_DATA_TYPE;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../src/secure-remote-commerce/interfaces.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../src/secure-remote-commerce/interfaces.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,oBAAY,KAAK;IACb,aAAa,iBAAiB;IAC9B,cAAc,kBAAkB;IAChC,kBAAkB,sBAAsB;IACxC,cAAc,kBAAkB;IAChC,mBAAmB,sBAAsB;IACzC,oBAAoB,uBAAuB;CAC9C;AAED,MAAM,WAAW,SAAS;IACtB,IAAI,EAAE,eAAe,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,GAAG,8BAA8B,GAAG,kCAAkC,CAAC;CACvF;AAED;;;;;;;;GAQG;AACH,oBAAY,eAAe;IACvB,cAAc,kBAAkB;IAChC,UAAU,cAAc;IACxB,OAAO,YAAY;CACtB;AAED,UAAU,kCAAkC;IACxC,IAAI,EAAE;QACF,gBAAgB,EAAE,MAAM,CAAC;KAC5B,CAAC;CACL;AAED,UAAU,8BAA8B;IACpC,IAAI,EAAE,KAAK,GAAG,QAAQ,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE;QACX,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,WAAW,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,CAAC;QACrE,SAAS,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;QAC9D,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,QAAQ,CAAC,EAAE;YACP,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,YAAY,CAAC,EAAE,MAAM,CAAC;YACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;YAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;YACvB,eAAe,CAAC,EAAE,MAAM,CAAC;SAC5B,CAAC;KACL,CAAC;CACL;AAED,UAAU,YAAY;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE;QACP,qBAAqB,CAAC,EAAE,MAAM,CAAC;QAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,uBAAuB,CAAC,EAAE;QACtB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,8BAA8B,CAAC,EAAE,MAAM,EAAE,CAAC;QAC1C,uBAAuB,CAAC,EAAE,OAAO,CAAC;QAClC,gCAAgC,CAAC,EAAE,OAAO,CAAC;QAC3C,+BAA+B,CAAC,EAAE,OAAO,CAAC;QAC1C,kBAAkB,CAAC,EAAE;YACjB,kBAAkB,CAAC,EAAE,MAAM,CAAC;YAC5B,yBAAyB,CAAC,EAAE,MAAM,CAAC;SACtC,CAAC;QACF,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAC;QAChC,qBAAqB,CAAC,EAAE,MAAM,CAAC;KAClC,CAAC;CACL;AAED,UAAU,WAAW;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;CACxB;AAED,UAAU,QAAQ;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE;QACJ,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,KAAK,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,eAAgB,SAAQ,YAAY;IACjD,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,CAAC,GAAG;QAClC,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,gBAAgB,CAAC,EAAE,WAAW,CAAC;QAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,2BAA2B,CAAC,EAAE,MAAM,CAAC;QACrC,0BAA0B,CAAC,EAAE,WAAW,CAAC;QACzC,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,gBAAgB,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC;KACnD,CAAC;IACF,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,mBAAmB,CAAC,EAAE,iBAAiB,GAAG,kBAAkB,CAAC;IAC7D,QAAQ,CAAC,EAAE,iBAAiB,GAAG,qBAAqB,CAAC;IACrD,uBAAuB,CAAC,EAAE,YAAY,CAAC,yBAAyB,CAAC,GAAG;QAChE,sBAAsB,CAAC,EAAE,0CAA0C,CAAC;QACpE,eAAe,CAAC,EAAE,KAAK,CAAC;YACpB,iBAAiB,CAAC,EAAE,MAAM,CAAC;SAC9B,CAAC,CAAC;QACH,UAAU,CAAC,EAAE,qBAAqB,CAAC;QACnC,mBAAmB,CAAC,EAAE,MAAM,CAAC;QAC7B,eAAe,CAAC,EAAE,OAAO,CAAC;KAC7B,CAAC;IACF,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,oBAAoB,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;IAC1C,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,MAAM,0CAA0C,GAAG,MAAM,GAAG,gBAAgB,GAAG,MAAM,CAAC;AAE5F,MAAM,MAAM,qBAAqB,GAAG,MAAM,GAAG,MAAM,CAAC;AAEpD,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,UAAU,CAAC;AAE/C,MAAM,MAAM,gBAAgB,GAAG,UAAU,GAAG,cAAc,GAAG,gBAAgB,CAAC;AAE9E,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;AAExE,MAAM,WAAW,OAAO;IACpB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,eAAO,MAAM,KAAK;;;;;;;CAOjB,CAAC"}
|
package/bundles/types/secure-remote-commerce/providers/mastercard-src/mastercard-src.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mastercard-src.d.ts","sourceRoot":"","sources":["../../../../src/secure-remote-commerce/providers/mastercard-src/mastercard-src.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAkB,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAc,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAS,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAG1D,qBAAa,aAAc,YAAW,WAAW;IAMgC,SAAS,CAAC,IAAI,EAAE,eAAe;IAAE,SAAS,CAAC,YAAY,EAAE,YAAY;IAAE,SAAS,CAAC,UAAU;IALxK,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC;IACrB,SAAS,CAAC,eAAe,EAAE,SAAS,CAAC;IACrC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,WAAW,EAAE,WAAW,CAAC;gBAEvB,eAAe,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAY,IAAI,EAAE,eAAe,EAAY,YAAY,EAAE,YAAY,EAAY,UAAU,KAAA,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM;IAsBrM,OAAO,CAAC,iBAAiB;
|
|
1
|
+
{"version":3,"file":"mastercard-src.d.ts","sourceRoot":"","sources":["../../../../src/secure-remote-commerce/providers/mastercard-src/mastercard-src.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAkB,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAc,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAS,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAG1D,qBAAa,aAAc,YAAW,WAAW;IAMgC,SAAS,CAAC,IAAI,EAAE,eAAe;IAAE,SAAS,CAAC,YAAY,EAAE,YAAY;IAAE,SAAS,CAAC,UAAU;IALxK,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC;IACrB,SAAS,CAAC,eAAe,EAAE,SAAS,CAAC;IACrC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,WAAW,EAAE,WAAW,CAAC;gBAEvB,eAAe,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAY,IAAI,EAAE,eAAe,EAAY,YAAY,EAAE,YAAY,EAAY,UAAU,KAAA,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM;IAsBrM,OAAO,CAAC,iBAAiB;IA6BlB,IAAI,IAAI,IAAI;IAUZ,MAAM,IAAI,MAAM;IAIhB,YAAY,CAAC,QAAQ,EAAE,OAAO;IAK9B,YAAY;IAKZ,MAAM;IAKN,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI;CAkB9C"}
|