@munchi_oy/payments 1.10.0 → 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/src/MunchiPaymentSDK.d.ts +2 -4
- package/dist/src/MunchiPaymentSDK.d.ts.map +1 -1
- package/dist/src/strategies/IPaymentStrategy.d.ts +2 -1
- package/dist/src/strategies/IPaymentStrategy.d.ts.map +1 -1
- package/dist/src/strategies/VivaSessionStrategy.d.ts +2 -1
- package/dist/src/strategies/VivaSessionStrategy.d.ts.map +1 -1
- package/dist/src/types/payment.d.ts +3 -17
- package/dist/src/types/payment.d.ts.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/MunchiPaymentSDK.ts +13 -48
- package/src/strategies/IPaymentStrategy.ts +2 -0
- package/src/strategies/VivaSessionStrategy.ts +35 -0
- package/src/strategies/VivaStrategy.ts +2 -2
- package/src/types/payment.ts +4 -22
- package/src/version.ts +1 -1
- package/dist/src/strategies/ManualSessionStrategy.d.ts +0 -10
- package/dist/src/strategies/ManualSessionStrategy.d.ts.map +0 -1
- package/src/strategies/ManualSessionStrategy.ts +0 -93
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var k=Object.defineProperty;var Y=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var $=Object.prototype.hasOwnProperty;var Q=(a,e)=>{for(var n in e)k(a,n,{get:e[n],enumerable:!0})},j=(a,e,n,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of B(e))!$.call(a,r)&&r!==n&&k(a,r,{get:()=>e[r],enumerable:!(t=Y(e,r))||t.enumerable});return a};var z=a=>j(k({},"__esModule",{value:!0}),a);var ue={};Q(ue,{AppReaderStatus:()=>q,MunchiPaymentSDK:()=>U,PaymentInteractionState:()=>E,SdkPaymentStatus:()=>S});module.exports=z(ue);var h=require("@munchi_oy/core");var V="1.10.0";var l=class a extends Error{code;rawError;constructor(e,n,t){super(n),this.name="PaymentSDKError",this.code=e,this.rawError=t,Object.setPrototypeOf(this,a.prototype)}};var A=require("@munchi_oy/core");var S=(i=>(i.PENDING="PENDING",i.SUCCESS="SUCCESS",i.APPROVED="APPROVED",i.FAILED="FAILED",i.CANCELLED="CANCELLED",i.ERROR="ERROR",i))(S||{}),E=(c=>(c.IDLE="IDLE",c.CONNECTING="CONNECTING",c.REQUIRES_INPUT="REQUIRES_INPUT",c.PROCESSING="PROCESSING",c.SUCCESS="SUCCESS",c.FAILED="FAILED",c.INTERNAL_ERROR="INTERNAL_ERROR",c.VERIFYING="VERIFYING",c))(E||{});var R=require("@munchi_oy/core");function H(a){throw new l("UNKNOWN",`Unhandled payment session status: ${String(a)}`)}function w(a){return{success:!1,status:"PENDING",orderId:a,errorCode:"",errorMessage:""}}function D(a,e){switch(a.status){case R.PaymentSessionStatus.Initiated:case R.PaymentSessionStatus.Processing:case R.PaymentSessionStatus.Voiding:case R.PaymentSessionStatus.Refunding:return w(e);case R.PaymentSessionStatus.Success:case R.PaymentSessionStatus.Closed:{let n={success:!0,status:"SUCCESS",orderId:e,errorCode:"",errorMessage:""};return a.providerTransactionId&&(n.transactionId=a.providerTransactionId),n}case R.PaymentSessionStatus.VoidFailed:case R.PaymentSessionStatus.Failed:{let n={success:!1,status:"FAILED",orderId:e,errorCode:a.errorCode||R.PaymentFailureCode.SystemUnknown,errorMessage:a.errorMessage||"Transaction failed without error details"};return a.providerTransactionId&&(n.transactionId=a.providerTransactionId),n}case R.PaymentSessionStatus.Cancelled:case R.PaymentSessionStatus.Voided:case R.PaymentSessionStatus.Refunded:{let n={success:!1,status:"CANCELLED",orderId:e};return a.errorCode&&(n.errorCode=a.errorCode),a.errorMessage&&(n.errorMessage=a.errorMessage),a.providerTransactionId&&(n.transactionId=a.providerTransactionId),n}default:return H(a.status)}}var _=class{constructor(e,n){this.config=n;this.sessionApi=new A.PaymentSessionApi(void 0,"",e)}sessionApi;async recordPayment(e){try{let n={businessId:Number(this.config.storeId),orderId:e.orderRef,amount:e.amountCents,paymethod:e.paymethod,provider:this.config.provider};e.tipAmount!==void 0&&(n.tipAmount=e.tipAmount),e.splitContext!==void 0&&(n.splitContext=e.splitContext),e.metadata!==void 0&&(n.metadata=e.metadata);let{data:t}=await this.sessionApi.recordManualPayment(n);return D(t,e.orderRef)}catch(n){throw new l("NETWORK_ERROR","Failed to record manual payment",n)}}async voidPayment(e){try{let{data:n}=await this.sessionApi.voidManualPayment({sessionId:e.sessionId}),t=n.status===A.PaymentSessionStatus.Voided||n.status===A.PaymentSessionStatus.Voiding,r={success:t,status:t?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.providerTransactionId??n.sessionId};return t||(n.errorCode&&(r.errorCode=n.errorCode),n.errorMessage&&(r.errorMessage=n.errorMessage)),r}catch(n){throw new l("NETWORK_ERROR","Failed to void manual payment",n)}}};var g=require("@munchi_oy/core");var O=class{constructor(e,n,t){this.messaging=n;this.config=t;this.api=new g.PaymentApi(void 0,"",e)}api;abortController=null;currentRequestId=null;paymentProvider=g.PaymentProviderEnum.Nets;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),referenceId:e.orderRef,currency:e.currency,displayId:e.displayId,options:{allowPinBypass:!0,transactionType:g.TransactionType.Purchase}};try{let{data:r}=await this.api.initiateNetsTerminalTransaction(t),s=r.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(r){throw this.currentRequestId=null,r instanceof l?r:new l("TERMINAL_BUSY","Failed to create Nets Intent",r)}}async waitForPaymentCompletion(e,n,t){let r=`nets.requests.${e}`,s=g.PaymentEventType.StatusChanged;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};t.addEventListener("abort",d);let m=this.messaging.subscribe(r,s,p=>{c||p.status===g.SimplePaymentStatus.Pending||(u(),t.removeEventListener("abort",d),i(this.handleSuccess(p)))}),f=setTimeout(async()=>{if(!(c||t.aborted))try{let p=await this.pollOrderStatus(e,n,this.config.storeId,t);i(this.handleSuccess(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{t.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,n,t,r){let c=Date.now()+12e4;for(;Date.now()<c;){if(r.aborted)throw new Error("Aborted");try{let{data:u}=await this.api.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(u.status!==g.SimplePaymentStatus.Pending)return u}catch(u){if(u instanceof Error&&u.message==="Aborted")throw u}await new Promise(u=>{let d=()=>{clearTimeout(m),u(void 0)};r.addEventListener("abort",d,{once:!0});let m=setTimeout(()=>{r.removeEventListener("abort",d),u(void 0)},2e3)})}throw new Error("Payment verification timed out.")}async cancelTransaction(e){if(!this.currentRequestId)return!1;let n={requestId:this.currentRequestId,businessId:Number(this.config.storeId)};try{return await this.api.cancelNetsTerminalTransaction(n),this.abortController?.abort(),this.currentRequestId=null,!0}catch{return!1}}async refundTransaction(e,n){try{this.abortController=new AbortController;let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:this.config.kioskId,referenceId:e.orderRef,options:{allowPinBypass:!0,transactionType:g.TransactionType.ReturnOfGoods}},{data:r}=await this.api.initiateNetsTerminalTransaction(t),s=r.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(t){throw this.currentRequestId=null,t instanceof l||t instanceof l?t:new l("NETWORK_ERROR","Failed to refund Nets transaction",t)}}async verifyFinalStatus(e,n){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n});return this.handleSuccess(t)}catch(t){throw new l("NETWORK_ERROR","Failed to verify final Nets status",t)}}handleSuccess(e){let n=e.status===g.SimplePaymentStatus.Success,t=e.status===g.SimplePaymentStatus.Pending,r={success:n,status:n?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,transaction:e.transaction};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.code&&(r.errorCode=e.error.code),e.error?.message&&(r.errorMessage=e.error.message),r}abort(){this.abortController?.abort()}};var y=require("@munchi_oy/core");var L=a=>{if(!a)return 0;let e=Number.parseInt(a,10);return Number.isFinite(e)?e:0},W=a=>{if(!a)return new Date().toISOString();let e=new Date(a);return Number.isNaN(e.getTime())?new Date().toISOString():e.toISOString()};var Z="vivapayclient://pay/v1",ee="abort",te="cancel",ne="sale",G="transactionDetails",re=4e3,se="534287",ie="38",oe="493591",ae="497439",ce=[oe,ae],le=["CREDIT","PREPAID","CORPORATE"],x=class{constructor(e,n,t,r){this.config=t;this.appToAppConfig=r;this.api=new y.VivaApi(void 0,"",e),this.paymentApi=new y.PaymentApi(void 0,"",e),this.paymentApiWithReference=this.paymentApi}api;paymentApi;abortController=null;currentClientTransactionId=null;currentIsvClientTransactionId=null;currentCurrency=null;currentOrderRef=null;currentSourceTerminalId=null;latestResult=null;paymentApiWithReference;wasCancelled=!1;getExecutionMode(){return"callback_driven"}async processPayment(e,n){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");n("CONNECTING");try{let{data:t}=await this.api.createVivaAppToAppPayment(this.buildCreatePaymentPayload(e));return await this.runAction(ne,this.buildLaunchParams(t),e,n)}catch(t){throw new l("NETWORK_ERROR","Failed to create Viva app-to-app payment",t)}}async cancelTransaction(e){if(!this.currentClientTransactionId)return!1;let n=await this.lookupTransactionDetails();if(n)return this.latestResult=n,this.wasCancelled=n.status==="CANCELLED",this.abortController?.abort(),!0;try{await this.appToAppConfig.adapter.openUrl(this.buildActionUrl(ee,{}))}catch(t){throw this.abortController?.abort(),new l("NETWORK_ERROR","Failed to launch Viva abort flow",t)}return this.wasCancelled=!0,this.abortController?.abort(),!0}async refundTransaction(e,n){n("CONNECTING");let t=await this.fetchPaymentReference(e),r=this.buildRefundLaunchParams(e,t);return this.runAction(te,r,e,n)}async verifyFinalStatus(e,n){return this.latestResult?this.latestResult:this.wasCancelled?{success:!1,status:"CANCELLED",orderId:this.currentOrderRef??n,errorCode:y.PaymentFailureCode.PaymentCancelledByUser,errorMessage:"Transaction was cancelled",transactionId:n}:{success:!1,status:"PENDING",orderId:this.currentOrderRef??n,transactionId:n}}abort(){this.abortController?.abort()}async runAction(e,n,t,r){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");this.abortController=new AbortController,this.latestResult=null,this.wasCancelled=!1,this.currentCurrency=t.currency,this.currentOrderRef=t.orderRef,this.currentSourceTerminalId=n.sourceTerminalId??n.tid??null,this.currentClientTransactionId=n.clientTransactionId??null,this.currentIsvClientTransactionId=n.ISV_clientTransactionId??null;let s=this.currentClientTransactionId?{sessionId:this.currentClientTransactionId}:void 0;return new Promise((i,o)=>{let c=(m,f)=>{m?.(),this.abortController?.signal.removeEventListener("abort",f)},u=()=>{c(d,u),o(new Error("Aborted"))},d=this.appToAppConfig.adapter.subscribe(m=>{if(this.abortController?.signal.aborted)return;let f=this.parseCallbackUrl(m);f&&this.matchesKnownTransactionId(f.rawParams)&&(this.latestResult=f.result,this.wasCancelled=f.result.status==="CANCELLED",this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,c(d,u),i(f.result))});this.abortController?.signal.addEventListener("abort",u),r("REQUIRES_INPUT",s),this.appToAppConfig.adapter.openUrl(this.buildActionUrl(e,n)).then(()=>{this.abortController?.signal.aborted}).catch(m=>{c(d,u),this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,o(new l("NETWORK_ERROR","Failed to launch Viva app",m))})})}buildCreatePaymentPayload(e){let n=e.options??{},t={amount:e.amountCents,referenceId:e.orderRef,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!1,showTransactionResult:!1};return n.tipAmount!==void 0&&(t.tipAmount=n.tipAmount),t}buildLaunchParams(e){let n={};return Object.entries(e).forEach(([t,r])=>{r!==void 0&&(n[t]=String(r))}),n}buildRefundLaunchParams(e,n){let t=e.options??{},r=n?.originalTransactionId?.trim()||e.originalTransactionId.trim(),s={amount:String(e.amountCents),clientTransactionId:r,show_receipt:"false",show_transaction_result:"false"};if(t.sourceCode&&(s.sourceCode=t.sourceCode),n?.referenceCode&&(s.orderCode=n.referenceCode),n?.shortReferenceCode&&(s.shortOrderCode=n.shortReferenceCode),n?.receiptNumber&&(s.referenceNumber=n.receiptNumber),n?.terminalId&&(s.tid=n.terminalId),n?.referenceCode||n?.shortReferenceCode||n?.receiptNumber)return s;let i=r;return/^\d+$/.test(i)&&(i.length===16?s.orderCode=i:i.length===10?s.shortOrderCode=i:s.referenceNumber=i),s}async fetchPaymentReference(e){try{let n={orderId:e.orderRef,provider:y.PaymentProvider.Viva,transactionId:e.originalTransactionId,businessId:e.businessId},{data:t}=await this.paymentApiWithReference.getPaymentReference(n);return this.extractPaymentReferenceContext(t)}catch{return}}extractPaymentReferenceContext(e){if(!e)return;let n=e.references;if(!n||typeof n!="object"||Array.isArray(n))return{originalTransactionId:e.originalTransactionId};let t=n,r={originalTransactionId:this.readReferenceValue(t.originalTransactionId)??this.readReferenceValue(t.clientTransactionId)??e.originalTransactionId},s=this.readReferenceValue(t.receiptNumber)??this.readReferenceValue(t.referenceNumber),i=this.readReferenceValue(t.referenceCode)??this.readReferenceValue(t.orderCode),o=this.readReferenceValue(t.shortReferenceCode)??this.readReferenceValue(t.shortOrderCode),c=this.readReferenceValue(t.terminalId)??this.readReferenceValue(t.tid);return s&&(r.receiptNumber=s),i&&(r.referenceCode=i),o&&(r.shortReferenceCode=o),c&&(r.terminalId=c),r}readReferenceValue(e){if(typeof e!="string")return;let n=e.trim();return n.length>0?n:void 0}buildActionUrl(e,n){let t=new URLSearchParams({action:e,appId:this.appToAppConfig.appId,callback:this.resolveCallbackQueryParam()});return Object.entries(n).forEach(([r,s])=>{t.set(r,s)}),`${Z}?${t.toString()}`}parseCallbackUrl(e){if(!this.matchesCallbackBase(e))return null;let n=new URL(e),t=Object.fromEntries(n.searchParams.entries()),r=this.isSuccessfulCallback(t),s=this.isCancelledCallback(t),i=this.resolveFailureCode(t,s),o={success:r,status:r?"SUCCESS":s?"CANCELLED":"FAILED",orderId:this.currentOrderRef??t.clientTransactionId??"unknown",errorCode:r?"":i,errorMessage:r?"":t.message??"Transaction failed without error details"};r&&(o.transaction=this.mapCallbackToTransaction(t));let c=t.transactionId??t.orderCode??t.clientTransactionId,u=t.errorCode??this.extractErrorReferenceFromMessage(t.message)??t.referenceNumber??t.tid??t.rrn;return c&&(o.transactionId=c),u&&(o.errorReference=u),{rawParams:t,result:o}}matchesCallbackBase(e){let n=new URL(e),t=this.appToAppConfig.callbackUrl;if(!t.includes("://")){let s=t.replace(/:$/,"");return n.protocol===`${s}:`}let r=new URL(t);return n.protocol===r.protocol&&n.hostname===r.hostname&&n.pathname===r.pathname}resolveCallbackQueryParam(){if(this.appToAppConfig.callbackParamFormat!=="scheme-only")return this.appToAppConfig.callbackUrl;let e=this.appToAppConfig.callbackUrl;return e.includes("://")?new URL(e).protocol.replace(/:$/,""):e.replace(/:$/,"")}matchesKnownTransactionId(e){let n=[this.currentClientTransactionId,this.currentIsvClientTransactionId].filter(r=>!!r);if(n.length===0)return!0;let t=[e.clientTransactionId,e.ISV_clientTransactionId].filter(r=>!!r);return t.length===0?!0:t.some(r=>n.includes(r))}resolveFailureCode(e,n){if(n)return y.PaymentFailureCode.PaymentCancelledByUser;let t=e.errorCode;if(t?.includes("."))return t;if(this.isTransactionDetailsAction(e)&&(e.transactionType??"").toLowerCase().includes("abort"))return y.PaymentFailureCode.SystemUnknown;let r=(e.message??"").toLowerCase(),s=(e.status??"").toLowerCase();return r.includes("declined")||s==="declined"||s==="fail"||s==="failed"||s==="failure"?y.PaymentFailureCode.PaymentDeclined:y.PaymentFailureCode.SystemUnknown}isSuccessfulCallback(e){let n=(e.status??"").toLowerCase();return this.isTransactionDetailsAction(e)?n!=="success"?!1:!(e.transactionType??"").toLowerCase().includes("abort"):n==="success"}isTransactionDetailsAction(e){return(e.action??"").toLowerCase()===G.toLowerCase()}isCancelledCallback(e){let n=(e.status??"").toLowerCase(),t=(e.message??"").toLowerCase(),r=(e.errorCode??"").toLowerCase();return n==="cancelled"||n==="canceled"||t.includes("user_cancel")||t.includes("user cancel")||t.includes("cancelled by user")||t.includes("canceled by user")||t.includes("transaction cancelled by user")||t.includes("transaction canceled by user")||r.includes("user_cancel")||r.includes("user cancel")||r==="1000"&&(t.includes("cancelled by user")||t.includes("canceled by user"))}extractErrorReferenceFromMessage(e){return e?e.match(/\((-?\d+)\)/)?.[1]:void 0}mapCallbackToTransaction(e){let n=e.transactionId??e.orderCode??e.clientTransactionId??"unknown",t=W(e.transactionDate),r=L(e.tipAmount),s=L(e.surchargeAmount);return{amount:L(e.amount)-r-s,cardDetail:{aid:e.aid??null,applicationLabel:e.applicationLabel??null,cardNumber:e.accountNumber??"N/A",cardType:e.cardType??"N/A",issuer:e.bankId??null,orderCode:e.orderCode??null,timestamp:t,transactionId:n},createdAt:t,fees:this.buildFees(r,s),id:n,label:null,provider:y.PaymentProvider.Viva,rawData:e,referenceId:e.clientTransactionId??null,roundingDifference:0,type:this.getVivaPaymentMethodType(e)}}getVivaPaymentMethodType(e){let n=(e.applicationLabel??"").toUpperCase().trim(),r=(e.accountNumber??"").substring(0,6),s=(e.bankId??"").trim();return r===se||s===ie?y.PaymentMethod.Edenred:ce.includes(r)?y.PaymentMethod.WoltBenefit:le.some(i=>n.includes(i))?y.PaymentMethod.Credit:y.PaymentMethod.Debit}buildFees(e,n){if(!this.currentCurrency)return null;let t=[];return e>0&&t.push({taxAmount:0,total:{amount:e,currency:this.currentCurrency},type:y.FeeType.TipAmount,vatPercentage:0}),n>0&&t.push({taxAmount:0,total:{amount:n,currency:this.currentCurrency},type:y.FeeType.Surcharge,vatPercentage:0}),t.length===0?null:{parts:t}}async lookupTransactionDetails(){if(!this.currentClientTransactionId||!this.currentSourceTerminalId)return null;let e={clientTransactionId:this.currentClientTransactionId,sourceTerminalId:this.currentSourceTerminalId};return new Promise(n=>{let t=!1,r=setTimeout(()=>{t||(t=!0,s(),n(null))},re),s=this.appToAppConfig.adapter.subscribe(i=>{if(t)return;let o=this.parseCallbackUrl(i);o&&this.matchesKnownTransactionId(o.rawParams)&&(t=!0,clearTimeout(r),s(),n(o.result))});this.appToAppConfig.adapter.openUrl(this.buildActionUrl(G,e)).catch(()=>{t||(t=!0,clearTimeout(r),s(),n(null))})})}};var C=require("@munchi_oy/core");var F=class a{constructor(e,n,t){this.messaging=n;this.config=t;this.sessionApi=new C.PaymentSessionApi(void 0,"",e)}static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=1e3;static VERIFY_DURATION_MS=3e4;static INITIAL_POLL_DELAY_MS=1e4;sessionApi;abortController=null;idempotencyKey=null;idempotencyOrderRef=null;currentClientToken=null;async processPayment(e,n){this.abortController=new AbortController,(this.idempotencyKey===null||this.idempotencyOrderRef!==e.orderRef)&&(this.idempotencyKey=this.generateIdempotencyKey(),this.idempotencyOrderRef=e.orderRef),this.currentClientToken=null,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),orderId:e.orderRef};e.splitContext!==void 0&&(t.splitContext=e.splitContext);try{let{data:r}=await this.sessionApi.initiateVivaSession(t,this.idempotencyKey);this.currentClientToken=r.clientToken;let s=this.abortController.signal;if(s.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:r.sessionId});let i=await this.waitForCompletion(r.clientToken,r.sessionId,e,s);return i?this.finalize(i):(await this.armCancel(r.clientToken),w(e.orderRef))}catch(r){throw r instanceof l?r:new l("NETWORK_ERROR","Failed to create Viva payment session",r)}}async verifyFinalStatus(e,n){if(!this.currentClientToken)throw new l("NETWORK_ERROR","No active payment session to verify");let t=await this.pollUntilTerminal(this.currentClientToken,e,void 0,a.VERIFY_DURATION_MS);return this.finalize(t??w(e.orderRef))}async cancelTransaction(e){if(!this.currentClientToken)return!1;try{await this.sessionApi.cancelVivaSession(this.currentClientToken)}catch(n){throw new l("NETWORK_ERROR","Failed to cancel Viva payment session",n)}return this.abortController?.abort(),!0}async refundTransaction(e,n){try{let t={sessionId:e.originalTransactionId,amount:e.amountCents},{data:r}=await this.sessionApi.refundVivaSession(t),s=r.status===C.PaymentSessionStatus.Refunded||r.status===C.PaymentSessionStatus.Refunding,i={success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:r.providerTransactionId??r.sessionId};return s||(r.errorCode&&(i.errorCode=r.errorCode),r.errorMessage&&(i.errorMessage=r.errorMessage)),i}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}async pollUntilTerminal(e,n,t,r){let s=Date.now()+r;for(;Date.now()<s;){if(t?.aborted)throw new Error("Aborted");let i;try{i=(await this.sessionApi.getPaymentSession(e)).data}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}if(t?.aborted)throw new Error("Aborted");if(i){let o=D(i,n.orderRef);if(o.status!=="PENDING")return o}await this.delay(a.POLLING_INTERVAL_MS,t)}}waitForCompletion(e,n,t,r){let s=`viva.${this.config.channel.toLowerCase()}.requests.${n}`;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f),r.removeEventListener("abort",d)},d=()=>{u(),o(new Error("Aborted"))};r.addEventListener("abort",d);let m=this.messaging.subscribe(s,"payment:status-changed",p=>{c||p.status!==C.SimplePaymentStatus.Pending&&(u(),i(this.mapStatusDto(p,t)))}),f=setTimeout(()=>{c||this.pollUntilTerminal(e,t,r,a.POLLING_DURATION_MS).then(p=>{c||(u(),i(p))},p=>{c||(u(),o(p))})},a.INITIAL_POLL_DELAY_MS)})}mapStatusDto(e,n){let t=e.status===C.SimplePaymentStatus.Success,r={success:t,status:t?"SUCCESS":"FAILED",orderId:n.orderRef,errorCode:e.error?.code||(t?"":C.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(t?"":"Transaction failed without error details")};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.referenceError&&(r.errorReference=e.error.referenceError),e.transaction&&(r.transaction=e.transaction),r}finalize(e){return e.status!=="PENDING"&&(this.idempotencyKey=null,this.idempotencyOrderRef=null),e}armCancel(e){return this.sessionApi.cancelVivaSession(e).then(()=>{},()=>{})}generateIdempotencyKey(){let e=globalThis.crypto;return e?.randomUUID?e.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,n=>{let t=Math.random()*16|0;return(n==="x"?t:t&3|8).toString(16)})}delay(e,n){return new Promise(t=>{let r=()=>{clearTimeout(s),t()};n&&n.addEventListener("abort",r,{once:!0});let s=setTimeout(()=>{n&&n.removeEventListener("abort",r),t()},e)})}};var P=require("@munchi_oy/core");var N=class a{constructor(e,n,t){this.messaging=n;this.config=t;this.api=new P.PaymentApi(void 0,"",e)}static INITIAL_POLL_DELAY_MS=1e4;static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=2e3;static TIMEOUT_CANCEL_TIMEOUT_MS=5e3;static VERIFY_TIMEOUT_MS=1e4;static VERIFY_MAX_RETRIES=3;static VERIFY_RETRY_DELAY_MS=1500;api;abortController=null;currentSessionId=null;paymentProvider=P.PaymentProviderEnum.Viva;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,referenceId:e.orderRef,businessId:parseInt(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!0,showTransactionResult:!0};try{let{data:r}=await this.api.initiateTerminalTransaction(t);if(this.currentSessionId=r.sessionId,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:r.sessionId});let s=await this.waitForPaymentCompletion(r.sessionId,e,this.abortController.signal);return this.currentSessionId=null,s}catch(r){throw this.currentSessionId=null,r instanceof l?r:new l("NETWORK_ERROR","Failed to create Viva Intent",r)}}async waitForPaymentCompletion(e,n,t){let s=`viva.${this.config.channel.toLowerCase()}.requests.${e}`,i="payment:status-changed";return new Promise((o,c)=>{let u=!1,d=()=>{u=!0,typeof f=="function"&&f(),clearTimeout(p)},m=()=>{d(),c(new Error("Aborted"))};t.addEventListener("abort",m);let f=this.messaging.subscribe(s,i,T=>{u||T.status!==P.SimplePaymentStatus.Pending&&(d(),t.removeEventListener("abort",m),o(this.handleSuccess(T)))}),p=setTimeout(async()=>{if(!(u||t.aborted))try{let T=await this.pollOrderStatus(e,n.orderRef,this.config.storeId,t);if(u)return;o(this.handleSuccess(T))}catch(T){if(u)return;if(T instanceof Error&&T.message==="Aborted"){c(T);return}try{let v=await this.recoverAfterPollingTimeout(n,e);o(v)}catch(v){c(v instanceof l?v:new l("TIMEOUT","Payment timed out and polling failed",v))}}finally{t.removeEventListener("abort",m),d()}},a.INITIAL_POLL_DELAY_MS)})}async pollOrderStatus(e,n,t,r){let i=Date.now()+a.POLLING_DURATION_MS;for(;Date.now()<i;){if(r.aborted)throw new Error("Aborted");try{let{data:o}=await this.api.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(o.status!==P.SimplePaymentStatus.Pending)return o}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}await new Promise(o=>{let c=()=>{clearTimeout(u),o(void 0)};r.addEventListener("abort",c,{once:!0});let u=setTimeout(()=>{r.removeEventListener("abort",c),o(void 0)},a.POLLING_INTERVAL_MS)})}throw new Error("Payment verification timed out.")}async recoverAfterPollingTimeout(e,n){return await this.cancelSessionWithTimeout(n),await this.verifyFinalStatusWithRetry(e,n)}async cancelSessionWithTimeout(e){let n;try{await Promise.race([this.cancelSession(e),new Promise((t,r)=>{n=setTimeout(()=>{r(new Error("Viva timeout cancellation timed out"))},a.TIMEOUT_CANCEL_TIMEOUT_MS)})])}catch{}finally{n&&clearTimeout(n)}}async cancelSession(e){return await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:e}),this.currentSessionId===e&&(this.currentSessionId=null),!0}async verifyFinalStatusWithRetry(e,n){let t;for(let s=1;s<=a.VERIFY_MAX_RETRIES;s++)try{let i=await Promise.race([this.verifyFinalStatus(e,n),new Promise((o,c)=>setTimeout(()=>c(new Error("Verify timed out")),a.VERIFY_TIMEOUT_MS))]);if(i.status==="PENDING"){t=new Error("Verify returned pending status"),s<a.VERIFY_MAX_RETRIES&&await new Promise(o=>setTimeout(o,a.VERIFY_RETRY_DELAY_MS));continue}return i}catch(i){t=i,s<a.VERIFY_MAX_RETRIES&&await new Promise(o=>setTimeout(o,a.VERIFY_RETRY_DELAY_MS))}let r=t instanceof Error?t.message:"Verify retries exhausted";throw new l(P.PaymentFailureCode.PaymentTimeout,r)}handleSuccess(e){let n=e.status===P.SimplePaymentStatus.Success,t={success:n,status:n?"SUCCESS":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(n?"":P.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(n?"":"Transaction failed without error details")};return e.transactionId&&(t.transactionId=e.transactionId),e.error?.referenceError&&(t.errorReference=e.error.referenceError),e.transaction&&(t.transaction=e.transaction),t}async cancelTransaction(e){if(!this.currentSessionId)return!1;try{let n=this.currentSessionId;return this.currentSessionId=null,await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:n}),this.abortController?.abort(),!0}catch(n){throw this.currentSessionId=null,new l("NETWORK_ERROR","Failed to cancel Viva transaction",n)}}async verifyFinalStatus(e,n){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n}),r=t.status===P.SimplePaymentStatus.Success,s=t.status===P.SimplePaymentStatus.Pending,i={success:r,status:r?"SUCCESS":s?"PENDING":"FAILED",orderId:t.orderId,errorCode:t.error?.code||(r||s?"":P.PaymentFailureCode.SystemUnknown),errorMessage:t.error?.message||(r||s?"":"Transaction failed without error details")};return t.transactionId&&(i.transactionId=t.transactionId),t.error?.referenceError&&(i.errorReference=t.error.referenceError),t.transaction&&(i.transaction=t.transaction),i}catch(t){throw new l("NETWORK_ERROR","Failed to verify final transaction status",t)}}async refundTransaction(e,n){try{let t={amount:e.amountCents,businessId:Number(this.config.storeId),displayId:this.config.kioskId,currency:e.currency,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId},{data:r}=await this.api.refundSingleVivaTransaction(t),s=r.success;return{success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:r.sessionId}}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}};var I=require("@munchi_oy/core"),K=require("axios");var M=class{constructor(e,n,t){this.messaging=n;this.config=t;this.paymentApi=new I.PaymentApi(void 0,"",e),this.worldlineApi=new I.WorldlineApi(void 0,"",e)}paymentApi;worldlineApi;abortController=null;currentOperationId=null;paymentProvider=I.PaymentProviderEnum.Worldline;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,referenceId:e.orderRef,showReceipt:!0,showTransactionResult:!0,...e.options&&"tipAmount"in e.options&&typeof e.options.tipAmount=="number"?{tipAmount:e.options.tipAmount}:{}};try{let r=await this.worldlineApi.createPayment(t),s=this.extractOperationId(r.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,I.PaymentEventType.StatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(r){throw this.currentOperationId=null,r instanceof l?r:this.mapWorldlineRequestError(r,"Failed to create Worldline payment")}}async cancelTransaction(e){if(!this.currentOperationId)return!1;let n={businessId:Number(this.config.storeId),targetOperationId:this.currentOperationId};try{return await this.worldlineApi.cancelPayment(n),!0}catch(t){throw this.mapWorldlineRequestError(t,"Failed to cancel Worldline transaction")}}async refundTransaction(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId};try{let r=await this.worldlineApi.createRefund(t),s=this.extractOperationId(r.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,I.PaymentEventType.RefundStatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(r){throw this.currentOperationId=null,r instanceof l?r:this.mapWorldlineRequestError(r,"Failed to refund Worldline transaction")}}async verifyFinalStatus(e,n){try{let{data:t}=await this.paymentApi.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n});return this.handlePaymentStatus(t)}catch(t){throw this.mapWorldlineRequestError(t,"Failed to verify final Worldline status")}}abort(){this.abortController?.abort()}async waitForPaymentCompletion(e,n,t,r){let s=`worldline.requests.${e}`;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};r.addEventListener("abort",d);let m=this.messaging.subscribe(s,t,p=>{c||p.status===I.SimplePaymentStatus.Pending||(u(),r.removeEventListener("abort",d),i(this.handlePaymentStatus(p)))}),f=setTimeout(async()=>{if(!(c||r.aborted))try{let p=await this.pollOrderStatus(e,n,this.config.storeId,r);i(this.handlePaymentStatus(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{r.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,n,t,r){let o=Date.now()+12e4;for(;Date.now()<o;){if(r.aborted)throw new Error("Aborted");try{let{data:c}=await this.paymentApi.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(c.status!==I.SimplePaymentStatus.Pending)return c}catch(c){if(c instanceof Error&&c.message==="Aborted")throw c}await new Promise(c=>{let u=()=>{clearTimeout(d),c(void 0)};r.addEventListener("abort",u,{once:!0});let d=setTimeout(()=>{r.removeEventListener("abort",u),c(void 0)},2e3)})}throw new Error("Payment verification timed out.")}handlePaymentStatus(e){let n=e.status===I.SimplePaymentStatus.Success,t=e.status===I.SimplePaymentStatus.Pending,r={success:n,status:n?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(n||t?"":I.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(n||t?"":"Transaction failed without error details")};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.referenceError&&(r.errorReference=e.error.referenceError),e.transaction&&(r.transaction=e.transaction),r}extractOperationId(e){let n=typeof e=="object"&&e!==null&&"operationId"in e&&typeof e.operationId=="string"?e.operationId:null;if(!n)throw new Error("operationId is missing from response.");return n}mapWorldlineRequestError(e,n){if((0,K.isAxiosError)(e)){if(e.response?.status===400||e.response?.status===409)return new l("TERMINAL_BUSY",n,e);if(e.response?.status===404)return new l("TERMINAL_OFFLINE",n,e)}return new l("NETWORK_ERROR",n,e)}};var U=class a{strategy;axios;messaging;timeoutMs;logger;_currentState="IDLE";_listeners=[];_cancellationIntent=!1;_currentSessionId;_autoResetTimer;autoResetOptions;appToAppConfig;paymentSessionConfig;manualStrategy;static TERMINAL_STATES=["SUCCESS","FAILED","INTERNAL_ERROR"];static RESTING_STATES=["IDLE",...a.TERMINAL_STATES];constructor(e,n,t,r={},s){this.axios=e,this.messaging=n,this.logger=r.logger,this.timeoutMs=r.timeoutMs||3e4,this.autoResetOptions=r.autoResetOnPaymentComplete,this.appToAppConfig=r.appToApp,this.paymentSessionConfig=r.paymentSession,this.manualStrategy=new _(e,t),this.strategy=s??this.resolveStrategy(t)}get version(){return V}get currentState(){return this._currentState}generateErrorResult(e,n,t){return{success:!1,status:"ERROR",errorCode:this.normalizeErrorCode(n),errorMessage:t,orderId:e}}normalizeErrorCode(e){return e?e.includes(".")?e:{CANCELLED:h.PaymentFailureCode.PaymentCancelledByUser,DECLINED:h.PaymentFailureCode.PaymentDeclined,TERMINAL_BUSY:h.PaymentFailureCode.TerminalBusy,TERMINAL_OFFLINE:h.PaymentFailureCode.TerminalOffline,TIMEOUT:h.PaymentFailureCode.TerminalTimeout,NETWORK_ERROR:h.PaymentFailureCode.SystemProviderError,STRATEGY_ERROR:h.PaymentFailureCode.SystemProviderError,MISSING_CONFIG:h.PaymentFailureCode.SystemUnknown,INVALID_AMOUNT:h.PaymentFailureCode.SystemUnknown,UNKNOWN:h.PaymentFailureCode.SystemUnknown}[e]??h.PaymentFailureCode.SystemUnknown:h.PaymentFailureCode.SystemUnknown}subscribe=e=>(this._listeners.push(e),e(this._currentState),()=>{this._listeners=this._listeners.filter(n=>n!==e)});transitionTo(e){if(this._currentState===e)return;if(e==="IDLE"){this.cancelAutoReset(),this._currentState=e,this._listeners.forEach(t=>t(e));return}if(a.TERMINAL_STATES.includes(this._currentState)){let t=`Invalid State Transition: Attempted to move from terminal state ${this._currentState} to ${e}`;throw this.logger?.error(t),this._currentState!=="INTERNAL_ERROR"&&(this._currentState="INTERNAL_ERROR",this._listeners.forEach(r=>r(this._currentState))),new l("UNKNOWN",t)}this._currentState=e,a.TERMINAL_STATES.includes(e)&&this.scheduleAutoReset(e),this._listeners.forEach(t=>t(e))}_resetScheduledAt;get nextAutoResetAt(){return this._resetScheduledAt}cancelAutoReset(){this._autoResetTimer&&(clearTimeout(this._autoResetTimer),this._autoResetTimer=void 0),this._resetScheduledAt=void 0}scheduleAutoReset(e){if(!this.autoResetOptions)return;let t=e==="SUCCESS"?this.autoResetOptions.successDelayMs??5e3:this.autoResetOptions.failureDelayMs??5e3;this.logger?.info(`Scheduling auto-reset to IDLE in ${t}ms`),this._resetScheduledAt=Date.now()+t,this._autoResetTimer=setTimeout(()=>{this.logger?.info("Auto-reset triggered"),this.reset()},t)}resolveStrategy(e){switch(e.provider){case h.PaymentProvider.Nets:return new O(this.axios,this.messaging,e);case h.PaymentProvider.Worldline:return new M(this.axios,this.messaging,e);case h.PaymentProvider.Viva:return this.appToAppConfig?.enabled?new x(this.axios,this.messaging,e,this.appToAppConfig):this.paymentSessionConfig?.enabled?new F(this.axios,this.messaging,e):new N(this.axios,this.messaging,e);default:return new N(this.axios,this.messaging,e)}}initiateTransaction=async(e,n)=>{let t=n??{},r=e.orderRef;if(!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let i=Date.now();if(this._cancellationIntent=!1,this._currentSessionId=void 0,this.transitionTo("IDLE"),e.amountCents<=0)return this.generateErrorResult(e.orderRef,"INVALID_AMOUNT","Amount must be greater than 0");try{let o=(m,f)=>{f?.sessionId&&(this._currentSessionId=f.sessionId),m!=="FAILED"&&(this.transitionTo(m),this.fireStateCallback(m,t,r))},c=this.strategy.processPayment(e,o),d=(this.strategy.getExecutionMode?.()??"managed")==="callback_driven"?await c:await Promise.race([c,new Promise((m,f)=>{setTimeout(()=>{f(new l("TIMEOUT","Transaction timed out"))},this.timeoutMs)})]);if(d.success)this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(d));else{if(this._cancellationIntent)return await this.handleTransactionError(e,new Error("Aborted after resolution"),t);this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(d))}return this.logger?.info("Transaction completed successfully",{orderId:e.orderRef,durationMs:Date.now()-i}),d}catch(o){return this.logger?.warn("Transaction interrupted. Handling final status...",{error:o}),await this.handleTransactionError(e,o,t)}};async handleTransactionError(e,n,t={}){let r=n instanceof l&&(n.code==="TIMEOUT"||n.code===h.PaymentFailureCode.PaymentTimeout);if(!this._cancellationIntent&&!r&&(this.transitionTo("VERIFYING"),this.safeFireCallback(()=>t.onVerifying?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))),this._cancellationIntent){try{if(this._currentSessionId){let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i}}catch(i){this.logger?.warn("Final status verification failed during cancellation",{err:i})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}let s;if(this.strategy.abort(),this._currentSessionId)try{let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i;s=r&&i.status==="PENDING"?this.buildErrorResultFromException(e.orderRef,n):i}catch(i){this.logger?.warn("Failed to get detailed error from verifyFinalStatus",{verifyErr:i}),s=this.buildErrorResultFromException(e.orderRef,i)}else s=this.buildErrorResultFromException(e.orderRef,n);return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(s)),s}buildErrorResultFromException(e,n){return n instanceof l?this.generateErrorResult(e,n.code,n.message):this.generateErrorResult(e,"UNKNOWN",n instanceof Error?n.message:"Unknown fatal error")}fireStateCallback(e,n,t){let r={orderRef:t,refPaymentId:this._currentSessionId};switch(e){case"CONNECTING":this.safeFireCallback(()=>n.onConnecting?.(r));break;case"REQUIRES_INPUT":this.safeFireCallback(()=>n.onRequiresInput?.(r));break;case"PROCESSING":this.safeFireCallback(()=>n.onProcessing?.(r));break}}safeFireCallback(e){try{e()}catch(n){this.logger?.warn("Callback execution failed",{error:n})}}cancel=async()=>{if(this.logger?.info("Attempting cancellation"),a.TERMINAL_STATES.includes(this._currentState))return this.logger?.warn("Cannot cancel: Transaction already in terminal state",{state:this._currentState}),!1;if(!this._currentSessionId&&this._currentState==="IDLE")return this.logger?.warn("Cannot cancel: No active session to cancel",{state:this._currentState}),!1;this._cancellationIntent=!0,this.transitionTo("VERIFYING");try{return await this.strategy.cancelTransaction(n=>this.transitionTo(n))}catch(e){return this.logger?.error("Cancellation command failed",e),!1}};reset=()=>{a.TERMINAL_STATES.includes(this._currentState)&&(this._currentSessionId=void 0,this._cancellationIntent=!1,this.transitionTo("IDLE"))};refund=async(e,n)=>{let t=n??{};if(this.logger?.info("Initiating refund",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("IDLE");try{let s=(o,c)=>{c?.sessionId&&(this._currentSessionId=c.sessionId),o!=="FAILED"&&(this.transitionTo(o),this.fireStateCallback(o,t,e.orderRef))},i=await this.strategy.refundTransaction(e,s);return i.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i))):this._cancellationIntent||i.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(i))),this.logger?.info("Refund completed",{success:i.success,orderRef:e.orderRef}),i}catch(s){if(this.logger?.error("Refund failed",s),this._cancellationIntent){try{if(this._currentSessionId){let o=await this.strategy.verifyFinalStatus(e,this._currentSessionId);return o.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(o)),o):o.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),o):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(o)),o)}}catch(o){this.logger?.warn("Refund final status verification failed",{verifyError:o})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}this.transitionTo("FAILED");let i=this.generateErrorResult(e.orderRef,"UNKNOWN",s instanceof Error?s.message:"Refund failed");return this.safeFireCallback(()=>t.onError?.(i)),i}};recordManualPayment=async(e,n)=>{let t=n??{};if(this.logger?.info("Recording manual payment",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("CONNECTING"),this.safeFireCallback(()=>t.onConnecting?.({orderRef:e.orderRef,refPaymentId:void 0}));try{let r=await this.manualStrategy.recordPayment(e);return this.settleSingleShot(r,e.orderRef,t),r}catch(r){return this.logger?.error("Manual payment failed",r),this.failSingleShot(e.orderRef,r,"Manual payment failed",t)}};voidManualPayment=async(e,n)=>{let t=n??{};if(this.logger?.info("Voiding manual payment",{orderRef:e.orderRef}),this._currentSessionId=e.sessionId,this._cancellationIntent=!1,!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("CONNECTING");try{let r=await this.manualStrategy.voidPayment(e);return this.settleSingleShot(r,e.orderRef,t),r}catch(r){return this.logger?.error("Manual void failed",r),this.failSingleShot(e.orderRef,r,"Void failed",t)}};settleSingleShot(e,n,t){e.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(e))):e.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:n,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(e)))}failSingleShot(e,n,t,r){let s=this.generateErrorResult(e,"NETWORK_ERROR",n instanceof Error?n.message:t);return this.transitionTo("FAILED"),this.safeFireCallback(()=>r.onError?.(s)),s}};var q=(r=>(r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r.OFFLINE="OFFLINE",r.DISCONNECTED="DISCONNECTED",r))(q||{});0&&(module.exports={AppReaderStatus,MunchiPaymentSDK,PaymentInteractionState,SdkPaymentStatus});
|
|
1
|
+
"use strict";var F=Object.defineProperty;var K=Object.getOwnPropertyDescriptor;var q=Object.getOwnPropertyNames;var Y=Object.prototype.hasOwnProperty;var B=(a,e)=>{for(var r in e)F(a,r,{get:e[r],enumerable:!0})},$=(a,e,r,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of q(e))!Y.call(a,n)&&n!==r&&F(a,n,{get:()=>e[n],enumerable:!(t=K(e,n))||t.enumerable});return a};var Q=a=>$(F({},"__esModule",{value:!0}),a);var ce={};B(ce,{AppReaderStatus:()=>G,MunchiPaymentSDK:()=>x,PaymentInteractionState:()=>E,SdkPaymentStatus:()=>C});module.exports=Q(ce);var h=require("@munchi_oy/core");var M="1.10.2";var l=class a extends Error{code;rawError;constructor(e,r,t){super(r),this.name="PaymentSDKError",this.code=e,this.rawError=t,Object.setPrototypeOf(this,a.prototype)}};var R=require("@munchi_oy/core");var C=(i=>(i.PENDING="PENDING",i.SUCCESS="SUCCESS",i.APPROVED="APPROVED",i.FAILED="FAILED",i.CANCELLED="CANCELLED",i.ERROR="ERROR",i))(C||{}),E=(c=>(c.IDLE="IDLE",c.CONNECTING="CONNECTING",c.REQUIRES_INPUT="REQUIRES_INPUT",c.PROCESSING="PROCESSING",c.SUCCESS="SUCCESS",c.FAILED="FAILED",c.INTERNAL_ERROR="INTERNAL_ERROR",c.VERIFYING="VERIFYING",c))(E||{});var N=class{constructor(e,r,t){this.messaging=r;this.config=t;this.api=new R.PaymentApi(void 0,"",e)}api;abortController=null;currentRequestId=null;paymentProvider=R.PaymentProviderEnum.Nets;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),referenceId:e.orderRef,currency:e.currency,displayId:e.displayId,options:{allowPinBypass:!0,transactionType:R.TransactionType.Purchase}};try{let{data:n}=await this.api.initiateNetsTerminalTransaction(t),s=n.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(n){throw this.currentRequestId=null,n instanceof l?n:new l("TERMINAL_BUSY","Failed to create Nets Intent",n)}}async waitForPaymentCompletion(e,r,t){let n=`nets.requests.${e}`,s=R.PaymentEventType.StatusChanged;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};t.addEventListener("abort",d);let m=this.messaging.subscribe(n,s,p=>{c||p.status===R.SimplePaymentStatus.Pending||(u(),t.removeEventListener("abort",d),i(this.handleSuccess(p)))}),f=setTimeout(async()=>{if(!(c||t.aborted))try{let p=await this.pollOrderStatus(e,r,this.config.storeId,t);i(this.handleSuccess(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{t.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,r,t,n){let c=Date.now()+12e4;for(;Date.now()<c;){if(n.aborted)throw new Error("Aborted");try{let{data:u}=await this.api.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(u.status!==R.SimplePaymentStatus.Pending)return u}catch(u){if(u instanceof Error&&u.message==="Aborted")throw u}await new Promise(u=>{let d=()=>{clearTimeout(m),u(void 0)};n.addEventListener("abort",d,{once:!0});let m=setTimeout(()=>{n.removeEventListener("abort",d),u(void 0)},2e3)})}throw new Error("Payment verification timed out.")}async cancelTransaction(e){if(!this.currentRequestId)return!1;let r={requestId:this.currentRequestId,businessId:Number(this.config.storeId)};try{return await this.api.cancelNetsTerminalTransaction(r),this.abortController?.abort(),this.currentRequestId=null,!0}catch{return!1}}async refundTransaction(e,r){try{this.abortController=new AbortController;let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:this.config.kioskId,referenceId:e.orderRef,options:{allowPinBypass:!0,transactionType:R.TransactionType.ReturnOfGoods}},{data:n}=await this.api.initiateNetsTerminalTransaction(t),s=n.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(t){throw this.currentRequestId=null,t instanceof l||t instanceof l?t:new l("NETWORK_ERROR","Failed to refund Nets transaction",t)}}async verifyFinalStatus(e,r){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r});return this.handleSuccess(t)}catch(t){throw new l("NETWORK_ERROR","Failed to verify final Nets status",t)}}handleSuccess(e){let r=e.status===R.SimplePaymentStatus.Success,t=e.status===R.SimplePaymentStatus.Pending,n={success:r,status:r?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,transaction:e.transaction};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.code&&(n.errorCode=e.error.code),e.error?.message&&(n.errorMessage=e.error.message),n}abort(){this.abortController?.abort()}};var y=require("@munchi_oy/core");var w=a=>{if(!a)return 0;let e=Number.parseInt(a,10);return Number.isFinite(e)?e:0},U=a=>{if(!a)return new Date().toISOString();let e=new Date(a);return Number.isNaN(e.getTime())?new Date().toISOString():e.toISOString()};var X="vivapayclient://pay/v1",H="abort",J="cancel",Z="sale",k="transactionDetails",ee=4e3,te="534287",re="38",ne="493591",se="497439",ie=[ne,se],oe=["CREDIT","PREPAID","CORPORATE"],D=class{constructor(e,r,t,n){this.config=t;this.appToAppConfig=n;this.api=new y.VivaApi(void 0,"",e),this.paymentApi=new y.PaymentApi(void 0,"",e),this.paymentApiWithReference=this.paymentApi}api;paymentApi;abortController=null;currentClientTransactionId=null;currentIsvClientTransactionId=null;currentCurrency=null;currentOrderRef=null;currentSourceTerminalId=null;latestResult=null;paymentApiWithReference;wasCancelled=!1;getExecutionMode(){return"callback_driven"}async processPayment(e,r){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");r("CONNECTING");try{let{data:t}=await this.api.createVivaAppToAppPayment(this.buildCreatePaymentPayload(e));return await this.runAction(Z,this.buildLaunchParams(t),e,r)}catch(t){throw new l("NETWORK_ERROR","Failed to create Viva app-to-app payment",t)}}async cancelTransaction(e){if(!this.currentClientTransactionId)return!1;let r=await this.lookupTransactionDetails();if(r)return this.latestResult=r,this.wasCancelled=r.status==="CANCELLED",this.abortController?.abort(),!0;try{await this.appToAppConfig.adapter.openUrl(this.buildActionUrl(H,{}))}catch(t){throw this.abortController?.abort(),new l("NETWORK_ERROR","Failed to launch Viva abort flow",t)}return this.wasCancelled=!0,this.abortController?.abort(),!0}async refundTransaction(e,r){r("CONNECTING");let t=await this.fetchPaymentReference(e),n=this.buildRefundLaunchParams(e,t);return this.runAction(J,n,e,r)}async verifyFinalStatus(e,r){return this.latestResult?this.latestResult:this.wasCancelled?{success:!1,status:"CANCELLED",orderId:this.currentOrderRef??r,errorCode:y.PaymentFailureCode.PaymentCancelledByUser,errorMessage:"Transaction was cancelled",transactionId:r}:{success:!1,status:"PENDING",orderId:this.currentOrderRef??r,transactionId:r}}abort(){this.abortController?.abort()}async runAction(e,r,t,n){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");this.abortController=new AbortController,this.latestResult=null,this.wasCancelled=!1,this.currentCurrency=t.currency,this.currentOrderRef=t.orderRef,this.currentSourceTerminalId=r.sourceTerminalId??r.tid??null,this.currentClientTransactionId=r.clientTransactionId??null,this.currentIsvClientTransactionId=r.ISV_clientTransactionId??null;let s=this.currentClientTransactionId?{sessionId:this.currentClientTransactionId}:void 0;return new Promise((i,o)=>{let c=(m,f)=>{m?.(),this.abortController?.signal.removeEventListener("abort",f)},u=()=>{c(d,u),o(new Error("Aborted"))},d=this.appToAppConfig.adapter.subscribe(m=>{if(this.abortController?.signal.aborted)return;let f=this.parseCallbackUrl(m);f&&this.matchesKnownTransactionId(f.rawParams)&&(this.latestResult=f.result,this.wasCancelled=f.result.status==="CANCELLED",this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,c(d,u),i(f.result))});this.abortController?.signal.addEventListener("abort",u),n("REQUIRES_INPUT",s),this.appToAppConfig.adapter.openUrl(this.buildActionUrl(e,r)).then(()=>{this.abortController?.signal.aborted}).catch(m=>{c(d,u),this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,o(new l("NETWORK_ERROR","Failed to launch Viva app",m))})})}buildCreatePaymentPayload(e){let r=e.options??{},t={amount:e.amountCents,referenceId:e.orderRef,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!1,showTransactionResult:!1};return r.tipAmount!==void 0&&(t.tipAmount=r.tipAmount),t}buildLaunchParams(e){let r={};return Object.entries(e).forEach(([t,n])=>{n!==void 0&&(r[t]=String(n))}),r}buildRefundLaunchParams(e,r){let t=e.options??{},n=r?.originalTransactionId?.trim()||e.originalTransactionId.trim(),s={amount:String(e.amountCents),clientTransactionId:n,show_receipt:"false",show_transaction_result:"false"};if(t.sourceCode&&(s.sourceCode=t.sourceCode),r?.referenceCode&&(s.orderCode=r.referenceCode),r?.shortReferenceCode&&(s.shortOrderCode=r.shortReferenceCode),r?.receiptNumber&&(s.referenceNumber=r.receiptNumber),r?.terminalId&&(s.tid=r.terminalId),r?.referenceCode||r?.shortReferenceCode||r?.receiptNumber)return s;let i=n;return/^\d+$/.test(i)&&(i.length===16?s.orderCode=i:i.length===10?s.shortOrderCode=i:s.referenceNumber=i),s}async fetchPaymentReference(e){try{let r={orderId:e.orderRef,provider:y.PaymentProvider.Viva,transactionId:e.originalTransactionId,businessId:e.businessId},{data:t}=await this.paymentApiWithReference.getPaymentReference(r);return this.extractPaymentReferenceContext(t)}catch{return}}extractPaymentReferenceContext(e){if(!e)return;let r=e.references;if(!r||typeof r!="object"||Array.isArray(r))return{originalTransactionId:e.originalTransactionId};let t=r,n={originalTransactionId:this.readReferenceValue(t.originalTransactionId)??this.readReferenceValue(t.clientTransactionId)??e.originalTransactionId},s=this.readReferenceValue(t.receiptNumber)??this.readReferenceValue(t.referenceNumber),i=this.readReferenceValue(t.referenceCode)??this.readReferenceValue(t.orderCode),o=this.readReferenceValue(t.shortReferenceCode)??this.readReferenceValue(t.shortOrderCode),c=this.readReferenceValue(t.terminalId)??this.readReferenceValue(t.tid);return s&&(n.receiptNumber=s),i&&(n.referenceCode=i),o&&(n.shortReferenceCode=o),c&&(n.terminalId=c),n}readReferenceValue(e){if(typeof e!="string")return;let r=e.trim();return r.length>0?r:void 0}buildActionUrl(e,r){let t=new URLSearchParams({action:e,appId:this.appToAppConfig.appId,callback:this.resolveCallbackQueryParam()});return Object.entries(r).forEach(([n,s])=>{t.set(n,s)}),`${X}?${t.toString()}`}parseCallbackUrl(e){if(!this.matchesCallbackBase(e))return null;let r=new URL(e),t=Object.fromEntries(r.searchParams.entries()),n=this.isSuccessfulCallback(t),s=this.isCancelledCallback(t),i=this.resolveFailureCode(t,s),o={success:n,status:n?"SUCCESS":s?"CANCELLED":"FAILED",orderId:this.currentOrderRef??t.clientTransactionId??"unknown",errorCode:n?"":i,errorMessage:n?"":t.message??"Transaction failed without error details"};n&&(o.transaction=this.mapCallbackToTransaction(t));let c=t.transactionId??t.orderCode??t.clientTransactionId,u=t.errorCode??this.extractErrorReferenceFromMessage(t.message)??t.referenceNumber??t.tid??t.rrn;return c&&(o.transactionId=c),u&&(o.errorReference=u),{rawParams:t,result:o}}matchesCallbackBase(e){let r=new URL(e),t=this.appToAppConfig.callbackUrl;if(!t.includes("://")){let s=t.replace(/:$/,"");return r.protocol===`${s}:`}let n=new URL(t);return r.protocol===n.protocol&&r.hostname===n.hostname&&r.pathname===n.pathname}resolveCallbackQueryParam(){if(this.appToAppConfig.callbackParamFormat!=="scheme-only")return this.appToAppConfig.callbackUrl;let e=this.appToAppConfig.callbackUrl;return e.includes("://")?new URL(e).protocol.replace(/:$/,""):e.replace(/:$/,"")}matchesKnownTransactionId(e){let r=[this.currentClientTransactionId,this.currentIsvClientTransactionId].filter(n=>!!n);if(r.length===0)return!0;let t=[e.clientTransactionId,e.ISV_clientTransactionId].filter(n=>!!n);return t.length===0?!0:t.some(n=>r.includes(n))}resolveFailureCode(e,r){if(r)return y.PaymentFailureCode.PaymentCancelledByUser;let t=e.errorCode;if(t?.includes("."))return t;if(this.isTransactionDetailsAction(e)&&(e.transactionType??"").toLowerCase().includes("abort"))return y.PaymentFailureCode.SystemUnknown;let n=(e.message??"").toLowerCase(),s=(e.status??"").toLowerCase();return n.includes("declined")||s==="declined"||s==="fail"||s==="failed"||s==="failure"?y.PaymentFailureCode.PaymentDeclined:y.PaymentFailureCode.SystemUnknown}isSuccessfulCallback(e){let r=(e.status??"").toLowerCase();return this.isTransactionDetailsAction(e)?r!=="success"?!1:!(e.transactionType??"").toLowerCase().includes("abort"):r==="success"}isTransactionDetailsAction(e){return(e.action??"").toLowerCase()===k.toLowerCase()}isCancelledCallback(e){let r=(e.status??"").toLowerCase(),t=(e.message??"").toLowerCase(),n=(e.errorCode??"").toLowerCase();return r==="cancelled"||r==="canceled"||t.includes("user_cancel")||t.includes("user cancel")||t.includes("cancelled by user")||t.includes("canceled by user")||t.includes("transaction cancelled by user")||t.includes("transaction canceled by user")||n.includes("user_cancel")||n.includes("user cancel")||n==="1000"&&(t.includes("cancelled by user")||t.includes("canceled by user"))}extractErrorReferenceFromMessage(e){return e?e.match(/\((-?\d+)\)/)?.[1]:void 0}mapCallbackToTransaction(e){let r=e.transactionId??e.orderCode??e.clientTransactionId??"unknown",t=U(e.transactionDate),n=w(e.tipAmount),s=w(e.surchargeAmount);return{amount:w(e.amount)-n-s,cardDetail:{aid:e.aid??null,applicationLabel:e.applicationLabel??null,cardNumber:e.accountNumber??"N/A",cardType:e.cardType??"N/A",issuer:e.bankId??null,orderCode:e.orderCode??null,timestamp:t,transactionId:r},createdAt:t,fees:this.buildFees(n,s),id:r,label:null,provider:y.PaymentProvider.Viva,rawData:e,referenceId:e.clientTransactionId??null,roundingDifference:0,type:this.getVivaPaymentMethodType(e)}}getVivaPaymentMethodType(e){let r=(e.applicationLabel??"").toUpperCase().trim(),n=(e.accountNumber??"").substring(0,6),s=(e.bankId??"").trim();return n===te||s===re?y.PaymentMethod.Edenred:ie.includes(n)?y.PaymentMethod.WoltBenefit:oe.some(i=>r.includes(i))?y.PaymentMethod.Credit:y.PaymentMethod.Debit}buildFees(e,r){if(!this.currentCurrency)return null;let t=[];return e>0&&t.push({taxAmount:0,total:{amount:e,currency:this.currentCurrency},type:y.FeeType.TipAmount,vatPercentage:0}),r>0&&t.push({taxAmount:0,total:{amount:r,currency:this.currentCurrency},type:y.FeeType.Surcharge,vatPercentage:0}),t.length===0?null:{parts:t}}async lookupTransactionDetails(){if(!this.currentClientTransactionId||!this.currentSourceTerminalId)return null;let e={clientTransactionId:this.currentClientTransactionId,sourceTerminalId:this.currentSourceTerminalId};return new Promise(r=>{let t=!1,n=setTimeout(()=>{t||(t=!0,s(),r(null))},ee),s=this.appToAppConfig.adapter.subscribe(i=>{if(t)return;let o=this.parseCallbackUrl(i);o&&this.matchesKnownTransactionId(o.rawParams)&&(t=!0,clearTimeout(n),s(),r(o.result))});this.appToAppConfig.adapter.openUrl(this.buildActionUrl(k,e)).catch(()=>{t||(t=!0,clearTimeout(n),s(),r(null))})})}};var T=require("@munchi_oy/core");var g=require("@munchi_oy/core");function ae(a){throw new l("UNKNOWN",`Unhandled payment session status: ${String(a)}`)}function _(a){return{success:!1,status:"PENDING",orderId:a,errorCode:"",errorMessage:""}}function V(a,e){switch(a.status){case g.PaymentSessionStatus.Initiated:case g.PaymentSessionStatus.Processing:case g.PaymentSessionStatus.Voiding:case g.PaymentSessionStatus.Refunding:return _(e);case g.PaymentSessionStatus.Success:case g.PaymentSessionStatus.Closed:{let r={success:!0,status:"SUCCESS",orderId:e,errorCode:"",errorMessage:""};return a.providerTransactionId&&(r.transactionId=a.providerTransactionId),r}case g.PaymentSessionStatus.VoidFailed:case g.PaymentSessionStatus.Failed:{let r={success:!1,status:"FAILED",orderId:e,errorCode:a.errorCode||g.PaymentFailureCode.SystemUnknown,errorMessage:a.errorMessage||"Transaction failed without error details"};return a.providerTransactionId&&(r.transactionId=a.providerTransactionId),r}case g.PaymentSessionStatus.Cancelled:case g.PaymentSessionStatus.Voided:case g.PaymentSessionStatus.Refunded:{let r={success:!1,status:"CANCELLED",orderId:e};return a.errorCode&&(r.errorCode=a.errorCode),a.errorMessage&&(r.errorMessage=a.errorMessage),a.providerTransactionId&&(r.transactionId=a.providerTransactionId),r}default:return ae(a.status)}}var O=class a{constructor(e,r,t){this.messaging=r;this.config=t;this.sessionApi=new T.PaymentSessionApi(void 0,"",e)}static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=1e3;static VERIFY_DURATION_MS=3e4;static INITIAL_POLL_DELAY_MS=1e4;sessionApi;abortController=null;idempotencyKey=null;idempotencyOrderRef=null;currentClientToken=null;async processPayment(e,r){this.abortController=new AbortController,(this.idempotencyKey===null||this.idempotencyOrderRef!==e.orderRef)&&(this.idempotencyKey=this.generateIdempotencyKey(),this.idempotencyOrderRef=e.orderRef),this.currentClientToken=null,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),orderId:e.orderRef};e.splitContext!==void 0&&(t.splitContext=e.splitContext);try{let{data:n}=await this.sessionApi.initiateVivaSession(t,this.idempotencyKey);this.currentClientToken=n.clientToken;let s=this.abortController.signal;if(s.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:n.sessionId});let i=await this.waitForCompletion(n.clientToken,n.sessionId,e,s);return i?this.finalize(i):(await this.armCancel(n.clientToken),_(e.orderRef))}catch(n){throw n instanceof l?n:new l("NETWORK_ERROR","Failed to create Viva payment session",n)}}async verifyFinalStatus(e,r){if(!this.currentClientToken)throw new l("NETWORK_ERROR","No active payment session to verify");let t=await this.pollUntilTerminal(this.currentClientToken,e,void 0,a.VERIFY_DURATION_MS);return this.finalize(t??_(e.orderRef))}async cancelTransaction(e){if(!this.currentClientToken)return!1;try{await this.sessionApi.cancelVivaSession(this.currentClientToken)}catch(r){throw new l("NETWORK_ERROR","Failed to cancel Viva payment session",r)}return this.abortController?.abort(),!0}async refundTransaction(e,r){try{let t={sessionId:e.originalTransactionId,amount:e.amountCents},{data:n}=await this.sessionApi.refundVivaSession(t),s=n.status===T.PaymentSessionStatus.Refunded||n.status===T.PaymentSessionStatus.Refunding,i={success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.providerTransactionId??n.sessionId};return s||(n.errorCode&&(i.errorCode=n.errorCode),n.errorMessage&&(i.errorMessage=n.errorMessage)),i}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}async revertTransaction(e){try{let r={sessionId:e.originalTransactionId},{data:t}=await this.sessionApi.revertVivaSession(r),n=t.status===T.PaymentSessionStatus.Refunded||t.status===T.PaymentSessionStatus.Refunding,s={success:n,status:n?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:t.providerTransactionId??t.sessionId};return n||(t.errorCode&&(s.errorCode=t.errorCode),t.errorMessage&&(s.errorMessage=t.errorMessage)),s}catch(r){throw new l("NETWORK_ERROR","Failed to revert Viva transaction",r)}}abort(){this.abortController?.abort()}async pollUntilTerminal(e,r,t,n){let s=Date.now()+n;for(;Date.now()<s;){if(t?.aborted)throw new Error("Aborted");let i;try{i=(await this.sessionApi.getPaymentSession(e)).data}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}if(t?.aborted)throw new Error("Aborted");if(i){let o=V(i,r.orderRef);if(o.status!=="PENDING")return o}await this.delay(a.POLLING_INTERVAL_MS,t)}}waitForCompletion(e,r,t,n){let s=`viva.${this.config.channel.toLowerCase()}.requests.${r}`;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f),n.removeEventListener("abort",d)},d=()=>{u(),o(new Error("Aborted"))};n.addEventListener("abort",d);let m=this.messaging.subscribe(s,"payment:status-changed",p=>{c||p.status!==T.SimplePaymentStatus.Pending&&(u(),i(this.mapStatusDto(p,t)))}),f=setTimeout(()=>{c||this.pollUntilTerminal(e,t,n,a.POLLING_DURATION_MS).then(p=>{c||(u(),i(p))},p=>{c||(u(),o(p))})},a.INITIAL_POLL_DELAY_MS)})}mapStatusDto(e,r){let t=e.status===T.SimplePaymentStatus.Success,n={success:t,status:t?"SUCCESS":"FAILED",orderId:r.orderRef,errorCode:e.error?.code||(t?"":T.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(t?"":"Transaction failed without error details")};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.referenceError&&(n.errorReference=e.error.referenceError),e.transaction&&(n.transaction=e.transaction),n}finalize(e){return e.status!=="PENDING"&&(this.idempotencyKey=null,this.idempotencyOrderRef=null),e}armCancel(e){return this.sessionApi.cancelVivaSession(e).then(()=>{},()=>{})}generateIdempotencyKey(){let e=globalThis.crypto;return e?.randomUUID?e.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,r=>{let t=Math.random()*16|0;return(r==="x"?t:t&3|8).toString(16)})}delay(e,r){return new Promise(t=>{let n=()=>{clearTimeout(s),t()};r&&r.addEventListener("abort",n,{once:!0});let s=setTimeout(()=>{r&&r.removeEventListener("abort",n),t()},e)})}};var P=require("@munchi_oy/core");var A=class a{constructor(e,r,t){this.messaging=r;this.config=t;this.api=new P.PaymentApi(void 0,"",e)}static INITIAL_POLL_DELAY_MS=1e4;static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=2e3;static TIMEOUT_CANCEL_TIMEOUT_MS=5e3;static VERIFY_TIMEOUT_MS=1e4;static VERIFY_MAX_RETRIES=3;static VERIFY_RETRY_DELAY_MS=1500;api;abortController=null;currentSessionId=null;paymentProvider=P.PaymentProviderEnum.Viva;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,referenceId:e.orderRef,businessId:parseInt(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!0,showTransactionResult:!0};try{let{data:n}=await this.api.initiateTerminalTransaction(t);if(this.currentSessionId=n.sessionId,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:n.sessionId});let s=await this.waitForPaymentCompletion(n.sessionId,e,this.abortController.signal);return this.currentSessionId=null,s}catch(n){throw this.currentSessionId=null,n instanceof l?n:new l("NETWORK_ERROR","Failed to create Viva Intent",n)}}async waitForPaymentCompletion(e,r,t){let s=`viva.${this.config.channel.toLowerCase()}.requests.${e}`,i="payment:status-changed";return new Promise((o,c)=>{let u=!1,d=()=>{u=!0,typeof f=="function"&&f(),clearTimeout(p)},m=()=>{d(),c(new Error("Aborted"))};t.addEventListener("abort",m);let f=this.messaging.subscribe(s,i,S=>{u||S.status!==P.SimplePaymentStatus.Pending&&(d(),t.removeEventListener("abort",m),o(this.handleSuccess(S)))}),p=setTimeout(async()=>{if(!(u||t.aborted))try{let S=await this.pollOrderStatus(e,r.orderRef,this.config.storeId,t);if(u)return;o(this.handleSuccess(S))}catch(S){if(u)return;if(S instanceof Error&&S.message==="Aborted"){c(S);return}try{let v=await this.recoverAfterPollingTimeout(r,e);o(v)}catch(v){c(v instanceof l?v:new l("TIMEOUT","Payment timed out and polling failed",v))}}finally{t.removeEventListener("abort",m),d()}},a.INITIAL_POLL_DELAY_MS)})}async pollOrderStatus(e,r,t,n){let i=Date.now()+a.POLLING_DURATION_MS;for(;Date.now()<i;){if(n.aborted)throw new Error("Aborted");try{let{data:o}=await this.api.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(o.status!==P.SimplePaymentStatus.Pending)return o}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}await new Promise(o=>{let c=()=>{clearTimeout(u),o(void 0)};n.addEventListener("abort",c,{once:!0});let u=setTimeout(()=>{n.removeEventListener("abort",c),o(void 0)},a.POLLING_INTERVAL_MS)})}throw new Error("Payment verification timed out.")}async recoverAfterPollingTimeout(e,r){return await this.cancelSessionWithTimeout(r),await this.verifyFinalStatusWithRetry(e,r)}async cancelSessionWithTimeout(e){let r;try{await Promise.race([this.cancelSession(e),new Promise((t,n)=>{r=setTimeout(()=>{n(new Error("Viva timeout cancellation timed out"))},a.TIMEOUT_CANCEL_TIMEOUT_MS)})])}catch{}finally{r&&clearTimeout(r)}}async cancelSession(e){return await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:e}),this.currentSessionId===e&&(this.currentSessionId=null),!0}async verifyFinalStatusWithRetry(e,r){let t;for(let n=1;n<=a.VERIFY_MAX_RETRIES;n++)try{let s=await Promise.race([this.verifyFinalStatus(e,r),new Promise((i,o)=>setTimeout(()=>o(new Error("Verify timed out")),a.VERIFY_TIMEOUT_MS))]);if(s.status==="PENDING"){t=new Error("Verify returned pending status"),n<a.VERIFY_MAX_RETRIES&&await new Promise(i=>setTimeout(i,a.VERIFY_RETRY_DELAY_MS));continue}return s}catch(s){t=s,n<a.VERIFY_MAX_RETRIES&&await new Promise(i=>setTimeout(i,a.VERIFY_RETRY_DELAY_MS))}throw new l(P.PaymentFailureCode.PaymentTimeout,"Payment Failed",t)}handleSuccess(e){let r=e.status===P.SimplePaymentStatus.Success,t={success:r,status:r?"SUCCESS":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(r?"":P.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(r?"":"Transaction failed without error details")};return e.transactionId&&(t.transactionId=e.transactionId),e.error?.referenceError&&(t.errorReference=e.error.referenceError),e.transaction&&(t.transaction=e.transaction),t}async cancelTransaction(e){if(!this.currentSessionId)return!1;try{let r=this.currentSessionId;return this.currentSessionId=null,await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:r}),this.abortController?.abort(),!0}catch(r){throw this.currentSessionId=null,new l("NETWORK_ERROR","Failed to cancel Viva transaction",r)}}async verifyFinalStatus(e,r){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r}),n=t.status===P.SimplePaymentStatus.Success,s=t.status===P.SimplePaymentStatus.Pending,i={success:n,status:n?"SUCCESS":s?"PENDING":"FAILED",orderId:t.orderId,errorCode:t.error?.code||(n||s?"":P.PaymentFailureCode.SystemUnknown),errorMessage:t.error?.message||(n||s?"":"Transaction failed without error details")};return t.transactionId&&(i.transactionId=t.transactionId),t.error?.referenceError&&(i.errorReference=t.error.referenceError),t.transaction&&(i.transaction=t.transaction),i}catch(t){throw new l("NETWORK_ERROR","Failed to verify final transaction status",t)}}async refundTransaction(e,r){try{let t={amount:e.amountCents,businessId:Number(this.config.storeId),displayId:this.config.kioskId,currency:e.currency,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId},{data:n}=await this.api.refundSingleVivaTransaction(t),s=n.success;return{success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.sessionId}}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}};var I=require("@munchi_oy/core"),W=require("axios");var L=class{constructor(e,r,t){this.messaging=r;this.config=t;this.paymentApi=new I.PaymentApi(void 0,"",e),this.worldlineApi=new I.WorldlineApi(void 0,"",e)}paymentApi;worldlineApi;abortController=null;currentOperationId=null;paymentProvider=I.PaymentProviderEnum.Worldline;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,referenceId:e.orderRef,showReceipt:!0,showTransactionResult:!0,...e.options&&"tipAmount"in e.options&&typeof e.options.tipAmount=="number"?{tipAmount:e.options.tipAmount}:{}};try{let n=await this.worldlineApi.createPayment(t),s=this.extractOperationId(n.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,I.PaymentEventType.StatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(n){throw this.currentOperationId=null,n instanceof l?n:this.mapWorldlineRequestError(n,"Failed to create Worldline payment")}}async cancelTransaction(e){if(!this.currentOperationId)return!1;let r={businessId:Number(this.config.storeId),targetOperationId:this.currentOperationId};try{return await this.worldlineApi.cancelPayment(r),!0}catch(t){throw this.mapWorldlineRequestError(t,"Failed to cancel Worldline transaction")}}async refundTransaction(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId};try{let n=await this.worldlineApi.createRefund(t),s=this.extractOperationId(n.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,I.PaymentEventType.RefundStatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(n){throw this.currentOperationId=null,n instanceof l?n:this.mapWorldlineRequestError(n,"Failed to refund Worldline transaction")}}async verifyFinalStatus(e,r){try{let{data:t}=await this.paymentApi.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r});return this.handlePaymentStatus(t)}catch(t){throw this.mapWorldlineRequestError(t,"Failed to verify final Worldline status")}}abort(){this.abortController?.abort()}async waitForPaymentCompletion(e,r,t,n){let s=`worldline.requests.${e}`;return new Promise((i,o)=>{let c=!1,u=()=>{c=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};n.addEventListener("abort",d);let m=this.messaging.subscribe(s,t,p=>{c||p.status===I.SimplePaymentStatus.Pending||(u(),n.removeEventListener("abort",d),i(this.handlePaymentStatus(p)))}),f=setTimeout(async()=>{if(!(c||n.aborted))try{let p=await this.pollOrderStatus(e,r,this.config.storeId,n);i(this.handlePaymentStatus(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{n.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,r,t,n){let o=Date.now()+12e4;for(;Date.now()<o;){if(n.aborted)throw new Error("Aborted");try{let{data:c}=await this.paymentApi.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(c.status!==I.SimplePaymentStatus.Pending)return c}catch(c){if(c instanceof Error&&c.message==="Aborted")throw c}await new Promise(c=>{let u=()=>{clearTimeout(d),c(void 0)};n.addEventListener("abort",u,{once:!0});let d=setTimeout(()=>{n.removeEventListener("abort",u),c(void 0)},2e3)})}throw new Error("Payment verification timed out.")}handlePaymentStatus(e){let r=e.status===I.SimplePaymentStatus.Success,t=e.status===I.SimplePaymentStatus.Pending,n={success:r,status:r?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(r||t?"":I.PaymentFailureCode.SystemUnknown),errorMessage:e.error?.message||(r||t?"":"Transaction failed without error details")};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.referenceError&&(n.errorReference=e.error.referenceError),e.transaction&&(n.transaction=e.transaction),n}extractOperationId(e){let r=typeof e=="object"&&e!==null&&"operationId"in e&&typeof e.operationId=="string"?e.operationId:null;if(!r)throw new Error("operationId is missing from response.");return r}mapWorldlineRequestError(e,r){if((0,W.isAxiosError)(e)){if(e.response?.status===400||e.response?.status===409)return new l("TERMINAL_BUSY",r,e);if(e.response?.status===404)return new l("TERMINAL_OFFLINE",r,e)}return new l("NETWORK_ERROR",r,e)}};var x=class a{strategy;axios;messaging;timeoutMs;logger;_currentState="IDLE";_listeners=[];_cancellationIntent=!1;_currentSessionId;_autoResetTimer;autoResetOptions;appToAppConfig;paymentSessionConfig;static TERMINAL_STATES=["SUCCESS","FAILED","INTERNAL_ERROR"];static RESTING_STATES=["IDLE",...a.TERMINAL_STATES];constructor(e,r,t,n={},s){this.axios=e,this.messaging=r,this.logger=n.logger,this.timeoutMs=n.timeoutMs||3e4,this.autoResetOptions=n.autoResetOnPaymentComplete,this.appToAppConfig=n.appToApp,this.paymentSessionConfig=n.paymentSession,this.strategy=s??this.resolveStrategy(t)}get version(){return M}get currentState(){return this._currentState}generateErrorResult(e,r,t){return{success:!1,status:"ERROR",errorCode:this.normalizeErrorCode(r),errorMessage:t,orderId:e}}normalizeErrorCode(e){return e?e.includes(".")?e:{CANCELLED:h.PaymentFailureCode.PaymentCancelledByUser,DECLINED:h.PaymentFailureCode.PaymentDeclined,TERMINAL_BUSY:h.PaymentFailureCode.TerminalBusy,TERMINAL_OFFLINE:h.PaymentFailureCode.TerminalOffline,TIMEOUT:h.PaymentFailureCode.TerminalTimeout,NETWORK_ERROR:h.PaymentFailureCode.SystemProviderError,STRATEGY_ERROR:h.PaymentFailureCode.SystemProviderError,MISSING_CONFIG:h.PaymentFailureCode.SystemUnknown,INVALID_AMOUNT:h.PaymentFailureCode.SystemUnknown,UNKNOWN:h.PaymentFailureCode.SystemUnknown}[e]??h.PaymentFailureCode.SystemUnknown:h.PaymentFailureCode.SystemUnknown}subscribe=e=>(this._listeners.push(e),e(this._currentState),()=>{this._listeners=this._listeners.filter(r=>r!==e)});transitionTo(e){if(this._currentState===e)return;if(e==="IDLE"){this.cancelAutoReset(),this._currentState=e,this._listeners.forEach(t=>t(e));return}if(a.TERMINAL_STATES.includes(this._currentState)){let t=`Invalid State Transition: Attempted to move from terminal state ${this._currentState} to ${e}`;throw this.logger?.error(t),this._currentState!=="INTERNAL_ERROR"&&(this._currentState="INTERNAL_ERROR",this._listeners.forEach(n=>n(this._currentState))),new l("UNKNOWN",t)}this._currentState=e,a.TERMINAL_STATES.includes(e)&&this.scheduleAutoReset(e),this._listeners.forEach(t=>t(e))}_resetScheduledAt;get nextAutoResetAt(){return this._resetScheduledAt}cancelAutoReset(){this._autoResetTimer&&(clearTimeout(this._autoResetTimer),this._autoResetTimer=void 0),this._resetScheduledAt=void 0}scheduleAutoReset(e){if(!this.autoResetOptions)return;let t=e==="SUCCESS"?this.autoResetOptions.successDelayMs??5e3:this.autoResetOptions.failureDelayMs??5e3;this.logger?.info(`Scheduling auto-reset to IDLE in ${t}ms`),this._resetScheduledAt=Date.now()+t,this._autoResetTimer=setTimeout(()=>{this.logger?.info("Auto-reset triggered"),this.reset()},t)}resolveStrategy(e){switch(e.provider){case h.PaymentProvider.Nets:return new N(this.axios,this.messaging,e);case h.PaymentProvider.Worldline:return new L(this.axios,this.messaging,e);case h.PaymentProvider.Viva:return this.appToAppConfig?.enabled?new D(this.axios,this.messaging,e,this.appToAppConfig):this.paymentSessionConfig?.enabled?new O(this.axios,this.messaging,e):new A(this.axios,this.messaging,e);default:return new A(this.axios,this.messaging,e)}}initiateTransaction=async(e,r)=>{let t=r??{},n=e.orderRef;if(!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let i=Date.now();if(this._cancellationIntent=!1,this._currentSessionId=void 0,this.transitionTo("IDLE"),e.amountCents<=0)return this.generateErrorResult(e.orderRef,"INVALID_AMOUNT","Amount must be greater than 0");try{let o=(m,f)=>{f?.sessionId&&(this._currentSessionId=f.sessionId),m!=="FAILED"&&(this.transitionTo(m),this.fireStateCallback(m,t,n))},c=this.strategy.processPayment(e,o),d=(this.strategy.getExecutionMode?.()??"managed")==="callback_driven"?await c:await Promise.race([c,new Promise((m,f)=>{setTimeout(()=>{f(new l("TIMEOUT","Transaction timed out"))},this.timeoutMs)})]);if(d.success)this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(d));else{if(this._cancellationIntent)return await this.handleTransactionError(e,new Error("Aborted after resolution"),t);this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(d))}return this.logger?.info("Transaction completed successfully",{orderId:e.orderRef,durationMs:Date.now()-i}),d}catch(o){return this.logger?.warn("Transaction interrupted. Handling final status...",{error:o}),await this.handleTransactionError(e,o,t)}};async handleTransactionError(e,r,t={}){let n=r instanceof l&&(r.code==="TIMEOUT"||r.code===h.PaymentFailureCode.PaymentTimeout);if(!this._cancellationIntent&&!n&&(this.transitionTo("VERIFYING"),this.safeFireCallback(()=>t.onVerifying?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))),this._cancellationIntent){try{if(this._currentSessionId){let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i}}catch(i){this.logger?.warn("Final status verification failed during cancellation",{err:i})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}let s;if(this.strategy.abort(),this._currentSessionId)try{let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i;s=n&&i.status==="PENDING"?this.buildErrorResultFromException(e.orderRef,r):i}catch(i){this.logger?.warn("Failed to get detailed error from verifyFinalStatus",{verifyErr:i}),s=this.buildErrorResultFromException(e.orderRef,i)}else s=this.buildErrorResultFromException(e.orderRef,r);return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(s)),s}buildErrorResultFromException(e,r){return r instanceof l?this.generateErrorResult(e,r.code,r.message):this.generateErrorResult(e,"UNKNOWN",r instanceof Error?r.message:"Unknown fatal error")}fireStateCallback(e,r,t){let n={orderRef:t,refPaymentId:this._currentSessionId};switch(e){case"CONNECTING":this.safeFireCallback(()=>r.onConnecting?.(n));break;case"REQUIRES_INPUT":this.safeFireCallback(()=>r.onRequiresInput?.(n));break;case"PROCESSING":this.safeFireCallback(()=>r.onProcessing?.(n));break}}safeFireCallback(e){try{e()}catch(r){this.logger?.warn("Callback execution failed",{error:r})}}cancel=async()=>{if(this.logger?.info("Attempting cancellation"),a.TERMINAL_STATES.includes(this._currentState))return this.logger?.warn("Cannot cancel: Transaction already in terminal state",{state:this._currentState}),!1;if(!this._currentSessionId&&this._currentState==="IDLE")return this.logger?.warn("Cannot cancel: No active session to cancel",{state:this._currentState}),!1;this._cancellationIntent=!0,this.transitionTo("VERIFYING");try{return await this.strategy.cancelTransaction(r=>this.transitionTo(r))}catch(e){return this.logger?.error("Cancellation command failed",e),!1}};reset=()=>{a.TERMINAL_STATES.includes(this._currentState)&&(this._currentSessionId=void 0,this._cancellationIntent=!1,this.transitionTo("IDLE"))};refund=async(e,r)=>{let t=r??{};if(this.logger?.info("Initiating refund",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("IDLE");try{let s=(o,c)=>{c?.sessionId&&(this._currentSessionId=c.sessionId),o!=="FAILED"&&(this.transitionTo(o),this.fireStateCallback(o,t,e.orderRef))},i=await this.strategy.refundTransaction(e,s);return i.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i))):this._cancellationIntent||i.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(i))),this.logger?.info("Refund completed",{success:i.success,orderRef:e.orderRef}),i}catch(s){if(this.logger?.error("Refund failed",s),this._cancellationIntent){try{if(this._currentSessionId){let o=await this.strategy.verifyFinalStatus(e,this._currentSessionId);return o.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(o)),o):o.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),o):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(o)),o)}}catch(o){this.logger?.warn("Refund final status verification failed",{verifyError:o})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}this.transitionTo("FAILED");let i=this.generateErrorResult(e.orderRef,"UNKNOWN",s instanceof Error?s.message:"Refund failed");return this.safeFireCallback(()=>t.onError?.(i)),i}};revert=async(e,r)=>{let t=r??{};if(this.logger?.info("Reverting payment",{orderRef:e.orderRef}),this._currentSessionId=e.originalTransactionId,this._cancellationIntent=!1,!a.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let n=this.strategy.revertTransaction?.bind(this.strategy);if(!n)return this.generateErrorResult(e.orderRef,"STRATEGY_ERROR","Revert is not supported by the active payment strategy");this.transitionTo("CONNECTING");try{let s=await n(e);return this.settleSingleShot(s,e.orderRef,t),s}catch(s){return this.logger?.error("Revert failed",s),this.failSingleShot(e.orderRef,s,"Revert failed",t)}};settleSingleShot(e,r,t){e.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(e))):e.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:r,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(e)))}failSingleShot(e,r,t,n){let s=this.generateErrorResult(e,"NETWORK_ERROR",r instanceof Error?r.message:t);return this.transitionTo("FAILED"),this.safeFireCallback(()=>n.onError?.(s)),s}};var G=(n=>(n.CONNECTING="CONNECTING",n.CONNECTED="CONNECTED",n.OFFLINE="OFFLINE",n.DISCONNECTED="DISCONNECTED",n))(G||{});0&&(module.exports={AppReaderStatus,MunchiPaymentSDK,PaymentInteractionState,SdkPaymentStatus});
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{PaymentFailureCode as y,PaymentProvider as U}from"@munchi_oy/core";var V="1.10.0";var l=class c extends Error{code;rawError;constructor(e,n,t){super(n),this.name="PaymentSDKError",this.code=e,this.rawError=t,Object.setPrototypeOf(this,c.prototype)}};import{PaymentSessionApi as J,PaymentSessionStatus as W}from"@munchi_oy/core";var I=(i=>(i.PENDING="PENDING",i.SUCCESS="SUCCESS",i.APPROVED="APPROVED",i.FAILED="FAILED",i.CANCELLED="CANCELLED",i.ERROR="ERROR",i))(I||{}),g=(a=>(a.IDLE="IDLE",a.CONNECTING="CONNECTING",a.REQUIRES_INPUT="REQUIRES_INPUT",a.PROCESSING="PROCESSING",a.SUCCESS="SUCCESS",a.FAILED="FAILED",a.INTERNAL_ERROR="INTERNAL_ERROR",a.VERIFYING="VERIFYING",a))(g||{});import{PaymentFailureCode as X,PaymentSessionStatus as h}from"@munchi_oy/core";function H(c){throw new l("UNKNOWN",`Unhandled payment session status: ${String(c)}`)}function b(c){return{success:!1,status:"PENDING",orderId:c,errorCode:"",errorMessage:""}}function v(c,e){switch(c.status){case h.Initiated:case h.Processing:case h.Voiding:case h.Refunding:return b(e);case h.Success:case h.Closed:{let n={success:!0,status:"SUCCESS",orderId:e,errorCode:"",errorMessage:""};return c.providerTransactionId&&(n.transactionId=c.providerTransactionId),n}case h.VoidFailed:case h.Failed:{let n={success:!1,status:"FAILED",orderId:e,errorCode:c.errorCode||X.SystemUnknown,errorMessage:c.errorMessage||"Transaction failed without error details"};return c.providerTransactionId&&(n.transactionId=c.providerTransactionId),n}case h.Cancelled:case h.Voided:case h.Refunded:{let n={success:!1,status:"CANCELLED",orderId:e};return c.errorCode&&(n.errorCode=c.errorCode),c.errorMessage&&(n.errorMessage=c.errorMessage),c.providerTransactionId&&(n.transactionId=c.providerTransactionId),n}default:return H(c.status)}}var A=class{constructor(e,n){this.config=n;this.sessionApi=new J(void 0,"",e)}sessionApi;async recordPayment(e){try{let n={businessId:Number(this.config.storeId),orderId:e.orderRef,amount:e.amountCents,paymethod:e.paymethod,provider:this.config.provider};e.tipAmount!==void 0&&(n.tipAmount=e.tipAmount),e.splitContext!==void 0&&(n.splitContext=e.splitContext),e.metadata!==void 0&&(n.metadata=e.metadata);let{data:t}=await this.sessionApi.recordManualPayment(n);return v(t,e.orderRef)}catch(n){throw new l("NETWORK_ERROR","Failed to record manual payment",n)}}async voidPayment(e){try{let{data:n}=await this.sessionApi.voidManualPayment({sessionId:e.sessionId}),t=n.status===W.Voided||n.status===W.Voiding,r={success:t,status:t?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.providerTransactionId??n.sessionId};return t||(n.errorCode&&(r.errorCode=n.errorCode),n.errorMessage&&(r.errorMessage=n.errorMessage)),r}catch(n){throw new l("NETWORK_ERROR","Failed to void manual payment",n)}}};import{PaymentApi as Z,PaymentEventType as ee,PaymentProviderEnum as te,SimplePaymentStatus as N,TransactionType as G}from"@munchi_oy/core";var w=class{constructor(e,n,t){this.messaging=n;this.config=t;this.api=new Z(void 0,"",e)}api;abortController=null;currentRequestId=null;paymentProvider=te.Nets;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),referenceId:e.orderRef,currency:e.currency,displayId:e.displayId,options:{allowPinBypass:!0,transactionType:G.Purchase}};try{let{data:r}=await this.api.initiateNetsTerminalTransaction(t),s=r.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(r){throw this.currentRequestId=null,r instanceof l?r:new l("TERMINAL_BUSY","Failed to create Nets Intent",r)}}async waitForPaymentCompletion(e,n,t){let r=`nets.requests.${e}`,s=ee.StatusChanged;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};t.addEventListener("abort",d);let m=this.messaging.subscribe(r,s,p=>{a||p.status===N.Pending||(u(),t.removeEventListener("abort",d),i(this.handleSuccess(p)))}),f=setTimeout(async()=>{if(!(a||t.aborted))try{let p=await this.pollOrderStatus(e,n,this.config.storeId,t);i(this.handleSuccess(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{t.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,n,t,r){let a=Date.now()+12e4;for(;Date.now()<a;){if(r.aborted)throw new Error("Aborted");try{let{data:u}=await this.api.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(u.status!==N.Pending)return u}catch(u){if(u instanceof Error&&u.message==="Aborted")throw u}await new Promise(u=>{let d=()=>{clearTimeout(m),u(void 0)};r.addEventListener("abort",d,{once:!0});let m=setTimeout(()=>{r.removeEventListener("abort",d),u(void 0)},2e3)})}throw new Error("Payment verification timed out.")}async cancelTransaction(e){if(!this.currentRequestId)return!1;let n={requestId:this.currentRequestId,businessId:Number(this.config.storeId)};try{return await this.api.cancelNetsTerminalTransaction(n),this.abortController?.abort(),this.currentRequestId=null,!0}catch{return!1}}async refundTransaction(e,n){try{this.abortController=new AbortController;let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:this.config.kioskId,referenceId:e.orderRef,options:{allowPinBypass:!0,transactionType:G.ReturnOfGoods}},{data:r}=await this.api.initiateNetsTerminalTransaction(t),s=r.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(t){throw this.currentRequestId=null,t instanceof l||t instanceof l?t:new l("NETWORK_ERROR","Failed to refund Nets transaction",t)}}async verifyFinalStatus(e,n){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n});return this.handleSuccess(t)}catch(t){throw new l("NETWORK_ERROR","Failed to verify final Nets status",t)}}handleSuccess(e){let n=e.status===N.Success,t=e.status===N.Pending,r={success:n,status:n?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,transaction:e.transaction};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.code&&(r.errorCode=e.error.code),e.error?.message&&(r.errorMessage=e.error.message),r}abort(){this.abortController?.abort()}};import{FeeType as q,PaymentApi as re,PaymentFailureCode as C,PaymentMethod as _,PaymentProvider as Y,VivaApi as se}from"@munchi_oy/core";var D=c=>{if(!c)return 0;let e=Number.parseInt(c,10);return Number.isFinite(e)?e:0},K=c=>{if(!c)return new Date().toISOString();let e=new Date(c);return Number.isNaN(e.getTime())?new Date().toISOString():e.toISOString()};var ie="vivapayclient://pay/v1",oe="abort",ae="cancel",ce="sale",B="transactionDetails",le=4e3,ue="534287",de="38",me="493591",pe="497439",fe=[me,pe],ye=["CREDIT","PREPAID","CORPORATE"],O=class{constructor(e,n,t,r){this.config=t;this.appToAppConfig=r;this.api=new se(void 0,"",e),this.paymentApi=new re(void 0,"",e),this.paymentApiWithReference=this.paymentApi}api;paymentApi;abortController=null;currentClientTransactionId=null;currentIsvClientTransactionId=null;currentCurrency=null;currentOrderRef=null;currentSourceTerminalId=null;latestResult=null;paymentApiWithReference;wasCancelled=!1;getExecutionMode(){return"callback_driven"}async processPayment(e,n){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");n("CONNECTING");try{let{data:t}=await this.api.createVivaAppToAppPayment(this.buildCreatePaymentPayload(e));return await this.runAction(ce,this.buildLaunchParams(t),e,n)}catch(t){throw new l("NETWORK_ERROR","Failed to create Viva app-to-app payment",t)}}async cancelTransaction(e){if(!this.currentClientTransactionId)return!1;let n=await this.lookupTransactionDetails();if(n)return this.latestResult=n,this.wasCancelled=n.status==="CANCELLED",this.abortController?.abort(),!0;try{await this.appToAppConfig.adapter.openUrl(this.buildActionUrl(oe,{}))}catch(t){throw this.abortController?.abort(),new l("NETWORK_ERROR","Failed to launch Viva abort flow",t)}return this.wasCancelled=!0,this.abortController?.abort(),!0}async refundTransaction(e,n){n("CONNECTING");let t=await this.fetchPaymentReference(e),r=this.buildRefundLaunchParams(e,t);return this.runAction(ae,r,e,n)}async verifyFinalStatus(e,n){return this.latestResult?this.latestResult:this.wasCancelled?{success:!1,status:"CANCELLED",orderId:this.currentOrderRef??n,errorCode:C.PaymentCancelledByUser,errorMessage:"Transaction was cancelled",transactionId:n}:{success:!1,status:"PENDING",orderId:this.currentOrderRef??n,transactionId:n}}abort(){this.abortController?.abort()}async runAction(e,n,t,r){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");this.abortController=new AbortController,this.latestResult=null,this.wasCancelled=!1,this.currentCurrency=t.currency,this.currentOrderRef=t.orderRef,this.currentSourceTerminalId=n.sourceTerminalId??n.tid??null,this.currentClientTransactionId=n.clientTransactionId??null,this.currentIsvClientTransactionId=n.ISV_clientTransactionId??null;let s=this.currentClientTransactionId?{sessionId:this.currentClientTransactionId}:void 0;return new Promise((i,o)=>{let a=(m,f)=>{m?.(),this.abortController?.signal.removeEventListener("abort",f)},u=()=>{a(d,u),o(new Error("Aborted"))},d=this.appToAppConfig.adapter.subscribe(m=>{if(this.abortController?.signal.aborted)return;let f=this.parseCallbackUrl(m);f&&this.matchesKnownTransactionId(f.rawParams)&&(this.latestResult=f.result,this.wasCancelled=f.result.status==="CANCELLED",this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,a(d,u),i(f.result))});this.abortController?.signal.addEventListener("abort",u),r("REQUIRES_INPUT",s),this.appToAppConfig.adapter.openUrl(this.buildActionUrl(e,n)).then(()=>{this.abortController?.signal.aborted}).catch(m=>{a(d,u),this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,o(new l("NETWORK_ERROR","Failed to launch Viva app",m))})})}buildCreatePaymentPayload(e){let n=e.options??{},t={amount:e.amountCents,referenceId:e.orderRef,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!1,showTransactionResult:!1};return n.tipAmount!==void 0&&(t.tipAmount=n.tipAmount),t}buildLaunchParams(e){let n={};return Object.entries(e).forEach(([t,r])=>{r!==void 0&&(n[t]=String(r))}),n}buildRefundLaunchParams(e,n){let t=e.options??{},r=n?.originalTransactionId?.trim()||e.originalTransactionId.trim(),s={amount:String(e.amountCents),clientTransactionId:r,show_receipt:"false",show_transaction_result:"false"};if(t.sourceCode&&(s.sourceCode=t.sourceCode),n?.referenceCode&&(s.orderCode=n.referenceCode),n?.shortReferenceCode&&(s.shortOrderCode=n.shortReferenceCode),n?.receiptNumber&&(s.referenceNumber=n.receiptNumber),n?.terminalId&&(s.tid=n.terminalId),n?.referenceCode||n?.shortReferenceCode||n?.receiptNumber)return s;let i=r;return/^\d+$/.test(i)&&(i.length===16?s.orderCode=i:i.length===10?s.shortOrderCode=i:s.referenceNumber=i),s}async fetchPaymentReference(e){try{let n={orderId:e.orderRef,provider:Y.Viva,transactionId:e.originalTransactionId,businessId:e.businessId},{data:t}=await this.paymentApiWithReference.getPaymentReference(n);return this.extractPaymentReferenceContext(t)}catch{return}}extractPaymentReferenceContext(e){if(!e)return;let n=e.references;if(!n||typeof n!="object"||Array.isArray(n))return{originalTransactionId:e.originalTransactionId};let t=n,r={originalTransactionId:this.readReferenceValue(t.originalTransactionId)??this.readReferenceValue(t.clientTransactionId)??e.originalTransactionId},s=this.readReferenceValue(t.receiptNumber)??this.readReferenceValue(t.referenceNumber),i=this.readReferenceValue(t.referenceCode)??this.readReferenceValue(t.orderCode),o=this.readReferenceValue(t.shortReferenceCode)??this.readReferenceValue(t.shortOrderCode),a=this.readReferenceValue(t.terminalId)??this.readReferenceValue(t.tid);return s&&(r.receiptNumber=s),i&&(r.referenceCode=i),o&&(r.shortReferenceCode=o),a&&(r.terminalId=a),r}readReferenceValue(e){if(typeof e!="string")return;let n=e.trim();return n.length>0?n:void 0}buildActionUrl(e,n){let t=new URLSearchParams({action:e,appId:this.appToAppConfig.appId,callback:this.resolveCallbackQueryParam()});return Object.entries(n).forEach(([r,s])=>{t.set(r,s)}),`${ie}?${t.toString()}`}parseCallbackUrl(e){if(!this.matchesCallbackBase(e))return null;let n=new URL(e),t=Object.fromEntries(n.searchParams.entries()),r=this.isSuccessfulCallback(t),s=this.isCancelledCallback(t),i=this.resolveFailureCode(t,s),o={success:r,status:r?"SUCCESS":s?"CANCELLED":"FAILED",orderId:this.currentOrderRef??t.clientTransactionId??"unknown",errorCode:r?"":i,errorMessage:r?"":t.message??"Transaction failed without error details"};r&&(o.transaction=this.mapCallbackToTransaction(t));let a=t.transactionId??t.orderCode??t.clientTransactionId,u=t.errorCode??this.extractErrorReferenceFromMessage(t.message)??t.referenceNumber??t.tid??t.rrn;return a&&(o.transactionId=a),u&&(o.errorReference=u),{rawParams:t,result:o}}matchesCallbackBase(e){let n=new URL(e),t=this.appToAppConfig.callbackUrl;if(!t.includes("://")){let s=t.replace(/:$/,"");return n.protocol===`${s}:`}let r=new URL(t);return n.protocol===r.protocol&&n.hostname===r.hostname&&n.pathname===r.pathname}resolveCallbackQueryParam(){if(this.appToAppConfig.callbackParamFormat!=="scheme-only")return this.appToAppConfig.callbackUrl;let e=this.appToAppConfig.callbackUrl;return e.includes("://")?new URL(e).protocol.replace(/:$/,""):e.replace(/:$/,"")}matchesKnownTransactionId(e){let n=[this.currentClientTransactionId,this.currentIsvClientTransactionId].filter(r=>!!r);if(n.length===0)return!0;let t=[e.clientTransactionId,e.ISV_clientTransactionId].filter(r=>!!r);return t.length===0?!0:t.some(r=>n.includes(r))}resolveFailureCode(e,n){if(n)return C.PaymentCancelledByUser;let t=e.errorCode;if(t?.includes("."))return t;if(this.isTransactionDetailsAction(e)&&(e.transactionType??"").toLowerCase().includes("abort"))return C.SystemUnknown;let r=(e.message??"").toLowerCase(),s=(e.status??"").toLowerCase();return r.includes("declined")||s==="declined"||s==="fail"||s==="failed"||s==="failure"?C.PaymentDeclined:C.SystemUnknown}isSuccessfulCallback(e){let n=(e.status??"").toLowerCase();return this.isTransactionDetailsAction(e)?n!=="success"?!1:!(e.transactionType??"").toLowerCase().includes("abort"):n==="success"}isTransactionDetailsAction(e){return(e.action??"").toLowerCase()===B.toLowerCase()}isCancelledCallback(e){let n=(e.status??"").toLowerCase(),t=(e.message??"").toLowerCase(),r=(e.errorCode??"").toLowerCase();return n==="cancelled"||n==="canceled"||t.includes("user_cancel")||t.includes("user cancel")||t.includes("cancelled by user")||t.includes("canceled by user")||t.includes("transaction cancelled by user")||t.includes("transaction canceled by user")||r.includes("user_cancel")||r.includes("user cancel")||r==="1000"&&(t.includes("cancelled by user")||t.includes("canceled by user"))}extractErrorReferenceFromMessage(e){return e?e.match(/\((-?\d+)\)/)?.[1]:void 0}mapCallbackToTransaction(e){let n=e.transactionId??e.orderCode??e.clientTransactionId??"unknown",t=K(e.transactionDate),r=D(e.tipAmount),s=D(e.surchargeAmount);return{amount:D(e.amount)-r-s,cardDetail:{aid:e.aid??null,applicationLabel:e.applicationLabel??null,cardNumber:e.accountNumber??"N/A",cardType:e.cardType??"N/A",issuer:e.bankId??null,orderCode:e.orderCode??null,timestamp:t,transactionId:n},createdAt:t,fees:this.buildFees(r,s),id:n,label:null,provider:Y.Viva,rawData:e,referenceId:e.clientTransactionId??null,roundingDifference:0,type:this.getVivaPaymentMethodType(e)}}getVivaPaymentMethodType(e){let n=(e.applicationLabel??"").toUpperCase().trim(),r=(e.accountNumber??"").substring(0,6),s=(e.bankId??"").trim();return r===ue||s===de?_.Edenred:fe.includes(r)?_.WoltBenefit:ye.some(i=>n.includes(i))?_.Credit:_.Debit}buildFees(e,n){if(!this.currentCurrency)return null;let t=[];return e>0&&t.push({taxAmount:0,total:{amount:e,currency:this.currentCurrency},type:q.TipAmount,vatPercentage:0}),n>0&&t.push({taxAmount:0,total:{amount:n,currency:this.currentCurrency},type:q.Surcharge,vatPercentage:0}),t.length===0?null:{parts:t}}async lookupTransactionDetails(){if(!this.currentClientTransactionId||!this.currentSourceTerminalId)return null;let e={clientTransactionId:this.currentClientTransactionId,sourceTerminalId:this.currentSourceTerminalId};return new Promise(n=>{let t=!1,r=setTimeout(()=>{t||(t=!0,s(),n(null))},le),s=this.appToAppConfig.adapter.subscribe(i=>{if(t)return;let o=this.parseCallbackUrl(i);o&&this.matchesKnownTransactionId(o.rawParams)&&(t=!0,clearTimeout(r),s(),n(o.result))});this.appToAppConfig.adapter.openUrl(this.buildActionUrl(B,e)).catch(()=>{t||(t=!0,clearTimeout(r),s(),n(null))})})}};import{PaymentFailureCode as he,PaymentSessionApi as Ie,PaymentSessionStatus as $,SimplePaymentStatus as Q}from"@munchi_oy/core";var L=class c{constructor(e,n,t){this.messaging=n;this.config=t;this.sessionApi=new Ie(void 0,"",e)}static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=1e3;static VERIFY_DURATION_MS=3e4;static INITIAL_POLL_DELAY_MS=1e4;sessionApi;abortController=null;idempotencyKey=null;idempotencyOrderRef=null;currentClientToken=null;async processPayment(e,n){this.abortController=new AbortController,(this.idempotencyKey===null||this.idempotencyOrderRef!==e.orderRef)&&(this.idempotencyKey=this.generateIdempotencyKey(),this.idempotencyOrderRef=e.orderRef),this.currentClientToken=null,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),orderId:e.orderRef};e.splitContext!==void 0&&(t.splitContext=e.splitContext);try{let{data:r}=await this.sessionApi.initiateVivaSession(t,this.idempotencyKey);this.currentClientToken=r.clientToken;let s=this.abortController.signal;if(s.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:r.sessionId});let i=await this.waitForCompletion(r.clientToken,r.sessionId,e,s);return i?this.finalize(i):(await this.armCancel(r.clientToken),b(e.orderRef))}catch(r){throw r instanceof l?r:new l("NETWORK_ERROR","Failed to create Viva payment session",r)}}async verifyFinalStatus(e,n){if(!this.currentClientToken)throw new l("NETWORK_ERROR","No active payment session to verify");let t=await this.pollUntilTerminal(this.currentClientToken,e,void 0,c.VERIFY_DURATION_MS);return this.finalize(t??b(e.orderRef))}async cancelTransaction(e){if(!this.currentClientToken)return!1;try{await this.sessionApi.cancelVivaSession(this.currentClientToken)}catch(n){throw new l("NETWORK_ERROR","Failed to cancel Viva payment session",n)}return this.abortController?.abort(),!0}async refundTransaction(e,n){try{let t={sessionId:e.originalTransactionId,amount:e.amountCents},{data:r}=await this.sessionApi.refundVivaSession(t),s=r.status===$.Refunded||r.status===$.Refunding,i={success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:r.providerTransactionId??r.sessionId};return s||(r.errorCode&&(i.errorCode=r.errorCode),r.errorMessage&&(i.errorMessage=r.errorMessage)),i}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}async pollUntilTerminal(e,n,t,r){let s=Date.now()+r;for(;Date.now()<s;){if(t?.aborted)throw new Error("Aborted");let i;try{i=(await this.sessionApi.getPaymentSession(e)).data}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}if(t?.aborted)throw new Error("Aborted");if(i){let o=v(i,n.orderRef);if(o.status!=="PENDING")return o}await this.delay(c.POLLING_INTERVAL_MS,t)}}waitForCompletion(e,n,t,r){let s=`viva.${this.config.channel.toLowerCase()}.requests.${n}`;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f),r.removeEventListener("abort",d)},d=()=>{u(),o(new Error("Aborted"))};r.addEventListener("abort",d);let m=this.messaging.subscribe(s,"payment:status-changed",p=>{a||p.status!==Q.Pending&&(u(),i(this.mapStatusDto(p,t)))}),f=setTimeout(()=>{a||this.pollUntilTerminal(e,t,r,c.POLLING_DURATION_MS).then(p=>{a||(u(),i(p))},p=>{a||(u(),o(p))})},c.INITIAL_POLL_DELAY_MS)})}mapStatusDto(e,n){let t=e.status===Q.Success,r={success:t,status:t?"SUCCESS":"FAILED",orderId:n.orderRef,errorCode:e.error?.code||(t?"":he.SystemUnknown),errorMessage:e.error?.message||(t?"":"Transaction failed without error details")};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.referenceError&&(r.errorReference=e.error.referenceError),e.transaction&&(r.transaction=e.transaction),r}finalize(e){return e.status!=="PENDING"&&(this.idempotencyKey=null,this.idempotencyOrderRef=null),e}armCancel(e){return this.sessionApi.cancelVivaSession(e).then(()=>{},()=>{})}generateIdempotencyKey(){let e=globalThis.crypto;return e?.randomUUID?e.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,n=>{let t=Math.random()*16|0;return(n==="x"?t:t&3|8).toString(16)})}delay(e,n){return new Promise(t=>{let r=()=>{clearTimeout(s),t()};n&&n.addEventListener("abort",r,{once:!0});let s=setTimeout(()=>{n&&n.removeEventListener("abort",r),t()},e)})}};import{PaymentApi as Re,PaymentFailureCode as M,PaymentProviderEnum as ge,SimplePaymentStatus as T}from"@munchi_oy/core";var E=class c{constructor(e,n,t){this.messaging=n;this.config=t;this.api=new Re(void 0,"",e)}static INITIAL_POLL_DELAY_MS=1e4;static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=2e3;static TIMEOUT_CANCEL_TIMEOUT_MS=5e3;static VERIFY_TIMEOUT_MS=1e4;static VERIFY_MAX_RETRIES=3;static VERIFY_RETRY_DELAY_MS=1500;api;abortController=null;currentSessionId=null;paymentProvider=ge.Viva;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,referenceId:e.orderRef,businessId:parseInt(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!0,showTransactionResult:!0};try{let{data:r}=await this.api.initiateTerminalTransaction(t);if(this.currentSessionId=r.sessionId,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:r.sessionId});let s=await this.waitForPaymentCompletion(r.sessionId,e,this.abortController.signal);return this.currentSessionId=null,s}catch(r){throw this.currentSessionId=null,r instanceof l?r:new l("NETWORK_ERROR","Failed to create Viva Intent",r)}}async waitForPaymentCompletion(e,n,t){let s=`viva.${this.config.channel.toLowerCase()}.requests.${e}`,i="payment:status-changed";return new Promise((o,a)=>{let u=!1,d=()=>{u=!0,typeof f=="function"&&f(),clearTimeout(p)},m=()=>{d(),a(new Error("Aborted"))};t.addEventListener("abort",m);let f=this.messaging.subscribe(s,i,R=>{u||R.status!==T.Pending&&(d(),t.removeEventListener("abort",m),o(this.handleSuccess(R)))}),p=setTimeout(async()=>{if(!(u||t.aborted))try{let R=await this.pollOrderStatus(e,n.orderRef,this.config.storeId,t);if(u)return;o(this.handleSuccess(R))}catch(R){if(u)return;if(R instanceof Error&&R.message==="Aborted"){a(R);return}try{let S=await this.recoverAfterPollingTimeout(n,e);o(S)}catch(S){a(S instanceof l?S:new l("TIMEOUT","Payment timed out and polling failed",S))}}finally{t.removeEventListener("abort",m),d()}},c.INITIAL_POLL_DELAY_MS)})}async pollOrderStatus(e,n,t,r){let i=Date.now()+c.POLLING_DURATION_MS;for(;Date.now()<i;){if(r.aborted)throw new Error("Aborted");try{let{data:o}=await this.api.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(o.status!==T.Pending)return o}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}await new Promise(o=>{let a=()=>{clearTimeout(u),o(void 0)};r.addEventListener("abort",a,{once:!0});let u=setTimeout(()=>{r.removeEventListener("abort",a),o(void 0)},c.POLLING_INTERVAL_MS)})}throw new Error("Payment verification timed out.")}async recoverAfterPollingTimeout(e,n){return await this.cancelSessionWithTimeout(n),await this.verifyFinalStatusWithRetry(e,n)}async cancelSessionWithTimeout(e){let n;try{await Promise.race([this.cancelSession(e),new Promise((t,r)=>{n=setTimeout(()=>{r(new Error("Viva timeout cancellation timed out"))},c.TIMEOUT_CANCEL_TIMEOUT_MS)})])}catch{}finally{n&&clearTimeout(n)}}async cancelSession(e){return await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:e}),this.currentSessionId===e&&(this.currentSessionId=null),!0}async verifyFinalStatusWithRetry(e,n){let t;for(let s=1;s<=c.VERIFY_MAX_RETRIES;s++)try{let i=await Promise.race([this.verifyFinalStatus(e,n),new Promise((o,a)=>setTimeout(()=>a(new Error("Verify timed out")),c.VERIFY_TIMEOUT_MS))]);if(i.status==="PENDING"){t=new Error("Verify returned pending status"),s<c.VERIFY_MAX_RETRIES&&await new Promise(o=>setTimeout(o,c.VERIFY_RETRY_DELAY_MS));continue}return i}catch(i){t=i,s<c.VERIFY_MAX_RETRIES&&await new Promise(o=>setTimeout(o,c.VERIFY_RETRY_DELAY_MS))}let r=t instanceof Error?t.message:"Verify retries exhausted";throw new l(M.PaymentTimeout,r)}handleSuccess(e){let n=e.status===T.Success,t={success:n,status:n?"SUCCESS":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(n?"":M.SystemUnknown),errorMessage:e.error?.message||(n?"":"Transaction failed without error details")};return e.transactionId&&(t.transactionId=e.transactionId),e.error?.referenceError&&(t.errorReference=e.error.referenceError),e.transaction&&(t.transaction=e.transaction),t}async cancelTransaction(e){if(!this.currentSessionId)return!1;try{let n=this.currentSessionId;return this.currentSessionId=null,await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:n}),this.abortController?.abort(),!0}catch(n){throw this.currentSessionId=null,new l("NETWORK_ERROR","Failed to cancel Viva transaction",n)}}async verifyFinalStatus(e,n){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n}),r=t.status===T.Success,s=t.status===T.Pending,i={success:r,status:r?"SUCCESS":s?"PENDING":"FAILED",orderId:t.orderId,errorCode:t.error?.code||(r||s?"":M.SystemUnknown),errorMessage:t.error?.message||(r||s?"":"Transaction failed without error details")};return t.transactionId&&(i.transactionId=t.transactionId),t.error?.referenceError&&(i.errorReference=t.error.referenceError),t.transaction&&(i.transaction=t.transaction),i}catch(t){throw new l("NETWORK_ERROR","Failed to verify final transaction status",t)}}async refundTransaction(e,n){try{let t={amount:e.amountCents,businessId:Number(this.config.storeId),displayId:this.config.kioskId,currency:e.currency,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId},{data:r}=await this.api.refundSingleVivaTransaction(t),s=r.success;return{success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:r.sessionId}}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}};import{PaymentApi as Pe,PaymentEventType as j,PaymentFailureCode as Se,PaymentProviderEnum as Ce,SimplePaymentStatus as x,WorldlineApi as Te}from"@munchi_oy/core";import{isAxiosError as Ee}from"axios";var F=class{constructor(e,n,t){this.messaging=n;this.config=t;this.paymentApi=new Pe(void 0,"",e),this.worldlineApi=new Te(void 0,"",e)}paymentApi;worldlineApi;abortController=null;currentOperationId=null;paymentProvider=Ce.Worldline;async processPayment(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,referenceId:e.orderRef,showReceipt:!0,showTransactionResult:!0,...e.options&&"tipAmount"in e.options&&typeof e.options.tipAmount=="number"?{tipAmount:e.options.tipAmount}:{}};try{let r=await this.worldlineApi.createPayment(t),s=this.extractOperationId(r.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,j.StatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(r){throw this.currentOperationId=null,r instanceof l?r:this.mapWorldlineRequestError(r,"Failed to create Worldline payment")}}async cancelTransaction(e){if(!this.currentOperationId)return!1;let n={businessId:Number(this.config.storeId),targetOperationId:this.currentOperationId};try{return await this.worldlineApi.cancelPayment(n),!0}catch(t){throw this.mapWorldlineRequestError(t,"Failed to cancel Worldline transaction")}}async refundTransaction(e,n){this.abortController=new AbortController,n("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId};try{let r=await this.worldlineApi.createRefund(t),s=this.extractOperationId(r.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");n("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,j.RefundStatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(r){throw this.currentOperationId=null,r instanceof l?r:this.mapWorldlineRequestError(r,"Failed to refund Worldline transaction")}}async verifyFinalStatus(e,n){try{let{data:t}=await this.paymentApi.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:n});return this.handlePaymentStatus(t)}catch(t){throw this.mapWorldlineRequestError(t,"Failed to verify final Worldline status")}}abort(){this.abortController?.abort()}async waitForPaymentCompletion(e,n,t,r){let s=`worldline.requests.${e}`;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};r.addEventListener("abort",d);let m=this.messaging.subscribe(s,t,p=>{a||p.status===x.Pending||(u(),r.removeEventListener("abort",d),i(this.handlePaymentStatus(p)))}),f=setTimeout(async()=>{if(!(a||r.aborted))try{let p=await this.pollOrderStatus(e,n,this.config.storeId,r);i(this.handlePaymentStatus(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{r.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,n,t,r){let o=Date.now()+12e4;for(;Date.now()<o;){if(r.aborted)throw new Error("Aborted");try{let{data:a}=await this.paymentApi.getPaymentStatus({businessId:Number(t),orderId:n,provider:this.paymentProvider,referenceId:e});if(r.aborted)throw new Error("Aborted");if(a.status!==x.Pending)return a}catch(a){if(a instanceof Error&&a.message==="Aborted")throw a}await new Promise(a=>{let u=()=>{clearTimeout(d),a(void 0)};r.addEventListener("abort",u,{once:!0});let d=setTimeout(()=>{r.removeEventListener("abort",u),a(void 0)},2e3)})}throw new Error("Payment verification timed out.")}handlePaymentStatus(e){let n=e.status===x.Success,t=e.status===x.Pending,r={success:n,status:n?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(n||t?"":Se.SystemUnknown),errorMessage:e.error?.message||(n||t?"":"Transaction failed without error details")};return e.transactionId&&(r.transactionId=e.transactionId),e.error?.referenceError&&(r.errorReference=e.error.referenceError),e.transaction&&(r.transaction=e.transaction),r}extractOperationId(e){let n=typeof e=="object"&&e!==null&&"operationId"in e&&typeof e.operationId=="string"?e.operationId:null;if(!n)throw new Error("operationId is missing from response.");return n}mapWorldlineRequestError(e,n){if(Ee(e)){if(e.response?.status===400||e.response?.status===409)return new l("TERMINAL_BUSY",n,e);if(e.response?.status===404)return new l("TERMINAL_OFFLINE",n,e)}return new l("NETWORK_ERROR",n,e)}};var k=class c{strategy;axios;messaging;timeoutMs;logger;_currentState="IDLE";_listeners=[];_cancellationIntent=!1;_currentSessionId;_autoResetTimer;autoResetOptions;appToAppConfig;paymentSessionConfig;manualStrategy;static TERMINAL_STATES=["SUCCESS","FAILED","INTERNAL_ERROR"];static RESTING_STATES=["IDLE",...c.TERMINAL_STATES];constructor(e,n,t,r={},s){this.axios=e,this.messaging=n,this.logger=r.logger,this.timeoutMs=r.timeoutMs||3e4,this.autoResetOptions=r.autoResetOnPaymentComplete,this.appToAppConfig=r.appToApp,this.paymentSessionConfig=r.paymentSession,this.manualStrategy=new A(e,t),this.strategy=s??this.resolveStrategy(t)}get version(){return V}get currentState(){return this._currentState}generateErrorResult(e,n,t){return{success:!1,status:"ERROR",errorCode:this.normalizeErrorCode(n),errorMessage:t,orderId:e}}normalizeErrorCode(e){return e?e.includes(".")?e:{CANCELLED:y.PaymentCancelledByUser,DECLINED:y.PaymentDeclined,TERMINAL_BUSY:y.TerminalBusy,TERMINAL_OFFLINE:y.TerminalOffline,TIMEOUT:y.TerminalTimeout,NETWORK_ERROR:y.SystemProviderError,STRATEGY_ERROR:y.SystemProviderError,MISSING_CONFIG:y.SystemUnknown,INVALID_AMOUNT:y.SystemUnknown,UNKNOWN:y.SystemUnknown}[e]??y.SystemUnknown:y.SystemUnknown}subscribe=e=>(this._listeners.push(e),e(this._currentState),()=>{this._listeners=this._listeners.filter(n=>n!==e)});transitionTo(e){if(this._currentState===e)return;if(e==="IDLE"){this.cancelAutoReset(),this._currentState=e,this._listeners.forEach(t=>t(e));return}if(c.TERMINAL_STATES.includes(this._currentState)){let t=`Invalid State Transition: Attempted to move from terminal state ${this._currentState} to ${e}`;throw this.logger?.error(t),this._currentState!=="INTERNAL_ERROR"&&(this._currentState="INTERNAL_ERROR",this._listeners.forEach(r=>r(this._currentState))),new l("UNKNOWN",t)}this._currentState=e,c.TERMINAL_STATES.includes(e)&&this.scheduleAutoReset(e),this._listeners.forEach(t=>t(e))}_resetScheduledAt;get nextAutoResetAt(){return this._resetScheduledAt}cancelAutoReset(){this._autoResetTimer&&(clearTimeout(this._autoResetTimer),this._autoResetTimer=void 0),this._resetScheduledAt=void 0}scheduleAutoReset(e){if(!this.autoResetOptions)return;let t=e==="SUCCESS"?this.autoResetOptions.successDelayMs??5e3:this.autoResetOptions.failureDelayMs??5e3;this.logger?.info(`Scheduling auto-reset to IDLE in ${t}ms`),this._resetScheduledAt=Date.now()+t,this._autoResetTimer=setTimeout(()=>{this.logger?.info("Auto-reset triggered"),this.reset()},t)}resolveStrategy(e){switch(e.provider){case U.Nets:return new w(this.axios,this.messaging,e);case U.Worldline:return new F(this.axios,this.messaging,e);case U.Viva:return this.appToAppConfig?.enabled?new O(this.axios,this.messaging,e,this.appToAppConfig):this.paymentSessionConfig?.enabled?new L(this.axios,this.messaging,e):new E(this.axios,this.messaging,e);default:return new E(this.axios,this.messaging,e)}}initiateTransaction=async(e,n)=>{let t=n??{},r=e.orderRef;if(!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let i=Date.now();if(this._cancellationIntent=!1,this._currentSessionId=void 0,this.transitionTo("IDLE"),e.amountCents<=0)return this.generateErrorResult(e.orderRef,"INVALID_AMOUNT","Amount must be greater than 0");try{let o=(m,f)=>{f?.sessionId&&(this._currentSessionId=f.sessionId),m!=="FAILED"&&(this.transitionTo(m),this.fireStateCallback(m,t,r))},a=this.strategy.processPayment(e,o),d=(this.strategy.getExecutionMode?.()??"managed")==="callback_driven"?await a:await Promise.race([a,new Promise((m,f)=>{setTimeout(()=>{f(new l("TIMEOUT","Transaction timed out"))},this.timeoutMs)})]);if(d.success)this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(d));else{if(this._cancellationIntent)return await this.handleTransactionError(e,new Error("Aborted after resolution"),t);this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(d))}return this.logger?.info("Transaction completed successfully",{orderId:e.orderRef,durationMs:Date.now()-i}),d}catch(o){return this.logger?.warn("Transaction interrupted. Handling final status...",{error:o}),await this.handleTransactionError(e,o,t)}};async handleTransactionError(e,n,t={}){let r=n instanceof l&&(n.code==="TIMEOUT"||n.code===y.PaymentTimeout);if(!this._cancellationIntent&&!r&&(this.transitionTo("VERIFYING"),this.safeFireCallback(()=>t.onVerifying?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))),this._cancellationIntent){try{if(this._currentSessionId){let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i}}catch(i){this.logger?.warn("Final status verification failed during cancellation",{err:i})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}let s;if(this.strategy.abort(),this._currentSessionId)try{let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i;s=r&&i.status==="PENDING"?this.buildErrorResultFromException(e.orderRef,n):i}catch(i){this.logger?.warn("Failed to get detailed error from verifyFinalStatus",{verifyErr:i}),s=this.buildErrorResultFromException(e.orderRef,i)}else s=this.buildErrorResultFromException(e.orderRef,n);return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(s)),s}buildErrorResultFromException(e,n){return n instanceof l?this.generateErrorResult(e,n.code,n.message):this.generateErrorResult(e,"UNKNOWN",n instanceof Error?n.message:"Unknown fatal error")}fireStateCallback(e,n,t){let r={orderRef:t,refPaymentId:this._currentSessionId};switch(e){case"CONNECTING":this.safeFireCallback(()=>n.onConnecting?.(r));break;case"REQUIRES_INPUT":this.safeFireCallback(()=>n.onRequiresInput?.(r));break;case"PROCESSING":this.safeFireCallback(()=>n.onProcessing?.(r));break}}safeFireCallback(e){try{e()}catch(n){this.logger?.warn("Callback execution failed",{error:n})}}cancel=async()=>{if(this.logger?.info("Attempting cancellation"),c.TERMINAL_STATES.includes(this._currentState))return this.logger?.warn("Cannot cancel: Transaction already in terminal state",{state:this._currentState}),!1;if(!this._currentSessionId&&this._currentState==="IDLE")return this.logger?.warn("Cannot cancel: No active session to cancel",{state:this._currentState}),!1;this._cancellationIntent=!0,this.transitionTo("VERIFYING");try{return await this.strategy.cancelTransaction(n=>this.transitionTo(n))}catch(e){return this.logger?.error("Cancellation command failed",e),!1}};reset=()=>{c.TERMINAL_STATES.includes(this._currentState)&&(this._currentSessionId=void 0,this._cancellationIntent=!1,this.transitionTo("IDLE"))};refund=async(e,n)=>{let t=n??{};if(this.logger?.info("Initiating refund",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("IDLE");try{let s=(o,a)=>{a?.sessionId&&(this._currentSessionId=a.sessionId),o!=="FAILED"&&(this.transitionTo(o),this.fireStateCallback(o,t,e.orderRef))},i=await this.strategy.refundTransaction(e,s);return i.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i))):this._cancellationIntent||i.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(i))),this.logger?.info("Refund completed",{success:i.success,orderRef:e.orderRef}),i}catch(s){if(this.logger?.error("Refund failed",s),this._cancellationIntent){try{if(this._currentSessionId){let o=await this.strategy.verifyFinalStatus(e,this._currentSessionId);return o.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(o)),o):o.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),o):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(o)),o)}}catch(o){this.logger?.warn("Refund final status verification failed",{verifyError:o})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}this.transitionTo("FAILED");let i=this.generateErrorResult(e.orderRef,"UNKNOWN",s instanceof Error?s.message:"Refund failed");return this.safeFireCallback(()=>t.onError?.(i)),i}};recordManualPayment=async(e,n)=>{let t=n??{};if(this.logger?.info("Recording manual payment",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("CONNECTING"),this.safeFireCallback(()=>t.onConnecting?.({orderRef:e.orderRef,refPaymentId:void 0}));try{let r=await this.manualStrategy.recordPayment(e);return this.settleSingleShot(r,e.orderRef,t),r}catch(r){return this.logger?.error("Manual payment failed",r),this.failSingleShot(e.orderRef,r,"Manual payment failed",t)}};voidManualPayment=async(e,n)=>{let t=n??{};if(this.logger?.info("Voiding manual payment",{orderRef:e.orderRef}),this._currentSessionId=e.sessionId,this._cancellationIntent=!1,!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("CONNECTING");try{let r=await this.manualStrategy.voidPayment(e);return this.settleSingleShot(r,e.orderRef,t),r}catch(r){return this.logger?.error("Manual void failed",r),this.failSingleShot(e.orderRef,r,"Void failed",t)}};settleSingleShot(e,n,t){e.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(e))):e.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:n,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(e)))}failSingleShot(e,n,t,r){let s=this.generateErrorResult(e,"NETWORK_ERROR",n instanceof Error?n.message:t);return this.transitionTo("FAILED"),this.safeFireCallback(()=>r.onError?.(s)),s}};var be=(r=>(r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r.OFFLINE="OFFLINE",r.DISCONNECTED="DISCONNECTED",r))(be||{});export{be as AppReaderStatus,k as MunchiPaymentSDK,g as PaymentInteractionState,I as SdkPaymentStatus};
|
|
1
|
+
import{PaymentFailureCode as y,PaymentProvider as M}from"@munchi_oy/core";var k="1.10.2";var l=class c extends Error{code;rawError;constructor(e,r,t){super(r),this.name="PaymentSDKError",this.code=e,this.rawError=t,Object.setPrototypeOf(this,c.prototype)}};import{PaymentApi as j,PaymentEventType as z,PaymentProviderEnum as X,SimplePaymentStatus as b,TransactionType as V}from"@munchi_oy/core";var R=(i=>(i.PENDING="PENDING",i.SUCCESS="SUCCESS",i.APPROVED="APPROVED",i.FAILED="FAILED",i.CANCELLED="CANCELLED",i.ERROR="ERROR",i))(R||{}),g=(a=>(a.IDLE="IDLE",a.CONNECTING="CONNECTING",a.REQUIRES_INPUT="REQUIRES_INPUT",a.PROCESSING="PROCESSING",a.SUCCESS="SUCCESS",a.FAILED="FAILED",a.INTERNAL_ERROR="INTERNAL_ERROR",a.VERIFYING="VERIFYING",a))(g||{});var v=class{constructor(e,r,t){this.messaging=r;this.config=t;this.api=new j(void 0,"",e)}api;abortController=null;currentRequestId=null;paymentProvider=X.Nets;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),referenceId:e.orderRef,currency:e.currency,displayId:e.displayId,options:{allowPinBypass:!0,transactionType:V.Purchase}};try{let{data:n}=await this.api.initiateNetsTerminalTransaction(t),s=n.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(n){throw this.currentRequestId=null,n instanceof l?n:new l("TERMINAL_BUSY","Failed to create Nets Intent",n)}}async waitForPaymentCompletion(e,r,t){let n=`nets.requests.${e}`,s=z.StatusChanged;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};t.addEventListener("abort",d);let m=this.messaging.subscribe(n,s,p=>{a||p.status===b.Pending||(u(),t.removeEventListener("abort",d),i(this.handleSuccess(p)))}),f=setTimeout(async()=>{if(!(a||t.aborted))try{let p=await this.pollOrderStatus(e,r,this.config.storeId,t);i(this.handleSuccess(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{t.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,r,t,n){let a=Date.now()+12e4;for(;Date.now()<a;){if(n.aborted)throw new Error("Aborted");try{let{data:u}=await this.api.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(u.status!==b.Pending)return u}catch(u){if(u instanceof Error&&u.message==="Aborted")throw u}await new Promise(u=>{let d=()=>{clearTimeout(m),u(void 0)};n.addEventListener("abort",d,{once:!0});let m=setTimeout(()=>{n.removeEventListener("abort",d),u(void 0)},2e3)})}throw new Error("Payment verification timed out.")}async cancelTransaction(e){if(!this.currentRequestId)return!1;let r={requestId:this.currentRequestId,businessId:Number(this.config.storeId)};try{return await this.api.cancelNetsTerminalTransaction(r),this.abortController?.abort(),this.currentRequestId=null,!0}catch{return!1}}async refundTransaction(e,r){try{this.abortController=new AbortController;let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:this.config.kioskId,referenceId:e.orderRef,options:{allowPinBypass:!0,transactionType:V.ReturnOfGoods}},{data:n}=await this.api.initiateNetsTerminalTransaction(t),s=n.connectCloudRequestId;if(!s)throw new Error("connectCloudRequestId is missing from response.");if(this.currentRequestId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,this.abortController.signal);return this.currentRequestId=null,i}catch(t){throw this.currentRequestId=null,t instanceof l||t instanceof l?t:new l("NETWORK_ERROR","Failed to refund Nets transaction",t)}}async verifyFinalStatus(e,r){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r});return this.handleSuccess(t)}catch(t){throw new l("NETWORK_ERROR","Failed to verify final Nets status",t)}}handleSuccess(e){let r=e.status===b.Success,t=e.status===b.Pending,n={success:r,status:r?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,transaction:e.transaction};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.code&&(n.errorCode=e.error.code),e.error?.message&&(n.errorMessage=e.error.message),n}abort(){this.abortController?.abort()}};import{FeeType as G,PaymentApi as J,PaymentFailureCode as C,PaymentMethod as N,PaymentProvider as K,VivaApi as Z}from"@munchi_oy/core";var A=c=>{if(!c)return 0;let e=Number.parseInt(c,10);return Number.isFinite(e)?e:0},W=c=>{if(!c)return new Date().toISOString();let e=new Date(c);return Number.isNaN(e.getTime())?new Date().toISOString():e.toISOString()};var ee="vivapayclient://pay/v1",te="abort",re="cancel",ne="sale",q="transactionDetails",se=4e3,ie="534287",oe="38",ae="493591",ce="497439",le=[ae,ce],ue=["CREDIT","PREPAID","CORPORATE"],w=class{constructor(e,r,t,n){this.config=t;this.appToAppConfig=n;this.api=new Z(void 0,"",e),this.paymentApi=new J(void 0,"",e),this.paymentApiWithReference=this.paymentApi}api;paymentApi;abortController=null;currentClientTransactionId=null;currentIsvClientTransactionId=null;currentCurrency=null;currentOrderRef=null;currentSourceTerminalId=null;latestResult=null;paymentApiWithReference;wasCancelled=!1;getExecutionMode(){return"callback_driven"}async processPayment(e,r){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");r("CONNECTING");try{let{data:t}=await this.api.createVivaAppToAppPayment(this.buildCreatePaymentPayload(e));return await this.runAction(ne,this.buildLaunchParams(t),e,r)}catch(t){throw new l("NETWORK_ERROR","Failed to create Viva app-to-app payment",t)}}async cancelTransaction(e){if(!this.currentClientTransactionId)return!1;let r=await this.lookupTransactionDetails();if(r)return this.latestResult=r,this.wasCancelled=r.status==="CANCELLED",this.abortController?.abort(),!0;try{await this.appToAppConfig.adapter.openUrl(this.buildActionUrl(te,{}))}catch(t){throw this.abortController?.abort(),new l("NETWORK_ERROR","Failed to launch Viva abort flow",t)}return this.wasCancelled=!0,this.abortController?.abort(),!0}async refundTransaction(e,r){r("CONNECTING");let t=await this.fetchPaymentReference(e),n=this.buildRefundLaunchParams(e,t);return this.runAction(re,n,e,r)}async verifyFinalStatus(e,r){return this.latestResult?this.latestResult:this.wasCancelled?{success:!1,status:"CANCELLED",orderId:this.currentOrderRef??r,errorCode:C.PaymentCancelledByUser,errorMessage:"Transaction was cancelled",transactionId:r}:{success:!1,status:"PENDING",orderId:this.currentOrderRef??r,transactionId:r}}abort(){this.abortController?.abort()}async runAction(e,r,t,n){if(!this.appToAppConfig.enabled)throw new l("STRATEGY_ERROR","Viva app-to-app is not enabled");this.abortController=new AbortController,this.latestResult=null,this.wasCancelled=!1,this.currentCurrency=t.currency,this.currentOrderRef=t.orderRef,this.currentSourceTerminalId=r.sourceTerminalId??r.tid??null,this.currentClientTransactionId=r.clientTransactionId??null,this.currentIsvClientTransactionId=r.ISV_clientTransactionId??null;let s=this.currentClientTransactionId?{sessionId:this.currentClientTransactionId}:void 0;return new Promise((i,o)=>{let a=(m,f)=>{m?.(),this.abortController?.signal.removeEventListener("abort",f)},u=()=>{a(d,u),o(new Error("Aborted"))},d=this.appToAppConfig.adapter.subscribe(m=>{if(this.abortController?.signal.aborted)return;let f=this.parseCallbackUrl(m);f&&this.matchesKnownTransactionId(f.rawParams)&&(this.latestResult=f.result,this.wasCancelled=f.result.status==="CANCELLED",this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,a(d,u),i(f.result))});this.abortController?.signal.addEventListener("abort",u),n("REQUIRES_INPUT",s),this.appToAppConfig.adapter.openUrl(this.buildActionUrl(e,r)).then(()=>{this.abortController?.signal.aborted}).catch(m=>{a(d,u),this.currentClientTransactionId=null,this.currentIsvClientTransactionId=null,this.currentCurrency=null,this.currentOrderRef=null,this.currentSourceTerminalId=null,o(new l("NETWORK_ERROR","Failed to launch Viva app",m))})})}buildCreatePaymentPayload(e){let r=e.options??{},t={amount:e.amountCents,referenceId:e.orderRef,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!1,showTransactionResult:!1};return r.tipAmount!==void 0&&(t.tipAmount=r.tipAmount),t}buildLaunchParams(e){let r={};return Object.entries(e).forEach(([t,n])=>{n!==void 0&&(r[t]=String(n))}),r}buildRefundLaunchParams(e,r){let t=e.options??{},n=r?.originalTransactionId?.trim()||e.originalTransactionId.trim(),s={amount:String(e.amountCents),clientTransactionId:n,show_receipt:"false",show_transaction_result:"false"};if(t.sourceCode&&(s.sourceCode=t.sourceCode),r?.referenceCode&&(s.orderCode=r.referenceCode),r?.shortReferenceCode&&(s.shortOrderCode=r.shortReferenceCode),r?.receiptNumber&&(s.referenceNumber=r.receiptNumber),r?.terminalId&&(s.tid=r.terminalId),r?.referenceCode||r?.shortReferenceCode||r?.receiptNumber)return s;let i=n;return/^\d+$/.test(i)&&(i.length===16?s.orderCode=i:i.length===10?s.shortOrderCode=i:s.referenceNumber=i),s}async fetchPaymentReference(e){try{let r={orderId:e.orderRef,provider:K.Viva,transactionId:e.originalTransactionId,businessId:e.businessId},{data:t}=await this.paymentApiWithReference.getPaymentReference(r);return this.extractPaymentReferenceContext(t)}catch{return}}extractPaymentReferenceContext(e){if(!e)return;let r=e.references;if(!r||typeof r!="object"||Array.isArray(r))return{originalTransactionId:e.originalTransactionId};let t=r,n={originalTransactionId:this.readReferenceValue(t.originalTransactionId)??this.readReferenceValue(t.clientTransactionId)??e.originalTransactionId},s=this.readReferenceValue(t.receiptNumber)??this.readReferenceValue(t.referenceNumber),i=this.readReferenceValue(t.referenceCode)??this.readReferenceValue(t.orderCode),o=this.readReferenceValue(t.shortReferenceCode)??this.readReferenceValue(t.shortOrderCode),a=this.readReferenceValue(t.terminalId)??this.readReferenceValue(t.tid);return s&&(n.receiptNumber=s),i&&(n.referenceCode=i),o&&(n.shortReferenceCode=o),a&&(n.terminalId=a),n}readReferenceValue(e){if(typeof e!="string")return;let r=e.trim();return r.length>0?r:void 0}buildActionUrl(e,r){let t=new URLSearchParams({action:e,appId:this.appToAppConfig.appId,callback:this.resolveCallbackQueryParam()});return Object.entries(r).forEach(([n,s])=>{t.set(n,s)}),`${ee}?${t.toString()}`}parseCallbackUrl(e){if(!this.matchesCallbackBase(e))return null;let r=new URL(e),t=Object.fromEntries(r.searchParams.entries()),n=this.isSuccessfulCallback(t),s=this.isCancelledCallback(t),i=this.resolveFailureCode(t,s),o={success:n,status:n?"SUCCESS":s?"CANCELLED":"FAILED",orderId:this.currentOrderRef??t.clientTransactionId??"unknown",errorCode:n?"":i,errorMessage:n?"":t.message??"Transaction failed without error details"};n&&(o.transaction=this.mapCallbackToTransaction(t));let a=t.transactionId??t.orderCode??t.clientTransactionId,u=t.errorCode??this.extractErrorReferenceFromMessage(t.message)??t.referenceNumber??t.tid??t.rrn;return a&&(o.transactionId=a),u&&(o.errorReference=u),{rawParams:t,result:o}}matchesCallbackBase(e){let r=new URL(e),t=this.appToAppConfig.callbackUrl;if(!t.includes("://")){let s=t.replace(/:$/,"");return r.protocol===`${s}:`}let n=new URL(t);return r.protocol===n.protocol&&r.hostname===n.hostname&&r.pathname===n.pathname}resolveCallbackQueryParam(){if(this.appToAppConfig.callbackParamFormat!=="scheme-only")return this.appToAppConfig.callbackUrl;let e=this.appToAppConfig.callbackUrl;return e.includes("://")?new URL(e).protocol.replace(/:$/,""):e.replace(/:$/,"")}matchesKnownTransactionId(e){let r=[this.currentClientTransactionId,this.currentIsvClientTransactionId].filter(n=>!!n);if(r.length===0)return!0;let t=[e.clientTransactionId,e.ISV_clientTransactionId].filter(n=>!!n);return t.length===0?!0:t.some(n=>r.includes(n))}resolveFailureCode(e,r){if(r)return C.PaymentCancelledByUser;let t=e.errorCode;if(t?.includes("."))return t;if(this.isTransactionDetailsAction(e)&&(e.transactionType??"").toLowerCase().includes("abort"))return C.SystemUnknown;let n=(e.message??"").toLowerCase(),s=(e.status??"").toLowerCase();return n.includes("declined")||s==="declined"||s==="fail"||s==="failed"||s==="failure"?C.PaymentDeclined:C.SystemUnknown}isSuccessfulCallback(e){let r=(e.status??"").toLowerCase();return this.isTransactionDetailsAction(e)?r!=="success"?!1:!(e.transactionType??"").toLowerCase().includes("abort"):r==="success"}isTransactionDetailsAction(e){return(e.action??"").toLowerCase()===q.toLowerCase()}isCancelledCallback(e){let r=(e.status??"").toLowerCase(),t=(e.message??"").toLowerCase(),n=(e.errorCode??"").toLowerCase();return r==="cancelled"||r==="canceled"||t.includes("user_cancel")||t.includes("user cancel")||t.includes("cancelled by user")||t.includes("canceled by user")||t.includes("transaction cancelled by user")||t.includes("transaction canceled by user")||n.includes("user_cancel")||n.includes("user cancel")||n==="1000"&&(t.includes("cancelled by user")||t.includes("canceled by user"))}extractErrorReferenceFromMessage(e){return e?e.match(/\((-?\d+)\)/)?.[1]:void 0}mapCallbackToTransaction(e){let r=e.transactionId??e.orderCode??e.clientTransactionId??"unknown",t=W(e.transactionDate),n=A(e.tipAmount),s=A(e.surchargeAmount);return{amount:A(e.amount)-n-s,cardDetail:{aid:e.aid??null,applicationLabel:e.applicationLabel??null,cardNumber:e.accountNumber??"N/A",cardType:e.cardType??"N/A",issuer:e.bankId??null,orderCode:e.orderCode??null,timestamp:t,transactionId:r},createdAt:t,fees:this.buildFees(n,s),id:r,label:null,provider:K.Viva,rawData:e,referenceId:e.clientTransactionId??null,roundingDifference:0,type:this.getVivaPaymentMethodType(e)}}getVivaPaymentMethodType(e){let r=(e.applicationLabel??"").toUpperCase().trim(),n=(e.accountNumber??"").substring(0,6),s=(e.bankId??"").trim();return n===ie||s===oe?N.Edenred:le.includes(n)?N.WoltBenefit:ue.some(i=>r.includes(i))?N.Credit:N.Debit}buildFees(e,r){if(!this.currentCurrency)return null;let t=[];return e>0&&t.push({taxAmount:0,total:{amount:e,currency:this.currentCurrency},type:G.TipAmount,vatPercentage:0}),r>0&&t.push({taxAmount:0,total:{amount:r,currency:this.currentCurrency},type:G.Surcharge,vatPercentage:0}),t.length===0?null:{parts:t}}async lookupTransactionDetails(){if(!this.currentClientTransactionId||!this.currentSourceTerminalId)return null;let e={clientTransactionId:this.currentClientTransactionId,sourceTerminalId:this.currentSourceTerminalId};return new Promise(r=>{let t=!1,n=setTimeout(()=>{t||(t=!0,s(),r(null))},se),s=this.appToAppConfig.adapter.subscribe(i=>{if(t)return;let o=this.parseCallbackUrl(i);o&&this.matchesKnownTransactionId(o.rawParams)&&(t=!0,clearTimeout(n),s(),r(o.result))});this.appToAppConfig.adapter.openUrl(this.buildActionUrl(q,e)).catch(()=>{t||(t=!0,clearTimeout(n),s(),r(null))})})}};import{PaymentFailureCode as pe,PaymentSessionApi as fe,PaymentSessionStatus as _,SimplePaymentStatus as B}from"@munchi_oy/core";import{PaymentFailureCode as de,PaymentSessionStatus as h}from"@munchi_oy/core";function me(c){throw new l("UNKNOWN",`Unhandled payment session status: ${String(c)}`)}function D(c){return{success:!1,status:"PENDING",orderId:c,errorCode:"",errorMessage:""}}function Y(c,e){switch(c.status){case h.Initiated:case h.Processing:case h.Voiding:case h.Refunding:return D(e);case h.Success:case h.Closed:{let r={success:!0,status:"SUCCESS",orderId:e,errorCode:"",errorMessage:""};return c.providerTransactionId&&(r.transactionId=c.providerTransactionId),r}case h.VoidFailed:case h.Failed:{let r={success:!1,status:"FAILED",orderId:e,errorCode:c.errorCode||de.SystemUnknown,errorMessage:c.errorMessage||"Transaction failed without error details"};return c.providerTransactionId&&(r.transactionId=c.providerTransactionId),r}case h.Cancelled:case h.Voided:case h.Refunded:{let r={success:!1,status:"CANCELLED",orderId:e};return c.errorCode&&(r.errorCode=c.errorCode),c.errorMessage&&(r.errorMessage=c.errorMessage),c.providerTransactionId&&(r.transactionId=c.providerTransactionId),r}default:return me(c.status)}}var O=class c{constructor(e,r,t){this.messaging=r;this.config=t;this.sessionApi=new fe(void 0,"",e)}static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=1e3;static VERIFY_DURATION_MS=3e4;static INITIAL_POLL_DELAY_MS=1e4;sessionApi;abortController=null;idempotencyKey=null;idempotencyOrderRef=null;currentClientToken=null;async processPayment(e,r){this.abortController=new AbortController,(this.idempotencyKey===null||this.idempotencyOrderRef!==e.orderRef)&&(this.idempotencyKey=this.generateIdempotencyKey(),this.idempotencyOrderRef=e.orderRef),this.currentClientToken=null,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),orderId:e.orderRef};e.splitContext!==void 0&&(t.splitContext=e.splitContext);try{let{data:n}=await this.sessionApi.initiateVivaSession(t,this.idempotencyKey);this.currentClientToken=n.clientToken;let s=this.abortController.signal;if(s.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:n.sessionId});let i=await this.waitForCompletion(n.clientToken,n.sessionId,e,s);return i?this.finalize(i):(await this.armCancel(n.clientToken),D(e.orderRef))}catch(n){throw n instanceof l?n:new l("NETWORK_ERROR","Failed to create Viva payment session",n)}}async verifyFinalStatus(e,r){if(!this.currentClientToken)throw new l("NETWORK_ERROR","No active payment session to verify");let t=await this.pollUntilTerminal(this.currentClientToken,e,void 0,c.VERIFY_DURATION_MS);return this.finalize(t??D(e.orderRef))}async cancelTransaction(e){if(!this.currentClientToken)return!1;try{await this.sessionApi.cancelVivaSession(this.currentClientToken)}catch(r){throw new l("NETWORK_ERROR","Failed to cancel Viva payment session",r)}return this.abortController?.abort(),!0}async refundTransaction(e,r){try{let t={sessionId:e.originalTransactionId,amount:e.amountCents},{data:n}=await this.sessionApi.refundVivaSession(t),s=n.status===_.Refunded||n.status===_.Refunding,i={success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.providerTransactionId??n.sessionId};return s||(n.errorCode&&(i.errorCode=n.errorCode),n.errorMessage&&(i.errorMessage=n.errorMessage)),i}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}async revertTransaction(e){try{let r={sessionId:e.originalTransactionId},{data:t}=await this.sessionApi.revertVivaSession(r),n=t.status===_.Refunded||t.status===_.Refunding,s={success:n,status:n?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:t.providerTransactionId??t.sessionId};return n||(t.errorCode&&(s.errorCode=t.errorCode),t.errorMessage&&(s.errorMessage=t.errorMessage)),s}catch(r){throw new l("NETWORK_ERROR","Failed to revert Viva transaction",r)}}abort(){this.abortController?.abort()}async pollUntilTerminal(e,r,t,n){let s=Date.now()+n;for(;Date.now()<s;){if(t?.aborted)throw new Error("Aborted");let i;try{i=(await this.sessionApi.getPaymentSession(e)).data}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}if(t?.aborted)throw new Error("Aborted");if(i){let o=Y(i,r.orderRef);if(o.status!=="PENDING")return o}await this.delay(c.POLLING_INTERVAL_MS,t)}}waitForCompletion(e,r,t,n){let s=`viva.${this.config.channel.toLowerCase()}.requests.${r}`;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f),n.removeEventListener("abort",d)},d=()=>{u(),o(new Error("Aborted"))};n.addEventListener("abort",d);let m=this.messaging.subscribe(s,"payment:status-changed",p=>{a||p.status!==B.Pending&&(u(),i(this.mapStatusDto(p,t)))}),f=setTimeout(()=>{a||this.pollUntilTerminal(e,t,n,c.POLLING_DURATION_MS).then(p=>{a||(u(),i(p))},p=>{a||(u(),o(p))})},c.INITIAL_POLL_DELAY_MS)})}mapStatusDto(e,r){let t=e.status===B.Success,n={success:t,status:t?"SUCCESS":"FAILED",orderId:r.orderRef,errorCode:e.error?.code||(t?"":pe.SystemUnknown),errorMessage:e.error?.message||(t?"":"Transaction failed without error details")};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.referenceError&&(n.errorReference=e.error.referenceError),e.transaction&&(n.transaction=e.transaction),n}finalize(e){return e.status!=="PENDING"&&(this.idempotencyKey=null,this.idempotencyOrderRef=null),e}armCancel(e){return this.sessionApi.cancelVivaSession(e).then(()=>{},()=>{})}generateIdempotencyKey(){let e=globalThis.crypto;return e?.randomUUID?e.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,r=>{let t=Math.random()*16|0;return(r==="x"?t:t&3|8).toString(16)})}delay(e,r){return new Promise(t=>{let n=()=>{clearTimeout(s),t()};r&&r.addEventListener("abort",n,{once:!0});let s=setTimeout(()=>{r&&r.removeEventListener("abort",n),t()},e)})}};import{PaymentApi as ye,PaymentFailureCode as F,PaymentProviderEnum as he,SimplePaymentStatus as S}from"@munchi_oy/core";var E=class c{constructor(e,r,t){this.messaging=r;this.config=t;this.api=new ye(void 0,"",e)}static INITIAL_POLL_DELAY_MS=1e4;static POLLING_DURATION_MS=18e4;static POLLING_INTERVAL_MS=2e3;static TIMEOUT_CANCEL_TIMEOUT_MS=5e3;static VERIFY_TIMEOUT_MS=1e4;static VERIFY_MAX_RETRIES=3;static VERIFY_RETRY_DELAY_MS=1500;api;abortController=null;currentSessionId=null;paymentProvider=he.Viva;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,referenceId:e.orderRef,businessId:parseInt(this.config.storeId),currency:e.currency,displayId:e.displayId,showReceipt:!0,showTransactionResult:!0};try{let{data:n}=await this.api.initiateTerminalTransaction(t);if(this.currentSessionId=n.sessionId,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:n.sessionId});let s=await this.waitForPaymentCompletion(n.sessionId,e,this.abortController.signal);return this.currentSessionId=null,s}catch(n){throw this.currentSessionId=null,n instanceof l?n:new l("NETWORK_ERROR","Failed to create Viva Intent",n)}}async waitForPaymentCompletion(e,r,t){let s=`viva.${this.config.channel.toLowerCase()}.requests.${e}`,i="payment:status-changed";return new Promise((o,a)=>{let u=!1,d=()=>{u=!0,typeof f=="function"&&f(),clearTimeout(p)},m=()=>{d(),a(new Error("Aborted"))};t.addEventListener("abort",m);let f=this.messaging.subscribe(s,i,I=>{u||I.status!==S.Pending&&(d(),t.removeEventListener("abort",m),o(this.handleSuccess(I)))}),p=setTimeout(async()=>{if(!(u||t.aborted))try{let I=await this.pollOrderStatus(e,r.orderRef,this.config.storeId,t);if(u)return;o(this.handleSuccess(I))}catch(I){if(u)return;if(I instanceof Error&&I.message==="Aborted"){a(I);return}try{let T=await this.recoverAfterPollingTimeout(r,e);o(T)}catch(T){a(T instanceof l?T:new l("TIMEOUT","Payment timed out and polling failed",T))}}finally{t.removeEventListener("abort",m),d()}},c.INITIAL_POLL_DELAY_MS)})}async pollOrderStatus(e,r,t,n){let i=Date.now()+c.POLLING_DURATION_MS;for(;Date.now()<i;){if(n.aborted)throw new Error("Aborted");try{let{data:o}=await this.api.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(o.status!==S.Pending)return o}catch(o){if(o instanceof Error&&o.message==="Aborted")throw o}await new Promise(o=>{let a=()=>{clearTimeout(u),o(void 0)};n.addEventListener("abort",a,{once:!0});let u=setTimeout(()=>{n.removeEventListener("abort",a),o(void 0)},c.POLLING_INTERVAL_MS)})}throw new Error("Payment verification timed out.")}async recoverAfterPollingTimeout(e,r){return await this.cancelSessionWithTimeout(r),await this.verifyFinalStatusWithRetry(e,r)}async cancelSessionWithTimeout(e){let r;try{await Promise.race([this.cancelSession(e),new Promise((t,n)=>{r=setTimeout(()=>{n(new Error("Viva timeout cancellation timed out"))},c.TIMEOUT_CANCEL_TIMEOUT_MS)})])}catch{}finally{r&&clearTimeout(r)}}async cancelSession(e){return await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:e}),this.currentSessionId===e&&(this.currentSessionId=null),!0}async verifyFinalStatusWithRetry(e,r){let t;for(let n=1;n<=c.VERIFY_MAX_RETRIES;n++)try{let s=await Promise.race([this.verifyFinalStatus(e,r),new Promise((i,o)=>setTimeout(()=>o(new Error("Verify timed out")),c.VERIFY_TIMEOUT_MS))]);if(s.status==="PENDING"){t=new Error("Verify returned pending status"),n<c.VERIFY_MAX_RETRIES&&await new Promise(i=>setTimeout(i,c.VERIFY_RETRY_DELAY_MS));continue}return s}catch(s){t=s,n<c.VERIFY_MAX_RETRIES&&await new Promise(i=>setTimeout(i,c.VERIFY_RETRY_DELAY_MS))}throw new l(F.PaymentTimeout,"Payment Failed",t)}handleSuccess(e){let r=e.status===S.Success,t={success:r,status:r?"SUCCESS":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(r?"":F.SystemUnknown),errorMessage:e.error?.message||(r?"":"Transaction failed without error details")};return e.transactionId&&(t.transactionId=e.transactionId),e.error?.referenceError&&(t.errorReference=e.error.referenceError),e.transaction&&(t.transaction=e.transaction),t}async cancelTransaction(e){if(!this.currentSessionId)return!1;try{let r=this.currentSessionId;return this.currentSessionId=null,await this.api.cancelVivaTransactionV2({cashRegisterId:this.config.storeId,sessionId:r}),this.abortController?.abort(),!0}catch(r){throw this.currentSessionId=null,new l("NETWORK_ERROR","Failed to cancel Viva transaction",r)}}async verifyFinalStatus(e,r){try{let{data:t}=await this.api.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r}),n=t.status===S.Success,s=t.status===S.Pending,i={success:n,status:n?"SUCCESS":s?"PENDING":"FAILED",orderId:t.orderId,errorCode:t.error?.code||(n||s?"":F.SystemUnknown),errorMessage:t.error?.message||(n||s?"":"Transaction failed without error details")};return t.transactionId&&(i.transactionId=t.transactionId),t.error?.referenceError&&(i.errorReference=t.error.referenceError),t.transaction&&(i.transaction=t.transaction),i}catch(t){throw new l("NETWORK_ERROR","Failed to verify final transaction status",t)}}async refundTransaction(e,r){try{let t={amount:e.amountCents,businessId:Number(this.config.storeId),displayId:this.config.kioskId,currency:e.currency,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId},{data:n}=await this.api.refundSingleVivaTransaction(t),s=n.success;return{success:s,status:s?"SUCCESS":"FAILED",orderId:e.orderRef,transactionId:n.sessionId}}catch(t){throw new l("NETWORK_ERROR","Failed to refund Viva transaction",t)}}abort(){this.abortController?.abort()}};import{PaymentApi as Ie,PaymentEventType as $,PaymentFailureCode as Re,PaymentProviderEnum as ge,SimplePaymentStatus as L,WorldlineApi as Pe}from"@munchi_oy/core";import{isAxiosError as Te}from"axios";var x=class{constructor(e,r,t){this.messaging=r;this.config=t;this.paymentApi=new Ie(void 0,"",e),this.worldlineApi=new Pe(void 0,"",e)}paymentApi;worldlineApi;abortController=null;currentOperationId=null;paymentProvider=ge.Worldline;async processPayment(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,referenceId:e.orderRef,showReceipt:!0,showTransactionResult:!0,...e.options&&"tipAmount"in e.options&&typeof e.options.tipAmount=="number"?{tipAmount:e.options.tipAmount}:{}};try{let n=await this.worldlineApi.createPayment(t),s=this.extractOperationId(n.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,$.StatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(n){throw this.currentOperationId=null,n instanceof l?n:this.mapWorldlineRequestError(n,"Failed to create Worldline payment")}}async cancelTransaction(e){if(!this.currentOperationId)return!1;let r={businessId:Number(this.config.storeId),targetOperationId:this.currentOperationId};try{return await this.worldlineApi.cancelPayment(r),!0}catch(t){throw this.mapWorldlineRequestError(t,"Failed to cancel Worldline transaction")}}async refundTransaction(e,r){this.abortController=new AbortController,r("CONNECTING");let t={amount:e.amountCents,businessId:Number(this.config.storeId),currency:e.currency,displayId:e.displayId,orderReferenceId:e.orderRef,referenceId:e.originalTransactionId};try{let n=await this.worldlineApi.createRefund(t),s=this.extractOperationId(n.data);if(this.currentOperationId=s,this.abortController.signal.aborted)throw new Error("Aborted");r("REQUIRES_INPUT",{sessionId:s});let i=await this.waitForPaymentCompletion(s,e.orderRef,$.RefundStatusChanged,this.abortController.signal);return this.currentOperationId=null,i}catch(n){throw this.currentOperationId=null,n instanceof l?n:this.mapWorldlineRequestError(n,"Failed to refund Worldline transaction")}}async verifyFinalStatus(e,r){try{let{data:t}=await this.paymentApi.getPaymentStatus({businessId:Number(this.config.storeId),orderId:e.orderRef,provider:this.paymentProvider,referenceId:r});return this.handlePaymentStatus(t)}catch(t){throw this.mapWorldlineRequestError(t,"Failed to verify final Worldline status")}}abort(){this.abortController?.abort()}async waitForPaymentCompletion(e,r,t,n){let s=`worldline.requests.${e}`;return new Promise((i,o)=>{let a=!1,u=()=>{a=!0,typeof m=="function"&&m(),clearTimeout(f)},d=()=>{u(),o(new l("CANCELLED","Transaction cancelled"))};n.addEventListener("abort",d);let m=this.messaging.subscribe(s,t,p=>{a||p.status===L.Pending||(u(),n.removeEventListener("abort",d),i(this.handlePaymentStatus(p)))}),f=setTimeout(async()=>{if(!(a||n.aborted))try{let p=await this.pollOrderStatus(e,r,this.config.storeId,n);i(this.handlePaymentStatus(p))}catch(p){o(new l("TIMEOUT","Payment timed out and polling failed",p))}finally{n.removeEventListener("abort",d),u()}},1e4)})}async pollOrderStatus(e,r,t,n){let o=Date.now()+12e4;for(;Date.now()<o;){if(n.aborted)throw new Error("Aborted");try{let{data:a}=await this.paymentApi.getPaymentStatus({businessId:Number(t),orderId:r,provider:this.paymentProvider,referenceId:e});if(n.aborted)throw new Error("Aborted");if(a.status!==L.Pending)return a}catch(a){if(a instanceof Error&&a.message==="Aborted")throw a}await new Promise(a=>{let u=()=>{clearTimeout(d),a(void 0)};n.addEventListener("abort",u,{once:!0});let d=setTimeout(()=>{n.removeEventListener("abort",u),a(void 0)},2e3)})}throw new Error("Payment verification timed out.")}handlePaymentStatus(e){let r=e.status===L.Success,t=e.status===L.Pending,n={success:r,status:r?"SUCCESS":t?"PENDING":"FAILED",orderId:e.orderId,errorCode:e.error?.code||(r||t?"":Re.SystemUnknown),errorMessage:e.error?.message||(r||t?"":"Transaction failed without error details")};return e.transactionId&&(n.transactionId=e.transactionId),e.error?.referenceError&&(n.errorReference=e.error.referenceError),e.transaction&&(n.transaction=e.transaction),n}extractOperationId(e){let r=typeof e=="object"&&e!==null&&"operationId"in e&&typeof e.operationId=="string"?e.operationId:null;if(!r)throw new Error("operationId is missing from response.");return r}mapWorldlineRequestError(e,r){if(Te(e)){if(e.response?.status===400||e.response?.status===409)return new l("TERMINAL_BUSY",r,e);if(e.response?.status===404)return new l("TERMINAL_OFFLINE",r,e)}return new l("NETWORK_ERROR",r,e)}};var U=class c{strategy;axios;messaging;timeoutMs;logger;_currentState="IDLE";_listeners=[];_cancellationIntent=!1;_currentSessionId;_autoResetTimer;autoResetOptions;appToAppConfig;paymentSessionConfig;static TERMINAL_STATES=["SUCCESS","FAILED","INTERNAL_ERROR"];static RESTING_STATES=["IDLE",...c.TERMINAL_STATES];constructor(e,r,t,n={},s){this.axios=e,this.messaging=r,this.logger=n.logger,this.timeoutMs=n.timeoutMs||3e4,this.autoResetOptions=n.autoResetOnPaymentComplete,this.appToAppConfig=n.appToApp,this.paymentSessionConfig=n.paymentSession,this.strategy=s??this.resolveStrategy(t)}get version(){return k}get currentState(){return this._currentState}generateErrorResult(e,r,t){return{success:!1,status:"ERROR",errorCode:this.normalizeErrorCode(r),errorMessage:t,orderId:e}}normalizeErrorCode(e){return e?e.includes(".")?e:{CANCELLED:y.PaymentCancelledByUser,DECLINED:y.PaymentDeclined,TERMINAL_BUSY:y.TerminalBusy,TERMINAL_OFFLINE:y.TerminalOffline,TIMEOUT:y.TerminalTimeout,NETWORK_ERROR:y.SystemProviderError,STRATEGY_ERROR:y.SystemProviderError,MISSING_CONFIG:y.SystemUnknown,INVALID_AMOUNT:y.SystemUnknown,UNKNOWN:y.SystemUnknown}[e]??y.SystemUnknown:y.SystemUnknown}subscribe=e=>(this._listeners.push(e),e(this._currentState),()=>{this._listeners=this._listeners.filter(r=>r!==e)});transitionTo(e){if(this._currentState===e)return;if(e==="IDLE"){this.cancelAutoReset(),this._currentState=e,this._listeners.forEach(t=>t(e));return}if(c.TERMINAL_STATES.includes(this._currentState)){let t=`Invalid State Transition: Attempted to move from terminal state ${this._currentState} to ${e}`;throw this.logger?.error(t),this._currentState!=="INTERNAL_ERROR"&&(this._currentState="INTERNAL_ERROR",this._listeners.forEach(n=>n(this._currentState))),new l("UNKNOWN",t)}this._currentState=e,c.TERMINAL_STATES.includes(e)&&this.scheduleAutoReset(e),this._listeners.forEach(t=>t(e))}_resetScheduledAt;get nextAutoResetAt(){return this._resetScheduledAt}cancelAutoReset(){this._autoResetTimer&&(clearTimeout(this._autoResetTimer),this._autoResetTimer=void 0),this._resetScheduledAt=void 0}scheduleAutoReset(e){if(!this.autoResetOptions)return;let t=e==="SUCCESS"?this.autoResetOptions.successDelayMs??5e3:this.autoResetOptions.failureDelayMs??5e3;this.logger?.info(`Scheduling auto-reset to IDLE in ${t}ms`),this._resetScheduledAt=Date.now()+t,this._autoResetTimer=setTimeout(()=>{this.logger?.info("Auto-reset triggered"),this.reset()},t)}resolveStrategy(e){switch(e.provider){case M.Nets:return new v(this.axios,this.messaging,e);case M.Worldline:return new x(this.axios,this.messaging,e);case M.Viva:return this.appToAppConfig?.enabled?new w(this.axios,this.messaging,e,this.appToAppConfig):this.paymentSessionConfig?.enabled?new O(this.axios,this.messaging,e):new E(this.axios,this.messaging,e);default:return new E(this.axios,this.messaging,e)}}initiateTransaction=async(e,r)=>{let t=r??{},n=e.orderRef;if(!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let i=Date.now();if(this._cancellationIntent=!1,this._currentSessionId=void 0,this.transitionTo("IDLE"),e.amountCents<=0)return this.generateErrorResult(e.orderRef,"INVALID_AMOUNT","Amount must be greater than 0");try{let o=(m,f)=>{f?.sessionId&&(this._currentSessionId=f.sessionId),m!=="FAILED"&&(this.transitionTo(m),this.fireStateCallback(m,t,n))},a=this.strategy.processPayment(e,o),d=(this.strategy.getExecutionMode?.()??"managed")==="callback_driven"?await a:await Promise.race([a,new Promise((m,f)=>{setTimeout(()=>{f(new l("TIMEOUT","Transaction timed out"))},this.timeoutMs)})]);if(d.success)this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(d));else{if(this._cancellationIntent)return await this.handleTransactionError(e,new Error("Aborted after resolution"),t);this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(d))}return this.logger?.info("Transaction completed successfully",{orderId:e.orderRef,durationMs:Date.now()-i}),d}catch(o){return this.logger?.warn("Transaction interrupted. Handling final status...",{error:o}),await this.handleTransactionError(e,o,t)}};async handleTransactionError(e,r,t={}){let n=r instanceof l&&(r.code==="TIMEOUT"||r.code===y.PaymentTimeout);if(!this._cancellationIntent&&!n&&(this.transitionTo("VERIFYING"),this.safeFireCallback(()=>t.onVerifying?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))),this._cancellationIntent){try{if(this._currentSessionId){let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i}}catch(i){this.logger?.warn("Final status verification failed during cancellation",{err:i})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}let s;if(this.strategy.abort(),this._currentSessionId)try{let i=await this.strategy.verifyFinalStatus(e,this._currentSessionId);if(i.success)return this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i)),i;s=n&&i.status==="PENDING"?this.buildErrorResultFromException(e.orderRef,r):i}catch(i){this.logger?.warn("Failed to get detailed error from verifyFinalStatus",{verifyErr:i}),s=this.buildErrorResultFromException(e.orderRef,i)}else s=this.buildErrorResultFromException(e.orderRef,r);return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(s)),s}buildErrorResultFromException(e,r){return r instanceof l?this.generateErrorResult(e,r.code,r.message):this.generateErrorResult(e,"UNKNOWN",r instanceof Error?r.message:"Unknown fatal error")}fireStateCallback(e,r,t){let n={orderRef:t,refPaymentId:this._currentSessionId};switch(e){case"CONNECTING":this.safeFireCallback(()=>r.onConnecting?.(n));break;case"REQUIRES_INPUT":this.safeFireCallback(()=>r.onRequiresInput?.(n));break;case"PROCESSING":this.safeFireCallback(()=>r.onProcessing?.(n));break}}safeFireCallback(e){try{e()}catch(r){this.logger?.warn("Callback execution failed",{error:r})}}cancel=async()=>{if(this.logger?.info("Attempting cancellation"),c.TERMINAL_STATES.includes(this._currentState))return this.logger?.warn("Cannot cancel: Transaction already in terminal state",{state:this._currentState}),!1;if(!this._currentSessionId&&this._currentState==="IDLE")return this.logger?.warn("Cannot cancel: No active session to cancel",{state:this._currentState}),!1;this._cancellationIntent=!0,this.transitionTo("VERIFYING");try{return await this.strategy.cancelTransaction(r=>this.transitionTo(r))}catch(e){return this.logger?.error("Cancellation command failed",e),!1}};reset=()=>{c.TERMINAL_STATES.includes(this._currentState)&&(this._currentSessionId=void 0,this._cancellationIntent=!1,this.transitionTo("IDLE"))};refund=async(e,r)=>{let t=r??{};if(this.logger?.info("Initiating refund",{orderRef:e.orderRef}),this._currentSessionId=void 0,this._cancellationIntent=!1,!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");this.transitionTo("IDLE");try{let s=(o,a)=>{a?.sessionId&&(this._currentSessionId=a.sessionId),o!=="FAILED"&&(this.transitionTo(o),this.fireStateCallback(o,t,e.orderRef))},i=await this.strategy.refundTransaction(e,s);return i.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(i))):this._cancellationIntent||i.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(i))),this.logger?.info("Refund completed",{success:i.success,orderRef:e.orderRef}),i}catch(s){if(this.logger?.error("Refund failed",s),this._cancellationIntent){try{if(this._currentSessionId){let o=await this.strategy.verifyFinalStatus(e,this._currentSessionId);return o.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(o)),o):o.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),o):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(o)),o)}}catch(o){this.logger?.warn("Refund final status verification failed",{verifyError:o})}return this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:e.orderRef,refPaymentId:this._currentSessionId})),{success:!1,status:"CANCELLED",errorCode:this.normalizeErrorCode("CANCELLED"),orderId:e.orderRef,...this._currentSessionId?{transactionId:this._currentSessionId}:{}}}this.transitionTo("FAILED");let i=this.generateErrorResult(e.orderRef,"UNKNOWN",s instanceof Error?s.message:"Refund failed");return this.safeFireCallback(()=>t.onError?.(i)),i}};revert=async(e,r)=>{let t=r??{};if(this.logger?.info("Reverting payment",{orderRef:e.orderRef}),this._currentSessionId=e.originalTransactionId,this._cancellationIntent=!1,!c.RESTING_STATES.includes(this._currentState))return this.generateErrorResult(e.orderRef,"UNKNOWN","A transaction is already in progress");let n=this.strategy.revertTransaction?.bind(this.strategy);if(!n)return this.generateErrorResult(e.orderRef,"STRATEGY_ERROR","Revert is not supported by the active payment strategy");this.transitionTo("CONNECTING");try{let s=await n(e);return this.settleSingleShot(s,e.orderRef,t),s}catch(s){return this.logger?.error("Revert failed",s),this.failSingleShot(e.orderRef,s,"Revert failed",t)}};settleSingleShot(e,r,t){e.success?(this.transitionTo("SUCCESS"),this.safeFireCallback(()=>t.onSuccess?.(e))):e.status==="CANCELLED"?(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onCancelled?.({orderRef:r,refPaymentId:this._currentSessionId}))):(this.transitionTo("FAILED"),this.safeFireCallback(()=>t.onError?.(e)))}failSingleShot(e,r,t,n){let s=this.generateErrorResult(e,"NETWORK_ERROR",r instanceof Error?r.message:t);return this.transitionTo("FAILED"),this.safeFireCallback(()=>n.onError?.(s)),s}};var Ce=(n=>(n.CONNECTING="CONNECTING",n.CONNECTED="CONNECTED",n.OFFLINE="OFFLINE",n.DISCONNECTED="DISCONNECTED",n))(Ce||{});export{Ce as AppReaderStatus,U as MunchiPaymentSDK,g as PaymentInteractionState,R as SdkPaymentStatus};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AxiosInstance } from "axios";
|
|
2
2
|
import type { IPaymentStrategy } from "./strategies/IPaymentStrategy";
|
|
3
|
-
import { type IMessagingAdapter, type IMunchiPaymentSDK,
|
|
3
|
+
import { type IMessagingAdapter, type IMunchiPaymentSDK, PaymentInteractionState, type PaymentResult, type PaymentTerminalConfig, type RefundRequest, type RevertRequest, type PaymentRequest as SdkPaymentRequest, type TransactionOptions } from "./types/payment";
|
|
4
4
|
import type { SDKOptions } from "./types/sdk";
|
|
5
5
|
type StateListener = (state: PaymentInteractionState) => void;
|
|
6
6
|
export declare class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
@@ -17,7 +17,6 @@ export declare class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
17
17
|
private autoResetOptions;
|
|
18
18
|
private appToAppConfig;
|
|
19
19
|
private paymentSessionConfig;
|
|
20
|
-
private manualStrategy;
|
|
21
20
|
private static readonly TERMINAL_STATES;
|
|
22
21
|
private static readonly RESTING_STATES;
|
|
23
22
|
constructor(axios: AxiosInstance, messaging: IMessagingAdapter, config: PaymentTerminalConfig, options?: SDKOptions, strategy?: IPaymentStrategy);
|
|
@@ -40,8 +39,7 @@ export declare class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
40
39
|
cancel: () => Promise<boolean>;
|
|
41
40
|
reset: () => void;
|
|
42
41
|
refund: (params: RefundRequest, options?: TransactionOptions) => Promise<PaymentResult>;
|
|
43
|
-
|
|
44
|
-
voidManualPayment: (params: VoidRequest, options?: TransactionOptions) => Promise<PaymentResult>;
|
|
42
|
+
revert: (params: RevertRequest, options?: TransactionOptions) => Promise<PaymentResult>;
|
|
45
43
|
private settleSingleShot;
|
|
46
44
|
private failSingleShot;
|
|
47
45
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MunchiPaymentSDK.d.ts","sourceRoot":"","sources":["../../src/MunchiPaymentSDK.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"MunchiPaymentSDK.d.ts","sourceRoot":"","sources":["../../src/MunchiPaymentSDK.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAOtE,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,iBAAiB,EACtB,uBAAuB,EACvB,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,cAAc,IAAI,iBAAiB,EAExC,KAAK,kBAAkB,EACxB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAIV,UAAU,EACX,MAAM,aAAa,CAAC;AAErB,KAAK,aAAa,GAAG,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,CAAC;AAE9D,qBAAa,gBAAiB,YAAW,iBAAiB;IACxD,OAAO,CAAC,QAAQ,CAAmB;IACnC,OAAO,CAAC,KAAK,CAAgB;IAC7B,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,aAAa,CAAyD;IAC9E,OAAO,CAAC,UAAU,CAAuB;IACzC,OAAO,CAAC,mBAAmB,CAAS;IACpC,OAAO,CAAC,iBAAiB,CAAqB;IAC9C,OAAO,CAAC,eAAe,CAA4C;IACnE,OAAO,CAAC,gBAAgB,CAA2C;IACnE,OAAO,CAAC,cAAc,CAA6B;IACnD,OAAO,CAAC,oBAAoB,CAAmC;IAE/D,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,eAAe,CAIrC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAGpC;gBAGA,KAAK,EAAE,aAAa,EACpB,SAAS,EAAE,iBAAiB,EAC5B,MAAM,EAAE,qBAAqB,EAC7B,OAAO,GAAE,UAAe,EACxB,QAAQ,CAAC,EAAE,gBAAgB;IAY7B,IAAW,OAAO,WAEjB;IAED,IAAW,YAAY,4BAEtB;IAED,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,kBAAkB;IAoBnB,SAAS,GAAI,UAAU,aAAa,KAAG,CAAC,MAAM,IAAI,CAAC,CAOxD;IAEF,OAAO,CAAC,YAAY;IAmCpB,OAAO,CAAC,iBAAiB,CAAqB;IAE9C,IAAW,eAAe,IAAI,MAAM,GAAG,SAAS,CAE/C;IAED,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,iBAAiB;IAqBzB,OAAO,CAAC,eAAe;IAyBhB,mBAAmB,GACxB,QAAQ,iBAAiB,EACzB,UAAU,kBAAkB,KAC3B,OAAO,CAAC,aAAa,CAAC,CAgGvB;YAEY,sBAAsB;IA0GpC,OAAO,CAAC,6BAA6B;IAarC,OAAO,CAAC,iBAAiB;IAsBzB,OAAO,CAAC,gBAAgB;IAQjB,MAAM,QAAa,OAAO,CAAC,OAAO,CAAC,CAyCxC;IAEK,KAAK,QAAO,IAAI,CAMrB;IAEK,MAAM,GACX,QAAQ,aAAa,EACrB,UAAU,kBAAkB,KAC3B,OAAO,CAAC,aAAa,CAAC,CAqIvB;IAEK,MAAM,GACX,QAAQ,aAAa,EACrB,UAAU,kBAAkB,KAC3B,OAAO,CAAC,aAAa,CAAC,CAwCvB;IAEF,OAAO,CAAC,gBAAgB;IAsBxB,OAAO,CAAC,cAAc;CAevB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PaymentInteractionState, PaymentRequest, PaymentResult, RefundRequest } from "../types/payment";
|
|
1
|
+
import type { PaymentInteractionState, PaymentRequest, PaymentResult, RefundRequest, RevertRequest } from "../types/payment";
|
|
2
2
|
export declare enum StrategyExecutionMode {
|
|
3
3
|
Managed = "managed",
|
|
4
4
|
CallbackDriven = "callback_driven"
|
|
@@ -13,6 +13,7 @@ export interface IPaymentStrategy {
|
|
|
13
13
|
sessionId?: string;
|
|
14
14
|
}) => void): Promise<PaymentResult>;
|
|
15
15
|
verifyFinalStatus(request: PaymentRequest, sessionId: string): Promise<PaymentResult>;
|
|
16
|
+
revertTransaction?(request: RevertRequest): Promise<PaymentResult>;
|
|
16
17
|
abort(): void;
|
|
17
18
|
}
|
|
18
19
|
//# sourceMappingURL=IPaymentStrategy.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IPaymentStrategy.d.ts","sourceRoot":"","sources":["../../../src/strategies/IPaymentStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,uBAAuB,EACvB,cAAc,EACd,aAAa,EACb,aAAa,EACd,MAAM,kBAAkB,CAAC;AAE1B,oBAAY,qBAAqB;IAC/B,OAAO,YAAY;IACnB,cAAc,oBAAoB;CACnC;AAED,MAAM,WAAW,gBAAgB;IAC/B,gBAAgB,CAAC,IAAI,qBAAqB,CAAC;IAE3C,cAAc,CACZ,OAAO,EAAE,cAAc,EACvB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,iBAAiB,CACf,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,GACtD,OAAO,CAAC,OAAO,CAAC,CAAC;IACpB,iBAAiB,CACf,OAAO,EAAE,aAAa,EACtB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,iBAAiB,CAAC,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IACtF,KAAK,IAAI,IAAI,CAAC;CACf"}
|
|
1
|
+
{"version":3,"file":"IPaymentStrategy.d.ts","sourceRoot":"","sources":["../../../src/strategies/IPaymentStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,uBAAuB,EACvB,cAAc,EACd,aAAa,EACb,aAAa,EACb,aAAa,EACd,MAAM,kBAAkB,CAAC;AAE1B,oBAAY,qBAAqB;IAC/B,OAAO,YAAY;IACnB,cAAc,oBAAoB;CACnC;AAED,MAAM,WAAW,gBAAgB;IAC/B,gBAAgB,CAAC,IAAI,qBAAqB,CAAC;IAE3C,cAAc,CACZ,OAAO,EAAE,cAAc,EACvB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,iBAAiB,CACf,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,GACtD,OAAO,CAAC,OAAO,CAAC,CAAC;IACpB,iBAAiB,CACf,OAAO,EAAE,aAAa,EACtB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,iBAAiB,CAAC,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IACtF,iBAAiB,CAAC,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;IACnE,KAAK,IAAI,IAAI,CAAC;CACf"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AxiosInstance } from "axios";
|
|
2
|
-
import { type IMessagingAdapter, type PaymentInteractionState, type PaymentRequest, type PaymentResult, type PaymentTerminalConfig, type RefundRequest } from "../types/payment";
|
|
2
|
+
import { type IMessagingAdapter, type PaymentInteractionState, type PaymentRequest, type PaymentResult, type PaymentTerminalConfig, type RefundRequest, type RevertRequest } from "../types/payment";
|
|
3
3
|
import type { IPaymentStrategy } from "./IPaymentStrategy";
|
|
4
4
|
export declare class VivaSessionStrategy implements IPaymentStrategy {
|
|
5
5
|
private messaging;
|
|
@@ -22,6 +22,7 @@ export declare class VivaSessionStrategy implements IPaymentStrategy {
|
|
|
22
22
|
refundTransaction(request: RefundRequest, _onStateChange: (state: PaymentInteractionState, detail?: {
|
|
23
23
|
sessionId?: string;
|
|
24
24
|
}) => void): Promise<PaymentResult>;
|
|
25
|
+
revertTransaction(request: RevertRequest): Promise<PaymentResult>;
|
|
25
26
|
abort(): void;
|
|
26
27
|
private pollUntilTerminal;
|
|
27
28
|
private waitForCompletion;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VivaSessionStrategy.d.ts","sourceRoot":"","sources":["../../../src/strategies/VivaSessionStrategy.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,uBAAuB,EAE5B,KAAK,cAAc,EACnB,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,aAAa,EAEnB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAG3D,qBAAa,mBAAoB,YAAW,gBAAgB;IAcxD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,MAAM;IAdhB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAU;IACrD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAQ;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAS;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAS;IAEtD,OAAO,CAAC,UAAU,CAAoB;IACtC,OAAO,CAAC,eAAe,CAAgC;IACvD,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,mBAAmB,CAAuB;IAClD,OAAO,CAAC,kBAAkB,CAAuB;gBAG/C,KAAK,EAAE,aAAa,EACZ,SAAS,EAAE,iBAAiB,EAC5B,MAAM,EAAE,qBAAqB;IAKjC,cAAc,CAClB,OAAO,EAAE,cAAc,EACvB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC;IA2DnB,iBAAiB,CACrB,OAAO,EAAE,cAAc,EACvB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,aAAa,CAAC;IAkBnB,iBAAiB,CACrB,cAAc,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,GACvD,OAAO,CAAC,OAAO,CAAC;IAmBb,iBAAiB,CACrB,OAAO,EAAE,aAAa,EACtB,cAAc,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACxF,OAAO,CAAC,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"VivaSessionStrategy.d.ts","sourceRoot":"","sources":["../../../src/strategies/VivaSessionStrategy.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,uBAAuB,EAE5B,KAAK,cAAc,EACnB,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,aAAa,EAClB,KAAK,aAAa,EAEnB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAG3D,qBAAa,mBAAoB,YAAW,gBAAgB;IAcxD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,MAAM;IAdhB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAU;IACrD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAQ;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAS;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAS;IAEtD,OAAO,CAAC,UAAU,CAAoB;IACtC,OAAO,CAAC,eAAe,CAAgC;IACvD,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,mBAAmB,CAAuB;IAClD,OAAO,CAAC,kBAAkB,CAAuB;gBAG/C,KAAK,EAAE,aAAa,EACZ,SAAS,EAAE,iBAAiB,EAC5B,MAAM,EAAE,qBAAqB;IAKjC,cAAc,CAClB,OAAO,EAAE,cAAc,EACvB,aAAa,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACvF,OAAO,CAAC,aAAa,CAAC;IA2DnB,iBAAiB,CACrB,OAAO,EAAE,cAAc,EACvB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,aAAa,CAAC;IAkBnB,iBAAiB,CACrB,cAAc,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,GACvD,OAAO,CAAC,OAAO,CAAC;IAmBb,iBAAiB,CACrB,OAAO,EAAE,aAAa,EACtB,cAAc,EAAE,CAAC,KAAK,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,GACxF,OAAO,CAAC,aAAa,CAAC;IAmCnB,iBAAiB,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC;IAkCvE,KAAK,IAAI,IAAI;YAIC,iBAAiB;IAqC/B,OAAO,CAAC,iBAAiB;IA0DzB,OAAO,CAAC,YAAY;IA8BpB,OAAO,CAAC,QAAQ;IAQhB,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,sBAAsB;IAgB9B,OAAO,CAAC,KAAK;CAiBd"}
|
|
@@ -67,22 +67,9 @@ export interface RefundRequest {
|
|
|
67
67
|
businessId: number;
|
|
68
68
|
options?: VivaRefundOptions | NetsRefundOptions | WorldlineRefundOptions;
|
|
69
69
|
}
|
|
70
|
-
export interface
|
|
70
|
+
export interface RevertRequest {
|
|
71
71
|
orderRef: string;
|
|
72
|
-
|
|
73
|
-
paymethod: string;
|
|
74
|
-
tipAmount?: number;
|
|
75
|
-
splitContext?: SplitContextDto;
|
|
76
|
-
/**
|
|
77
|
-
* Arbitrary client metadata persisted on the session (e.g. voucher code,
|
|
78
|
-
* gift card id, employee id, external reference, notes). Surfaced to
|
|
79
|
-
* reconciliation when building the order paymentEvent.
|
|
80
|
-
*/
|
|
81
|
-
metadata?: Record<string, unknown>;
|
|
82
|
-
}
|
|
83
|
-
export interface VoidRequest {
|
|
84
|
-
orderRef: string;
|
|
85
|
-
sessionId: string;
|
|
72
|
+
originalTransactionId: string;
|
|
86
73
|
}
|
|
87
74
|
export interface PaymentTerminalConfig {
|
|
88
75
|
channel: ProviderEnum;
|
|
@@ -135,8 +122,7 @@ export interface IMunchiPaymentSDK {
|
|
|
135
122
|
initiateTransaction(params: PaymentRequest, options?: TransactionOptions): Promise<PaymentResult>;
|
|
136
123
|
cancel(): Promise<boolean>;
|
|
137
124
|
refund(params: RefundRequest, options?: TransactionOptions): Promise<PaymentResult>;
|
|
138
|
-
|
|
139
|
-
voidManualPayment(params: VoidRequest, options?: TransactionOptions): Promise<PaymentResult>;
|
|
125
|
+
revert(params: RevertRequest, options?: TransactionOptions): Promise<PaymentResult>;
|
|
140
126
|
reset(): void;
|
|
141
127
|
}
|
|
142
128
|
//# sourceMappingURL=payment.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../../src/types/payment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,eAAe,EACf,cAAc,EACf,MAAM,iBAAiB,CAAC;AAEzB,MAAM,MAAM,kBAAkB,GAAG,IAAI,CACnC,cAAc,EACd,IAAI,GAAG,WAAW,GAAG,UAAU,CAChC,CAAC;AAEF,oBAAY,gBAAgB;IAC1B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,KAAK,UAAU;CAChB;AAED,oBAAY,uBAAuB;IACjC,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,cAAc,mBAAmB;IACjC,SAAS,cAAc;CACxB;AAED,MAAM,WAAW,WAAW;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;CAErD;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;CAE/D;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,YAAY,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,WAAW,GAAG,WAAW,GAAG,gBAAgB,CAAC;IACvD;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;CAChC;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,YAAY,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB;;;;;;;OAOG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,iBAAiB,GAAG,iBAAiB,GAAG,sBAAsB,CAAC;CAC1E;AAED,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../../src/types/payment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,eAAe,EACf,cAAc,EACf,MAAM,iBAAiB,CAAC;AAEzB,MAAM,MAAM,kBAAkB,GAAG,IAAI,CACnC,cAAc,EACd,IAAI,GAAG,WAAW,GAAG,UAAU,CAChC,CAAC;AAEF,oBAAY,gBAAgB;IAC1B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,KAAK,UAAU;CAChB;AAED,oBAAY,uBAAuB;IACjC,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,cAAc,mBAAmB;IACjC,UAAU,eAAe;IACzB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,cAAc,mBAAmB;IACjC,SAAS,cAAc;CACxB;AAED,MAAM,WAAW,WAAW;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;CAErD;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;CAE/D;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,YAAY,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,WAAW,GAAG,WAAW,GAAG,gBAAgB,CAAC;IACvD;;;;OAIG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;CAChC;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,YAAY,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB;;;;;;;OAOG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,iBAAiB,GAAG,iBAAiB,GAAG,sBAAsB,CAAC;CAC1E;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,YAAY,CAAC;IACtB,QAAQ,EAAE,eAAe,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,gBAAgB,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,cAAc,CAAC;CAC9B;AAED,MAAM,WAAW,kBAAkB;IACjC,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACnC,KAAK,IAAI,CAAC;IACX,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE;QACtB,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACnC,KAAK,IAAI,CAAC;IACX,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACnC,KAAK,IAAI,CAAC;IACX,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE;QAClB,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACnC,KAAK,IAAI,CAAC;IACX,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,IAAI,CAAC;IAC5C,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,IAAI,CAAC;IAC1C,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE;QAClB,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KACnC,KAAK,IAAI,CAAC;CACZ;AAED,MAAM,WAAW,iBAAiB;IAChC,SAAS,CAAC,CAAC,EACT,OAAO,EAAE,MAAM,EACf,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,GAC3B,MAAM,IAAI,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,YAAY,EAAE,uBAAuB,CAAC;IAC/C,QAAQ,CAAC,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7C,SAAS,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,GAAG,MAAM,IAAI,CAAC;IAC1E,mBAAmB,CACjB,MAAM,EAAE,cAAc,EACtB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAC3B,MAAM,CACJ,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,MAAM,CACJ,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC,aAAa,CAAC,CAAC;IAC1B,KAAK,IAAI,IAAI,CAAC;CACf"}
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.10.
|
|
1
|
+
export declare const VERSION = "1.10.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@munchi_oy/payments",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.2",
|
|
4
4
|
"description": "Munchi Payments SDK - Payment processing utilities",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@types/jest": "^30.0.0",
|
|
33
33
|
"tsup": "^8.0.0",
|
|
34
34
|
"typescript": "^5.0.0",
|
|
35
|
-
"@munchi_oy/core": "1.9.
|
|
35
|
+
"@munchi_oy/core": "1.9.45"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"test": "jest",
|
package/src/MunchiPaymentSDK.ts
CHANGED
|
@@ -4,7 +4,6 @@ import { version } from "../package.json";
|
|
|
4
4
|
import { PaymentErrorCode, PaymentSDKError } from "./error";
|
|
5
5
|
import type { IPaymentStrategy } from "./strategies/IPaymentStrategy";
|
|
6
6
|
import { StrategyExecutionMode } from "./strategies/IPaymentStrategy";
|
|
7
|
-
import { ManualSessionStrategy } from "./strategies/ManualSessionStrategy";
|
|
8
7
|
import { NetsStrategy } from "./strategies/NetsStrategy";
|
|
9
8
|
import { VivaAppToAppStrategy } from "./strategies/VivaAppToAppStrategy";
|
|
10
9
|
import { VivaSessionStrategy } from "./strategies/VivaSessionStrategy";
|
|
@@ -13,15 +12,14 @@ import { WorldlineStrategy } from "./strategies/WorldlineStrategy";
|
|
|
13
12
|
import {
|
|
14
13
|
type IMessagingAdapter,
|
|
15
14
|
type IMunchiPaymentSDK,
|
|
16
|
-
type ManualPaymentRequest,
|
|
17
15
|
PaymentInteractionState,
|
|
18
16
|
type PaymentResult,
|
|
19
17
|
type PaymentTerminalConfig,
|
|
20
18
|
type RefundRequest,
|
|
19
|
+
type RevertRequest,
|
|
21
20
|
type PaymentRequest as SdkPaymentRequest,
|
|
22
21
|
SdkPaymentStatus,
|
|
23
22
|
type TransactionOptions,
|
|
24
|
-
type VoidRequest,
|
|
25
23
|
} from "./types/payment";
|
|
26
24
|
import type {
|
|
27
25
|
AppToAppConfig,
|
|
@@ -46,7 +44,6 @@ export class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
46
44
|
private autoResetOptions: SDKOptions["autoResetOnPaymentComplete"];
|
|
47
45
|
private appToAppConfig: AppToAppConfig | undefined;
|
|
48
46
|
private paymentSessionConfig: PaymentSessionConfig | undefined;
|
|
49
|
-
private manualStrategy: ManualSessionStrategy;
|
|
50
47
|
|
|
51
48
|
private static readonly TERMINAL_STATES = [
|
|
52
49
|
PaymentInteractionState.SUCCESS,
|
|
@@ -73,7 +70,6 @@ export class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
73
70
|
this.autoResetOptions = options.autoResetOnPaymentComplete;
|
|
74
71
|
this.appToAppConfig = options.appToApp;
|
|
75
72
|
this.paymentSessionConfig = options.paymentSession;
|
|
76
|
-
this.manualStrategy = new ManualSessionStrategy(axios, config);
|
|
77
73
|
this.strategy = strategy ?? this.resolveStrategy(config);
|
|
78
74
|
}
|
|
79
75
|
|
|
@@ -662,15 +658,13 @@ export class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
662
658
|
}
|
|
663
659
|
};
|
|
664
660
|
|
|
665
|
-
public
|
|
666
|
-
params:
|
|
661
|
+
public revert = async (
|
|
662
|
+
params: RevertRequest,
|
|
667
663
|
options?: TransactionOptions,
|
|
668
664
|
): Promise<PaymentResult> => {
|
|
669
665
|
const callbacks = options ?? {};
|
|
670
|
-
this.logger?.info("
|
|
671
|
-
|
|
672
|
-
});
|
|
673
|
-
this._currentSessionId = undefined;
|
|
666
|
+
this.logger?.info("Reverting payment", { orderRef: params.orderRef });
|
|
667
|
+
this._currentSessionId = params.originalTransactionId;
|
|
674
668
|
this._cancellationIntent = false;
|
|
675
669
|
|
|
676
670
|
if (!MunchiPaymentSDK.RESTING_STATES.includes(this._currentState)) {
|
|
@@ -681,58 +675,29 @@ export class MunchiPaymentSDK implements IMunchiPaymentSDK {
|
|
|
681
675
|
);
|
|
682
676
|
}
|
|
683
677
|
|
|
684
|
-
this.
|
|
685
|
-
|
|
686
|
-
callbacks.onConnecting?.({
|
|
687
|
-
orderRef: params.orderRef,
|
|
688
|
-
refPaymentId: undefined,
|
|
689
|
-
}),
|
|
678
|
+
const revertTransaction = this.strategy.revertTransaction?.bind(
|
|
679
|
+
this.strategy,
|
|
690
680
|
);
|
|
691
|
-
|
|
692
|
-
try {
|
|
693
|
-
const result = await this.manualStrategy.recordPayment(params);
|
|
694
|
-
this.settleSingleShot(result, params.orderRef, callbacks);
|
|
695
|
-
return result;
|
|
696
|
-
} catch (error) {
|
|
697
|
-
this.logger?.error("Manual payment failed", error);
|
|
698
|
-
return this.failSingleShot(
|
|
699
|
-
params.orderRef,
|
|
700
|
-
error,
|
|
701
|
-
"Manual payment failed",
|
|
702
|
-
callbacks,
|
|
703
|
-
);
|
|
704
|
-
}
|
|
705
|
-
};
|
|
706
|
-
|
|
707
|
-
public voidManualPayment = async (
|
|
708
|
-
params: VoidRequest,
|
|
709
|
-
options?: TransactionOptions,
|
|
710
|
-
): Promise<PaymentResult> => {
|
|
711
|
-
const callbacks = options ?? {};
|
|
712
|
-
this.logger?.info("Voiding manual payment", { orderRef: params.orderRef });
|
|
713
|
-
this._currentSessionId = params.sessionId;
|
|
714
|
-
this._cancellationIntent = false;
|
|
715
|
-
|
|
716
|
-
if (!MunchiPaymentSDK.RESTING_STATES.includes(this._currentState)) {
|
|
681
|
+
if (!revertTransaction) {
|
|
717
682
|
return this.generateErrorResult(
|
|
718
683
|
params.orderRef,
|
|
719
|
-
PaymentErrorCode.
|
|
720
|
-
"
|
|
684
|
+
PaymentErrorCode.STRATEGY_ERROR,
|
|
685
|
+
"Revert is not supported by the active payment strategy",
|
|
721
686
|
);
|
|
722
687
|
}
|
|
723
688
|
|
|
724
689
|
this.transitionTo(PaymentInteractionState.CONNECTING);
|
|
725
690
|
|
|
726
691
|
try {
|
|
727
|
-
const result = await
|
|
692
|
+
const result = await revertTransaction(params);
|
|
728
693
|
this.settleSingleShot(result, params.orderRef, callbacks);
|
|
729
694
|
return result;
|
|
730
695
|
} catch (error) {
|
|
731
|
-
this.logger?.error("
|
|
696
|
+
this.logger?.error("Revert failed", error);
|
|
732
697
|
return this.failSingleShot(
|
|
733
698
|
params.orderRef,
|
|
734
699
|
error,
|
|
735
|
-
"
|
|
700
|
+
"Revert failed",
|
|
736
701
|
callbacks,
|
|
737
702
|
);
|
|
738
703
|
}
|
|
@@ -3,6 +3,7 @@ import type {
|
|
|
3
3
|
PaymentRequest,
|
|
4
4
|
PaymentResult,
|
|
5
5
|
RefundRequest,
|
|
6
|
+
RevertRequest,
|
|
6
7
|
} from "../types/payment";
|
|
7
8
|
|
|
8
9
|
export enum StrategyExecutionMode {
|
|
@@ -25,5 +26,6 @@ export interface IPaymentStrategy {
|
|
|
25
26
|
onStateChange: (state: PaymentInteractionState, detail?: { sessionId?: string }) => void,
|
|
26
27
|
): Promise<PaymentResult>;
|
|
27
28
|
verifyFinalStatus(request: PaymentRequest, sessionId: string): Promise<PaymentResult>;
|
|
29
|
+
revertTransaction?(request: RevertRequest): Promise<PaymentResult>;
|
|
28
30
|
abort(): void;
|
|
29
31
|
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
type PaymentResult,
|
|
21
21
|
type PaymentTerminalConfig,
|
|
22
22
|
type RefundRequest,
|
|
23
|
+
type RevertRequest,
|
|
23
24
|
SdkPaymentStatus,
|
|
24
25
|
} from "../types/payment";
|
|
25
26
|
import type { IPaymentStrategy } from "./IPaymentStrategy";
|
|
@@ -187,6 +188,40 @@ export class VivaSessionStrategy implements IPaymentStrategy {
|
|
|
187
188
|
}
|
|
188
189
|
}
|
|
189
190
|
|
|
191
|
+
async revertTransaction(request: RevertRequest): Promise<PaymentResult> {
|
|
192
|
+
try {
|
|
193
|
+
const payload: ReverseSessionDto = {
|
|
194
|
+
sessionId: request.originalTransactionId,
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
const { data } = await this.sessionApi.revertVivaSession(payload);
|
|
198
|
+
|
|
199
|
+
const isReverted =
|
|
200
|
+
data.status === PaymentSessionStatus.Refunded ||
|
|
201
|
+
data.status === PaymentSessionStatus.Refunding;
|
|
202
|
+
|
|
203
|
+
const result: PaymentResult = {
|
|
204
|
+
success: isReverted,
|
|
205
|
+
status: isReverted ? SdkPaymentStatus.SUCCESS : SdkPaymentStatus.FAILED,
|
|
206
|
+
orderId: request.orderRef,
|
|
207
|
+
transactionId: data.providerTransactionId ?? data.sessionId,
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
if (!isReverted) {
|
|
211
|
+
if (data.errorCode) result.errorCode = data.errorCode;
|
|
212
|
+
if (data.errorMessage) result.errorMessage = data.errorMessage;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
return result;
|
|
216
|
+
} catch (error) {
|
|
217
|
+
throw new PaymentSDKError(
|
|
218
|
+
PaymentErrorCode.NETWORK_ERROR,
|
|
219
|
+
"Failed to revert Viva transaction",
|
|
220
|
+
error,
|
|
221
|
+
);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
190
225
|
abort(): void {
|
|
191
226
|
this.abortController?.abort();
|
|
192
227
|
}
|
|
@@ -303,10 +303,10 @@ export class VivaStrategy implements IPaymentStrategy {
|
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
const message = lastError instanceof Error ? lastError.message : "Verify retries exhausted";
|
|
307
306
|
throw new PaymentSDKError(
|
|
308
307
|
PaymentFailureCode.PaymentTimeout as unknown as PaymentErrorCode,
|
|
309
|
-
|
|
308
|
+
"Payment Failed",
|
|
309
|
+
lastError, // raw kept for debugging/logging only, not surfaced to user
|
|
310
310
|
);
|
|
311
311
|
}
|
|
312
312
|
|
package/src/types/payment.ts
CHANGED
|
@@ -90,23 +90,9 @@ export interface RefundRequest {
|
|
|
90
90
|
options?: VivaRefundOptions | NetsRefundOptions | WorldlineRefundOptions;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
export interface
|
|
93
|
+
export interface RevertRequest {
|
|
94
94
|
orderRef: string;
|
|
95
|
-
|
|
96
|
-
paymethod: string;
|
|
97
|
-
tipAmount?: number;
|
|
98
|
-
splitContext?: SplitContextDto;
|
|
99
|
-
/**
|
|
100
|
-
* Arbitrary client metadata persisted on the session (e.g. voucher code,
|
|
101
|
-
* gift card id, employee id, external reference, notes). Surfaced to
|
|
102
|
-
* reconciliation when building the order paymentEvent.
|
|
103
|
-
*/
|
|
104
|
-
metadata?: Record<string, unknown>;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
export interface VoidRequest {
|
|
108
|
-
orderRef: string;
|
|
109
|
-
sessionId: string;
|
|
95
|
+
originalTransactionId: string;
|
|
110
96
|
}
|
|
111
97
|
|
|
112
98
|
export interface PaymentTerminalConfig {
|
|
@@ -174,12 +160,8 @@ export interface IMunchiPaymentSDK {
|
|
|
174
160
|
params: RefundRequest,
|
|
175
161
|
options?: TransactionOptions,
|
|
176
162
|
): Promise<PaymentResult>;
|
|
177
|
-
|
|
178
|
-
params:
|
|
179
|
-
options?: TransactionOptions,
|
|
180
|
-
): Promise<PaymentResult>;
|
|
181
|
-
voidManualPayment(
|
|
182
|
-
params: VoidRequest,
|
|
163
|
+
revert(
|
|
164
|
+
params: RevertRequest,
|
|
183
165
|
options?: TransactionOptions,
|
|
184
166
|
): Promise<PaymentResult>;
|
|
185
167
|
reset(): void;
|
package/src/version.ts
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { AxiosInstance } from "axios";
|
|
2
|
-
import { type ManualPaymentRequest, type PaymentResult, type PaymentTerminalConfig, type VoidRequest } from "../types/payment";
|
|
3
|
-
export declare class ManualSessionStrategy {
|
|
4
|
-
private config;
|
|
5
|
-
private sessionApi;
|
|
6
|
-
constructor(axios: AxiosInstance, config: PaymentTerminalConfig);
|
|
7
|
-
recordPayment(request: ManualPaymentRequest): Promise<PaymentResult>;
|
|
8
|
-
voidPayment(request: VoidRequest): Promise<PaymentResult>;
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=ManualSessionStrategy.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ManualSessionStrategy.d.ts","sourceRoot":"","sources":["../../../src/strategies/ManualSessionStrategy.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAG3C,OAAO,EACL,KAAK,oBAAoB,EACzB,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAE1B,KAAK,WAAW,EACjB,MAAM,kBAAkB,CAAC;AAG1B,qBAAa,qBAAqB;IAK9B,OAAO,CAAC,MAAM;IAJhB,OAAO,CAAC,UAAU,CAAoB;gBAGpC,KAAK,EAAE,aAAa,EACZ,MAAM,EAAE,qBAAqB;IAKjC,aAAa,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,aAAa,CAAC;IA8BpE,WAAW,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,aAAa,CAAC;CAmChE"}
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type CreateManualSessionDto,
|
|
3
|
-
PaymentSessionApi,
|
|
4
|
-
PaymentSessionStatus,
|
|
5
|
-
} from "@munchi_oy/core";
|
|
6
|
-
import type { AxiosInstance } from "axios";
|
|
7
|
-
|
|
8
|
-
import { PaymentErrorCode, PaymentSDKError } from "../error";
|
|
9
|
-
import {
|
|
10
|
-
type ManualPaymentRequest,
|
|
11
|
-
type PaymentResult,
|
|
12
|
-
type PaymentTerminalConfig,
|
|
13
|
-
SdkPaymentStatus,
|
|
14
|
-
type VoidRequest,
|
|
15
|
-
} from "../types/payment";
|
|
16
|
-
import { mapSessionResult } from "./sessionResult";
|
|
17
|
-
|
|
18
|
-
export class ManualSessionStrategy {
|
|
19
|
-
private sessionApi: PaymentSessionApi;
|
|
20
|
-
|
|
21
|
-
constructor(
|
|
22
|
-
axios: AxiosInstance,
|
|
23
|
-
private config: PaymentTerminalConfig,
|
|
24
|
-
) {
|
|
25
|
-
this.sessionApi = new PaymentSessionApi(undefined, "", axios);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
async recordPayment(request: ManualPaymentRequest): Promise<PaymentResult> {
|
|
29
|
-
try {
|
|
30
|
-
const payload: CreateManualSessionDto = {
|
|
31
|
-
businessId: Number(this.config.storeId),
|
|
32
|
-
orderId: request.orderRef,
|
|
33
|
-
amount: request.amountCents,
|
|
34
|
-
paymethod: request.paymethod,
|
|
35
|
-
provider: this.config.provider,
|
|
36
|
-
};
|
|
37
|
-
if (request.tipAmount !== undefined) {
|
|
38
|
-
payload.tipAmount = request.tipAmount;
|
|
39
|
-
}
|
|
40
|
-
if (request.splitContext !== undefined) {
|
|
41
|
-
payload.splitContext = request.splitContext;
|
|
42
|
-
}
|
|
43
|
-
if (request.metadata !== undefined) {
|
|
44
|
-
payload.metadata = request.metadata;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
const { data } = await this.sessionApi.recordManualPayment(payload);
|
|
48
|
-
return mapSessionResult(data, request.orderRef);
|
|
49
|
-
} catch (error) {
|
|
50
|
-
throw new PaymentSDKError(
|
|
51
|
-
PaymentErrorCode.NETWORK_ERROR,
|
|
52
|
-
"Failed to record manual payment",
|
|
53
|
-
error,
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
async voidPayment(request: VoidRequest): Promise<PaymentResult> {
|
|
59
|
-
try {
|
|
60
|
-
const { data } = await this.sessionApi.voidManualPayment({
|
|
61
|
-
sessionId: request.sessionId,
|
|
62
|
-
});
|
|
63
|
-
|
|
64
|
-
const isVoided =
|
|
65
|
-
data.status === PaymentSessionStatus.Voided ||
|
|
66
|
-
data.status === PaymentSessionStatus.Voiding;
|
|
67
|
-
|
|
68
|
-
const result: PaymentResult = {
|
|
69
|
-
success: isVoided,
|
|
70
|
-
status: isVoided ? SdkPaymentStatus.SUCCESS : SdkPaymentStatus.FAILED,
|
|
71
|
-
orderId: request.orderRef,
|
|
72
|
-
transactionId: data.providerTransactionId ?? data.sessionId,
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
if (!isVoided) {
|
|
76
|
-
if (data.errorCode) {
|
|
77
|
-
result.errorCode = data.errorCode;
|
|
78
|
-
}
|
|
79
|
-
if (data.errorMessage) {
|
|
80
|
-
result.errorMessage = data.errorMessage;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return result;
|
|
85
|
-
} catch (error) {
|
|
86
|
-
throw new PaymentSDKError(
|
|
87
|
-
PaymentErrorCode.NETWORK_ERROR,
|
|
88
|
-
"Failed to void manual payment",
|
|
89
|
-
error,
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|