Skip to content

Commit 4b31e4c

Browse files
Merge pull request #1723 from NHSDigital/develop
APIM-R 1.36 Cut
2 parents 4baf0d0 + 7d5eea8 commit 4b31e4c

File tree

60 files changed

+1054
-458
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1054
-458
lines changed

package-lock.json

Lines changed: 246 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "MIT",
1313
"homepage": "https://github.com/NHSDigital/e-referrals-service-api",
1414
"dependencies": {
15-
"@redocly/cli": "^1.18.0"
15+
"@redocly/cli": "^1.19.0"
1616
},
1717
"devDependencies": {
1818
"apigeetool": "^0.16.4",

poetry.lock

Lines changed: 317 additions & 301 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proxies/live/apiproxy/policies/AssignMessage.Set.nhsd-ers-business-function-header-app-restricted.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
<AssignMessage async="false" continueOnError="false" enabled="true" name="AssignMessage.Set.nhsd-ers-business-function-header-app-restricted">
2+
<AssignVariable>
3+
<Name>business-function-header-value</Name>
4+
<Ref>app.app-restricted-business-function</Ref>
5+
<Value>PROVIDER_AUTHORISED_APPLICATION</Value>
6+
<!-- default value in case variable above is not defined -->
7+
</AssignVariable>
28
<Set>
39
<Headers>
4-
<Header name="x-ers-business-function">AUTHORISED_APPLICATION</Header>
10+
<Header name="x-ers-business-function">{business-function-header-value}</Header>
511
</Headers>
612
</Set>
713
<IgnoreUnresolvedVariables>false</IgnoreUnresolvedVariables>

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ lxml = "^4.9.4"
3030
xmlformatter = "^0.2.6"
3131
pytest-check = "^2.3.1"
3232
requests = "^2.32.3"
33-
openapi-core = "^0.19.2"
33+
openapi-core = "^0.19.3"
3434

3535

3636
[tool.poetry.dev-dependencies]
3737
flake8 = "^5.0.4"
38-
black = "^24.4"
38+
black = "^24.8"
3939
pip-licenses = "^4.5.1"
4040
jinja2 = "^3.1.4"
41-
pytest = "^8.2.2"
41+
pytest = "^8.3.2"
4242
pytest-asyncio = "^0.23.8"
4343
pytest-nhsd-apim = "^3.4.2"
4444

sandbox/package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sandbox/src/mocks/r4/getService/responses/sampleServiceWithFullAttributes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
{
9090
"system": "https://fhir.nhs.uk/CodeSystem/eRS-RequestFlowType",
9191
"code": "BOOKABLE",
92-
"display": "Appointment Request"
92+
"display": "A service which supports a patient appointment"
9393
}
9494
]
9595
},

sandbox/src/mocks/r4/searchForServices/responses/searchServiceWithMaxAndMinAttributes.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
{
109109
"system": "https://fhir.nhs.uk/CodeSystem/eRS-RequestFlowType",
110110
"code": "BOOKABLE",
111-
"display": "Appointment Request"
111+
"display": "A service which supports a patient appointment"
112112
}
113113
]
114114
},
@@ -163,7 +163,7 @@
163163
{
164164
"system": "https://fhir.nhs.uk/CodeSystem/eRS-RequestFlowType",
165165
"code": "BOOKABLE",
166-
"display": "Appointment Request"
166+
"display": "A service which supports a patient appointment"
167167
}
168168
]
169169
},

sandbox/src/mocks/stu3/acceptReferral/responses/ExampleResponse.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-ClinicalInfoFirstSubmitted-1",
2525
"valueDateTime": "2021-10-13T12:51:16.848Z"
2626
},
27+
{
28+
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-eReferralPathwayStart-1",
29+
"valueInstant": "2024-05-01T09:55:00.000Z"
30+
},
2731
{
2832
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-ReferralPriority-1",
2933
"valueCodeableConcept": {

sandbox/src/mocks/stu3/cancelAppointmentActionLater/responses/MinimalExampleDBS.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-ClinicalInfoFirstSubmitted-1",
2525
"valueDateTime": "2021-11-03T12:54:40.560Z"
2626
},
27+
{
28+
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-eReferralPathwayStart-1",
29+
"valueInstant": "2024-05-01T09:55:00.000Z"
30+
},
2731
{
2832
"url": "https://fhir.nhs.uk/STU3/StructureDefinition/Extension-eRS-ReferralPriority-1",
2933
"valueCodeableConcept": {

0 commit comments

Comments
 (0)