@paypay/mini-app-js-sdk 2.19.0 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/index.d.ts +2 -0
- package/dist/client/supportedFunctionsList.d.ts +1 -1
- package/dist/core/coreFunctions/getLoginUrl.d.ts +17 -0
- package/dist/core/coreFunctions/index.d.ts +1 -0
- package/dist/core/coreFunctions/logEvent.d.ts +2 -2
- package/dist/core/coreUtils.d.ts +1 -0
- package/dist/mini-app-js-sdk.browser.js +1 -1
- package/dist/mini-app-js-sdk.es.js +51 -12
- package/dist/model/makePayment.d.ts +60 -42
- package/dist/package/lottie/lottie.d.ts +1 -1
- package/dist/resources/images.d.ts +0 -3
- package/dist/resources/locales/smartPayment/en.d.ts +13 -0
- package/dist/resources/locales/smartPayment/ja.d.ts +13 -0
- package/dist/resources/locales/topup/index.d.ts +53 -0
- package/dist/resources/locales/topup/ja.d.ts +26 -0
- package/dist/types/getLoginUrl.d.ts +8 -0
- package/dist/types.d.ts +4 -9
- package/dist/utils/analytics.d.ts +8 -2
- package/dist/utils/getLanguage.d.ts +2 -402
- package/dist/utils/helper.d.ts +1 -3
- package/dist/utils/popstateHandler.d.ts +2 -5
- package/dist/views/coupon/components/CouponContainer/index.d.ts +9 -1
- package/dist/views/coupon/index.d.ts +9 -1
- package/dist/views/coupon/types.d.ts +0 -2
- package/package.json +7 -1
- package/dist/model/bridge/getLoginUrl.d.ts +0 -11
- package/dist/resources/en.d.ts +0 -383
- package/dist/resources/ja.d.ts +0 -402
package/dist/client/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { MiniAppStatusType } from '../model/miniAppStatus';
|
|
|
5
5
|
import { VerifyMultiFactorAuthStatus } from '../types/verifyMultiFactorAuthResult';
|
|
6
6
|
import { InitClientParams } from '../types/init';
|
|
7
7
|
import { GetKycPassportInfoResult } from '../types/getKycPassportInfo';
|
|
8
|
+
import type { GetLoginUrlParams } from '../types/getLoginUrl';
|
|
8
9
|
declare function init(params: InitClientParams): void;
|
|
9
10
|
declare function verifyMultiFactorAuthResult(params: NativeParams<VerifyMultiFactorAuthStatus>): void;
|
|
10
11
|
declare function getKycPassportInfo(params: NativeParams<GetKycPassportInfoResult>): void;
|
|
@@ -41,6 +42,7 @@ declare const clientFunctions: {
|
|
|
41
42
|
statusCode: MiniAppStatusType;
|
|
42
43
|
}, import('../types').MiniAppErrorResultType>) => void;
|
|
43
44
|
getPaymentSettings: (params: NativeParams<import("../core/coreFunctions/getPaymentSettings").PaymentSettingsType, import('../types').MiniAppErrorResultType>) => void;
|
|
45
|
+
getLoginUrl: (params: GetLoginUrlParams) => void;
|
|
44
46
|
};
|
|
45
47
|
declare type ClientSDKType = Omit<MiniAppModule, keyof typeof clientFunctions> & typeof clientFunctions;
|
|
46
48
|
declare const client: ClientSDKType;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const miniAppSupportedFunctions: readonly ["init", "openWebview", "openMap", "closeApp", "makePayment", "topup", "setSessionData", "getSessionData", "setStorageData", "getStorageData", "removeStorageData", "getPermissionStatus", "scanCode", "showAlert", "showErrorSheet", "getTopBarHeight", "setTitle", "showUpdateWarning", "getPlatformInformation", "openApp", "share", "getKycInformation", "getUserLocation", "checkPaymentMethod", "registerKyc", "startMultiFactorAuth", "verifyMultiFactorAuthResult", "getBankInfo", "logout", "getUserProfile", "getBalance", "getUserAddress", "getUAID", "copyToClipboard", "registerUserInfo", "setEnablePullDownRefresh", "registerEmail", "checkAccessToken", "debug", "inputAddress", "getDeviceInformation", "openMiniApp", "request", "requestInternal", "registerPaymentFeatures", "initKycPassport", "getKycPassportInfo", "shortcutExists", "addShortcut", "logAppsFlyerEvent", "getAllUserAddresses", "getUserPaymentFeatureSettings", "getPaymentSettings", "getTransactionInfo", "getTransactions", "getPayPayCardInfo", "getExternalLinkageInformation"];
|
|
2
|
-
export declare const smartPaymentSupportedFunctions: readonly ["init", "createOrder", "makePayment", "render", "logout", "getAuthStatus", "getUserProfile", "getBalance", "getUserAddress", "getUAID", "getCashbackInformation", "renderCoupons"];
|
|
2
|
+
export declare const smartPaymentSupportedFunctions: readonly ["init", "createOrder", "makePayment", "render", "logout", "getAuthStatus", "getUserProfile", "getBalance", "getUserAddress", "getUAID", "getCashbackInformation", "renderCoupons", "getLoginUrl"];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MiniAppFunctionContext, PostLogInRedirectParams, RedirectType } from '../../types';
|
|
2
|
+
import { PKCEChallengeType } from '../../types/getAuthStatus';
|
|
3
|
+
interface GetLoginUrlInternalParams extends PostLogInRedirectParams {
|
|
4
|
+
pkceCodeChallenge: PKCEChallengeType;
|
|
5
|
+
scopes?: Array<string>;
|
|
6
|
+
}
|
|
7
|
+
export declare const getLoginUrlEndpoint = "public/auth/v1/loginUrl";
|
|
8
|
+
export declare function getLoginUrl(params: {
|
|
9
|
+
redirectUrl: string;
|
|
10
|
+
redirectType?: RedirectType;
|
|
11
|
+
}, context: MiniAppFunctionContext): Promise<{
|
|
12
|
+
url: string;
|
|
13
|
+
}>;
|
|
14
|
+
export declare function getLoginUrlInternal({ pkceCodeChallenge, postLoginRedirectUrl, postLoginRedirectType, scopes, }: GetLoginUrlInternalParams): Promise<string>;
|
|
15
|
+
export declare function getLoginUrlWithPkce(params: Omit<GetLoginUrlInternalParams, 'pkceCodeChallenge'>, clientOrigin: string): Promise<string>;
|
|
16
|
+
export declare function getLoginUrlIfUserNotSignedIn(params: Omit<GetLoginUrlInternalParams, 'pkceCodeChallenge'>, context: MiniAppFunctionContext): Promise<string | undefined>;
|
|
17
|
+
export {};
|
|
@@ -3,11 +3,11 @@ interface LogEventParams {
|
|
|
3
3
|
sendImmediately?: boolean;
|
|
4
4
|
clientId?: string;
|
|
5
5
|
event_category?: string;
|
|
6
|
-
event_label_suffix?: string;
|
|
7
6
|
screen_name?: string;
|
|
8
7
|
event_action?: string;
|
|
9
8
|
error_value?: string;
|
|
10
9
|
event_label2?: unknown;
|
|
10
|
+
merchant_id?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare function logEvent({ eventName, sendImmediately, clientId, event_category,
|
|
12
|
+
export declare function logEvent({ eventName, sendImmediately, clientId, event_category, screen_name, ...params }: LogEventParams): void;
|
|
13
13
|
export {};
|
package/dist/core/coreUtils.d.ts
CHANGED
|
@@ -14,3 +14,4 @@ export declare function sendMakeIframeVisible<T extends NativeParams<any>>(param
|
|
|
14
14
|
export declare function checkMakeIframeVisible(): void;
|
|
15
15
|
export declare function sendDebugInfoToClient(data: ConsoleDebugInfoParams, env?: string | null, debugMode?: boolean): void;
|
|
16
16
|
export declare function isInternalMiniapp(): boolean | undefined;
|
|
17
|
+
export declare function getTargetOrigin(calledOrigin: string): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
(function(){"use strict";try{if(typeof document!="undefined"){var p=document.createElement("style");p.appendChild(document.createTextNode(".ppmna-reset-css{all:initial}.ppmna-reset-css *{text-align:unset;color:unset;background:initial;background-color:transparent;margin:revert;padding:revert;font-weight:revert;font-style:unset;font-size:unset;-webkit-user-select:none;user-select:none;border:unset;border-radius:revert;vertical-align:unset;word-break:unset;outline:none;box-sizing:content-box}.ppmna-reset-css * img{display:inline-block}.ppmna-reset-css * input,.ppmna-reset-css * select{-webkit-user-select:auto;user-select:auto}.ppmna-reset-css * li{list-style:none}.ppmna-reset-css * :where(*:not(svg,svg *)){all:revert}.pp-smartButtonWrapper .pp-smartBtn{display:flex;align-items:center;border-radius:8px;border:none;font-size:14px;font-weight:600;line-height:22px;color:#fff;padding:0;width:100%;height:44px;margin:auto;-webkit-tap-highlight-color:transparent;text-decoration:none;box-sizing:border-box}.pp-smartButtonWrapper .pp-smartBtn.pp-sm .pp-leftSection .pp-btnContent{flex-direction:column}.pp-smartButtonWrapper .pp-smartBtn.pp-light{background:#fff;color:#242323}.pp-smartButtonWrapper .pp-smartBtn.pp-dark{background:#000}.pp-smartButtonWrapper .pp-smartBtn.pp-red{background:#ff0033}.pp-smartButtonWrapper .pp-smartBtn.pp-login{min-width:180px}.pp-smartButtonWrapper .pp-smartBtn.pp-login.pp-sm{width:180px!important}.pp-smartButtonWrapper .pp-smartBtn.pp-login.pp-light{border:1px solid #e4e4e8}.pp-smartButtonWrapper .pp-smartBtn.pp-login.pp-light .pp-userProfile{margin-right:4px}.pp-smartButtonWrapper .pp-smartBtn.pp-login .pp-leftSection .pp-btnContent{display:grid}.pp-smartButtonWrapper .pp-smartBtn.pp-pay{min-width:160px}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-light{border:1px solid #dddddd}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-light .pp-cashbackInfo{color:#ff954c;background:#fff0e5}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-red .pp-cashbackInfo{color:#f03}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-ja .pp-cashbackInfo{padding:2px 16px}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-sm{width:160px!important}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-sm.pp-cashback{height:66px;flex-direction:column;justify-content:center}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-sm .pp-cashbackInfo{margin:8px 0 0}.pp-smartButtonWrapper .pp-smartBtn.pp-pay .pp-leftSection .pp-img{width:24px;height:24px}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-shortText{font-size:16px}.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-sm .pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-cashback .pp-leftSection .pp-btnContent,.pp-smartButtonWrapper .pp-smartBtn.pp-pay.pp-shortText .pp-leftSection .pp-btnContent{margin-left:4px}.pp-smartButtonWrapper .pp-smartBtn .pp-leftSection{display:flex;justify-content:center;align-items:center;width:100%;box-sizing:border-box;padding:0 8px}.pp-smartButtonWrapper .pp-smartBtn .pp-leftSection .pp-img{width:20px;height:20px;display:inline-block}.pp-smartButtonWrapper .pp-smartBtn .pp-leftSection .pp-btnContent{margin-left:8px}.pp-smartButtonWrapper .pp-smartBtn .pp-leftSection .pp-btnContent .pp-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pp-smartButtonWrapper .pp-smartBtn .pp-cashbackInfo{font-size:12px;color:#242323;background:#fff;line-height:14px;padding:2px 8px;border-radius:9px;margin-left:8px}.pp-smartButtonWrapper .pp-smartBtn .pp-userProfile{width:34px;height:34px;border-radius:50%;margin-right:5px}.pp-smartButtonWrapper.pp-button{padding:0;margin:0;background:none;border:none;width:100%;border-radius:8px;-webkit-tap-highlight-color:transparent;font-family:revert!important}.pp-smartButtonWrapper.pp-button *{font-family:revert!important}")),document.head.appendChild(p)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
|
|
2
|
-
var pp=function(){"use strict";var e=Object.defineProperty,t=Object.defineProperties,n=Object.getOwnPropertyDescriptors,o=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable,i=(t,n,o)=>n in t?e(t,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[n]=o,s=(e,t)=>{for(var n in t||(t={}))r.call(t,n)&&i(e,n,t[n]);if(o)for(var n of o(t))a.call(t,n)&&i(e,n,t[n]);return e},c=(e,o)=>t(e,n(o)),l=(e,t,n)=>new Promise(((o,r)=>{var a=e=>{try{s(n.next(e))}catch(t){r(t)}},i=e=>{try{s(n.throw(e))}catch(t){r(t)}},s=e=>e.done?o(e.value):Promise.resolve(e.value).then(a,i);s((n=n.apply(e,t)).next())}));function d(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}var u=function e(t,n){function o(e,o,r){if("undefined"!=typeof document){"number"==typeof(r=d({},n,r)).expires&&(r.expires=new Date(Date.now()+864e5*r.expires)),r.expires&&(r.expires=r.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var a="";for(var i in r)r[i]&&(a+="; "+i,!0!==r[i]&&(a+="="+r[i].split(";")[0]));return document.cookie=e+"="+t.write(o,e)+a}}return Object.create({set:o,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],o={},r=0;r<n.length;r++){var a=n[r].split("="),i=a.slice(1).join("=");try{var s=decodeURIComponent(a[0]);if(o[s]=t.read(i,s),e===s)break}catch(c){}}return e?o[e]:o}},remove:function(e,t){o(e,"",d({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,d({},this.attributes,t))},withConverter:function(t){return e(d({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"}),p=(e=>(e.accessToken="ppjssdk.accessToken",e.refreshToken="ppjssdk.refreshToken",e.env="ppjssdk.env",e.deviceUUID="ppjssdk.deviceUUID",e.clientUUID="ppjssdk.clientUUID",e.lastPayment="ppjssdk.lastPayment",e.lastTopup="ppjssdk.lastTopup",e.appDetail="ppjssdk.appDetail",e.appConfig="ppjssdk.appConfig",e.userInfo="ppjssdk.userInfo",e.lastPaymentMethod="ppjssdk.lastPaymentMethod",e.lastTopupPayMethod="ppjssdk.lastTopupPayMethod",e.codeVerifier="ppjssdk.codeVerifier",e.clientOrigin="ppjssdk.clientOrigin",e.clientVersion="ppjssdk.clientVersion",e.debugMode="ppjssdk.debugMode",e.claimCouponImmediately="ppjssdk.claimCouponImmediately",e.merchant="ppjssdk.merchant",e.consumedOTT="ppjssdk.consumedOTT",e))(p||{});const m={success:"success",fail:"fail",complete:"complete"},g={init:"init",getBankInfo:"getBankInfo",showAlert:"showAlert",render:"render",makePayment:"makePayment",getUAID:"getUAID",logout:"logout",startMultiFactorAuth:"startMultiFactorAuth",verifyMultiFactorAuthResult:"verifyMultiFactorAuthResult",getPermissionStatus:"getPermissionStatus",registerKyc:"registerKyc",getKycInformation:"getKycInformation",getUserAddress:"getUserAddress",getUserLocation:"getUserLocation",getUserProfile:"getUserProfile",registerEmail:"registerEmail",showUpdateWarning:"showUpdateWarning",showErrorSheet:"showErrorSheet",getPlatformInformation:"getPlatformInformation",share:"share",getTopBarHeight:"getTopBarHeight",openWebview:"openWebview",openMap:"openMap",closeApp:"closeApp",openApp:"openApp",checkPaymentMethod:"checkPaymentMethod",getBalance:"getBalance",topup:"topup",registerPaymentFeatures:"registerPaymentFeatures",registerUserInfo:"registerUserInfo",requestInternal:"requestInternal",scanCode:"scanCode",getAuthStatus:"getAuthStatus",openMiniApp:"openMiniApp",inputAddress:"inputAddress",checkAccessToken:"checkAccessToken",getCashbackInformation:"getCashbackInformation",request:"request",getDeviceInformation:"getDeviceInformation",debug:"debug",createOrder:"createOrder",handleMessageFromNative:"handleMessageFromNative",initKycPassport:"initKycPassport",smsAuth:"smsAuth",getKycPassportInfo:"getKycPassportInfo"},f="reload",h="link",v="saveRefreshToken",E="saveCodeVerifier",I="makeVisible",y="consoleDebugInfo",A="_PayPayJsBridge",b=["init","openWebview","openMap","closeApp","makePayment","topup","setSessionData","getSessionData","setStorageData","getStorageData","removeStorageData","getPermissionStatus","scanCode","showAlert","showErrorSheet","getTopBarHeight","setTitle","showUpdateWarning","getPlatformInformation","openApp","share","getKycInformation","getUserLocation","checkPaymentMethod","registerKyc","startMultiFactorAuth","verifyMultiFactorAuthResult","getBankInfo","logout","getUserProfile","getBalance","getUserAddress","getUAID","copyToClipboard","registerUserInfo","setEnablePullDownRefresh","registerEmail","checkAccessToken","debug","inputAddress","getDeviceInformation","openMiniApp","request","requestInternal","registerPaymentFeatures","initKycPassport","getKycPassportInfo","shortcutExists","addShortcut","logAppsFlyerEvent","getAllUserAddresses","getUserPaymentFeatureSettings","getPaymentSettings","getTransactionInfo","getTransactions","getPayPayCardInfo","getExternalLinkageInformation"];function _(e){return"https://image.paypay.ne.jp/miniapps/mini-app-sdk/"+e}const w=_("icon-paypay-rec.svg"),T=_("icon-paypay-rec-white.svg"),S="2.19.0",k=new URL("https://mini-app-sdk-core.paypay.ne.jp/"),N=k.origin,O=new URL(`./iframe.html?v=${S}&rev=a45fb75`,k).href,P=new URL(`./coupon/iframe.html?v=${S}`,k).href;var C=(e=>(e.success="SUCCESS",e.invalidUrl="INVALID_URL",e.invalidData="INVALID_DATA",e.invalidHeader="INVALID_HEADER",e.invalidMethod="INVALID_METHOD",e.invalidPath="INVALID_PATH",e.notReachable="NOT_REACHABLE",e.notAvailable="NOT_AVAILABLE",e.timeOut="TIME_OUT",e.whiteListError="NONE_WHITELIST_DOMAIN",e.statusCodeError="STATUS_CODE_ERROR",e.invalidResponse="INVALID_RESPONSE",e.noLocationPermission="NO_USER_LOCATION_PERMISSION",e.noPermissionListAvailable="NO_PERMISSION_LIST_AVAILABLE",e.other="other",e.serverError="SERVER_ERROR",e.noCameraPermission="HOST_APP_CAMERA_DENIED",e.noAlbumPermission="HOST_APP_ALBUM_DENIED",e.insufficientScope="INSUFFICIENT_SCOPE",e.userCanceled="USER_CANCELED",e.invalidJSAPIParams="INVALID_JS_API_PARAMS",e.hostAppLocationDenied="HOST_APP_LOCATION_DENIED",e.hostAppContactsDenied="HOST_APP_READING_CONTACT_DENIED",e.badRequestInsufficientParameter="BAD_REQUEST_INSUFFICIENT_PARAMETER",e.badRequest="BAD_REQUEST",e.paymentFail="PAYMENT_FAIL",e.topupFail="TOPUP_FAIL",e.topupSuccessButNotAddToBalance="TOPUP_SUCCESS_BUT_NOT_ADD_TO_BALANCE",e.userCanceledSimilarTxn="USER_CANCELED_SIMILAR_TRANSACTION",e.mapAppNotFound="MAP_APP_NOT_FOUND",e.invalidAppSchemeURL="INVALID_APP_SCHEME_URL",e.noValueFound="NO_VALUE_FOUND",e.securityNotSetup="SECURITY_NOT_SETUP",e.userDenied="USER_DENIED",e.securityTemporaryLocked="SECURITY_TEMPORARY_LOCKED",e.couldNotGenerateBarcode="COULD_NOT_GENERATE_BARCODE",e.cannotDetectAvailability="CAN_NOT_DETECT_AVAILABILITY",e.suspectedDuplicatePayment="SUSPECTED_DUPLICATE_PAYMENT",e.noSufficientFund="NO_SUFFICIENT_FUND",e.unknown="UNKNOWN",e.sdkNotInitialized="SDK_NOT_INITIALIZED",e.tokenNotFound="TOKEN_NOT_FOUND",e.tokenExpired="TOKEN_EXPIRED",e.activeRequestExists="ACTIVE_REQUEST_EXISTS",e.invalidType="INVALID_TYPE",e.sessionNotFound="SESSION_NOT_FOUND",e.cookieError="COOKIE_ERROR",e.notAuthorized="NOT_AUTHORIZED",e.permissionRequired="PERMISSION_REQUIRED",e.deeplinkUnavailable="DEEPLINK_UNAVAILABLE",e.kycIncompleted="KYC_INCOMPLETED",e.noBankAccount="NO_BANK_ACCOUNT",e.invalidPaymentIdentifier="INVALID_PAYMENT_IDENTIFIER",e.otpSendTooShort="OTP_SEND_TOO_SHORT",e.otpSendOverLimit="OTP_SEND_OVER_LIMIT",e.userVerificationFailure="USER_VERIFICATION_FAILURE",e.unacceptableOp="UNACCEPTABLE_OP",e.kycUpdateRequired="KYC_UPDATE_REQUIRED",e.notCompleted="NOT_COMPLETED",e.kycValidationInProcess="KYC_VALIDATION_IN_PROCESS",e.noLocationData="NO_LOCATION_DATA",e.functionNotFound="FUNCTION_NOT_FOUND",e.originNotAllowed="ORIGIN_NOT_ALLOWED",e.messageSendingFailed="MESSAGE_SENDING_FAILED",e.transactionNotFound="TRANSACTION_NOT_FOUND",e.unexpectedOperation="UNEXPECTED_OP",e.merchantTimeout="MERCHANT_TIMEOUT",e))(C||{});Object.prototype.toString;function D(e){return e&&e.Math==Math?e:void 0}const R="object"==typeof globalThis&&D(globalThis)||"object"==typeof window&&D(window)||"object"==typeof self&&D(self)||"object"==typeof global&&D(global)||function(){return this}()||{};const U=["debug","info","warn","error","log","assert","trace"],L={};function F(e){if(!("console"in R))return e();const t=R.console,n={},o=Object.keys(L);o.forEach((e=>{const o=L[e];n[e]=t[e],t[e]=o}));try{return e()}finally{o.forEach((e=>{t[e]=n[e]}))}}!function(){let e=!1;const t={enable:()=>{e=!0},disable:()=>{e=!1},isEnabled:()=>e};"undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__?U.forEach((n=>{t[n]=(...t)=>{e&&F((()=>{R.console[n](`Sentry Logger [${n}]:`,...t)}))}})):U.forEach((e=>{t[e]=()=>{}}))}();var M;!function(e){e[e.PENDING=0]="PENDING";e[e.RESOLVED=1]="RESOLVED";e[e.REJECTED=2]="REJECTED"}(M||(M={}));const j=R,B={nowSeconds:()=>Date.now()/1e3};const x="undefined"!=typeof __SENTRY_BROWSER_BUNDLE__&&__SENTRY_BROWSER_BUNDLE__||"[object process]"!==Object.prototype.toString.call("undefined"!=typeof process?process:0)?function(){const{performance:e}=j;if(!e||!e.now)return;return{now:()=>e.now(),timeOrigin:Date.now()-e.now()}}():function(){try{return(e=module,t="perf_hooks",e.require(t)).performance}catch(n){return}var e,t}(),V=void 0===x?B:{nowSeconds:()=>(x.timeOrigin+x.now())/1e3};B.nowSeconds.bind(B),V.nowSeconds.bind(V);(()=>{const{performance:e}=j;if(!e||!e.now)return;const t=36e5,n=e.now(),o=Date.now(),r=e.timeOrigin?Math.abs(e.timeOrigin+n-o):t,a=r<t,i=e.timing&&e.timing.navigationStart,s="number"==typeof i?Math.abs(i+n-o):t;(a||s<t)&&(r<=s&&e.timeOrigin)})();const W=[C.sdkNotInitialized,C.notAuthorized,C.userCanceled,C.userCanceledSimilarTxn,C.suspectedDuplicatePayment,C.noSufficientFund];function q(e,t,n){W.includes(n),0}!function(){try{return localStorage.getItem("ppjssdk.canWriteToLocalStorage"),!0}catch(e){return console.log(e),!1}}();const z=["ab.ca","ac.ac","ac.ae","ac.at","ac.be","ac.cn","ac.il","ac.in","ac.jp","ac.kr","ac.th","ac.uk","ac.sg","ad.jp","adm.br","adv.br","ah.cn","am.br","arq.br","art.br","arts.ro","asn.au","asso.fr","asso.mc","bc.ca","bio.br","biz.pl","biz.tr","bj.cn","bel.tr","br.com","cn.com","cng.br","cnt.br","co.ac","co.at","co.de","co.gl","co.hk","co.id","co.il","co.in","co.jp","co.kr","co.mg","co.ms","co.nz","co.th","cp.tz","co.uk","co.ve","co.vi","co.za","com.ag","com.ai","com.ar","com.au","com.br","com.co","com.cn","com.cy","com.de","com.do","com.ec","com.es","com.fj","com.fr","com.gl","com.gt","com.hk","com.hr","com.hu","com.kg","com.ki","com.lc","com.mg","com.mm","com.ms","com.mt","com.mu","com.mx","com.my","com.na","com.nf","com.ng","com.ni","com.pa","com.ph","com.pl","com.pt","com.qa","com.ro","com.ru","com.sb","com.sc","com.sg","com.sv","com.tr","com.tw","com.ua","com.uy","com.ve","com.vn","cq.cn","de.com","de.org","ecn.br","ed.jp","edu.au","edu.cn","edu.hk","edu.mm","edu.my","edu.pl","edu.pt","edu.qa","edu.sg","edu.tr","edu.tw","eng.br","ernet.in","esp.br","etc.br","eti.br","eu.com","eu.int","eu.lv","firm.in","firm.ro","fm.br","fot.br","fst.br","g12.br","gb.com","gb.net","gd.cn","gen.in","go.jp","go.kr","go.th","gov.au","gov.az","gov.br","gov.cn","gov.il","gov.in","gov.mm","gov.my","gov.qa","gov.sg","gov.tr","gov.tw","gov.uk","govt.nz","gr.jp","gs.cn","gv.ac","gv.at","gx.cn","gz.cn","he.cn","hi.cn","hk.cn","hl.cn","hu.com","id.au","idv.tw","in.ua","in.th","ind.br","ind.in","inf.br","info.pl","info.ro","info.tr","info.ve","iwi.nz","jl.cn","jor.br","js.cn","jus.br","k12.il","k12.tr","kr.com","lel.br","lg.jp","ln.cn","ltd.uk","mb.ca","me.uk","med.br","mi.th","mil.br","mil.uk","mo.cn","mod.uk","muni.il","nb.ca","ne.jp","ne.kr","net.ag","net.ai","net.au","net.br","net.cn","net.do","net.gl","net.hk","net.il","net.in","net.kg","net.ki","net.lc","net.mg","net.mm","net.mu","net.ni","net.nz","net.pl","net.ru","net.sb","net.sc","net.sg","net.th","net.tr","net.tw","net.uk","net.ve","nf.ca","nhs.uk","nm.cn","nm.kr","no.com","nom.br","nom.ni","nom.ro","ns.ca","nt.ca","nt.ro","ntr.br","nx.cn","odo.br","off.ai","on.ca","or.ac","or.at","or.jp","or.kr","or.th","org.ag","org.ai","org.au","org.br","org.cn","org.do","org.es","org.gl","org.hk","org.in","org.kg","org.ki","org.lc","org.mg","org.mm","org.ms","org.nf","org.ng","org.ni","org.nz","org.pl","org.ro","org.ru","org.sb","org.sc","org.sg","org.tr","org.tw","org.uk","org.ve","pe.ca","plc.uk","ppg.br","pro.br","psc.br","psi.br","qc.ca","qc.com","qh.cn","rec.br","rec.ro","res.in","sa.com","sc.cn","sch.uk","se.com","se.net","sh.cn","sk.ca","slg.br","sn.cn","store.ro","tj.cn","tm.fr","tm.mc","tm.ro","tmp.br","tur.br","tv.br","tv.tr","tw.cn","uk.com","uk.net","us.com","uy.com","vet.br","waw.pl","web.ve","www.ro","xj.cn","xz.cn","yk.ca","yn.cn","zj.cn","zlg.br"];function K(e,t){return e?function(e){const t=e.split(".");if(function(e){return/(^\s*(((\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])\.){3}(\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]))\s*$)/.test(e)}(n=e)||function(e){return/(^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$)/.test(e)}(n)||t.length<=2)return e;var n;const o=t.slice(t.length-2).join(".");return z.includes(o)&&t.length>=3?t.slice(t.length-3).join("."):t.slice(t.length-2).join(".")}(t):t}function H(){return Math.random().toString(36).substring(7)}function $(e){return e===N}function Y(e){return e?String(e):""}function G(e,t){u.remove(e),u.remove(e,{domain:t})}C.notAuthorized,C.badRequest,C.badRequestInsufficientParameter,C.insufficientScope,C.insufficientScope;let J=[];function Q(e){J=J.filter((t=>t!==e))}function X(){const e=H();return J.push(e),e}function Z(e,t,n,o){return function(r={}){const a=n(),i=null==o?void 0:o(r);a.logEvent(s({event_action:`pp_${e}_called`},i)),t(r).then((t=>{var n;a.logEvent(s({event_action:`pp_${e}_success`},i)),null==(n=r.success)||n.call(r,t)})).catch((t=>{var n;console.error(t.message),a.logEvent(s({event_action:`pp_${e}_fail`,error_value:t.errorCode},i)),null==(n=r.fail)||n.call(r,{errorCode:t.errorCode})})).finally((()=>{var e;null==(e=r.complete)||e.call(r)}))}}class ee extends Error{constructor(e,t){super(e),this.errorCode=t}}class te{constructor(e,t){this.deferredCallbacks={},this.functions=e,this.allowedOrigins=t,this.messageEventHandler=this.messageEventHandler.bind(this),this.subscribeToMessageEvent()}subscribeToMessageEvent(){window.addEventListener("message",this.messageEventHandler)}unsubscribeToMessageEvent(){window.removeEventListener("message",this.messageEventHandler)}messageEventHandler(e){var t;if(null==(t=e.data)?void 0:t.forWindowBridge)return this.allowedOrigins&&!this.allowedOrigins.includes(e.origin)?this.sendErrorResponse(e,`${e.origin} is not allowed to make requests`,C.originNotAllowed):void("request"===e.data.type?this.handleRequest(e):"response"===e.data.type&&this.handleResponse(e))}handleRequest(e){return l(this,null,(function*(){const t=e.data.functionName,n=this.functions[t];n||this.sendErrorResponse(e,`Function '${t}' does not exists on the target window`,C.functionNotFound);try{const t={clientOrigin:e.origin};this.sendSuccessResponse(e,yield n(...e.data.params,t))}catch(o){let t="Some error ocurred while processing the request",n=C.unknown;o instanceof ee&&(t=o.message,n=o.errorCode),this.sendErrorResponse(e,t,n)}}))}handleResponse(e){if(!this.deferredCallbacks[e.data.key])return void console.warn(`Callback for ${e.data.functionName} not found`);const[t,n]=this.deferredCallbacks[e.data.key];delete this.deferredCallbacks[e.data.key],"success"===e.data.status?t(e.data.result):n(new ee(e.data.message,e.data.errorCode))}sendErrorResponse(e,t,n){q(e.data.functionName,0,n),this.sendResponse(e,{status:"failure",message:t,errorCode:n})}sendSuccessResponse(e,t){this.sendResponse(e,{status:"success",result:t})}sendResponse(e,t){var n;null==(n=e.source)||n.postMessage(s({forWindowBridge:!0,type:"response",key:e.data.key,functionName:e.data.functionName},t),e.origin)}static init(e,t){if(this._instance)throw new Error("WindowBridge already initialized, you can't call WindowBridge.init more than once");return this._instance=new this(e,t),this._instance}static destroy(){this._instance&&(this._instance.unsubscribeToMessageEvent(),this._instance=void 0)}static getBridge(){if(!this._instance)throw new Error("WindowBridge not initialized, please call WindowBridge.init before calling WindowBridge.getBridge");return this._instance}static getTargetWindowFunctionProxy(e,t){return te.getBridge().getTargetWindowFunctionProxy(e,t)}getTargetWindowFunctionProxy(e,t){return new Proxy(this,{get(n,o){return(...r)=>new Promise(((a,i)=>l(this,null,(function*(){const s=o.toString(),c=`${s}--${H()}`;try{const o=yield e();if(!o)throw new Error("Target window is undefined");n.deferredCallbacks[c]=[a,i],o.postMessage({forWindowBridge:!0,type:"request",functionName:s,key:c,params:JSON.parse(JSON.stringify(r))},t)}catch(l){delete n.deferredCallbacks[c],i(new ee(l.message,C.messageSendingFailed))}}))))}})}}var ne=(e=>(e.validToken="TOKEN_VALID",e.initialized="INITIALIZED",e.emailRegistered="EMAIL_REGISTERED",e.emailNotVerified="EMAIL_NOT_VERIFIED",e.success="SUCCESS",e.loggedOut="LOGGED_OUT",e.connected="CONNECTED",e))(ne||{});const oe="ppmna-iframe",re="ppsdk-container";let ae,ie;function se(){return ae||(ae=function(){if(document.getElementById(oe))return;const e=document.createElement("div");return document.createElement("div"),e.setAttribute("id",re),e.setAttribute("class",re),e.style.all="initial",e.style.display="none",e.style.position="fixed",e.style.width="100%",e.style.height="100%",e.style.top="0",e.style.left="0",e.style.zIndex="2147483637",document.body.appendChild(e),e}()),ae}function ce(e){const t=se();t&&(t.style.display=e?"initial":"none")}function le(){return ie||(ie=new Promise(((e,t)=>{function n(){const n=document.createElement("iframe");n.setAttribute("src",O),n.setAttribute("name",oe),n.setAttribute("id",oe),n.setAttribute("class",oe),n.setAttribute("allow","geolocation"),n.onload=()=>{e(n)},n.onerror=t,n.style.all="initial",n.style.width="100%",n.style.height="100%",n.style.border="none";const o=se();o&&(o.innerHTML="",o.append(n))}"loading"===document.readyState?document.addEventListener("DOMContentLoaded",(()=>{n()})):n()}))),ie}let de,ue=!1;te.init({}),le();const pe=te.getTargetWindowFunctionProxy((function(){return le().then((e=>null==e?void 0:e.contentWindow)).catch((()=>null))}),N);function me(){return pe}function ge(e){const t=new URL(window.location.href),n=t.searchParams.get("token"),o=t.searchParams.get("one_time_token"),r=u.get(p.refreshToken)||"",a=u.get(p.codeVerifier)||"";ue=!!e.useAllFunctions,(n||o)&&function(e){e.searchParams.delete("token"),e.searchParams.delete("one_time_token"),e.search=e.searchParams.toString();const t=e.toString().replace(e.origin,"");history.replaceState(null,"",t)}(t);const i={env:e.env,mode:e.mode,debugMode:e.debugMode,clientId:e.clientId,token:n,ott:o,refreshToken:r,clientVersion:"2.19.0",codeVerifier:a};let l;de=new Promise((e=>l=e));const d=()=>{var t;l(!0),null==(t=e.complete)||t.call(e)};le().then((()=>{ye(g.init,!1,c(s({},e),{complete:d}),i)})).catch((()=>{var t;null==(t=e.fail)||t.call(e,{errorCode:C.sdkNotInitialized}),d()}))}addEventListener("message",(e=>{var t;if(!(null==(t=e.data)?void 0:t.forWindowBridge)&&$(e.origin))if(e.data.name===f&&window.location.reload(),e.data.name!==I){if(e.data.name===h){const t=e.data.data;"_blank"===t.target?window.open(t.url,"_blank"):window.location.href=t.url}if(e.data.name===v){const{refreshToken:t,domain:n,isSecure:o}=e.data.data;!function(e,t,n){G(p.refreshToken,t),u.set(p.refreshToken,e,{domain:t,expires:90,secure:n})}(t,n,o)}if(e.data.name===E){const{codeVerifier:t,domain:n,isSecure:o}=e.data.data;!function(e,t,n){G(p.codeVerifier,t),u.set(p.codeVerifier,e,{domain:t,secure:n})}(t,n,o)}if(e.data.name===y){const{params:t}=e.data.data;!function(e){console.debug(...e)}(t)}}else ce(!0)}));const fe=Z("renderCoupons",(e=>l(this,null,(function*(){const{merchant:t,couponId:n,containerId:o,postLoginRedirectUrl:r=window.location.href,postLoginRedirectType:a,locale:i}=e,s=document.getElementById(o);if(!s)throw new ee("Invalid coupon container Id",C.badRequestInsufficientParameter);const c=yield pe.fetchCoupons({merchantId:t,couponId:n,postLoginRedirectUrl:r,postLoginRedirectType:a});try{const e=document.createElement("iframe");e.src=P,e.style.cssText="width:100%;height: 0;border: none;transition: height 300ms ease-in;display: block;",yield new Promise(((t,n)=>{e.onload=()=>t(!0),e.onerror=()=>n(!1),s.innerHTML="",s.append(e)})),e.onload=null,e.onerror=null,window.addEventListener("message",(({data:t,source:n})=>{"update-iframe-height"===(null==t?void 0:t.eventName)&&e.contentWindow===n&&(e.style.height=`${t.height}px`)}));const n=te.getTargetWindowFunctionProxy((()=>e.contentWindow),N);yield n.renderCoupons({coupons:c,merchantId:t,locale:i})}catch(l){throw new ee(`An error ocurred while displaying coupons, merchantId=${t}, couponId=${n}, error=${l}`,C.unknown)}}))),me,(e=>({event_label_suffix:e.merchant,event_label2:e.couponId})));const he=Z("logout",(()=>l(this,null,(function*(){try{const e=K(yield pe.logout(),window.location.hostname);return G(p.refreshToken,e),G(p.codeVerifier,e),{statusCode:ne.loggedOut}}catch(e){throw new ee(`An error ocurred while trying to logout the user, error=${e}`,C.unknown)}}))),me),ve=Z("getPaymentSettings",pe.getPaymentSettings,me);function Ee(e,t,n){var o,r,a;e.result===m.fail&&(null==(o=null==t?void 0:t.fail)||o.call(t,e.data)),e.result===m.success&&(null==(r=null==t?void 0:t.success)||r.call(t,null==e?void 0:e.data)),e.result===m.complete&&(null==(a=null==t?void 0:t.complete)||a.call(t),removeEventListener("message",n),Q(e.messageId),J.length>0||ce(!1))}function Ie(e){return l(this,null,(function*(){var t;const n=yield le().catch((()=>{}));null==(t=null==n?void 0:n.contentWindow)||t.postMessage(JSON.parse(JSON.stringify(e)),N)}))}function ye(e,t,n,o){const r=X();t&&ce(!0);const a=t=>{$(t.origin)&&t.data.name===e&&t.data.messageId===r&&Ee(t.data,n,a)};addEventListener("message",a),Ie({name:e,params:o,messageId:r})}!function(e){const t=window;(!t.hasOwnProperty(A)||t[A]!==e)&&(t[A]=e)}({_handleMessageFromNative:e=>{le().then((t=>{var n;null==(n=null==t?void 0:t.contentWindow)||n.postMessage(JSON.parse(JSON.stringify({name:g.handleMessageFromNative,params:{json:e}})),N)}))}});const Ae=["init","setTitle","copyToClipboard","getSessionData","setSessionData","getStorageData","setStorageData","removeStorageData"],be=["renderCoupons"],_e=new Proxy({init:ge,verifyMultiFactorAuthResult:function(e){const t=new URL(window.location.href);ye(g.verifyMultiFactorAuthResult,!1,e,c(s({},e),{sessionId:t.searchParams.get("ppSessionId")}))},share:function(e){if(!(null==navigator?void 0:navigator.share))return void ye(g.share,!1,e,e);const t={text:null==e?void 0:e.text};navigator.share(t).then((()=>{var t,n;null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)})).catch((()=>{var t,n;null==(t=null==e?void 0:e.fail)||t.call(e,{errorCode:C.unknown}),null==(n=null==e?void 0:e.complete)||n.call(e)}))},setTitle:function(e){var t,n;document.title=(null==e?void 0:e.title)||"",null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)},render:function(e){var t;if(!(null==e?void 0:e.containerId)||!document.getElementById(null==e?void 0:e.containerId))return null==(t=null==e?void 0:e.fail)||t.call(e,{errorCode:C.badRequestInsufficientParameter}),console.error("Invalid container Id");const n=X(),o=t=>{var r,a;if(!$(t.origin)||t.data.name!==g.render||t.data.messageId!==n)return;const i=null==(r=t.data)?void 0:r.data,c=null==(a=t.data)?void 0:a.data;t.data.result===m.success&&(!function(e,t){var n,o,r,a,i,c,l;const d=document.getElementById(t.containerId),u=document.createElement("button");u.className="ppmna-reset-css pp-smartButtonWrapper pp-button";const p=function(e){return"red"===e?T:w}(null==t?void 0:t.theme),m=(null==(o=null==(n=null==e?void 0:e.data)?void 0:n.cashbackInfo)?void 0:o.length)?"pp-cashback":"",f=t.isShortText?"pp-shortText":"",h=null!=(r=null==t?void 0:t.buttonSize)?r:"lg",v=null!=(a=null==t?void 0:t.theme)?a:"light",E=document.createElement("a");E.className=`pp-smartBtn pp-${v} pp-${h} pp-${Y(t.type)} pp-${e.preferredLanguage} ${m} ${f}`,E.href=Y(e.data.loginUrl);const I=document.createElement("span");I.className="pp-leftSection";const y=document.createElement("img");y.className="pp-img",y.src=p,y.alt="",I.appendChild(y);const A=document.createElement("span");A.className="pp-btnContent";const b=document.createElement("span");b.className="pp-title",b.innerText=null==(i=null==e?void 0:e.data)?void 0:i.title,A.appendChild(b),I.appendChild(A),E.append(I);const _=document.createElement("span");(null==(c=null==e?void 0:e.data)?void 0:c.cashbackInfo)&&(_.className="pp-cashbackInfo",_.innerText=null==(l=null==e?void 0:e.data)?void 0:l.cashbackInfo,A.append(_));if(e.data.avatarUrl){const t=document.createElement("img");t.className="pp-userProfile",t.src=e.data.avatarUrl,t.addEventListener("error",(function(e){var t;const n=e.target;null==(t=null==n?void 0:n.parentNode)||t.removeChild(n)})),E.append(t)}u.append(E),d&&(d.innerHTML="",d.appendChild(u),"pay"===t.type&&(null==e?void 0:e.isLoggedIn)&&u.addEventListener("click",(e=>{var n;e.preventDefault(),(null==t?void 0:t.callback)?null==(n=null==t?void 0:t.callback)||n.call(t):t.orderInfo&&ye(g.makePayment,!0,t,s({},t.orderInfo))})))}(c,e),"pay"===i.type&&(null==c?void 0:c.isJustLoggedIn)&&e.autoInvoke&&(null==c?void 0:c.isLoggedIn)&&ye(g.makePayment,!0,e,s({},e.orderInfo))),t.data.result===m.complete&&(Q(t.data.messageId),removeEventListener("message",o))};addEventListener("message",o),Ie({name:g.render,params:c(s({},e),{redirectUrl:e.redirectUrl||window.location.href}),messageId:n})},renderCoupons:fe,scanCode:function(e){var t;const n=c(s({},e),{redirectUrlOnCancel:null!=(t=null==e?void 0:e.redirectUrlOnCancel)?t:window.location.href});ye(g.scanCode,!1,e,n)},copyToClipboard:function(e){var t,n,o;const r=document.createElement("textarea");r.setAttribute("readonly","true"),r.setAttribute("contenteditable","true"),r.value=e.value,document.body.appendChild(r),r.select(),r.setSelectionRange(0,r.value.length);const a=document.execCommand("copy");document.body.removeChild(r),a?null==(t=null==e?void 0:e.success)||t.call(e):null==(n=null==e?void 0:e.fail)||n.call(e,{errorCode:C.other}),null==(o=e.complete)||o.call(e)},getSessionData:function(e){var t,n;const o=sessionStorage.getItem(null==e?void 0:e.key);null==(t=null==e?void 0:e.success)||t.call(e,{[null==e?void 0:e.key]:null!=o?o:""}),null==(n=null==e?void 0:e.complete)||n.call(e)},setSessionData:function(e){var t,n,o;sessionStorage.setItem(null==e?void 0:e.key,null!=(t=null==e?void 0:e.value)?t:""),null==(n=null==e?void 0:e.success)||n.call(e),null==(o=null==e?void 0:e.complete)||o.call(e)},getStorageData:function(e){var t,n;const o=localStorage.getItem(null==e?void 0:e.key);null==(t=null==e?void 0:e.success)||t.call(e,{[null==e?void 0:e.key]:null!=o?o:""}),null==(n=null==e?void 0:e.complete)||n.call(e)},setStorageData:function(e){var t,n,o;localStorage.setItem(null==e?void 0:e.key,null!=(t=null==e?void 0:e.value)?t:""),null==(n=null==e?void 0:e.success)||n.call(e),null==(o=null==e?void 0:e.complete)||o.call(e)},removeStorageData:function(e){var t,n;localStorage.removeItem(null==e?void 0:e.key),null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)},getKycPassportInfo:function(e){const t=window.location.href;ye(g.getKycPassportInfo,!1,e,c(s({},e),{url:t}))},logout:he,getPaymentSettings:ve},{get(e,t){const n=t;if(!ue&&!function(e){return b.includes(e)}(n))throw new Error(`${n} is not supported by Mini Apps JS SDK`);return o=>l(this,null,(function*(){var r,a;if(!Ae.includes(n)&&!(yield de)){if(!be.includes(n)||!o.clientId)return null==(r=o.fail)||r.call(o,{errorCode:C.sdkNotInitialized}),void(null==(a=o.complete)||a.call(o));ge({clientId:o.clientId,env:o.env}),yield de}if(Object.prototype.hasOwnProperty.call(e,n))return e[n](o);ye(t,!1,o,o)}))}});!function(){const e=window._ppcs;if(e){window._ppcs=void 0;for(const[t,n]of e)_e[t](n)}}(),_e.revision="a45fb75";const we=_e;window._pp=we;return we}();
|
|
2
|
+
var pp=function(){"use strict";var e=Object.defineProperty,t=Object.defineProperties,n=Object.getOwnPropertyDescriptors,s=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable,i=(t,n,s)=>n in t?e(t,n,{enumerable:!0,configurable:!0,writable:!0,value:s}):t[n]=s,a=(e,t)=>{for(var n in t||(t={}))o.call(t,n)&&i(e,n,t[n]);if(s)for(var n of s(t))r.call(t,n)&&i(e,n,t[n]);return e},c=(e,s)=>t(e,n(s)),l=(e,t,n)=>new Promise(((s,o)=>{var r=e=>{try{a(n.next(e))}catch(t){o(t)}},i=e=>{try{a(n.throw(e))}catch(t){o(t)}},a=e=>e.done?s(e.value):Promise.resolve(e.value).then(r,i);a((n=n.apply(e,t)).next())}));function d(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var s in n)e[s]=n[s]}return e}var u=function e(t,n){function s(e,s,o){if("undefined"!=typeof document){"number"==typeof(o=d({},n,o)).expires&&(o.expires=new Date(Date.now()+864e5*o.expires)),o.expires&&(o.expires=o.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var r="";for(var i in o)o[i]&&(r+="; "+i,!0!==o[i]&&(r+="="+o[i].split(";")[0]));return document.cookie=e+"="+t.write(s,e)+r}}return Object.create({set:s,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],s={},o=0;o<n.length;o++){var r=n[o].split("="),i=r.slice(1).join("=");try{var a=decodeURIComponent(r[0]);if(s[a]=t.read(i,a),e===a)break}catch(c){}}return e?s[e]:s}},remove:function(e,t){s(e,"",d({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,d({},this.attributes,t))},withConverter:function(t){return e(d({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"}),p=(e=>(e.accessToken="ppjssdk.accessToken",e.refreshToken="ppjssdk.refreshToken",e.env="ppjssdk.env",e.deviceUUID="ppjssdk.deviceUUID",e.clientUUID="ppjssdk.clientUUID",e.lastPayment="ppjssdk.lastPayment",e.lastTopup="ppjssdk.lastTopup",e.appDetail="ppjssdk.appDetail",e.appConfig="ppjssdk.appConfig",e.userInfo="ppjssdk.userInfo",e.lastPaymentMethod="ppjssdk.lastPaymentMethod",e.lastTopupPayMethod="ppjssdk.lastTopupPayMethod",e.codeVerifier="ppjssdk.codeVerifier",e.clientOrigin="ppjssdk.clientOrigin",e.clientVersion="ppjssdk.clientVersion",e.debugMode="ppjssdk.debugMode",e.claimCouponImmediately="ppjssdk.claimCouponImmediately",e.merchant="ppjssdk.merchant",e.consumedOTT="ppjssdk.consumedOTT",e))(p||{});const g={success:"success",fail:"fail",complete:"complete"},h={init:"init",getBankInfo:"getBankInfo",showAlert:"showAlert",render:"render",makePayment:"makePayment",getUAID:"getUAID",logout:"logout",startMultiFactorAuth:"startMultiFactorAuth",verifyMultiFactorAuthResult:"verifyMultiFactorAuthResult",getPermissionStatus:"getPermissionStatus",registerKyc:"registerKyc",getKycInformation:"getKycInformation",getUserAddress:"getUserAddress",getUserLocation:"getUserLocation",getUserProfile:"getUserProfile",registerEmail:"registerEmail",showUpdateWarning:"showUpdateWarning",showErrorSheet:"showErrorSheet",getPlatformInformation:"getPlatformInformation",share:"share",getTopBarHeight:"getTopBarHeight",openWebview:"openWebview",openMap:"openMap",closeApp:"closeApp",openApp:"openApp",checkPaymentMethod:"checkPaymentMethod",getBalance:"getBalance",topup:"topup",registerPaymentFeatures:"registerPaymentFeatures",registerUserInfo:"registerUserInfo",requestInternal:"requestInternal",scanCode:"scanCode",getAuthStatus:"getAuthStatus",openMiniApp:"openMiniApp",inputAddress:"inputAddress",checkAccessToken:"checkAccessToken",getCashbackInformation:"getCashbackInformation",request:"request",getDeviceInformation:"getDeviceInformation",debug:"debug",createOrder:"createOrder",handleMessageFromNative:"handleMessageFromNative",initKycPassport:"initKycPassport",smsAuth:"smsAuth",getKycPassportInfo:"getKycPassportInfo"},m="reload",_="link",f="saveRefreshToken",v="saveCodeVerifier",E="makeVisible",y="consoleDebugInfo",S="clientPopState",b="_PayPayJsBridge",I=["init","openWebview","openMap","closeApp","makePayment","topup","setSessionData","getSessionData","setStorageData","getStorageData","removeStorageData","getPermissionStatus","scanCode","showAlert","showErrorSheet","getTopBarHeight","setTitle","showUpdateWarning","getPlatformInformation","openApp","share","getKycInformation","getUserLocation","checkPaymentMethod","registerKyc","startMultiFactorAuth","verifyMultiFactorAuthResult","getBankInfo","logout","getUserProfile","getBalance","getUserAddress","getUAID","copyToClipboard","registerUserInfo","setEnablePullDownRefresh","registerEmail","checkAccessToken","debug","inputAddress","getDeviceInformation","openMiniApp","request","requestInternal","registerPaymentFeatures","initKycPassport","getKycPassportInfo","shortcutExists","addShortcut","logAppsFlyerEvent","getAllUserAddresses","getUserPaymentFeatureSettings","getPaymentSettings","getTransactionInfo","getTransactions","getPayPayCardInfo","getExternalLinkageInformation"];function T(e){return"https://image.paypay.ne.jp/miniapps/mini-app-sdk/"+e}const A=T("icon-paypay-rec.svg"),k=T("icon-paypay-rec-white.svg"),N="2.22.0",w=new URL("https://mini-app-sdk-core.paypay.ne.jp/"),C=w.origin,P=new URL(`./iframe.html?v=${N}&rev=f6c046f`,w).href,O=new URL(`./coupon/iframe.html?v=${N}`,w).href;var D=(e=>(e.success="SUCCESS",e.invalidUrl="INVALID_URL",e.invalidData="INVALID_DATA",e.invalidHeader="INVALID_HEADER",e.invalidMethod="INVALID_METHOD",e.invalidPath="INVALID_PATH",e.notReachable="NOT_REACHABLE",e.notAvailable="NOT_AVAILABLE",e.timeOut="TIME_OUT",e.whiteListError="NONE_WHITELIST_DOMAIN",e.statusCodeError="STATUS_CODE_ERROR",e.invalidResponse="INVALID_RESPONSE",e.noLocationPermission="NO_USER_LOCATION_PERMISSION",e.noPermissionListAvailable="NO_PERMISSION_LIST_AVAILABLE",e.other="other",e.serverError="SERVER_ERROR",e.noCameraPermission="HOST_APP_CAMERA_DENIED",e.noAlbumPermission="HOST_APP_ALBUM_DENIED",e.insufficientScope="INSUFFICIENT_SCOPE",e.userCanceled="USER_CANCELED",e.invalidJSAPIParams="INVALID_JS_API_PARAMS",e.hostAppLocationDenied="HOST_APP_LOCATION_DENIED",e.hostAppContactsDenied="HOST_APP_READING_CONTACT_DENIED",e.badRequestInsufficientParameter="BAD_REQUEST_INSUFFICIENT_PARAMETER",e.badRequest="BAD_REQUEST",e.paymentFail="PAYMENT_FAIL",e.topupFail="TOPUP_FAIL",e.topupSuccessButNotAddToBalance="TOPUP_SUCCESS_BUT_NOT_ADD_TO_BALANCE",e.userCanceledSimilarTxn="USER_CANCELED_SIMILAR_TRANSACTION",e.mapAppNotFound="MAP_APP_NOT_FOUND",e.invalidAppSchemeURL="INVALID_APP_SCHEME_URL",e.noValueFound="NO_VALUE_FOUND",e.securityNotSetup="SECURITY_NOT_SETUP",e.userDenied="USER_DENIED",e.securityTemporaryLocked="SECURITY_TEMPORARY_LOCKED",e.couldNotGenerateBarcode="COULD_NOT_GENERATE_BARCODE",e.cannotDetectAvailability="CAN_NOT_DETECT_AVAILABILITY",e.suspectedDuplicatePayment="SUSPECTED_DUPLICATE_PAYMENT",e.noSufficientFund="NO_SUFFICIENT_FUND",e.unknown="UNKNOWN",e.sdkNotInitialized="SDK_NOT_INITIALIZED",e.tokenNotFound="TOKEN_NOT_FOUND",e.tokenExpired="TOKEN_EXPIRED",e.activeRequestExists="ACTIVE_REQUEST_EXISTS",e.invalidType="INVALID_TYPE",e.sessionNotFound="SESSION_NOT_FOUND",e.cookieError="COOKIE_ERROR",e.notAuthorized="NOT_AUTHORIZED",e.permissionRequired="PERMISSION_REQUIRED",e.deeplinkUnavailable="DEEPLINK_UNAVAILABLE",e.kycIncompleted="KYC_INCOMPLETED",e.noBankAccount="NO_BANK_ACCOUNT",e.invalidPaymentIdentifier="INVALID_PAYMENT_IDENTIFIER",e.otpSendTooShort="OTP_SEND_TOO_SHORT",e.otpSendOverLimit="OTP_SEND_OVER_LIMIT",e.userVerificationFailure="USER_VERIFICATION_FAILURE",e.unacceptableOp="UNACCEPTABLE_OP",e.kycUpdateRequired="KYC_UPDATE_REQUIRED",e.notCompleted="NOT_COMPLETED",e.kycValidationInProcess="KYC_VALIDATION_IN_PROCESS",e.noLocationData="NO_LOCATION_DATA",e.functionNotFound="FUNCTION_NOT_FOUND",e.originNotAllowed="ORIGIN_NOT_ALLOWED",e.messageSendingFailed="MESSAGE_SENDING_FAILED",e.transactionNotFound="TRANSACTION_NOT_FOUND",e.unexpectedOperation="UNEXPECTED_OP",e.merchantTimeout="MERCHANT_TIMEOUT",e))(D||{});const R=Object.prototype.toString;function x(e){return function(e,t){return R.call(e)===`[object ${t}]`}(e,"Object")}function U(e){return Boolean(e&&e.then&&"function"==typeof e.then)}function L(e){return e&&e.Math==Math?e:void 0}const M="object"==typeof globalThis&&L(globalThis)||"object"==typeof window&&L(window)||"object"==typeof self&&L(self)||"object"==typeof global&&L(global)||function(){return this}()||{};function F(e,t,n){const s=n||M,o=s.__SENTRY__=s.__SENTRY__||{};return o[e]||(o[e]=t())}const B=["debug","info","warn","error","log","assert","trace"],j={};function V(e){if(!("console"in M))return e();const t=M.console,n={},s=Object.keys(j);s.forEach((e=>{const s=j[e];n[e]=t[e],t[e]=s}));try{return e()}finally{s.forEach((e=>{t[e]=n[e]}))}}const q=function(){let e=!1;const t={enable:()=>{e=!0},disable:()=>{e=!1},isEnabled:()=>e};return"undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__?B.forEach((n=>{t[n]=(...t)=>{e&&V((()=>{M.console[n](`Sentry Logger [${n}]:`,...t)}))}})):B.forEach((e=>{t[e]=()=>{}})),t}();function $(e){return Y(e,new Map)}function Y(e,t){if(x(e)){const n=t.get(e);if(void 0!==n)return n;const s={};t.set(e,s);for(const o of Object.keys(e))void 0!==e[o]&&(s[o]=Y(e[o],t));return s}if(Array.isArray(e)){const n=t.get(e);if(void 0!==n)return n;const s=[];return t.set(e,s),e.forEach((e=>{s.push(Y(e,t))})),s}return e}function W(){const e=M,t=e.crypto||e.msCrypto;let n=()=>16*Math.random();try{if(t&&t.randomUUID)return t.randomUUID().replace(/-/g,"");t&&t.getRandomValues&&(n=()=>t.getRandomValues(new Uint8Array(1))[0])}catch(s){}return([1e7]+1e3+4e3+8e3+1e11).replace(/[018]/g,(e=>(e^(15&n())>>e/4).toString(16)))}var H;!function(e){e[e.PENDING=0]="PENDING";e[e.RESOLVED=1]="RESOLVED";e[e.REJECTED=2]="REJECTED"}(H||(H={}));class K{constructor(e){K.prototype.__init.call(this),K.prototype.__init2.call(this),K.prototype.__init3.call(this),K.prototype.__init4.call(this),this._state=H.PENDING,this._handlers=[];try{e(this._resolve,this._reject)}catch(t){this._reject(t)}}then(e,t){return new K(((n,s)=>{this._handlers.push([!1,t=>{if(e)try{n(e(t))}catch(o){s(o)}else n(t)},e=>{if(t)try{n(t(e))}catch(o){s(o)}else s(e)}]),this._executeHandlers()}))}catch(e){return this.then((e=>e),e)}finally(e){return new K(((t,n)=>{let s,o;return this.then((t=>{o=!1,s=t,e&&e()}),(t=>{o=!0,s=t,e&&e()})).then((()=>{o?n(s):t(s)}))}))}__init(){this._resolve=e=>{this._setResult(H.RESOLVED,e)}}__init2(){this._reject=e=>{this._setResult(H.REJECTED,e)}}__init3(){this._setResult=(e,t)=>{this._state===H.PENDING&&(U(t)?t.then(this._resolve,this._reject):(this._state=e,this._value=t,this._executeHandlers()))}}__init4(){this._executeHandlers=()=>{if(this._state===H.PENDING)return;const e=this._handlers.slice();this._handlers=[],e.forEach((e=>{e[0]||(this._state===H.RESOLVED&&e[1](this._value),this._state===H.REJECTED&&e[2](this._value),e[0]=!0)}))}}}const z=M,G={nowSeconds:()=>Date.now()/1e3};const J="undefined"!=typeof __SENTRY_BROWSER_BUNDLE__&&__SENTRY_BROWSER_BUNDLE__||"[object process]"!==Object.prototype.toString.call("undefined"!=typeof process?process:0)?function(){const{performance:e}=z;if(!e||!e.now)return;return{now:()=>e.now(),timeOrigin:Date.now()-e.now()}}():function(){try{return(e=module,t="perf_hooks",e.require(t)).performance}catch(n){return}var e,t}(),Q=void 0===J?G:{nowSeconds:()=>(J.timeOrigin+J.now())/1e3},X=G.nowSeconds.bind(G),Z=Q.nowSeconds.bind(Q);(()=>{const{performance:e}=z;if(!e||!e.now)return;const t=36e5,n=e.now(),s=Date.now(),o=e.timeOrigin?Math.abs(e.timeOrigin+n-s):t,r=o<t,i=e.timing&&e.timing.navigationStart,a="number"==typeof i?Math.abs(i+n-s):t;(r||a<t)&&(o<=a&&e.timeOrigin)})();const ee="production";function te(e,t,n,s=0){return new K(((o,r)=>{const i=e[s];if(null===t||"function"!=typeof i)o(t);else{const c=i(a({},t),n);("undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__)&&i.id&&null===c&&q.log(`Event processor "${i.id}" dropped event`),U(c)?c.then((t=>te(e,t,n,s+1).then(o))).then(null,r):te(e,c,n,s+1).then(o).then(null,r)}}))}function ne(e){const t=Z(),n={sid:W(),init:!0,timestamp:t,started:t,duration:0,status:"ok",errors:0,ignoreDuration:!1,toJSON:()=>function(e){return $({sid:`${e.sid}`,init:e.init,started:new Date(1e3*e.started).toISOString(),timestamp:new Date(1e3*e.timestamp).toISOString(),status:e.status,errors:e.errors,did:"number"==typeof e.did||"string"==typeof e.did?`${e.did}`:void 0,duration:e.duration,abnormal_mechanism:e.abnormal_mechanism,attrs:{release:e.release,environment:e.environment,ip_address:e.ipAddress,user_agent:e.userAgent}})}(n)};return e&&se(n,e),n}function se(e,t={}){if(t.user&&(!e.ipAddress&&t.user.ip_address&&(e.ipAddress=t.user.ip_address),e.did||t.did||(e.did=t.user.id||t.user.email||t.user.username)),e.timestamp=t.timestamp||Z(),t.abnormal_mechanism&&(e.abnormal_mechanism=t.abnormal_mechanism),t.ignoreDuration&&(e.ignoreDuration=t.ignoreDuration),t.sid&&(e.sid=32===t.sid.length?t.sid:W()),void 0!==t.init&&(e.init=t.init),!e.did&&t.did&&(e.did=`${t.did}`),"number"==typeof t.started&&(e.started=t.started),e.ignoreDuration)e.duration=void 0;else if("number"==typeof t.duration)e.duration=t.duration;else{const t=e.timestamp-e.started;e.duration=t>=0?t:0}t.release&&(e.release=t.release),t.environment&&(e.environment=t.environment),!e.ipAddress&&t.ipAddress&&(e.ipAddress=t.ipAddress),!e.userAgent&&t.userAgent&&(e.userAgent=t.userAgent),"number"==typeof t.errors&&(e.errors=t.errors),t.status&&(e.status=t.status)}class oe{constructor(){this._notifyingListeners=!1,this._scopeListeners=[],this._eventProcessors=[],this._breadcrumbs=[],this._attachments=[],this._user={},this._tags={},this._extra={},this._contexts={},this._sdkProcessingMetadata={},this._propagationContext=re()}static clone(e){const t=new oe;return e&&(t._breadcrumbs=[...e._breadcrumbs],t._tags=a({},e._tags),t._extra=a({},e._extra),t._contexts=a({},e._contexts),t._user=e._user,t._level=e._level,t._span=e._span,t._session=e._session,t._transactionName=e._transactionName,t._fingerprint=e._fingerprint,t._eventProcessors=[...e._eventProcessors],t._requestSession=e._requestSession,t._attachments=[...e._attachments],t._sdkProcessingMetadata=a({},e._sdkProcessingMetadata),t._propagationContext=a({},e._propagationContext)),t}addScopeListener(e){this._scopeListeners.push(e)}addEventProcessor(e){return this._eventProcessors.push(e),this}setUser(e){return this._user=e||{},this._session&&se(this._session,{user:e}),this._notifyScopeListeners(),this}getUser(){return this._user}getRequestSession(){return this._requestSession}setRequestSession(e){return this._requestSession=e,this}setTags(e){return this._tags=a(a({},this._tags),e),this._notifyScopeListeners(),this}setTag(e,t){return this._tags=c(a({},this._tags),{[e]:t}),this._notifyScopeListeners(),this}setExtras(e){return this._extra=a(a({},this._extra),e),this._notifyScopeListeners(),this}setExtra(e,t){return this._extra=c(a({},this._extra),{[e]:t}),this._notifyScopeListeners(),this}setFingerprint(e){return this._fingerprint=e,this._notifyScopeListeners(),this}setLevel(e){return this._level=e,this._notifyScopeListeners(),this}setTransactionName(e){return this._transactionName=e,this._notifyScopeListeners(),this}setContext(e,t){return null===t?delete this._contexts[e]:this._contexts[e]=t,this._notifyScopeListeners(),this}setSpan(e){return this._span=e,this._notifyScopeListeners(),this}getSpan(){return this._span}getTransaction(){const e=this.getSpan();return e&&e.transaction}setSession(e){return e?this._session=e:delete this._session,this._notifyScopeListeners(),this}getSession(){return this._session}update(e){if(!e)return this;if("function"==typeof e){const t=e(this);return t instanceof oe?t:this}return e instanceof oe?(this._tags=a(a({},this._tags),e._tags),this._extra=a(a({},this._extra),e._extra),this._contexts=a(a({},this._contexts),e._contexts),e._user&&Object.keys(e._user).length&&(this._user=e._user),e._level&&(this._level=e._level),e._fingerprint&&(this._fingerprint=e._fingerprint),e._requestSession&&(this._requestSession=e._requestSession),e._propagationContext&&(this._propagationContext=e._propagationContext)):x(e)&&(this._tags=a(a({},this._tags),e.tags),this._extra=a(a({},this._extra),e.extra),this._contexts=a(a({},this._contexts),e.contexts),e.user&&(this._user=e.user),e.level&&(this._level=e.level),e.fingerprint&&(this._fingerprint=e.fingerprint),e.requestSession&&(this._requestSession=e.requestSession),e.propagationContext&&(this._propagationContext=e.propagationContext)),this}clear(){return this._breadcrumbs=[],this._tags={},this._extra={},this._user={},this._contexts={},this._level=void 0,this._transactionName=void 0,this._fingerprint=void 0,this._requestSession=void 0,this._span=void 0,this._session=void 0,this._notifyScopeListeners(),this._attachments=[],this._propagationContext=re(),this}addBreadcrumb(e,t){const n="number"==typeof t?t:100;if(n<=0)return this;const s=a({timestamp:X()},e),o=this._breadcrumbs;return o.push(s),this._breadcrumbs=o.length>n?o.slice(-n):o,this._notifyScopeListeners(),this}getLastBreadcrumb(){return this._breadcrumbs[this._breadcrumbs.length-1]}clearBreadcrumbs(){return this._breadcrumbs=[],this._notifyScopeListeners(),this}addAttachment(e){return this._attachments.push(e),this}getAttachments(){return this._attachments}clearAttachments(){return this._attachments=[],this}applyToEvent(e,t={},n){if(this._extra&&Object.keys(this._extra).length&&(e.extra=a(a({},this._extra),e.extra)),this._tags&&Object.keys(this._tags).length&&(e.tags=a(a({},this._tags),e.tags)),this._user&&Object.keys(this._user).length&&(e.user=a(a({},this._user),e.user)),this._contexts&&Object.keys(this._contexts).length&&(e.contexts=a(a({},this._contexts),e.contexts)),this._level&&(e.level=this._level),this._transactionName&&(e.transaction=this._transactionName),this._span){e.contexts=a({trace:this._span.getTraceContext()},e.contexts);const t=this._span.transaction;if(t){e.sdkProcessingMetadata=a({dynamicSamplingContext:t.getDynamicSamplingContext()},e.sdkProcessingMetadata);const n=t.name;n&&(e.tags=a({transaction:n},e.tags))}}this._applyFingerprint(e);const s=this._getBreadcrumbs(),o=[...e.breadcrumbs||[],...s];return e.breadcrumbs=o.length>0?o:void 0,e.sdkProcessingMetadata=c(a(a({},e.sdkProcessingMetadata),this._sdkProcessingMetadata),{propagationContext:this._propagationContext}),te([...n||[],...F("globalEventProcessors",(()=>[])),...this._eventProcessors],e,t)}setSDKProcessingMetadata(e){return this._sdkProcessingMetadata=a(a({},this._sdkProcessingMetadata),e),this}setPropagationContext(e){return this._propagationContext=e,this}getPropagationContext(){return this._propagationContext}_getBreadcrumbs(){return this._breadcrumbs}_notifyScopeListeners(){this._notifyingListeners||(this._notifyingListeners=!0,this._scopeListeners.forEach((e=>{e(this)})),this._notifyingListeners=!1)}_applyFingerprint(e){var t;e.fingerprint=e.fingerprint?(t=e.fingerprint,Array.isArray(t)?t:[t]):[],this._fingerprint&&(e.fingerprint=e.fingerprint.concat(this._fingerprint)),e.fingerprint&&!e.fingerprint.length&&delete e.fingerprint}}function re(){return{traceId:W(),spanId:W().substring(16)}}const ie=4,ae=100;class ce{constructor(e,t=new oe,n=ie){this._version=n,this._stack=[{scope:t}],e&&this.bindClient(e)}isOlderThan(e){return this._version<e}bindClient(e){this.getStackTop().client=e,e&&e.setupIntegrations&&e.setupIntegrations()}pushScope(){const e=oe.clone(this.getScope());return this.getStack().push({client:this.getClient(),scope:e}),e}popScope(){return!(this.getStack().length<=1)&&!!this.getStack().pop()}withScope(e){const t=this.pushScope();try{e(t)}finally{this.popScope()}}getClient(){return this.getStackTop().client}getScope(){return this.getStackTop().scope}getStack(){return this._stack}getStackTop(){return this._stack[this._stack.length-1]}captureException(e,t){const n=this._lastEventId=t&&t.event_id?t.event_id:W(),s=new Error("Sentry syntheticException");return this._withClient(((o,r)=>{o.captureException(e,c(a({originalException:e,syntheticException:s},t),{event_id:n}),r)})),n}captureMessage(e,t,n){const s=this._lastEventId=n&&n.event_id?n.event_id:W(),o=new Error(e);return this._withClient(((r,i)=>{r.captureMessage(e,t,c(a({originalException:e,syntheticException:o},n),{event_id:s}),i)})),s}captureEvent(e,t){const n=t&&t.event_id?t.event_id:W();return e.type||(this._lastEventId=n),this._withClient(((s,o)=>{s.captureEvent(e,c(a({},t),{event_id:n}),o)})),n}lastEventId(){return this._lastEventId}addBreadcrumb(e,t){const{scope:n,client:s}=this.getStackTop();if(!s)return;const{beforeBreadcrumb:o=null,maxBreadcrumbs:r=ae}=s.getOptions&&s.getOptions()||{};if(r<=0)return;const i=X(),c=a({timestamp:i},e),l=o?V((()=>o(c,t))):c;null!==l&&(s.emit&&s.emit("beforeAddBreadcrumb",l,t),n.addBreadcrumb(l,r))}setUser(e){this.getScope().setUser(e)}setTags(e){this.getScope().setTags(e)}setExtras(e){this.getScope().setExtras(e)}setTag(e,t){this.getScope().setTag(e,t)}setExtra(e,t){this.getScope().setExtra(e,t)}setContext(e,t){this.getScope().setContext(e,t)}configureScope(e){const{scope:t,client:n}=this.getStackTop();n&&e(t)}run(e){const t=de(this);try{e(this)}finally{de(t)}}getIntegration(e){const t=this.getClient();if(!t)return null;try{return t.getIntegration(e)}catch(n){return("undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__)&&q.warn(`Cannot retrieve integration ${e.id} from the current Hub`),null}}startTransaction(e,t){const n=this._callExtensionMethod("startTransaction",e,t);if(("undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__)&&!n){this.getClient()?console.warn("Tracing extension 'startTransaction' has not been added. Call 'addTracingExtensions' before calling 'init':\nSentry.addTracingExtensions();\nSentry.init({...});\n"):console.warn("Tracing extension 'startTransaction' is missing. You should 'init' the SDK before calling 'startTransaction'")}return n}traceHeaders(){return this._callExtensionMethod("traceHeaders")}captureSession(e=!1){if(e)return this.endSession();this._sendSessionUpdate()}endSession(){const e=this.getStackTop().scope,t=e.getSession();t&&function(e,t){let n={};t?n={status:t}:"ok"===e.status&&(n={status:"exited"}),se(e,n)}(t),this._sendSessionUpdate(),e.setSession()}startSession(e){const{scope:t,client:n}=this.getStackTop(),{release:s,environment:o=ee}=n&&n.getOptions()||{},{userAgent:r}=M.navigator||{},i=ne(a(a({release:s,environment:o,user:t.getUser()},r&&{userAgent:r}),e)),c=t.getSession&&t.getSession();return c&&"ok"===c.status&&se(c,{status:"exited"}),this.endSession(),t.setSession(i),i}shouldSendDefaultPii(){const e=this.getClient(),t=e&&e.getOptions();return Boolean(t&&t.sendDefaultPii)}_sendSessionUpdate(){const{scope:e,client:t}=this.getStackTop(),n=e.getSession();n&&t&&t.captureSession&&t.captureSession(n)}_withClient(e){const{scope:t,client:n}=this.getStackTop();n&&e(n,t)}_callExtensionMethod(e,...t){const n=le().__SENTRY__;if(n&&n.extensions&&"function"==typeof n.extensions[e])return n.extensions[e].apply(this,t);("undefined"==typeof __SENTRY_DEBUG__||__SENTRY_DEBUG__)&&q.warn(`Extension method ${e} couldn't be found, doing nothing.`)}}function le(){return M.__SENTRY__=M.__SENTRY__||{extensions:{},hub:void 0},M}function de(e){const t=le(),n=pe(t);return ge(t,e),n}function ue(){const e=le();if(e.__SENTRY__&&e.__SENTRY__.acs){const t=e.__SENTRY__.acs.getCurrentHub();if(t)return t}return function(e=le()){t=e,t&&t.__SENTRY__&&t.__SENTRY__.hub&&!pe(e).isOlderThan(ie)||ge(e,new ce);var t;return pe(e)}(e)}function pe(e){return F("hub",(()=>new ce),e)}function ge(e,t){if(!e)return!1;return(e.__SENTRY__=e.__SENTRY__||{}).hub=t,!0}const he=[D.sdkNotInitialized,D.notAuthorized,D.userCanceled,D.userCanceledSimilarTxn,D.suspectedDuplicatePayment,D.noSufficientFund];function me(e,t,n){he.includes(n)||function(e,t){const n="string"==typeof t?t:void 0,s="string"!=typeof t?{captureContext:t}:void 0;ue().captureMessage(e,n,s)}(`windowBridge.${e} failed. client: unknown, error: ${n}, message: ${t}`,"log")}let _e;!function(){try{return localStorage.getItem("ppjssdk.canWriteToLocalStorage"),!0}catch(e){return console.log(e),!1}}();const fe=["ab.ca","ac.ac","ac.ae","ac.at","ac.be","ac.cn","ac.il","ac.in","ac.jp","ac.kr","ac.th","ac.uk","ac.sg","ad.jp","adm.br","adv.br","ah.cn","am.br","arq.br","art.br","arts.ro","asn.au","asso.fr","asso.mc","bc.ca","bio.br","biz.pl","biz.tr","bj.cn","bel.tr","br.com","cn.com","cng.br","cnt.br","co.ac","co.at","co.de","co.gl","co.hk","co.id","co.il","co.in","co.jp","co.kr","co.mg","co.ms","co.nz","co.th","cp.tz","co.uk","co.ve","co.vi","co.za","com.ag","com.ai","com.ar","com.au","com.br","com.co","com.cn","com.cy","com.de","com.do","com.ec","com.es","com.fj","com.fr","com.gl","com.gt","com.hk","com.hr","com.hu","com.kg","com.ki","com.lc","com.mg","com.mm","com.ms","com.mt","com.mu","com.mx","com.my","com.na","com.nf","com.ng","com.ni","com.pa","com.ph","com.pl","com.pt","com.qa","com.ro","com.ru","com.sb","com.sc","com.sg","com.sv","com.tr","com.tw","com.ua","com.uy","com.ve","com.vn","cq.cn","de.com","de.org","ecn.br","ed.jp","edu.au","edu.cn","edu.hk","edu.mm","edu.my","edu.pl","edu.pt","edu.qa","edu.sg","edu.tr","edu.tw","eng.br","ernet.in","esp.br","etc.br","eti.br","eu.com","eu.int","eu.lv","firm.in","firm.ro","fm.br","fot.br","fst.br","g12.br","gb.com","gb.net","gd.cn","gen.in","go.jp","go.kr","go.th","gov.au","gov.az","gov.br","gov.cn","gov.il","gov.in","gov.mm","gov.my","gov.qa","gov.sg","gov.tr","gov.tw","gov.uk","govt.nz","gr.jp","gs.cn","gv.ac","gv.at","gx.cn","gz.cn","he.cn","hi.cn","hk.cn","hl.cn","hu.com","id.au","idv.tw","in.ua","in.th","ind.br","ind.in","inf.br","info.pl","info.ro","info.tr","info.ve","iwi.nz","jl.cn","jor.br","js.cn","jus.br","k12.il","k12.tr","kr.com","lel.br","lg.jp","ln.cn","ltd.uk","mb.ca","me.uk","med.br","mi.th","mil.br","mil.uk","mo.cn","mod.uk","muni.il","nb.ca","ne.jp","ne.kr","net.ag","net.ai","net.au","net.br","net.cn","net.do","net.gl","net.hk","net.il","net.in","net.kg","net.ki","net.lc","net.mg","net.mm","net.mu","net.ni","net.nz","net.pl","net.ru","net.sb","net.sc","net.sg","net.th","net.tr","net.tw","net.uk","net.ve","nf.ca","nhs.uk","nm.cn","nm.kr","no.com","nom.br","nom.ni","nom.ro","ns.ca","nt.ca","nt.ro","ntr.br","nx.cn","odo.br","off.ai","on.ca","or.ac","or.at","or.jp","or.kr","or.th","org.ag","org.ai","org.au","org.br","org.cn","org.do","org.es","org.gl","org.hk","org.in","org.kg","org.ki","org.lc","org.mg","org.mm","org.ms","org.nf","org.ng","org.ni","org.nz","org.pl","org.ro","org.ru","org.sb","org.sc","org.sg","org.tr","org.tw","org.uk","org.ve","pe.ca","plc.uk","ppg.br","pro.br","psc.br","psi.br","qc.ca","qc.com","qh.cn","rec.br","rec.ro","res.in","sa.com","sc.cn","sch.uk","se.com","se.net","sh.cn","sk.ca","slg.br","sn.cn","store.ro","tj.cn","tm.fr","tm.mc","tm.ro","tmp.br","tur.br","tv.br","tv.tr","tw.cn","uk.com","uk.net","us.com","uy.com","vet.br","waw.pl","web.ve","www.ro","xj.cn","xz.cn","yk.ca","yn.cn","zj.cn","zlg.br"];function ve(e,t){return e?function(e){const t=e.split(".");if(function(e){return/(^\s*(((\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5])\.){3}(\d|[1-9]\d|1\d{2}|2[0-4]\d|25[0-5]))\s*$)/.test(e)}(n=e)||function(e){return/(^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$)/.test(e)}(n)||t.length<=2)return e;var n;const s=t.slice(t.length-2).join(".");return fe.includes(s)&&t.length>=3?t.slice(t.length-3).join("."):t.slice(t.length-2).join(".")}(t):t}function Ee(){return Math.random().toString(36).substring(7)}function ye(e){var t,n;const s=null!=(n=null!=(t=null==e?void 0:e.clientId)?t:_e)?n:"",o=(null==e?void 0:e.featureName)?`_${null==e?void 0:e.featureName}`:"";return`${(null==e?void 0:e.sdkType)?e.sdkType:navigator.userAgent.includes("PayPayMiniApp/")?"miniapp":"smartpayment"}_${s}${o}`}function Se(e){return e===C}function be(e){return e?String(e):""}function Ie(e,t){u.remove(e),u.remove(e,{domain:t})}D.notAuthorized,D.badRequest,D.badRequestInsufficientParameter,D.insufficientScope,D.insufficientScope;let Te=[];function Ae(e){Te=Te.filter((t=>t!==e))}function ke(){const e=Ee();return Te.push(e),e}function Ne(e,t,n,s){return function(o={}){const r=n(),i=null==s?void 0:s(o);r.logEvent(a({event_action:`pp_${e}_called`,event_category:ye({featureName:e})},i)),t(o).then((t=>{var n;r.logEvent(a({event_action:`pp_${e}_success`,event_category:ye({featureName:e})},i)),null==(n=o.success)||n.call(o,t)})).catch((t=>{var n;console.error(t.message),r.logEvent(a({event_action:`pp_${e}_fail`,event_category:ye({featureName:e}),error_value:t.errorCode},i)),null==(n=o.fail)||n.call(o,{errorCode:t.errorCode})})).finally((()=>{var e;null==(e=o.complete)||e.call(o)}))}}class we extends Error{constructor(e,t){super(e),this.errorCode=t}}class Ce{constructor(e,t){this.deferredCallbacks={},this.functions=e,this.allowedOrigins=t,this.messageEventHandler=this.messageEventHandler.bind(this),this.subscribeToMessageEvent()}subscribeToMessageEvent(){window.addEventListener("message",this.messageEventHandler)}unsubscribeToMessageEvent(){window.removeEventListener("message",this.messageEventHandler)}messageEventHandler(e){var t;if(null==(t=e.data)?void 0:t.forWindowBridge)return this.allowedOrigins&&!this.allowedOrigins.includes(e.origin)?this.sendErrorResponse(e,`${e.origin} is not allowed to make requests`,D.originNotAllowed):void("request"===e.data.type?this.handleRequest(e):"response"===e.data.type&&this.handleResponse(e))}handleRequest(e){return l(this,null,(function*(){const t=e.data.functionName,n=this.functions[t];n||this.sendErrorResponse(e,`Function '${t}' does not exists on the target window`,D.functionNotFound);try{const t={clientOrigin:e.origin};this.sendSuccessResponse(e,yield n(...e.data.params,t))}catch(s){let t="Some error ocurred while processing the request",n=D.unknown;s instanceof we&&(t=s.message,n=s.errorCode),this.sendErrorResponse(e,t,n)}}))}handleResponse(e){if(!this.deferredCallbacks[e.data.key])return void console.warn(`Callback for ${e.data.functionName} not found`);const[t,n]=this.deferredCallbacks[e.data.key];delete this.deferredCallbacks[e.data.key],"success"===e.data.status?t(e.data.result):n(new we(e.data.message,e.data.errorCode))}sendErrorResponse(e,t,n){me(e.data.functionName,t,n),this.sendResponse(e,{status:"failure",message:t,errorCode:n})}sendSuccessResponse(e,t){this.sendResponse(e,{status:"success",result:t})}sendResponse(e,t){var n;null==(n=e.source)||n.postMessage(a({forWindowBridge:!0,type:"response",key:e.data.key,functionName:e.data.functionName},t),e.origin)}static init(e,t){if(this._instance)throw new Error("WindowBridge already initialized, you can't call WindowBridge.init more than once");return this._instance=new this(e,t),this._instance}static destroy(){this._instance&&(this._instance.unsubscribeToMessageEvent(),this._instance=void 0)}static getBridge(){if(!this._instance)throw new Error("WindowBridge not initialized, please call WindowBridge.init before calling WindowBridge.getBridge");return this._instance}static getTargetWindowFunctionProxy(e,t){return Ce.getBridge().getTargetWindowFunctionProxy(e,t)}getTargetWindowFunctionProxy(e,t){return new Proxy(this,{get(n,s){return(...o)=>new Promise(((r,i)=>l(this,null,(function*(){const a=s.toString(),c=`${a}--${Ee()}`;try{const s=yield e();if(!s)throw new Error("Target window is undefined");n.deferredCallbacks[c]=[r,i],s.postMessage({forWindowBridge:!0,type:"request",functionName:a,key:c,params:JSON.parse(JSON.stringify(o))},t)}catch(l){delete n.deferredCallbacks[c],i(new we(l.message,D.messageSendingFailed))}}))))}})}}var Pe=(e=>(e.validToken="TOKEN_VALID",e.initialized="INITIALIZED",e.emailRegistered="EMAIL_REGISTERED",e.emailNotVerified="EMAIL_NOT_VERIFIED",e.success="SUCCESS",e.loggedOut="LOGGED_OUT",e.connected="CONNECTED",e))(Pe||{});const Oe="ppmna-iframe",De="ppsdk-container";let Re,xe;function Ue(){return Re||(Re=function(){if(document.getElementById(Oe))return;const e=document.createElement("div");return document.createElement("div"),e.setAttribute("id",De),e.setAttribute("class",De),e.style.all="initial",e.style.display="none",e.style.position="fixed",e.style.width="100%",e.style.height="100%",e.style.top="0",e.style.left="0",e.style.zIndex="2147483637",document.body.appendChild(e),e}()),Re}function Le(e){const t=Ue();t&&(t.style.display=e?"initial":"none")}function Me(){return xe||(xe=new Promise(((e,t)=>{function n(){const n=document.createElement("iframe");n.setAttribute("src",P),n.setAttribute("name",Oe),n.setAttribute("id",Oe),n.setAttribute("class",Oe),n.setAttribute("allow","geolocation"),n.onload=()=>{e(n)},n.onerror=t,n.style.all="initial",n.style.width="100%",n.style.height="100%",n.style.border="none";const s=Ue();s&&(s.innerHTML="",s.append(n))}"loading"===document.readyState?document.addEventListener("DOMContentLoaded",(()=>{n()})):n()}))),xe}let Fe,Be=!1;Ce.init({}),Me();const je=Ce.getTargetWindowFunctionProxy((function(){return Me().then((e=>null==e?void 0:e.contentWindow)).catch((()=>null))}),C);function Ve(){return je}function qe(e){const t=new URL(window.location.href),n=t.searchParams.get("token"),s=t.searchParams.get("one_time_token"),o=u.get(p.refreshToken)||"",r=u.get(p.codeVerifier)||"";Be=!!e.useAllFunctions,(n||s)&&function(e){e.searchParams.delete("token"),e.searchParams.delete("one_time_token"),e.search=e.searchParams.toString();const t=e.toString().replace(e.origin,"");history.replaceState(null,"",t)}(t);const i={env:e.env,mode:e.mode,debugMode:e.debugMode,clientId:e.clientId,token:n,ott:s,refreshToken:o,clientVersion:"2.22.0",codeVerifier:r};let l;Fe=new Promise((e=>l=e));const d=()=>{var t;l(!0),null==(t=e.complete)||t.call(e)};Me().then((()=>{Ge(h.init,!1,c(a({},e),{complete:d}),i)})).catch((()=>{var t;null==(t=e.fail)||t.call(e,{errorCode:D.sdkNotInitialized}),d()}))}addEventListener("message",(e=>{var t;if(!(null==(t=e.data)?void 0:t.forWindowBridge)&&Se(e.origin))if(e.data.name===m&&window.location.reload(),e.data.name!==E){if(e.data.name===_){const t=e.data.data;"_blank"===t.target?window.open(t.url,"_blank"):window.location.href=t.url}if(e.data.name===f){const{refreshToken:t,domain:n,isSecure:s}=e.data.data;!function(e,t,n){Ie(p.refreshToken,t),u.set(p.refreshToken,e,{domain:t,expires:90,secure:n})}(t,n,s)}if(e.data.name===v){const{codeVerifier:t,domain:n,isSecure:s}=e.data.data;!function(e,t,n){Ie(p.codeVerifier,t),u.set(p.codeVerifier,e,{domain:t,secure:n})}(t,n,s)}if(e.data.name===y){const{params:t}=e.data.data;!function(e){console.debug(...e)}(t)}}else Le(!0)})),addEventListener("popstate",(()=>{Me().then((e=>{var t;const n={name:S};null==(t=null==e?void 0:e.contentWindow)||t.postMessage(n,C)})).catch((e=>console.warn(e)))}));const $e=Ne("renderCoupons",(e=>l(this,null,(function*(){const{merchant:t,couponId:n,containerId:s,postLoginRedirectUrl:o=window.location.href,postLoginRedirectType:r,locale:i}=e,a=document.getElementById(s);if(!a)throw new we("Invalid coupon container Id",D.badRequestInsufficientParameter);const c=yield je.fetchCoupons({merchantId:t,couponId:n,postLoginRedirectUrl:o,postLoginRedirectType:r});try{const e=document.createElement("iframe");e.src=O,e.style.cssText="width:100%;height: 0;border: none;transition: height 300ms ease-in;display: block;",yield new Promise(((t,n)=>{e.onload=()=>t(!0),e.onerror=()=>n(!1),a.innerHTML="",a.append(e)})),e.onload=null,e.onerror=null,window.addEventListener("message",(({data:t,source:n})=>{"update-iframe-height"===(null==t?void 0:t.eventName)&&e.contentWindow===n&&(e.style.height=`${t.height}px`)}));const n=Ce.getTargetWindowFunctionProxy((()=>e.contentWindow),C);yield n.renderCoupons({coupons:c,merchantId:t,locale:i})}catch(l){throw new we(`An error ocurred while displaying coupons, merchantId=${t}, couponId=${n}, error=${l}`,D.unknown)}}))),Ve,(e=>({event_label2:e.couponId,merchant_id:e.merchant})));const Ye=Ne("logout",(()=>l(this,null,(function*(){try{const e=ve(yield je.logout(),window.location.hostname);return Ie(p.refreshToken,e),Ie(p.codeVerifier,e),{statusCode:Pe.loggedOut}}catch(e){throw new we(`An error ocurred while trying to logout the user, error=${e}`,D.unknown)}}))),Ve),We=Ne("getPaymentSettings",je.getPaymentSettings,Ve),He=Ne("getLoginUrl",(e=>je.getLoginUrl({redirectUrl:e.redirectUrl||location.href,redirectType:e.redirectType})),Ve);function Ke(e,t,n){var s,o,r;e.result===g.fail&&(null==(s=null==t?void 0:t.fail)||s.call(t,e.data)),e.result===g.success&&(null==(o=null==t?void 0:t.success)||o.call(t,null==e?void 0:e.data)),e.result===g.complete&&(null==(r=null==t?void 0:t.complete)||r.call(t),removeEventListener("message",n),Ae(e.messageId),Te.length>0||Le(!1))}function ze(e){return l(this,null,(function*(){var t;const n=yield Me().catch((()=>{}));null==(t=null==n?void 0:n.contentWindow)||t.postMessage(JSON.parse(JSON.stringify(e)),C)}))}function Ge(e,t,n,s){const o=ke();t&&Le(!0);const r=t=>{Se(t.origin)&&t.data.name===e&&t.data.messageId===o&&Ke(t.data,n,r)};addEventListener("message",r),ze({name:e,params:s,messageId:o})}!function(e){const t=window;(!t.hasOwnProperty(b)||t[b]!==e)&&(t[b]=e)}({_handleMessageFromNative:e=>{Me().then((t=>{var n;null==(n=null==t?void 0:t.contentWindow)||n.postMessage(JSON.parse(JSON.stringify({name:h.handleMessageFromNative,params:{json:e}})),C)}))}});const Je=["init","setTitle","copyToClipboard","getSessionData","setSessionData","getStorageData","setStorageData","removeStorageData","getLoginUrl"],Qe=["renderCoupons"],Xe=new Proxy({init:qe,verifyMultiFactorAuthResult:function(e){const t=new URL(window.location.href);Ge(h.verifyMultiFactorAuthResult,!1,e,c(a({},e),{sessionId:t.searchParams.get("ppSessionId")}))},share:function(e){if(!(null==navigator?void 0:navigator.share))return void Ge(h.share,!1,e,e);const t={text:null==e?void 0:e.text};navigator.share(t).then((()=>{var t,n;null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)})).catch((()=>{var t,n;null==(t=null==e?void 0:e.fail)||t.call(e,{errorCode:D.unknown}),null==(n=null==e?void 0:e.complete)||n.call(e)}))},setTitle:function(e){var t,n;document.title=(null==e?void 0:e.title)||"",null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)},render:function(e){var t;if(!(null==e?void 0:e.containerId)||!document.getElementById(null==e?void 0:e.containerId))return null==(t=null==e?void 0:e.fail)||t.call(e,{errorCode:D.badRequestInsufficientParameter}),console.error("Invalid container Id");const n=ke(),s=t=>{var o,r;if(!Se(t.origin)||t.data.name!==h.render||t.data.messageId!==n)return;const i=null==(o=t.data)?void 0:o.data,c=null==(r=t.data)?void 0:r.data;t.data.result===g.success&&(!function(e,t){var n,s,o,r,i,c,l;const d=document.getElementById(t.containerId),u=document.createElement("button");u.className="ppmna-reset-css pp-smartButtonWrapper pp-button";const p=function(e){return"red"===e?k:A}(null==t?void 0:t.theme),g=(null==(s=null==(n=null==e?void 0:e.data)?void 0:n.cashbackInfo)?void 0:s.length)?"pp-cashback":"",m=t.isShortText?"pp-shortText":"",_=null!=(o=null==t?void 0:t.buttonSize)?o:"lg",f=null!=(r=null==t?void 0:t.theme)?r:"light",v=document.createElement("a");v.className=`pp-smartBtn pp-${f} pp-${_} pp-${be(t.type)} pp-${e.preferredLanguage} ${g} ${m}`,v.href=be(e.data.loginUrl);const E=document.createElement("span");E.className="pp-leftSection";const y=document.createElement("img");y.className="pp-img",y.src=p,y.alt="",E.appendChild(y);const S=document.createElement("span");S.className="pp-btnContent";const b=document.createElement("span");b.className="pp-title",b.innerText=null==(i=null==e?void 0:e.data)?void 0:i.title,S.appendChild(b),E.appendChild(S),v.append(E);const I=document.createElement("span");(null==(c=null==e?void 0:e.data)?void 0:c.cashbackInfo)&&(I.className="pp-cashbackInfo",I.innerText=null==(l=null==e?void 0:e.data)?void 0:l.cashbackInfo,S.append(I));if(e.data.avatarUrl){const t=document.createElement("img");t.className="pp-userProfile",t.src=e.data.avatarUrl,t.addEventListener("error",(function(e){var t;const n=e.target;null==(t=null==n?void 0:n.parentNode)||t.removeChild(n)})),v.append(t)}u.append(v),d&&(d.innerHTML="",d.appendChild(u),"pay"===t.type&&(null==e?void 0:e.isLoggedIn)&&u.addEventListener("click",(e=>{var n;e.preventDefault(),(null==t?void 0:t.callback)?null==(n=null==t?void 0:t.callback)||n.call(t):t.orderInfo&&Ge(h.makePayment,!0,t,a({},t.orderInfo))})))}(c,e),"pay"===i.type&&(null==c?void 0:c.isJustLoggedIn)&&e.autoInvoke&&(null==c?void 0:c.isLoggedIn)&&Ge(h.makePayment,!0,e,a({},e.orderInfo))),t.data.result===g.complete&&(Ae(t.data.messageId),removeEventListener("message",s))};addEventListener("message",s),ze({name:h.render,params:c(a({},e),{redirectUrl:e.redirectUrl||window.location.href}),messageId:n})},renderCoupons:$e,scanCode:function(e){var t;const n=c(a({},e),{redirectUrlOnCancel:null!=(t=null==e?void 0:e.redirectUrlOnCancel)?t:window.location.href});Ge(h.scanCode,!1,e,n)},copyToClipboard:function(e){var t,n,s;const o=document.createElement("textarea");o.setAttribute("readonly","true"),o.setAttribute("contenteditable","true"),o.value=e.value,document.body.appendChild(o),o.select(),o.setSelectionRange(0,o.value.length);const r=document.execCommand("copy");document.body.removeChild(o),r?null==(t=null==e?void 0:e.success)||t.call(e):null==(n=null==e?void 0:e.fail)||n.call(e,{errorCode:D.other}),null==(s=e.complete)||s.call(e)},getSessionData:function(e){var t,n;const s=sessionStorage.getItem(null==e?void 0:e.key);null==(t=null==e?void 0:e.success)||t.call(e,{[null==e?void 0:e.key]:null!=s?s:""}),null==(n=null==e?void 0:e.complete)||n.call(e)},setSessionData:function(e){var t,n,s;sessionStorage.setItem(null==e?void 0:e.key,null!=(t=null==e?void 0:e.value)?t:""),null==(n=null==e?void 0:e.success)||n.call(e),null==(s=null==e?void 0:e.complete)||s.call(e)},getStorageData:function(e){var t,n;const s=localStorage.getItem(null==e?void 0:e.key);null==(t=null==e?void 0:e.success)||t.call(e,{[null==e?void 0:e.key]:null!=s?s:""}),null==(n=null==e?void 0:e.complete)||n.call(e)},setStorageData:function(e){var t,n,s;localStorage.setItem(null==e?void 0:e.key,null!=(t=null==e?void 0:e.value)?t:""),null==(n=null==e?void 0:e.success)||n.call(e),null==(s=null==e?void 0:e.complete)||s.call(e)},removeStorageData:function(e){var t,n;localStorage.removeItem(null==e?void 0:e.key),null==(t=null==e?void 0:e.success)||t.call(e),null==(n=null==e?void 0:e.complete)||n.call(e)},getKycPassportInfo:function(e){const t=window.location.href;Ge(h.getKycPassportInfo,!1,e,c(a({},e),{url:t}))},logout:Ye,getPaymentSettings:We,getLoginUrl:He},{get(e,t){const n=t;if(!Be&&!function(e){return I.includes(e)}(n))throw new Error(`${n} is not supported by Mini Apps JS SDK`);return s=>l(this,null,(function*(){var o,r;if(!Je.includes(n)&&!(yield Fe)){if(!Qe.includes(n)||!s.clientId)return null==(o=s.fail)||o.call(s,{errorCode:D.sdkNotInitialized}),void(null==(r=s.complete)||r.call(s));qe({clientId:s.clientId,env:s.env}),yield Fe}if(Object.prototype.hasOwnProperty.call(e,n))return e[n](s);Ge(t,!1,s,s)}))}});!function(){const e=window._ppcs;if(e){window._ppcs=void 0;for(const[t,n]of e)Xe[t](n)}}(),Xe.revision="f6c046f";const Ze=Xe;window._pp=Ze;return Ze}();
|
|
@@ -215,7 +215,8 @@ const PPUtilFunctionName = {
|
|
|
215
215
|
saveRefreshToken: "saveRefreshToken",
|
|
216
216
|
saveCodeVerifier: "saveCodeVerifier",
|
|
217
217
|
makeVisible: "makeVisible",
|
|
218
|
-
consoleDebugInfo: "consoleDebugInfo"
|
|
218
|
+
consoleDebugInfo: "consoleDebugInfo",
|
|
219
|
+
clientPopState: "clientPopState"
|
|
219
220
|
};
|
|
220
221
|
const jsBridgeNamespace = "_PayPayJsBridge";
|
|
221
222
|
const miniAppSupportedFunctions = [
|
|
@@ -282,8 +283,8 @@ function url(path) {
|
|
|
282
283
|
}
|
|
283
284
|
const img_paypayRec = url("icon-paypay-rec.svg");
|
|
284
285
|
const img_paypayRecWhite = url("icon-paypay-rec-white.svg");
|
|
285
|
-
const JS_SDK_VERSION = "2.
|
|
286
|
-
const REVISION = "
|
|
286
|
+
const JS_SDK_VERSION = "2.22.0";
|
|
287
|
+
const REVISION = "f6c046f";
|
|
287
288
|
const coreBaseUrl = new URL("https://mini-app-sdk-core.paypay.ne.jp/");
|
|
288
289
|
const CORE_IFRAME_ORIGIN = coreBaseUrl.origin;
|
|
289
290
|
const CORE_IFRAME_URL = new URL(
|
|
@@ -294,7 +295,7 @@ const COUPON_IFRAME_URL = new URL(
|
|
|
294
295
|
`./coupon/iframe.html?v=${JS_SDK_VERSION}`,
|
|
295
296
|
coreBaseUrl
|
|
296
297
|
).href;
|
|
297
|
-
const SENTRY_DSN =
|
|
298
|
+
const SENTRY_DSN = "https://377b45f154b1fb17d8e98a6ffb67030a@o4505819519320064.ingest.sentry.io/4506579323453440";
|
|
298
299
|
var MiniAppErrorType = /* @__PURE__ */ ((MiniAppErrorType2) => {
|
|
299
300
|
MiniAppErrorType2["success"] = "SUCCESS";
|
|
300
301
|
MiniAppErrorType2["invalidUrl"] = "INVALID_URL";
|
|
@@ -1678,8 +1679,12 @@ function sendWindowBridgeErrorToSentry(functionName, message, error) {
|
|
|
1678
1679
|
);
|
|
1679
1680
|
}
|
|
1680
1681
|
}
|
|
1682
|
+
let clientId;
|
|
1681
1683
|
if (!isEnableLocalStorage())
|
|
1682
1684
|
;
|
|
1685
|
+
function getClientId() {
|
|
1686
|
+
return clientId;
|
|
1687
|
+
}
|
|
1683
1688
|
function isEnableLocalStorage() {
|
|
1684
1689
|
try {
|
|
1685
1690
|
localStorage.getItem("ppjssdk.canWriteToLocalStorage");
|
|
@@ -2047,9 +2052,19 @@ function getDomain(subdomainCookieSharing, hostname) {
|
|
|
2047
2052
|
OP_OUT_OF_SCOPE: MiniAppErrorType.insufficientScope,
|
|
2048
2053
|
MINI_APP_SCOPE_NOT_FOUND: MiniAppErrorType.insufficientScope
|
|
2049
2054
|
});
|
|
2055
|
+
function isPayPayMiniApp() {
|
|
2056
|
+
return navigator.userAgent.includes("PayPayMiniApp/");
|
|
2057
|
+
}
|
|
2050
2058
|
function getRandomString() {
|
|
2051
2059
|
return Math.random().toString(36).substring(7);
|
|
2052
2060
|
}
|
|
2061
|
+
function getEventCategory(params) {
|
|
2062
|
+
var _a, _b;
|
|
2063
|
+
const clientId2 = (_b = (_a = params == null ? void 0 : params.clientId) != null ? _a : getClientId()) != null ? _b : "";
|
|
2064
|
+
const featureName = (params == null ? void 0 : params.featureName) ? `_${params == null ? void 0 : params.featureName}` : "";
|
|
2065
|
+
const sdkType = (params == null ? void 0 : params.sdkType) ? params.sdkType : isPayPayMiniApp() ? "miniapp" : "smartpayment";
|
|
2066
|
+
return `${sdkType}_${clientId2}${featureName}`;
|
|
2067
|
+
}
|
|
2053
2068
|
function checkIFrameOrigin(origin) {
|
|
2054
2069
|
return origin === CORE_IFRAME_ORIGIN;
|
|
2055
2070
|
}
|
|
@@ -2121,12 +2136,14 @@ function promiseToCallback(functionName, target, getCore2, getLoggingParams) {
|
|
|
2121
2136
|
const core2 = getCore2();
|
|
2122
2137
|
const loggingParams = getLoggingParams == null ? void 0 : getLoggingParams(params);
|
|
2123
2138
|
void core2.logEvent(__spreadValues({
|
|
2124
|
-
event_action: `pp_${functionName}_called
|
|
2139
|
+
event_action: `pp_${functionName}_called`,
|
|
2140
|
+
event_category: getEventCategory({ featureName: functionName })
|
|
2125
2141
|
}, loggingParams));
|
|
2126
2142
|
target(params).then((result) => {
|
|
2127
2143
|
var _a;
|
|
2128
2144
|
void core2.logEvent(__spreadValues({
|
|
2129
|
-
event_action: `pp_${functionName}_success
|
|
2145
|
+
event_action: `pp_${functionName}_success`,
|
|
2146
|
+
event_category: getEventCategory({ featureName: functionName })
|
|
2130
2147
|
}, loggingParams));
|
|
2131
2148
|
(_a = params.success) == null ? void 0 : _a.call(params, result);
|
|
2132
2149
|
}).catch((error) => {
|
|
@@ -2134,6 +2151,7 @@ function promiseToCallback(functionName, target, getCore2, getLoggingParams) {
|
|
|
2134
2151
|
console.error(error.message);
|
|
2135
2152
|
void core2.logEvent(__spreadValues({
|
|
2136
2153
|
event_action: `pp_${functionName}_fail`,
|
|
2154
|
+
event_category: getEventCategory({ featureName: functionName }),
|
|
2137
2155
|
error_value: error.errorCode
|
|
2138
2156
|
}, loggingParams));
|
|
2139
2157
|
(_a = params.fail) == null ? void 0 : _a.call(params, { errorCode: error.errorCode });
|
|
@@ -2506,13 +2524,22 @@ const commonMessageHandler = (e) => {
|
|
|
2506
2524
|
}
|
|
2507
2525
|
};
|
|
2508
2526
|
addEventListener("message", commonMessageHandler);
|
|
2527
|
+
addEventListener("popstate", () => {
|
|
2528
|
+
getCoreIframe().then((iframe) => {
|
|
2529
|
+
var _a;
|
|
2530
|
+
const data = {
|
|
2531
|
+
name: PPUtilFunctionName.clientPopState
|
|
2532
|
+
};
|
|
2533
|
+
(_a = iframe == null ? void 0 : iframe.contentWindow) == null ? void 0 : _a.postMessage(data, CORE_IFRAME_ORIGIN);
|
|
2534
|
+
}).catch((error) => console.warn(error));
|
|
2535
|
+
});
|
|
2509
2536
|
function init(params) {
|
|
2510
2537
|
const url2 = new URL(window.location.href);
|
|
2511
2538
|
const token = url2.searchParams.get("token");
|
|
2512
2539
|
const ott = url2.searchParams.get("one_time_token");
|
|
2513
2540
|
const refreshToken = getRefreshToken();
|
|
2514
2541
|
const codeVerifier = getCodeVerifier();
|
|
2515
|
-
const clientVersion = "2.
|
|
2542
|
+
const clientVersion = "2.22.0";
|
|
2516
2543
|
useAllFunctions = !!params.useAllFunctions;
|
|
2517
2544
|
if (token || ott) {
|
|
2518
2545
|
removeTokenFromUrl(url2);
|
|
@@ -2683,8 +2710,8 @@ const renderCoupons = promiseToCallback(
|
|
|
2683
2710
|
}),
|
|
2684
2711
|
getCore,
|
|
2685
2712
|
(params) => ({
|
|
2686
|
-
|
|
2687
|
-
|
|
2713
|
+
event_label2: params.couponId,
|
|
2714
|
+
merchant_id: params.merchant
|
|
2688
2715
|
})
|
|
2689
2716
|
);
|
|
2690
2717
|
function scanCode(params) {
|
|
@@ -2755,6 +2782,16 @@ const getPaymentSettings = promiseToCallback(
|
|
|
2755
2782
|
core.getPaymentSettings,
|
|
2756
2783
|
getCore
|
|
2757
2784
|
);
|
|
2785
|
+
const getLoginUrl = promiseToCallback(
|
|
2786
|
+
"getLoginUrl",
|
|
2787
|
+
(params) => {
|
|
2788
|
+
return core.getLoginUrl({
|
|
2789
|
+
redirectUrl: params.redirectUrl || location.href,
|
|
2790
|
+
redirectType: params.redirectType
|
|
2791
|
+
});
|
|
2792
|
+
},
|
|
2793
|
+
getCore
|
|
2794
|
+
);
|
|
2758
2795
|
function copyToClipboard(params) {
|
|
2759
2796
|
var _a, _b, _c;
|
|
2760
2797
|
const textarea = document.createElement("textarea");
|
|
@@ -2925,7 +2962,8 @@ const clientFunctions = {
|
|
|
2925
2962
|
removeStorageData,
|
|
2926
2963
|
getKycPassportInfo,
|
|
2927
2964
|
logout,
|
|
2928
|
-
getPaymentSettings
|
|
2965
|
+
getPaymentSettings,
|
|
2966
|
+
getLoginUrl
|
|
2929
2967
|
};
|
|
2930
2968
|
const initExemptedFunctions = [
|
|
2931
2969
|
"init",
|
|
@@ -2935,7 +2973,8 @@ const initExemptedFunctions = [
|
|
|
2935
2973
|
"setSessionData",
|
|
2936
2974
|
"getStorageData",
|
|
2937
2975
|
"setStorageData",
|
|
2938
|
-
"removeStorageData"
|
|
2976
|
+
"removeStorageData",
|
|
2977
|
+
"getLoginUrl"
|
|
2939
2978
|
];
|
|
2940
2979
|
const autoInitFunctions = ["renderCoupons"];
|
|
2941
2980
|
const proxy = new Proxy(clientFunctions, {
|
|
@@ -2981,7 +3020,7 @@ function executePendingFunctionCalls() {
|
|
|
2981
3020
|
}
|
|
2982
3021
|
}
|
|
2983
3022
|
executePendingFunctionCalls();
|
|
2984
|
-
proxy.revision = "
|
|
3023
|
+
proxy.revision = "f6c046f";
|
|
2985
3024
|
const client = proxy;
|
|
2986
3025
|
window._pp = client;
|
|
2987
3026
|
const miniAppSdk = client;
|
|
@@ -311,59 +311,77 @@ export declare const getConsult: ({ merchant, amount, productType, metaData, }:
|
|
|
311
311
|
productType: string;
|
|
312
312
|
metaData: unknown;
|
|
313
313
|
}) => Promise<PPFetchResult<ConsultResponse, ConsultResponse>>;
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
314
|
+
interface CashBackDetailHelpLink {
|
|
315
|
+
label: string;
|
|
316
|
+
url: string;
|
|
317
|
+
googleAnalyticsInfo: unknown;
|
|
318
318
|
}
|
|
319
|
-
|
|
320
|
-
soundUrl: string;
|
|
321
|
-
campaignUrl: string;
|
|
322
|
-
campaignHomeUrl?: string;
|
|
323
|
-
amount: number;
|
|
324
|
-
showAgeConfirmFlag: boolean;
|
|
325
|
-
shareDetail?: {
|
|
326
|
-
text: string;
|
|
327
|
-
imageUrl: string;
|
|
328
|
-
};
|
|
329
|
-
animationType: CashBackAnimationType;
|
|
330
|
-
optionalText: string;
|
|
319
|
+
interface CashBackDetailItem {
|
|
331
320
|
campaignId: string;
|
|
332
|
-
|
|
333
|
-
largeUrl?: string;
|
|
334
|
-
};
|
|
335
|
-
declare type CashBackDetailInfo = {
|
|
336
|
-
amountText: string;
|
|
337
|
-
deeplinkUrl: string;
|
|
321
|
+
bannerId: string | null;
|
|
338
322
|
campaignName: string;
|
|
339
|
-
|
|
323
|
+
campaignNameColor: string;
|
|
324
|
+
optionalText: string | null;
|
|
325
|
+
optionalTextColor: string | null;
|
|
326
|
+
amountText: string;
|
|
327
|
+
amountTextColor: string;
|
|
328
|
+
couponIdText: string | null;
|
|
329
|
+
couponIdTextColor: string | null;
|
|
340
330
|
status: string;
|
|
341
331
|
isMeti: boolean;
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export declare type CashBackDetail = {
|
|
349
|
-
cashBackAmount: number;
|
|
350
|
-
cashBackAmountText?: string;
|
|
332
|
+
deeplinkUrl: string | null;
|
|
333
|
+
googleAnalyticsInfo: unknown;
|
|
334
|
+
}
|
|
335
|
+
interface CouponCashbackDetail {
|
|
336
|
+
title: string;
|
|
337
|
+
iconImageUrl: string;
|
|
351
338
|
cashBackDetailLinkLabel: string;
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
339
|
+
cashBackDetailLinkTarget: string;
|
|
340
|
+
googleAnalyticsInfo: unknown;
|
|
341
|
+
}
|
|
342
|
+
interface CashBackDetail {
|
|
343
|
+
cashBackDetailListDescription: string | null;
|
|
344
|
+
cashBackDetailHelpLink: CashBackDetailHelpLink | null;
|
|
345
|
+
cashBackDetailList: Array<CashBackDetailItem>;
|
|
357
346
|
googleAnalyticsInfo: unknown;
|
|
347
|
+
}
|
|
348
|
+
export interface CashBackComponent {
|
|
349
|
+
cashBackAmount: number;
|
|
350
|
+
currencyText: string;
|
|
351
|
+
cashBackAmountText: string | null;
|
|
358
352
|
cashBackDescription: string;
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
353
|
+
animationUrl: string;
|
|
354
|
+
optionalText: string | null;
|
|
355
|
+
cashBackDetailLinkLabel: string;
|
|
356
|
+
couponCashbackDetail: CouponCashbackDetail;
|
|
357
|
+
cashBackDetail: CashBackDetail;
|
|
358
|
+
}
|
|
359
|
+
export interface AnimationCard {
|
|
360
|
+
cardId: string;
|
|
361
|
+
campaignId: string | null;
|
|
362
|
+
cardType: string;
|
|
363
|
+
animationUrl: string;
|
|
364
|
+
amount: number | null;
|
|
365
|
+
soundUrl: string | null;
|
|
366
|
+
duration: number | null;
|
|
367
|
+
title: string | null;
|
|
368
|
+
description: string | null;
|
|
369
|
+
showAgeConfirmFlag?: boolean | null;
|
|
370
|
+
backgroundColor: string | null;
|
|
371
|
+
}
|
|
372
|
+
export interface StackAnimationCardInfo {
|
|
373
|
+
totalAnimationCards: number;
|
|
374
|
+
animationCardList: Array<AnimationCard>;
|
|
375
|
+
}
|
|
376
|
+
export interface CashBackDetailResponsePayload {
|
|
377
|
+
cashBackComponent: CashBackComponent;
|
|
378
|
+
stackAnimationCardInfo: StackAnimationCardInfo | null;
|
|
379
|
+
cashBackDescriptionForShareLink: string;
|
|
380
|
+
}
|
|
363
381
|
export declare type CashBackDetailResponse = ResponseBase & {
|
|
364
382
|
unsigned: {
|
|
365
383
|
data: {
|
|
366
|
-
payload:
|
|
384
|
+
payload: CashBackDetailResponsePayload;
|
|
367
385
|
};
|
|
368
386
|
};
|
|
369
387
|
};
|
|
@@ -67,8 +67,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
67
67
|
}>> & {
|
|
68
68
|
"onCreate-lottie"?: ((_p: AnimationItem) => any) | undefined;
|
|
69
69
|
}, {
|
|
70
|
-
path: string;
|
|
71
70
|
type: TRenderType;
|
|
71
|
+
path: string;
|
|
72
72
|
loop: boolean;
|
|
73
73
|
autoplay: boolean;
|
|
74
74
|
styles: Record<string, any>;
|
|
@@ -32,7 +32,6 @@ export declare const img_paypayRec: string;
|
|
|
32
32
|
export declare const img_paypayRecWhite: string;
|
|
33
33
|
export declare const img_downArrow: string;
|
|
34
34
|
export declare const img_bankIcon: string;
|
|
35
|
-
export declare const img_confetti: string;
|
|
36
35
|
export declare const img_iconPen: string;
|
|
37
36
|
export declare const img_iconInputClear: string;
|
|
38
37
|
export declare const img_iconRightArrowGray: string;
|
|
@@ -50,5 +49,3 @@ export declare const img_iconInfo: string;
|
|
|
50
49
|
export declare const img_paypayMulti: string;
|
|
51
50
|
export declare const img_mobileIcon: string;
|
|
52
51
|
export declare const img_exclaimIcon: string;
|
|
53
|
-
export declare const img_iconCoupon: string;
|
|
54
|
-
export declare const img_miniappIconDefault: string;
|