@defra-fish/gafl-webapp-service 1.65.0-rc.12 → 1.65.0-rc.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defra-fish/gafl-webapp-service",
3
- "version": "1.65.0-rc.12",
3
+ "version": "1.65.0-rc.13",
4
4
  "description": "The websales frontend for the GAFL service",
5
5
  "type": "module",
6
6
  "engines": {
@@ -36,8 +36,8 @@
36
36
  "prepare": "gulp --gulpfile build/gulpfile.cjs"
37
37
  },
38
38
  "dependencies": {
39
- "@defra-fish/business-rules-lib": "1.65.0-rc.12",
40
- "@defra-fish/connectors-lib": "1.65.0-rc.12",
39
+ "@defra-fish/business-rules-lib": "1.65.0-rc.13",
40
+ "@defra-fish/connectors-lib": "1.65.0-rc.13",
41
41
  "@defra/hapi-gapi": "2.0.0",
42
42
  "@hapi/boom": "9.1.2",
43
43
  "@hapi/catbox-redis": "6.0.2",
@@ -79,5 +79,5 @@
79
79
  "./gafl-jest-matchers.js"
80
80
  ]
81
81
  },
82
- "gitHead": "46273adbe376f321340cf8a589f6fe93a7010911"
82
+ "gitHead": "539cee3863129207e36c6ac593d6abbe4a6396bc"
83
83
  }
@@ -9,7 +9,7 @@
9
9
  <h1 class="govuk-heading-l">{{ mssgs.licence_not_found_title }}</h1>
10
10
  <p class="govuk-body">
11
11
  {{ mssgs.licence_not_found_body_1 }}
12
- <a class="govuk-link" href="/buy/renew/identify">{{ mssgs.licence_not_found_body_previous_page }}</a>{{ mssgs.full_stop }}
12
+ <a class="govuk-link" href="/buy/cancel-recurring-payment/identify">{{ mssgs.licence_not_found_body_previous_page }}</a>{{ mssgs.full_stop }}
13
13
  </p>
14
14
  <p class="govuk-body">
15
15
  {{ mssgs.licence_not_found_rp_body_1}}
package/src/uri.js CHANGED
@@ -74,8 +74,8 @@ export const CANCEL_RP_AGREEMENT_NOT_FOUND = {
74
74
  uri: '/buy/cancel-recurring-payment/agreement-not-found',
75
75
  page: 'cancel-rp-agreement-not-found'
76
76
  }
77
- export const CANCEL_RP_LICENCE_NOT_FOUND = { uri: '/buy/cancel-recurring-payment/licence-not-found', page: 'licence-not-found' }
78
- export const CANCEL_RP_ALREADY_CANCELLED = { uri: '/buy/cancel-recurring-payment/already-cancelled', page: 'already-cancelled' }
77
+ export const CANCEL_RP_LICENCE_NOT_FOUND = { uri: '/buy/cancel-recurring-payment/licence-not-found', page: 'cancel-rp-licence-not-found' }
78
+ export const CANCEL_RP_ALREADY_CANCELLED = { uri: '/buy/cancel-recurring-payment/already-cancelled', page: 'cancel-rp-already-cancelled' }
79
79
 
80
80
  export const JOURNEY_GOAL = { uri: '/buy/journey-goal', page: 'journey-goal' }
81
81