@financial-times/n-conversion-forms 27.6.4 → 27.7.1

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.
@@ -86,7 +86,7 @@ describe('Find Custom Delivery Option', () => {
86
86
  title: 'Mail',
87
87
  customId: 'ML',
88
88
  description:
89
- 'We can only deliver the newspaper to your location by postal mail which means your delivery will arrive up to 3 business days after the date of publication and will not include the HTSI Magazine. We also fly the newspaper to your location which means delivery is subject to flight delays/cancellations outside the FT\'s control. If you prefer to read the printed content on the day of publication, please proceed to subscribe to the FT ePaper - a digital replica of the print edition.',
89
+ 'We can only deliver the newspaper to your location by postal mail which means your delivery will arrive up to 5 business days after the date of publication and will not include the HTSI Magazine. We also fly the newspaper to your location which means delivery is subject to flight delays/cancellations outside the FT\'s control. If you prefer to read the printed content on the day of publication, please proceed to subscribe to the FT ePaper - a digital replica of the print edition.',
90
90
  };
91
91
 
92
92
  const deliveryOption = getDeliveryOption(
@@ -103,7 +103,7 @@ describe('Find Custom Delivery Option', () => {
103
103
  title: 'Mail',
104
104
  customId: 'ML',
105
105
  description:
106
- 'We can only deliver the FT Weekend newspaper to your location by postal mail which means your delivery will arrive up to 3 business days after the date of publication and will not include the HTSI Magazine. We also fly the newspaper to your location which means delivery is subject to flight delays/cancellations outside the FT\'s control. If you prefer to read the printed content on the day of publication, please proceed to subscribe to the FT ePaper - a digital replica of the print edition.',
106
+ 'We can only deliver the FT Weekend newspaper to your location by postal mail which means your delivery will arrive up to 5 business days after the date of publication and will not include the HTSI Magazine. We also fly the newspaper to your location which means delivery is subject to flight delays/cancellations outside the FT\'s control. If you prefer to read the printed content on the day of publication, please proceed to subscribe to the FT ePaper - a digital replica of the print edition.',
107
107
  };
108
108
 
109
109
  const deliveryOption = getDeliveryOption(
@@ -143,6 +143,10 @@ class PaymentType {
143
143
  static get APPLEPAY () {
144
144
  return 'applepay';
145
145
  }
146
+
147
+ static get BANKTRANSFER () {
148
+ return 'banktransfer';
149
+ }
146
150
  }
147
151
 
148
152
  module.exports = PaymentType;