Skip to content

Commit 5be40fc

Browse files
CCM-10283: Tempalte submitted email
1 parent 6a86b1d commit 5be40fc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
output "domain_identity_arns" {
2-
value = var.external_email_domain == null ? [aws_ses_domain_identity.main.arn] : [aws_ses_domain_identity.main.arn, aws_ses_domain_identity.external.arn]
2+
value = var.external_email_domain == null ? [aws_ses_domain_identity.main.arn] : [aws_ses_domain_identity.main.arn, aws_ses_domain_identity.external.0.arn]
33
}

lambdas/backend-client/src/types/generated/types.gen.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ export type Failure = {
3333
technicalMessage: string;
3434
};
3535

36-
export type ProofFileDetails = {
37-
fileName: string;
38-
supplier: string;
39-
virusScanStatus: VirusScanStatus;
40-
};
41-
4236
export type Language =
4337
| 'ar'
4438
| 'bg'
@@ -90,6 +84,12 @@ export type NhsAppProperties = {
9084
templateType: 'NHS_APP';
9185
};
9286

87+
export type ProofFileDetails = {
88+
fileName: string;
89+
supplier: string;
90+
virusScanStatus: VirusScanStatus;
91+
};
92+
9393
export type SmsProperties = {
9494
message: string;
9595
templateType: 'SMS';

0 commit comments

Comments
 (0)