Skip to content

Commit 675e821

Browse files
committed
IXFE-212
Signed-off-by: Christian Pleintinger <[email protected]>
1 parent 67d69d1 commit 675e821

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

index.d.ts

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -814,8 +814,8 @@ export namespace DomainRobotModels {
814814
city?: string;
815815
country?: string;
816816
state?: string;
817-
phones?: string[];
818-
faxes?: string[];
817+
phone?: string;
818+
fax?: string;
819819
email?: string;
820820
owner?: BasicUser;
821821
updater?: BasicUser;
@@ -895,7 +895,8 @@ export namespace DomainRobotModels {
895895
fname?: string
896896
lname?: string
897897
}
898-
lock?: string
898+
lock?: string,
899+
passwordExpires?: string
899900
}
900901

901902
export class BillingCustomerXML {
@@ -1679,6 +1680,7 @@ export namespace DomainRobotModels {
16791680
scot?: ContactScotExtensions;
16801681
ie?: ContactIeExtensions;
16811682
zuerich?: ContactZuerichExtensions;
1683+
es?: ContactZuerichExtensions;
16821684
}
16831685

16841686
export class ContactGeneralExtensions {
@@ -1848,6 +1850,13 @@ export namespace DomainRobotModels {
18481850
entityType?: string;
18491851
}
18501852

1853+
export class ContactEsExtensions {
1854+
constructor(config?: ContactEsExtensions);
1855+
}
1856+
export interface ContactEsExtensions {
1857+
identificacion?: string;
1858+
}
1859+
18511860
export class ContactVerification {
18521861
constructor(config?: ContactVerification);
18531862
}
@@ -3641,6 +3650,7 @@ export namespace DomainRobotModels {
36413650
token?: string;
36423651
user?: string;
36433652
passwordChanged?: string;
3653+
passwordExpires?: string;
36443654
passwordExpired?: boolean;
36453655
}
36463656

@@ -4627,6 +4637,8 @@ export namespace DomainRobotModels {
46274637
domainsafe?: boolean;
46284638
autodelete?: boolean;
46294639
trinity?: boolean;
4640+
sedo_mls?: boolean;
4641+
manual_dc?: boolean;
46304642
claimsEnd?: string;
46314643
brand?: boolean; // Indicates whether the Tld is a brand name (e.g. .adac)
46324644
categories?: string[];
@@ -4641,6 +4653,7 @@ export namespace DomainRobotModels {
46414653
tldContinent?: TldContinent;
46424654
rankingLevel?: number; // Rank Level in the Domain Studio.
46434655
tlds?: Tld[];
4656+
manual_dc?: boolean;
46444657

46454658
}
46464659
export class TldGrouped {
@@ -4906,7 +4919,7 @@ export namespace DomainRobotModels {
49064919
lock?: UserLock;
49074920
oldPassword?: string;
49084921
passwordChanged?: string;
4909-
passwordExpired?: boolean;
4922+
passwordExpires?: string;
49104923
acls?: UserAcls;
49114924
profiles?: UserProfileViews;
49124925
serviceProfiles?: ServiceProfiles;
@@ -4924,6 +4937,7 @@ export namespace DomainRobotModels {
49244937
clientAccounts?: Array<ExternalAccounting>;
49254938
tasklimits?: Array<TaskLimit>;
49264939
trusteeContacts?: Array<TrusteeContact>;
4940+
passwordExpired?: boolean;
49274941
}
49284942

49294943
export class UserAcl {
@@ -4956,6 +4970,7 @@ export namespace DomainRobotModels {
49564970
passwordResetMobile?: string;
49574971
passwordResetVerifyEmail?: string;
49584972
passwordResetEmail?: string;
4973+
lastPasswordReminderEmail?: string;
49594974
fname?: string;
49604975
lname?: string;
49614976
phone?: string;
@@ -5204,6 +5219,7 @@ export namespace DomainRobotModels {
52045219
roid?: number;
52055220
purgeType?: PurgeTypes;
52065221
purgeDate?: string;
5222+
date?: string;
52075223
}
52085224

52095225
export class ZoneBasePatchRequest {
@@ -5241,6 +5257,7 @@ export namespace DomainRobotModels {
52415257
resourceRecordsRem?: ResourceRecord[];
52425258
purgeType?: PurgeTypes;
52435259
purgeDate?: string;
5260+
date?: string;
52445261
}
52455262

52465263
export class ZoneStream {

tests/mock/models.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ const MockModels = {
163163
ContactVerificationMessage: function (data) { },
164164
ContactXxxExtensions: function (data) { },
165165
ContactZuerichExtensions: function (data) { },
166+
ContactEsExtensions: function (data) { },
166167
ContextConfiguration: function (data) { },
167168
ContextHost: function (data) { },
168169
ContextHostZone: function (data) { },

0 commit comments

Comments
 (0)