Skip to content

Commit a32a588

Browse files
authored
Merge pull request #83 from companieshouse/move-code-from-ch-sdk-node
Move code from ch-sdk-node and add additional null values
2 parents 29e82b8 + 602e243 commit a32a588

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/services/order/certificates/types.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ export interface ItemOptionsRequest {
161161
}
162162

163163
export interface DirectorOrSecretaryDetailsRequest {
164-
includeAddress?: boolean;
165-
includeAppointmentDate?: boolean;
164+
includeAddress?: boolean | null;
165+
includeAppointmentDate?: boolean | null;
166166
includeBasicInformation: boolean | null;
167-
includeCountryOfResidence?: boolean;
168-
includeDobType?: string;
169-
includeNationality?: boolean;
170-
includeOccupation?: boolean;
167+
includeCountryOfResidence?: boolean | null;
168+
includeDobType?: string | null;
169+
includeNationality?: boolean | null;
170+
includeOccupation?: boolean | null;
171171
}
172172

173173
export interface RegisteredOfficeAddressDetailsRequest {

0 commit comments

Comments
 (0)