File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
src/services/confirmation-statement
test/services/confirmation-statement Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -483,6 +483,7 @@ export default class {
483483 occupation : apiResource . occupation ,
484484 nationality : apiResource . nationality ,
485485 dateOfBirth : apiResource . date_of_birth ,
486+ dateOfAppointment : apiResource . date_of_appointment ,
486487 ...( apiResource . service_address && { serviceAddress : this . mapToAddress ( apiResource . service_address ) } ) ,
487488 ...( apiResource . residential_address && { residentialAddress : this . mapToAddress ( apiResource . residential_address ) } )
488489 }
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ export interface ActiveDirectorDetails {
160160 occupation : string ;
161161 nationality : string ;
162162 dateOfBirth : string ;
163+ dateOfAppointment : string ;
163164 serviceAddress : Address ;
164165 residentialAddress : Address ;
165166}
@@ -171,6 +172,7 @@ export interface ActiveDirectorDetailsResource {
171172 occupation : string ;
172173 nationality : string ;
173174 date_of_birth : string ;
175+ date_of_appointment : string ;
174176 service_address : AddressResource ;
175177 residential_address : AddressResource ;
176178}
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ export const mockActiveDirectorDetails: ActiveDirectorDetailsResource = {
9595 occupation : "singer" ,
9696 nationality : "British" ,
9797 date_of_birth : "1 January 1960" ,
98+ date_of_appointment : "1 January 2009" ,
9899 service_address : mockAddress1 ,
99100 residential_address : mockAddress2
100101}
You can’t perform that action at this time.
0 commit comments