File tree Expand file tree Collapse file tree
infrastructure/terraform/modules/backend-api Expand file tree Collapse file tree Original file line number Diff line number Diff 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 |
Original file line number Diff line number Diff line change 33 BatchWriteCommand ,
44 DynamoDBDocumentClient ,
55} from '@aws-sdk/lib-dynamodb' ;
6- import type { ProofRequest } from '../types' ;
6+ import type { DigitalProofRequest } from '../types' ;
77
88type 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 ) ;
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export type FactoryRoutingConfigWithModifiers = FactoryRoutingConfig & {
137137
138138type 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 ;
You can’t perform that action at this time.
0 commit comments