@paydock/client-sdk 1.10.56 → 1.10.60-beta
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 +12 -9
- package/bundles/widget.umd.js +10 -8
- package/bundles/widget.umd.min.js +1 -1
- package/lib/components/param.d.ts +1 -0
- package/lib/components/param.js.map +1 -1
- package/lib/wallet-buttons/paypal.wallet-service.js +4 -6
- package/lib/wallet-buttons/paypal.wallet-service.js.map +1 -1
- package/lib/widget/multi-widget.d.ts +3 -2
- package/lib/widget/multi-widget.js +5 -2
- package/lib/widget/multi-widget.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -643,7 +643,7 @@ Class Widget include method for working on html and include extended by HtmlMult
|
|
|
643
643
|
* [.setHiddenElements(elements)](#w_MultiWidget+setHiddenElements)
|
|
644
644
|
* [.setRefId(refId)](#w_MultiWidget+setRefId)
|
|
645
645
|
* [.useGatewayFieldValidation()](#w_MultiWidget+useGatewayFieldValidation)
|
|
646
|
-
* [.setSupportedCardIcons(elements)](#w_MultiWidget+setSupportedCardIcons)
|
|
646
|
+
* [.setSupportedCardIcons(elements, validateCardNumberInput)](#w_MultiWidget+setSupportedCardIcons)
|
|
647
647
|
* [.setEnv(env, [alias])](#w_MultiWidget+setEnv)
|
|
648
648
|
* [.loadIFrameUrl()](#w_MultiWidget+loadIFrameUrl)
|
|
649
649
|
* [.setLanguage(code)](#w_MultiWidget+setLanguage)
|
|
@@ -1220,7 +1220,7 @@ widget.useGatewayFieldValidation();
|
|
|
1220
1220
|
```
|
|
1221
1221
|
<a name="w_MultiWidget+setSupportedCardIcons" id="w_MultiWidget+setSupportedCardIcons"></a>
|
|
1222
1222
|
|
|
1223
|
-
### htmlWidget.setSupportedCardIcons(elements)
|
|
1223
|
+
### htmlWidget.setSupportedCardIcons(elements, validateCardNumberInput)
|
|
1224
1224
|
Current method can set icons of supported card types
|
|
1225
1225
|
|
|
1226
1226
|
**Kind**: instance method of [<code>HtmlWidget</code>](#w_HtmlWidget)
|
|
@@ -1228,11 +1228,12 @@ Current method can set icons of supported card types
|
|
|
1228
1228
|
| Param | Type | Description |
|
|
1229
1229
|
| --- | --- | --- |
|
|
1230
1230
|
| elements | <code>[ 'Array' ].<string></code> | [SUPPORTED_CARD_TYPES](#w_SUPPORTED_CARD_TYPES) |
|
|
1231
|
+
| validateCardNumberInput | <code>boolean</code> | [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types |
|
|
1231
1232
|
|
|
1232
1233
|
**Example**
|
|
1233
1234
|
|
|
1234
1235
|
```javascript
|
|
1235
|
-
widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
1236
|
+
widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
1236
1237
|
```
|
|
1237
1238
|
<a name="w_MultiWidget+setEnv" id="w_MultiWidget+setEnv"></a>
|
|
1238
1239
|
|
|
@@ -1323,7 +1324,7 @@ Class HtmlMultiWidget include method for working with html
|
|
|
1323
1324
|
* [.setHiddenElements(elements)](#w_MultiWidget+setHiddenElements)
|
|
1324
1325
|
* [.setRefId(refId)](#w_MultiWidget+setRefId)
|
|
1325
1326
|
* [.useGatewayFieldValidation()](#w_MultiWidget+useGatewayFieldValidation)
|
|
1326
|
-
* [.setSupportedCardIcons(elements)](#w_MultiWidget+setSupportedCardIcons)
|
|
1327
|
+
* [.setSupportedCardIcons(elements, validateCardNumberInput)](#w_MultiWidget+setSupportedCardIcons)
|
|
1327
1328
|
* [.setEnv(env, [alias])](#w_MultiWidget+setEnv)
|
|
1328
1329
|
* [.loadIFrameUrl()](#w_MultiWidget+loadIFrameUrl)
|
|
1329
1330
|
* [.setLanguage(code)](#w_MultiWidget+setLanguage)
|
|
@@ -1820,7 +1821,7 @@ widget.useGatewayFieldValidation();
|
|
|
1820
1821
|
```
|
|
1821
1822
|
<a name="w_MultiWidget+setSupportedCardIcons" id="w_MultiWidget+setSupportedCardIcons"></a>
|
|
1822
1823
|
|
|
1823
|
-
### htmlMultiWidget.setSupportedCardIcons(elements)
|
|
1824
|
+
### htmlMultiWidget.setSupportedCardIcons(elements, validateCardNumberInput)
|
|
1824
1825
|
Current method can set icons of supported card types
|
|
1825
1826
|
|
|
1826
1827
|
**Kind**: instance method of [<code>HtmlMultiWidget</code>](#w_HtmlMultiWidget)
|
|
@@ -1828,11 +1829,12 @@ Current method can set icons of supported card types
|
|
|
1828
1829
|
| Param | Type | Description |
|
|
1829
1830
|
| --- | --- | --- |
|
|
1830
1831
|
| elements | <code>[ 'Array' ].<string></code> | [SUPPORTED_CARD_TYPES](#w_SUPPORTED_CARD_TYPES) |
|
|
1832
|
+
| validateCardNumberInput | <code>boolean</code> | [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types |
|
|
1831
1833
|
|
|
1832
1834
|
**Example**
|
|
1833
1835
|
|
|
1834
1836
|
```javascript
|
|
1835
|
-
widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
1837
|
+
widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
1836
1838
|
```
|
|
1837
1839
|
<a name="w_MultiWidget+setEnv" id="w_MultiWidget+setEnv"></a>
|
|
1838
1840
|
|
|
@@ -2081,7 +2083,7 @@ Class MultiWidget include method for for creating iframe url
|
|
|
2081
2083
|
* [.setHiddenElements(elements)](#w_MultiWidget+setHiddenElements)
|
|
2082
2084
|
* [.setRefId(refId)](#w_MultiWidget+setRefId)
|
|
2083
2085
|
* [.useGatewayFieldValidation()](#w_MultiWidget+useGatewayFieldValidation)
|
|
2084
|
-
* [.setSupportedCardIcons(elements)](#w_MultiWidget+setSupportedCardIcons)
|
|
2086
|
+
* [.setSupportedCardIcons(elements, validateCardNumberInput)](#w_MultiWidget+setSupportedCardIcons)
|
|
2085
2087
|
* [.setEnv(env, [alias])](#w_MultiWidget+setEnv)
|
|
2086
2088
|
* [.loadIFrameUrl()](#w_MultiWidget+loadIFrameUrl)
|
|
2087
2089
|
* [.setLanguage(code)](#w_MultiWidget+setLanguage)
|
|
@@ -2356,7 +2358,7 @@ widget.useGatewayFieldValidation();
|
|
|
2356
2358
|
```
|
|
2357
2359
|
<a name="w_MultiWidget+setSupportedCardIcons" id="w_MultiWidget+setSupportedCardIcons"></a>
|
|
2358
2360
|
|
|
2359
|
-
### multiWidget.setSupportedCardIcons(elements)
|
|
2361
|
+
### multiWidget.setSupportedCardIcons(elements, validateCardNumberInput)
|
|
2360
2362
|
Current method can set icons of supported card types
|
|
2361
2363
|
|
|
2362
2364
|
**Kind**: instance method of [<code>MultiWidget</code>](#w_MultiWidget)
|
|
@@ -2364,11 +2366,12 @@ Current method can set icons of supported card types
|
|
|
2364
2366
|
| Param | Type | Description |
|
|
2365
2367
|
| --- | --- | --- |
|
|
2366
2368
|
| elements | <code>[ 'Array' ].<string></code> | [SUPPORTED_CARD_TYPES](#w_SUPPORTED_CARD_TYPES) |
|
|
2369
|
+
| validateCardNumberInput | <code>boolean</code> | [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types |
|
|
2367
2370
|
|
|
2368
2371
|
**Example**
|
|
2369
2372
|
|
|
2370
2373
|
```javascript
|
|
2371
|
-
widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
2374
|
+
widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
2372
2375
|
```
|
|
2373
2376
|
<a name="w_MultiWidget+setEnv" id="w_MultiWidget+setEnv"></a>
|
|
2374
2377
|
|
package/bundles/widget.umd.js
CHANGED
|
@@ -1232,20 +1232,22 @@
|
|
|
1232
1232
|
*
|
|
1233
1233
|
* @example
|
|
1234
1234
|
*
|
|
1235
|
-
* widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
1235
|
+
* widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
1236
1236
|
*
|
|
1237
1237
|
* @param {string[]} elements - [SUPPORTED_CARD_TYPES]{@link SUPPORTED_CARD_TYPES}
|
|
1238
|
+
* @param {boolean} validateCardNumberInput - [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types
|
|
1238
1239
|
*/
|
|
1239
1240
|
|
|
1240
1241
|
}, {
|
|
1241
1242
|
key: 'setSupportedCardIcons',
|
|
1242
|
-
value: function setSupportedCardIcons(elements) {
|
|
1243
|
+
value: function setSupportedCardIcons(elements, validateCardNumberInput) {
|
|
1243
1244
|
var supportedCards = [];
|
|
1244
1245
|
for (var index in elements) {
|
|
1245
1246
|
if (!elements.hasOwnProperty(index)) continue;
|
|
1246
1247
|
if (ObjectHelper.values(SUPPORTED_CARD_TYPES).indexOf(elements[index]) !== -1) supportedCards.push(elements[index]);else console.warn('Widget::cardTypes: unsupported type of cards ' + elements[index]);
|
|
1247
1248
|
}
|
|
1248
1249
|
if (supportedCards.length) this.link.concatParams({ supported_card_types: supportedCards.join(',') });
|
|
1250
|
+
if (validateCardNumberInput) this.link.setParams({ validate_card_types: validateCardNumberInput });
|
|
1249
1251
|
}
|
|
1250
1252
|
/**
|
|
1251
1253
|
* Current method can change environment. By default environment = sandbox.
|
|
@@ -5152,12 +5154,12 @@
|
|
|
5152
5154
|
});
|
|
5153
5155
|
});
|
|
5154
5156
|
}, onShippingChange: function onShippingChange(data, _actions) {
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
_this2.
|
|
5160
|
-
_this2.
|
|
5157
|
+
return new Promise(function (resolve, reject) {
|
|
5158
|
+
var parsedCallbackData = _this2.parseUpdateData(data);
|
|
5159
|
+
_this2.latestShippingData = parsedCallbackData.shipping;
|
|
5160
|
+
_this2.latestShippingChangePromiseResolve = resolve;
|
|
5161
|
+
_this2.latestShippingChangePromiseReject = reject;
|
|
5162
|
+
_this2.eventEmitter.emit(WALLET_EVENT.UPDATE, parsedCallbackData);
|
|
5161
5163
|
});
|
|
5162
5164
|
}, onApprove: function onApprove(data) {
|
|
5163
5165
|
return new Promise(function (resolve, reject) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).paydock={})}(this,function(e){"use strict";function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t=function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e};function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t,n){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,t);if(void 0===i){var r=Object.getPrototypeOf(e);return null===r?void 0:a(r,t,n)}if("value"in i)return i.value;var o=i.get;return void 0!==o?o.call(n):void 0}function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var y=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},s=function(e,t){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return function(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(i=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&s.return&&s.return()}finally{if(r)throw o}}return n}(e,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")},o="sandbox",l="sandbox-kovena",d="sandbox-demo",h="sandbox-demo-kovena",p="production",f="staging",v="staging_2",m="staging_3",g="staging_4",k="staging_5",_=[l,h],E=o,b="paydock.com",w="kovena.com",S=(t(C,[{key:"setEnv",value:function(e,t){if(!this.isValidMode(this.configs,e))throw new Error("unknown env: "+e);if(this.env=e,t&&!t.match("^([a-zA-Z0-9](?:(?:[a-zA-Z0-9-.]*(?!-)\\.(?![-.]))*[a-zA-Z0-9]+)?)$"))throw new Error("invalid: "+t);t?this.alias=t:-1!==_.indexOf(this.env)?this.alias=w:this.alias=b}},{key:"getEnv",value:function(){return this.env}},{key:"getConf",value:function(){for(var e in this.configs)if(this.configs.hasOwnProperty(e)&&this.configs[e].env===this.getEnv())return{url:-1!==this.configs[e].url.indexOf("localhost")?this.configs[e].url:this.configs[e].url+this.alias,env:this.configs[e].env};throw new Error("invalid env")}},{key:"isValidMode",value:function(e,t){for(var n in e)if(e.hasOwnProperty(n)&&e[n].env===t)return!0;return!1}}]),C);function C(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:E;u(this,C),this.configs=e,this.setEnv(t)}var T=(t(O,null,[{key:"extendSearchParams",value:function(e,t,n){return e.replace(new RegExp("([?&]"+t+"(?=[=&#]|$)[^#&]*|(?=#|$))"),"&"+t+"="+encodeURIComponent(n)).replace(/^([^?&]+)&/,"$1?")}}]),O);function O(){u(this,O)}var x=(t(P,null,[{key:"generate",value:function(){if("undefined"==typeof window||void 0===window.crypto||void 0===window.crypto.getRandomValues)return this.random()+this.random()+"-"+this.random()+"-"+this.random()+"-"+this.random()+"-"+this.random()+this.random()+this.random();var e=new Uint16Array(8);return window.crypto.getRandomValues(e),this.hash(e[0])+this.hash(e[1])+"-"+this.hash(e[2])+"-"+this.hash(e[3])+"-"+this.hash(e[4])+"-"+this.hash(e[5])+this.hash(e[6])+this.hash(e[7])}},{key:"hash",value:function(e){for(var t=e.toString(16);t.length<4;)t="0"+t;return t}},{key:"random",value:function(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}}]),P);function P(){u(this,P)}var A="/wallet/flypay",R=(t(L,[{key:"getNetUrl",value:function(){return this.env.getConf().url+this.linkResource}},{key:"getUrl",value:function(){var e=this.getNetUrl(),t=this.getParams();for(var n in t)t.hasOwnProperty(n)&&(e=T.extendSearchParams(e,n,t[n]));return e}},{key:"setParams",value:function(e){this.params=y({},this.params,e)}},{key:"concatParams",value:function(e){for(var t in e)e.hasOwnProperty(t)&&e[t].length&&("string"!=typeof this.params[t]&&(this.params[t]=""),this.params[t].length?this.params[t]+=","+e[t]:this.params[t]+=e[t])}},{key:"getParams",value:function(){return this.params}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env.getEnv()}}]),L);function L(e){u(this,L),this.params={},this.widgetId=x.generate(),this.linkResource=e,this.env=new S([{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:o,url:"https://widget-sandbox."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}]),this.setParams({widget_id:this.widgetId})}var I=(t(U,null,[{key:"values",value:function(t){return Object.keys(t).map(function(e){return t[e]})}}]),U);function U(){u(this,U)}var N,D,M,j,F={CARD:"card",BANK_ACCOUNT:"bank_account",CHECKOUT:"checkout"},H={CARD_NAME:"card_name",CARD_NUMBER:"card_number",EXPIRE_MONTH:"expire_month",EXPIRE_YEAR:"expire_year",CARD_CCV:"card_ccv",ACCOUNT_NAME:"account_name",ACCOUNT_BSB:"account_bsb",ACCOUNT_NUMBER:"account_number",ACCOUNT_ROUTING:"account_routing",ACCOUNT_HOLDER_TYPE:"account_holder_type",ACCOUNT_BANK_NAME:"account_bank_name",ACCOUNT_TYPE:"account_type",FIRST_NAME:"first_name",LAST_NAME:"last_name",EMAIL:"email",PHONE:"phone",PHONE2:"phone2",ADDRESS_LINE1:"address_line1",ADDRESS_LINE2:"address_line2",ADDRESS_STATE:"address_state",ADDRESS_COUNTRY:"address_country",ADDRESS_CITY:"address_city",ADDRESS_POSTCODE:"address_postcode",ADDRESS_COMPANY:"address_company"},B={BACKGROUND_COLOR:"background_color",BACKGROUND_ACTIVE_COLOR:"background_active_color",TEXT_COLOR:"text_color",BORDER_COLOR:"border_color",ICON_SIZE:"icon_size",BUTTON_COLOR:"button_color",ERROR_COLOR:"error_color",SUCCESS_COLOR:"success_color",FONT_SIZE:"font_size",FONT_FAMILY:"font_family"},z={TITLE:"title",TITLE_H1:"title_h1",TITLE_H2:"title_h2",TITLE_H3:"title_h3",TITLE_H4:"title_h4",TITLE_H5:"title_h5",TITLE_H6:"title_h6",FINISH:"finish_text",TITLE_DESCRIPTION:"title_description",SUBMIT_BUTTON:"submit_button",SUBMIT_BUTTON_PROCESSING:"submit_button_processing"},q={SUBMIT_BUTTON:"submit_button",TABS:"tabs"},W={AMEX:"amex",AUSBC:"ausbc",DINERS:"diners",DISCOVER:"discover",JAPCB:"japcb",LASER:"laser",MASTERCARD:"mastercard",SOLO:"solo",VISA:"visa",VISA_WHITE:"visa_white"},V=[].concat(["brand_name","cart_border_color","reference","email","hdr_img","logo_img","pay_flow_color","first_name","last_name","address_line","address_line2","address_city","address_state","address_postcode","address_country","phone","hide_shipping_address"],["first_name","last_name","phone","tokenize","email","gender","date_of_birth","charge","statistics","hide_shipping_address"],["amount","currency","email","first_name","last_name","address_line","address_line2","address_city","address_state","address_postcode","address_country","phone"],["customer_storage_number","tokenise_algorithm"]);(D=N=N||{}).STRIPE="Stripe",D.FLYPAY="Flypay",D.PAYPAL="Paypal",D.MASTERCARD="MasterCard",(j=M=M||{}).GOOGLE="google",j.APPLE="apple";var K={CARD:"card",BANK_ACCOUNT:"bank_account",CHECKOUT:"checkout"},G={PAYMENT_SOURCE:"payment_source",CARD_PAYMENT_SOURCE_WITH_CVV:"card_payment_source_with_cvv",CARD_PAYMENT_SOURCE_WITHOUT_CVV:"card_payment_source_without_cvv"},J=(t(X,[{key:"setWebHookDestination",value:function(e){this.configs.webhook_destination=e}},{key:"setSuccessRedirectUrl",value:function(e){this.configs.success_redirect_url=e}},{key:"setErrorRedirectUrl",value:function(e){this.configs.error_redirect_url=e}},{key:"setFormFields",value:function(e){for(var t in Array.isArray(this.configs.defined_form_fields)||(this.configs.defined_form_fields=[]),e)e.hasOwnProperty(t)&&(-1!==I.values(H).indexOf(e[t].replace("*",""))?this.configs.defined_form_fields.push(e[t]):console.warn("Configuration::setFormFields: unsupported form field "+e[t]))}},{key:"setMeta",value:function(e){for(var t in e)e.hasOwnProperty(t)&&(-1!==V.indexOf(t)?this.configs.meta[t]=e[t]:console.warn("Configuration::setMeta: unsupported meta key "+t))}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"setLabel",value:function(e){this.configs.label=e}},{key:"getEnv",value:function(){return this.env.getEnv()}},{key:"createToken",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.send(e,function(e,t){if(200<=t&&t<300)return n(e.resource.data.configuration_token);void 0===e.error||void 0===e.error.message?i("unknown error"):i(e.error.message)})}},{key:"send",value:function(e,t){var n=new XMLHttpRequest;n.open("POST",this.getUrl(),!0),n.setRequestHeader("Content-Type","application/json; charset=UTF-8"),n.setRequestHeader("x-user-public-key",e),n.send(JSON.stringify(this.getConfigs())),n.onload=function(){var e={};try{e=JSON.parse(n.responseText)}catch(e){}t(e,n.status)}}},{key:"getConfigs",value:function(){return this.configs}},{key:"getUrl",value:function(){return this.env.getConf().url+"/v1/remote-action/configs"}}],[{key:"createEachToken",value:function(e,n,i,t){function r(t){n.hasOwnProperty(t)&&n[t].createToken(e,function(e){a[t]=e,u++,n.length===u&&X.finishCreatingEachToken(a,s,i,o)},function(e){s.push("gateway: "+n[t].getConfigs().predefined_fields.gateway_id+" | "+e),u++,n.length===u&&X.finishCreatingEachToken(a,s,i,o)})}var o=3<arguments.length&&void 0!==t?t:function(e){},a=new Array(n.length),s=[],u=0;for(var c in n)r(c)}},{key:"finishCreatingEachToken",value:function(e,t,n,i){1<=t.length?i(t):n(e)}}]),X);function X(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"default",t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:K.CARD,n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:G.PAYMENT_SOURCE;if(u(this,X),-1===I.values(K).indexOf(t))throw new Error("unsupported payment type");if(t===K.CHECKOUT)throw new Error('Payment type "checkout" is deprecated. Use CheckoutButton for this type of payments https://www.npmjs.com/package/@paydock/client-sdk#checkout-button');if(-1===I.values(G).indexOf(n))throw new Error("unsupported purpose");this.env=new S([{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}]),this.configs={purpose:n,meta:{},dynamic_fields_position:!0,predefined_fields:{gateway_id:e,type:t}}}var Z={INPUT:"input",SUBMIT_BUTTON:"submit_button",LABEL:"label",TITLE:"title",TITLE_DESCRIPTION:"title_description"},Q={ERROR:"error",FOCUS:"focus",HOVER:"hover"},$=[{element:Z.INPUT,states:[Q.FOCUS,Q.ERROR],styles:["color","border","border_radius","background_color","height","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","transition"]},{element:Z.SUBMIT_BUTTON,states:[Q.HOVER],styles:["color","border","border_radius","background_color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","transition","opacity"]},{element:Z.LABEL,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin"]},{element:Z.TITLE,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","text_align"]},{element:Z.TITLE_DESCRIPTION,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","text_align"]}],ee=(t(te,null,[{key:"check",value:function(e,t,n,i){for(var r in e)if(e.hasOwnProperty(r)&&e[r].element===t){if(-1===e[r].states.indexOf(n)&&n)return!1;for(var o in i)if(i.hasOwnProperty(o)&&-1===e[r].styles.indexOf(o.replace("-","_")))return!1;return!0}return!1}},{key:"encode",value:function(e,t,n){var i=[];for(var r in n)n.hasOwnProperty(r)&&i.push(r.replace("_","-")+":"+n[r]);var o=i.join(";");return t?e+"::"+t+"{"+o+"}":e+"{"+o+"}"}},{key:"decode",value:function(e){var t=(e.match("::(.*){")||["",null])[1],n=null!==t?(e.match("(.*)::")||["",""])[1].trim():(e.match("(.*){")||["",""])[1].trim(),i=(e.match("{(.*)}")||["",""])[1].split(";"),r={};for(var o in i)if(i.hasOwnProperty(o)){var a=i[o].split(":");!a&&2!==a.length||(r[a[0].trim()]=(a[1]||"").trim())}return{element:n,state:t,styles:r}}}]),te);function te(){u(this,te)}var ne=(t(ie,[{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"usePhoneCountryMask",value:function(e){return e?!e.only_countries||/^[a-z]+$/.test(e.only_countries.join(""))&&2*e.only_countries.length===e.only_countries.join("").length?!e.preferred_countries||/^[a-z]+$/.test(e.preferred_countries.join(""))&&2*e.preferred_countries.length===e.preferred_countries.join("").length?e.default_country&&2!==e.default_country.length?console.warn("Widget::usePhoneCountryMask[s: default_country - incorrect value length"):(this.link.setParams({use_country_phone_mask:!0}),e.only_countries&&this.link.setParams({phone_mask_only_countries:e.only_countries.join(",")}),e.preferred_countries&&this.link.setParams({phone_mask_preferred_countries:e.preferred_countries.join(",")}),void(e.default_country&&this.link.setParams({phone_mask_default_country:e.default_country}))):console.warn("Widget::usePhoneCountryMask[s: preferred_countries - unsupported symbols or incorrect length of value"):console.warn("Widget::usePhoneCountryMask[s: only_countries - unsupported symbols or incorrect length of value"):this.link.setParams({use_country_phone_mask:!0})}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"setTexts",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setText(t,e[t])}},{key:"setText",value:function(e,t){-1!==I.values(z).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setText[s: unsupported text param "+e)}},{key:"setElementStyle",value:function(e,t,n){var i=3===arguments.length?t:null,r=3===arguments.length?n:t;if(!ee.check($,e,i,r))return console.warn('Styles for "'+e+'" element with "'+(i||"default")+'" state was ignored because some of the arguments are unacceptable');this.link.concatParams({element_styles:ee.encode(e,i,r)})}},{key:"setFormValues",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormValue(t,e[t])}},{key:"setFormValue",value:function(e,t){return-1===I.values(H).indexOf(e)?console.warn("Widget::setFormValues[s: unsupported field "+e):/\,/.test(t)||/\:/.test(t)?console.warn("Widget::setFormValues[s: "+e+" - unsupported symbols (: or ,) in value"):void("string"==typeof this.link.getParams().form_values&&this.link.getParams().form_values.length?this.link.setParams({form_values:this.link.getParams().form_values+","+e+":"+t}):this.link.setParams({form_values:e+":"+t}))}},{key:"setFormLabels",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormLabel(t,e[t])}},{key:"setFormLabel",value:function(e,t){if(-1===I.values(H).indexOf(e))return console.warn("Widget::setFormLabel[s: unsupported field "+e);var n=null===t||""===t?" ":t;if(/\,/.test(n)||/\:/.test(n))return console.warn("Widget::setFormLabel[s: "+e+" - unsupported symbols (: or ,) in value");this.link.concatParams({form_labels:e+":"+n})}},{key:"setFormPlaceholders",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormPlaceholder(t,e[t])}},{key:"setFormPlaceholder",value:function(e,t){if(-1===I.values(H).indexOf(e))return console.warn("Widget::setFormPlaceholder[s: unsupported field "+e);var n=null===t||""===t?" ":t;if(/\,/.test(n)||/\:/.test(n))return console.warn("Widget::setFormPlaceholder[s: "+e+" - unsupported symbols (: or ,) in value");this.link.concatParams({form_placeholders:e+":"+n})}},{key:"setFormElements",value:function(e){var t=this;e.forEach(function(e){return t.setFormElement(e)})}},{key:"setFormElement",value:function(e){e.value&&this.setFormValue(e.field,e.value),e.label&&this.setFormLabel(e.field,e.label),e.placeholder&&this.setFormPlaceholder(e.field,e.placeholder)}},{key:"setIcons",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setIcon(t,e[t])}},{key:"setIcon",value:function(e,t){if(/\,/.test(t)||/\:/.test(t))return console.warn("Widget::setIcon[s: "+e+" - unsupported symbols (: or ,) in value");"string"==typeof this.link.getParams().icons&&this.link.getParams().icons.length?this.link.setParams({icons:this.link.getParams().icons+","+e+":"+t}):this.link.setParams({icons:e+":"+t})}},{key:"setHiddenElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::setHiddenElements: unsupported element "+e[i]));t.length&&this.link.concatParams({hidden_elements:t.join(",")})}},{key:"setRefId",value:function(e){this.link.setParams({ref_id:e})}},{key:"useGatewayFieldValidation",value:function(){this.link.setParams({fields_validation:!0})}},{key:"setSupportedCardIcons",value:function(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&(-1!==I.values(W).indexOf(e[n])?t.push(e[n]):console.warn("Widget::cardTypes: unsupported type of cards "+e[n]));t.length&&this.link.concatParams({supported_card_types:t.join(",")})}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){this.link.getEnv()}},{key:"loadIFrameUrl",value:function(t,e){var n=this,i=1<arguments.length&&void 0!==e?e:function(e){};if(this.link.setParams({configuration_tokens:""}),this.configTokens.length)return this.link.setParams({configuration_tokens:this.configTokens.join(",")}),t(this.link.getUrl());J.createEachToken(this.publicKey,this.configs,function(e){return n.link.concatParams({configuration_tokens:e.join(",")}),t(n.link.getUrl())},function(e){i(e)})}},{key:"setLanguage",value:function(e){this.link.setParams({language:e})}}]),ie);function ie(e,t){if(u(this,ie),this.configs=[],this.configTokens=[],this.link=new R("/remote-action"),this.link.setParams({public_key:e}),this.publicKey=e,!t||Array.isArray(t)&&!t.length)throw Error("configuration token is required");if("string"==typeof t)this.configTokens.push(t);else if(t instanceof J)this.configs.push(t);else if(Array.isArray(t)&&"string"==typeof t[0])this.configTokens=t;else{if(!(Array.isArray(t)&&t[0]instanceof J))throw Error("Unsupported type of configuration token");this.configs=t}}var re=(t(oe,null,[{key:"insertToInput",value:function(e,t,n){if(void 0!==n[t]){var i=document.querySelector(e);i&&(i.value=n[t])}}},{key:"subscribe",value:function(e,t,n){t.addEventListener?t.addEventListener(e,n):t.attachEvent("on"+e,n)}}]),oe);function oe(){u(this,oe)}var ae=(t(se,[{key:"isExist",value:function(){return!!this.getElement()}},{key:"getStyles",value:function(e){if(this.isExist()){var t=this.getElement().getAttribute("widget-style");if(!t)return{};var n=t.split(";");return void 0===n||n.length?this.convertConfigs(n,e):{}}}},{key:"on",value:function(e,t){this.isExist()&&re.subscribe(e,this.getElement(),t)}},{key:"getAttr",value:function(e){if(this.isExist()){var t=this.getElement(),n=[];for(var i in e)if(e.hasOwnProperty(i)){var r=e[i].replace(/_/g,"-"),o=t.getAttribute(r);o&&n.push(e[i]+":"+o)}return void 0===n||n.length?this.convertConfigs(n,e):{}}}},{key:"getElement",value:function(){return document.querySelector(this.selector)}},{key:"convertConfigs",value:function(e,t){var n={};for(var i in e)if(e.hasOwnProperty(i)){var r=e[i].split(":"),o=r[0].replace(/-/g,"_").trim();-1!==t.indexOf(o)&&(n[o]=r[1].trim())}return n}}]),se);function se(e){u(this,se),this.selector=e}var ue=(t(ce,[{key:"load",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.container.isExist()&&!this.isExist()){var i=document.createElement("iframe");i.setAttribute("src",e),n.title&&(i.title=n.title),this.container.getElement().appendChild(i)}}},{key:"loadFromHtml",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.container.isExist()&&!this.isExist()){var i=document.createElement("iframe");i.setAttribute("height","100%"),i.setAttribute("width","100%"),n.title&&(i.title=n.title),this.container.getElement().appendChild(i);var r=this.getElement().contentDocument;r.open(),r.write("<html><head><style>html, body {margin: 0;} iframe {border: 0; width: 100%}</style><title></title></head><body>{{content}}</body></html>".replace("{{content}}",e)),r.close()}}},{key:"remove",value:function(){if(this.container.isExist()&&this.isExist()){var e=this.getElement();this.container.getElement().removeChild(e)}}},{key:"show",value:function(){this.isExist()&&(this.setStyle("visibility","visible"),this.setStyle("display","block"))}},{key:"hide",value:function(e){var t=0<arguments.length&&void 0!==e&&e;this.isExist()&&(t?this.setStyle("visibility","hidden"):this.setStyle("display","none"))}},{key:"isExist",value:function(){return!!this.getElement()}},{key:"getElement",value:function(){return this.container.isExist()?this.container.getElement().querySelector("iframe"):null}},{key:"setStyle",value:function(e,t){this.getElement().style[e]=t}}]),ce);function ce(e){u(this,ce),this.container=e}var le={AFTER_LOAD:"afterLoad",SUBMIT:"submit",FINISH:"finish",VALIDATION_ERROR:"validationError",SYSTEM_ERROR:"systemError",CHECKOUT_SUCCESS:"checkoutSuccess",CHECKOUT_ERROR:"checkoutError",VALIDATION:"validation",SELECT:"select",UNSELECT:"unselect",NEXT:"next",PREV:"prev",META_CHANGE:"metaChange",RESIZE:"resize",CHARGE_AUTH_SUCCESS:"chargeAuthSuccess",CHARGE_AUTH_REJECT:"chargeAuthReject",CHARGE_AUTH_CANCELLED:"chargeAuthCancelled",ADDITIONAL_DATA_SUCCESS:"additionalDataCollectSuccess",ADDITIONAL_DATA_REJECT:"additionalDataCollectReject",CHARGE_AUTH:"chargeAuth"},de=(t(he,[{key:"emit",value:function(e){for(var t in this.listeners)this.listeners[t].event===e.event&&e.widget_id===this.listeners[t].widget_id&&this.listeners[t].listener.apply(this,[e])}},{key:"on",value:function(e,t,n){for(var i in le)le.hasOwnProperty(i)&&e===le[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}},{key:"subscribe",value:function(e,t){e.addEventListener?e.addEventListener("message",t):e.attachEvent("onmessage",t)}}]),he);function he(e){var n=this;u(this,he),this.listeners=[],e&&re.subscribe("message",e,function(e){var t=void 0;try{t=JSON.parse(e.data)}catch(e){}t&&n.emit(t)})}var pe={SUBMIT_FORM:"submit_form",CHANGE_TAB:"tab",HIDE_ELEMENTS:"hide_elements",SHOW_ELEMENTS:"show_elements",REFRESH_CHECKOUT:"refresh_checkout",UPDATE_FORM_VALUES:"update_form_values",INIT_CHECKOUT:"init_checkout"},fe=(t(ve,[{key:"push",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.iFrame.isExist()){-1===I.values(pe).indexOf(e)&&console.warn("unsupported trigger type");var i={trigger:e,destination:"widget.paydock",data:n};this.iFrame.getElement().contentWindow.postMessage(JSON.stringify(i),"*")}}}]),ve);function ve(e){u(this,ve),this.iFrame=e}var me=(t(ye,[{key:"getElement",value:function(){return document.querySelector(this.selector)}},{key:"isExist",value:function(){return!!this.getElement()}},{key:"beforeSubmit",value:function(t){var n=this;this.isExist()&&this.subscribe(this.getElement(),function(e){e.preventDefault(),n.intercepted=!0,t.apply(n,[])})}},{key:"continueSubmit",value:function(){var e=this;this.isExist()&&this.intercepted&&(this.intercepted=!1,setTimeout(function(){e.getElement().submit()},50))}},{key:"subscribe",value:function(e,t){e.addEventListener?e.addEventListener("submit",t):e.attachEvent("onsubmit",t)}}]),ye);function ye(e){u(this,ye),this.intercepted=!1,this.selector=e}var ge=(r(ke,ne),t(ke,[{key:"load",value:function(){var t=this;this.setStyles(this.container.getStyles(I.values(B))),this.setTexts(this.container.getAttr(I.values(z))),this.loadIFrameUrl(function(e){t.iFrame.load(e,{title:"Card details"}),t.afterLoad()},function(e){for(var t in console.error("Errors when creating a token[s, widget will not be load:"),e)e.hasOwnProperty(t)&&console.error("--- | "+e[t])})}},{key:"afterLoad",value:function(){var t=this;this.on(le.VALIDATION,function(e){t.validationData=e})}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().widget_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().widget_id,function(e){return t(e)})})}},{key:"trigger",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};this.triggerElement.push(e,n)}},{key:"getValidationState",value:function(){return this.validationData}},{key:"isValidForm",value:function(){return!!this.validationData.form_valid}},{key:"isInvalidField",value:function(e){var t=0<arguments.length&&void 0!==e?e:"";return!!this.validationData.invalid_fields&&-1!==this.validationData.invalid_fields.indexOf(t)}},{key:"isFieldErrorShowed",value:function(e){var t=0<arguments.length&&void 0!==e?e:"";return!!this.validationData.invalid_showed_fields&&-1!==this.validationData.invalid_showed_fields.indexOf(t)}},{key:"isInvalidFieldByValidator",value:function(e,t){var n=0<arguments.length&&void 0!==e?e:"";return!(this.validationData.validators&&!this.validationData.validators[t])&&-1!==this.validationData.validators[t].indexOf(n)}},{key:"hide",value:function(e){this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}},{key:"hideElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::hideElements: unsupported element "+e[i]));t.length&&this.trigger(pe.HIDE_ELEMENTS,{elements:t.join(",")})}},{key:"showElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::showElements: unsupported element "+e[i]));t.length&&this.trigger(pe.SHOW_ELEMENTS,{elements:t.join(",")})}},{key:"updateFormValues",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.updateFormValue(t,e[t])}},{key:"updateFormValue",value:function(e,t){return-1===I.values(H).indexOf(e)?console.warn("Widget::setFormValues[s: unsupported field "+e):/\,/.test(t)||/\:/.test(t)?console.warn("Widget::setFormValues[s: "+e+" - unsupported symbols (: or ,) in value"):void this.trigger(pe.UPDATE_FORM_VALUES,{form_values:e+":"+t})}},{key:"onFinishInsert",value:function(t,n){this.on(le.FINISH,function(e){re.insertToInput(t,n,e)})}},{key:"interceptSubmitForm",value:function(e){var t=this;this.setHiddenElements([q.SUBMIT_BUTTON]);var n=new me(e);n.beforeSubmit(function(){t.triggerElement.push(pe.SUBMIT_FORM,{}),t.event.on(le.FINISH,t.link.getParams().widget_id,function(){n.continueSubmit()})})}},{key:"useCheckoutAutoSubmit",value:function(){var t=this;this.setHiddenElements([q.SUBMIT_BUTTON]),this.on(le.CHECKOUT_SUCCESS,function(e){t.trigger(pe.SUBMIT_FORM)}),this.on(le.VALIDATION_ERROR,function(e){t.trigger(pe.REFRESH_CHECKOUT)}),this.on(le.SYSTEM_ERROR,function(e){t.trigger(pe.REFRESH_CHECKOUT)})}},{key:"useAutoResize",value:function(){var t=this;this.on(le.RESIZE,function(e){t.iFrame.getElement()&&(t.iFrame.getElement().scrolling="no",e.height&&t.iFrame.setStyle("height",e.height+"px"))})}}]),ke);function ke(e,t,n){u(this,ke);var i=c(this,(ke.__proto__||Object.getPrototypeOf(ke)).call(this,t,n));return i.validationData={},i.container=new ae(e),i.iFrame=new ue(i.container),i.triggerElement=new fe(i.iFrame),i.event=new de(window),i}var _e=(r(Ee,ge),t(Ee,[{key:"setWebHookDestination",value:function(e){this.configs[0].setWebHookDestination(e)}},{key:"setSuccessRedirectUrl",value:function(e){this.configs[0].setSuccessRedirectUrl(e)}},{key:"setErrorRedirectUrl",value:function(e){this.configs[0].setErrorRedirectUrl(e)}},{key:"setFormFields",value:function(e){this.configs[0].setFormFields(e)}},{key:"setFormElements",value:function(e){var t=this;e.forEach(function(e){return t.setFormElement(e)})}},{key:"setFormElement",value:function(e){this.configs[0].setFormFields([e.field]),a(Ee.prototype.__proto__||Object.getPrototypeOf(Ee.prototype),"setFormElement",this).call(this,y(y({},e),{field:e.field.replace("*","")}))}},{key:"setMeta",value:function(e){this.configs[0].setMeta(e)}}]),Ee);function Ee(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default",i=arguments[3],r=arguments[4];u(this,Ee);var o=new J(n,i,r);return c(this,(Ee.__proto__||Object.getPrototypeOf(Ee)).call(this,e,t,o))}var be=(t(we,[{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env.getEnv()}},{key:"getUrl",value:function(){return this.env.getConf().url+this.getLink()}},{key:"create",value:function(e,t,n,i){var r=this,o=new XMLHttpRequest;o.onload=function(){r.parser(o.responseText,o.status,n,i)},o.open("POST",this.getUrl(),!0),o.setRequestHeader("Content-Type","application/json; charset=UTF-8"),o.setRequestHeader("x-user-public-key",e),o.send(JSON.stringify(t))}},{key:"get",value:function(e,t,n){var i=this,r=new XMLHttpRequest;r.onload=function(){i.parser(r.responseText,r.status,t,n)},r.open("GET",this.getUrl(),!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),r.setRequestHeader("x-user-public-key",e),r.send()}},{key:"parser",value:function(e,t,n,i){var r={};try{r=JSON.parse(e)}catch(e){}if(200<=t&&t<300||302===t)return n(r.resource.data,t);i(r.error||{message:"unknown error"},t)}}]),we);function we(){u(this,we),this.env=new S([{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}])}var Se=(r(Ce,be),t(Ce,[{key:"getLink",value:function(){return"/v1/payment_sources/external_checkout"}},{key:"setDescriptions",value:function(e){this.body.description=e}},{key:"setMeta",value:function(e){for(var t in e)e.hasOwnProperty(t)&&(-1!==V.indexOf(t)?this.body.meta[t]=e[t]:console.warn("ExternalCheckout::setMeta: unsupported meta key "+t))}},{key:"getConfigs",value:function(){return this.body}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e,t){};this.create(e,this.getConfigs(),function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error","unknown_error"):i(e.message,e.code)})}}]),Ce);function Ce(e,t,n){u(this,Ce);var i=c(this,(Ce.__proto__||Object.getPrototypeOf(Ce)).call(this));return i.body={gateway_id:e,meta:{},success_redirect_url:t,error_redirect_url:n,redirect_url:t},i}var Te=(r(Oe,be),t(Oe,[{key:"getLink",value:function(){return"/v1/payment_sources/external_checkout/:token".replace(":token",this.token)}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.get(e,function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error"):i(e.message)})}}]),Oe);function Oe(e){u(this,Oe);var t=c(this,(Oe.__proto__||Object.getPrototypeOf(Oe)).call(this));return t.token=e,t}var xe=(t(Pe,[{key:"emit",value:function(e,t){var n=this.events[e];n&&n.forEach(function(e){e.call(null,t)})}},{key:"subscribe",value:function(e,t){var n=this;return this.events[e]||(this.events[e]=[]),this.events[e].push(t),function(){n.events[e]=n.events[e].filter(function(e){return t!==e})}}}]),Pe);function Pe(){u(this,Pe),this.events={}}var Ae='\n <div class="cs-loader">\n <div class="cs-loader-inner">\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n </div>\n </div>\n',Re="\n <style> \n .cs-loader {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n }\n \n .cs-loader-inner {\n transform: translateY(-50%);\n top: 50%;\n position: absolute;\n width: calc(100% - 200px);\n color: #8e8d8c;\n padding: 0 100px;\n text-align: center;\n }\n \n \n .cs-loader-inner label {\n font-size: 20px;\n opacity: 0;\n display:inline-block;\n }\n \n @keyframes lol {\n 0% {\n opacity: 0;\n transform: translateX(-300px);\n }\n 33% {\n opacity: 1;\n transform: translateX(0px);\n }\n 66% {\n opacity: 1;\n transform: translateX(0px);\n }\n 100% {\n opacity: 0;\n transform: translateX(300px);\n }\n }\n \n @-webkit-keyframes lol {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-300px);\n }\n 33% {\n opacity: 1;\n -webkit-transform: translateX(0px);\n }\n 66% {\n opacity: 1;\n -webkit-transform: translateX(0px);\n }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(300px);\n -moz-transform: translateX(300px);\n }\n }\n \n .cs-loader-inner label:nth-child(6) {\n -webkit-animation: lol 3s infinite ease-in-out;\n -moz-animation: lol 3s infinite ease-in-out;\n animation: lol 3s infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(5) {\n -webkit-animation: lol 3s 100ms infinite ease-in-out;\n -moz-animation: lol 3s 100ms infinite ease-in-out;\n animation: lol 3s 100ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(4) {\n -webkit-animation: lol 3s 200ms infinite ease-in-out;\n -moz-animation: lol 3s 200ms infinite ease-in-out;\n animation: lol 3s 200ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(3) {\n -webkit-animation: lol 3s 300ms infinite ease-in-out;\n -moz-animation: lol 3s 300ms infinite ease-in-out;\n animation: lol 3s 300ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(2) {\n -webkit-animation: lol 3s 400ms infinite ease-in-out;\n -moz-animation: lol 3s 400ms infinite ease-in-out;\n animation: lol 3s 400ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(1) {\n -webkit-animation: lol 3s 500ms infinite ease-in-out;\n -moz-animation: lol 3s 500ms infinite ease-in-out;\n animation: lol 3s 500ms infinite ease-in-out;\n }\n </style>\n",Le=(t(Ie,null,[{key:"isFacebook",value:function(){return-1!==navigator.userAgent.indexOf("FBSN/iOS")&&-1!==navigator.userAgent.indexOf("AppleWebKit")&&-1!==navigator.userAgent.indexOf("(KHTML, like Gecko)")}},{key:"isInstagram",value:function(){return-1!==navigator.userAgent.indexOf("iOS")&&-1!==navigator.userAgent.indexOf("Instagram")&&-1!==navigator.userAgent.indexOf("(KHTML, like Gecko)")}},{key:"isSupportPopUp",value:function(){return!this.isFacebook()&&!this.isInstagram()}},{key:"getLanguage",value:function(){return window.navigator.language||""}},{key:"getTimezoneOffset",value:function(){return(new Date).getTimezoneOffset()}},{key:"getBrowserName",value:function(){var e=navigator.userAgent;return-1<e.indexOf("Firefox")?"Mozilla Firefox":-1<e.indexOf("Opera")?"Opera":-1<e.indexOf("Trident")?"Microsoft Internet Explorer":-1<e.indexOf("Edge")?"Microsoft Edge":-1<e.indexOf("Chrome")?"Google Chrome or Chromium":-1<e.indexOf("Safari")?"Apple Safari":"unknown"}},{key:"isJavaEnabled",value:function(){return navigator.javaEnabled()}},{key:"getColorDepth",value:function(){return screen.colorDepth}},{key:"getScreenHeight",value:function(){return screen.height}},{key:"getScreenWidth",value:function(){return screen.width}}]),Ie);function Ie(){u(this,Ie)}var Ue="close",Ne="focus",De=(t(Me,[{key:"initControl",value:function(){if(!this.isInit()&&this.showControl){if(!Le.isSupportPopUp())return this.createLoader();this.createTemplate(),this.createStyles(),this.eventHandler()}}},{key:"initLoader",value:function(){!this.isInit()&&this.showLoader&&(this.createStyles(),this.createLoader())}},{key:"eventHandler",value:function(){var e=this,t=document.querySelector("[data-close]"),n=document.querySelector("[data-continue]");t&&re.subscribe("click",t,function(){return e.eventEmitter.emit(Ue,{})}),n&&re.subscribe("click",n,function(){return e.eventEmitter.emit(Ne,{})})}},{key:"clear",value:function(){(this.style||this.overlay)&&(this.style.parentNode.removeChild(this.style),this.overlay.parentNode.removeChild(this.overlay),this.style=null,this.overlay=null)}},{key:"createLoader",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0];this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=Re+Ae,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createTemplate",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0],n=String('\n <div class="checkout-container">\n <strong class="checkout-title" data-title>{{title}}</strong>\n <p data-description>{{description}}</p>\n <a href="#" data-continue>Continue</a>\n <a href="#" data-close>Close</a>\n </div>\n');n=(n=n.replace("{{description}}",this.description)).replace("{{title}}",this.title),this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=n,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createStyles",value:function(){var e=document.head||document.getElementsByTagName("head")[0],t=String("\n .hide-continue-button [data-continue] {\n display: none;\n }\n \n .checkout-overlay .cs-loader-inner {\n color: #ddd;\n }\n\n .checkout-overlay { \n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: rgba(0,0,0, 0.5);\n text-align: center;\n color: #fff;\n opacity: 0;\n }\n .checkout-overlay.display { \n opacity: 1;\n transition: opacity 0.7s ease-out;\n }\n .checkout-overlay a { color: #00f; }\n .checkout-container {\n position: absolute;\n top: 50%;\n left: 0;\n width: 100%;\n margin-top: -{{width}}px;\n }\n .checkout-title {\n font-size: 24px;\n display: block;\n text-transform: uppercase;\n }\n [data-close] {\n position: fixed;\n right: 32px;\n top: 32px;\n width: 32px;\n height: 32px;\n opacity: 0.3;\n overflow: hidden;\n text-indent: -9999px;\n }\n [data-close]:hover { opacity: 1; }\n [data-close]:before, [data-close]:after {\n position: absolute;\n left: 15px;\n content: ' ';\n height: 33px;\n width: 2px;\n background-color: #00f;\n }\n [data-close]:before { transform: rotate(45deg); }\n [data-close]:after { transform: rotate(-45deg); }\n"),n=document.querySelector(".checkout-container");t=t.replace("{{width}}",n?String(n.offsetHeight/2):"0"),this.style=document.createElement("style"),this.style.type="text/css",this.style.appendChild(document.createTextNode(t)),e.appendChild(this.style)}},{key:"setBackdropDescription",value:function(e){this.description=e}},{key:"setBackdropTitle",value:function(e){this.title=e}},{key:"onTrigger",value:function(e,t){this.eventEmitter.subscribe(e,t)}},{key:"isInit",value:function(){return!(!this.overlay||!this.style)}},{key:"hideContinueControl",value:function(){this.isInit()&&this.overlay.classList.add("hide-continue-button")}},{key:"turnOffControl",value:function(){this.showControl=!1}},{key:"turnOffLoader",value:function(){this.showLoader=!1}}]),Me);function Me(){u(this,Me),this.description="Don't see the secure checkout browser? We'll help you re-launch the window to complete your purchase",this.title="Checkout",this.overlay=null,this.style=null,this.showControl=!0,this.showLoader=!0,this.eventEmitter=new xe}var je={EXTERNAL_CHECKOUT_TOKEN:"external_checkout_token",CHECKOUT_TOKEN:"checkout_token",BANK_ACCOUNT:"bank_account",CARD:"card"},Fe=(r(He,be),t(He,[{key:"getLink",value:function(){return"/v1/payment_sources/tokens"}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.create(e,this.getConfigs(),function(e,t){return n(e)},function(e,t){void 0===e.message?i("unknown error"):i(e.message)})}},{key:"getConfigs",value:function(){return this.body}}]),He);function He(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:je.CARD;u(this,He);var i=c(this,(He.__proto__||Object.getPrototypeOf(He)).call(this));switch(i.body={gateway_id:e,type:n},n){case je.CARD:case je.BANK_ACCOUNT:delete t.gateway_id,delete t.type,delete t.checkout_token,i.body=y(i.body,t);break;case je.CHECKOUT_TOKEN:case je.EXTERNAL_CHECKOUT_TOKEN:i.body.checkout_token=t;break;default:throw new Error("Unsupported type of PaymentSourceToken")}return i}var Be="success",ze="declined",qe="close",We="referred",Ve="error",Ke=(t(Ye,[{key:"continue",value:function(){}},{key:"next",value:function(){}},{key:"stop",value:function(){}},{key:"error",value:function(e,t,n){n(!0)}},{key:"setCustomRedirectUri",value:function(e){this.customRedirectUti=e}},{key:"setEnv",value:function(e,t){this.widgetEnv.setEnv(e,t)}},{key:"setBackgroundTitle",value:function(e){this.background.setBackdropTitle(e)}},{key:"setBackgroundDescription",value:function(e){this.background.setBackdropDescription(e)}},{key:"turnOffBackdrop",value:function(){this.background.turnOffControl(),this.background.turnOffLoader()}}]),Ye);function Ye(){var e=this;u(this,Ye),this.customRedirectUti=null,this.background=new De,this.background.onTrigger(Ne,function(){return e.continue()}),this.background.onTrigger(Ue,function(){return e.stop()}),this.widgetEnv=new S([{env:o,url:"https://widget-sandbox."},{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}])}var Ge="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function Je(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}function Xe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Ze(e,t){return e(t={exports:{}},t.exports),t.exports}Xe(Ze(function(e){!function r(o,a,s){function u(t,e){if(!a[t]){if(!o[t]){if(!e&&Je)return Je();if(c)return c(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=a[t]={exports:{}};o[t][0].call(i.exports,function(e){return u(o[t][1][e]||e)},i,i.exports,r,o,a,s)}return a[t].exports}for(var c=Je,e=0;e<s.length;e++)u(s[e]);return u}({1:[function(e,t,n){function i(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function o(t){if(l===setTimeout)return setTimeout(t,0);if((l===i||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}function a(){v&&p&&(v=!1,p.length?f=p.concat(f):m=-1,f.length&&s())}function s(){if(!v){var e=o(a);v=!0;for(var t=f.length;t;){for(p=f,f=[];++m<t;)p&&p[m].run();m=-1,t=f.length}p=null,v=!1,function(t){if(d===clearTimeout)return clearTimeout(t);if((d===r||!d)&&clearTimeout)return d=clearTimeout,clearTimeout(t);try{d(t)}catch(e){try{return d.call(null,t)}catch(e){return d.call(this,t)}}}(e)}}function u(e,t){this.fun=e,this.array=t}function c(){}var l,d,h=t.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:i}catch(e){l=i}try{d="function"==typeof clearTimeout?clearTimeout:r}catch(e){d=r}}();var p,f=[],v=!1,m=-1;h.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];f.push(new u(e,t)),1!==f.length||v||o(s)},u.prototype.run=function(){this.fun.apply(null,this.array)},h.title="browser",h.browser=!0,h.env={},h.argv=[],h.version="",h.versions={},h.on=c,h.addListener=c,h.once=c,h.off=c,h.removeListener=c,h.removeAllListeners=c,h.emit=c,h.prependListener=c,h.prependOnceListener=c,h.listeners=function(e){return[]},h.binding=function(e){throw new Error("process.binding is not supported")},h.cwd=function(){return"/"},h.chdir=function(e){throw new Error("process.chdir is not supported")},h.umask=function(){return 0}},{}],2:[function(e,i,r){(function(K){!function(e){if("function"==typeof bootstrap)bootstrap("promise",e);else if("object"==(void 0===r?"undefined":Y(r))&&"object"==(void 0===i?"undefined":Y(i)))i.exports=e();else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeQ=e}else{if("undefined"==typeof window&&"undefined"==typeof self)throw new Error("This environment was not anticipated by Q. Please file a bug.");var t="undefined"!=typeof window?window:self,n=t.Q;t.Q=e(),t.Q.noConflict=function(){return t.Q=n,this}}}(function(){function e(e){return function(){return x.apply(e,arguments)}}function s(e,t){if(b&&t.stack&&"object"==(void 0===e?"undefined":Y(e))&&null!==e&&e.stack){for(var n=[],i=t;i;i=i.source)i.stack&&(!e.__minimumStackCounter__||e.__minimumStackCounter__>i.stackCounter)&&(U(e,"__minimumStackCounter__",{value:i.stackCounter,configurable:!0}),n.unshift(i.stack));n.unshift(e.stack);var r=function(e){for(var t=e.split("\n"),n=[],i=0;i<t.length;++i){var r=t[i];a(r)||(-1!==(o=r).indexOf("(module.js:")||-1!==o.indexOf("(node.js:"))||!r||n.push(r)}var o;return n.join("\n")}(n.join("\n"+j+"\n"));U(e,"stack",{value:r,configurable:!0})}}function r(e){var t=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(e);if(t)return[t[1],Number(t[2])];var n=/at ([^ ]+):(\d+):(?:\d+)$/.exec(e);if(n)return[n[1],Number(n[2])];var i=/.*@(.+):(\d+)$/.exec(e);return i?[i[1],Number(i[2])]:void 0}function a(e){var t=r(e);if(t){var n=t[0],i=t[1];return n===S&&T<=i&&i<=V}}function t(){if(b)try{throw new Error}catch(e){var t=e.stack.split("\n"),n=r(0<t[0].indexOf("@")?t[1]:t[2]);if(!n)return;return S=n[0],n[1]}}function u(e){return e instanceof l?e:o(e)?(t=e,n=c(),u.nextTick(function(){try{t.then(n.resolve,n.reject,n.notify)}catch(e){n.reject(e)}}),n.promise):m(e);var t,n}function c(){function t(n){r=n,u.longStackSupport&&b&&(i.source=n),A(o,function(e,t){u.nextTick(function(){n.promiseDispatch.apply(n,t)})},void 0),a=o=void 0}var r,o=[],a=[],e=I(c.prototype),i=I(l.prototype);if(i.promiseDispatch=function(e,t,n){var i=P(arguments);o?(o.push(i),"when"===t&&n[1]&&a.push(n[1])):u.nextTick(function(){r.promiseDispatch.apply(r,i)})},i.valueOf=function(){if(o)return i;var e=h(r);return p(e)&&(r=e),e},i.inspect=function(){return r?r.inspect():{state:"pending"}},u.longStackSupport&&b)try{throw new Error}catch(t){i.stack=t.stack.substring(t.stack.indexOf("\n")+1),i.stackCounter=F++}return e.promise=i,e.resolve=function(e){r||t(u(e))},e.fulfill=function(e){r||t(m(e))},e.reject=function(e){r||t(v(e))},e.notify=function(n){r||A(a,function(e,t){u.nextTick(function(){t(n)})},void 0)},e}function n(e){if("function"!=typeof e)throw new TypeError("resolver must be a function.");var t=c();try{e(t.resolve,t.reject,t.notify)}catch(e){t.reject(e)}return t.promise}function i(r){return n(function(e,t){for(var n=0,i=r.length;n<i;n++)u(r[n]).then(e,t)})}function l(r,o,t){void 0===o&&(o=function(e){return v(new Error("Promise does not support operation: "+e))}),void 0===t&&(t=function(){return{state:"unknown"}});var a=I(l.prototype);if(a.promiseDispatch=function(e,t,n){var i;try{i=r[t]?r[t].apply(a,n):o.call(a,t,n)}catch(e){i=v(e)}e&&e(i)},a.inspect=t){var e=t();"rejected"===e.state&&(a.exception=e.reason),a.valueOf=function(){var e=t();return"pending"===e.state||"rejected"===e.state?a:e.value}}return a}function d(e,t,n,i){return u(e).then(t,n,i)}function h(e){if(p(e)){var t=e.inspect();if("fulfilled"===t.state)return t.value}return e}function p(e){return e instanceof l}function o(e){return(t=e)===Object(t)&&"function"==typeof e.then;var t}function f(){B.length=0,z.length=0,W=W||!0}function v(t){var e,n,i=l({when:function(e){return e&&function(t){if(W){var n=R(z,t);-1!==n&&("object"==(void 0===K?"undefined":Y(K))&&"function"==typeof K.emit&&u.nextTick.runAfter(function(){var e=R(q,t);-1!==e&&(K.emit("rejectionHandled",B[n],t),q.splice(e,1))}),z.splice(n,1),B.splice(n,1))}}(this),e?e(t):this}},function(){return this},function(){return{state:"rejected",reason:t}});return e=i,n=t,W&&("object"==(void 0===K?"undefined":Y(K))&&"function"==typeof K.emit&&u.nextTick.runAfter(function(){-1!==R(z,e)&&(K.emit("unhandledRejection",n,e),q.push(e))}),z.push(e),n&&void 0!==n.stack?B.push(n.stack):B.push("(no stack) "+n)),i}function m(n){return l({when:function(){return n},get:function(e){return n[e]},set:function(e,t){n[e]=t},delete:function(e){delete n[e]},post:function(e,t){return null==e?n.apply(void 0,t):n[e].apply(n,t)},apply:function(e,t){return n.apply(e,t)},keys:function(){return D(n)}},void 0,function(){return{state:"fulfilled",value:n}})}function y(e,t,n){return u(e).spread(t,n)}function g(e,t,n){return u(e).dispatch(t,n)}function k(e){return d(e,function(r){var o=0,a=c();return A(r,function(e,t,n){var i;p(t)&&"fulfilled"===(i=t.inspect()).state?r[n]=i.value:(++o,d(t,function(e){r[n]=e,0==--o&&a.resolve(r)},a.reject,function(e){a.notify({index:n,value:e})}))},void 0),0===o&&a.resolve(r),a.promise})}function _(r){if(0===r.length)return u.resolve();var o=u.defer(),a=0;return A(r,function(e,t,n){var i=r[n];a++,d(i,function(e){o.resolve(e)},function(e){0==--a&&(e.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+e.message,o.reject(e))},function(e){o.notify({index:n,value:e})})},void 0),o.promise}function E(e){return d(e,function(e){return e=L(e,u),d(k(L(e,function(e){return d(e,w,w)})),function(){return e})})}var b=!1;try{throw new Error}catch(e){b=!!e.stack}function w(){}var S,C,T=t(),O=function(){function n(){for(var e,t;r.next;)e=(r=r.next).task,r.task=void 0,(t=r.domain)&&(r.domain=void 0,t.enter()),i(e,t);for(;u.length;)i(e=u.pop());o=!1}function i(e,t){try{e()}catch(e){if(s)throw t&&t.exit(),setTimeout(n,0),t&&t.enter(),e;setTimeout(function(){throw e},0)}t&&t.exit()}var r={task:void 0,next:null},t=r,o=!1,a=void 0,s=!1,u=[];if(O=function(e){t=t.next={task:e,domain:s&&K.domain,next:null},o||(o=!0,a())},"object"==(void 0===K?"undefined":Y(K))&&"[object process]"===K.toString()&&K.nextTick)s=!0,a=function(){K.nextTick(n)};else if("function"==typeof setImmediate)a="undefined"!=typeof window?setImmediate.bind(window,n):function(){setImmediate(n)};else if("undefined"!=typeof MessageChannel){var e=new MessageChannel;e.port1.onmessage=function(){a=c,(e.port1.onmessage=n)()};var c=function(){e.port2.postMessage(0)};a=function(){setTimeout(n,0),c()}}else a=function(){setTimeout(n,0)};return O.runAfter=function(e){u.push(e),o||(o=!0,a())},O}(),x=Function.call,P=e(Array.prototype.slice),A=e(Array.prototype.reduce||function(e,t){var n=0,i=this.length;if(1===arguments.length)for(;;){if(n in this){t=this[n++];break}if(++n>=i)throw new TypeError}for(;n<i;n++)n in this&&(t=e(t,this[n],n));return t}),R=e(Array.prototype.indexOf||function(e){for(var t=0;t<this.length;t++)if(this[t]===e)return t;return-1}),L=e(Array.prototype.map||function(i,r){var o=this,a=[];return A(o,function(e,t,n){a.push(i.call(r,t,n,o))},void 0),a}),I=Object.create||function(e){function t(){}return t.prototype=e,new t},U=Object.defineProperty||function(e,t,n){return e[t]=n.value,e},N=e(Object.prototype.hasOwnProperty),D=Object.keys||function(e){var t=[];for(var n in e)N(e,n)&&t.push(n);return t},M=e(Object.prototype.toString);C="undefined"!=typeof ReturnValue?ReturnValue:function(e){this.value=e};var j="From previous event:";(u.resolve=u).nextTick=O,u.longStackSupport=!1;var F=1;"object"==(void 0===K?"undefined":Y(K))&&K&&K.env&&K.env.Q_DEBUG&&(u.longStackSupport=!0),(u.defer=c).prototype.makeNodeResolver=function(){var n=this;return function(e,t){e?n.reject(e):2<arguments.length?n.resolve(P(arguments,1)):n.resolve(t)}},u.Promise=n,(u.promise=n).race=i,n.all=k,n.reject=v,(n.resolve=u).passByCopy=function(e){return e},l.prototype.passByCopy=function(){return this},u.join=function(e,t){return u(e).join(t)},l.prototype.join=function(e){return u([this,e]).spread(function(e,t){if(e===t)return e;throw new Error("Q can't join: not the same: "+e+" "+t)})},u.race=i,l.prototype.race=function(){return this.then(u.race)},(u.makePromise=l).prototype.toString=function(){return"[object Promise]"},l.prototype.then=function(t,n,r){var i=this,o=c(),a=!1;return u.nextTick(function(){i.promiseDispatch(function(e){a||(a=!0,o.resolve(function(e){try{return"function"==typeof t?t(e):e}catch(e){return v(e)}}(e)))},"when",[function(e){a||(a=!0,o.resolve(function(e){if("function"==typeof n){s(e,i);try{return n(e)}catch(e){return v(e)}}return v(e)}(e)))}])}),i.promiseDispatch(void 0,"when",[void 0,function(e){var t,n,i=!1;try{n=e,t="function"==typeof r?r(n):n}catch(e){if(i=!0,!u.onerror)throw e;u.onerror(e)}i||o.notify(t)}]),o.promise},u.tap=function(e,t){return u(e).tap(t)},l.prototype.tap=function(t){return t=u(t),this.then(function(e){return t.fcall(e).thenResolve(e)})},u.when=d,l.prototype.thenResolve=function(e){return this.then(function(){return e})},u.thenResolve=function(e,t){return u(e).thenResolve(t)},l.prototype.thenReject=function(e){return this.then(function(){throw e})},u.thenReject=function(e,t){return u(e).thenReject(t)},u.nearer=h,u.isPromise=p,u.isPromiseAlike=o,u.isPending=function(e){return p(e)&&"pending"===e.inspect().state},l.prototype.isPending=function(){return"pending"===this.inspect().state},u.isFulfilled=function(e){return!p(e)||"fulfilled"===e.inspect().state},l.prototype.isFulfilled=function(){return"fulfilled"===this.inspect().state},u.isRejected=function(e){return p(e)&&"rejected"===e.inspect().state},l.prototype.isRejected=function(){return"rejected"===this.inspect().state};var H,B=[],z=[],q=[],W=!0;u.resetUnhandledRejections=f,u.getUnhandledReasons=function(){return B.slice()},u.stopUnhandledRejectionTracking=function(){f(),W=!1},f(),u.reject=v,u.fulfill=m,u.master=function(n){return l({isDef:function(){}},function(e,t){return g(n,e,t)},function(){return u(n).inspect()})},u.spread=y,l.prototype.spread=function(t,e){return this.all().then(function(e){return t.apply(void 0,e)},e)},u.async=function(t){return function(){function e(e,t){var n;if("undefined"==typeof StopIteration){try{n=i[e](t)}catch(e){return v(e)}return n.done?u(n.value):d(n.value,r,o)}try{n=i[e](t)}catch(e){return function(e){return"[object StopIteration]"===M(e)||e instanceof C}(e)?u(e.value):v(e)}return d(n,r,o)}var i=t.apply(this,arguments),r=e.bind(e,"next"),o=e.bind(e,"throw");return r()}},u.spawn=function(e){u.done(u.async(e)())},u.return=function(e){throw new C(e)},u.promised=function(n){return function(){return y([this,k(arguments)],function(e,t){return n.apply(e,t)})}},u.dispatch=g,l.prototype.dispatch=function(e,t){var n=this,i=c();return u.nextTick(function(){n.promiseDispatch(i.resolve,e,t)}),i.promise},u.get=function(e,t){return u(e).dispatch("get",[t])},l.prototype.get=function(e){return this.dispatch("get",[e])},u.set=function(e,t,n){return u(e).dispatch("set",[t,n])},l.prototype.set=function(e,t){return this.dispatch("set",[e,t])},u.del=u.delete=function(e,t){return u(e).dispatch("delete",[t])},l.prototype.del=l.prototype.delete=function(e){return this.dispatch("delete",[e])},u.mapply=u.post=function(e,t,n){return u(e).dispatch("post",[t,n])},l.prototype.mapply=l.prototype.post=function(e,t){return this.dispatch("post",[e,t])},u.send=u.mcall=u.invoke=function(e,t){return u(e).dispatch("post",[t,P(arguments,2)])},l.prototype.send=l.prototype.mcall=l.prototype.invoke=function(e){return this.dispatch("post",[e,P(arguments,1)])},u.fapply=function(e,t){return u(e).dispatch("apply",[void 0,t])},l.prototype.fapply=function(e){return this.dispatch("apply",[void 0,e])},u.try=u.fcall=function(e){return u(e).dispatch("apply",[void 0,P(arguments,1)])},l.prototype.fcall=function(){return this.dispatch("apply",[void 0,P(arguments)])},u.fbind=function(e){var t=u(e),n=P(arguments,1);return function(){return t.dispatch("apply",[this,n.concat(P(arguments))])}},l.prototype.fbind=function(){var e=this,t=P(arguments);return function(){return e.dispatch("apply",[this,t.concat(P(arguments))])}},u.keys=function(e){return u(e).dispatch("keys",[])},l.prototype.keys=function(){return this.dispatch("keys",[])},u.all=k,l.prototype.all=function(){return k(this)},u.any=_,l.prototype.any=function(){return _(this)},u.allResolved=(H=E,function(){return"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn("allResolved is deprecated, use allSettled instead.",new Error("").stack),H.apply(H,arguments)}),l.prototype.allResolved=function(){return E(this)},u.allSettled=function(e){return u(e).allSettled()},l.prototype.allSettled=function(){return this.then(function(e){return k(L(e,function(e){function t(){return e.inspect()}return(e=u(e)).then(t,t)}))})},u.fail=u.catch=function(e,t){return u(e).then(void 0,t)},l.prototype.fail=l.prototype.catch=function(e){return this.then(void 0,e)},u.progress=function(e,t){return u(e).then(void 0,void 0,t)},l.prototype.progress=function(e){return this.then(void 0,void 0,e)},u.fin=u.finally=function(e,t){return u(e).finally(t)},l.prototype.fin=l.prototype.finally=function(t){if(!t||"function"!=typeof t.apply)throw new Error("Q can't apply finally callback");return t=u(t),this.then(function(e){return t.fcall().then(function(){return e})},function(e){return t.fcall().then(function(){throw e})})},u.done=function(e,t,n,i){return u(e).done(t,n,i)},l.prototype.done=function(e,t,n){var i=function(e){u.nextTick(function(){if(s(e,r),!u.onerror)throw e;u.onerror(e)})},r=e||t||n?this.then(e,t,n):this;"object"==(void 0===K?"undefined":Y(K))&&K&&K.domain&&(i=K.domain.bind(i)),r.then(void 0,i)},u.timeout=function(e,t,n){return u(e).timeout(t,n)},l.prototype.timeout=function(e,t){var n=c(),i=setTimeout(function(){t&&"string"!=typeof t||((t=new Error(t||"Timed out after "+e+" ms")).code="ETIMEDOUT"),n.reject(t)},e);return this.then(function(e){clearTimeout(i),n.resolve(e)},function(e){clearTimeout(i),n.reject(e)},n.notify),n.promise},u.delay=function(e,t){return void 0===t&&(t=e,e=void 0),u(e).delay(t)},l.prototype.delay=function(n){return this.then(function(e){var t=c();return setTimeout(function(){t.resolve(e)},n),t.promise})},u.nfapply=function(e,t){return u(e).nfapply(t)},l.prototype.nfapply=function(e){var t=c(),n=P(e);return n.push(t.makeNodeResolver()),this.fapply(n).fail(t.reject),t.promise},u.nfcall=function(e){var t=P(arguments,1);return u(e).nfapply(t)},l.prototype.nfcall=function(){var e=P(arguments),t=c();return e.push(t.makeNodeResolver()),this.fapply(e).fail(t.reject),t.promise},u.nfbind=u.denodeify=function(n){if(void 0===n)throw new Error("Q can't wrap an undefined function");var i=P(arguments,1);return function(){var e=i.concat(P(arguments)),t=c();return e.push(t.makeNodeResolver()),u(n).fapply(e).fail(t.reject),t.promise}},l.prototype.nfbind=l.prototype.denodeify=function(){var e=P(arguments);return e.unshift(this),u.denodeify.apply(void 0,e)},u.nbind=function(n,i){var r=P(arguments,2);return function(){var e=r.concat(P(arguments)),t=c();return e.push(t.makeNodeResolver()),u(function(){return n.apply(i,arguments)}).fapply(e).fail(t.reject),t.promise}},l.prototype.nbind=function(){var e=P(arguments,0);return e.unshift(this),u.nbind.apply(void 0,e)},u.nmapply=u.npost=function(e,t,n){return u(e).npost(t,n)},l.prototype.nmapply=l.prototype.npost=function(e,t){var n=P(t||[]),i=c();return n.push(i.makeNodeResolver()),this.dispatch("post",[e,n]).fail(i.reject),i.promise},u.nsend=u.nmcall=u.ninvoke=function(e,t){var n=P(arguments,2),i=c();return n.push(i.makeNodeResolver()),u(e).dispatch("post",[t,n]).fail(i.reject),i.promise},l.prototype.nsend=l.prototype.nmcall=l.prototype.ninvoke=function(e){var t=P(arguments,1),n=c();return t.push(n.makeNodeResolver()),this.dispatch("post",[e,t]).fail(n.reject),n.promise},u.nodeify=function(e,t){return u(e).nodeify(t)},l.prototype.nodeify=function(t){if(!t)return this;this.then(function(e){u.nextTick(function(){t(null,e)})},function(e){u.nextTick(function(){t(e)})})},u.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var V=t();return u})}).call(this,e("_process"))},{_process:1}],3:[function(e,t,n){function o(e){switch(void 0===e?"undefined":Y(e)){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}}t.exports=function(n,i,r,e){return i=i||"&",r=r||"=",null===n&&(n=void 0),"object"==(void 0===n?"undefined":Y(n))?Object.keys(n).map(function(e){var t=encodeURIComponent(o(e))+r;return Array.isArray(n[e])?n[e].map(function(e){return t+encodeURIComponent(o(e))}).join(i):t+encodeURIComponent(o(n[e]))}).join(i):e?encodeURIComponent(o(e))+r+encodeURIComponent(o(n)):""}},{}],4:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function r(n,i,r){return c.default.information("zip:checkout:init"),l.default.Promise(function(e,t){return n.onCheckout(e,t,{})}).then(function(e){var t=e.redirect_uri||e.redirectUri||e.data&&(e.data.redirect_uri||e.data.redirectUri);if(!t)return c.default.debug("zip:checkout:error","Response does not contain redirectUri property"),r(e),void n.onError({code:"checkout_error",message:"The response does not contain the redirectUri property",detail:e});c.default.debug("zip:checkout:success",e),i({redirectUri:t})}).catch(function(e){c.default.debug("zip:checkout:error",e),r(e),n.onError({code:"checkout_error",message:"Checkout response error",detail:e})})}Object.defineProperty(n,"__esModule",{value:!0}),n.Checkout=void 0;var o=function(e,t,n){return t&&p(e.prototype,t),n&&p(e,n),e},a=i(e("./modal")),s=i(e("./options")),u=i(e("./utility")),c=i(e("./console")),l=i((e("./events"),e("q"))),d=(o(h,null,[{key:"init",value:function(t){if("function"!=typeof Object.assign&&(Object.assign=function(e){if(null==e)throw new TypeError("Cannot convert undefined or null to object");e=Object(e);for(var t=1;t<arguments.length;t++){var n=arguments[t];if(null!=n)for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}),t=y({},s.default,t),!this._validate(t))return c.default.setLevel(t.logLevel),t.redirect?r(t,function(e){return t.redirectFn(e.redirectUri)}):(e=t,(n=new a.default).onClose=e.onComplete.bind(e),n.build(),void r(e,function(e){return n.setUri(e.redirectUri)},function(e){return n.close(!1)}));var e,n}},{key:"attachButton",value:function(e,t){var n=document.querySelectorAll(e);if(!n.length)return config.onError({code:"attach_error",message:"Cannot find button to attach zipMoney checkout"});for(var i=0;i<n.length;i++)u.default.addEventHandler(n[i],"click",function(){return Zip.Checkout.init(t)})}},{key:"_validate",value:function(e){return["error","information","debug"].indexOf(e.logLevel.toLowerCase())<0&&(e.logLevel="error"),["standard","express"].indexOf(e.request.toLowerCase())<0&&(e.request="standard"),e.onComplete=e.onComplete||function(){},e.onError=e.onError||function(){},e.checkoutUri||e.onCheckout!==s.default.onCheckout?"express"===e.request?e.onError({code:"not_implemented",message:"This feature is not yet implemented"}):e.redirect||e.onComplete!==s.default.onComplete||e.redirectUri?void 0:e.onError({code:"validation",message:"if onComplete function is not specified then redirectUri must be specified"}):e.onError({code:"validation",message:"if onCheckout function is not specified then checkoutUri must be specified"})}}]),h);function h(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,h)}function p(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.Checkout=d},{"./console":5,"./events":6,"./modal":8,"./options":9,"./utility":10,q:2}],5:[function(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});var i="error",r={error:function(){var e;(e=window.console).log.apply(e,arguments)},information:function(){var e;"error"!==i&&(e=window.console).log.apply(e,arguments)},debug:function(){var e;"debug"===i&&(e=window.console).log.apply(e,arguments)},setLevel:function(e){i=e}};n.default=r},{}],6:[function(l,e,d){(function(i){Object.defineProperty(d,"__esModule",{value:!0}),d.EventListener=void 0;var e=function(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e},t=l("./utility");function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}if((t&&t.__esModule?t:{default:t}).default.isIe){var n=function(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n};n.prototype=i.Event.prototype,i.CustomEvent=n}var o={},a=d.EventListener=(e(s,null,[{key:"constructor",value:function(){o={}}},{key:"on",value:function(e,t){o[e]=t}},{key:"off",value:function(e){o[e]=null}}]),s);function s(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s)}a.Event=function(e,t){this.eventType=e,this.data=t||{}},a.Event.eventTypes={resize:"resize",transition:"transition",close:"close",complete:"complete",clear:"clear"};var u=window.addEventListener?"addEventListener":"attachEvent",c=window[u];c("attachEvent"==u?"onmessage":"message",function(e){var t,n;e.data.zipmoney&&(t=e.data.msg,n=new i.CustomEvent("zipmoney",{detail:t}),i.dispatchEvent(n))},!1),c("zipmoney",function(e){var t,n=e.detail.eventType,i=o[n];i?i(e.detail.data||{}):(t=e,console.log("Unexpected Event",t))},!1)}).call(this,void 0!==Ge?Ge:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utility":10}],7:[function(i,e,t){(function(e){var t=i("./checkout"),n=i("./events");e.Zip=e.Zip||{},e.Zip.Checkout=t.Checkout,e.zipMoneyEvent=n.EventListener.ZipEvent}).call(this,void 0!==Ge?Ge:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./checkout":4,"./events":6}],8:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function o(){return Math.max(document.documentElement.clientHeight,window.innerHeight||0)}function s(){var e=document.body,t=document.documentElement;return Math.max(e.scrollHeight,e.offsetHeight,t.clientHeight,t.scrollHeight,t.offsetHeight)}function u(e){for(var t=document.querySelectorAll("html, body"),n=0;n<t.length;n++)t[n].style.overflowY=e}function c(e){var t=document.body.currentStyle||window.getComputedStyle(document.body),n=e-(document.body.offsetHeight+(parseInt(t.marginTop,10)+parseInt(t.marginBottom,10))-parseInt(t.height,10));document.body.style.height=n+"px"}Object.defineProperty(n,"__esModule",{value:!0});var r=function(e,t,n){return t&&m(e.prototype,t),n&&m(e,n),e},a=i(e("./utility")),l=e("./events"),d=(i(e("./console")),{iframeWidth:400,iframeMinWidth:320,iframeInitialHeight:704,iframeMinHeight:600,verticalMargin:35}),h=["resize","transition","close","complete","clear"],p="https://d3k1w8lx8mqizo.cloudfront.net/zm/",f=(r(v,[{key:"build",value:function(){this._initialHtmlHeight=s(),window.scrollTo(0,0);var e,t,n,i,r,o=this._frame=(e=this._frameUri,t=this._isMobile,(n=document.createElement("iframe")).id="zipmoney-iframe",n.frameborder=0,y(n.style,{padding:"0",border:"none",zIndex:"999999",backgroundColor:"#FFF",backgroundImage:"url("+p+"spinner.gif)",backgroundRepeat:"no-repeat",backgroundPosition:"50% 50%"}),y(n.style,t?{overflow:"scroll",width:"100%",height:"100%",position:"absolute",top:"0",bottom:"0",left:"0",right:"0",margin:"0"}:{width:d.iframeWidth+"px",minWidth:d.iframeMinWidth+"px",height:d.iframeInitialHeight+"px",margin:d.verticalMargin+"px auto 0 auto",display:"table-row",backgroundSize:"25%",textAlign:"center",boxShadow:"0px 0px 70px 0px rgb(0, 0, 0)"}),n.src=e||"",n);if(!this._isMobile){var a=((r=document.createElement("img")).src=p+"icon-close.png",y(r.style,{width:"50px",height:"50px",position:"absolute",top:"20px",right:"20px",cursor:"pointer"}),r);a.onclick=this.close.bind(this),this._overlay=((i=document.createElement("div")).className="zipmoney-overlay",y(i.style,{position:"absolute",left:"0",top:"0",display:"table-cell",textAlign:"center",verticalAlign:"middle",background:"rgba(0, 0, 0, 0.75)",zIndex:"10000",height:"100%",width:"100%"}),i),this._overlay.appendChild(a),this._overlay.appendChild(this._frame),this._overlay.appendChild(function(){var e=document.createElement("div");e.style.width=d.iframeWidth+"px",e.style.minWidth=d.iframeMinWidth+"px",e.style.margin="10px auto 0 auto",e.style.overflow="hidden";var t=document.createElement("img");t.src=p+"iframe-secure.png",t.style.cssFloat="left";var n=document.createElement("img");return n.src=p+"poweredby-trans.png",n.style.cssFloat="right",e.appendChild(t),e.appendChild(n),e}()),o=this._overlay}document.body.appendChild(o),this._isMobile&&c(this._frame.offsetHeight),u("auto"),this._startMonitoringWindowResize()}},{key:"setUri",value:function(e){this._frameUri=e,this._frame&&(this._frame.src=e)}},{key:"resize",value:function(e){var t=this._isMobile?16:0,n=(e=d.iframeMinHeight<=e?e:d.iframeMinHeight,(e+=t)+2*d.verticalMargin),i=o();this._frame.style.height=e+"px",this._overlay&&(this._overlay.style.height=Math.max(i,this._initialHtmlHeight,n)+"px"),this._isMobile&&c(e)}},{key:"transition",value:function(){window.scroll(0,0)}},{key:"close",value:function(e){var t=!(0<arguments.length&&void 0!==e)||e,n={state:"cancelled"};this._events.length&&(n=this._events.pop()),this._destroy(),this.onClose&&t&&this.onClose(n)}},{key:"complete",value:function(e){this._events.push(e)}},{key:"clear",value:function(){this._events=[]}},{key:"_startMonitoringWindowResize",value:function(){var r=this;this._resizeHandler=a.default.debounce(function(){return e=r,t=o(),n=s(),i=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,e._overlay&&(e._overlay.style.height=Math.max(t,n)+"px"),void(e._isMobile||i<d.iframeWidth?e._frame.style.width="100%":e._frame.style.width=d.iframeWidth+"px");var e,t,n,i},250),a.default.addEventHandler(window,"resize",this._resizeHandler)}},{key:"_stopMonitoringWindowResize",value:function(){a.default.removeEventHandler(window,"resize",this._resizeHandler)}},{key:"_destroy",value:function(){this._stopMonitoringWindowResize(),this._overlay?document.body.removeChild(this._overlay):document.body.removeChild(this._frame),this._isMobile&&(document.body.style.height="initial"),u("initial"),this._overlay=this._frame=null,h.forEach(function(e){return l.EventListener.off(l.EventListener.Event.eventTypes[e])})}}]),v);function v(){var t=this;(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")})(this,v),this._events=[],this._isMobile=a.default.isMobileDevice(),h.forEach(function(e){return l.EventListener.on(l.EventListener.Event.eventTypes[e],t[e].bind(t))})}function m(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.default=f},{"./console":5,"./events":6,"./utility":10}],9:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0});var r=i(e("./xr")),o=i(e("./console"));r.default.configure({headers:{"X-Requested-With":"XMLHttpRequest"}});var a={request:"standard",redirect:!1,logLevel:"Error",onCheckout:function(t,e){r.default.post(this.checkoutUri).then(function(e){return t(e.data)}).catch(e)},onShippingAddressChanged:function(e,t){r.default.post(this.shippingUri).then(e).catch(t)},onComplete:function(e){if(o.default.information("zip:completed",e),"cancelled"!==e.state){var t=e.checkoutId?"&checkoutId="+e.checkoutId:"";this.redirectFn(this.redirectUri+"?result="+e.state+t)}},onError:function(e){o.default.error(e)},redirectFn:function(e){window.location.href=e}};n.default=a},{"./console":5,"./xr":11}],10:[function(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});var i=(function(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}(r,null,[{key:"isIe",value:function(){var e=-1,t=window.navigator.userAgent,n=t.indexOf("MSIE "),i=t.indexOf("Trident/");if(0<n)e=parseInt(t.substring(n+5,t.indexOf(".",n)),10);else if(0<i){var r=t.indexOf("rv:");e=parseInt(t.substring(r+3,t.indexOf(".",r)),10)}return-1<e?e:void 0}},{key:"isMobileDevice",value:function(){var e=navigator.userAgent||navigator.vendor||window.opera;return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(e)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(e.substr(0,4))}},{key:"debounce",value:function(i,r){var o;return function(){var e=this,t=arguments,n=!o;clearTimeout(o),o=setTimeout(function(){o=null,i.apply(e,t)},r),n&&i.apply(e,t)}}},{key:"addEventHandler",value:function(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent&&e.attachEvent("on"+t,n)}},{key:"removeEventHandler",value:function(e,t,n){e.removeEventListener?e.removeEventListener(t,n,!1):e.detachEvent&&e.detachEvent("on"+t,n)}}]),r);function r(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r)}function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.default=i},{}],11:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function u(e,t){return{status:e.status,response:e.response,data:t,xhr:e}}function c(e){for(var t=arguments.length,n=Array(1<t?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];for(var r in n)if({}.hasOwnProperty.call(n,r)){var o=n[r];if("object"===(void 0===o?"undefined":l(o)))for(var a in o)!{}.hasOwnProperty.call(o,a)||(e[a]=o[a])}return e}function r(s){return t=function(t,n){var i=c({},p,f,s),r=i.xmlHttpRequest();for(var e in i.abort&&s.abort(function(){n(u(r)),r.abort()}),r.open(i.method,i.params?i.url.split("?")[0]+"?"+(0,d.default)(i.params):i.url,!0),r.withCredentials=i.withCredentials,r.addEventListener(h.LOAD,function(){if(200<=r.status&&r.status<300){var e=null;r.responseText&&(e=!0===i.raw?r.responseText:i.load(r.responseText)),t(u(r,e))}else n(u(r))}),r.addEventListener(h.ABORT,function(){return n(u(r))}),r.addEventListener(h.ERROR,function(){return n(u(r))}),r.addEventListener(h.TIMEOUT,function(){return n(u(r))}),i.headers)!{}.hasOwnProperty.call(i.headers,e)||r.setRequestHeader(e,i.headers[e]);for(var o in i.events)!{}.hasOwnProperty.call(i.events,o)||r.addEventListener(o,i.events[o].bind(null,r),!1);var a="object"!==l(i.data)||i.raw?i.data:i.dump(i.data);void 0!==a?r.send(a):r.send()},((e=s)&&e.promise?e.promise:f.promise||p.promise)(t);var e,t}Object.defineProperty(n,"__esModule",{value:!0});var l="function"==typeof Symbol&&"symbol"==Y(Symbol.iterator)?function(e){return void 0===e?"undefined":Y(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":void 0===e?"undefined":Y(e)},d=i(e("querystring/encode")),o=i(e("q")),a={GET:"GET",POST:"POST",PUT:"PUT",DELETE:"DELETE",PATCH:"PATCH",OPTIONS:"OPTIONS"},h={READY_STATE_CHANGE:"readystatechange",LOAD_START:"loadstart",PROGRESS:"progress",ABORT:"abort",ERROR:"error",LOAD:"load",TIMEOUT:"timeout",LOAD_END:"loadend"},p={method:a.GET,data:void 0,headers:{Accept:"application/json","Content-Type":"application/json"},dump:JSON.stringify,load:JSON.parse,xmlHttpRequest:function(){return new XMLHttpRequest},promise:function(e){return o.default.Promise(e)},withCredentials:!1},f={};r.assign=c,r.encode=d.default,r.configure=function(e){f=c({},f,e)},r.Methods=a,r.Events=h,r.defaults=p,r.get=function(e,t,n){return r(c({url:e,method:a.GET,params:t},n))},r.put=function(e,t,n){return r(c({url:e,method:a.PUT,data:t},n))},r.post=function(e,t,n){return r(c({url:e,method:a.POST,data:t},n))},r.patch=function(e,t,n){return r(c({url:e,method:a.PATCH,data:t},n))},r.del=function(e,t){return r(c({url:e,method:a.DELETE},t))},r.options=function(e,t){return r(c({url:e,method:a.OPTIONS},t))},n.default=r},{q:2,"querystring/encode":3}]},{},[7])}));var Qe=(r($e,Ke),t($e,[{key:"run",value:function(){this.runs=!0,this.background.initLoader()}},{key:"isRunning",value:function(){return this.runs}},{key:"next",value:function(e){var t=this;this.background.clear(),this.checkout=e;var n=String("/v1/echo");n=T.extendSearchParams(n,"public_key",this.publicKey),n=T.extendSearchParams(n,"json_body",encodeURIComponent(JSON.stringify({redirect_uri:this.checkout.link}))),Zip.Checkout.init({checkoutUri:this.echoEnv.getConf().url+n,onComplete:function(e){return t.eventHandler(e)},onError:function(e){return t.eventHandler(e)}})}},{key:"onStop",value:function(e){var t=this;this.eventEmitter.subscribe(qe,function(){t.background.clear(),e()})}},{key:"onCheckout",value:function(e,t){var n=this;this.eventEmitter.subscribe(e,function(){t(n.checkout)})}},{key:"eventHandler",value:function(e){switch(this.runs=!1,e.state){case"approved":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(Be,{});break;case"declined":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(ze,{});break;case"cancelled":this.eventEmitter.emit(qe,{});break;case"referred":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(We,{});break;default:console.warn("Unknown gateway status")}}},{key:"getSuccessRedirectUri",value:function(){return this.customRedirectUti?this.customRedirectUti:this.widgetEnv.getConf().url+String("/checkout/zipmoney")}},{key:"getErrorRedirectUri",value:function(){return this.getSuccessRedirectUri()}},{key:"setEnv",value:function(e,t){a($e.prototype.__proto__||Object.getPrototypeOf($e.prototype),"setEnv",this).call(this,e,t),this.echoEnv.setEnv(e,t)}}]),$e);function $e(e){u(this,$e);var t=c(this,($e.__proto__||Object.getPrototypeOf($e)).call(this));return t.publicKey=e,t.checkout=null,t.runs=!1,t.eventEmitter=new xe,t.echoEnv=new S([{env:o,url:"https://api-sandbox."},{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}]),t}r(et,be),t(et,[{key:"getLink",value:function(){return String("/v1/gateways/:gateway_id").replace(":gateway_id",this.gatewayID)}},{key:"sendRequest",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.get(e,function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error"):i(e.message)})}}],[{key:"sendRequest",value:function(e,t,n,i,r){var o=4<arguments.length&&void 0!==r?r:function(e){},a=new this(e);a.setEnv(n),a.sendRequest(t,i,o)}}]);function et(e){u(this,et);var t=c(this,(et.__proto__||Object.getPrototypeOf(et)).call(this));return t.gatewayID=e,t}var tt="Zipmoney",nt="PaypalClassic",it="Afterpay",rt="paydock-dispatcher",ot=(t(at,[{key:"restartDispatcher",value:function(){var e=document.getElementById(rt);e&&e.parentNode.removeChild(e);var t=document.createElement("iframe");t.setAttribute("src",this.env.getConf().url+"/dispatcher"),t.id=rt,t.style.display="none",document.body.appendChild(t)}},{key:"on",value:function(n,i){var r=this;re.subscribe("message",window,function(e){var t=null;try{t=JSON.parse(e.data)}catch(e){}t&&t.message_source===r.messageSource&&t.event===n&&i(t)})}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t),this.restartDispatcher()}}]),at);function at(e){u(this,at),this.messageSource=e,this.env=new S([{env:o,url:"https://widget-sandbox."},{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}])}var st=(t(ut,[{key:"isExist",value:function(){return!(!this.getElement()||this.getElement().closed)}},{key:"getElement",value:function(){return this.window}},{key:"init",value:function(){var e=this;if(!Le.isSupportPopUp())return this.window=window;var t=this.getConfigs();this.window=window.open("about:blank","_blank","width="+t.width+",height="+t.height+",top="+t.top+",left="+t.left+",scrollbars="+(t.scrollbars?"yes":"no")+",resizable="+(t.resizable?"yes":"no")),this.showLoader();var n=setInterval(function(){e.isExist()||(clearInterval(n),e.eventEmitter.emit("close",{}))},200)}},{key:"redirect",value:function(e){this.isExist()&&(this.window.location.href=e)}},{key:"close",value:function(){this.isExist()&&this.getElement().close&&(this.getElement().close(),this.window=null)}},{key:"focus",value:function(){this.isExist()&&this.getElement().focus&&this.getElement().focus()}},{key:"setConfigs",value:function(e){this.configs=y(this.configs,e)}},{key:"getNetConfigs",value:function(){return y({},this.configs)}},{key:"getConfigs",value:function(){var e=this.getNetConfigs();return e.left=window.screenX+(window.screen.width/2-e.width/2),e.top=window.screenY+(window.screen.height/2-e.height/2),e}},{key:"onClose",value:function(e){this.eventEmitter.subscribe("close",e)}},{key:"initError",value:function(e){this.getElement().document.write("."),(this.getElement().document.body||this.getElement().document.getElementsByTagName("body")[0]).innerHTML="<style>\n .error-wrapper {\n color: #ff0000;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n }\n </style>"+'<div class="error-wrapper"><div>{{error}}</div></div>'.replace("{{error}}",e)}},{key:"showLoader",value:function(){this.getElement().document.write(".");var e=this.getElement().document.body||this.getElement().document.getElementsByTagName("body")[0];if(e.innerHTML=Re+Ae,this.env===f&&this.env===v&&this.env===m&&this.env===g&&this.env===k){var t=0;re.subscribe("click",e,function(){5==++t&&(e.innerHTML='\n <style>\n html{width: 100%;height: 100%;}\n body{margin: 0px;padding: 0px;background-color: #111;}\n \n .eye{\n width: 20px; height: 8px;\n background-color: #eee;\n border-radius:0px 0px 20px 20px;\n position: relative;\n top: 40px;\n left: 10px;\n box-shadow: 40px 0px 0px 0px #eee; \n }\n \n .head{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden; \n position: relative;\n margin: -250px auto;\n width: 80px; height: 80px;\n background-color: #111;\n border-radius:50px;\n box-shadow: inset -4px 2px 0px 0px #eee;\n -webkit-animation:node 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out;\n -moz-animation:node 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out;\n animation:node 1.5s infinite alternate;\n animation-timing-function:ease-out;\n }\n .body{ \n position: relative;\n margin: 90px auto;\n width: 140px; height: 120px;\n background-color: #111;\n border-radius: 50px/25px ;\n box-shadow: inset -5px 2px 0px 0px #eee;\n -webkit-animation:node2 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out; \n -moz-animation:node2 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out; \n animation:node2 1.5s infinite alternate;\n animation-timing-function:ease-out; \n }\n \n @keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n @-moz-keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @-moz-keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n @-webkit-keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @-webkit-keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n \n \n .circ{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n margin: 60px auto;\n width: 180px; height: 180px;\n background-color: #111;\n border-radius: 0px 0px 50px 50px;\n position: relative;\n z-index: -1; \n left: 0%;\n top: 20%;\n overflow: hidden;\n }\n \n .hands{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n margin-top: 140px;\n width: 120px;height: 120px;\n position: absolute;\n background-color: #111;\n border-radius:20px;\n box-shadow:-1px -4px 0px 0px #eee;\n transform:rotate(45deg);\n -webkit-transform:rotate(45deg);\n -mox-transform:rotate(45deg);\n top:75%;left: 16%;\n z-index: 1;\n -webkit-animation:node2 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out;\n -moz-animation:node2 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out;\n animation:node2 1.5s infinite alternate;\n animation-timing-function:ease-out;\n }\n \n .load{ position: absolute;\n width: 100px; height: 20px;\n margin: -10px auto;\n -webkit-font-smoothing: antialiased;\n -moz-font-smoothing: antialiased;\n font-smoothing: antialiased;\n font-family: \'Julius Sans One\', sans-serif;\n font-size:30px;\n font-weight:400;\n color:#eee;\n left: 10%;\n top: 5%;\n }\n </style>\n\n <div class="circ">\n <div class="load">A little patience ...</div>\n <div class="hands"></div>\n <div class="body"></div>\n <div class="head">\n <div class="eye"></div>\n </div>\n </div>\n')})}}},{key:"setEnv",value:function(e){this.env=e}}]),ut);function ut(){u(this,ut),this.configs={width:500,height:500,scrollbars:!0,resizable:!0,top:0,left:0},this.eventEmitter=new xe}var ct=(r(lt,Ke),t(lt,[{key:"run",value:function(){this.isRunning()||(this.popup.init(),this.background.initControl())}},{key:"isRunning",value:function(){return this.popup.isExist()}},{key:"next",value:function(e){this.checkout=e,Le.isSupportPopUp()||window.localStorage.setItem("paydock_checkout_token",JSON.stringify(this.checkout)),this.popup.redirect(this.checkout.link)}},{key:"continue",value:function(){this.popup.focus()}},{key:"stop",value:function(){this.popup.close()}},{key:"onStop",value:function(e){var t=this;this.popup.onClose(function(){t.background.clear(),t.checkout=null,e()})}},{key:"onCheckout",value:function(e,i){var r=this;this.dispatcher.on(e,function(e){if(r.checkout&&r.checkout.reference_id===e.reference_id)r.background.clear(),i(r.checkout);else if(!Le.isSupportPopUp()){var t=window.localStorage.getItem("paydock_checkout_token");if(!t)return;var n=JSON.parse(t);n&&n.reference_id===e.reference_id&&(window.localStorage.removeItem("paydock_checkout_token"),r.checkout=n,r.background.clear(),i(r.checkout))}})}},{key:"setEnv",value:function(e,t){a(lt.prototype.__proto__||Object.getPrototypeOf(lt.prototype),"setEnv",this).call(this,e,t),this.dispatcher.setEnv(e,t),this.popup.setEnv(e)}}]),lt);function lt(e){u(this,lt);var t=c(this,(lt.__proto__||Object.getPrototypeOf(lt)).call(this));return t.publicKey=e,t.checkout=null,t.dispatcher=new ot("checkout.paydock"),setTimeout(function(){return t.dispatcher.restartDispatcher()},200),t.popup=new st,t}var dt=(r(ht,ct),t(ht,[{key:"getSuccessRedirectUri",value:function(){return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/success","merchant",encodeURIComponent(window.location.href))}},{key:"getErrorRedirectUri",value:function(){return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/error","merchant",encodeURIComponent(window.location.href))}}]),ht);function ht(){return u(this,ht),c(this,(ht.__proto__||Object.getPrototypeOf(ht)).apply(this,arguments))}var pt=(r(ft,ct),t(ft,[{key:"getSuccessRedirectUri",value:function(){return this.widgetEnv.getConf().url+"/checkout/afterpay/merchant/{{merchant}}/success".replace("{{merchant}}",encodeURIComponent(window.btoa(window.location.href)))}},{key:"getErrorRedirectUri",value:function(){return this.widgetEnv.getConf().url+"/checkout/afterpay/merchant/{{merchant}}/error".replace("{{merchant}}",encodeURIComponent(window.btoa(window.location.href)))}},{key:"next",value:function(e){this.checkout=e,Le.isSupportPopUp()||window.localStorage.setItem("paydock_checkout_token",JSON.stringify(this.checkout)),this.popup.redirect(this.getRedirectUrl())}},{key:"error",value:function(e,t,n){return!t||t&&"invalid_amount"!==t?n(!0):(this.popup.initError(e),n(!1))}},{key:"run",value:function(){this.isRunning()||(this.popup.setConfigs({width:420,height:715}),this.popup.init(),this.background.initControl())}},{key:"getRedirectUrl",value:function(){var e="live"===this.checkout.mode?"live":"test";return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/afterpay/init","token",encodeURIComponent(this.checkout.reference_id))+"&env="+encodeURIComponent(e)}}]),ft);function ft(){return u(this,ft),c(this,(ft.__proto__||Object.getPrototypeOf(ft)).apply(this,arguments))}var vt={CLICK:"click",POPUP_REDIRECT:"popupRedirect",ERROR:"error",REFERRED:"referred",DECLINED:"declined",CANCELLED:"cancelled",ACCEPTED:"accepted",FINISH:"finish",CLOSE:"close"},mt=(t(yt,[{key:"initCheckout",value:function(){var n=this;this.container.on("click",function(e){if(!n.runner.isRunning()){n.eventEmitter.emit(vt.CLICK,{}),n.runner.run();var t=new Se(n.gatewayId,n.runner.getSuccessRedirectUri(),n.runner.getErrorRedirectUri());t.setMeta(n.meta),t.setEnv(n.env),t.send(n.publicKey,function(e){n.eventEmitter.emit(vt.POPUP_REDIRECT,{}),n.runner.next(e)},function(e,t){n.eventEmitter.emit(vt.ERROR,{}),n.runner.error(e,t,function(e){e&&n.close()})})}})}},{key:"initCheckoutHandlers",value:function(){var t=this;this.runner.onCheckout(Be,function(e){t.eventEmitter.emit(vt.ACCEPTED,{}),t.background.initLoader(),t.close(),t.checkToken(e.token,function(){t.createOneTimeToken(e.token)})}),this.runner.onCheckout(Ve,function(){t.eventEmitter.emit(vt.ERROR,{}),console.error("Error from checkout server"),t.close()}),this.runner.onCheckout(We,function(){t.eventEmitter.emit(vt.REFERRED,{}),t.close()}),this.runner.onCheckout(ze,function(){t.eventEmitter.emit(vt.DECLINED,{}),t.close()}),this.eventEmitter.subscribe(vt.ERROR,function(){t.background.clear()}),this.eventEmitter.subscribe(vt.FINISH,function(){t.background.clear()})}},{key:"checkToken",value:function(e,t){var n=this,i=new Te(e);i.setEnv(this.env),i.send(this.publicKey,function(e){n.details=e,t()},function(){n.eventEmitter.emit(vt.ERROR,{}),console.error("Error during creating payment source token")})}},{key:"createOneTimeToken",value:function(e){var t=this,n=new Fe(this.gatewayId,e,je.CHECKOUT_TOKEN);n.setEnv(this.env),n.send(this.publicKey,function(e){t.eventEmitter.emit(vt.FINISH,{payment_source_token:e,checkout_email:t.details.checkout_email,checkout_holder:t.details.checkout_holder,gateway_type:t.details.gateway_type})},function(){t.eventEmitter.emit(vt.ERROR,{}),console.error("Error during creating payment source token")})}},{key:"on",value:function(e,t){this.eventEmitter.subscribe(e,t)}},{key:"close",value:function(){this.runner.stop()}},{key:"onFinishInsert",value:function(t,n){this.on(vt.FINISH,function(e){re.insertToInput(t,n,e)})}},{key:"setMeta",value:function(e){this.meta=y(this.meta,e)}},{key:"setBackdropDescription",value:function(e){this.runner.setBackgroundDescription(e)}},{key:"setBackdropTitle",value:function(e){this.runner.setBackgroundTitle(e)}},{key:"setSuspendedRedirectUri",value:function(e){this.runner.setCustomRedirectUri(e)}},{key:"turnOffBackdrop",value:function(){this.turnOffControlBackdrop(),this.turnOffLoaderBackdrop()}},{key:"turnOffControlBackdrop",value:function(){this.runner.turnOffBackdrop()}},{key:"turnOffLoaderBackdrop",value:function(){this.background.turnOffLoader()}},{key:"setEnv",value:function(e,t){this.env=e,this.runner.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env}}]),yt);function yt(e,t){var n=this,i=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default",r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:nt;switch(u(this,yt),this.publicKey=t,this.gatewayId=i,this.gatewayType=r,this.details=null,this.meta={},this.env=E,this.eventEmitter=new xe,this.container=new ae(e),this.background=new De,r){case nt:this.runner=new dt(t);break;case it:this.runner=new pt(t);break;case tt:this.runner=new Qe(t)}this.initCheckout(),this.initCheckoutHandlers(),this.runner.onStop(function(){n.eventEmitter.emit(vt.CLOSE,{})})}var gt=(r(kt,mt),t(kt,[{key:"setSuspendedRedirectUri",value:function(e){a(kt.prototype.__proto__||Object.getPrototypeOf(kt.prototype),"setSuspendedRedirectUri",this).call(this,e)}}]),kt);function kt(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,kt);var i=c(this,(kt.__proto__||Object.getPrototypeOf(kt)).call(this,e,t,n,tt));return i.publicKey=t,i.gatewayId=n,i}var _t=(r(Et,mt),Et);function Et(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,Et);var i=c(this,(Et.__proto__||Object.getPrototypeOf(Et)).call(this,e,t,n,it));return i.publicKey=t,i.gatewayId=n,i}var bt,wt,St=(r(Ct,mt),Ct);function Ct(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,Ct);var i=c(this,(Ct.__proto__||Object.getPrototypeOf(Ct)).call(this,e,t,n,nt));return i.publicKey=t,i.gatewayId=n,i}(wt=bt=bt||{}).AFTER_LOAD="after_load",wt.UNAVAILABLE="unavailable",wt.START_LOADING="start_loading",wt.END_LOADING="end_loading",wt.UPDATE="update",wt.PAYMENT_SUCCESSFUL="payment_successful",wt.PAYMENT_IN_REVIEW="payment_in_review",wt.PAYMENT_ERROR="payment_error";var Tt=(r(Ot,de),t(Ot,[{key:"on",value:function(e,t,n){for(var i in bt)bt.hasOwnProperty(i)&&e===bt[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}}]),Ot);function Ot(){return u(this,Ot),c(this,(Ot.__proto__||Object.getPrototypeOf(Ot)).apply(this,arguments))}var xt={CLOSE:"close",UPDATED:"updated"},Pt=(r(At,fe),t(At,[{key:"push",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.iFrame.isExist()){-1===I.values(xt).indexOf(e)&&console.warn("unsupported trigger type");var i={message_source:"wallet.paydock",reference_id:this.widgetId,trigger:e,destination:"widget.paydock",data:n};this.iFrame.getElement().contentWindow.postMessage(JSON.stringify(i),"*")}}}]),At);function At(e,t){u(this,At);var n=c(this,(At.__proto__||Object.getPrototypeOf(At)).call(this,e));return n.widgetId=t,n}var Rt=(r(Lt,De),t(Lt,[{key:"initControl",value:function(){this.imageStyle||this.createImageStyles(),a(Lt.prototype.__proto__||Object.getPrototypeOf(Lt.prototype),"initControl",this).call(this)}},{key:"clear",value:function(){this.imageStyle&&this.imageStyle.parentNode.removeChild(this.imageStyle),this.imageStyle=null,a(Lt.prototype.__proto__||Object.getPrototypeOf(Lt.prototype),"clear",this).call(this)}},{key:"createTemplate",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0],n=String('\n <div class="checkout-container">\n <div class="checkout-bg-logo"></div>\n <a href="#" data-close>Close</a>\n </div>\n');this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=n,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createImageStyles",value:function(){var e=document.head||document.getElementsByTagName("head")[0],t=String("\n .checkout-bg-logo {\n display: block;\n background: url({{url}}) no-repeat;\n width: 100px;\n height: 50px;\n margin: 0 auto;\n border-radius: 10px;\n background-size: contain;\n }\n");document.querySelector(".checkout-container"),t=t.replace("{{url}}",this.bgImageUrl),this.imageStyle=document.createElement("style"),this.imageStyle.type="text/css",this.imageStyle.appendChild(document.createTextNode(t)),e.appendChild(this.imageStyle)}}]),Lt);function Lt(e){u(this,Lt);var t=c(this,(Lt.__proto__||Object.getPrototypeOf(Lt)).call(this));return t.bgImageUrl=e,t.imageStyle=null,t}var It={UNAVAILABLE:"unavailable",UPDATE:"update",PAYMENT_METHOD_SELECTED:"payment_method_selected",PAYMENT_SUCCESS:"payment_success",PAYMENT_IN_REVIEW:"payment_in_review",PAYMENT_ERROR:"payment_error",CALLBACK:"callback"},Ut=(t(Nt,[{key:"initializeChildWallets",value:function(){this.childWallets=[]}},{key:"getGatewayName",value:function(){throw new Error("Method not implemented")}},{key:"setEnv",value:function(e){return this.env=e,this}},{key:"load",value:function(t){this.childWallets.forEach(function(e){return e.load(t)})}},{key:"update",value:function(){}},{key:"on",value:function(e,t){var n=this;if(-1===I.values(It).indexOf(e))throw new Error("invalid wallet event");return"function"==typeof t?this.eventEmitter.subscribe(e,t):new Promise(function(t){return n.eventEmitter.subscribe(e,function(e){return t(e)})})}}]),Nt);function Nt(e,t){u(this,Nt),this.publicKey=e,this.meta=t,this.env=o,this.eventEmitter=new xe,this.initializeChildWallets()}var Dt=(r(Mt,Ut),t(Mt,[{key:"load",value:function(e){this.container=e,this.iFrame=new ue(this.container);var t=this.link.getParams().widget_id;this.triggerElement=new Pt(this.iFrame,t),this.setupIFrameEvents(t),this.background=this.initBackground(),this.iFrame.load(this.link.getUrl())}},{key:"close",value:function(){this.triggerElement.push(xt.CLOSE),this.background.clear()}},{key:"update",value:function(e){this.triggerElement.push(xt.UPDATED,e)}},{key:"setEnv",value:function(e){return this.link.setEnv(e),this}},{key:"initBackground",value:function(){var e=this,t=new Rt(this.link.getNetUrl().replace(A,"/images/logo.png"));return t.setBackdropTitle(""),t.setBackdropDescription(""),t.onTrigger(Ue,function(){return e.triggerElement.push(xt.CLOSE)}),t}},{key:"setupIFrameEvents",value:function(e){var t=this;this.event.on(bt.UNAVAILABLE,e,function(e){return t.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})}),this.event.on(bt.START_LOADING,e,function(e){return t.background.initControl()}),this.event.on(bt.END_LOADING,e,function(e){return t.background.clear()}),this.event.on(bt.UPDATE,e,function(e){t.eventEmitter.emit(It.UPDATE,t.parseUpdateData(e))}),this.event.on(bt.PAYMENT_SUCCESSFUL,e,function(e){t.eventEmitter.emit(It.PAYMENT_SUCCESS,t.parsePaymentSuccessfulData(e)),t.iFrame.getElement()||t.background.clear()}),this.event.on(bt.PAYMENT_IN_REVIEW,e,function(e){t.eventEmitter.emit(It.PAYMENT_IN_REVIEW,t.parsePaymentSuccessfulData(e)),t.iFrame.getElement()||t.background.clear()}),this.event.on(bt.PAYMENT_ERROR,e,function(e){t.eventEmitter.emit(It.PAYMENT_ERROR,e),t.iFrame.getElement()||t.background.clear()})}},{key:"parsePaymentSuccessfulData",value:function(e){var t;return{id:this.meta.id,amount:e.amount,currency:e.currencyCode,status:null===(t=e.charge)||void 0===t?void 0:t.status}}},{key:"parseUpdateData",value:function(e){return y(y(y({wallet_response_code:e.responseCode,wallet_session_id:e.sessionId},e.paymentMethodDetails?{payment_source:{wallet_payment_method_id:e.paymentMethodDetails.paymentMethodId,card_number_last4:e.paymentMethodDetails.lastFourDigitsOfPan,card_scheme:e.paymentMethodDetails.paymentScheme}}:{}),e.loyaltyAccountSummary?{wallet_loyalty_account:{id:e.loyaltyAccountSummary.loyaltyAccountId,barcode:e.loyaltyAccountSummary.loyaltyAccountBarcode}}:{}),e.deliveryAddressDetails?{shipping:{address_line1:e.deliveryAddressDetails.line1,address_line2:e.deliveryAddressDetails.line2,address_postcode:e.deliveryAddressDetails.postalCode,address_city:e.deliveryAddressDetails.city,address_state:e.deliveryAddressDetails.state,address_country:e.deliveryAddressDetails.countryCode,address_company:e.deliveryAddressDetails.companyName,wallet_address_id:e.deliveryAddressDetails.addressId,post_office_box_number:e.deliveryAddressDetails.postOfficeBoxNumber,wallet_address_created_timestamp:e.deliveryAddressDetails.createdTimestamp,wallet_address_updated_timestamp:e.deliveryAddressDetails.updatedTimestamp,wallet_address_name:e.deliveryAddressDetails.name}}:{})}}]),Mt);function Mt(e,t){u(this,Mt);var n=c(this,(Mt.__proto__||Object.getPrototypeOf(Mt)).call(this,e,t));n.link=new R(A);var i=t.amount,r=t.currency,o=t.id,a=t.gateway_mode,s=t.request_shipping;return n.link.setParams(y({token:e,amount:i,currency:r,gateway_mode:a,credentials:o},s?{request_shipping:s}:{})),n.token=e,n.event=new Tt(window),n}var jt=(r(Ft,Ut),t(Ft,[{key:"load",value:function(e){var i=this;if(window.Promise){var t=e.getElement().id||"",n=document.createElement("script");n.src="https://www.paypal.com/sdk/js?client-id="+this.publicKey+"¤cy="+this.meta.currency+(!0===this.meta.pay_later?"&enable-funding=paylater&disable-funding=card":"&disable-funding=credit,card")+(this.meta.capture?"":"&intent=authorize"),n.async=!0,n.onload=function(){window.paypal?(i.paypal=window.paypal,i.paypal.Buttons(y(y({},i.meta.style&&{style:i.meta.style}),{createOrder:function(){return new Promise(function(t,n){i.eventEmitter.emit(It.CALLBACK,{data:y({request_type:"CREATE_TRANSACTION"},i.meta.request_shipping&&{request_shipping:i.meta.request_shipping}),onSuccess:function(e){return t(e.id)},onError:function(e){return n(e)}})})},onShippingChange:function(e){var t=i.parseUpdateData(e);return i.latestShippingData=t.shipping,i.eventEmitter.emit(It.UPDATE,t),new Promise(function(e,t){i.latestShippingChangePromiseResolve=e,i.latestShippingChangePromiseReject=t})},onApprove:function(n){return new Promise(function(e,t){return i.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:{payment_method_id:n.orderID,customer:{payment_source:{external_payer_id:n.payerID}}},onSuccess:function(){return e(!0)},onError:function(e){return t(e)}})})},onError:function(){}})).render("#"+t)):i.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})},document.head.appendChild(n)}else this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})}},{key:"update",value:function(e){var t=this;if(this.latestShippingChangePromiseResolve&&this.latestShippingChangePromiseReject)return e.success?void this.eventEmitter.emit(It.CALLBACK,{data:{request_type:"UPDATE_TRANSACTION",shipping:this.latestShippingData},onSuccess:function(){return t.latestShippingChangePromiseResolve(!0)},onError:function(){return t.latestShippingChangePromiseReject()}}):this.latestShippingChangePromiseReject()}},{key:"parseUpdateData",value:function(e){var t;return y(y({wallet_order_id:e.orderID,wallet_session_id:e.paymentID,payment_source:{wallet_payment_method_id:e.paymentToken}},e.shipping_address&&{shipping:{address_city:e.shipping_address.city,address_state:e.shipping_address.state,address_postcode:e.shipping_address.postal_code,address_country:e.shipping_address.country_code}}),e.selected_shipping_option&&{selected_shipping_option:{id:e.selected_shipping_option.id,label:e.selected_shipping_option.label,amount:e.selected_shipping_option.amount.value,currency:e.selected_shipping_option.amount.currency_code,type:(null===(t=e.selected_shipping_option)||void 0===t?void 0:t.type)||""}})}}]),Ft);function Ft(){return u(this,Ft),c(this,(Ft.__proto__||Object.getPrototypeOf(Ft)).apply(this,arguments))}var Ht=Ze(function(e,t){function n(e){return(n="function"==typeof Symbol&&"symbol"===Y(Symbol.iterator)?function(e){return void 0===e?"undefined":Y(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":void 0===e?"undefined":Y(e)})(e)}Object.defineProperty(t,"__esModule",{value:!0});function r(i){return null!==c?c:c=new Promise(function(e,t){if("undefined"!=typeof window)if(window.Stripe&&i&&console.warn(u),window.Stripe)e(window.Stripe);else try{var n=function(){for(var e=document.querySelectorAll('script[src^="'.concat(a,'"]')),t=0;t<e.length;t++){var n=e[t];if(s.test(n.src))return n}return null}();n&&i?console.warn(u):n=n||function(e){var t=e&&!e.advancedFraudSignals?"?advancedFraudSignals=false":"",n=document.createElement("script");n.src="".concat(a).concat(t);var i=document.head||document.body;if(!i)throw new Error("Expected document.body not to be null. Stripe.js requires a <body> element.");return i.appendChild(n),n}(i),n.addEventListener("load",function(){window.Stripe?e(window.Stripe):t(new Error("Stripe.js not available"))}),n.addEventListener("error",function(){t(new Error("Failed to load Stripe.js"))})}catch(e){return void t(e)}else e(null)})}function i(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];l=!0;var i=Date.now();return r(o).then(function(e){return function(e,t,n){if(null===e)return null;var i,r,o=e.apply(void 0,t);return r=n,(i=o)&&i._registerWrapper&&i._registerWrapper({name:"stripe-js",version:"1.11.0",startTime:r}),o}(e,t,i)})}var o,a="https://js.stripe.com/v3",s=/^https:\/\/js\.stripe\.com\/v3\/?(\?.*)?$/,u="loadStripe.setLoadParameters was called but an existing Stripe.js script already exists in the document; existing script parameters will be used",c=null,l=!1;i.setLoadParameters=function(e){if(l)throw new Error("You cannot change load parameters after calling loadStripe");o=function(e){var t="invalid load parameters; expected object of shape\n\n {advancedFraudSignals: boolean}\n\nbut received\n\n ".concat(JSON.stringify(e),"\n");if(null===e||"object"!==n(e))throw new Error(t);if(1===Object.keys(e).length&&"boolean"==typeof e.advancedFraudSignals)return e;throw new Error(t)}(e)},t.loadStripe=i});Xe(Ht);Ht.loadStripe;var Bt=Ht.loadStripe,zt="success",qt="fail",Wt=(r(Vt,Ut),t(Vt,[{key:"initPaymentRequest",value:function(){return this.stripe.paymentRequest({country:this.meta.country.toUpperCase(),currency:this.meta.currency.toLowerCase(),total:{label:this.meta.amount_label,amount:Math.floor(100*this.meta.amount)},requestPayerName:!0===this.meta.request_payer_name,requestPayerEmail:!0===this.meta.request_payer_email,requestPayerPhone:!0===this.meta.request_payer_phone})}},{key:"createWalletButton",value:function(){return this.stripe.elements().create("paymentRequestButton",{paymentRequest:this.paymentRequest})}},{key:"load",value:function(t){var n=this;return Bt(this.publicKey).then(function(e){n.stripe=e,n.paymentRequest=n.initPaymentRequest()}).then(function(){return n.checkAvailability()}).then(function(e){return n.mount(t,e)}).then(function(){return n.setOnPaymentMethodSelected()})}},{key:"checkAvailability",value:function(){var i=this;return this.paymentRequest.canMakePayment().then(function(e){if(e){var t=!i.meta.wallets||i.meta.wallets.includes(M.GOOGLE),n=!i.meta.wallets||i.meta.wallets.includes(M.APPLE);return{google_pay:t&&!e.applePay,apple_pay:n&&e.applePay,flypay:!1}}})}},{key:"mount",value:function(e,t){if(!t||!t.apple_pay&&!t.google_pay)return this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null});this.createWalletButton().mount(e.getElement())}},{key:"setOnPaymentMethodSelected",value:function(){var c=this;this.paymentRequest.on("paymentmethod",function(e){var t,n=e.paymentMethod,i=n.id,r=n.card,o=n.billing_details,a=o.name,s=o.address,u={payment_method_id:i,customer:{payer_name:e.payerName,payer_email:e.payerEmail,payer_phone:e.payerPhone,payment_source:{card_name:a,type:null===(t=null==r?void 0:r.wallet)||void 0===t?void 0:t.type,card_scheme:null==r?void 0:r.brand,card_number_last4:null==r?void 0:r.last4,expire_month:null==r?void 0:r.exp_month,expire_year:null==r?void 0:r.exp_year,address_line1:s.line1,address_line2:s.line2,address_city:s.city,address_postcode:s.postal_code,address_state:s.state,address_country:s.country}}};c.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:u,onSuccess:function(){return e.complete(zt)},onError:function(){return e.complete(qt)}})})}}]),Vt);function Vt(){return u(this,Vt),c(this,(Vt.__proto__||Object.getPrototypeOf(Vt)).apply(this,arguments))}var Kt=(r(Yt,Ut),t(Yt,[{key:"getGatewayName",value:function(){return this.gatewayName}},{key:"getMerchantId",value:function(){var e,t,n;return(null===(n=null===(t=null===(e=this.meta)||void 0===e?void 0:e.credentials)||void 0===t?void 0:t[M.APPLE])||void 0===n?void 0:n.merchant)||""}},{key:"load",value:function(n){var i=this;if(window.Promise)return this.checkAvailability().then(function(e){var t;e?(i.meta.request_shipping&&i.meta.shipping_options&&(i.selectedShippingMethodId=null===(t=i.meta.shipping_options[0])||void 0===t?void 0:t.id),i.mount(n)):i.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:{wallet:M.APPLE}})}).catch(function(e){return console.error("Error checking ApplePay availability",e)});this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:{wallet:M.APPLE}})}},{key:"update",value:function(e){var t,n;null!==(t=null==e?void 0:e.body)&&void 0!==t&&t.amount&&(this.meta.amount=e.body.amount),null!==(n=null==e?void 0:e.body)&&void 0!==n&&n.shipping_options&&(this.meta.shipping_options=e.body.shipping_options)}},{key:"checkAvailability",value:function(){var n=this;return new Promise(function(t,e){window.ApplePaySession&&ApplePaySession||t(!1),ApplePaySession.canMakePaymentsWithActiveCard(n.getMerchantId()).then(function(e){return t(e)}).catch(function(e){return t(!1)})})}},{key:"mount",value:function(e){var t=this,n=document.createElement("style");n.innerHTML=this.createButtonStyle(),document.head.appendChild(n);var i=document.createElement("div");i.onclick=function(){return t.onApplePayButtonClicked()},i.classList.add("paydock-apple-container","apple-pay-button","apple-pay-button-black"),e.getElement().appendChild(i)}},{key:"onApplePayButtonClicked",value:function(){this.paymentSession=new ApplePaySession(3,this.createRequest()),this.paymentSession.onvalidatemerchant=this.onValidateMerchant,this.paymentSession.onpaymentauthorized=this.onPaymentAuthorized,this.paymentSession.onshippingcontactselected=this.onShippingContactSelected,this.paymentSession.onshippingmethodselected=this.onShippingMethodSelected,this.paymentSession.begin()}},{key:"createRequest",value:function(){return this.meta.raw_data_initialization&&(this.meta.raw_data_initialization.total.amount=this.meta.amount.toString(),this.meta.request_shipping&&this.meta.shipping_options&&(this.meta.raw_data_initialization.shippingMethods=this.formatShippingOptions(this.meta.shipping_options))),this.meta.raw_data_initialization?this.meta.raw_data_initialization:y(y({countryCode:this.meta.country.toUpperCase(),currencyCode:this.meta.currency.toUpperCase(),merchantCapabilities:["supports3DS","supportsCredit","supportsDebit"],supportedNetworks:["visa","masterCard","amex","discover"],requiredBillingContactFields:["name","postalAddress"]},this.meta.request_shipping&&y({requiredShippingContactFields:["postalAddress","name","phone","email"]},this.meta.shipping_options&&{shippingMethods:this.formatShippingOptions(this.meta.shipping_options)})),{total:{label:this.meta.amount_label,amount:this.meta.amount.toString(),type:"final"}})}},{key:"getMerchantSession",value:function(){var e=this;return new Promise(function(t,n){return e.eventEmitter.emit(It.CALLBACK,{data:y({request_type:"CREATE_SESSION",wallet_type:M.APPLE,session_id:window.location.hostname},e.meta.request_shipping&&{request_shipping:e.meta.request_shipping}),onSuccess:function(e){return t(e)},onError:function(e){return n(e)}})})}},{key:"createButtonStyle",value:function(){var e,t,n,i;return"\n .paydock-apple-container {\n width: 100%;\n height: 40px;\n }\n\n @supports (-webkit-appearance: -apple-pay-button) {\n .apple-pay-button {\n display: inline-block;\n -webkit-appearance: -apple-pay-button;\n -apple-pay-button-type: "+((null===(t=null===(e=this.meta)||void 0===e?void 0:e.style)||void 0===t?void 0:t.button_type)||"plain")+"\n }\n .apple-pay-button-black {\n -apple-pay-button-style: black;\n }\n .apple-pay-button-white {\n -apple-pay-button-style: white;\n }\n .apple-pay-button-white-with-line {\n -apple-pay-button-style: white-outline;\n }\n }\n\n @supports not (-webkit-appearance: -apple-pay-button) {\n .apple-pay-button {\n display: inline-block;\n background-size: 100% 60%;\n background-repeat: no-repeat;\n background-position: 50% 50%;\n border-radius: 5px;\n padding: 0px;\n box-sizing: border-box;\n min-width: 200px;\n min-height: 32px;\n max-height: 64px;\n -apple-pay-button-type: "+((null===(i=null===(n=this.meta)||void 0===n?void 0:n.style)||void 0===i?void 0:i.button_type)||"plain")+"\n }\n .apple-pay-button-black {\n background-image: -webkit-named-image(apple-pay-logo-white);\n background-color: black;\n }\n .apple-pay-button-white {\n background-image: -webkit-named-image(apple-pay-logo-black);\n background-color: white;\n }\n .apple-pay-button-white-with-line {\n background-image: -webkit-named-image(apple-pay-logo-black);\n background-color: white;\n border: .5px solid black;\n }\n }\n "}}]),Yt);function Yt(e,t,n,i){u(this,Yt);var o=c(this,(Yt.__proto__||Object.getPrototypeOf(Yt)).call(this,e,t));return o.gatewayName=n,o.eventEmitter=i,o.onValidateMerchant=function(e){o.getMerchantSession().then(function(e){o.paymentSession.completeMerchantValidation(e)}).catch(function(e){return console.error("Error fetching merchant session",e)})},o.onPaymentAuthorized=function(e){var t=e.payment,n=t.token,i=t.billingContact,r=t.shippingContact;o.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:y({customer:{payment_source:{card_name:n.paymentMethod.displayName,type:n.paymentMethod.type,card_scheme:n.paymentMethod.network,address_line1:null==i?void 0:i.addressLines[0],address_line2:null==i?void 0:i.addressLines[1],address_country:null==i?void 0:i.countryCode,address_city:null==i?void 0:i.locality,address_postcode:null==i?void 0:i.postalCode,address_state:null==i?void 0:i.administrativeArea,ref_token:n.paymentData?JSON.stringify(n.paymentData):""}}},o.meta.request_shipping&&r&&{shipping:{method:o.selectedShippingMethodId,options:o.meta.shipping_options,address_line1:r.addressLines[0],address_line2:r.addressLines[1],address_country:r.countryCode,address_city:r.locality,address_postcode:r.postalCode,address_state:r.administrativeArea,contact:{first_name:r.givenName,last_name:r.familyName,email:r.emailAddress,phone:r.phoneNumber}}}),onSuccess:function(){return o.paymentSession.completePayment(ApplePaySession.STATUS_SUCCESS)},onError:function(){return o.paymentSession.completePayment(ApplePaySession.STATUS_FAILURE)}})},o.onShippingContactSelected=function(e){var t=o.parseUpdateData(e.shippingContact);o.eventEmitter.emit(It.UPDATE,t);var n=y({newTotal:{label:o.meta.amount_label,amount:o.meta.amount.toString(),type:"final"}},o.meta.request_shipping&&o.meta.shipping_options&&{newShippingMethods:o.formatShippingOptions(o.meta.shipping_options)});o.paymentSession.completeShippingContactSelection(n)},o.onShippingMethodSelected=function(e){o.selectedShippingMethodId=e.shippingMethod.identifier;var t={newTotal:{label:o.meta.amount_label,amount:o.meta.amount.toString(),type:"final"}};o.paymentSession.completeShippingMethodSelection(t)},o.parseUpdateData=function(e){return{shipping:{address_city:e.locality,address_state:e.administrativeArea,address_postcode:e.postalCode,address_country:e.countryCode}}},o.formatShippingOptions=function(e){return e.map(function(e){return{identifier:e.id,label:e.label,detail:(null==e?void 0:e.detail)||"",amount:e.amount}})},o.eventEmitter=i,o}var Gt=(r(Jt,Ut),t(Jt,[{key:"initializeChildWallets",value:function(){this.childWallets=[],this.meta.wallets&&!this.meta.wallets.includes(M.APPLE)||this.childWallets.push(new Kt(this.publicKey,this.meta,this.getGatewayName(),this.eventEmitter))}},{key:"getGatewayName",value:function(){return N.MASTERCARD}},{key:"update",value:function(t){this.childWallets.forEach(function(e){return e.update(t)})}}]),Jt);function Jt(){return u(this,Jt),c(this,(Jt.__proto__||Object.getPrototypeOf(Jt)).apply(this,arguments))}var Xt,Zt,Qt=(t($t,null,[{key:"validateJWT",value:function(e){var t=e.split("."),n=s(t,3),i=n[0],r=n[1],o=n[2];if(!i||!r||!o)return null;if(2+i.length+r.length+o.length!==e.length)return null;try{return{head:JSON.parse(atob(i)),body:JSON.parse(atob(r)),signature:o}}catch(e){return null}}},{key:"extractMeta",value:function(e){try{return JSON.parse(atob(e.meta)).meta}catch(e){return null}}}]),$t);function $t(){u(this,$t)}(Zt=Xt=Xt||{})[Zt.PUBLIC_KEY=0]="PUBLIC_KEY",Zt[Zt.TOKEN=1]="TOKEN";var en=(t(tn,[{key:"setEnv",value:function(e,t){return this.env.setEnv(e,t),this}},{key:"getClient",value:function(e,t){var i=this,r=new XMLHttpRequest;return r.open(e,this.env.getConf().url+t,!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),this.setAuthHeader(r),{config:r,send:function(e,t,n){r.onload=function(){return i.parser({text:r.responseText,status:r.status},t,n)},r.send(JSON.stringify(e))}}}},{key:"getClientPromise",value:function(e,t){var i=this,r=new XMLHttpRequest;return r.open(e,this.env.getConf().url+t,!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),this.setAuthHeader(r),{config:r,send:function(n){return new Promise(function(e,t){r.onload=function(){return e({text:r.responseText,status:r.status})},r.send(JSON.stringify(n))}).then(function(e){return i.parserPromise(e)})}}}},{key:"parser",value:function(e,t,n){var i=e.text,r=e.status;try{var o=JSON.parse(i);if(200<=r&&r<300||302===r)return t(o.resource.data);n(o.error||{message:"unknown error"})}catch(e){}}},{key:"parserPromise",value:function(e){var t=e.text,n=e.status;try{var i=JSON.parse(t);return 200<=n&&n<300||302===n?Promise.resolve(i.resource.data):Promise.reject(i.error||{message:"unknown error"})}catch(e){return Promise.reject(e)}}},{key:"setAuthHeader",value:function(e){switch(this.authType){case Xt.PUBLIC_KEY:e.setRequestHeader("x-user-public-key",this.auth);break;case Xt.TOKEN:e.setRequestHeader("x-access-token",this.auth)}}}]),tn);function tn(e,t){u(this,tn),this.auth=e,this.authType=t||Xt.PUBLIC_KEY,this.env=new S([{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}])}var nn=(t(rn,[{key:"walletCapture",value:function(e){return this.api.getClientPromise("POST","/v1/charges/wallet/capture").send(e)}},{key:"walletCallback",value:function(e){return this.api.getClientPromise("POST","/v1/charges/wallet/callback").send(e)}}]),rn);function rn(e){u(this,rn),this.api=e}var on=(r(an,en),t(an,[{key:"charge",value:function(){return new nn(this)}}]),an);function an(){return u(this,an),c(this,(an.__proto__||Object.getPrototypeOf(an)).apply(this,arguments))}var sn="unavailable",un="update",cn="paymentSuccessful",ln="paymentError",dn="paymentInReview",hn=(t(pn,[{key:"load",value:function(){try{this.setupServiceCallbacks(),this.service.load(this.container)}catch(e){throw this.eventEmitter.emit(sn,{event:sn,data:null}),e}}},{key:"update",value:function(e){this.service.update(e)}},{key:"setEnv",value:function(e,t){this.api.setEnv(e,t),this.service.setEnv(e)}},{key:"close",value:function(){"function"==typeof this.service.close&&this.service.close()}},{key:"on",value:function(e,t){var n=this;return e===un&&(this.hasUpdateHandler=!0),"function"==typeof t?this.eventEmitter.subscribe(e,t):new Promise(function(t){return n.eventEmitter.subscribe(e,function(e){return t(e)})})}},{key:"onUnavailable",value:function(e){var t=this;return"function"==typeof e?this.eventEmitter.subscribe(sn,e):new Promise(function(e){return t.eventEmitter.subscribe(sn,function(){return e()})})}},{key:"onUpdate",value:function(e){var n=this;return this.hasUpdateHandler=!0,"function"==typeof e?this.eventEmitter.subscribe(un,e):new Promise(function(t){return n.eventEmitter.subscribe(un,function(e){return t(e)})})}},{key:"onPaymentSuccessful",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(cn,e):new Promise(function(t){return n.eventEmitter.subscribe(cn,function(e){return t(e)})})}},{key:"onPaymentInReview",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(dn,e):new Promise(function(t){return n.eventEmitter.subscribe(dn,function(e){return t(e)})})}},{key:"onPaymentError",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(ln,e):new Promise(function(t){return n.eventEmitter.subscribe(ln,function(e){return t(e)})})}},{key:"setupServiceCallbacks",value:function(){this.setupUnavailableCallback(),this.setupUpdateCallback(),this.setupWalletCallback(),this.setupPaymentCallback(),this.setupPaymentSuccessCallback(),this.setupPaymentInReviewCallback(),this.setupPaymentErrorCallback()}},{key:"setupUnavailableCallback",value:function(){var e=this;this.service.on(It.UNAVAILABLE,function(){return e.eventEmitter.emit(sn,{event:sn,data:null})})}},{key:"setupUpdateCallback",value:function(){var t=this;this.service.on(It.UPDATE,function(e){return t.hasUpdateHandler?t.eventEmitter.emit(un,{event:un,data:e}):t.update({success:!0})})}},{key:"setupWalletCallback",value:function(){var r=this;this.service.on(It.CALLBACK,function(e){var t=e.data,n=e.onSuccess,i=e.onError;r.api.charge().walletCallback(t).then(function(e){return n(e)},function(e){return i(e.message)})})}},{key:"setupPaymentCallback",value:function(){var r=this;this.service.on(It.PAYMENT_METHOD_SELECTED,function(e){var n=e.data,i=e.onSuccess,t=e.onError;r.api.charge().walletCapture(n).then(function(e){"function"==typeof i&&i();var t="inreview"===e.status?dn:cn;r.eventEmitter.emit(t,{event:t,data:y(y({},e),n.customer&&{payer_name:n.customer.payer_name,payer_email:n.customer.payer_email,payer_phone:n.customer.payer_phone})})},function(e){"function"==typeof t&&t(e),r.eventEmitter.emit(ln,{event:ln,data:e})})})}},{key:"setupPaymentSuccessCallback",value:function(){var t=this;this.service.on(It.PAYMENT_SUCCESS,function(e){return t.eventEmitter.emit(cn,{event:cn,data:e})})}},{key:"setupPaymentInReviewCallback",value:function(){var t=this;this.service.on(It.PAYMENT_IN_REVIEW,function(e){return t.eventEmitter.emit(dn,{event:dn,data:e})})}},{key:"setupPaymentErrorCallback",value:function(){var t=this;this.service.on(It.PAYMENT_ERROR,function(e){return t.eventEmitter.emit(ln,{event:ln,data:e})})}}]),pn);function pn(e,t,n){u(this,pn),this.hasUpdateHandler=!1;var i=Qt.validateJWT(t);if(!i)throw new Error("Invalid charge token");this.eventEmitter=new xe,this.container=new ae(e);var r=Qt.extractMeta(i.body);switch(this.api=new on(t,Xt.TOKEN),r.gateway.type){case N.STRIPE:this.service=new Wt(r.credentials.client_auth,y(y({},n),{amount:r.charge.amount,currency:r.charge.currency}));break;case N.FLYPAY:this.service=new Dt(t,y(y({},n),{id:r.charge.id,gateway_mode:r.gateway.mode,amount:r.charge.amount,currency:r.charge.currency}));break;case N.PAYPAL:this.service=new jt(r.credentials.client_auth,y(y({},n),{id:r.charge.id,gateway_mode:r.gateway.mode,amount:r.charge.amount,currency:r.charge.currency,capture:r.charge.capture}));break;case N.MASTERCARD:this.service=new Gt("",y(y({},n),{credentials:r.gateway.credentials,amount:r.charge.amount,currency:r.charge.currency}))}}var fn=(t(vn,[{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"setRefId",value:function(e){this.link.setParams({ref_id:e})}},{key:"setLimit",value:function(e){this.link.setParams({limit:e})}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){this.link.getEnv()}},{key:"getIFrameUrl",value:function(){return this.link.getUrl()}},{key:"filterByGatewayIds",value:function(e){this.link.setParams({gateway_ids:e.join(",")})}},{key:"filterByTypes",value:function(e){var t=[],n=!0,i=!1,r=void 0;try{for(var o,a=e[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var s=o.value;e.hasOwnProperty(s)&&(-1===I.values(F).indexOf(s)?console.warn("PaymentSourceWidget::filterByTypes: unsupported type "+s):t.push(s))}}catch(e){i=!0,r=e}finally{try{!n&&a.return&&a.return()}finally{if(i)throw r}}this.link.setParams({payment_source_types:t.join(",")})}},{key:"setLanguage",value:function(e){this.link.setParams({language:e})}}]),vn);function vn(e,t){u(this,vn),this.configs=[],this.configTokens=[],this.link=new R("/payment-sources"),this.link.setParams({public_key:e,query_token:t})}var mn,yn,gn=(r(kn,fn),t(kn,[{key:"load",value:function(){this.iFrame.load(this.getIFrameUrl(),{title:"Payment Sources"})}},{key:"on",value:function(e,t){this.event.on(e,this.link.getParams().widget_id,t)}},{key:"hide",value:function(e){console.info("PayDock SDK"),this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}},{key:"onSelectInsert",value:function(t,n){this.on(le.SELECT,function(e){re.insertToInput(t,n,e)})}}]),kn);function kn(e,t,n){u(this,kn);var i=c(this,(kn.__proto__||Object.getPrototypeOf(kn)).call(this,t,n));return i.container=new ae(e),i.iFrame=new ue(i.container),i.event=new de(window),i}(yn=mn=mn||{}).HTML="html",yn.URL="url";var _n=(t(En,[{key:"load",value:function(){this.token.format===mn.HTML?this.iFrame.loadFromHtml(this.token.content,{title:"3d secure authentication"}):this.token.format===mn.URL?this.iFrame.load(this.token.content,{title:"3d secure authentication"}):console.error("Token contain unsupported payload")}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){return this.link.getEnv()}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().ref_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().ref_id,function(e){return t(e)})})}},{key:"hide",value:function(e){this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}}],[{key:"extractToken",value:function(e){return JSON.parse(window.atob(e))}}]),En);function En(e,t){u(this,En),this.configs=[],this.link=new R("/3ds/webhook"),this.token=En.extractToken(t),this.link.setParams({ref_id:this.token.charge_3ds_id}),this.container=new ae(e),this.iFrame=new ue(this.container),this.event=new de(window)}var bn="/v1/charges/3ds",wn=(t(Sn,[{key:"preAuth",value:function(e,t){return"function"==typeof t?this.api.getClient("POST",bn).send(y(y({},e),{_3ds:y(y({},e._3ds),{browser_details:{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}})}),function(e){t(e)}):this.api.getClientPromise("POST",bn).send(y(y({},e),{_3ds:y(y({},e._3ds),{browser_details:{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}})}))}}]),Sn);function Sn(e){u(this,Sn),this.api=e}var Cn,Tn,On=(r(xn,en),t(xn,[{key:"getBrowserDetails",value:function(){return{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}}},{key:"charge",value:function(){return new wn(this)}}]),xn);function xn(e){u(this,xn);var t=c(this,(xn.__proto__||Object.getPrototypeOf(xn)).call(this,e));return t.publicKey=t.auth,t}(Tn=Cn=Cn||{}).AFTER_LOAD="after_load",Tn.SYSTEM_ERROR="system_error",Tn.CVV_SECURE_CODE_REQUESTED="cvv_secure_code_requested",Tn.CARD_NUMBER_SECURE_CODE_REQUESTED="card_number_secure_code_requested",Tn.ACCESS_FORBIDDEN="access_forbidden",Tn.SESSION_EXPIRED="session_expired",Tn.OPERATION_FORBIDDEN="operation_forbidden";var Pn=(r(An,de),t(An,[{key:"on",value:function(e,t,n){for(var i in Cn)Cn.hasOwnProperty(i)&&e===Cn[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}}]),An);function An(){return u(this,An),c(this,(An.__proto__||Object.getPrototypeOf(An)).apply(this,arguments))}var Rn=(t(Ln,[{key:"setEnv",value:function(e,t){this.link.setEnv(e,t)}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().widget_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().widget_id,function(e){return t(e)})})}},{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"load",value:function(){this.iFrame.load(this.link.getUrl(),{title:"Vault Display"})}}]),Ln);function Ln(e,t){u(this,Ln),this.validationData={},this.configs=[],this.container=new ae(e),this.iFrame=new ue(this.container),this.triggerElement=new fe(this.iFrame),this.event=new Pn(window),this.vaultDisplayToken=t,this.link=new R("/vault-display"),this.link.setParams({vault_display_token:t})}e.AfterpayCheckoutButton=_t,e.Api=On,e.CHECKOUT_BUTTON_EVENT=vt,e.Canvas3ds=_n,e.CheckoutButton=mt,e.Configuration=J,e.ELEMENT=q,e.EVENT=le,e.ExternalCheckoutBuilder=Se,e.ExternalCheckoutChecker=Te,e.FORM_FIELD=H,e.HtmlMultiWidget=ge,e.HtmlPaymentSourceWidget=gn,e.HtmlWidget=_e,e.MultiWidget=ne,e.PAYMENT_TYPE=K,e.PURPOSE=G,e.PaymentSourceBuilder=Fe,e.PaymentSourceWidget=fn,e.PaypalCheckoutButton=St,e.STYLABLE_ELEMENT=Z,e.STYLABLE_ELEMENT_STATE=Q,e.STYLE=B,e.SUPPORTED_CARD_TYPES=W,e.TEXT=z,e.TRIGGER=pe,e.TYPE=je,e.VAULT_DISPLAY_STYLE={BACKGROUND_COLOR:"background_color",TEXT_COLOR:"text_color",BORDER_COLOR:"border_color",BUTTON_COLOR:"button_color",FONT_SIZE:"font_size",FONT_FAMILY:"font_family"},e.VaultDisplayWidget=Rn,e.WalletButtons=hn,e.ZipmoneyCheckoutButton=gt,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).paydock={})}(this,function(e){"use strict";function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t=function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e};function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t,n){null===e&&(e=Function.prototype);var i=Object.getOwnPropertyDescriptor(e,t);if(void 0===i){var r=Object.getPrototypeOf(e);return null===r?void 0:a(r,t,n)}if("value"in i)return i.value;var o=i.get;return void 0!==o?o.call(n):void 0}function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var y=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},s=function(e,t){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return function(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(i=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&s.return&&s.return()}finally{if(r)throw o}}return n}(e,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")},o="sandbox",l="sandbox-kovena",d="sandbox-demo",h="sandbox-demo-kovena",p="production",f="staging",v="staging_2",m="staging_3",g="staging_4",k="staging_5",_=[l,h],E=o,b="paydock.com",w="kovena.com",S=(t(C,[{key:"setEnv",value:function(e,t){if(!this.isValidMode(this.configs,e))throw new Error("unknown env: "+e);if(this.env=e,t&&!t.match("^([a-zA-Z0-9](?:(?:[a-zA-Z0-9-.]*(?!-)\\.(?![-.]))*[a-zA-Z0-9]+)?)$"))throw new Error("invalid: "+t);t?this.alias=t:-1!==_.indexOf(this.env)?this.alias=w:this.alias=b}},{key:"getEnv",value:function(){return this.env}},{key:"getConf",value:function(){for(var e in this.configs)if(this.configs.hasOwnProperty(e)&&this.configs[e].env===this.getEnv())return{url:-1!==this.configs[e].url.indexOf("localhost")?this.configs[e].url:this.configs[e].url+this.alias,env:this.configs[e].env};throw new Error("invalid env")}},{key:"isValidMode",value:function(e,t){for(var n in e)if(e.hasOwnProperty(n)&&e[n].env===t)return!0;return!1}}]),C);function C(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:E;u(this,C),this.configs=e,this.setEnv(t)}var T=(t(O,null,[{key:"extendSearchParams",value:function(e,t,n){return e.replace(new RegExp("([?&]"+t+"(?=[=&#]|$)[^#&]*|(?=#|$))"),"&"+t+"="+encodeURIComponent(n)).replace(/^([^?&]+)&/,"$1?")}}]),O);function O(){u(this,O)}var x=(t(P,null,[{key:"generate",value:function(){if("undefined"==typeof window||void 0===window.crypto||void 0===window.crypto.getRandomValues)return this.random()+this.random()+"-"+this.random()+"-"+this.random()+"-"+this.random()+"-"+this.random()+this.random()+this.random();var e=new Uint16Array(8);return window.crypto.getRandomValues(e),this.hash(e[0])+this.hash(e[1])+"-"+this.hash(e[2])+"-"+this.hash(e[3])+"-"+this.hash(e[4])+"-"+this.hash(e[5])+this.hash(e[6])+this.hash(e[7])}},{key:"hash",value:function(e){for(var t=e.toString(16);t.length<4;)t="0"+t;return t}},{key:"random",value:function(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}}]),P);function P(){u(this,P)}var A="/wallet/flypay",R=(t(L,[{key:"getNetUrl",value:function(){return this.env.getConf().url+this.linkResource}},{key:"getUrl",value:function(){var e=this.getNetUrl(),t=this.getParams();for(var n in t)t.hasOwnProperty(n)&&(e=T.extendSearchParams(e,n,t[n]));return e}},{key:"setParams",value:function(e){this.params=y({},this.params,e)}},{key:"concatParams",value:function(e){for(var t in e)e.hasOwnProperty(t)&&e[t].length&&("string"!=typeof this.params[t]&&(this.params[t]=""),this.params[t].length?this.params[t]+=","+e[t]:this.params[t]+=e[t])}},{key:"getParams",value:function(){return this.params}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env.getEnv()}}]),L);function L(e){u(this,L),this.params={},this.widgetId=x.generate(),this.linkResource=e,this.env=new S([{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:o,url:"https://widget-sandbox."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}]),this.setParams({widget_id:this.widgetId})}var I=(t(U,null,[{key:"values",value:function(t){return Object.keys(t).map(function(e){return t[e]})}}]),U);function U(){u(this,U)}var N,D,M,j,F={CARD:"card",BANK_ACCOUNT:"bank_account",CHECKOUT:"checkout"},H={CARD_NAME:"card_name",CARD_NUMBER:"card_number",EXPIRE_MONTH:"expire_month",EXPIRE_YEAR:"expire_year",CARD_CCV:"card_ccv",ACCOUNT_NAME:"account_name",ACCOUNT_BSB:"account_bsb",ACCOUNT_NUMBER:"account_number",ACCOUNT_ROUTING:"account_routing",ACCOUNT_HOLDER_TYPE:"account_holder_type",ACCOUNT_BANK_NAME:"account_bank_name",ACCOUNT_TYPE:"account_type",FIRST_NAME:"first_name",LAST_NAME:"last_name",EMAIL:"email",PHONE:"phone",PHONE2:"phone2",ADDRESS_LINE1:"address_line1",ADDRESS_LINE2:"address_line2",ADDRESS_STATE:"address_state",ADDRESS_COUNTRY:"address_country",ADDRESS_CITY:"address_city",ADDRESS_POSTCODE:"address_postcode",ADDRESS_COMPANY:"address_company"},B={BACKGROUND_COLOR:"background_color",BACKGROUND_ACTIVE_COLOR:"background_active_color",TEXT_COLOR:"text_color",BORDER_COLOR:"border_color",ICON_SIZE:"icon_size",BUTTON_COLOR:"button_color",ERROR_COLOR:"error_color",SUCCESS_COLOR:"success_color",FONT_SIZE:"font_size",FONT_FAMILY:"font_family"},z={TITLE:"title",TITLE_H1:"title_h1",TITLE_H2:"title_h2",TITLE_H3:"title_h3",TITLE_H4:"title_h4",TITLE_H5:"title_h5",TITLE_H6:"title_h6",FINISH:"finish_text",TITLE_DESCRIPTION:"title_description",SUBMIT_BUTTON:"submit_button",SUBMIT_BUTTON_PROCESSING:"submit_button_processing"},q={SUBMIT_BUTTON:"submit_button",TABS:"tabs"},W={AMEX:"amex",AUSBC:"ausbc",DINERS:"diners",DISCOVER:"discover",JAPCB:"japcb",LASER:"laser",MASTERCARD:"mastercard",SOLO:"solo",VISA:"visa",VISA_WHITE:"visa_white"},V=[].concat(["brand_name","cart_border_color","reference","email","hdr_img","logo_img","pay_flow_color","first_name","last_name","address_line","address_line2","address_city","address_state","address_postcode","address_country","phone","hide_shipping_address"],["first_name","last_name","phone","tokenize","email","gender","date_of_birth","charge","statistics","hide_shipping_address"],["amount","currency","email","first_name","last_name","address_line","address_line2","address_city","address_state","address_postcode","address_country","phone"],["customer_storage_number","tokenise_algorithm"]);(D=N=N||{}).STRIPE="Stripe",D.FLYPAY="Flypay",D.PAYPAL="Paypal",D.MASTERCARD="MasterCard",(j=M=M||{}).GOOGLE="google",j.APPLE="apple";var K={CARD:"card",BANK_ACCOUNT:"bank_account",CHECKOUT:"checkout"},G={PAYMENT_SOURCE:"payment_source",CARD_PAYMENT_SOURCE_WITH_CVV:"card_payment_source_with_cvv",CARD_PAYMENT_SOURCE_WITHOUT_CVV:"card_payment_source_without_cvv"},J=(t(X,[{key:"setWebHookDestination",value:function(e){this.configs.webhook_destination=e}},{key:"setSuccessRedirectUrl",value:function(e){this.configs.success_redirect_url=e}},{key:"setErrorRedirectUrl",value:function(e){this.configs.error_redirect_url=e}},{key:"setFormFields",value:function(e){for(var t in Array.isArray(this.configs.defined_form_fields)||(this.configs.defined_form_fields=[]),e)e.hasOwnProperty(t)&&(-1!==I.values(H).indexOf(e[t].replace("*",""))?this.configs.defined_form_fields.push(e[t]):console.warn("Configuration::setFormFields: unsupported form field "+e[t]))}},{key:"setMeta",value:function(e){for(var t in e)e.hasOwnProperty(t)&&(-1!==V.indexOf(t)?this.configs.meta[t]=e[t]:console.warn("Configuration::setMeta: unsupported meta key "+t))}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"setLabel",value:function(e){this.configs.label=e}},{key:"getEnv",value:function(){return this.env.getEnv()}},{key:"createToken",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.send(e,function(e,t){if(200<=t&&t<300)return n(e.resource.data.configuration_token);void 0===e.error||void 0===e.error.message?i("unknown error"):i(e.error.message)})}},{key:"send",value:function(e,t){var n=new XMLHttpRequest;n.open("POST",this.getUrl(),!0),n.setRequestHeader("Content-Type","application/json; charset=UTF-8"),n.setRequestHeader("x-user-public-key",e),n.send(JSON.stringify(this.getConfigs())),n.onload=function(){var e={};try{e=JSON.parse(n.responseText)}catch(e){}t(e,n.status)}}},{key:"getConfigs",value:function(){return this.configs}},{key:"getUrl",value:function(){return this.env.getConf().url+"/v1/remote-action/configs"}}],[{key:"createEachToken",value:function(e,n,i,t){function r(t){n.hasOwnProperty(t)&&n[t].createToken(e,function(e){a[t]=e,u++,n.length===u&&X.finishCreatingEachToken(a,s,i,o)},function(e){s.push("gateway: "+n[t].getConfigs().predefined_fields.gateway_id+" | "+e),u++,n.length===u&&X.finishCreatingEachToken(a,s,i,o)})}var o=3<arguments.length&&void 0!==t?t:function(e){},a=new Array(n.length),s=[],u=0;for(var c in n)r(c)}},{key:"finishCreatingEachToken",value:function(e,t,n,i){1<=t.length?i(t):n(e)}}]),X);function X(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"default",t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:K.CARD,n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:G.PAYMENT_SOURCE;if(u(this,X),-1===I.values(K).indexOf(t))throw new Error("unsupported payment type");if(t===K.CHECKOUT)throw new Error('Payment type "checkout" is deprecated. Use CheckoutButton for this type of payments https://www.npmjs.com/package/@paydock/client-sdk#checkout-button');if(-1===I.values(G).indexOf(n))throw new Error("unsupported purpose");this.env=new S([{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}]),this.configs={purpose:n,meta:{},dynamic_fields_position:!0,predefined_fields:{gateway_id:e,type:t}}}var Z={INPUT:"input",SUBMIT_BUTTON:"submit_button",LABEL:"label",TITLE:"title",TITLE_DESCRIPTION:"title_description"},Q={ERROR:"error",FOCUS:"focus",HOVER:"hover"},$=[{element:Z.INPUT,states:[Q.FOCUS,Q.ERROR],styles:["color","border","border_radius","background_color","height","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","transition"]},{element:Z.SUBMIT_BUTTON,states:[Q.HOVER],styles:["color","border","border_radius","background_color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","transition","opacity"]},{element:Z.LABEL,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin"]},{element:Z.TITLE,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","text_align"]},{element:Z.TITLE_DESCRIPTION,states:[],styles:["color","text_decoration","font_size","font_family","line_height","font_weight","padding","margin","text_align"]}],ee=(t(te,null,[{key:"check",value:function(e,t,n,i){for(var r in e)if(e.hasOwnProperty(r)&&e[r].element===t){if(-1===e[r].states.indexOf(n)&&n)return!1;for(var o in i)if(i.hasOwnProperty(o)&&-1===e[r].styles.indexOf(o.replace("-","_")))return!1;return!0}return!1}},{key:"encode",value:function(e,t,n){var i=[];for(var r in n)n.hasOwnProperty(r)&&i.push(r.replace("_","-")+":"+n[r]);var o=i.join(";");return t?e+"::"+t+"{"+o+"}":e+"{"+o+"}"}},{key:"decode",value:function(e){var t=(e.match("::(.*){")||["",null])[1],n=null!==t?(e.match("(.*)::")||["",""])[1].trim():(e.match("(.*){")||["",""])[1].trim(),i=(e.match("{(.*)}")||["",""])[1].split(";"),r={};for(var o in i)if(i.hasOwnProperty(o)){var a=i[o].split(":");!a&&2!==a.length||(r[a[0].trim()]=(a[1]||"").trim())}return{element:n,state:t,styles:r}}}]),te);function te(){u(this,te)}var ne=(t(ie,[{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"usePhoneCountryMask",value:function(e){return e?!e.only_countries||/^[a-z]+$/.test(e.only_countries.join(""))&&2*e.only_countries.length===e.only_countries.join("").length?!e.preferred_countries||/^[a-z]+$/.test(e.preferred_countries.join(""))&&2*e.preferred_countries.length===e.preferred_countries.join("").length?e.default_country&&2!==e.default_country.length?console.warn("Widget::usePhoneCountryMask[s: default_country - incorrect value length"):(this.link.setParams({use_country_phone_mask:!0}),e.only_countries&&this.link.setParams({phone_mask_only_countries:e.only_countries.join(",")}),e.preferred_countries&&this.link.setParams({phone_mask_preferred_countries:e.preferred_countries.join(",")}),void(e.default_country&&this.link.setParams({phone_mask_default_country:e.default_country}))):console.warn("Widget::usePhoneCountryMask[s: preferred_countries - unsupported symbols or incorrect length of value"):console.warn("Widget::usePhoneCountryMask[s: only_countries - unsupported symbols or incorrect length of value"):this.link.setParams({use_country_phone_mask:!0})}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"setTexts",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setText(t,e[t])}},{key:"setText",value:function(e,t){-1!==I.values(z).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setText[s: unsupported text param "+e)}},{key:"setElementStyle",value:function(e,t,n){var i=3===arguments.length?t:null,r=3===arguments.length?n:t;if(!ee.check($,e,i,r))return console.warn('Styles for "'+e+'" element with "'+(i||"default")+'" state was ignored because some of the arguments are unacceptable');this.link.concatParams({element_styles:ee.encode(e,i,r)})}},{key:"setFormValues",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormValue(t,e[t])}},{key:"setFormValue",value:function(e,t){return-1===I.values(H).indexOf(e)?console.warn("Widget::setFormValues[s: unsupported field "+e):/\,/.test(t)||/\:/.test(t)?console.warn("Widget::setFormValues[s: "+e+" - unsupported symbols (: or ,) in value"):void("string"==typeof this.link.getParams().form_values&&this.link.getParams().form_values.length?this.link.setParams({form_values:this.link.getParams().form_values+","+e+":"+t}):this.link.setParams({form_values:e+":"+t}))}},{key:"setFormLabels",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormLabel(t,e[t])}},{key:"setFormLabel",value:function(e,t){if(-1===I.values(H).indexOf(e))return console.warn("Widget::setFormLabel[s: unsupported field "+e);var n=null===t||""===t?" ":t;if(/\,/.test(n)||/\:/.test(n))return console.warn("Widget::setFormLabel[s: "+e+" - unsupported symbols (: or ,) in value");this.link.concatParams({form_labels:e+":"+n})}},{key:"setFormPlaceholders",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setFormPlaceholder(t,e[t])}},{key:"setFormPlaceholder",value:function(e,t){if(-1===I.values(H).indexOf(e))return console.warn("Widget::setFormPlaceholder[s: unsupported field "+e);var n=null===t||""===t?" ":t;if(/\,/.test(n)||/\:/.test(n))return console.warn("Widget::setFormPlaceholder[s: "+e+" - unsupported symbols (: or ,) in value");this.link.concatParams({form_placeholders:e+":"+n})}},{key:"setFormElements",value:function(e){var t=this;e.forEach(function(e){return t.setFormElement(e)})}},{key:"setFormElement",value:function(e){e.value&&this.setFormValue(e.field,e.value),e.label&&this.setFormLabel(e.field,e.label),e.placeholder&&this.setFormPlaceholder(e.field,e.placeholder)}},{key:"setIcons",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setIcon(t,e[t])}},{key:"setIcon",value:function(e,t){if(/\,/.test(t)||/\:/.test(t))return console.warn("Widget::setIcon[s: "+e+" - unsupported symbols (: or ,) in value");"string"==typeof this.link.getParams().icons&&this.link.getParams().icons.length?this.link.setParams({icons:this.link.getParams().icons+","+e+":"+t}):this.link.setParams({icons:e+":"+t})}},{key:"setHiddenElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::setHiddenElements: unsupported element "+e[i]));t.length&&this.link.concatParams({hidden_elements:t.join(",")})}},{key:"setRefId",value:function(e){this.link.setParams({ref_id:e})}},{key:"useGatewayFieldValidation",value:function(){this.link.setParams({fields_validation:!0})}},{key:"setSupportedCardIcons",value:function(e,t){var n=[];for(var i in e)e.hasOwnProperty(i)&&(-1!==I.values(W).indexOf(e[i])?n.push(e[i]):console.warn("Widget::cardTypes: unsupported type of cards "+e[i]));n.length&&this.link.concatParams({supported_card_types:n.join(",")}),t&&this.link.setParams({validate_card_types:t})}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){this.link.getEnv()}},{key:"loadIFrameUrl",value:function(t,e){var n=this,i=1<arguments.length&&void 0!==e?e:function(e){};if(this.link.setParams({configuration_tokens:""}),this.configTokens.length)return this.link.setParams({configuration_tokens:this.configTokens.join(",")}),t(this.link.getUrl());J.createEachToken(this.publicKey,this.configs,function(e){return n.link.concatParams({configuration_tokens:e.join(",")}),t(n.link.getUrl())},function(e){i(e)})}},{key:"setLanguage",value:function(e){this.link.setParams({language:e})}}]),ie);function ie(e,t){if(u(this,ie),this.configs=[],this.configTokens=[],this.link=new R("/remote-action"),this.link.setParams({public_key:e}),this.publicKey=e,!t||Array.isArray(t)&&!t.length)throw Error("configuration token is required");if("string"==typeof t)this.configTokens.push(t);else if(t instanceof J)this.configs.push(t);else if(Array.isArray(t)&&"string"==typeof t[0])this.configTokens=t;else{if(!(Array.isArray(t)&&t[0]instanceof J))throw Error("Unsupported type of configuration token");this.configs=t}}var re=(t(oe,null,[{key:"insertToInput",value:function(e,t,n){if(void 0!==n[t]){var i=document.querySelector(e);i&&(i.value=n[t])}}},{key:"subscribe",value:function(e,t,n){t.addEventListener?t.addEventListener(e,n):t.attachEvent("on"+e,n)}}]),oe);function oe(){u(this,oe)}var ae=(t(se,[{key:"isExist",value:function(){return!!this.getElement()}},{key:"getStyles",value:function(e){if(this.isExist()){var t=this.getElement().getAttribute("widget-style");if(!t)return{};var n=t.split(";");return void 0===n||n.length?this.convertConfigs(n,e):{}}}},{key:"on",value:function(e,t){this.isExist()&&re.subscribe(e,this.getElement(),t)}},{key:"getAttr",value:function(e){if(this.isExist()){var t=this.getElement(),n=[];for(var i in e)if(e.hasOwnProperty(i)){var r=e[i].replace(/_/g,"-"),o=t.getAttribute(r);o&&n.push(e[i]+":"+o)}return void 0===n||n.length?this.convertConfigs(n,e):{}}}},{key:"getElement",value:function(){return document.querySelector(this.selector)}},{key:"convertConfigs",value:function(e,t){var n={};for(var i in e)if(e.hasOwnProperty(i)){var r=e[i].split(":"),o=r[0].replace(/-/g,"_").trim();-1!==t.indexOf(o)&&(n[o]=r[1].trim())}return n}}]),se);function se(e){u(this,se),this.selector=e}var ue=(t(ce,[{key:"load",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.container.isExist()&&!this.isExist()){var i=document.createElement("iframe");i.setAttribute("src",e),n.title&&(i.title=n.title),this.container.getElement().appendChild(i)}}},{key:"loadFromHtml",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.container.isExist()&&!this.isExist()){var i=document.createElement("iframe");i.setAttribute("height","100%"),i.setAttribute("width","100%"),n.title&&(i.title=n.title),this.container.getElement().appendChild(i);var r=this.getElement().contentDocument;r.open(),r.write("<html><head><style>html, body {margin: 0;} iframe {border: 0; width: 100%}</style><title></title></head><body>{{content}}</body></html>".replace("{{content}}",e)),r.close()}}},{key:"remove",value:function(){if(this.container.isExist()&&this.isExist()){var e=this.getElement();this.container.getElement().removeChild(e)}}},{key:"show",value:function(){this.isExist()&&(this.setStyle("visibility","visible"),this.setStyle("display","block"))}},{key:"hide",value:function(e){var t=0<arguments.length&&void 0!==e&&e;this.isExist()&&(t?this.setStyle("visibility","hidden"):this.setStyle("display","none"))}},{key:"isExist",value:function(){return!!this.getElement()}},{key:"getElement",value:function(){return this.container.isExist()?this.container.getElement().querySelector("iframe"):null}},{key:"setStyle",value:function(e,t){this.getElement().style[e]=t}}]),ce);function ce(e){u(this,ce),this.container=e}var le={AFTER_LOAD:"afterLoad",SUBMIT:"submit",FINISH:"finish",VALIDATION_ERROR:"validationError",SYSTEM_ERROR:"systemError",CHECKOUT_SUCCESS:"checkoutSuccess",CHECKOUT_ERROR:"checkoutError",VALIDATION:"validation",SELECT:"select",UNSELECT:"unselect",NEXT:"next",PREV:"prev",META_CHANGE:"metaChange",RESIZE:"resize",CHARGE_AUTH_SUCCESS:"chargeAuthSuccess",CHARGE_AUTH_REJECT:"chargeAuthReject",CHARGE_AUTH_CANCELLED:"chargeAuthCancelled",ADDITIONAL_DATA_SUCCESS:"additionalDataCollectSuccess",ADDITIONAL_DATA_REJECT:"additionalDataCollectReject",CHARGE_AUTH:"chargeAuth"},de=(t(he,[{key:"emit",value:function(e){for(var t in this.listeners)this.listeners[t].event===e.event&&e.widget_id===this.listeners[t].widget_id&&this.listeners[t].listener.apply(this,[e])}},{key:"on",value:function(e,t,n){for(var i in le)le.hasOwnProperty(i)&&e===le[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}},{key:"subscribe",value:function(e,t){e.addEventListener?e.addEventListener("message",t):e.attachEvent("onmessage",t)}}]),he);function he(e){var n=this;u(this,he),this.listeners=[],e&&re.subscribe("message",e,function(e){var t=void 0;try{t=JSON.parse(e.data)}catch(e){}t&&n.emit(t)})}var pe={SUBMIT_FORM:"submit_form",CHANGE_TAB:"tab",HIDE_ELEMENTS:"hide_elements",SHOW_ELEMENTS:"show_elements",REFRESH_CHECKOUT:"refresh_checkout",UPDATE_FORM_VALUES:"update_form_values",INIT_CHECKOUT:"init_checkout"},fe=(t(ve,[{key:"push",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.iFrame.isExist()){-1===I.values(pe).indexOf(e)&&console.warn("unsupported trigger type");var i={trigger:e,destination:"widget.paydock",data:n};this.iFrame.getElement().contentWindow.postMessage(JSON.stringify(i),"*")}}}]),ve);function ve(e){u(this,ve),this.iFrame=e}var me=(t(ye,[{key:"getElement",value:function(){return document.querySelector(this.selector)}},{key:"isExist",value:function(){return!!this.getElement()}},{key:"beforeSubmit",value:function(t){var n=this;this.isExist()&&this.subscribe(this.getElement(),function(e){e.preventDefault(),n.intercepted=!0,t.apply(n,[])})}},{key:"continueSubmit",value:function(){var e=this;this.isExist()&&this.intercepted&&(this.intercepted=!1,setTimeout(function(){e.getElement().submit()},50))}},{key:"subscribe",value:function(e,t){e.addEventListener?e.addEventListener("submit",t):e.attachEvent("onsubmit",t)}}]),ye);function ye(e){u(this,ye),this.intercepted=!1,this.selector=e}var ge=(r(ke,ne),t(ke,[{key:"load",value:function(){var t=this;this.setStyles(this.container.getStyles(I.values(B))),this.setTexts(this.container.getAttr(I.values(z))),this.loadIFrameUrl(function(e){t.iFrame.load(e,{title:"Card details"}),t.afterLoad()},function(e){for(var t in console.error("Errors when creating a token[s, widget will not be load:"),e)e.hasOwnProperty(t)&&console.error("--- | "+e[t])})}},{key:"afterLoad",value:function(){var t=this;this.on(le.VALIDATION,function(e){t.validationData=e})}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().widget_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().widget_id,function(e){return t(e)})})}},{key:"trigger",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};this.triggerElement.push(e,n)}},{key:"getValidationState",value:function(){return this.validationData}},{key:"isValidForm",value:function(){return!!this.validationData.form_valid}},{key:"isInvalidField",value:function(e){var t=0<arguments.length&&void 0!==e?e:"";return!!this.validationData.invalid_fields&&-1!==this.validationData.invalid_fields.indexOf(t)}},{key:"isFieldErrorShowed",value:function(e){var t=0<arguments.length&&void 0!==e?e:"";return!!this.validationData.invalid_showed_fields&&-1!==this.validationData.invalid_showed_fields.indexOf(t)}},{key:"isInvalidFieldByValidator",value:function(e,t){var n=0<arguments.length&&void 0!==e?e:"";return!(this.validationData.validators&&!this.validationData.validators[t])&&-1!==this.validationData.validators[t].indexOf(n)}},{key:"hide",value:function(e){this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}},{key:"hideElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::hideElements: unsupported element "+e[i]));t.length&&this.trigger(pe.HIDE_ELEMENTS,{elements:t.join(",")})}},{key:"showElements",value:function(e){var t=[],n=I.values(q).concat(I.values(H));for(var i in e)e.hasOwnProperty(i)&&(-1!==n.indexOf(e[i])?t.push(e[i]):console.warn("Widget::showElements: unsupported element "+e[i]));t.length&&this.trigger(pe.SHOW_ELEMENTS,{elements:t.join(",")})}},{key:"updateFormValues",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.updateFormValue(t,e[t])}},{key:"updateFormValue",value:function(e,t){return-1===I.values(H).indexOf(e)?console.warn("Widget::setFormValues[s: unsupported field "+e):/\,/.test(t)||/\:/.test(t)?console.warn("Widget::setFormValues[s: "+e+" - unsupported symbols (: or ,) in value"):void this.trigger(pe.UPDATE_FORM_VALUES,{form_values:e+":"+t})}},{key:"onFinishInsert",value:function(t,n){this.on(le.FINISH,function(e){re.insertToInput(t,n,e)})}},{key:"interceptSubmitForm",value:function(e){var t=this;this.setHiddenElements([q.SUBMIT_BUTTON]);var n=new me(e);n.beforeSubmit(function(){t.triggerElement.push(pe.SUBMIT_FORM,{}),t.event.on(le.FINISH,t.link.getParams().widget_id,function(){n.continueSubmit()})})}},{key:"useCheckoutAutoSubmit",value:function(){var t=this;this.setHiddenElements([q.SUBMIT_BUTTON]),this.on(le.CHECKOUT_SUCCESS,function(e){t.trigger(pe.SUBMIT_FORM)}),this.on(le.VALIDATION_ERROR,function(e){t.trigger(pe.REFRESH_CHECKOUT)}),this.on(le.SYSTEM_ERROR,function(e){t.trigger(pe.REFRESH_CHECKOUT)})}},{key:"useAutoResize",value:function(){var t=this;this.on(le.RESIZE,function(e){t.iFrame.getElement()&&(t.iFrame.getElement().scrolling="no",e.height&&t.iFrame.setStyle("height",e.height+"px"))})}}]),ke);function ke(e,t,n){u(this,ke);var i=c(this,(ke.__proto__||Object.getPrototypeOf(ke)).call(this,t,n));return i.validationData={},i.container=new ae(e),i.iFrame=new ue(i.container),i.triggerElement=new fe(i.iFrame),i.event=new de(window),i}var _e=(r(Ee,ge),t(Ee,[{key:"setWebHookDestination",value:function(e){this.configs[0].setWebHookDestination(e)}},{key:"setSuccessRedirectUrl",value:function(e){this.configs[0].setSuccessRedirectUrl(e)}},{key:"setErrorRedirectUrl",value:function(e){this.configs[0].setErrorRedirectUrl(e)}},{key:"setFormFields",value:function(e){this.configs[0].setFormFields(e)}},{key:"setFormElements",value:function(e){var t=this;e.forEach(function(e){return t.setFormElement(e)})}},{key:"setFormElement",value:function(e){this.configs[0].setFormFields([e.field]),a(Ee.prototype.__proto__||Object.getPrototypeOf(Ee.prototype),"setFormElement",this).call(this,y(y({},e),{field:e.field.replace("*","")}))}},{key:"setMeta",value:function(e){this.configs[0].setMeta(e)}}]),Ee);function Ee(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default",i=arguments[3],r=arguments[4];u(this,Ee);var o=new J(n,i,r);return c(this,(Ee.__proto__||Object.getPrototypeOf(Ee)).call(this,e,t,o))}var be=(t(we,[{key:"setEnv",value:function(e,t){this.env.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env.getEnv()}},{key:"getUrl",value:function(){return this.env.getConf().url+this.getLink()}},{key:"create",value:function(e,t,n,i){var r=this,o=new XMLHttpRequest;o.onload=function(){r.parser(o.responseText,o.status,n,i)},o.open("POST",this.getUrl(),!0),o.setRequestHeader("Content-Type","application/json; charset=UTF-8"),o.setRequestHeader("x-user-public-key",e),o.send(JSON.stringify(t))}},{key:"get",value:function(e,t,n){var i=this,r=new XMLHttpRequest;r.onload=function(){i.parser(r.responseText,r.status,t,n)},r.open("GET",this.getUrl(),!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),r.setRequestHeader("x-user-public-key",e),r.send()}},{key:"parser",value:function(e,t,n,i){var r={};try{r=JSON.parse(e)}catch(e){}if(200<=t&&t<300||302===t)return n(r.resource.data,t);i(r.error||{message:"unknown error"},t)}}]),we);function we(){u(this,we),this.env=new S([{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}])}var Se=(r(Ce,be),t(Ce,[{key:"getLink",value:function(){return"/v1/payment_sources/external_checkout"}},{key:"setDescriptions",value:function(e){this.body.description=e}},{key:"setMeta",value:function(e){for(var t in e)e.hasOwnProperty(t)&&(-1!==V.indexOf(t)?this.body.meta[t]=e[t]:console.warn("ExternalCheckout::setMeta: unsupported meta key "+t))}},{key:"getConfigs",value:function(){return this.body}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e,t){};this.create(e,this.getConfigs(),function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error","unknown_error"):i(e.message,e.code)})}}]),Ce);function Ce(e,t,n){u(this,Ce);var i=c(this,(Ce.__proto__||Object.getPrototypeOf(Ce)).call(this));return i.body={gateway_id:e,meta:{},success_redirect_url:t,error_redirect_url:n,redirect_url:t},i}var Te=(r(Oe,be),t(Oe,[{key:"getLink",value:function(){return"/v1/payment_sources/external_checkout/:token".replace(":token",this.token)}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.get(e,function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error"):i(e.message)})}}]),Oe);function Oe(e){u(this,Oe);var t=c(this,(Oe.__proto__||Object.getPrototypeOf(Oe)).call(this));return t.token=e,t}var xe=(t(Pe,[{key:"emit",value:function(e,t){var n=this.events[e];n&&n.forEach(function(e){e.call(null,t)})}},{key:"subscribe",value:function(e,t){var n=this;return this.events[e]||(this.events[e]=[]),this.events[e].push(t),function(){n.events[e]=n.events[e].filter(function(e){return t!==e})}}}]),Pe);function Pe(){u(this,Pe),this.events={}}var Ae='\n <div class="cs-loader">\n <div class="cs-loader-inner">\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n <label>\t●</label>\n </div>\n </div>\n',Re="\n <style> \n .cs-loader {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n }\n \n .cs-loader-inner {\n transform: translateY(-50%);\n top: 50%;\n position: absolute;\n width: calc(100% - 200px);\n color: #8e8d8c;\n padding: 0 100px;\n text-align: center;\n }\n \n \n .cs-loader-inner label {\n font-size: 20px;\n opacity: 0;\n display:inline-block;\n }\n \n @keyframes lol {\n 0% {\n opacity: 0;\n transform: translateX(-300px);\n }\n 33% {\n opacity: 1;\n transform: translateX(0px);\n }\n 66% {\n opacity: 1;\n transform: translateX(0px);\n }\n 100% {\n opacity: 0;\n transform: translateX(300px);\n }\n }\n \n @-webkit-keyframes lol {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-300px);\n }\n 33% {\n opacity: 1;\n -webkit-transform: translateX(0px);\n }\n 66% {\n opacity: 1;\n -webkit-transform: translateX(0px);\n }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(300px);\n -moz-transform: translateX(300px);\n }\n }\n \n .cs-loader-inner label:nth-child(6) {\n -webkit-animation: lol 3s infinite ease-in-out;\n -moz-animation: lol 3s infinite ease-in-out;\n animation: lol 3s infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(5) {\n -webkit-animation: lol 3s 100ms infinite ease-in-out;\n -moz-animation: lol 3s 100ms infinite ease-in-out;\n animation: lol 3s 100ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(4) {\n -webkit-animation: lol 3s 200ms infinite ease-in-out;\n -moz-animation: lol 3s 200ms infinite ease-in-out;\n animation: lol 3s 200ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(3) {\n -webkit-animation: lol 3s 300ms infinite ease-in-out;\n -moz-animation: lol 3s 300ms infinite ease-in-out;\n animation: lol 3s 300ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(2) {\n -webkit-animation: lol 3s 400ms infinite ease-in-out;\n -moz-animation: lol 3s 400ms infinite ease-in-out;\n animation: lol 3s 400ms infinite ease-in-out;\n }\n \n .cs-loader-inner label:nth-child(1) {\n -webkit-animation: lol 3s 500ms infinite ease-in-out;\n -moz-animation: lol 3s 500ms infinite ease-in-out;\n animation: lol 3s 500ms infinite ease-in-out;\n }\n </style>\n",Le=(t(Ie,null,[{key:"isFacebook",value:function(){return-1!==navigator.userAgent.indexOf("FBSN/iOS")&&-1!==navigator.userAgent.indexOf("AppleWebKit")&&-1!==navigator.userAgent.indexOf("(KHTML, like Gecko)")}},{key:"isInstagram",value:function(){return-1!==navigator.userAgent.indexOf("iOS")&&-1!==navigator.userAgent.indexOf("Instagram")&&-1!==navigator.userAgent.indexOf("(KHTML, like Gecko)")}},{key:"isSupportPopUp",value:function(){return!this.isFacebook()&&!this.isInstagram()}},{key:"getLanguage",value:function(){return window.navigator.language||""}},{key:"getTimezoneOffset",value:function(){return(new Date).getTimezoneOffset()}},{key:"getBrowserName",value:function(){var e=navigator.userAgent;return-1<e.indexOf("Firefox")?"Mozilla Firefox":-1<e.indexOf("Opera")?"Opera":-1<e.indexOf("Trident")?"Microsoft Internet Explorer":-1<e.indexOf("Edge")?"Microsoft Edge":-1<e.indexOf("Chrome")?"Google Chrome or Chromium":-1<e.indexOf("Safari")?"Apple Safari":"unknown"}},{key:"isJavaEnabled",value:function(){return navigator.javaEnabled()}},{key:"getColorDepth",value:function(){return screen.colorDepth}},{key:"getScreenHeight",value:function(){return screen.height}},{key:"getScreenWidth",value:function(){return screen.width}}]),Ie);function Ie(){u(this,Ie)}var Ue="close",Ne="focus",De=(t(Me,[{key:"initControl",value:function(){if(!this.isInit()&&this.showControl){if(!Le.isSupportPopUp())return this.createLoader();this.createTemplate(),this.createStyles(),this.eventHandler()}}},{key:"initLoader",value:function(){!this.isInit()&&this.showLoader&&(this.createStyles(),this.createLoader())}},{key:"eventHandler",value:function(){var e=this,t=document.querySelector("[data-close]"),n=document.querySelector("[data-continue]");t&&re.subscribe("click",t,function(){return e.eventEmitter.emit(Ue,{})}),n&&re.subscribe("click",n,function(){return e.eventEmitter.emit(Ne,{})})}},{key:"clear",value:function(){(this.style||this.overlay)&&(this.style.parentNode.removeChild(this.style),this.overlay.parentNode.removeChild(this.overlay),this.style=null,this.overlay=null)}},{key:"createLoader",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0];this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=Re+Ae,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createTemplate",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0],n=String('\n <div class="checkout-container">\n <strong class="checkout-title" data-title>{{title}}</strong>\n <p data-description>{{description}}</p>\n <a href="#" data-continue>Continue</a>\n <a href="#" data-close>Close</a>\n </div>\n');n=(n=n.replace("{{description}}",this.description)).replace("{{title}}",this.title),this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=n,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createStyles",value:function(){var e=document.head||document.getElementsByTagName("head")[0],t=String("\n .hide-continue-button [data-continue] {\n display: none;\n }\n \n .checkout-overlay .cs-loader-inner {\n color: #ddd;\n }\n\n .checkout-overlay { \n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: rgba(0,0,0, 0.5);\n text-align: center;\n color: #fff;\n opacity: 0;\n }\n .checkout-overlay.display { \n opacity: 1;\n transition: opacity 0.7s ease-out;\n }\n .checkout-overlay a { color: #00f; }\n .checkout-container {\n position: absolute;\n top: 50%;\n left: 0;\n width: 100%;\n margin-top: -{{width}}px;\n }\n .checkout-title {\n font-size: 24px;\n display: block;\n text-transform: uppercase;\n }\n [data-close] {\n position: fixed;\n right: 32px;\n top: 32px;\n width: 32px;\n height: 32px;\n opacity: 0.3;\n overflow: hidden;\n text-indent: -9999px;\n }\n [data-close]:hover { opacity: 1; }\n [data-close]:before, [data-close]:after {\n position: absolute;\n left: 15px;\n content: ' ';\n height: 33px;\n width: 2px;\n background-color: #00f;\n }\n [data-close]:before { transform: rotate(45deg); }\n [data-close]:after { transform: rotate(-45deg); }\n"),n=document.querySelector(".checkout-container");t=t.replace("{{width}}",n?String(n.offsetHeight/2):"0"),this.style=document.createElement("style"),this.style.type="text/css",this.style.appendChild(document.createTextNode(t)),e.appendChild(this.style)}},{key:"setBackdropDescription",value:function(e){this.description=e}},{key:"setBackdropTitle",value:function(e){this.title=e}},{key:"onTrigger",value:function(e,t){this.eventEmitter.subscribe(e,t)}},{key:"isInit",value:function(){return!(!this.overlay||!this.style)}},{key:"hideContinueControl",value:function(){this.isInit()&&this.overlay.classList.add("hide-continue-button")}},{key:"turnOffControl",value:function(){this.showControl=!1}},{key:"turnOffLoader",value:function(){this.showLoader=!1}}]),Me);function Me(){u(this,Me),this.description="Don't see the secure checkout browser? We'll help you re-launch the window to complete your purchase",this.title="Checkout",this.overlay=null,this.style=null,this.showControl=!0,this.showLoader=!0,this.eventEmitter=new xe}var je={EXTERNAL_CHECKOUT_TOKEN:"external_checkout_token",CHECKOUT_TOKEN:"checkout_token",BANK_ACCOUNT:"bank_account",CARD:"card"},Fe=(r(He,be),t(He,[{key:"getLink",value:function(){return"/v1/payment_sources/tokens"}},{key:"send",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.create(e,this.getConfigs(),function(e,t){return n(e)},function(e,t){void 0===e.message?i("unknown error"):i(e.message)})}},{key:"getConfigs",value:function(){return this.body}}]),He);function He(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:je.CARD;u(this,He);var i=c(this,(He.__proto__||Object.getPrototypeOf(He)).call(this));switch(i.body={gateway_id:e,type:n},n){case je.CARD:case je.BANK_ACCOUNT:delete t.gateway_id,delete t.type,delete t.checkout_token,i.body=y(i.body,t);break;case je.CHECKOUT_TOKEN:case je.EXTERNAL_CHECKOUT_TOKEN:i.body.checkout_token=t;break;default:throw new Error("Unsupported type of PaymentSourceToken")}return i}var Be="success",ze="declined",qe="close",We="referred",Ve="error",Ke=(t(Ye,[{key:"continue",value:function(){}},{key:"next",value:function(){}},{key:"stop",value:function(){}},{key:"error",value:function(e,t,n){n(!0)}},{key:"setCustomRedirectUri",value:function(e){this.customRedirectUti=e}},{key:"setEnv",value:function(e,t){this.widgetEnv.setEnv(e,t)}},{key:"setBackgroundTitle",value:function(e){this.background.setBackdropTitle(e)}},{key:"setBackgroundDescription",value:function(e){this.background.setBackdropDescription(e)}},{key:"turnOffBackdrop",value:function(){this.background.turnOffControl(),this.background.turnOffLoader()}}]),Ye);function Ye(){var e=this;u(this,Ye),this.customRedirectUti=null,this.background=new De,this.background.onTrigger(Ne,function(){return e.continue()}),this.background.onTrigger(Ue,function(){return e.stop()}),this.widgetEnv=new S([{env:o,url:"https://widget-sandbox."},{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}])}var Ge="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function Je(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}function Xe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Ze(e,t){return e(t={exports:{}},t.exports),t.exports}Xe(Ze(function(e){!function r(o,a,s){function u(t,e){if(!a[t]){if(!o[t]){if(!e&&Je)return Je();if(c)return c(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=a[t]={exports:{}};o[t][0].call(i.exports,function(e){return u(o[t][1][e]||e)},i,i.exports,r,o,a,s)}return a[t].exports}for(var c=Je,e=0;e<s.length;e++)u(s[e]);return u}({1:[function(e,t,n){function i(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function o(t){if(l===setTimeout)return setTimeout(t,0);if((l===i||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}function a(){v&&p&&(v=!1,p.length?f=p.concat(f):m=-1,f.length&&s())}function s(){if(!v){var e=o(a);v=!0;for(var t=f.length;t;){for(p=f,f=[];++m<t;)p&&p[m].run();m=-1,t=f.length}p=null,v=!1,function(t){if(d===clearTimeout)return clearTimeout(t);if((d===r||!d)&&clearTimeout)return d=clearTimeout,clearTimeout(t);try{d(t)}catch(e){try{return d.call(null,t)}catch(e){return d.call(this,t)}}}(e)}}function u(e,t){this.fun=e,this.array=t}function c(){}var l,d,h=t.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:i}catch(e){l=i}try{d="function"==typeof clearTimeout?clearTimeout:r}catch(e){d=r}}();var p,f=[],v=!1,m=-1;h.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];f.push(new u(e,t)),1!==f.length||v||o(s)},u.prototype.run=function(){this.fun.apply(null,this.array)},h.title="browser",h.browser=!0,h.env={},h.argv=[],h.version="",h.versions={},h.on=c,h.addListener=c,h.once=c,h.off=c,h.removeListener=c,h.removeAllListeners=c,h.emit=c,h.prependListener=c,h.prependOnceListener=c,h.listeners=function(e){return[]},h.binding=function(e){throw new Error("process.binding is not supported")},h.cwd=function(){return"/"},h.chdir=function(e){throw new Error("process.chdir is not supported")},h.umask=function(){return 0}},{}],2:[function(e,i,r){(function(K){!function(e){if("function"==typeof bootstrap)bootstrap("promise",e);else if("object"==(void 0===r?"undefined":Y(r))&&"object"==(void 0===i?"undefined":Y(i)))i.exports=e();else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeQ=e}else{if("undefined"==typeof window&&"undefined"==typeof self)throw new Error("This environment was not anticipated by Q. Please file a bug.");var t="undefined"!=typeof window?window:self,n=t.Q;t.Q=e(),t.Q.noConflict=function(){return t.Q=n,this}}}(function(){function e(e){return function(){return x.apply(e,arguments)}}function s(e,t){if(b&&t.stack&&"object"==(void 0===e?"undefined":Y(e))&&null!==e&&e.stack){for(var n=[],i=t;i;i=i.source)i.stack&&(!e.__minimumStackCounter__||e.__minimumStackCounter__>i.stackCounter)&&(U(e,"__minimumStackCounter__",{value:i.stackCounter,configurable:!0}),n.unshift(i.stack));n.unshift(e.stack);var r=function(e){for(var t=e.split("\n"),n=[],i=0;i<t.length;++i){var r=t[i];a(r)||(-1!==(o=r).indexOf("(module.js:")||-1!==o.indexOf("(node.js:"))||!r||n.push(r)}var o;return n.join("\n")}(n.join("\n"+j+"\n"));U(e,"stack",{value:r,configurable:!0})}}function r(e){var t=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(e);if(t)return[t[1],Number(t[2])];var n=/at ([^ ]+):(\d+):(?:\d+)$/.exec(e);if(n)return[n[1],Number(n[2])];var i=/.*@(.+):(\d+)$/.exec(e);return i?[i[1],Number(i[2])]:void 0}function a(e){var t=r(e);if(t){var n=t[0],i=t[1];return n===S&&T<=i&&i<=V}}function t(){if(b)try{throw new Error}catch(e){var t=e.stack.split("\n"),n=r(0<t[0].indexOf("@")?t[1]:t[2]);if(!n)return;return S=n[0],n[1]}}function u(e){return e instanceof l?e:o(e)?(t=e,n=c(),u.nextTick(function(){try{t.then(n.resolve,n.reject,n.notify)}catch(e){n.reject(e)}}),n.promise):m(e);var t,n}function c(){function t(n){r=n,u.longStackSupport&&b&&(i.source=n),A(o,function(e,t){u.nextTick(function(){n.promiseDispatch.apply(n,t)})},void 0),a=o=void 0}var r,o=[],a=[],e=I(c.prototype),i=I(l.prototype);if(i.promiseDispatch=function(e,t,n){var i=P(arguments);o?(o.push(i),"when"===t&&n[1]&&a.push(n[1])):u.nextTick(function(){r.promiseDispatch.apply(r,i)})},i.valueOf=function(){if(o)return i;var e=h(r);return p(e)&&(r=e),e},i.inspect=function(){return r?r.inspect():{state:"pending"}},u.longStackSupport&&b)try{throw new Error}catch(t){i.stack=t.stack.substring(t.stack.indexOf("\n")+1),i.stackCounter=F++}return e.promise=i,e.resolve=function(e){r||t(u(e))},e.fulfill=function(e){r||t(m(e))},e.reject=function(e){r||t(v(e))},e.notify=function(n){r||A(a,function(e,t){u.nextTick(function(){t(n)})},void 0)},e}function n(e){if("function"!=typeof e)throw new TypeError("resolver must be a function.");var t=c();try{e(t.resolve,t.reject,t.notify)}catch(e){t.reject(e)}return t.promise}function i(r){return n(function(e,t){for(var n=0,i=r.length;n<i;n++)u(r[n]).then(e,t)})}function l(r,o,t){void 0===o&&(o=function(e){return v(new Error("Promise does not support operation: "+e))}),void 0===t&&(t=function(){return{state:"unknown"}});var a=I(l.prototype);if(a.promiseDispatch=function(e,t,n){var i;try{i=r[t]?r[t].apply(a,n):o.call(a,t,n)}catch(e){i=v(e)}e&&e(i)},a.inspect=t){var e=t();"rejected"===e.state&&(a.exception=e.reason),a.valueOf=function(){var e=t();return"pending"===e.state||"rejected"===e.state?a:e.value}}return a}function d(e,t,n,i){return u(e).then(t,n,i)}function h(e){if(p(e)){var t=e.inspect();if("fulfilled"===t.state)return t.value}return e}function p(e){return e instanceof l}function o(e){return(t=e)===Object(t)&&"function"==typeof e.then;var t}function f(){B.length=0,z.length=0,W=W||!0}function v(t){var e,n,i=l({when:function(e){return e&&function(t){if(W){var n=R(z,t);-1!==n&&("object"==(void 0===K?"undefined":Y(K))&&"function"==typeof K.emit&&u.nextTick.runAfter(function(){var e=R(q,t);-1!==e&&(K.emit("rejectionHandled",B[n],t),q.splice(e,1))}),z.splice(n,1),B.splice(n,1))}}(this),e?e(t):this}},function(){return this},function(){return{state:"rejected",reason:t}});return e=i,n=t,W&&("object"==(void 0===K?"undefined":Y(K))&&"function"==typeof K.emit&&u.nextTick.runAfter(function(){-1!==R(z,e)&&(K.emit("unhandledRejection",n,e),q.push(e))}),z.push(e),n&&void 0!==n.stack?B.push(n.stack):B.push("(no stack) "+n)),i}function m(n){return l({when:function(){return n},get:function(e){return n[e]},set:function(e,t){n[e]=t},delete:function(e){delete n[e]},post:function(e,t){return null==e?n.apply(void 0,t):n[e].apply(n,t)},apply:function(e,t){return n.apply(e,t)},keys:function(){return D(n)}},void 0,function(){return{state:"fulfilled",value:n}})}function y(e,t,n){return u(e).spread(t,n)}function g(e,t,n){return u(e).dispatch(t,n)}function k(e){return d(e,function(r){var o=0,a=c();return A(r,function(e,t,n){var i;p(t)&&"fulfilled"===(i=t.inspect()).state?r[n]=i.value:(++o,d(t,function(e){r[n]=e,0==--o&&a.resolve(r)},a.reject,function(e){a.notify({index:n,value:e})}))},void 0),0===o&&a.resolve(r),a.promise})}function _(r){if(0===r.length)return u.resolve();var o=u.defer(),a=0;return A(r,function(e,t,n){var i=r[n];a++,d(i,function(e){o.resolve(e)},function(e){0==--a&&(e.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+e.message,o.reject(e))},function(e){o.notify({index:n,value:e})})},void 0),o.promise}function E(e){return d(e,function(e){return e=L(e,u),d(k(L(e,function(e){return d(e,w,w)})),function(){return e})})}var b=!1;try{throw new Error}catch(e){b=!!e.stack}function w(){}var S,C,T=t(),O=function(){function n(){for(var e,t;r.next;)e=(r=r.next).task,r.task=void 0,(t=r.domain)&&(r.domain=void 0,t.enter()),i(e,t);for(;u.length;)i(e=u.pop());o=!1}function i(e,t){try{e()}catch(e){if(s)throw t&&t.exit(),setTimeout(n,0),t&&t.enter(),e;setTimeout(function(){throw e},0)}t&&t.exit()}var r={task:void 0,next:null},t=r,o=!1,a=void 0,s=!1,u=[];if(O=function(e){t=t.next={task:e,domain:s&&K.domain,next:null},o||(o=!0,a())},"object"==(void 0===K?"undefined":Y(K))&&"[object process]"===K.toString()&&K.nextTick)s=!0,a=function(){K.nextTick(n)};else if("function"==typeof setImmediate)a="undefined"!=typeof window?setImmediate.bind(window,n):function(){setImmediate(n)};else if("undefined"!=typeof MessageChannel){var e=new MessageChannel;e.port1.onmessage=function(){a=c,(e.port1.onmessage=n)()};var c=function(){e.port2.postMessage(0)};a=function(){setTimeout(n,0),c()}}else a=function(){setTimeout(n,0)};return O.runAfter=function(e){u.push(e),o||(o=!0,a())},O}(),x=Function.call,P=e(Array.prototype.slice),A=e(Array.prototype.reduce||function(e,t){var n=0,i=this.length;if(1===arguments.length)for(;;){if(n in this){t=this[n++];break}if(++n>=i)throw new TypeError}for(;n<i;n++)n in this&&(t=e(t,this[n],n));return t}),R=e(Array.prototype.indexOf||function(e){for(var t=0;t<this.length;t++)if(this[t]===e)return t;return-1}),L=e(Array.prototype.map||function(i,r){var o=this,a=[];return A(o,function(e,t,n){a.push(i.call(r,t,n,o))},void 0),a}),I=Object.create||function(e){function t(){}return t.prototype=e,new t},U=Object.defineProperty||function(e,t,n){return e[t]=n.value,e},N=e(Object.prototype.hasOwnProperty),D=Object.keys||function(e){var t=[];for(var n in e)N(e,n)&&t.push(n);return t},M=e(Object.prototype.toString);C="undefined"!=typeof ReturnValue?ReturnValue:function(e){this.value=e};var j="From previous event:";(u.resolve=u).nextTick=O,u.longStackSupport=!1;var F=1;"object"==(void 0===K?"undefined":Y(K))&&K&&K.env&&K.env.Q_DEBUG&&(u.longStackSupport=!0),(u.defer=c).prototype.makeNodeResolver=function(){var n=this;return function(e,t){e?n.reject(e):2<arguments.length?n.resolve(P(arguments,1)):n.resolve(t)}},u.Promise=n,(u.promise=n).race=i,n.all=k,n.reject=v,(n.resolve=u).passByCopy=function(e){return e},l.prototype.passByCopy=function(){return this},u.join=function(e,t){return u(e).join(t)},l.prototype.join=function(e){return u([this,e]).spread(function(e,t){if(e===t)return e;throw new Error("Q can't join: not the same: "+e+" "+t)})},u.race=i,l.prototype.race=function(){return this.then(u.race)},(u.makePromise=l).prototype.toString=function(){return"[object Promise]"},l.prototype.then=function(t,n,r){var i=this,o=c(),a=!1;return u.nextTick(function(){i.promiseDispatch(function(e){a||(a=!0,o.resolve(function(e){try{return"function"==typeof t?t(e):e}catch(e){return v(e)}}(e)))},"when",[function(e){a||(a=!0,o.resolve(function(e){if("function"==typeof n){s(e,i);try{return n(e)}catch(e){return v(e)}}return v(e)}(e)))}])}),i.promiseDispatch(void 0,"when",[void 0,function(e){var t,n,i=!1;try{n=e,t="function"==typeof r?r(n):n}catch(e){if(i=!0,!u.onerror)throw e;u.onerror(e)}i||o.notify(t)}]),o.promise},u.tap=function(e,t){return u(e).tap(t)},l.prototype.tap=function(t){return t=u(t),this.then(function(e){return t.fcall(e).thenResolve(e)})},u.when=d,l.prototype.thenResolve=function(e){return this.then(function(){return e})},u.thenResolve=function(e,t){return u(e).thenResolve(t)},l.prototype.thenReject=function(e){return this.then(function(){throw e})},u.thenReject=function(e,t){return u(e).thenReject(t)},u.nearer=h,u.isPromise=p,u.isPromiseAlike=o,u.isPending=function(e){return p(e)&&"pending"===e.inspect().state},l.prototype.isPending=function(){return"pending"===this.inspect().state},u.isFulfilled=function(e){return!p(e)||"fulfilled"===e.inspect().state},l.prototype.isFulfilled=function(){return"fulfilled"===this.inspect().state},u.isRejected=function(e){return p(e)&&"rejected"===e.inspect().state},l.prototype.isRejected=function(){return"rejected"===this.inspect().state};var H,B=[],z=[],q=[],W=!0;u.resetUnhandledRejections=f,u.getUnhandledReasons=function(){return B.slice()},u.stopUnhandledRejectionTracking=function(){f(),W=!1},f(),u.reject=v,u.fulfill=m,u.master=function(n){return l({isDef:function(){}},function(e,t){return g(n,e,t)},function(){return u(n).inspect()})},u.spread=y,l.prototype.spread=function(t,e){return this.all().then(function(e){return t.apply(void 0,e)},e)},u.async=function(t){return function(){function e(e,t){var n;if("undefined"==typeof StopIteration){try{n=i[e](t)}catch(e){return v(e)}return n.done?u(n.value):d(n.value,r,o)}try{n=i[e](t)}catch(e){return function(e){return"[object StopIteration]"===M(e)||e instanceof C}(e)?u(e.value):v(e)}return d(n,r,o)}var i=t.apply(this,arguments),r=e.bind(e,"next"),o=e.bind(e,"throw");return r()}},u.spawn=function(e){u.done(u.async(e)())},u.return=function(e){throw new C(e)},u.promised=function(n){return function(){return y([this,k(arguments)],function(e,t){return n.apply(e,t)})}},u.dispatch=g,l.prototype.dispatch=function(e,t){var n=this,i=c();return u.nextTick(function(){n.promiseDispatch(i.resolve,e,t)}),i.promise},u.get=function(e,t){return u(e).dispatch("get",[t])},l.prototype.get=function(e){return this.dispatch("get",[e])},u.set=function(e,t,n){return u(e).dispatch("set",[t,n])},l.prototype.set=function(e,t){return this.dispatch("set",[e,t])},u.del=u.delete=function(e,t){return u(e).dispatch("delete",[t])},l.prototype.del=l.prototype.delete=function(e){return this.dispatch("delete",[e])},u.mapply=u.post=function(e,t,n){return u(e).dispatch("post",[t,n])},l.prototype.mapply=l.prototype.post=function(e,t){return this.dispatch("post",[e,t])},u.send=u.mcall=u.invoke=function(e,t){return u(e).dispatch("post",[t,P(arguments,2)])},l.prototype.send=l.prototype.mcall=l.prototype.invoke=function(e){return this.dispatch("post",[e,P(arguments,1)])},u.fapply=function(e,t){return u(e).dispatch("apply",[void 0,t])},l.prototype.fapply=function(e){return this.dispatch("apply",[void 0,e])},u.try=u.fcall=function(e){return u(e).dispatch("apply",[void 0,P(arguments,1)])},l.prototype.fcall=function(){return this.dispatch("apply",[void 0,P(arguments)])},u.fbind=function(e){var t=u(e),n=P(arguments,1);return function(){return t.dispatch("apply",[this,n.concat(P(arguments))])}},l.prototype.fbind=function(){var e=this,t=P(arguments);return function(){return e.dispatch("apply",[this,t.concat(P(arguments))])}},u.keys=function(e){return u(e).dispatch("keys",[])},l.prototype.keys=function(){return this.dispatch("keys",[])},u.all=k,l.prototype.all=function(){return k(this)},u.any=_,l.prototype.any=function(){return _(this)},u.allResolved=(H=E,function(){return"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn("allResolved is deprecated, use allSettled instead.",new Error("").stack),H.apply(H,arguments)}),l.prototype.allResolved=function(){return E(this)},u.allSettled=function(e){return u(e).allSettled()},l.prototype.allSettled=function(){return this.then(function(e){return k(L(e,function(e){function t(){return e.inspect()}return(e=u(e)).then(t,t)}))})},u.fail=u.catch=function(e,t){return u(e).then(void 0,t)},l.prototype.fail=l.prototype.catch=function(e){return this.then(void 0,e)},u.progress=function(e,t){return u(e).then(void 0,void 0,t)},l.prototype.progress=function(e){return this.then(void 0,void 0,e)},u.fin=u.finally=function(e,t){return u(e).finally(t)},l.prototype.fin=l.prototype.finally=function(t){if(!t||"function"!=typeof t.apply)throw new Error("Q can't apply finally callback");return t=u(t),this.then(function(e){return t.fcall().then(function(){return e})},function(e){return t.fcall().then(function(){throw e})})},u.done=function(e,t,n,i){return u(e).done(t,n,i)},l.prototype.done=function(e,t,n){var i=function(e){u.nextTick(function(){if(s(e,r),!u.onerror)throw e;u.onerror(e)})},r=e||t||n?this.then(e,t,n):this;"object"==(void 0===K?"undefined":Y(K))&&K&&K.domain&&(i=K.domain.bind(i)),r.then(void 0,i)},u.timeout=function(e,t,n){return u(e).timeout(t,n)},l.prototype.timeout=function(e,t){var n=c(),i=setTimeout(function(){t&&"string"!=typeof t||((t=new Error(t||"Timed out after "+e+" ms")).code="ETIMEDOUT"),n.reject(t)},e);return this.then(function(e){clearTimeout(i),n.resolve(e)},function(e){clearTimeout(i),n.reject(e)},n.notify),n.promise},u.delay=function(e,t){return void 0===t&&(t=e,e=void 0),u(e).delay(t)},l.prototype.delay=function(n){return this.then(function(e){var t=c();return setTimeout(function(){t.resolve(e)},n),t.promise})},u.nfapply=function(e,t){return u(e).nfapply(t)},l.prototype.nfapply=function(e){var t=c(),n=P(e);return n.push(t.makeNodeResolver()),this.fapply(n).fail(t.reject),t.promise},u.nfcall=function(e){var t=P(arguments,1);return u(e).nfapply(t)},l.prototype.nfcall=function(){var e=P(arguments),t=c();return e.push(t.makeNodeResolver()),this.fapply(e).fail(t.reject),t.promise},u.nfbind=u.denodeify=function(n){if(void 0===n)throw new Error("Q can't wrap an undefined function");var i=P(arguments,1);return function(){var e=i.concat(P(arguments)),t=c();return e.push(t.makeNodeResolver()),u(n).fapply(e).fail(t.reject),t.promise}},l.prototype.nfbind=l.prototype.denodeify=function(){var e=P(arguments);return e.unshift(this),u.denodeify.apply(void 0,e)},u.nbind=function(n,i){var r=P(arguments,2);return function(){var e=r.concat(P(arguments)),t=c();return e.push(t.makeNodeResolver()),u(function(){return n.apply(i,arguments)}).fapply(e).fail(t.reject),t.promise}},l.prototype.nbind=function(){var e=P(arguments,0);return e.unshift(this),u.nbind.apply(void 0,e)},u.nmapply=u.npost=function(e,t,n){return u(e).npost(t,n)},l.prototype.nmapply=l.prototype.npost=function(e,t){var n=P(t||[]),i=c();return n.push(i.makeNodeResolver()),this.dispatch("post",[e,n]).fail(i.reject),i.promise},u.nsend=u.nmcall=u.ninvoke=function(e,t){var n=P(arguments,2),i=c();return n.push(i.makeNodeResolver()),u(e).dispatch("post",[t,n]).fail(i.reject),i.promise},l.prototype.nsend=l.prototype.nmcall=l.prototype.ninvoke=function(e){var t=P(arguments,1),n=c();return t.push(n.makeNodeResolver()),this.dispatch("post",[e,t]).fail(n.reject),n.promise},u.nodeify=function(e,t){return u(e).nodeify(t)},l.prototype.nodeify=function(t){if(!t)return this;this.then(function(e){u.nextTick(function(){t(null,e)})},function(e){u.nextTick(function(){t(e)})})},u.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var V=t();return u})}).call(this,e("_process"))},{_process:1}],3:[function(e,t,n){function o(e){switch(void 0===e?"undefined":Y(e)){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}}t.exports=function(n,i,r,e){return i=i||"&",r=r||"=",null===n&&(n=void 0),"object"==(void 0===n?"undefined":Y(n))?Object.keys(n).map(function(e){var t=encodeURIComponent(o(e))+r;return Array.isArray(n[e])?n[e].map(function(e){return t+encodeURIComponent(o(e))}).join(i):t+encodeURIComponent(o(n[e]))}).join(i):e?encodeURIComponent(o(e))+r+encodeURIComponent(o(n)):""}},{}],4:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function r(n,i,r){return c.default.information("zip:checkout:init"),l.default.Promise(function(e,t){return n.onCheckout(e,t,{})}).then(function(e){var t=e.redirect_uri||e.redirectUri||e.data&&(e.data.redirect_uri||e.data.redirectUri);if(!t)return c.default.debug("zip:checkout:error","Response does not contain redirectUri property"),r(e),void n.onError({code:"checkout_error",message:"The response does not contain the redirectUri property",detail:e});c.default.debug("zip:checkout:success",e),i({redirectUri:t})}).catch(function(e){c.default.debug("zip:checkout:error",e),r(e),n.onError({code:"checkout_error",message:"Checkout response error",detail:e})})}Object.defineProperty(n,"__esModule",{value:!0}),n.Checkout=void 0;var o=function(e,t,n){return t&&p(e.prototype,t),n&&p(e,n),e},a=i(e("./modal")),s=i(e("./options")),u=i(e("./utility")),c=i(e("./console")),l=i((e("./events"),e("q"))),d=(o(h,null,[{key:"init",value:function(t){if("function"!=typeof Object.assign&&(Object.assign=function(e){if(null==e)throw new TypeError("Cannot convert undefined or null to object");e=Object(e);for(var t=1;t<arguments.length;t++){var n=arguments[t];if(null!=n)for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}),t=y({},s.default,t),!this._validate(t))return c.default.setLevel(t.logLevel),t.redirect?r(t,function(e){return t.redirectFn(e.redirectUri)}):(e=t,(n=new a.default).onClose=e.onComplete.bind(e),n.build(),void r(e,function(e){return n.setUri(e.redirectUri)},function(e){return n.close(!1)}));var e,n}},{key:"attachButton",value:function(e,t){var n=document.querySelectorAll(e);if(!n.length)return config.onError({code:"attach_error",message:"Cannot find button to attach zipMoney checkout"});for(var i=0;i<n.length;i++)u.default.addEventHandler(n[i],"click",function(){return Zip.Checkout.init(t)})}},{key:"_validate",value:function(e){return["error","information","debug"].indexOf(e.logLevel.toLowerCase())<0&&(e.logLevel="error"),["standard","express"].indexOf(e.request.toLowerCase())<0&&(e.request="standard"),e.onComplete=e.onComplete||function(){},e.onError=e.onError||function(){},e.checkoutUri||e.onCheckout!==s.default.onCheckout?"express"===e.request?e.onError({code:"not_implemented",message:"This feature is not yet implemented"}):e.redirect||e.onComplete!==s.default.onComplete||e.redirectUri?void 0:e.onError({code:"validation",message:"if onComplete function is not specified then redirectUri must be specified"}):e.onError({code:"validation",message:"if onCheckout function is not specified then checkoutUri must be specified"})}}]),h);function h(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,h)}function p(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.Checkout=d},{"./console":5,"./events":6,"./modal":8,"./options":9,"./utility":10,q:2}],5:[function(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});var i="error",r={error:function(){var e;(e=window.console).log.apply(e,arguments)},information:function(){var e;"error"!==i&&(e=window.console).log.apply(e,arguments)},debug:function(){var e;"debug"===i&&(e=window.console).log.apply(e,arguments)},setLevel:function(e){i=e}};n.default=r},{}],6:[function(l,e,d){(function(i){Object.defineProperty(d,"__esModule",{value:!0}),d.EventListener=void 0;var e=function(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e},t=l("./utility");function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}if((t&&t.__esModule?t:{default:t}).default.isIe){var n=function(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n};n.prototype=i.Event.prototype,i.CustomEvent=n}var o={},a=d.EventListener=(e(s,null,[{key:"constructor",value:function(){o={}}},{key:"on",value:function(e,t){o[e]=t}},{key:"off",value:function(e){o[e]=null}}]),s);function s(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s)}a.Event=function(e,t){this.eventType=e,this.data=t||{}},a.Event.eventTypes={resize:"resize",transition:"transition",close:"close",complete:"complete",clear:"clear"};var u=window.addEventListener?"addEventListener":"attachEvent",c=window[u];c("attachEvent"==u?"onmessage":"message",function(e){var t,n;e.data.zipmoney&&(t=e.data.msg,n=new i.CustomEvent("zipmoney",{detail:t}),i.dispatchEvent(n))},!1),c("zipmoney",function(e){var t,n=e.detail.eventType,i=o[n];i?i(e.detail.data||{}):(t=e,console.log("Unexpected Event",t))},!1)}).call(this,void 0!==Ge?Ge:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utility":10}],7:[function(i,e,t){(function(e){var t=i("./checkout"),n=i("./events");e.Zip=e.Zip||{},e.Zip.Checkout=t.Checkout,e.zipMoneyEvent=n.EventListener.ZipEvent}).call(this,void 0!==Ge?Ge:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./checkout":4,"./events":6}],8:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function o(){return Math.max(document.documentElement.clientHeight,window.innerHeight||0)}function s(){var e=document.body,t=document.documentElement;return Math.max(e.scrollHeight,e.offsetHeight,t.clientHeight,t.scrollHeight,t.offsetHeight)}function u(e){for(var t=document.querySelectorAll("html, body"),n=0;n<t.length;n++)t[n].style.overflowY=e}function c(e){var t=document.body.currentStyle||window.getComputedStyle(document.body),n=e-(document.body.offsetHeight+(parseInt(t.marginTop,10)+parseInt(t.marginBottom,10))-parseInt(t.height,10));document.body.style.height=n+"px"}Object.defineProperty(n,"__esModule",{value:!0});var r=function(e,t,n){return t&&m(e.prototype,t),n&&m(e,n),e},a=i(e("./utility")),l=e("./events"),d=(i(e("./console")),{iframeWidth:400,iframeMinWidth:320,iframeInitialHeight:704,iframeMinHeight:600,verticalMargin:35}),h=["resize","transition","close","complete","clear"],p="https://d3k1w8lx8mqizo.cloudfront.net/zm/",f=(r(v,[{key:"build",value:function(){this._initialHtmlHeight=s(),window.scrollTo(0,0);var e,t,n,i,r,o=this._frame=(e=this._frameUri,t=this._isMobile,(n=document.createElement("iframe")).id="zipmoney-iframe",n.frameborder=0,y(n.style,{padding:"0",border:"none",zIndex:"999999",backgroundColor:"#FFF",backgroundImage:"url("+p+"spinner.gif)",backgroundRepeat:"no-repeat",backgroundPosition:"50% 50%"}),y(n.style,t?{overflow:"scroll",width:"100%",height:"100%",position:"absolute",top:"0",bottom:"0",left:"0",right:"0",margin:"0"}:{width:d.iframeWidth+"px",minWidth:d.iframeMinWidth+"px",height:d.iframeInitialHeight+"px",margin:d.verticalMargin+"px auto 0 auto",display:"table-row",backgroundSize:"25%",textAlign:"center",boxShadow:"0px 0px 70px 0px rgb(0, 0, 0)"}),n.src=e||"",n);if(!this._isMobile){var a=((r=document.createElement("img")).src=p+"icon-close.png",y(r.style,{width:"50px",height:"50px",position:"absolute",top:"20px",right:"20px",cursor:"pointer"}),r);a.onclick=this.close.bind(this),this._overlay=((i=document.createElement("div")).className="zipmoney-overlay",y(i.style,{position:"absolute",left:"0",top:"0",display:"table-cell",textAlign:"center",verticalAlign:"middle",background:"rgba(0, 0, 0, 0.75)",zIndex:"10000",height:"100%",width:"100%"}),i),this._overlay.appendChild(a),this._overlay.appendChild(this._frame),this._overlay.appendChild(function(){var e=document.createElement("div");e.style.width=d.iframeWidth+"px",e.style.minWidth=d.iframeMinWidth+"px",e.style.margin="10px auto 0 auto",e.style.overflow="hidden";var t=document.createElement("img");t.src=p+"iframe-secure.png",t.style.cssFloat="left";var n=document.createElement("img");return n.src=p+"poweredby-trans.png",n.style.cssFloat="right",e.appendChild(t),e.appendChild(n),e}()),o=this._overlay}document.body.appendChild(o),this._isMobile&&c(this._frame.offsetHeight),u("auto"),this._startMonitoringWindowResize()}},{key:"setUri",value:function(e){this._frameUri=e,this._frame&&(this._frame.src=e)}},{key:"resize",value:function(e){var t=this._isMobile?16:0,n=(e=d.iframeMinHeight<=e?e:d.iframeMinHeight,(e+=t)+2*d.verticalMargin),i=o();this._frame.style.height=e+"px",this._overlay&&(this._overlay.style.height=Math.max(i,this._initialHtmlHeight,n)+"px"),this._isMobile&&c(e)}},{key:"transition",value:function(){window.scroll(0,0)}},{key:"close",value:function(e){var t=!(0<arguments.length&&void 0!==e)||e,n={state:"cancelled"};this._events.length&&(n=this._events.pop()),this._destroy(),this.onClose&&t&&this.onClose(n)}},{key:"complete",value:function(e){this._events.push(e)}},{key:"clear",value:function(){this._events=[]}},{key:"_startMonitoringWindowResize",value:function(){var r=this;this._resizeHandler=a.default.debounce(function(){return e=r,t=o(),n=s(),i=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,e._overlay&&(e._overlay.style.height=Math.max(t,n)+"px"),void(e._isMobile||i<d.iframeWidth?e._frame.style.width="100%":e._frame.style.width=d.iframeWidth+"px");var e,t,n,i},250),a.default.addEventHandler(window,"resize",this._resizeHandler)}},{key:"_stopMonitoringWindowResize",value:function(){a.default.removeEventHandler(window,"resize",this._resizeHandler)}},{key:"_destroy",value:function(){this._stopMonitoringWindowResize(),this._overlay?document.body.removeChild(this._overlay):document.body.removeChild(this._frame),this._isMobile&&(document.body.style.height="initial"),u("initial"),this._overlay=this._frame=null,h.forEach(function(e){return l.EventListener.off(l.EventListener.Event.eventTypes[e])})}}]),v);function v(){var t=this;(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")})(this,v),this._events=[],this._isMobile=a.default.isMobileDevice(),h.forEach(function(e){return l.EventListener.on(l.EventListener.Event.eventTypes[e],t[e].bind(t))})}function m(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.default=f},{"./console":5,"./events":6,"./utility":10}],9:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0});var r=i(e("./xr")),o=i(e("./console"));r.default.configure({headers:{"X-Requested-With":"XMLHttpRequest"}});var a={request:"standard",redirect:!1,logLevel:"Error",onCheckout:function(t,e){r.default.post(this.checkoutUri).then(function(e){return t(e.data)}).catch(e)},onShippingAddressChanged:function(e,t){r.default.post(this.shippingUri).then(e).catch(t)},onComplete:function(e){if(o.default.information("zip:completed",e),"cancelled"!==e.state){var t=e.checkoutId?"&checkoutId="+e.checkoutId:"";this.redirectFn(this.redirectUri+"?result="+e.state+t)}},onError:function(e){o.default.error(e)},redirectFn:function(e){window.location.href=e}};n.default=a},{"./console":5,"./xr":11}],10:[function(e,t,n){Object.defineProperty(n,"__esModule",{value:!0});var i=(function(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}(r,null,[{key:"isIe",value:function(){var e=-1,t=window.navigator.userAgent,n=t.indexOf("MSIE "),i=t.indexOf("Trident/");if(0<n)e=parseInt(t.substring(n+5,t.indexOf(".",n)),10);else if(0<i){var r=t.indexOf("rv:");e=parseInt(t.substring(r+3,t.indexOf(".",r)),10)}return-1<e?e:void 0}},{key:"isMobileDevice",value:function(){var e=navigator.userAgent||navigator.vendor||window.opera;return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(e)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(e.substr(0,4))}},{key:"debounce",value:function(i,r){var o;return function(){var e=this,t=arguments,n=!o;clearTimeout(o),o=setTimeout(function(){o=null,i.apply(e,t)},r),n&&i.apply(e,t)}}},{key:"addEventHandler",value:function(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent&&e.attachEvent("on"+t,n)}},{key:"removeEventHandler",value:function(e,t,n){e.removeEventListener?e.removeEventListener(t,n,!1):e.detachEvent&&e.detachEvent("on"+t,n)}}]),r);function r(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r)}function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}n.default=i},{}],11:[function(e,t,n){function i(e){return e&&e.__esModule?e:{default:e}}function u(e,t){return{status:e.status,response:e.response,data:t,xhr:e}}function c(e){for(var t=arguments.length,n=Array(1<t?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];for(var r in n)if({}.hasOwnProperty.call(n,r)){var o=n[r];if("object"===(void 0===o?"undefined":l(o)))for(var a in o)!{}.hasOwnProperty.call(o,a)||(e[a]=o[a])}return e}function r(s){return t=function(t,n){var i=c({},p,f,s),r=i.xmlHttpRequest();for(var e in i.abort&&s.abort(function(){n(u(r)),r.abort()}),r.open(i.method,i.params?i.url.split("?")[0]+"?"+(0,d.default)(i.params):i.url,!0),r.withCredentials=i.withCredentials,r.addEventListener(h.LOAD,function(){if(200<=r.status&&r.status<300){var e=null;r.responseText&&(e=!0===i.raw?r.responseText:i.load(r.responseText)),t(u(r,e))}else n(u(r))}),r.addEventListener(h.ABORT,function(){return n(u(r))}),r.addEventListener(h.ERROR,function(){return n(u(r))}),r.addEventListener(h.TIMEOUT,function(){return n(u(r))}),i.headers)!{}.hasOwnProperty.call(i.headers,e)||r.setRequestHeader(e,i.headers[e]);for(var o in i.events)!{}.hasOwnProperty.call(i.events,o)||r.addEventListener(o,i.events[o].bind(null,r),!1);var a="object"!==l(i.data)||i.raw?i.data:i.dump(i.data);void 0!==a?r.send(a):r.send()},((e=s)&&e.promise?e.promise:f.promise||p.promise)(t);var e,t}Object.defineProperty(n,"__esModule",{value:!0});var l="function"==typeof Symbol&&"symbol"==Y(Symbol.iterator)?function(e){return void 0===e?"undefined":Y(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":void 0===e?"undefined":Y(e)},d=i(e("querystring/encode")),o=i(e("q")),a={GET:"GET",POST:"POST",PUT:"PUT",DELETE:"DELETE",PATCH:"PATCH",OPTIONS:"OPTIONS"},h={READY_STATE_CHANGE:"readystatechange",LOAD_START:"loadstart",PROGRESS:"progress",ABORT:"abort",ERROR:"error",LOAD:"load",TIMEOUT:"timeout",LOAD_END:"loadend"},p={method:a.GET,data:void 0,headers:{Accept:"application/json","Content-Type":"application/json"},dump:JSON.stringify,load:JSON.parse,xmlHttpRequest:function(){return new XMLHttpRequest},promise:function(e){return o.default.Promise(e)},withCredentials:!1},f={};r.assign=c,r.encode=d.default,r.configure=function(e){f=c({},f,e)},r.Methods=a,r.Events=h,r.defaults=p,r.get=function(e,t,n){return r(c({url:e,method:a.GET,params:t},n))},r.put=function(e,t,n){return r(c({url:e,method:a.PUT,data:t},n))},r.post=function(e,t,n){return r(c({url:e,method:a.POST,data:t},n))},r.patch=function(e,t,n){return r(c({url:e,method:a.PATCH,data:t},n))},r.del=function(e,t){return r(c({url:e,method:a.DELETE},t))},r.options=function(e,t){return r(c({url:e,method:a.OPTIONS},t))},n.default=r},{q:2,"querystring/encode":3}]},{},[7])}));var Qe=(r($e,Ke),t($e,[{key:"run",value:function(){this.runs=!0,this.background.initLoader()}},{key:"isRunning",value:function(){return this.runs}},{key:"next",value:function(e){var t=this;this.background.clear(),this.checkout=e;var n=String("/v1/echo");n=T.extendSearchParams(n,"public_key",this.publicKey),n=T.extendSearchParams(n,"json_body",encodeURIComponent(JSON.stringify({redirect_uri:this.checkout.link}))),Zip.Checkout.init({checkoutUri:this.echoEnv.getConf().url+n,onComplete:function(e){return t.eventHandler(e)},onError:function(e){return t.eventHandler(e)}})}},{key:"onStop",value:function(e){var t=this;this.eventEmitter.subscribe(qe,function(){t.background.clear(),e()})}},{key:"onCheckout",value:function(e,t){var n=this;this.eventEmitter.subscribe(e,function(){t(n.checkout)})}},{key:"eventHandler",value:function(e){switch(this.runs=!1,e.state){case"approved":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(Be,{});break;case"declined":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(ze,{});break;case"cancelled":this.eventEmitter.emit(qe,{});break;case"referred":this.eventEmitter.emit(qe,{}),this.eventEmitter.emit(We,{});break;default:console.warn("Unknown gateway status")}}},{key:"getSuccessRedirectUri",value:function(){return this.customRedirectUti?this.customRedirectUti:this.widgetEnv.getConf().url+String("/checkout/zipmoney")}},{key:"getErrorRedirectUri",value:function(){return this.getSuccessRedirectUri()}},{key:"setEnv",value:function(e,t){a($e.prototype.__proto__||Object.getPrototypeOf($e.prototype),"setEnv",this).call(this,e,t),this.echoEnv.setEnv(e,t)}}]),$e);function $e(e){u(this,$e);var t=c(this,($e.__proto__||Object.getPrototypeOf($e)).call(this));return t.publicKey=e,t.checkout=null,t.runs=!1,t.eventEmitter=new xe,t.echoEnv=new S([{env:o,url:"https://api-sandbox."},{env:l,url:"https://api-sandbox."},{env:d,url:"https://api-sandbox-demo."},{env:h,url:"https://api-sandbox-demo."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}]),t}r(et,be),t(et,[{key:"getLink",value:function(){return String("/v1/gateways/:gateway_id").replace(":gateway_id",this.gatewayID)}},{key:"sendRequest",value:function(e,n,t){var i=2<arguments.length&&void 0!==t?t:function(e){};this.get(e,function(e,t){n(e)},function(e,t){void 0===e.message?i(t+": unknown error"):i(e.message)})}}],[{key:"sendRequest",value:function(e,t,n,i,r){var o=4<arguments.length&&void 0!==r?r:function(e){},a=new this(e);a.setEnv(n),a.sendRequest(t,i,o)}}]);function et(e){u(this,et);var t=c(this,(et.__proto__||Object.getPrototypeOf(et)).call(this));return t.gatewayID=e,t}var tt="Zipmoney",nt="PaypalClassic",it="Afterpay",rt="paydock-dispatcher",ot=(t(at,[{key:"restartDispatcher",value:function(){var e=document.getElementById(rt);e&&e.parentNode.removeChild(e);var t=document.createElement("iframe");t.setAttribute("src",this.env.getConf().url+"/dispatcher"),t.id=rt,t.style.display="none",document.body.appendChild(t)}},{key:"on",value:function(n,i){var r=this;re.subscribe("message",window,function(e){var t=null;try{t=JSON.parse(e.data)}catch(e){}t&&t.message_source===r.messageSource&&t.event===n&&i(t)})}},{key:"setEnv",value:function(e,t){this.env.setEnv(e,t),this.restartDispatcher()}}]),at);function at(e){u(this,at),this.messageSource=e,this.env=new S([{env:o,url:"https://widget-sandbox."},{env:l,url:"https://widget-sandbox."},{env:d,url:"https://widget-sandbox-demo."},{env:h,url:"https://widget-sandbox-demo."},{env:p,url:"https://widget."},{env:f,url:"https://widsta."},{env:v,url:"https://widsta-2."},{env:m,url:"https://widsta-3."},{env:g,url:"https://widsta-4."},{env:k,url:"https://widsta-5."}])}var st=(t(ut,[{key:"isExist",value:function(){return!(!this.getElement()||this.getElement().closed)}},{key:"getElement",value:function(){return this.window}},{key:"init",value:function(){var e=this;if(!Le.isSupportPopUp())return this.window=window;var t=this.getConfigs();this.window=window.open("about:blank","_blank","width="+t.width+",height="+t.height+",top="+t.top+",left="+t.left+",scrollbars="+(t.scrollbars?"yes":"no")+",resizable="+(t.resizable?"yes":"no")),this.showLoader();var n=setInterval(function(){e.isExist()||(clearInterval(n),e.eventEmitter.emit("close",{}))},200)}},{key:"redirect",value:function(e){this.isExist()&&(this.window.location.href=e)}},{key:"close",value:function(){this.isExist()&&this.getElement().close&&(this.getElement().close(),this.window=null)}},{key:"focus",value:function(){this.isExist()&&this.getElement().focus&&this.getElement().focus()}},{key:"setConfigs",value:function(e){this.configs=y(this.configs,e)}},{key:"getNetConfigs",value:function(){return y({},this.configs)}},{key:"getConfigs",value:function(){var e=this.getNetConfigs();return e.left=window.screenX+(window.screen.width/2-e.width/2),e.top=window.screenY+(window.screen.height/2-e.height/2),e}},{key:"onClose",value:function(e){this.eventEmitter.subscribe("close",e)}},{key:"initError",value:function(e){this.getElement().document.write("."),(this.getElement().document.body||this.getElement().document.getElementsByTagName("body")[0]).innerHTML="<style>\n .error-wrapper {\n color: #ff0000;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n }\n </style>"+'<div class="error-wrapper"><div>{{error}}</div></div>'.replace("{{error}}",e)}},{key:"showLoader",value:function(){this.getElement().document.write(".");var e=this.getElement().document.body||this.getElement().document.getElementsByTagName("body")[0];if(e.innerHTML=Re+Ae,this.env===f&&this.env===v&&this.env===m&&this.env===g&&this.env===k){var t=0;re.subscribe("click",e,function(){5==++t&&(e.innerHTML='\n <style>\n html{width: 100%;height: 100%;}\n body{margin: 0px;padding: 0px;background-color: #111;}\n \n .eye{\n width: 20px; height: 8px;\n background-color: #eee;\n border-radius:0px 0px 20px 20px;\n position: relative;\n top: 40px;\n left: 10px;\n box-shadow: 40px 0px 0px 0px #eee; \n }\n \n .head{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden; \n position: relative;\n margin: -250px auto;\n width: 80px; height: 80px;\n background-color: #111;\n border-radius:50px;\n box-shadow: inset -4px 2px 0px 0px #eee;\n -webkit-animation:node 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out;\n -moz-animation:node 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out;\n animation:node 1.5s infinite alternate;\n animation-timing-function:ease-out;\n }\n .body{ \n position: relative;\n margin: 90px auto;\n width: 140px; height: 120px;\n background-color: #111;\n border-radius: 50px/25px ;\n box-shadow: inset -5px 2px 0px 0px #eee;\n -webkit-animation:node2 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out; \n -moz-animation:node2 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out; \n animation:node2 1.5s infinite alternate;\n animation-timing-function:ease-out; \n }\n \n @keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n @-moz-keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @-moz-keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n @-webkit-keyframes node {0%{ top:0px; }50%{ top:10px; }100% { top:0px;} }\n @-webkit-keyframes node2 {0%{ top:-5px; }50%{ top:10px; }100% { top:-5px;}}\n \n \n .circ{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n margin: 60px auto;\n width: 180px; height: 180px;\n background-color: #111;\n border-radius: 0px 0px 50px 50px;\n position: relative;\n z-index: -1; \n left: 0%;\n top: 20%;\n overflow: hidden;\n }\n \n .hands{\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n margin-top: 140px;\n width: 120px;height: 120px;\n position: absolute;\n background-color: #111;\n border-radius:20px;\n box-shadow:-1px -4px 0px 0px #eee;\n transform:rotate(45deg);\n -webkit-transform:rotate(45deg);\n -mox-transform:rotate(45deg);\n top:75%;left: 16%;\n z-index: 1;\n -webkit-animation:node2 1.5s infinite alternate;\n -webkit-animation-timing-function:ease-out;\n -moz-animation:node2 1.5s infinite alternate;\n -moz-animation-timing-function:ease-out;\n animation:node2 1.5s infinite alternate;\n animation-timing-function:ease-out;\n }\n \n .load{ position: absolute;\n width: 100px; height: 20px;\n margin: -10px auto;\n -webkit-font-smoothing: antialiased;\n -moz-font-smoothing: antialiased;\n font-smoothing: antialiased;\n font-family: \'Julius Sans One\', sans-serif;\n font-size:30px;\n font-weight:400;\n color:#eee;\n left: 10%;\n top: 5%;\n }\n </style>\n\n <div class="circ">\n <div class="load">A little patience ...</div>\n <div class="hands"></div>\n <div class="body"></div>\n <div class="head">\n <div class="eye"></div>\n </div>\n </div>\n')})}}},{key:"setEnv",value:function(e){this.env=e}}]),ut);function ut(){u(this,ut),this.configs={width:500,height:500,scrollbars:!0,resizable:!0,top:0,left:0},this.eventEmitter=new xe}var ct=(r(lt,Ke),t(lt,[{key:"run",value:function(){this.isRunning()||(this.popup.init(),this.background.initControl())}},{key:"isRunning",value:function(){return this.popup.isExist()}},{key:"next",value:function(e){this.checkout=e,Le.isSupportPopUp()||window.localStorage.setItem("paydock_checkout_token",JSON.stringify(this.checkout)),this.popup.redirect(this.checkout.link)}},{key:"continue",value:function(){this.popup.focus()}},{key:"stop",value:function(){this.popup.close()}},{key:"onStop",value:function(e){var t=this;this.popup.onClose(function(){t.background.clear(),t.checkout=null,e()})}},{key:"onCheckout",value:function(e,i){var r=this;this.dispatcher.on(e,function(e){if(r.checkout&&r.checkout.reference_id===e.reference_id)r.background.clear(),i(r.checkout);else if(!Le.isSupportPopUp()){var t=window.localStorage.getItem("paydock_checkout_token");if(!t)return;var n=JSON.parse(t);n&&n.reference_id===e.reference_id&&(window.localStorage.removeItem("paydock_checkout_token"),r.checkout=n,r.background.clear(),i(r.checkout))}})}},{key:"setEnv",value:function(e,t){a(lt.prototype.__proto__||Object.getPrototypeOf(lt.prototype),"setEnv",this).call(this,e,t),this.dispatcher.setEnv(e,t),this.popup.setEnv(e)}}]),lt);function lt(e){u(this,lt);var t=c(this,(lt.__proto__||Object.getPrototypeOf(lt)).call(this));return t.publicKey=e,t.checkout=null,t.dispatcher=new ot("checkout.paydock"),setTimeout(function(){return t.dispatcher.restartDispatcher()},200),t.popup=new st,t}var dt=(r(ht,ct),t(ht,[{key:"getSuccessRedirectUri",value:function(){return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/success","merchant",encodeURIComponent(window.location.href))}},{key:"getErrorRedirectUri",value:function(){return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/error","merchant",encodeURIComponent(window.location.href))}}]),ht);function ht(){return u(this,ht),c(this,(ht.__proto__||Object.getPrototypeOf(ht)).apply(this,arguments))}var pt=(r(ft,ct),t(ft,[{key:"getSuccessRedirectUri",value:function(){return this.widgetEnv.getConf().url+"/checkout/afterpay/merchant/{{merchant}}/success".replace("{{merchant}}",encodeURIComponent(window.btoa(window.location.href)))}},{key:"getErrorRedirectUri",value:function(){return this.widgetEnv.getConf().url+"/checkout/afterpay/merchant/{{merchant}}/error".replace("{{merchant}}",encodeURIComponent(window.btoa(window.location.href)))}},{key:"next",value:function(e){this.checkout=e,Le.isSupportPopUp()||window.localStorage.setItem("paydock_checkout_token",JSON.stringify(this.checkout)),this.popup.redirect(this.getRedirectUrl())}},{key:"error",value:function(e,t,n){return!t||t&&"invalid_amount"!==t?n(!0):(this.popup.initError(e),n(!1))}},{key:"run",value:function(){this.isRunning()||(this.popup.setConfigs({width:420,height:715}),this.popup.init(),this.background.initControl())}},{key:"getRedirectUrl",value:function(){var e="live"===this.checkout.mode?"live":"test";return this.widgetEnv.getConf().url+T.extendSearchParams("/checkout/afterpay/init","token",encodeURIComponent(this.checkout.reference_id))+"&env="+encodeURIComponent(e)}}]),ft);function ft(){return u(this,ft),c(this,(ft.__proto__||Object.getPrototypeOf(ft)).apply(this,arguments))}var vt={CLICK:"click",POPUP_REDIRECT:"popupRedirect",ERROR:"error",REFERRED:"referred",DECLINED:"declined",CANCELLED:"cancelled",ACCEPTED:"accepted",FINISH:"finish",CLOSE:"close"},mt=(t(yt,[{key:"initCheckout",value:function(){var n=this;this.container.on("click",function(e){if(!n.runner.isRunning()){n.eventEmitter.emit(vt.CLICK,{}),n.runner.run();var t=new Se(n.gatewayId,n.runner.getSuccessRedirectUri(),n.runner.getErrorRedirectUri());t.setMeta(n.meta),t.setEnv(n.env),t.send(n.publicKey,function(e){n.eventEmitter.emit(vt.POPUP_REDIRECT,{}),n.runner.next(e)},function(e,t){n.eventEmitter.emit(vt.ERROR,{}),n.runner.error(e,t,function(e){e&&n.close()})})}})}},{key:"initCheckoutHandlers",value:function(){var t=this;this.runner.onCheckout(Be,function(e){t.eventEmitter.emit(vt.ACCEPTED,{}),t.background.initLoader(),t.close(),t.checkToken(e.token,function(){t.createOneTimeToken(e.token)})}),this.runner.onCheckout(Ve,function(){t.eventEmitter.emit(vt.ERROR,{}),console.error("Error from checkout server"),t.close()}),this.runner.onCheckout(We,function(){t.eventEmitter.emit(vt.REFERRED,{}),t.close()}),this.runner.onCheckout(ze,function(){t.eventEmitter.emit(vt.DECLINED,{}),t.close()}),this.eventEmitter.subscribe(vt.ERROR,function(){t.background.clear()}),this.eventEmitter.subscribe(vt.FINISH,function(){t.background.clear()})}},{key:"checkToken",value:function(e,t){var n=this,i=new Te(e);i.setEnv(this.env),i.send(this.publicKey,function(e){n.details=e,t()},function(){n.eventEmitter.emit(vt.ERROR,{}),console.error("Error during creating payment source token")})}},{key:"createOneTimeToken",value:function(e){var t=this,n=new Fe(this.gatewayId,e,je.CHECKOUT_TOKEN);n.setEnv(this.env),n.send(this.publicKey,function(e){t.eventEmitter.emit(vt.FINISH,{payment_source_token:e,checkout_email:t.details.checkout_email,checkout_holder:t.details.checkout_holder,gateway_type:t.details.gateway_type})},function(){t.eventEmitter.emit(vt.ERROR,{}),console.error("Error during creating payment source token")})}},{key:"on",value:function(e,t){this.eventEmitter.subscribe(e,t)}},{key:"close",value:function(){this.runner.stop()}},{key:"onFinishInsert",value:function(t,n){this.on(vt.FINISH,function(e){re.insertToInput(t,n,e)})}},{key:"setMeta",value:function(e){this.meta=y(this.meta,e)}},{key:"setBackdropDescription",value:function(e){this.runner.setBackgroundDescription(e)}},{key:"setBackdropTitle",value:function(e){this.runner.setBackgroundTitle(e)}},{key:"setSuspendedRedirectUri",value:function(e){this.runner.setCustomRedirectUri(e)}},{key:"turnOffBackdrop",value:function(){this.turnOffControlBackdrop(),this.turnOffLoaderBackdrop()}},{key:"turnOffControlBackdrop",value:function(){this.runner.turnOffBackdrop()}},{key:"turnOffLoaderBackdrop",value:function(){this.background.turnOffLoader()}},{key:"setEnv",value:function(e,t){this.env=e,this.runner.setEnv(e,t)}},{key:"getEnv",value:function(){return this.env}}]),yt);function yt(e,t){var n=this,i=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default",r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:nt;switch(u(this,yt),this.publicKey=t,this.gatewayId=i,this.gatewayType=r,this.details=null,this.meta={},this.env=E,this.eventEmitter=new xe,this.container=new ae(e),this.background=new De,r){case nt:this.runner=new dt(t);break;case it:this.runner=new pt(t);break;case tt:this.runner=new Qe(t)}this.initCheckout(),this.initCheckoutHandlers(),this.runner.onStop(function(){n.eventEmitter.emit(vt.CLOSE,{})})}var gt=(r(kt,mt),t(kt,[{key:"setSuspendedRedirectUri",value:function(e){a(kt.prototype.__proto__||Object.getPrototypeOf(kt.prototype),"setSuspendedRedirectUri",this).call(this,e)}}]),kt);function kt(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,kt);var i=c(this,(kt.__proto__||Object.getPrototypeOf(kt)).call(this,e,t,n,tt));return i.publicKey=t,i.gatewayId=n,i}var _t=(r(Et,mt),Et);function Et(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,Et);var i=c(this,(Et.__proto__||Object.getPrototypeOf(Et)).call(this,e,t,n,it));return i.publicKey=t,i.gatewayId=n,i}var bt,wt,St=(r(Ct,mt),Ct);function Ct(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"default";u(this,Ct);var i=c(this,(Ct.__proto__||Object.getPrototypeOf(Ct)).call(this,e,t,n,nt));return i.publicKey=t,i.gatewayId=n,i}(wt=bt=bt||{}).AFTER_LOAD="after_load",wt.UNAVAILABLE="unavailable",wt.START_LOADING="start_loading",wt.END_LOADING="end_loading",wt.UPDATE="update",wt.PAYMENT_SUCCESSFUL="payment_successful",wt.PAYMENT_IN_REVIEW="payment_in_review",wt.PAYMENT_ERROR="payment_error";var Tt=(r(Ot,de),t(Ot,[{key:"on",value:function(e,t,n){for(var i in bt)bt.hasOwnProperty(i)&&e===bt[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}}]),Ot);function Ot(){return u(this,Ot),c(this,(Ot.__proto__||Object.getPrototypeOf(Ot)).apply(this,arguments))}var xt={CLOSE:"close",UPDATED:"updated"},Pt=(r(At,fe),t(At,[{key:"push",value:function(e,t){var n=1<arguments.length&&void 0!==t?t:{};if(this.iFrame.isExist()){-1===I.values(xt).indexOf(e)&&console.warn("unsupported trigger type");var i={message_source:"wallet.paydock",reference_id:this.widgetId,trigger:e,destination:"widget.paydock",data:n};this.iFrame.getElement().contentWindow.postMessage(JSON.stringify(i),"*")}}}]),At);function At(e,t){u(this,At);var n=c(this,(At.__proto__||Object.getPrototypeOf(At)).call(this,e));return n.widgetId=t,n}var Rt=(r(Lt,De),t(Lt,[{key:"initControl",value:function(){this.imageStyle||this.createImageStyles(),a(Lt.prototype.__proto__||Object.getPrototypeOf(Lt.prototype),"initControl",this).call(this)}},{key:"clear",value:function(){this.imageStyle&&this.imageStyle.parentNode.removeChild(this.imageStyle),this.imageStyle=null,a(Lt.prototype.__proto__||Object.getPrototypeOf(Lt.prototype),"clear",this).call(this)}},{key:"createTemplate",value:function(){var e=this,t=document.body||document.getElementsByTagName("body")[0],n=String('\n <div class="checkout-container">\n <div class="checkout-bg-logo"></div>\n <a href="#" data-close>Close</a>\n </div>\n');this.overlay=document.createElement("div"),this.overlay.classList.add("checkout-overlay"),this.overlay.setAttribute("checkout-overlay"," "),this.overlay.innerHTML=n,t.appendChild(this.overlay),setTimeout(function(){e.isInit()&&e.overlay.classList.add("display")},5)}},{key:"createImageStyles",value:function(){var e=document.head||document.getElementsByTagName("head")[0],t=String("\n .checkout-bg-logo {\n display: block;\n background: url({{url}}) no-repeat;\n width: 100px;\n height: 50px;\n margin: 0 auto;\n border-radius: 10px;\n background-size: contain;\n }\n");document.querySelector(".checkout-container"),t=t.replace("{{url}}",this.bgImageUrl),this.imageStyle=document.createElement("style"),this.imageStyle.type="text/css",this.imageStyle.appendChild(document.createTextNode(t)),e.appendChild(this.imageStyle)}}]),Lt);function Lt(e){u(this,Lt);var t=c(this,(Lt.__proto__||Object.getPrototypeOf(Lt)).call(this));return t.bgImageUrl=e,t.imageStyle=null,t}var It={UNAVAILABLE:"unavailable",UPDATE:"update",PAYMENT_METHOD_SELECTED:"payment_method_selected",PAYMENT_SUCCESS:"payment_success",PAYMENT_IN_REVIEW:"payment_in_review",PAYMENT_ERROR:"payment_error",CALLBACK:"callback"},Ut=(t(Nt,[{key:"initializeChildWallets",value:function(){this.childWallets=[]}},{key:"getGatewayName",value:function(){throw new Error("Method not implemented")}},{key:"setEnv",value:function(e){return this.env=e,this}},{key:"load",value:function(t){this.childWallets.forEach(function(e){return e.load(t)})}},{key:"update",value:function(){}},{key:"on",value:function(e,t){var n=this;if(-1===I.values(It).indexOf(e))throw new Error("invalid wallet event");return"function"==typeof t?this.eventEmitter.subscribe(e,t):new Promise(function(t){return n.eventEmitter.subscribe(e,function(e){return t(e)})})}}]),Nt);function Nt(e,t){u(this,Nt),this.publicKey=e,this.meta=t,this.env=o,this.eventEmitter=new xe,this.initializeChildWallets()}var Dt=(r(Mt,Ut),t(Mt,[{key:"load",value:function(e){this.container=e,this.iFrame=new ue(this.container);var t=this.link.getParams().widget_id;this.triggerElement=new Pt(this.iFrame,t),this.setupIFrameEvents(t),this.background=this.initBackground(),this.iFrame.load(this.link.getUrl())}},{key:"close",value:function(){this.triggerElement.push(xt.CLOSE),this.background.clear()}},{key:"update",value:function(e){this.triggerElement.push(xt.UPDATED,e)}},{key:"setEnv",value:function(e){return this.link.setEnv(e),this}},{key:"initBackground",value:function(){var e=this,t=new Rt(this.link.getNetUrl().replace(A,"/images/logo.png"));return t.setBackdropTitle(""),t.setBackdropDescription(""),t.onTrigger(Ue,function(){return e.triggerElement.push(xt.CLOSE)}),t}},{key:"setupIFrameEvents",value:function(e){var t=this;this.event.on(bt.UNAVAILABLE,e,function(e){return t.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})}),this.event.on(bt.START_LOADING,e,function(e){return t.background.initControl()}),this.event.on(bt.END_LOADING,e,function(e){return t.background.clear()}),this.event.on(bt.UPDATE,e,function(e){t.eventEmitter.emit(It.UPDATE,t.parseUpdateData(e))}),this.event.on(bt.PAYMENT_SUCCESSFUL,e,function(e){t.eventEmitter.emit(It.PAYMENT_SUCCESS,t.parsePaymentSuccessfulData(e)),t.iFrame.getElement()||t.background.clear()}),this.event.on(bt.PAYMENT_IN_REVIEW,e,function(e){t.eventEmitter.emit(It.PAYMENT_IN_REVIEW,t.parsePaymentSuccessfulData(e)),t.iFrame.getElement()||t.background.clear()}),this.event.on(bt.PAYMENT_ERROR,e,function(e){t.eventEmitter.emit(It.PAYMENT_ERROR,e),t.iFrame.getElement()||t.background.clear()})}},{key:"parsePaymentSuccessfulData",value:function(e){var t;return{id:this.meta.id,amount:e.amount,currency:e.currencyCode,status:null===(t=e.charge)||void 0===t?void 0:t.status}}},{key:"parseUpdateData",value:function(e){return y(y(y({wallet_response_code:e.responseCode,wallet_session_id:e.sessionId},e.paymentMethodDetails?{payment_source:{wallet_payment_method_id:e.paymentMethodDetails.paymentMethodId,card_number_last4:e.paymentMethodDetails.lastFourDigitsOfPan,card_scheme:e.paymentMethodDetails.paymentScheme}}:{}),e.loyaltyAccountSummary?{wallet_loyalty_account:{id:e.loyaltyAccountSummary.loyaltyAccountId,barcode:e.loyaltyAccountSummary.loyaltyAccountBarcode}}:{}),e.deliveryAddressDetails?{shipping:{address_line1:e.deliveryAddressDetails.line1,address_line2:e.deliveryAddressDetails.line2,address_postcode:e.deliveryAddressDetails.postalCode,address_city:e.deliveryAddressDetails.city,address_state:e.deliveryAddressDetails.state,address_country:e.deliveryAddressDetails.countryCode,address_company:e.deliveryAddressDetails.companyName,wallet_address_id:e.deliveryAddressDetails.addressId,post_office_box_number:e.deliveryAddressDetails.postOfficeBoxNumber,wallet_address_created_timestamp:e.deliveryAddressDetails.createdTimestamp,wallet_address_updated_timestamp:e.deliveryAddressDetails.updatedTimestamp,wallet_address_name:e.deliveryAddressDetails.name}}:{})}}]),Mt);function Mt(e,t){u(this,Mt);var n=c(this,(Mt.__proto__||Object.getPrototypeOf(Mt)).call(this,e,t));n.link=new R(A);var i=t.amount,r=t.currency,o=t.id,a=t.gateway_mode,s=t.request_shipping;return n.link.setParams(y({token:e,amount:i,currency:r,gateway_mode:a,credentials:o},s?{request_shipping:s}:{})),n.token=e,n.event=new Tt(window),n}var jt=(r(Ft,Ut),t(Ft,[{key:"load",value:function(e){var r=this;if(window.Promise){var t=e.getElement().id||"",n=document.createElement("script");n.src="https://www.paypal.com/sdk/js?client-id="+this.publicKey+"¤cy="+this.meta.currency+(!0===this.meta.pay_later?"&enable-funding=paylater&disable-funding=card":"&disable-funding=credit,card")+(this.meta.capture?"":"&intent=authorize"),n.async=!0,n.onload=function(){window.paypal?(r.paypal=window.paypal,r.paypal.Buttons(y(y({},r.meta.style&&{style:r.meta.style}),{createOrder:function(){return new Promise(function(t,n){r.eventEmitter.emit(It.CALLBACK,{data:y({request_type:"CREATE_TRANSACTION"},r.meta.request_shipping&&{request_shipping:r.meta.request_shipping}),onSuccess:function(e){return t(e.id)},onError:function(e){return n(e)}})})},onShippingChange:function(i){return new Promise(function(e,t){var n=r.parseUpdateData(i);r.latestShippingData=n.shipping,r.latestShippingChangePromiseResolve=e,r.latestShippingChangePromiseReject=t,r.eventEmitter.emit(It.UPDATE,n)})},onApprove:function(n){return new Promise(function(e,t){return r.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:{payment_method_id:n.orderID,customer:{payment_source:{external_payer_id:n.payerID}}},onSuccess:function(){return e(!0)},onError:function(e){return t(e)}})})},onError:function(){}})).render("#"+t)):r.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})},document.head.appendChild(n)}else this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null})}},{key:"update",value:function(e){var t=this;if(this.latestShippingChangePromiseResolve&&this.latestShippingChangePromiseReject)return e.success?void this.eventEmitter.emit(It.CALLBACK,{data:{request_type:"UPDATE_TRANSACTION",shipping:this.latestShippingData},onSuccess:function(){return t.latestShippingChangePromiseResolve(!0)},onError:function(){return t.latestShippingChangePromiseReject()}}):this.latestShippingChangePromiseReject()}},{key:"parseUpdateData",value:function(e){var t;return y(y({wallet_order_id:e.orderID,wallet_session_id:e.paymentID,payment_source:{wallet_payment_method_id:e.paymentToken}},e.shipping_address&&{shipping:{address_city:e.shipping_address.city,address_state:e.shipping_address.state,address_postcode:e.shipping_address.postal_code,address_country:e.shipping_address.country_code}}),e.selected_shipping_option&&{selected_shipping_option:{id:e.selected_shipping_option.id,label:e.selected_shipping_option.label,amount:e.selected_shipping_option.amount.value,currency:e.selected_shipping_option.amount.currency_code,type:(null===(t=e.selected_shipping_option)||void 0===t?void 0:t.type)||""}})}}]),Ft);function Ft(){return u(this,Ft),c(this,(Ft.__proto__||Object.getPrototypeOf(Ft)).apply(this,arguments))}var Ht=Ze(function(e,t){function n(e){return(n="function"==typeof Symbol&&"symbol"===Y(Symbol.iterator)?function(e){return void 0===e?"undefined":Y(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":void 0===e?"undefined":Y(e)})(e)}Object.defineProperty(t,"__esModule",{value:!0});function r(i){return null!==c?c:c=new Promise(function(e,t){if("undefined"!=typeof window)if(window.Stripe&&i&&console.warn(u),window.Stripe)e(window.Stripe);else try{var n=function(){for(var e=document.querySelectorAll('script[src^="'.concat(a,'"]')),t=0;t<e.length;t++){var n=e[t];if(s.test(n.src))return n}return null}();n&&i?console.warn(u):n=n||function(e){var t=e&&!e.advancedFraudSignals?"?advancedFraudSignals=false":"",n=document.createElement("script");n.src="".concat(a).concat(t);var i=document.head||document.body;if(!i)throw new Error("Expected document.body not to be null. Stripe.js requires a <body> element.");return i.appendChild(n),n}(i),n.addEventListener("load",function(){window.Stripe?e(window.Stripe):t(new Error("Stripe.js not available"))}),n.addEventListener("error",function(){t(new Error("Failed to load Stripe.js"))})}catch(e){return void t(e)}else e(null)})}function i(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];l=!0;var i=Date.now();return r(o).then(function(e){return function(e,t,n){if(null===e)return null;var i,r,o=e.apply(void 0,t);return r=n,(i=o)&&i._registerWrapper&&i._registerWrapper({name:"stripe-js",version:"1.11.0",startTime:r}),o}(e,t,i)})}var o,a="https://js.stripe.com/v3",s=/^https:\/\/js\.stripe\.com\/v3\/?(\?.*)?$/,u="loadStripe.setLoadParameters was called but an existing Stripe.js script already exists in the document; existing script parameters will be used",c=null,l=!1;i.setLoadParameters=function(e){if(l)throw new Error("You cannot change load parameters after calling loadStripe");o=function(e){var t="invalid load parameters; expected object of shape\n\n {advancedFraudSignals: boolean}\n\nbut received\n\n ".concat(JSON.stringify(e),"\n");if(null===e||"object"!==n(e))throw new Error(t);if(1===Object.keys(e).length&&"boolean"==typeof e.advancedFraudSignals)return e;throw new Error(t)}(e)},t.loadStripe=i});Xe(Ht);Ht.loadStripe;var Bt=Ht.loadStripe,zt="success",qt="fail",Wt=(r(Vt,Ut),t(Vt,[{key:"initPaymentRequest",value:function(){return this.stripe.paymentRequest({country:this.meta.country.toUpperCase(),currency:this.meta.currency.toLowerCase(),total:{label:this.meta.amount_label,amount:Math.floor(100*this.meta.amount)},requestPayerName:!0===this.meta.request_payer_name,requestPayerEmail:!0===this.meta.request_payer_email,requestPayerPhone:!0===this.meta.request_payer_phone})}},{key:"createWalletButton",value:function(){return this.stripe.elements().create("paymentRequestButton",{paymentRequest:this.paymentRequest})}},{key:"load",value:function(t){var n=this;return Bt(this.publicKey).then(function(e){n.stripe=e,n.paymentRequest=n.initPaymentRequest()}).then(function(){return n.checkAvailability()}).then(function(e){return n.mount(t,e)}).then(function(){return n.setOnPaymentMethodSelected()})}},{key:"checkAvailability",value:function(){var i=this;return this.paymentRequest.canMakePayment().then(function(e){if(e){var t=!i.meta.wallets||i.meta.wallets.includes(M.GOOGLE),n=!i.meta.wallets||i.meta.wallets.includes(M.APPLE);return{google_pay:t&&!e.applePay,apple_pay:n&&e.applePay,flypay:!1}}})}},{key:"mount",value:function(e,t){if(!t||!t.apple_pay&&!t.google_pay)return this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:null});this.createWalletButton().mount(e.getElement())}},{key:"setOnPaymentMethodSelected",value:function(){var c=this;this.paymentRequest.on("paymentmethod",function(e){var t,n=e.paymentMethod,i=n.id,r=n.card,o=n.billing_details,a=o.name,s=o.address,u={payment_method_id:i,customer:{payer_name:e.payerName,payer_email:e.payerEmail,payer_phone:e.payerPhone,payment_source:{card_name:a,type:null===(t=null==r?void 0:r.wallet)||void 0===t?void 0:t.type,card_scheme:null==r?void 0:r.brand,card_number_last4:null==r?void 0:r.last4,expire_month:null==r?void 0:r.exp_month,expire_year:null==r?void 0:r.exp_year,address_line1:s.line1,address_line2:s.line2,address_city:s.city,address_postcode:s.postal_code,address_state:s.state,address_country:s.country}}};c.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:u,onSuccess:function(){return e.complete(zt)},onError:function(){return e.complete(qt)}})})}}]),Vt);function Vt(){return u(this,Vt),c(this,(Vt.__proto__||Object.getPrototypeOf(Vt)).apply(this,arguments))}var Kt=(r(Yt,Ut),t(Yt,[{key:"getGatewayName",value:function(){return this.gatewayName}},{key:"getMerchantId",value:function(){var e,t,n;return(null===(n=null===(t=null===(e=this.meta)||void 0===e?void 0:e.credentials)||void 0===t?void 0:t[M.APPLE])||void 0===n?void 0:n.merchant)||""}},{key:"load",value:function(n){var i=this;if(window.Promise)return this.checkAvailability().then(function(e){var t;e?(i.meta.request_shipping&&i.meta.shipping_options&&(i.selectedShippingMethodId=null===(t=i.meta.shipping_options[0])||void 0===t?void 0:t.id),i.mount(n)):i.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:{wallet:M.APPLE}})}).catch(function(e){return console.error("Error checking ApplePay availability",e)});this.eventEmitter.emit(It.UNAVAILABLE,{event:It.UNAVAILABLE,data:{wallet:M.APPLE}})}},{key:"update",value:function(e){var t,n;null!==(t=null==e?void 0:e.body)&&void 0!==t&&t.amount&&(this.meta.amount=e.body.amount),null!==(n=null==e?void 0:e.body)&&void 0!==n&&n.shipping_options&&(this.meta.shipping_options=e.body.shipping_options)}},{key:"checkAvailability",value:function(){var n=this;return new Promise(function(t,e){window.ApplePaySession&&ApplePaySession||t(!1),ApplePaySession.canMakePaymentsWithActiveCard(n.getMerchantId()).then(function(e){return t(e)}).catch(function(e){return t(!1)})})}},{key:"mount",value:function(e){var t=this,n=document.createElement("style");n.innerHTML=this.createButtonStyle(),document.head.appendChild(n);var i=document.createElement("div");i.onclick=function(){return t.onApplePayButtonClicked()},i.classList.add("paydock-apple-container","apple-pay-button","apple-pay-button-black"),e.getElement().appendChild(i)}},{key:"onApplePayButtonClicked",value:function(){this.paymentSession=new ApplePaySession(3,this.createRequest()),this.paymentSession.onvalidatemerchant=this.onValidateMerchant,this.paymentSession.onpaymentauthorized=this.onPaymentAuthorized,this.paymentSession.onshippingcontactselected=this.onShippingContactSelected,this.paymentSession.onshippingmethodselected=this.onShippingMethodSelected,this.paymentSession.begin()}},{key:"createRequest",value:function(){return this.meta.raw_data_initialization&&(this.meta.raw_data_initialization.total.amount=this.meta.amount.toString(),this.meta.request_shipping&&this.meta.shipping_options&&(this.meta.raw_data_initialization.shippingMethods=this.formatShippingOptions(this.meta.shipping_options))),this.meta.raw_data_initialization?this.meta.raw_data_initialization:y(y({countryCode:this.meta.country.toUpperCase(),currencyCode:this.meta.currency.toUpperCase(),merchantCapabilities:["supports3DS","supportsCredit","supportsDebit"],supportedNetworks:["visa","masterCard","amex","discover"],requiredBillingContactFields:["name","postalAddress"]},this.meta.request_shipping&&y({requiredShippingContactFields:["postalAddress","name","phone","email"]},this.meta.shipping_options&&{shippingMethods:this.formatShippingOptions(this.meta.shipping_options)})),{total:{label:this.meta.amount_label,amount:this.meta.amount.toString(),type:"final"}})}},{key:"getMerchantSession",value:function(){var e=this;return new Promise(function(t,n){return e.eventEmitter.emit(It.CALLBACK,{data:y({request_type:"CREATE_SESSION",wallet_type:M.APPLE,session_id:window.location.hostname},e.meta.request_shipping&&{request_shipping:e.meta.request_shipping}),onSuccess:function(e){return t(e)},onError:function(e){return n(e)}})})}},{key:"createButtonStyle",value:function(){var e,t,n,i;return"\n .paydock-apple-container {\n width: 100%;\n height: 40px;\n }\n\n @supports (-webkit-appearance: -apple-pay-button) {\n .apple-pay-button {\n display: inline-block;\n -webkit-appearance: -apple-pay-button;\n -apple-pay-button-type: "+((null===(t=null===(e=this.meta)||void 0===e?void 0:e.style)||void 0===t?void 0:t.button_type)||"plain")+"\n }\n .apple-pay-button-black {\n -apple-pay-button-style: black;\n }\n .apple-pay-button-white {\n -apple-pay-button-style: white;\n }\n .apple-pay-button-white-with-line {\n -apple-pay-button-style: white-outline;\n }\n }\n\n @supports not (-webkit-appearance: -apple-pay-button) {\n .apple-pay-button {\n display: inline-block;\n background-size: 100% 60%;\n background-repeat: no-repeat;\n background-position: 50% 50%;\n border-radius: 5px;\n padding: 0px;\n box-sizing: border-box;\n min-width: 200px;\n min-height: 32px;\n max-height: 64px;\n -apple-pay-button-type: "+((null===(i=null===(n=this.meta)||void 0===n?void 0:n.style)||void 0===i?void 0:i.button_type)||"plain")+"\n }\n .apple-pay-button-black {\n background-image: -webkit-named-image(apple-pay-logo-white);\n background-color: black;\n }\n .apple-pay-button-white {\n background-image: -webkit-named-image(apple-pay-logo-black);\n background-color: white;\n }\n .apple-pay-button-white-with-line {\n background-image: -webkit-named-image(apple-pay-logo-black);\n background-color: white;\n border: .5px solid black;\n }\n }\n "}}]),Yt);function Yt(e,t,n,i){u(this,Yt);var o=c(this,(Yt.__proto__||Object.getPrototypeOf(Yt)).call(this,e,t));return o.gatewayName=n,o.eventEmitter=i,o.onValidateMerchant=function(e){o.getMerchantSession().then(function(e){o.paymentSession.completeMerchantValidation(e)}).catch(function(e){return console.error("Error fetching merchant session",e)})},o.onPaymentAuthorized=function(e){var t=e.payment,n=t.token,i=t.billingContact,r=t.shippingContact;o.eventEmitter.emit(It.PAYMENT_METHOD_SELECTED,{data:y({customer:{payment_source:{card_name:n.paymentMethod.displayName,type:n.paymentMethod.type,card_scheme:n.paymentMethod.network,address_line1:null==i?void 0:i.addressLines[0],address_line2:null==i?void 0:i.addressLines[1],address_country:null==i?void 0:i.countryCode,address_city:null==i?void 0:i.locality,address_postcode:null==i?void 0:i.postalCode,address_state:null==i?void 0:i.administrativeArea,ref_token:n.paymentData?JSON.stringify(n.paymentData):""}}},o.meta.request_shipping&&r&&{shipping:{method:o.selectedShippingMethodId,options:o.meta.shipping_options,address_line1:r.addressLines[0],address_line2:r.addressLines[1],address_country:r.countryCode,address_city:r.locality,address_postcode:r.postalCode,address_state:r.administrativeArea,contact:{first_name:r.givenName,last_name:r.familyName,email:r.emailAddress,phone:r.phoneNumber}}}),onSuccess:function(){return o.paymentSession.completePayment(ApplePaySession.STATUS_SUCCESS)},onError:function(){return o.paymentSession.completePayment(ApplePaySession.STATUS_FAILURE)}})},o.onShippingContactSelected=function(e){var t=o.parseUpdateData(e.shippingContact);o.eventEmitter.emit(It.UPDATE,t);var n=y({newTotal:{label:o.meta.amount_label,amount:o.meta.amount.toString(),type:"final"}},o.meta.request_shipping&&o.meta.shipping_options&&{newShippingMethods:o.formatShippingOptions(o.meta.shipping_options)});o.paymentSession.completeShippingContactSelection(n)},o.onShippingMethodSelected=function(e){o.selectedShippingMethodId=e.shippingMethod.identifier;var t={newTotal:{label:o.meta.amount_label,amount:o.meta.amount.toString(),type:"final"}};o.paymentSession.completeShippingMethodSelection(t)},o.parseUpdateData=function(e){return{shipping:{address_city:e.locality,address_state:e.administrativeArea,address_postcode:e.postalCode,address_country:e.countryCode}}},o.formatShippingOptions=function(e){return e.map(function(e){return{identifier:e.id,label:e.label,detail:(null==e?void 0:e.detail)||"",amount:e.amount}})},o.eventEmitter=i,o}var Gt=(r(Jt,Ut),t(Jt,[{key:"initializeChildWallets",value:function(){this.childWallets=[],this.meta.wallets&&!this.meta.wallets.includes(M.APPLE)||this.childWallets.push(new Kt(this.publicKey,this.meta,this.getGatewayName(),this.eventEmitter))}},{key:"getGatewayName",value:function(){return N.MASTERCARD}},{key:"update",value:function(t){this.childWallets.forEach(function(e){return e.update(t)})}}]),Jt);function Jt(){return u(this,Jt),c(this,(Jt.__proto__||Object.getPrototypeOf(Jt)).apply(this,arguments))}var Xt,Zt,Qt=(t($t,null,[{key:"validateJWT",value:function(e){var t=e.split("."),n=s(t,3),i=n[0],r=n[1],o=n[2];if(!i||!r||!o)return null;if(2+i.length+r.length+o.length!==e.length)return null;try{return{head:JSON.parse(atob(i)),body:JSON.parse(atob(r)),signature:o}}catch(e){return null}}},{key:"extractMeta",value:function(e){try{return JSON.parse(atob(e.meta)).meta}catch(e){return null}}}]),$t);function $t(){u(this,$t)}(Zt=Xt=Xt||{})[Zt.PUBLIC_KEY=0]="PUBLIC_KEY",Zt[Zt.TOKEN=1]="TOKEN";var en=(t(tn,[{key:"setEnv",value:function(e,t){return this.env.setEnv(e,t),this}},{key:"getClient",value:function(e,t){var i=this,r=new XMLHttpRequest;return r.open(e,this.env.getConf().url+t,!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),this.setAuthHeader(r),{config:r,send:function(e,t,n){r.onload=function(){return i.parser({text:r.responseText,status:r.status},t,n)},r.send(JSON.stringify(e))}}}},{key:"getClientPromise",value:function(e,t){var i=this,r=new XMLHttpRequest;return r.open(e,this.env.getConf().url+t,!0),r.setRequestHeader("Content-Type","application/json; charset=UTF-8"),this.setAuthHeader(r),{config:r,send:function(n){return new Promise(function(e,t){r.onload=function(){return e({text:r.responseText,status:r.status})},r.send(JSON.stringify(n))}).then(function(e){return i.parserPromise(e)})}}}},{key:"parser",value:function(e,t,n){var i=e.text,r=e.status;try{var o=JSON.parse(i);if(200<=r&&r<300||302===r)return t(o.resource.data);n(o.error||{message:"unknown error"})}catch(e){}}},{key:"parserPromise",value:function(e){var t=e.text,n=e.status;try{var i=JSON.parse(t);return 200<=n&&n<300||302===n?Promise.resolve(i.resource.data):Promise.reject(i.error||{message:"unknown error"})}catch(e){return Promise.reject(e)}}},{key:"setAuthHeader",value:function(e){switch(this.authType){case Xt.PUBLIC_KEY:e.setRequestHeader("x-user-public-key",this.auth);break;case Xt.TOKEN:e.setRequestHeader("x-access-token",this.auth)}}}]),tn);function tn(e,t){u(this,tn),this.auth=e,this.authType=t||Xt.PUBLIC_KEY,this.env=new S([{env:o,url:"https://api-sandbox."},{env:p,url:"https://api."},{env:f,url:"https://apista."},{env:v,url:"https://apista-2."},{env:m,url:"https://apista-3."},{env:g,url:"https://apista-4."},{env:k,url:"https://apista-5."}])}var nn=(t(rn,[{key:"walletCapture",value:function(e){return this.api.getClientPromise("POST","/v1/charges/wallet/capture").send(e)}},{key:"walletCallback",value:function(e){return this.api.getClientPromise("POST","/v1/charges/wallet/callback").send(e)}}]),rn);function rn(e){u(this,rn),this.api=e}var on=(r(an,en),t(an,[{key:"charge",value:function(){return new nn(this)}}]),an);function an(){return u(this,an),c(this,(an.__proto__||Object.getPrototypeOf(an)).apply(this,arguments))}var sn="unavailable",un="update",cn="paymentSuccessful",ln="paymentError",dn="paymentInReview",hn=(t(pn,[{key:"load",value:function(){try{this.setupServiceCallbacks(),this.service.load(this.container)}catch(e){throw this.eventEmitter.emit(sn,{event:sn,data:null}),e}}},{key:"update",value:function(e){this.service.update(e)}},{key:"setEnv",value:function(e,t){this.api.setEnv(e,t),this.service.setEnv(e)}},{key:"close",value:function(){"function"==typeof this.service.close&&this.service.close()}},{key:"on",value:function(e,t){var n=this;return e===un&&(this.hasUpdateHandler=!0),"function"==typeof t?this.eventEmitter.subscribe(e,t):new Promise(function(t){return n.eventEmitter.subscribe(e,function(e){return t(e)})})}},{key:"onUnavailable",value:function(e){var t=this;return"function"==typeof e?this.eventEmitter.subscribe(sn,e):new Promise(function(e){return t.eventEmitter.subscribe(sn,function(){return e()})})}},{key:"onUpdate",value:function(e){var n=this;return this.hasUpdateHandler=!0,"function"==typeof e?this.eventEmitter.subscribe(un,e):new Promise(function(t){return n.eventEmitter.subscribe(un,function(e){return t(e)})})}},{key:"onPaymentSuccessful",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(cn,e):new Promise(function(t){return n.eventEmitter.subscribe(cn,function(e){return t(e)})})}},{key:"onPaymentInReview",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(dn,e):new Promise(function(t){return n.eventEmitter.subscribe(dn,function(e){return t(e)})})}},{key:"onPaymentError",value:function(e){var n=this;return"function"==typeof e?this.eventEmitter.subscribe(ln,e):new Promise(function(t){return n.eventEmitter.subscribe(ln,function(e){return t(e)})})}},{key:"setupServiceCallbacks",value:function(){this.setupUnavailableCallback(),this.setupUpdateCallback(),this.setupWalletCallback(),this.setupPaymentCallback(),this.setupPaymentSuccessCallback(),this.setupPaymentInReviewCallback(),this.setupPaymentErrorCallback()}},{key:"setupUnavailableCallback",value:function(){var e=this;this.service.on(It.UNAVAILABLE,function(){return e.eventEmitter.emit(sn,{event:sn,data:null})})}},{key:"setupUpdateCallback",value:function(){var t=this;this.service.on(It.UPDATE,function(e){return t.hasUpdateHandler?t.eventEmitter.emit(un,{event:un,data:e}):t.update({success:!0})})}},{key:"setupWalletCallback",value:function(){var r=this;this.service.on(It.CALLBACK,function(e){var t=e.data,n=e.onSuccess,i=e.onError;r.api.charge().walletCallback(t).then(function(e){return n(e)},function(e){return i(e.message)})})}},{key:"setupPaymentCallback",value:function(){var r=this;this.service.on(It.PAYMENT_METHOD_SELECTED,function(e){var n=e.data,i=e.onSuccess,t=e.onError;r.api.charge().walletCapture(n).then(function(e){"function"==typeof i&&i();var t="inreview"===e.status?dn:cn;r.eventEmitter.emit(t,{event:t,data:y(y({},e),n.customer&&{payer_name:n.customer.payer_name,payer_email:n.customer.payer_email,payer_phone:n.customer.payer_phone})})},function(e){"function"==typeof t&&t(e),r.eventEmitter.emit(ln,{event:ln,data:e})})})}},{key:"setupPaymentSuccessCallback",value:function(){var t=this;this.service.on(It.PAYMENT_SUCCESS,function(e){return t.eventEmitter.emit(cn,{event:cn,data:e})})}},{key:"setupPaymentInReviewCallback",value:function(){var t=this;this.service.on(It.PAYMENT_IN_REVIEW,function(e){return t.eventEmitter.emit(dn,{event:dn,data:e})})}},{key:"setupPaymentErrorCallback",value:function(){var t=this;this.service.on(It.PAYMENT_ERROR,function(e){return t.eventEmitter.emit(ln,{event:ln,data:e})})}}]),pn);function pn(e,t,n){u(this,pn),this.hasUpdateHandler=!1;var i=Qt.validateJWT(t);if(!i)throw new Error("Invalid charge token");this.eventEmitter=new xe,this.container=new ae(e);var r=Qt.extractMeta(i.body);switch(this.api=new on(t,Xt.TOKEN),r.gateway.type){case N.STRIPE:this.service=new Wt(r.credentials.client_auth,y(y({},n),{amount:r.charge.amount,currency:r.charge.currency}));break;case N.FLYPAY:this.service=new Dt(t,y(y({},n),{id:r.charge.id,gateway_mode:r.gateway.mode,amount:r.charge.amount,currency:r.charge.currency}));break;case N.PAYPAL:this.service=new jt(r.credentials.client_auth,y(y({},n),{id:r.charge.id,gateway_mode:r.gateway.mode,amount:r.charge.amount,currency:r.charge.currency,capture:r.charge.capture}));break;case N.MASTERCARD:this.service=new Gt("",y(y({},n),{credentials:r.gateway.credentials,amount:r.charge.amount,currency:r.charge.currency}))}}var fn=(t(vn,[{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"setRefId",value:function(e){this.link.setParams({ref_id:e})}},{key:"setLimit",value:function(e){this.link.setParams({limit:e})}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){this.link.getEnv()}},{key:"getIFrameUrl",value:function(){return this.link.getUrl()}},{key:"filterByGatewayIds",value:function(e){this.link.setParams({gateway_ids:e.join(",")})}},{key:"filterByTypes",value:function(e){var t=[],n=!0,i=!1,r=void 0;try{for(var o,a=e[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var s=o.value;e.hasOwnProperty(s)&&(-1===I.values(F).indexOf(s)?console.warn("PaymentSourceWidget::filterByTypes: unsupported type "+s):t.push(s))}}catch(e){i=!0,r=e}finally{try{!n&&a.return&&a.return()}finally{if(i)throw r}}this.link.setParams({payment_source_types:t.join(",")})}},{key:"setLanguage",value:function(e){this.link.setParams({language:e})}}]),vn);function vn(e,t){u(this,vn),this.configs=[],this.configTokens=[],this.link=new R("/payment-sources"),this.link.setParams({public_key:e,query_token:t})}var mn,yn,gn=(r(kn,fn),t(kn,[{key:"load",value:function(){this.iFrame.load(this.getIFrameUrl(),{title:"Payment Sources"})}},{key:"on",value:function(e,t){this.event.on(e,this.link.getParams().widget_id,t)}},{key:"hide",value:function(e){console.info("PayDock SDK"),this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}},{key:"onSelectInsert",value:function(t,n){this.on(le.SELECT,function(e){re.insertToInput(t,n,e)})}}]),kn);function kn(e,t,n){u(this,kn);var i=c(this,(kn.__proto__||Object.getPrototypeOf(kn)).call(this,t,n));return i.container=new ae(e),i.iFrame=new ue(i.container),i.event=new de(window),i}(yn=mn=mn||{}).HTML="html",yn.URL="url";var _n=(t(En,[{key:"load",value:function(){this.token.format===mn.HTML?this.iFrame.loadFromHtml(this.token.content,{title:"3d secure authentication"}):this.token.format===mn.URL?this.iFrame.load(this.token.content,{title:"3d secure authentication"}):console.error("Token contain unsupported payload")}},{key:"setEnv",value:function(e,t){for(var n in this.link.setEnv(e,t),this.configs)this.configs.hasOwnProperty(n)&&this.configs[n].setEnv(e,t)}},{key:"getEnv",value:function(){return this.link.getEnv()}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().ref_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().ref_id,function(e){return t(e)})})}},{key:"hide",value:function(e){this.iFrame.hide(e)}},{key:"show",value:function(){this.iFrame.show()}},{key:"reload",value:function(){this.iFrame.remove(),this.load()}}],[{key:"extractToken",value:function(e){return JSON.parse(window.atob(e))}}]),En);function En(e,t){u(this,En),this.configs=[],this.link=new R("/3ds/webhook"),this.token=En.extractToken(t),this.link.setParams({ref_id:this.token.charge_3ds_id}),this.container=new ae(e),this.iFrame=new ue(this.container),this.event=new de(window)}var bn="/v1/charges/3ds",wn=(t(Sn,[{key:"preAuth",value:function(e,t){return"function"==typeof t?this.api.getClient("POST",bn).send(y(y({},e),{_3ds:y(y({},e._3ds),{browser_details:{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}})}),function(e){t(e)}):this.api.getClientPromise("POST",bn).send(y(y({},e),{_3ds:y(y({},e._3ds),{browser_details:{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}})}))}}]),Sn);function Sn(e){u(this,Sn),this.api=e}var Cn,Tn,On=(r(xn,en),t(xn,[{key:"getBrowserDetails",value:function(){return{name:Le.getBrowserName(),java_enabled:Le.isJavaEnabled().toString(),language:Le.getLanguage(),screen_height:Le.getScreenHeight().toString(),screen_width:Le.getScreenWidth().toString(),time_zone:Le.getTimezoneOffset().toString(),color_depth:Le.getColorDepth().toString()}}},{key:"charge",value:function(){return new wn(this)}}]),xn);function xn(e){u(this,xn);var t=c(this,(xn.__proto__||Object.getPrototypeOf(xn)).call(this,e));return t.publicKey=t.auth,t}(Tn=Cn=Cn||{}).AFTER_LOAD="after_load",Tn.SYSTEM_ERROR="system_error",Tn.CVV_SECURE_CODE_REQUESTED="cvv_secure_code_requested",Tn.CARD_NUMBER_SECURE_CODE_REQUESTED="card_number_secure_code_requested",Tn.ACCESS_FORBIDDEN="access_forbidden",Tn.SESSION_EXPIRED="session_expired",Tn.OPERATION_FORBIDDEN="operation_forbidden";var Pn=(r(An,de),t(An,[{key:"on",value:function(e,t,n){for(var i in Cn)Cn.hasOwnProperty(i)&&e===Cn[i]&&this.listeners.push({event:e,listener:n,widget_id:t})}}]),An);function An(){return u(this,An),c(this,(An.__proto__||Object.getPrototypeOf(An)).apply(this,arguments))}var Rn=(t(Ln,[{key:"setEnv",value:function(e,t){this.link.setEnv(e,t)}},{key:"on",value:function(e,t){var n=this;return"function"==typeof t?this.event.on(e,this.link.getParams().widget_id,t):new Promise(function(t){return n.event.on(e,n.link.getParams().widget_id,function(e){return t(e)})})}},{key:"setStyles",value:function(e){for(var t in e)e.hasOwnProperty(t)&&this.setStyle(t,e[t])}},{key:"setStyle",value:function(e,t){-1!==I.values(B).indexOf(e)?this.link.setParams(n({},e,t)):console.warn("Widget::setStyle[s: unsupported style param "+e)}},{key:"load",value:function(){this.iFrame.load(this.link.getUrl(),{title:"Vault Display"})}}]),Ln);function Ln(e,t){u(this,Ln),this.validationData={},this.configs=[],this.container=new ae(e),this.iFrame=new ue(this.container),this.triggerElement=new fe(this.iFrame),this.event=new Pn(window),this.vaultDisplayToken=t,this.link=new R("/vault-display"),this.link.setParams({vault_display_token:t})}e.AfterpayCheckoutButton=_t,e.Api=On,e.CHECKOUT_BUTTON_EVENT=vt,e.Canvas3ds=_n,e.CheckoutButton=mt,e.Configuration=J,e.ELEMENT=q,e.EVENT=le,e.ExternalCheckoutBuilder=Se,e.ExternalCheckoutChecker=Te,e.FORM_FIELD=H,e.HtmlMultiWidget=ge,e.HtmlPaymentSourceWidget=gn,e.HtmlWidget=_e,e.MultiWidget=ne,e.PAYMENT_TYPE=K,e.PURPOSE=G,e.PaymentSourceBuilder=Fe,e.PaymentSourceWidget=fn,e.PaypalCheckoutButton=St,e.STYLABLE_ELEMENT=Z,e.STYLABLE_ELEMENT_STATE=Q,e.STYLE=B,e.SUPPORTED_CARD_TYPES=W,e.TEXT=z,e.TRIGGER=pe,e.TYPE=je,e.VAULT_DISPLAY_STYLE={BACKGROUND_COLOR:"background_color",TEXT_COLOR:"text_color",BORDER_COLOR:"border_color",BUTTON_COLOR:"button_color",FONT_SIZE:"font_size",FONT_FAMILY:"font_family"},e.VaultDisplayWidget=Rn,e.WalletButtons=hn,e.ZipmoneyCheckoutButton=gt,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
@@ -171,6 +171,7 @@ export interface IParams extends IStyles, ITexts {
|
|
|
171
171
|
configuration_tokens?: string;
|
|
172
172
|
ref_id?: string;
|
|
173
173
|
supported_card_types?: string;
|
|
174
|
+
validate_card_types?: boolean;
|
|
174
175
|
fields_validation?: boolean;
|
|
175
176
|
hidden_elements?: string;
|
|
176
177
|
icons?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"param.js","sourceRoot":"","sources":["../../components/param.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"param.js","sourceRoot":"","sources":["../../components/param.ts"],"names":[],"mappings":"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"}
|
|
@@ -19,15 +19,13 @@ export class PaypalWalletService extends WalletService {
|
|
|
19
19
|
onSuccess: (res) => resolve(res.id),
|
|
20
20
|
onError: (err) => reject(err),
|
|
21
21
|
});
|
|
22
|
-
}), onShippingChange: (data, _actions) => {
|
|
22
|
+
}), onShippingChange: (data, _actions) => new Promise((resolve, reject) => {
|
|
23
23
|
const parsedCallbackData = this.parseUpdateData(data);
|
|
24
24
|
this.latestShippingData = parsedCallbackData.shipping;
|
|
25
|
+
this.latestShippingChangePromiseResolve = resolve;
|
|
26
|
+
this.latestShippingChangePromiseReject = reject;
|
|
25
27
|
this.eventEmitter.emit(WALLET_EVENT.UPDATE, parsedCallbackData);
|
|
26
|
-
|
|
27
|
-
this.latestShippingChangePromiseResolve = res;
|
|
28
|
-
this.latestShippingChangePromiseReject = rej;
|
|
29
|
-
});
|
|
30
|
-
}, onApprove: (data) => new Promise((resolve, reject) => this.eventEmitter.emit(WALLET_EVENT.PAYMENT_METHOD_SELECTED, {
|
|
28
|
+
}), onApprove: (data) => new Promise((resolve, reject) => this.eventEmitter.emit(WALLET_EVENT.PAYMENT_METHOD_SELECTED, {
|
|
31
29
|
data: { payment_method_id: data.orderID, customer: { payment_source: { external_payer_id: data.payerID } } },
|
|
32
30
|
onSuccess: () => resolve(true),
|
|
33
31
|
onError: (err) => reject(err),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paypal.wallet-service.js","sourceRoot":"","sources":["../../wallet-buttons/paypal.wallet-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,aAAa,EACb,YAAY,GACf,MAAM,kBAAkB,CAAC;AAU1B,MAAM,OAAO,mBAAoB,SAAQ,aAAa;IAM3C,IAAI,CAAC,SAAoB;QAC5B,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE;YACjB,0LAA0L;YAC1L,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,WAAW,EAAE,EAAE,KAAK,EAAE,YAAY,CAAC,WAAW,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;YAClG,OAAO;SACV;QAED,MAAM,QAAQ,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC;QACjD,MAAM,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QACtD,YAAY,CAAC,GAAG,GAAG,2CAA2C,IAAI,CAAC,SAAS,aAAa,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,+CAA+C,CAAC,CAAC,CAAC,8BAA8B,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;QAClR,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC;QAC1B,YAAY,CAAC,MAAM,GAAG,GAAG,EAAE;YACvB,IAAI,MAAM,CAAC,MAAM,EAAE;gBACf,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;gBAC5B,IAAI,CAAC,MAAM,CAAC,OAAO,iCACZ,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,KAClD,WAAW,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;wBAC/C,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,QAAQ,EAAE;4BAC1C,IAAI,kBACA,YAAY,EAAE,oBAAoB,IAC/B,IAAI,CAAC,IAAI,CAAC,gBAAgB,IAAI,EAAE,gBAAgB,EAAE,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE,CACpF;4BACD,SAAS,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC;4BACnC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC;yBAChC,CAAC,CAAA;oBACN,CAAC,CAAC,EACF,gBAAgB,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE;
|
|
1
|
+
{"version":3,"file":"paypal.wallet-service.js","sourceRoot":"","sources":["../../wallet-buttons/paypal.wallet-service.ts"],"names":[],"mappings":"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"}
|
|
@@ -188,11 +188,12 @@ export declare class MultiWidget {
|
|
|
188
188
|
*
|
|
189
189
|
* @example
|
|
190
190
|
*
|
|
191
|
-
* widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
191
|
+
* widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
192
192
|
*
|
|
193
193
|
* @param {string[]} elements - [SUPPORTED_CARD_TYPES]{@link SUPPORTED_CARD_TYPES}
|
|
194
|
+
* @param {boolean} validateCardNumberInput - [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types
|
|
194
195
|
*/
|
|
195
|
-
setSupportedCardIcons(elements: string[]): void;
|
|
196
|
+
setSupportedCardIcons(elements: string[], validateCardNumberInput?: boolean): void;
|
|
196
197
|
/**
|
|
197
198
|
* Current method can change environment. By default environment = sandbox.
|
|
198
199
|
* Also we can change domain alias for this environment. By default domain_alias = paydock.com
|
|
@@ -346,11 +346,12 @@ export class MultiWidget {
|
|
|
346
346
|
*
|
|
347
347
|
* @example
|
|
348
348
|
*
|
|
349
|
-
* widget.setSupportedCardIcons(['mastercard', 'visa']);
|
|
349
|
+
* widget.setSupportedCardIcons(['mastercard', 'visa'], validateCardNumberInput);
|
|
350
350
|
*
|
|
351
351
|
* @param {string[]} elements - [SUPPORTED_CARD_TYPES]{@link SUPPORTED_CARD_TYPES}
|
|
352
|
+
* @param {boolean} validateCardNumberInput - [validateCardNumberInput=false] - using this param you allow validation for card number input on supported card types
|
|
352
353
|
*/
|
|
353
|
-
setSupportedCardIcons(elements) {
|
|
354
|
+
setSupportedCardIcons(elements, validateCardNumberInput) {
|
|
354
355
|
let supportedCards = [];
|
|
355
356
|
for (let index in elements) {
|
|
356
357
|
if (!elements.hasOwnProperty(index))
|
|
@@ -362,6 +363,8 @@ export class MultiWidget {
|
|
|
362
363
|
}
|
|
363
364
|
if (supportedCards.length)
|
|
364
365
|
this.link.concatParams({ supported_card_types: supportedCards.join(',') });
|
|
366
|
+
if (validateCardNumberInput)
|
|
367
|
+
this.link.setParams({ validate_card_types: validateCardNumberInput });
|
|
365
368
|
}
|
|
366
369
|
/**
|
|
367
370
|
* Current method can change environment. By default environment = sandbox.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multi-widget.js","sourceRoot":"","sources":["../../widget/multi-widget.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"multi-widget.js","sourceRoot":"","sources":["../../widget/multi-widget.ts"],"names":[],"mappings":"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"}
|