File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,14 @@ export type AccountUnfrozen = BaseEvent & {
5555 relationships : BaseEventRelationships
5656}
5757
58- export type ApplicationEvents = ApplicationCanceled | ApplicationDenied | ApplicationAwaitingDocuments | ApplicationPendingReview | ApplicationCreated
58+ export type ApplicationEvents = ApplicationApproved | ApplicationCanceled | ApplicationDenied | ApplicationAwaitingDocuments | ApplicationPendingReview | ApplicationCreated
59+
60+ export type ApplicationApproved = BaseEvent & {
61+ type : "application.approved"
62+ relationships : {
63+ application : Relationship
64+ }
65+ }
5966
6067export type ApplicationCanceled = BaseEvent & {
6168 type : "application.canceled"
@@ -909,4 +916,4 @@ export type TaxFormUpdated = BaseEvent & {
909916 }
910917}
911918
912- export type TaxFormEvents = TaxFormCreated | TaxFormUpdated
919+ export type TaxFormEvents = TaxFormCreated | TaxFormUpdated
You can’t perform that action at this time.
0 commit comments