Skip to content

Commit 821b635

Browse files
authored
Merge pull request #796 from companieshouse/feature/remove-rle-identification
Removing Identification from PSC since we're not doing RLE's
2 parents 384d1c4 + fc03f9c commit 821b635

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

src/services/psc-verification-link/types.ts

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ export interface PersonWithSignificantControlResource {
1111
natures_of_control: string[],
1212
notified_on: string,
1313
is_sanctioned?: boolean,
14-
kind?: string,
15-
identification?: IdentificationResource
14+
kind?: string
1615
};
1716

1817
export interface PersonWithSignificantControl {
@@ -28,8 +27,7 @@ export interface PersonWithSignificantControl {
2827
naturesOfControl: string[],
2928
notifiedOn: string,
3029
isSanctioned?: boolean,
31-
kind?: string,
32-
identification?: Identification
30+
kind?: string
3331
};
3432

3533
export interface AddressResource {
@@ -112,24 +110,6 @@ export interface NameElements {
112110
surname: string;
113111
};
114112

115-
export interface IdentificationResource {
116-
identification_type?: string,
117-
legal_authority?: string,
118-
legal_form?: string,
119-
place_registered?: string,
120-
registration_number?: string,
121-
country_registered?: string
122-
};
123-
124-
export interface Identification {
125-
identificationType?: string,
126-
legalAuthority?: string,
127-
legalForm?: string,
128-
placeRegistered?: string,
129-
registrationNumber?: string,
130-
countryRegistered?: string
131-
};
132-
133113
export interface PscVerificationResource {
134114
created_at: Date,
135115
updated_at: Date,

0 commit comments

Comments
 (0)