@wix/domains 1.0.31 → 1.0.33
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/build/cjs/context.js +0 -1
- package/build/cjs/index.js +0 -1
- package/build/cjs/meta.js +0 -1
- package/package.json +8 -8
- package/type-bundles/context.bundle.d.ts +6 -1
- package/type-bundles/index.bundle.d.ts +6 -1
- package/build/cjs/context.js.map +0 -1
- package/build/cjs/index.js.map +0 -1
- package/build/cjs/meta.js.map +0 -1
package/build/cjs/context.js
CHANGED
|
@@ -30,4 +30,3 @@ exports.domainDns = __importStar(require("@wix/domains_domain-dns/context"));
|
|
|
30
30
|
exports.registeredDomains = __importStar(require("@wix/domains_registered-domains/context"));
|
|
31
31
|
exports.domainAvailability = __importStar(require("@wix/domains_domain-availability/context"));
|
|
32
32
|
exports.domainSuggestions = __importStar(require("@wix/domains_domain-suggestions/context"));
|
|
33
|
-
//# sourceMappingURL=context.js.map
|
package/build/cjs/index.js
CHANGED
|
@@ -36,4 +36,3 @@ const domainAvailability = __importStar(require("@wix/domains_domain-availabilit
|
|
|
36
36
|
exports.domainAvailability = domainAvailability;
|
|
37
37
|
const domainSuggestions = __importStar(require("@wix/domains_domain-suggestions"));
|
|
38
38
|
exports.domainSuggestions = domainSuggestions;
|
|
39
|
-
//# sourceMappingURL=index.js.map
|
package/build/cjs/meta.js
CHANGED
|
@@ -30,4 +30,3 @@ exports.domainDns = __importStar(require("@wix/domains_domain-dns/meta"));
|
|
|
30
30
|
exports.registeredDomains = __importStar(require("@wix/domains_registered-domains/meta"));
|
|
31
31
|
exports.domainAvailability = __importStar(require("@wix/domains_domain-availability/meta"));
|
|
32
32
|
exports.domainSuggestions = __importStar(require("@wix/domains_domain-suggestions/meta"));
|
|
33
|
-
//# sourceMappingURL=meta.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/domains",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
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.13",
|
|
22
|
+
"@wix/domains_connected-domains": "1.0.13",
|
|
23
|
+
"@wix/domains_domain-availability": "1.0.10",
|
|
24
|
+
"@wix/domains_domain-dns": "1.0.9",
|
|
25
|
+
"@wix/domains_domain-suggestions": "1.0.17",
|
|
26
|
+
"@wix/domains_registered-domains": "1.0.11"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "c8ffb4137ab5aa5ba4da9ddfd4ecae6df90b2d3a45db95b7d67c9efa"
|
|
52
52
|
}
|
|
@@ -783,6 +783,10 @@ interface DnssecInfo {
|
|
|
783
783
|
*/
|
|
784
784
|
digest?: string;
|
|
785
785
|
}
|
|
786
|
+
interface DnsRecordsChangedEvent {
|
|
787
|
+
domainName?: string;
|
|
788
|
+
changeTime?: Date;
|
|
789
|
+
}
|
|
786
790
|
interface DomainRemovedEvent {
|
|
787
791
|
/**
|
|
788
792
|
* Domain name including TLD.
|
|
@@ -1101,6 +1105,7 @@ type context$3_CreateDnsZoneResponseNonNullableFields = CreateDnsZoneResponseNon
|
|
|
1101
1105
|
type context$3_DeleteDnsZoneRequest = DeleteDnsZoneRequest;
|
|
1102
1106
|
type context$3_DeleteDnsZoneResponse = DeleteDnsZoneResponse;
|
|
1103
1107
|
type context$3_DnsRecord = DnsRecord;
|
|
1108
|
+
type context$3_DnsRecordsChangedEvent = DnsRecordsChangedEvent;
|
|
1104
1109
|
type context$3_DnsZone = DnsZone;
|
|
1105
1110
|
type context$3_DnsZoneNonNullableFields = DnsZoneNonNullableFields;
|
|
1106
1111
|
type context$3_DnssecInfo = DnssecInfo;
|
|
@@ -1123,7 +1128,7 @@ declare const context$3_getDnsZone: typeof getDnsZone;
|
|
|
1123
1128
|
declare const context$3_previewDnsZone: typeof previewDnsZone;
|
|
1124
1129
|
declare const context$3_updateDnsZone: typeof updateDnsZone;
|
|
1125
1130
|
declare namespace context$3 {
|
|
1126
|
-
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 context$3_DnssecInfo as DnssecInfo, 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 RestoreInfo$1 as RestoreInfo, 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 };
|
|
1131
|
+
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_DnsRecordsChangedEvent as DnsRecordsChangedEvent, type context$3_DnsZone as DnsZone, type context$3_DnsZoneNonNullableFields as DnsZoneNonNullableFields, type context$3_DnssecInfo as DnssecInfo, 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 RestoreInfo$1 as RestoreInfo, 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 };
|
|
1127
1132
|
}
|
|
1128
1133
|
|
|
1129
1134
|
/**
|
|
@@ -783,6 +783,10 @@ interface DnssecInfo {
|
|
|
783
783
|
*/
|
|
784
784
|
digest?: string;
|
|
785
785
|
}
|
|
786
|
+
interface DnsRecordsChangedEvent {
|
|
787
|
+
domainName?: string;
|
|
788
|
+
changeTime?: Date;
|
|
789
|
+
}
|
|
786
790
|
interface DomainRemovedEvent {
|
|
787
791
|
/**
|
|
788
792
|
* Domain name including TLD.
|
|
@@ -1101,6 +1105,7 @@ type index_d$3_CreateDnsZoneResponseNonNullableFields = CreateDnsZoneResponseNon
|
|
|
1101
1105
|
type index_d$3_DeleteDnsZoneRequest = DeleteDnsZoneRequest;
|
|
1102
1106
|
type index_d$3_DeleteDnsZoneResponse = DeleteDnsZoneResponse;
|
|
1103
1107
|
type index_d$3_DnsRecord = DnsRecord;
|
|
1108
|
+
type index_d$3_DnsRecordsChangedEvent = DnsRecordsChangedEvent;
|
|
1104
1109
|
type index_d$3_DnsZone = DnsZone;
|
|
1105
1110
|
type index_d$3_DnsZoneNonNullableFields = DnsZoneNonNullableFields;
|
|
1106
1111
|
type index_d$3_DnssecInfo = DnssecInfo;
|
|
@@ -1123,7 +1128,7 @@ declare const index_d$3_getDnsZone: typeof getDnsZone;
|
|
|
1123
1128
|
declare const index_d$3_previewDnsZone: typeof previewDnsZone;
|
|
1124
1129
|
declare const index_d$3_updateDnsZone: typeof updateDnsZone;
|
|
1125
1130
|
declare namespace index_d$3 {
|
|
1126
|
-
export { type ActionEvent$1 as ActionEvent, type index_d$3_CreateDnsZoneRequest as CreateDnsZoneRequest, type index_d$3_CreateDnsZoneResponse as CreateDnsZoneResponse, type index_d$3_CreateDnsZoneResponseNonNullableFields as CreateDnsZoneResponseNonNullableFields, type index_d$3_DeleteDnsZoneRequest as DeleteDnsZoneRequest, type index_d$3_DeleteDnsZoneResponse as DeleteDnsZoneResponse, type index_d$3_DnsRecord as DnsRecord, type index_d$3_DnsZone as DnsZone, type index_d$3_DnsZoneNonNullableFields as DnsZoneNonNullableFields, type index_d$3_DnssecInfo as DnssecInfo, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$3_DomainRemovedEvent as DomainRemovedEvent, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$3_GetDnsZoneRequest as GetDnsZoneRequest, type index_d$3_GetDnsZoneResponse as GetDnsZoneResponse, type index_d$3_GetDnsZoneResponseNonNullableFields as GetDnsZoneResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type index_d$3_PreviewDnsZoneRequest as PreviewDnsZoneRequest, type index_d$3_PreviewDnsZoneResponse as PreviewDnsZoneResponse, type index_d$3_PreviewDnsZoneResponseNonNullableFields as PreviewDnsZoneResponseNonNullableFields, index_d$3_RecordType as RecordType, type RestoreInfo$1 as RestoreInfo, type index_d$3_UpdateDnsZoneOptions as UpdateDnsZoneOptions, type index_d$3_UpdateDnsZoneRequest as UpdateDnsZoneRequest, type index_d$3_UpdateDnsZoneResponse as UpdateDnsZoneResponse, type index_d$3_UpdateDnsZoneResponseNonNullableFields as UpdateDnsZoneResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, index_d$3_createDnsZone as createDnsZone, index_d$3_deleteDnsZone as deleteDnsZone, index_d$3_getDnsZone as getDnsZone, index_d$3_previewDnsZone as previewDnsZone, index_d$3_updateDnsZone as updateDnsZone };
|
|
1131
|
+
export { type ActionEvent$1 as ActionEvent, type index_d$3_CreateDnsZoneRequest as CreateDnsZoneRequest, type index_d$3_CreateDnsZoneResponse as CreateDnsZoneResponse, type index_d$3_CreateDnsZoneResponseNonNullableFields as CreateDnsZoneResponseNonNullableFields, type index_d$3_DeleteDnsZoneRequest as DeleteDnsZoneRequest, type index_d$3_DeleteDnsZoneResponse as DeleteDnsZoneResponse, type index_d$3_DnsRecord as DnsRecord, type index_d$3_DnsRecordsChangedEvent as DnsRecordsChangedEvent, type index_d$3_DnsZone as DnsZone, type index_d$3_DnsZoneNonNullableFields as DnsZoneNonNullableFields, type index_d$3_DnssecInfo as DnssecInfo, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$3_DomainRemovedEvent as DomainRemovedEvent, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$3_GetDnsZoneRequest as GetDnsZoneRequest, type index_d$3_GetDnsZoneResponse as GetDnsZoneResponse, type index_d$3_GetDnsZoneResponseNonNullableFields as GetDnsZoneResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type index_d$3_PreviewDnsZoneRequest as PreviewDnsZoneRequest, type index_d$3_PreviewDnsZoneResponse as PreviewDnsZoneResponse, type index_d$3_PreviewDnsZoneResponseNonNullableFields as PreviewDnsZoneResponseNonNullableFields, index_d$3_RecordType as RecordType, type RestoreInfo$1 as RestoreInfo, type index_d$3_UpdateDnsZoneOptions as UpdateDnsZoneOptions, type index_d$3_UpdateDnsZoneRequest as UpdateDnsZoneRequest, type index_d$3_UpdateDnsZoneResponse as UpdateDnsZoneResponse, type index_d$3_UpdateDnsZoneResponseNonNullableFields as UpdateDnsZoneResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, index_d$3_createDnsZone as createDnsZone, index_d$3_deleteDnsZone as deleteDnsZone, index_d$3_getDnsZone as getDnsZone, index_d$3_previewDnsZone as previewDnsZone, index_d$3_updateDnsZone as updateDnsZone };
|
|
1127
1132
|
}
|
|
1128
1133
|
|
|
1129
1134
|
/**
|
package/build/cjs/context.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2FAA2E;AAC3E,6GAA6F;AAC7F,6EAA6D;AAC7D,6FAA6E;AAC7E,+FAA+E;AAC/E,6FAA6E"}
|
package/build/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iFAAmE;AAQjE,4CAAgB;AAPlB,mGAAqF;AAQnF,4DAAwB;AAP1B,mEAAqD;AAQnD,8BAAS;AAPX,mFAAqE;AAQnE,8CAAiB;AAPnB,qFAAuE;AAQrE,gDAAkB;AAPpB,mFAAqE;AAQnE,8CAAiB"}
|
package/build/cjs/meta.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wFAAwE;AACxE,0GAA0F;AAC1F,0EAA0D;AAC1D,0FAA0E;AAC1E,4FAA4E;AAC5E,0FAA0E"}
|