@defra/fcp-sfd-frontend-engine 0.25.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -102,6 +102,7 @@ var BUSINESS_EMAIL_ADDRESS = "You have updated your business email address";
102
102
  var BUSINESS_NAME = "You have updated your business name";
103
103
  var BUSINESS_PHONE_NUMBERS = "You have updated your business phone numbers";
104
104
  var BUSINESS_VAT = "You have updated your VAT registration number";
105
+ var BUSINESS_VAT_REMOVE = "You have removed your VAT registration number";
105
106
 
106
107
  // src/constants/interrupter-journey.js
107
108
  var PERSONAL_SECTION_FIELD_ORDER = {
@@ -186,7 +187,8 @@ var constants = {
186
187
  BUSINESS_EMAIL_ADDRESS,
187
188
  BUSINESS_NAME,
188
189
  BUSINESS_PHONE_NUMBERS,
189
- BUSINESS_VAT
190
+ BUSINESS_VAT,
191
+ BUSINESS_VAT_REMOVE
190
192
  },
191
193
  interrupterJourney: {
192
194
  PERSONAL_SECTION_FIELD_ORDER,
package/dist/index.js CHANGED
@@ -61,6 +61,7 @@ var BUSINESS_EMAIL_ADDRESS = "You have updated your business email address";
61
61
  var BUSINESS_NAME = "You have updated your business name";
62
62
  var BUSINESS_PHONE_NUMBERS = "You have updated your business phone numbers";
63
63
  var BUSINESS_VAT = "You have updated your VAT registration number";
64
+ var BUSINESS_VAT_REMOVE = "You have removed your VAT registration number";
64
65
 
65
66
  // src/constants/interrupter-journey.js
66
67
  var PERSONAL_SECTION_FIELD_ORDER = {
@@ -145,7 +146,8 @@ var constants = {
145
146
  BUSINESS_EMAIL_ADDRESS,
146
147
  BUSINESS_NAME,
147
148
  BUSINESS_PHONE_NUMBERS,
148
- BUSINESS_VAT
149
+ BUSINESS_VAT,
150
+ BUSINESS_VAT_REMOVE
149
151
  },
150
152
  interrupterJourney: {
151
153
  PERSONAL_SECTION_FIELD_ORDER,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defra/fcp-sfd-frontend-engine",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "description": "Shared frontend engine used by both the internal and external frontend applications.",
5
5
  "main": "./dist/index.cjs",
6
6
  "exports": {
@@ -37,7 +37,8 @@ import {
37
37
  BUSINESS_EMAIL_ADDRESS,
38
38
  BUSINESS_NAME,
39
39
  BUSINESS_PHONE_NUMBERS,
40
- BUSINESS_VAT
40
+ BUSINESS_VAT,
41
+ BUSINESS_VAT_REMOVE
41
42
  } from './success-messages.js'
42
43
 
43
44
  // Interrupter journey constants
@@ -88,7 +89,8 @@ export const constants = {
88
89
  BUSINESS_EMAIL_ADDRESS,
89
90
  BUSINESS_NAME,
90
91
  BUSINESS_PHONE_NUMBERS,
91
- BUSINESS_VAT
92
+ BUSINESS_VAT,
93
+ BUSINESS_VAT_REMOVE
92
94
  },
93
95
  interrupterJourney: {
94
96
  PERSONAL_SECTION_FIELD_ORDER,
@@ -2,3 +2,4 @@ export const BUSINESS_EMAIL_ADDRESS = 'You have updated your business email addr
2
2
  export const BUSINESS_NAME = 'You have updated your business name'
3
3
  export const BUSINESS_PHONE_NUMBERS = 'You have updated your business phone numbers'
4
4
  export const BUSINESS_VAT = 'You have updated your VAT registration number'
5
+ export const BUSINESS_VAT_REMOVE = 'You have removed your VAT registration number'