File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed
Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ export default class CompanyProfileService {
117117 isOnRegisterInCountryFormedIn : isOnRegisterInCountryFormedIn ,
118118 links : {
119119 filingHistory : links ?. filing_history
120- }
120+ } ,
121+ subtype : body ?. subtype
121122 } ;
122123
123124 return resource ;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export interface CompanyProfileResource {
2222 foreign_company_details ?: ForeignCompanyDetailsResource ;
2323 is_on_register_in_country_formed_in ?: string ;
2424 links : LinksResource ;
25+ subtype : string ;
2526}
2627
2728export interface ForeignCompanyDetailsResource {
@@ -150,4 +151,5 @@ export interface CompanyProfile {
150151 foreignCompanyDetails ?: ForeignCompanyDetails ;
151152 isOnRegisterInCountryFormedIn ?: boolean ;
152153 links : Links ;
154+ subtype : string ;
153155}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ export interface LimitedPartnership {
2727 term ?: Term ;
2828 sic_codes ?: string [ ] ;
2929 lawful_purpose_statement_checked ?: boolean ;
30+ partnership_number ?: string ;
3031 } ;
3132}
3233
Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ export const fullCompanyProfileMock = {
6161 is_on_register_in_country_formed_in : "false" ,
6262 links : {
6363 filing_history : "/company/00000000/filing-history"
64- }
64+ } ,
65+ subtype : ""
6566} ;
6667
6768export const registeredAddressEtcMissingCompanyProfileMock = {
Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ export const LIMITED_PARTNERSHIP_OBJECT_MOCK: LimitedPartnership = {
4545 } ,
4646 term : Term . BY_AGREEMENT ,
4747 sic_codes : [ "12345" , "56789" ] ,
48- lawful_purpose_statement_checked : true
48+ lawful_purpose_statement_checked : true ,
49+ partnership_number : "LP123456"
4950 }
5051} ;
5152
You can’t perform that action at this time.
0 commit comments