File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export class TaxFormHandler {
83
83
@WebhookEvent ( TrolleyWebhookEvent . taxFormStatusUpdated )
84
84
async handleTaxFormStatusUpdated (
85
85
payload : TaxFormStatusUpdatedEvent ,
86
- ) : Promise < any > {
86
+ ) : Promise < void > {
87
87
const taxFormData = payload . taxForm . data ;
88
88
const recipient = await this . getDbRecipientById ( taxFormData . recipientId ) ;
89
89
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ export interface TaxFormStatusUpdatedEventData {
19
19
status : TaxFormStatus ;
20
20
taxFormType : string ;
21
21
taxFormAddressCountry : string ;
22
- mailingAddressCountry : null ;
23
- registrationCountry : null ;
22
+ mailingAddressCountry : string | null ;
23
+ registrationCountry : string | null ;
24
24
createdAt : string ;
25
25
signedAt : string ;
26
26
reviewedAt : string ;
You can’t perform that action at this time.
0 commit comments