Ошибка - функция completeTransactionWithMerchant не определена
Я хочу интегрировать Apple Pay с Ioni c 4. Я использовал родной плагин ioni c и установил эти -
- ioni c плагин cordova add cordova-plugin-applepay
- npm install @ ioni c -native / apple-pay
Я использую эти функции -
try {
const applePayTransaction = await this.applePay.makePaymentRequest({
items,
shippingMethods,
merchantIdentifier,
currencyCode,
countryCode,
billingAddressRequirement: ['name', 'email', 'phone'],
shippingAddressRequirement: 'none',
shippingType: 'shipping'
});
const transactionStatus = await completeTransactionWithMerchant(applePayTransaction);
await this.applePay.completeLastTransaction(transactionStatus);
} catch {
// handle payment request error
// Can also handle stop complete transaction but these should normally not occur
}
При использовании этого кода мне выдается ошибка - функция completeTransactionWithMerchant не определена