File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/services/limited-partnerships
test/services/limited-partnerships Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export interface LimitedPartnership {
1313 email ?: string ;
1414 jurisdiction ?: Jurisdiction ;
1515 registered_office_address ?: Address ;
16+ principal_place_of_business_address ?: Address ;
1617 term ?: Term ;
1718 } ;
1819}
Original file line number Diff line number Diff line change @@ -30,6 +30,15 @@ export const LIMITED_PARTNERSHIP_OBJECT_MOCK: LimitedPartnership = {
3030 country : "Some Country" ,
3131 postal_code : "SC12 1WE"
3232 } ,
33+ principal_place_of_business_address : {
34+ premises : "23" ,
35+ address_line_1 : "Some Other Street" ,
36+ address_line_2 : "Some Other Line 2" ,
37+ locality : "Some Other Locality" ,
38+ region : "Some Other Region" ,
39+ country : "Some Country" ,
40+ postal_code : "SC13 1WE"
41+ } ,
3342 term : Term . BY_AGREEMENT
3443 }
3544} ;
You can’t perform that action at this time.
0 commit comments