@companieshouse/api-sdk-node 2.0.88 → 2.0.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,6 +28,8 @@ export interface CompanyOfficerResource {
|
|
|
28
28
|
nationality?: string;
|
|
29
29
|
occupation?: string;
|
|
30
30
|
officer_role: string;
|
|
31
|
+
contact_details?: ContactDetailsResource;
|
|
32
|
+
responsibilities?: string;
|
|
31
33
|
resigned_on?: string;
|
|
32
34
|
}
|
|
33
35
|
export interface AddressResource {
|
|
@@ -64,6 +66,9 @@ export interface CompanyOfficerResourceLinks {
|
|
|
64
66
|
export interface OfficerResourceLinks {
|
|
65
67
|
appointments: string;
|
|
66
68
|
}
|
|
69
|
+
export interface ContactDetailsResource {
|
|
70
|
+
contact_name?: string;
|
|
71
|
+
}
|
|
67
72
|
/**
|
|
68
73
|
* CompanyOfficers is the interface used within this SDK.
|
|
69
74
|
*/
|
|
@@ -94,6 +99,8 @@ export interface CompanyOfficer {
|
|
|
94
99
|
nationality?: string;
|
|
95
100
|
occupation?: string;
|
|
96
101
|
officerRole: string;
|
|
102
|
+
contactDetails: ContactDetails;
|
|
103
|
+
responsibilities?: string;
|
|
97
104
|
resignedOn?: string;
|
|
98
105
|
}
|
|
99
106
|
export interface Address {
|
|
@@ -130,3 +137,6 @@ export interface CompanyOfficerLinks {
|
|
|
130
137
|
export interface OfficerLinks {
|
|
131
138
|
appointments: string;
|
|
132
139
|
}
|
|
140
|
+
export interface ContactDetails {
|
|
141
|
+
contactName?: string;
|
|
142
|
+
}
|