@@ -599,6 +599,8 @@ export interface DomainSummary {
599599 */
600600 transferRegistrationStatus ?: DomainRegistrationStatusTransfer
601601 organizationId : string
602+ createdAt ?: Date
603+ pendingTrade : boolean
602604}
603605
604606export interface RenewableDomain {
@@ -727,32 +729,51 @@ export interface Domain {
727729 domain : string
728730 organizationId : string
729731 projectId : string
732+ /** Status of the automatic renewal of the domain. */
730733 autoRenewStatus : DomainFeatureStatus
734+ /** Status of the DNSSEC configuration of the domain. */
731735 dnssec ?: DomainDNSSEC
736+ /** List of the domain's EPP codes. */
732737 eppCode : string [ ]
738+ /** Date of expiration of the domain. */
733739 expiredAt ?: Date
740+ /** Domain's last modification date. */
734741 updatedAt ?: Date
735742 registrar : string
743+ /** Indicates whether Scaleway is the domain's registrar. */
736744 isExternal : boolean
745+ /** Status of the domain. */
737746 status : DomainStatus
747+ /** List of the domain's DNS zones. */
738748 dnsZones : DNSZone [ ]
749+ /** Contact information of the domain's owner. */
739750 ownerContact ?: Contact
751+ /** Contact information of the domain's technical contact. */
740752 technicalContact ?: Contact
753+ /** Contact information of the domain's administrative contact. */
741754 administrativeContact ?: Contact
742755 /**
756+ * Registration status of an external domain, if available.
757+ *
743758 * One-of ('registrationStatus'): at most one of
744759 * 'externalDomainRegistrationStatus', 'transferRegistrationStatus' could be
745760 * set.
746761 */
747762 externalDomainRegistrationStatus ?: DomainRegistrationStatusExternalDomain
748763 /**
764+ * Status of a domain, when available for transfer.
765+ *
749766 * One-of ('registrationStatus'): at most one of
750767 * 'externalDomainRegistrationStatus', 'transferRegistrationStatus' could be
751768 * set.
752769 */
753770 transferRegistrationStatus ?: DomainRegistrationStatusTransfer
771+ /** Domain's TLD information. */
754772 tld ?: Tld
773+ /** List of Scaleway resources linked to the domain. */
755774 linkedProducts : LinkedProduct [ ]
775+ /** Indicates if a trade is ongoing. */
776+ pendingTrade : boolean
756777}
757778
758779export type ExportRawDNSZoneRequest = {
0 commit comments