@wix/domains 1.0.19 → 1.0.20
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.
- package/package.json +8 -8
- package/type-bundles/context.bundle.d.ts +144 -366
- package/type-bundles/index.bundle.d.ts +177 -566
- package/type-bundles/meta.bundle.d.ts +274 -724
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/domains",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/domains_connected-domain-setup-info": "1.0.
|
|
22
|
-
"@wix/domains_connected-domains": "1.0.
|
|
23
|
-
"@wix/domains_domain-availability": "1.0.
|
|
24
|
-
"@wix/domains_domain-dns": "1.0.
|
|
25
|
-
"@wix/domains_domain-suggestions": "1.0.
|
|
26
|
-
"@wix/domains_registered-domains": "1.0.
|
|
21
|
+
"@wix/domains_connected-domain-setup-info": "1.0.5",
|
|
22
|
+
"@wix/domains_connected-domains": "1.0.9",
|
|
23
|
+
"@wix/domains_domain-availability": "1.0.4",
|
|
24
|
+
"@wix/domains_domain-dns": "1.0.4",
|
|
25
|
+
"@wix/domains_domain-suggestions": "1.0.9",
|
|
26
|
+
"@wix/domains_registered-domains": "1.0.7"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "963c598ac109fcf9aa16f9817456b7b6aafefbf09a693ab6ed1d81d0"
|
|
51
51
|
}
|
|
@@ -197,7 +197,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
197
197
|
slug?: string;
|
|
198
198
|
/** ID of the entity associated with the event. */
|
|
199
199
|
entityId?: string;
|
|
200
|
-
/** Event timestamp. */
|
|
200
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
201
201
|
eventTime?: Date;
|
|
202
202
|
/**
|
|
203
203
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -284,50 +284,29 @@ declare enum WebhookIdentityType$2 {
|
|
|
284
284
|
WIX_USER = "WIX_USER",
|
|
285
285
|
APP = "APP"
|
|
286
286
|
}
|
|
287
|
+
interface RedirectAssignmentInfoNonNullableFields$1 {
|
|
288
|
+
primaryDomain: string;
|
|
289
|
+
}
|
|
290
|
+
interface SiteInfoNonNullableFields$1 {
|
|
291
|
+
redirectInfo?: RedirectAssignmentInfoNonNullableFields$1;
|
|
292
|
+
assignmentType: AssignmentType$1;
|
|
293
|
+
}
|
|
294
|
+
interface ConnectedDomainNonNullableFields {
|
|
295
|
+
_id: string;
|
|
296
|
+
domain: string;
|
|
297
|
+
connectionType: ConnectionType$1;
|
|
298
|
+
siteInfo?: SiteInfoNonNullableFields$1;
|
|
299
|
+
suppressNotifications: boolean;
|
|
300
|
+
dnsPropagationStatus: DnsPropagationStatus$1;
|
|
301
|
+
}
|
|
287
302
|
interface CreateConnectedDomainResponseNonNullableFields {
|
|
288
|
-
connectedDomain?:
|
|
289
|
-
_id: string;
|
|
290
|
-
domain: string;
|
|
291
|
-
connectionType: ConnectionType$1;
|
|
292
|
-
siteInfo?: {
|
|
293
|
-
redirectInfo?: {
|
|
294
|
-
primaryDomain: string;
|
|
295
|
-
};
|
|
296
|
-
assignmentType: AssignmentType$1;
|
|
297
|
-
};
|
|
298
|
-
suppressNotifications: boolean;
|
|
299
|
-
dnsPropagationStatus: DnsPropagationStatus$1;
|
|
300
|
-
};
|
|
303
|
+
connectedDomain?: ConnectedDomainNonNullableFields;
|
|
301
304
|
}
|
|
302
305
|
interface GetConnectedDomainResponseNonNullableFields {
|
|
303
|
-
connectedDomain?:
|
|
304
|
-
_id: string;
|
|
305
|
-
domain: string;
|
|
306
|
-
connectionType: ConnectionType$1;
|
|
307
|
-
siteInfo?: {
|
|
308
|
-
redirectInfo?: {
|
|
309
|
-
primaryDomain: string;
|
|
310
|
-
};
|
|
311
|
-
assignmentType: AssignmentType$1;
|
|
312
|
-
};
|
|
313
|
-
suppressNotifications: boolean;
|
|
314
|
-
dnsPropagationStatus: DnsPropagationStatus$1;
|
|
315
|
-
};
|
|
306
|
+
connectedDomain?: ConnectedDomainNonNullableFields;
|
|
316
307
|
}
|
|
317
308
|
interface ListConnectedDomainsResponseNonNullableFields {
|
|
318
|
-
connectedDomains:
|
|
319
|
-
_id: string;
|
|
320
|
-
domain: string;
|
|
321
|
-
connectionType: ConnectionType$1;
|
|
322
|
-
siteInfo?: {
|
|
323
|
-
redirectInfo?: {
|
|
324
|
-
primaryDomain: string;
|
|
325
|
-
};
|
|
326
|
-
assignmentType: AssignmentType$1;
|
|
327
|
-
};
|
|
328
|
-
suppressNotifications: boolean;
|
|
329
|
-
dnsPropagationStatus: DnsPropagationStatus$1;
|
|
330
|
-
}[];
|
|
309
|
+
connectedDomains: ConnectedDomainNonNullableFields[];
|
|
331
310
|
}
|
|
332
311
|
interface ListConnectedDomainsOptions {
|
|
333
312
|
/** Cursor paging options. */
|
|
@@ -376,6 +355,7 @@ declare const deleteConnectedDomain: ReturnType<typeof createRESTModule$5<typeof
|
|
|
376
355
|
declare const listConnectedDomains: ReturnType<typeof createRESTModule$5<typeof publicListConnectedDomains>>;
|
|
377
356
|
|
|
378
357
|
type context$5_ConnectedDomain = ConnectedDomain;
|
|
358
|
+
type context$5_ConnectedDomainNonNullableFields = ConnectedDomainNonNullableFields;
|
|
379
359
|
type context$5_CreateConnectedDomainRequest = CreateConnectedDomainRequest;
|
|
380
360
|
type context$5_CreateConnectedDomainResponse = CreateConnectedDomainResponse;
|
|
381
361
|
type context$5_CreateConnectedDomainResponseNonNullableFields = CreateConnectedDomainResponseNonNullableFields;
|
|
@@ -393,7 +373,7 @@ declare const context$5_deleteConnectedDomain: typeof deleteConnectedDomain;
|
|
|
393
373
|
declare const context$5_getConnectedDomain: typeof getConnectedDomain;
|
|
394
374
|
declare const context$5_listConnectedDomains: typeof listConnectedDomains;
|
|
395
375
|
declare namespace context$5 {
|
|
396
|
-
export { type ActionEvent$2 as ActionEvent, AssignmentType$1 as AssignmentType, type context$5_ConnectedDomain as ConnectedDomain, ConnectionType$1 as ConnectionType, type context$5_CreateConnectedDomainRequest as CreateConnectedDomainRequest, type context$5_CreateConnectedDomainResponse as CreateConnectedDomainResponse, type context$5_CreateConnectedDomainResponseNonNullableFields as CreateConnectedDomainResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type context$5_DeleteConnectedDomainRequest as DeleteConnectedDomainRequest, type context$5_DeleteConnectedDomainResponse as DeleteConnectedDomainResponse, DnsPropagationStatus$1 as DnsPropagationStatus, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DomainRemovedEvent$1 as DomainRemovedEvent, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$5_GetConnectedDomainRequest as GetConnectedDomainRequest, type context$5_GetConnectedDomainResponse as GetConnectedDomainResponse, type context$5_GetConnectedDomainResponseNonNullableFields as GetConnectedDomainResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$5_ListConnectedDomainsOptions as ListConnectedDomainsOptions, type context$5_ListConnectedDomainsRequest as ListConnectedDomainsRequest, type context$5_ListConnectedDomainsResponse as ListConnectedDomainsResponse, type context$5_ListConnectedDomainsResponseNonNullableFields as ListConnectedDomainsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type RedirectAssignmentInfo$1 as RedirectAssignmentInfo, type RestoreInfo$1 as RestoreInfo, type SiteInfo$1 as SiteInfo, type SiteInfoAssignmentInfoOneOf$1 as SiteInfoAssignmentInfoOneOf, WebhookIdentityType$2 as WebhookIdentityType, context$5_createConnectedDomain as createConnectedDomain, context$5_deleteConnectedDomain as deleteConnectedDomain, context$5_getConnectedDomain as getConnectedDomain, context$5_listConnectedDomains as listConnectedDomains };
|
|
376
|
+
export { type ActionEvent$2 as ActionEvent, AssignmentType$1 as AssignmentType, type context$5_ConnectedDomain as ConnectedDomain, type context$5_ConnectedDomainNonNullableFields as ConnectedDomainNonNullableFields, ConnectionType$1 as ConnectionType, type context$5_CreateConnectedDomainRequest as CreateConnectedDomainRequest, type context$5_CreateConnectedDomainResponse as CreateConnectedDomainResponse, type context$5_CreateConnectedDomainResponseNonNullableFields as CreateConnectedDomainResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$2 as Cursors, type context$5_DeleteConnectedDomainRequest as DeleteConnectedDomainRequest, type context$5_DeleteConnectedDomainResponse as DeleteConnectedDomainResponse, DnsPropagationStatus$1 as DnsPropagationStatus, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type DomainRemovedEvent$1 as DomainRemovedEvent, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$5_GetConnectedDomainRequest as GetConnectedDomainRequest, type context$5_GetConnectedDomainResponse as GetConnectedDomainResponse, type context$5_GetConnectedDomainResponseNonNullableFields as GetConnectedDomainResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$5_ListConnectedDomainsOptions as ListConnectedDomainsOptions, type context$5_ListConnectedDomainsRequest as ListConnectedDomainsRequest, type context$5_ListConnectedDomainsResponse as ListConnectedDomainsResponse, type context$5_ListConnectedDomainsResponseNonNullableFields as ListConnectedDomainsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type RedirectAssignmentInfo$1 as RedirectAssignmentInfo, type RestoreInfo$1 as RestoreInfo, type SiteInfo$1 as SiteInfo, type SiteInfoAssignmentInfoOneOf$1 as SiteInfoAssignmentInfoOneOf, WebhookIdentityType$2 as WebhookIdentityType, context$5_createConnectedDomain as createConnectedDomain, context$5_deleteConnectedDomain as deleteConnectedDomain, context$5_getConnectedDomain as getConnectedDomain, context$5_listConnectedDomains as listConnectedDomains };
|
|
397
377
|
}
|
|
398
378
|
|
|
399
379
|
/**
|
|
@@ -558,39 +538,43 @@ interface GetConnectedDomainSetupInfoResponse {
|
|
|
558
538
|
/** Retrieved setup information. */
|
|
559
539
|
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
560
540
|
}
|
|
541
|
+
interface NsRecordNonNullableFields {
|
|
542
|
+
hostName: string;
|
|
543
|
+
ttl: number;
|
|
544
|
+
values: string[];
|
|
545
|
+
}
|
|
546
|
+
interface NameserverRecordNonNullableFields {
|
|
547
|
+
nsRecord?: NsRecordNonNullableFields;
|
|
548
|
+
}
|
|
549
|
+
interface ARecordNonNullableFields {
|
|
550
|
+
hostName: string;
|
|
551
|
+
ttl: number;
|
|
552
|
+
values: string[];
|
|
553
|
+
}
|
|
554
|
+
interface CnameRecordNonNullableFields {
|
|
555
|
+
hostName: string;
|
|
556
|
+
ttl: number;
|
|
557
|
+
value: string;
|
|
558
|
+
}
|
|
559
|
+
interface PointingRecordsNonNullableFields {
|
|
560
|
+
aRecord?: ARecordNonNullableFields;
|
|
561
|
+
cnameRecord?: CnameRecordNonNullableFields;
|
|
562
|
+
}
|
|
563
|
+
interface SubdomainRecordsNonNullableFields {
|
|
564
|
+
cnameRecords: CnameRecordNonNullableFields[];
|
|
565
|
+
}
|
|
566
|
+
interface RegistrarNonNullableFields {
|
|
567
|
+
nameServers: string[];
|
|
568
|
+
}
|
|
569
|
+
interface ConnectedDomainSetupInfoNonNullableFields {
|
|
570
|
+
nameserverRecord?: NameserverRecordNonNullableFields;
|
|
571
|
+
pointingRecords?: PointingRecordsNonNullableFields;
|
|
572
|
+
subdomainRecords?: SubdomainRecordsNonNullableFields;
|
|
573
|
+
connectedDomainId: string;
|
|
574
|
+
registrar?: RegistrarNonNullableFields;
|
|
575
|
+
}
|
|
561
576
|
interface GetConnectedDomainSetupInfoResponseNonNullableFields {
|
|
562
|
-
connectedDomainSetupInfo?:
|
|
563
|
-
nameserverRecord?: {
|
|
564
|
-
nsRecord?: {
|
|
565
|
-
hostName: string;
|
|
566
|
-
ttl: number;
|
|
567
|
-
values: string[];
|
|
568
|
-
};
|
|
569
|
-
};
|
|
570
|
-
pointingRecords?: {
|
|
571
|
-
aRecord?: {
|
|
572
|
-
hostName: string;
|
|
573
|
-
ttl: number;
|
|
574
|
-
values: string[];
|
|
575
|
-
};
|
|
576
|
-
cnameRecord?: {
|
|
577
|
-
hostName: string;
|
|
578
|
-
ttl: number;
|
|
579
|
-
value: string;
|
|
580
|
-
};
|
|
581
|
-
};
|
|
582
|
-
subdomainRecords?: {
|
|
583
|
-
cnameRecords: {
|
|
584
|
-
hostName: string;
|
|
585
|
-
ttl: number;
|
|
586
|
-
value: string;
|
|
587
|
-
}[];
|
|
588
|
-
};
|
|
589
|
-
connectedDomainId: string;
|
|
590
|
-
registrar?: {
|
|
591
|
-
nameServers: string[];
|
|
592
|
-
};
|
|
593
|
-
};
|
|
577
|
+
connectedDomainSetupInfo?: ConnectedDomainSetupInfoNonNullableFields;
|
|
594
578
|
}
|
|
595
579
|
|
|
596
580
|
declare function createRESTModule$4<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
@@ -862,57 +846,29 @@ declare enum WebhookIdentityType$1 {
|
|
|
862
846
|
WIX_USER = "WIX_USER",
|
|
863
847
|
APP = "APP"
|
|
864
848
|
}
|
|
849
|
+
interface DnsRecordNonNullableFields {
|
|
850
|
+
type: RecordType;
|
|
851
|
+
hostName: string;
|
|
852
|
+
ttl: number;
|
|
853
|
+
values: string[];
|
|
854
|
+
}
|
|
855
|
+
interface DnsZoneNonNullableFields {
|
|
856
|
+
domainName: string;
|
|
857
|
+
records: DnsRecordNonNullableFields[];
|
|
858
|
+
_id: string;
|
|
859
|
+
dnssecEnabled: boolean;
|
|
860
|
+
}
|
|
865
861
|
interface CreateDnsZoneResponseNonNullableFields {
|
|
866
|
-
dnsZone?:
|
|
867
|
-
domainName: string;
|
|
868
|
-
records: {
|
|
869
|
-
type: RecordType;
|
|
870
|
-
hostName: string;
|
|
871
|
-
ttl: number;
|
|
872
|
-
values: string[];
|
|
873
|
-
}[];
|
|
874
|
-
_id: string;
|
|
875
|
-
dnssecEnabled: boolean;
|
|
876
|
-
};
|
|
862
|
+
dnsZone?: DnsZoneNonNullableFields;
|
|
877
863
|
}
|
|
878
864
|
interface GetDnsZoneResponseNonNullableFields {
|
|
879
|
-
dnsZone?:
|
|
880
|
-
domainName: string;
|
|
881
|
-
records: {
|
|
882
|
-
type: RecordType;
|
|
883
|
-
hostName: string;
|
|
884
|
-
ttl: number;
|
|
885
|
-
values: string[];
|
|
886
|
-
}[];
|
|
887
|
-
_id: string;
|
|
888
|
-
dnssecEnabled: boolean;
|
|
889
|
-
};
|
|
865
|
+
dnsZone?: DnsZoneNonNullableFields;
|
|
890
866
|
}
|
|
891
867
|
interface UpdateDnsZoneResponseNonNullableFields {
|
|
892
|
-
dnsZone?:
|
|
893
|
-
domainName: string;
|
|
894
|
-
records: {
|
|
895
|
-
type: RecordType;
|
|
896
|
-
hostName: string;
|
|
897
|
-
ttl: number;
|
|
898
|
-
values: string[];
|
|
899
|
-
}[];
|
|
900
|
-
_id: string;
|
|
901
|
-
dnssecEnabled: boolean;
|
|
902
|
-
};
|
|
868
|
+
dnsZone?: DnsZoneNonNullableFields;
|
|
903
869
|
}
|
|
904
870
|
interface PreviewDnsZoneResponseNonNullableFields {
|
|
905
|
-
dnsZone?:
|
|
906
|
-
domainName: string;
|
|
907
|
-
records: {
|
|
908
|
-
type: RecordType;
|
|
909
|
-
hostName: string;
|
|
910
|
-
ttl: number;
|
|
911
|
-
values: string[];
|
|
912
|
-
}[];
|
|
913
|
-
_id: string;
|
|
914
|
-
dnssecEnabled: boolean;
|
|
915
|
-
};
|
|
871
|
+
dnsZone?: DnsZoneNonNullableFields;
|
|
916
872
|
}
|
|
917
873
|
interface UpdateDnsZoneOptions {
|
|
918
874
|
/**
|
|
@@ -946,6 +902,7 @@ type context$3_DeleteDnsZoneRequest = DeleteDnsZoneRequest;
|
|
|
946
902
|
type context$3_DeleteDnsZoneResponse = DeleteDnsZoneResponse;
|
|
947
903
|
type context$3_DnsRecord = DnsRecord;
|
|
948
904
|
type context$3_DnsZone = DnsZone;
|
|
905
|
+
type context$3_DnsZoneNonNullableFields = DnsZoneNonNullableFields;
|
|
949
906
|
type context$3_DomainRemovedEvent = DomainRemovedEvent;
|
|
950
907
|
type context$3_GetDnsZoneRequest = GetDnsZoneRequest;
|
|
951
908
|
type context$3_GetDnsZoneResponse = GetDnsZoneResponse;
|
|
@@ -965,7 +922,7 @@ declare const context$3_getDnsZone: typeof getDnsZone;
|
|
|
965
922
|
declare const context$3_previewDnsZone: typeof previewDnsZone;
|
|
966
923
|
declare const context$3_updateDnsZone: typeof updateDnsZone;
|
|
967
924
|
declare namespace context$3 {
|
|
968
|
-
export { type ActionEvent$1 as ActionEvent, type context$3_CreateDnsZoneRequest as CreateDnsZoneRequest, type context$3_CreateDnsZoneResponse as CreateDnsZoneResponse, type context$3_CreateDnsZoneResponseNonNullableFields as CreateDnsZoneResponseNonNullableFields, type context$3_DeleteDnsZoneRequest as DeleteDnsZoneRequest, type context$3_DeleteDnsZoneResponse as DeleteDnsZoneResponse, type context$3_DnsRecord as DnsRecord, type context$3_DnsZone as DnsZone, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$3_DomainRemovedEvent as DomainRemovedEvent, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$3_GetDnsZoneRequest as GetDnsZoneRequest, type context$3_GetDnsZoneResponse as GetDnsZoneResponse, type context$3_GetDnsZoneResponseNonNullableFields as GetDnsZoneResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type context$3_PreviewDnsZoneRequest as PreviewDnsZoneRequest, type context$3_PreviewDnsZoneResponse as PreviewDnsZoneResponse, type context$3_PreviewDnsZoneResponseNonNullableFields as PreviewDnsZoneResponseNonNullableFields, context$3_RecordType as RecordType, type context$3_UpdateDnsZoneOptions as UpdateDnsZoneOptions, type context$3_UpdateDnsZoneRequest as UpdateDnsZoneRequest, type context$3_UpdateDnsZoneResponse as UpdateDnsZoneResponse, type context$3_UpdateDnsZoneResponseNonNullableFields as UpdateDnsZoneResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, context$3_createDnsZone as createDnsZone, context$3_deleteDnsZone as deleteDnsZone, context$3_getDnsZone as getDnsZone, context$3_previewDnsZone as previewDnsZone, context$3_updateDnsZone as updateDnsZone };
|
|
925
|
+
export { type ActionEvent$1 as ActionEvent, type context$3_CreateDnsZoneRequest as CreateDnsZoneRequest, type context$3_CreateDnsZoneResponse as CreateDnsZoneResponse, type context$3_CreateDnsZoneResponseNonNullableFields as CreateDnsZoneResponseNonNullableFields, type context$3_DeleteDnsZoneRequest as DeleteDnsZoneRequest, type context$3_DeleteDnsZoneResponse as DeleteDnsZoneResponse, type context$3_DnsRecord as DnsRecord, type context$3_DnsZone as DnsZone, type context$3_DnsZoneNonNullableFields as DnsZoneNonNullableFields, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$3_DomainRemovedEvent as DomainRemovedEvent, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type context$3_GetDnsZoneRequest as GetDnsZoneRequest, type context$3_GetDnsZoneResponse as GetDnsZoneResponse, type context$3_GetDnsZoneResponseNonNullableFields as GetDnsZoneResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type context$3_PreviewDnsZoneRequest as PreviewDnsZoneRequest, type context$3_PreviewDnsZoneResponse as PreviewDnsZoneResponse, type context$3_PreviewDnsZoneResponseNonNullableFields as PreviewDnsZoneResponseNonNullableFields, context$3_RecordType as RecordType, type context$3_UpdateDnsZoneOptions as UpdateDnsZoneOptions, type context$3_UpdateDnsZoneRequest as UpdateDnsZoneRequest, type context$3_UpdateDnsZoneResponse as UpdateDnsZoneResponse, type context$3_UpdateDnsZoneResponseNonNullableFields as UpdateDnsZoneResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, context$3_createDnsZone as createDnsZone, context$3_deleteDnsZone as deleteDnsZone, context$3_getDnsZone as getDnsZone, context$3_previewDnsZone as previewDnsZone, context$3_updateDnsZone as updateDnsZone };
|
|
969
926
|
}
|
|
970
927
|
|
|
971
928
|
/**
|
|
@@ -1547,253 +1504,71 @@ declare enum WebhookIdentityType {
|
|
|
1547
1504
|
WIX_USER = "WIX_USER",
|
|
1548
1505
|
APP = "APP"
|
|
1549
1506
|
}
|
|
1507
|
+
interface LatestAttemptNonNullableFields {
|
|
1508
|
+
number: number;
|
|
1509
|
+
}
|
|
1510
|
+
interface PendingRegistrationInfoNonNullableFields {
|
|
1511
|
+
latestAttempt?: LatestAttemptNonNullableFields;
|
|
1512
|
+
}
|
|
1513
|
+
interface FailedRegistrationInfoNonNullableFields {
|
|
1514
|
+
code: FailureCode;
|
|
1515
|
+
message: string;
|
|
1516
|
+
}
|
|
1517
|
+
interface RedirectAssignmentInfoNonNullableFields {
|
|
1518
|
+
primaryDomain: string;
|
|
1519
|
+
}
|
|
1520
|
+
interface SiteInfoNonNullableFields {
|
|
1521
|
+
redirectInfo?: RedirectAssignmentInfoNonNullableFields;
|
|
1522
|
+
assignmentType: AssignmentType;
|
|
1523
|
+
}
|
|
1524
|
+
interface ContactDataNonNullableFields {
|
|
1525
|
+
firstName: string;
|
|
1526
|
+
lastName: string;
|
|
1527
|
+
email: string;
|
|
1528
|
+
address: string;
|
|
1529
|
+
city: string;
|
|
1530
|
+
countryCode: string;
|
|
1531
|
+
phone: string;
|
|
1532
|
+
}
|
|
1533
|
+
interface ContactsNonNullableFields {
|
|
1534
|
+
registrant?: ContactDataNonNullableFields;
|
|
1535
|
+
admin?: ContactDataNonNullableFields;
|
|
1536
|
+
tech?: ContactDataNonNullableFields;
|
|
1537
|
+
}
|
|
1538
|
+
interface PendingNonNullableFields {
|
|
1539
|
+
notConfirmedBy: string[];
|
|
1540
|
+
}
|
|
1541
|
+
interface ExpiredNonNullableFields {
|
|
1542
|
+
notConfirmedBy: string[];
|
|
1543
|
+
}
|
|
1544
|
+
interface ICANNConfirmationStatusInfoNonNullableFields {
|
|
1545
|
+
pending?: PendingNonNullableFields;
|
|
1546
|
+
expired?: ExpiredNonNullableFields;
|
|
1547
|
+
}
|
|
1548
|
+
interface RegisteredDomainNonNullableFields {
|
|
1549
|
+
pendingRegistrationInfo?: PendingRegistrationInfoNonNullableFields;
|
|
1550
|
+
failedRegistrationInfo?: FailedRegistrationInfoNonNullableFields;
|
|
1551
|
+
_id: string;
|
|
1552
|
+
domain: string;
|
|
1553
|
+
productInstanceId: string;
|
|
1554
|
+
siteInfo?: SiteInfoNonNullableFields;
|
|
1555
|
+
contacts?: ContactsNonNullableFields;
|
|
1556
|
+
status: Status;
|
|
1557
|
+
icannConfirmationStatus: ICANNConfirmationStatus;
|
|
1558
|
+
icannConfirmationStatusInfo?: ICANNConfirmationStatusInfoNonNullableFields;
|
|
1559
|
+
dnsPropagationStatus: DnsPropagationStatus;
|
|
1560
|
+
}
|
|
1550
1561
|
interface CreateRegisteredDomainResponseNonNullableFields {
|
|
1551
|
-
registeredDomain?:
|
|
1552
|
-
pendingRegistrationInfo?: {
|
|
1553
|
-
latestAttempt?: {
|
|
1554
|
-
number: number;
|
|
1555
|
-
};
|
|
1556
|
-
};
|
|
1557
|
-
failedRegistrationInfo?: {
|
|
1558
|
-
code: FailureCode;
|
|
1559
|
-
message: string;
|
|
1560
|
-
};
|
|
1561
|
-
_id: string;
|
|
1562
|
-
domain: string;
|
|
1563
|
-
productInstanceId: string;
|
|
1564
|
-
siteInfo?: {
|
|
1565
|
-
redirectInfo?: {
|
|
1566
|
-
primaryDomain: string;
|
|
1567
|
-
};
|
|
1568
|
-
assignmentType: AssignmentType;
|
|
1569
|
-
};
|
|
1570
|
-
contacts?: {
|
|
1571
|
-
registrant?: {
|
|
1572
|
-
firstName: string;
|
|
1573
|
-
lastName: string;
|
|
1574
|
-
email: string;
|
|
1575
|
-
address: string;
|
|
1576
|
-
city: string;
|
|
1577
|
-
countryCode: string;
|
|
1578
|
-
phone: string;
|
|
1579
|
-
};
|
|
1580
|
-
admin?: {
|
|
1581
|
-
firstName: string;
|
|
1582
|
-
lastName: string;
|
|
1583
|
-
email: string;
|
|
1584
|
-
address: string;
|
|
1585
|
-
city: string;
|
|
1586
|
-
countryCode: string;
|
|
1587
|
-
phone: string;
|
|
1588
|
-
};
|
|
1589
|
-
tech?: {
|
|
1590
|
-
firstName: string;
|
|
1591
|
-
lastName: string;
|
|
1592
|
-
email: string;
|
|
1593
|
-
address: string;
|
|
1594
|
-
city: string;
|
|
1595
|
-
countryCode: string;
|
|
1596
|
-
phone: string;
|
|
1597
|
-
};
|
|
1598
|
-
};
|
|
1599
|
-
status: Status;
|
|
1600
|
-
icannConfirmationStatus: ICANNConfirmationStatus;
|
|
1601
|
-
icannConfirmationStatusInfo?: {
|
|
1602
|
-
pending?: {
|
|
1603
|
-
notConfirmedBy: string[];
|
|
1604
|
-
};
|
|
1605
|
-
expired?: {
|
|
1606
|
-
notConfirmedBy: string[];
|
|
1607
|
-
};
|
|
1608
|
-
};
|
|
1609
|
-
dnsPropagationStatus: DnsPropagationStatus;
|
|
1610
|
-
};
|
|
1562
|
+
registeredDomain?: RegisteredDomainNonNullableFields;
|
|
1611
1563
|
}
|
|
1612
1564
|
interface GetRegisteredDomainResponseNonNullableFields {
|
|
1613
|
-
registeredDomain?:
|
|
1614
|
-
pendingRegistrationInfo?: {
|
|
1615
|
-
latestAttempt?: {
|
|
1616
|
-
number: number;
|
|
1617
|
-
};
|
|
1618
|
-
};
|
|
1619
|
-
failedRegistrationInfo?: {
|
|
1620
|
-
code: FailureCode;
|
|
1621
|
-
message: string;
|
|
1622
|
-
};
|
|
1623
|
-
_id: string;
|
|
1624
|
-
domain: string;
|
|
1625
|
-
productInstanceId: string;
|
|
1626
|
-
siteInfo?: {
|
|
1627
|
-
redirectInfo?: {
|
|
1628
|
-
primaryDomain: string;
|
|
1629
|
-
};
|
|
1630
|
-
assignmentType: AssignmentType;
|
|
1631
|
-
};
|
|
1632
|
-
contacts?: {
|
|
1633
|
-
registrant?: {
|
|
1634
|
-
firstName: string;
|
|
1635
|
-
lastName: string;
|
|
1636
|
-
email: string;
|
|
1637
|
-
address: string;
|
|
1638
|
-
city: string;
|
|
1639
|
-
countryCode: string;
|
|
1640
|
-
phone: string;
|
|
1641
|
-
};
|
|
1642
|
-
admin?: {
|
|
1643
|
-
firstName: string;
|
|
1644
|
-
lastName: string;
|
|
1645
|
-
email: string;
|
|
1646
|
-
address: string;
|
|
1647
|
-
city: string;
|
|
1648
|
-
countryCode: string;
|
|
1649
|
-
phone: string;
|
|
1650
|
-
};
|
|
1651
|
-
tech?: {
|
|
1652
|
-
firstName: string;
|
|
1653
|
-
lastName: string;
|
|
1654
|
-
email: string;
|
|
1655
|
-
address: string;
|
|
1656
|
-
city: string;
|
|
1657
|
-
countryCode: string;
|
|
1658
|
-
phone: string;
|
|
1659
|
-
};
|
|
1660
|
-
};
|
|
1661
|
-
status: Status;
|
|
1662
|
-
icannConfirmationStatus: ICANNConfirmationStatus;
|
|
1663
|
-
icannConfirmationStatusInfo?: {
|
|
1664
|
-
pending?: {
|
|
1665
|
-
notConfirmedBy: string[];
|
|
1666
|
-
};
|
|
1667
|
-
expired?: {
|
|
1668
|
-
notConfirmedBy: string[];
|
|
1669
|
-
};
|
|
1670
|
-
};
|
|
1671
|
-
dnsPropagationStatus: DnsPropagationStatus;
|
|
1672
|
-
};
|
|
1565
|
+
registeredDomain?: RegisteredDomainNonNullableFields;
|
|
1673
1566
|
}
|
|
1674
1567
|
interface ListRegisteredDomainsResponseNonNullableFields {
|
|
1675
|
-
registeredDomains:
|
|
1676
|
-
pendingRegistrationInfo?: {
|
|
1677
|
-
latestAttempt?: {
|
|
1678
|
-
number: number;
|
|
1679
|
-
};
|
|
1680
|
-
};
|
|
1681
|
-
failedRegistrationInfo?: {
|
|
1682
|
-
code: FailureCode;
|
|
1683
|
-
message: string;
|
|
1684
|
-
};
|
|
1685
|
-
_id: string;
|
|
1686
|
-
domain: string;
|
|
1687
|
-
productInstanceId: string;
|
|
1688
|
-
siteInfo?: {
|
|
1689
|
-
redirectInfo?: {
|
|
1690
|
-
primaryDomain: string;
|
|
1691
|
-
};
|
|
1692
|
-
assignmentType: AssignmentType;
|
|
1693
|
-
};
|
|
1694
|
-
contacts?: {
|
|
1695
|
-
registrant?: {
|
|
1696
|
-
firstName: string;
|
|
1697
|
-
lastName: string;
|
|
1698
|
-
email: string;
|
|
1699
|
-
address: string;
|
|
1700
|
-
city: string;
|
|
1701
|
-
countryCode: string;
|
|
1702
|
-
phone: string;
|
|
1703
|
-
};
|
|
1704
|
-
admin?: {
|
|
1705
|
-
firstName: string;
|
|
1706
|
-
lastName: string;
|
|
1707
|
-
email: string;
|
|
1708
|
-
address: string;
|
|
1709
|
-
city: string;
|
|
1710
|
-
countryCode: string;
|
|
1711
|
-
phone: string;
|
|
1712
|
-
};
|
|
1713
|
-
tech?: {
|
|
1714
|
-
firstName: string;
|
|
1715
|
-
lastName: string;
|
|
1716
|
-
email: string;
|
|
1717
|
-
address: string;
|
|
1718
|
-
city: string;
|
|
1719
|
-
countryCode: string;
|
|
1720
|
-
phone: string;
|
|
1721
|
-
};
|
|
1722
|
-
};
|
|
1723
|
-
status: Status;
|
|
1724
|
-
icannConfirmationStatus: ICANNConfirmationStatus;
|
|
1725
|
-
icannConfirmationStatusInfo?: {
|
|
1726
|
-
pending?: {
|
|
1727
|
-
notConfirmedBy: string[];
|
|
1728
|
-
};
|
|
1729
|
-
expired?: {
|
|
1730
|
-
notConfirmedBy: string[];
|
|
1731
|
-
};
|
|
1732
|
-
};
|
|
1733
|
-
dnsPropagationStatus: DnsPropagationStatus;
|
|
1734
|
-
}[];
|
|
1568
|
+
registeredDomains: RegisteredDomainNonNullableFields[];
|
|
1735
1569
|
}
|
|
1736
1570
|
interface RedeemRegisteredDomainResponseNonNullableFields {
|
|
1737
|
-
registeredDomain?:
|
|
1738
|
-
pendingRegistrationInfo?: {
|
|
1739
|
-
latestAttempt?: {
|
|
1740
|
-
number: number;
|
|
1741
|
-
};
|
|
1742
|
-
};
|
|
1743
|
-
failedRegistrationInfo?: {
|
|
1744
|
-
code: FailureCode;
|
|
1745
|
-
message: string;
|
|
1746
|
-
};
|
|
1747
|
-
_id: string;
|
|
1748
|
-
domain: string;
|
|
1749
|
-
productInstanceId: string;
|
|
1750
|
-
siteInfo?: {
|
|
1751
|
-
redirectInfo?: {
|
|
1752
|
-
primaryDomain: string;
|
|
1753
|
-
};
|
|
1754
|
-
assignmentType: AssignmentType;
|
|
1755
|
-
};
|
|
1756
|
-
contacts?: {
|
|
1757
|
-
registrant?: {
|
|
1758
|
-
firstName: string;
|
|
1759
|
-
lastName: string;
|
|
1760
|
-
email: string;
|
|
1761
|
-
address: string;
|
|
1762
|
-
city: string;
|
|
1763
|
-
countryCode: string;
|
|
1764
|
-
phone: string;
|
|
1765
|
-
};
|
|
1766
|
-
admin?: {
|
|
1767
|
-
firstName: string;
|
|
1768
|
-
lastName: string;
|
|
1769
|
-
email: string;
|
|
1770
|
-
address: string;
|
|
1771
|
-
city: string;
|
|
1772
|
-
countryCode: string;
|
|
1773
|
-
phone: string;
|
|
1774
|
-
};
|
|
1775
|
-
tech?: {
|
|
1776
|
-
firstName: string;
|
|
1777
|
-
lastName: string;
|
|
1778
|
-
email: string;
|
|
1779
|
-
address: string;
|
|
1780
|
-
city: string;
|
|
1781
|
-
countryCode: string;
|
|
1782
|
-
phone: string;
|
|
1783
|
-
};
|
|
1784
|
-
};
|
|
1785
|
-
status: Status;
|
|
1786
|
-
icannConfirmationStatus: ICANNConfirmationStatus;
|
|
1787
|
-
icannConfirmationStatusInfo?: {
|
|
1788
|
-
pending?: {
|
|
1789
|
-
notConfirmedBy: string[];
|
|
1790
|
-
};
|
|
1791
|
-
expired?: {
|
|
1792
|
-
notConfirmedBy: string[];
|
|
1793
|
-
};
|
|
1794
|
-
};
|
|
1795
|
-
dnsPropagationStatus: DnsPropagationStatus;
|
|
1796
|
-
};
|
|
1571
|
+
registeredDomain?: RegisteredDomainNonNullableFields;
|
|
1797
1572
|
}
|
|
1798
1573
|
interface ListRegisteredDomainsOptions {
|
|
1799
1574
|
/** Cursor paging options. */
|
|
@@ -1850,6 +1625,7 @@ type context$2_RedeemRegisteredDomainResponse = RedeemRegisteredDomainResponse;
|
|
|
1850
1625
|
type context$2_RedeemRegisteredDomainResponseNonNullableFields = RedeemRegisteredDomainResponseNonNullableFields;
|
|
1851
1626
|
type context$2_RedirectAssignmentInfo = RedirectAssignmentInfo;
|
|
1852
1627
|
type context$2_RegisteredDomain = RegisteredDomain;
|
|
1628
|
+
type context$2_RegisteredDomainNonNullableFields = RegisteredDomainNonNullableFields;
|
|
1853
1629
|
type context$2_RegisteredDomainStatusInfoOneOf = RegisteredDomainStatusInfoOneOf;
|
|
1854
1630
|
type context$2_RestoreInfo = RestoreInfo;
|
|
1855
1631
|
type context$2_SiteInfo = SiteInfo;
|
|
@@ -1863,7 +1639,7 @@ declare const context$2_getRegisteredDomain: typeof getRegisteredDomain;
|
|
|
1863
1639
|
declare const context$2_listRegisteredDomains: typeof listRegisteredDomains;
|
|
1864
1640
|
declare const context$2_redeemRegisteredDomain: typeof redeemRegisteredDomain;
|
|
1865
1641
|
declare namespace context$2 {
|
|
1866
|
-
export { type context$2_ActionEvent as ActionEvent, context$2_AssignmentType as AssignmentType, type context$2_ContactData as ContactData, type context$2_Contacts as Contacts, type context$2_CreateRegisteredDomainRequest as CreateRegisteredDomainRequest, type context$2_CreateRegisteredDomainResponse as CreateRegisteredDomainResponse, type context$2_CreateRegisteredDomainResponseNonNullableFields as CreateRegisteredDomainResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type Cursors$1 as Cursors, type context$2_DeleteRegisteredDomainByIdRequest as DeleteRegisteredDomainByIdRequest, type context$2_DeleteRegisteredDomainByIdResponse as DeleteRegisteredDomainByIdResponse, context$2_DnsPropagationStatus as DnsPropagationStatus, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$2_Expired as Expired, type context$2_FailedRegistrationInfo as FailedRegistrationInfo, context$2_FailureCode as FailureCode, type context$2_GetRegisteredDomainRequest as GetRegisteredDomainRequest, type context$2_GetRegisteredDomainResponse as GetRegisteredDomainResponse, type context$2_GetRegisteredDomainResponseNonNullableFields as GetRegisteredDomainResponseNonNullableFields, context$2_ICANNConfirmationStatus as ICANNConfirmationStatus, type context$2_ICANNConfirmationStatusInfo as ICANNConfirmationStatusInfo, type context$2_ICANNConfirmationStatusInfoStatusOneOf as ICANNConfirmationStatusInfoStatusOneOf, type context$2_IdentificationData as IdentificationData, type context$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$2_LatestAttempt as LatestAttempt, type context$2_ListRegisteredDomainsOptions as ListRegisteredDomainsOptions, type context$2_ListRegisteredDomainsRequest as ListRegisteredDomainsRequest, type context$2_ListRegisteredDomainsResponse as ListRegisteredDomainsResponse, type context$2_ListRegisteredDomainsResponseNonNullableFields as ListRegisteredDomainsResponseNonNullableFields, type context$2_MessageEnvelope as MessageEnvelope, type context$2_Pending as Pending, type context$2_PendingRegistrationInfo as PendingRegistrationInfo, type context$2_RedeemRegisteredDomainRequest as RedeemRegisteredDomainRequest, type context$2_RedeemRegisteredDomainResponse as RedeemRegisteredDomainResponse, type context$2_RedeemRegisteredDomainResponseNonNullableFields as RedeemRegisteredDomainResponseNonNullableFields, type context$2_RedirectAssignmentInfo as RedirectAssignmentInfo, type context$2_RegisteredDomain as RegisteredDomain, type context$2_RegisteredDomainStatusInfoOneOf as RegisteredDomainStatusInfoOneOf, type context$2_RestoreInfo as RestoreInfo, type context$2_SiteInfo as SiteInfo, type context$2_SiteInfoAssignmentInfoOneOf as SiteInfoAssignmentInfoOneOf, context$2_Status as Status, context$2_WebhookIdentityType as WebhookIdentityType, context$2_createRegisteredDomain as createRegisteredDomain, context$2_getRegisteredDomain as getRegisteredDomain, context$2_listRegisteredDomains as listRegisteredDomains, context$2_redeemRegisteredDomain as redeemRegisteredDomain };
|
|
1642
|
+
export { type context$2_ActionEvent as ActionEvent, context$2_AssignmentType as AssignmentType, type context$2_ContactData as ContactData, type context$2_Contacts as Contacts, type context$2_CreateRegisteredDomainRequest as CreateRegisteredDomainRequest, type context$2_CreateRegisteredDomainResponse as CreateRegisteredDomainResponse, type context$2_CreateRegisteredDomainResponseNonNullableFields as CreateRegisteredDomainResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type Cursors$1 as Cursors, type context$2_DeleteRegisteredDomainByIdRequest as DeleteRegisteredDomainByIdRequest, type context$2_DeleteRegisteredDomainByIdResponse as DeleteRegisteredDomainByIdResponse, context$2_DnsPropagationStatus as DnsPropagationStatus, type context$2_DomainEvent as DomainEvent, type context$2_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$2_EntityCreatedEvent as EntityCreatedEvent, type context$2_EntityDeletedEvent as EntityDeletedEvent, type context$2_EntityUpdatedEvent as EntityUpdatedEvent, type context$2_Expired as Expired, type context$2_FailedRegistrationInfo as FailedRegistrationInfo, context$2_FailureCode as FailureCode, type context$2_GetRegisteredDomainRequest as GetRegisteredDomainRequest, type context$2_GetRegisteredDomainResponse as GetRegisteredDomainResponse, type context$2_GetRegisteredDomainResponseNonNullableFields as GetRegisteredDomainResponseNonNullableFields, context$2_ICANNConfirmationStatus as ICANNConfirmationStatus, type context$2_ICANNConfirmationStatusInfo as ICANNConfirmationStatusInfo, type context$2_ICANNConfirmationStatusInfoStatusOneOf as ICANNConfirmationStatusInfoStatusOneOf, type context$2_IdentificationData as IdentificationData, type context$2_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$2_LatestAttempt as LatestAttempt, type context$2_ListRegisteredDomainsOptions as ListRegisteredDomainsOptions, type context$2_ListRegisteredDomainsRequest as ListRegisteredDomainsRequest, type context$2_ListRegisteredDomainsResponse as ListRegisteredDomainsResponse, type context$2_ListRegisteredDomainsResponseNonNullableFields as ListRegisteredDomainsResponseNonNullableFields, type context$2_MessageEnvelope as MessageEnvelope, type context$2_Pending as Pending, type context$2_PendingRegistrationInfo as PendingRegistrationInfo, type context$2_RedeemRegisteredDomainRequest as RedeemRegisteredDomainRequest, type context$2_RedeemRegisteredDomainResponse as RedeemRegisteredDomainResponse, type context$2_RedeemRegisteredDomainResponseNonNullableFields as RedeemRegisteredDomainResponseNonNullableFields, type context$2_RedirectAssignmentInfo as RedirectAssignmentInfo, type context$2_RegisteredDomain as RegisteredDomain, type context$2_RegisteredDomainNonNullableFields as RegisteredDomainNonNullableFields, type context$2_RegisteredDomainStatusInfoOneOf as RegisteredDomainStatusInfoOneOf, type context$2_RestoreInfo as RestoreInfo, type context$2_SiteInfo as SiteInfo, type context$2_SiteInfoAssignmentInfoOneOf as SiteInfoAssignmentInfoOneOf, context$2_Status as Status, context$2_WebhookIdentityType as WebhookIdentityType, context$2_createRegisteredDomain as createRegisteredDomain, context$2_getRegisteredDomain as getRegisteredDomain, context$2_listRegisteredDomains as listRegisteredDomains, context$2_redeemRegisteredDomain as redeemRegisteredDomain };
|
|
1867
1643
|
}
|
|
1868
1644
|
|
|
1869
1645
|
interface DomainAvailability {
|
|
@@ -1890,11 +1666,12 @@ interface CheckDomainAvailabilityResponse {
|
|
|
1890
1666
|
/** Information about the domain's availability. */
|
|
1891
1667
|
availability?: DomainAvailability;
|
|
1892
1668
|
}
|
|
1669
|
+
interface DomainAvailabilityNonNullableFields {
|
|
1670
|
+
domain: string;
|
|
1671
|
+
available: boolean;
|
|
1672
|
+
}
|
|
1893
1673
|
interface CheckDomainAvailabilityResponseNonNullableFields {
|
|
1894
|
-
availability?:
|
|
1895
|
-
domain: string;
|
|
1896
|
-
available: boolean;
|
|
1897
|
-
};
|
|
1674
|
+
availability?: DomainAvailabilityNonNullableFields;
|
|
1898
1675
|
}
|
|
1899
1676
|
|
|
1900
1677
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
@@ -1994,10 +1771,11 @@ interface Cursors {
|
|
|
1994
1771
|
/** Cursor pointing to previous page in the list of results. */
|
|
1995
1772
|
prev?: string | null;
|
|
1996
1773
|
}
|
|
1774
|
+
interface DomainSuggestionNonNullableFields {
|
|
1775
|
+
domain: string;
|
|
1776
|
+
}
|
|
1997
1777
|
interface SuggestDomainsResponseNonNullableFields {
|
|
1998
|
-
suggestions:
|
|
1999
|
-
domain: string;
|
|
2000
|
-
}[];
|
|
1778
|
+
suggestions: DomainSuggestionNonNullableFields[];
|
|
2001
1779
|
}
|
|
2002
1780
|
interface SuggestDomainsOptions {
|
|
2003
1781
|
/**
|