Skip to content

Commit 76b8409

Browse files
committed
CCM-7942: docs
1 parent 47f12bb commit 76b8409

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

infrastructure/terraform/modules/backend-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ No requirements.
6868
| <a name="module_s3bucket_internal"></a> [s3bucket\_internal](#module\_s3bucket\_internal) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/3.0.4/terraform-s3bucket.zip | n/a |
6969
| <a name="module_s3bucket_quarantine"></a> [s3bucket\_quarantine](#module\_s3bucket\_quarantine) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/3.0.4/terraform-s3bucket.zip | n/a |
7070
| <a name="module_sqs_letter_render"></a> [sqs\_letter\_render](#module\_sqs\_letter\_render) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.28/terraform-sqs.zip | n/a |
71-
| <a name="module_sqs_proof_requests_table_events_pipe_dlq"></a> [sqs\_proof\_requests\_table\_events\_pipe\_dlq](#module\_sqs\_proof\_requests\_table\_events\_pipe\_dlq) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.28/terraform-sqs.zip | n/a |
71+
| <a name="module_sqs_proof_requests_table_events_pipe_dlq"></a> [sqs\_proof\_requests\_table\_events\_pipe\_dlq](#module\_sqs\_proof\_requests\_table\_events\_pipe\_dlq) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/3.0.6/terraform-sqs.zip | n/a |
7272
| <a name="module_sqs_routing_config_table_events_pipe_dlq"></a> [sqs\_routing\_config\_table\_events\_pipe\_dlq](#module\_sqs\_routing\_config\_table\_events\_pipe\_dlq) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.28/terraform-sqs.zip | n/a |
7373
| <a name="module_sqs_sftp_upload"></a> [sqs\_sftp\_upload](#module\_sqs\_sftp\_upload) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.28/terraform-sqs.zip | n/a |
7474
| <a name="module_sqs_template_mgmt_events"></a> [sqs\_template\_mgmt\_events](#module\_sqs\_template\_mgmt\_events) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.28/terraform-sqs.zip | n/a |

tests/test-team/helpers/db/proof-requests-storage-helper.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
BatchWriteCommand,
44
DynamoDBDocumentClient,
55
} from '@aws-sdk/lib-dynamodb';
6-
import type { ProofRequest } from '../types';
6+
import type { DigitalProofRequest } from '../types';
77

88
type ProofRequestKey = { id: string; owner: string };
99

@@ -12,14 +12,14 @@ export class ProofRequestsStorageHelper {
1212
new DynamoDBClient({ region: 'eu-west-2' })
1313
);
1414

15-
private seedData: ProofRequest[] = [];
15+
private seedData: DigitalProofRequest[] = [];
1616

1717
private adHocKeys: ProofRequestKey[] = [];
1818

1919
/**
2020
* Seed a load of proof requests into the database
2121
*/
22-
async seed(data: ProofRequest[]) {
22+
async seed(data: DigitalProofRequest[]) {
2323
this.seedData.push(...data);
2424

2525
const chunks = ProofRequestsStorageHelper.chunk(data);

tests/test-team/helpers/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export type FactoryRoutingConfigWithModifiers = FactoryRoutingConfig & {
137137

138138
type DigitalTemplateType = Extract<TemplateType, 'EMAIL' | 'SMS' | 'NHS_APP'>;
139139

140-
export type ProofRequest = {
140+
export type DigitalProofRequest = {
141141
id: string;
142142
owner: string;
143143
createdAt: string;

0 commit comments

Comments
 (0)