{"version":3,"file":"afterpay.mjs","names":[],"sources":["../../src/payment-methods/afterpay.ts"],"sourcesContent":["/**\n * Afterpay payment method - uses shared BNPL factory.\n */\n\nimport {\n  type BnplCheckoutResponse,\n  type BnplCustomerInfo,\n  type BnplSubmitOptions,\n  createBnplPaymentMethod,\n} from \"./bnpl-shared\";\n\nexport type AfterpayCustomerInfo = BnplCustomerInfo;\n\nexport type AfterpaySubmitOptions = Omit<BnplSubmitOptions, \"setupFutureUsage\">;\n\nexport type AfterpayCheckoutResponse = BnplCheckoutResponse;\n\nconst AfterpayPaymentMethod = createBnplPaymentMethod({\n  name: \"afterpay\",\n  endpointPath: \"afterpay\",\n  supportsSetupFutureUsage: false,\n});\n\nexport default AfterpayPaymentMethod;\n"],"mappings":";;;;AAiBA,MAAM,wBAAwB,wBAAwB;CACpD,MAAM;CACN,cAAc;CACd,0BAA0B;CAC3B,CAAC;AAEF,uBAAe"}