@scaleway/sdk-domain 2.2.1 → 2.3.0

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.
@@ -1,29 +1,23 @@
1
+ /** Lists transient statutes of the enum {@link DNSZoneStatus}. */
1
2
  const DNS_ZONE_TRANSIENT_STATUSES = ["pending"];
2
- const DOMAIN_FEATURE_TRANSIENT_STATUSES = [
3
- "enabling",
4
- "disabling"
5
- ];
3
+ /** Lists transient statutes of the enum {@link DomainFeatureStatus}. */
4
+ const DOMAIN_FEATURE_TRANSIENT_STATUSES = ["enabling", "disabling"];
5
+ /** Lists transient statutes of the enum {@link DomainRegistrationStatusTransferStatus}. */
6
6
  const DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES = ["pending", "processing"];
7
+ /** Lists transient statutes of the enum {@link DomainStatus}. */
7
8
  const DOMAIN_TRANSIENT_STATUSES = [
8
- "creating",
9
- "renewing",
10
- "xfering",
11
- "expiring",
12
- "updating",
13
- "checking",
14
- "deleting"
9
+ "creating",
10
+ "renewing",
11
+ "xfering",
12
+ "expiring",
13
+ "updating",
14
+ "checking",
15
+ "deleting"
15
16
  ];
17
+ /** Lists transient statutes of the enum {@link HostStatus}. */
16
18
  const HOST_TRANSIENT_STATUSES = ["updating", "deleting"];
17
- const SSL_CERTIFICATE_TRANSIENT_STATUSES = [
18
- "pending"
19
- ];
19
+ /** Lists transient statutes of the enum {@link SSLCertificateStatus}. */
20
+ const SSL_CERTIFICATE_TRANSIENT_STATUSES = ["pending"];
21
+ /** Lists transient statutes of the enum {@link TaskStatus}. */
20
22
  const TASK_TRANSIENT_STATUSES = ["pending"];
21
- export {
22
- DNS_ZONE_TRANSIENT_STATUSES,
23
- DOMAIN_FEATURE_TRANSIENT_STATUSES,
24
- DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES,
25
- DOMAIN_TRANSIENT_STATUSES,
26
- HOST_TRANSIENT_STATUSES,
27
- SSL_CERTIFICATE_TRANSIENT_STATUSES,
28
- TASK_TRANSIENT_STATUSES
29
- };
23
+ export { DNS_ZONE_TRANSIENT_STATUSES, DOMAIN_FEATURE_TRANSIENT_STATUSES, DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES, HOST_TRANSIENT_STATUSES, SSL_CERTIFICATE_TRANSIENT_STATUSES, TASK_TRANSIENT_STATUSES };
@@ -1,76 +1,78 @@
1
- import { API, RegistrarAPI, UnauthenticatedRegistrarAPI } from "./api.gen.js";
1
+ import { __exportAll } from "../_virtual/_rolldown/runtime.js";
2
2
  import { DNS_ZONE_TRANSIENT_STATUSES, DOMAIN_FEATURE_TRANSIENT_STATUSES, DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES, HOST_TRANSIENT_STATUSES, SSL_CERTIFICATE_TRANSIENT_STATUSES, TASK_TRANSIENT_STATUSES } from "./content.gen.js";
3
3
  import { marshalCloneDNSZoneRequest, marshalCreateDNSZoneRequest, marshalCreateSSLCertificateRequest, marshalDSRecord, marshalImportProviderDNSZoneRequest, marshalImportRawDNSZoneRequest, marshalRefreshDNSZoneRequest, marshalRegistrarApiBuyDomainsRequest, marshalRegistrarApiCheckContactsCompatibilityRequest, marshalRegistrarApiCreateDomainHostRequest, marshalRegistrarApiEnableDomainDNSSECRequest, marshalRegistrarApiRegisterExternalDomainRequest, marshalRegistrarApiRenewDomainsRequest, marshalRegistrarApiRetryInboundTransferRequest, marshalRegistrarApiTradeDomainRequest, marshalRegistrarApiTransferInDomainRequest, marshalRegistrarApiUpdateContactRequest, marshalRegistrarApiUpdateDomainHostRequest, marshalRegistrarApiUpdateDomainRequest, marshalUpdateDNSZoneNameserversRequest, marshalUpdateDNSZoneRecordsRequest, marshalUpdateDNSZoneRequest, unmarshalCheckContactsCompatibilityResponse, unmarshalClearDNSZoneRecordsResponse, unmarshalContact, unmarshalDNSZone, unmarshalDSRecord, unmarshalDeleteDNSZoneResponse, unmarshalDeleteExternalDomainResponse, unmarshalDeleteSSLCertificateResponse, unmarshalDomain, unmarshalGetDNSZoneTsigKeyResponse, unmarshalGetDNSZoneVersionDiffResponse, unmarshalGetDomainAuthCodeResponse, unmarshalHost, unmarshalImportProviderDNSZoneResponse, unmarshalImportRawDNSZoneResponse, unmarshalListContactsResponse, unmarshalListDNSZoneNameserversResponse, unmarshalListDNSZoneRecordsResponse, unmarshalListDNSZoneVersionRecordsResponse, unmarshalListDNSZoneVersionsResponse, unmarshalListDNSZonesResponse, unmarshalListDomainHostsResponse, unmarshalListDomainsResponse, unmarshalListInboundTransfersResponse, unmarshalListRenewableDomainsResponse, unmarshalListSSLCertificatesResponse, unmarshalListTasksResponse, unmarshalListTldsResponse, unmarshalOrderResponse, unmarshalRefreshDNSZoneResponse, unmarshalRegisterExternalDomainResponse, unmarshalRestoreDNSZoneVersionResponse, unmarshalRetryInboundTransferResponse, unmarshalSSLCertificate, unmarshalSearchAvailableDomainsConsoleResponse, unmarshalSearchAvailableDomainsResponse, unmarshalTask, unmarshalUpdateDNSZoneNameserversResponse, unmarshalUpdateDNSZoneRecordsResponse } from "./marshalling.gen.js";
4
- export {
5
- API,
6
- DNS_ZONE_TRANSIENT_STATUSES,
7
- DOMAIN_FEATURE_TRANSIENT_STATUSES,
8
- DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES,
9
- DOMAIN_TRANSIENT_STATUSES,
10
- HOST_TRANSIENT_STATUSES,
11
- RegistrarAPI,
12
- SSL_CERTIFICATE_TRANSIENT_STATUSES,
13
- TASK_TRANSIENT_STATUSES,
14
- UnauthenticatedRegistrarAPI,
15
- marshalCloneDNSZoneRequest,
16
- marshalCreateDNSZoneRequest,
17
- marshalCreateSSLCertificateRequest,
18
- marshalDSRecord,
19
- marshalImportProviderDNSZoneRequest,
20
- marshalImportRawDNSZoneRequest,
21
- marshalRefreshDNSZoneRequest,
22
- marshalRegistrarApiBuyDomainsRequest,
23
- marshalRegistrarApiCheckContactsCompatibilityRequest,
24
- marshalRegistrarApiCreateDomainHostRequest,
25
- marshalRegistrarApiEnableDomainDNSSECRequest,
26
- marshalRegistrarApiRegisterExternalDomainRequest,
27
- marshalRegistrarApiRenewDomainsRequest,
28
- marshalRegistrarApiRetryInboundTransferRequest,
29
- marshalRegistrarApiTradeDomainRequest,
30
- marshalRegistrarApiTransferInDomainRequest,
31
- marshalRegistrarApiUpdateContactRequest,
32
- marshalRegistrarApiUpdateDomainHostRequest,
33
- marshalRegistrarApiUpdateDomainRequest,
34
- marshalUpdateDNSZoneNameserversRequest,
35
- marshalUpdateDNSZoneRecordsRequest,
36
- marshalUpdateDNSZoneRequest,
37
- unmarshalCheckContactsCompatibilityResponse,
38
- unmarshalClearDNSZoneRecordsResponse,
39
- unmarshalContact,
40
- unmarshalDNSZone,
41
- unmarshalDSRecord,
42
- unmarshalDeleteDNSZoneResponse,
43
- unmarshalDeleteExternalDomainResponse,
44
- unmarshalDeleteSSLCertificateResponse,
45
- unmarshalDomain,
46
- unmarshalGetDNSZoneTsigKeyResponse,
47
- unmarshalGetDNSZoneVersionDiffResponse,
48
- unmarshalGetDomainAuthCodeResponse,
49
- unmarshalHost,
50
- unmarshalImportProviderDNSZoneResponse,
51
- unmarshalImportRawDNSZoneResponse,
52
- unmarshalListContactsResponse,
53
- unmarshalListDNSZoneNameserversResponse,
54
- unmarshalListDNSZoneRecordsResponse,
55
- unmarshalListDNSZoneVersionRecordsResponse,
56
- unmarshalListDNSZoneVersionsResponse,
57
- unmarshalListDNSZonesResponse,
58
- unmarshalListDomainHostsResponse,
59
- unmarshalListDomainsResponse,
60
- unmarshalListInboundTransfersResponse,
61
- unmarshalListRenewableDomainsResponse,
62
- unmarshalListSSLCertificatesResponse,
63
- unmarshalListTasksResponse,
64
- unmarshalListTldsResponse,
65
- unmarshalOrderResponse,
66
- unmarshalRefreshDNSZoneResponse,
67
- unmarshalRegisterExternalDomainResponse,
68
- unmarshalRestoreDNSZoneVersionResponse,
69
- unmarshalRetryInboundTransferResponse,
70
- unmarshalSSLCertificate,
71
- unmarshalSearchAvailableDomainsConsoleResponse,
72
- unmarshalSearchAvailableDomainsResponse,
73
- unmarshalTask,
74
- unmarshalUpdateDNSZoneNameserversResponse,
75
- unmarshalUpdateDNSZoneRecordsResponse
76
- };
4
+ import { API, RegistrarAPI, UnauthenticatedRegistrarAPI } from "./api.gen.js";
5
+ var index_gen_exports = /* @__PURE__ */ __exportAll({
6
+ API: () => API,
7
+ DNS_ZONE_TRANSIENT_STATUSES: () => DNS_ZONE_TRANSIENT_STATUSES,
8
+ DOMAIN_FEATURE_TRANSIENT_STATUSES: () => DOMAIN_FEATURE_TRANSIENT_STATUSES,
9
+ DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES: () => DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES,
10
+ DOMAIN_TRANSIENT_STATUSES: () => DOMAIN_TRANSIENT_STATUSES,
11
+ HOST_TRANSIENT_STATUSES: () => HOST_TRANSIENT_STATUSES,
12
+ RegistrarAPI: () => RegistrarAPI,
13
+ SSL_CERTIFICATE_TRANSIENT_STATUSES: () => SSL_CERTIFICATE_TRANSIENT_STATUSES,
14
+ TASK_TRANSIENT_STATUSES: () => TASK_TRANSIENT_STATUSES,
15
+ UnauthenticatedRegistrarAPI: () => UnauthenticatedRegistrarAPI,
16
+ marshalCloneDNSZoneRequest: () => marshalCloneDNSZoneRequest,
17
+ marshalCreateDNSZoneRequest: () => marshalCreateDNSZoneRequest,
18
+ marshalCreateSSLCertificateRequest: () => marshalCreateSSLCertificateRequest,
19
+ marshalDSRecord: () => marshalDSRecord,
20
+ marshalImportProviderDNSZoneRequest: () => marshalImportProviderDNSZoneRequest,
21
+ marshalImportRawDNSZoneRequest: () => marshalImportRawDNSZoneRequest,
22
+ marshalRefreshDNSZoneRequest: () => marshalRefreshDNSZoneRequest,
23
+ marshalRegistrarApiBuyDomainsRequest: () => marshalRegistrarApiBuyDomainsRequest,
24
+ marshalRegistrarApiCheckContactsCompatibilityRequest: () => marshalRegistrarApiCheckContactsCompatibilityRequest,
25
+ marshalRegistrarApiCreateDomainHostRequest: () => marshalRegistrarApiCreateDomainHostRequest,
26
+ marshalRegistrarApiEnableDomainDNSSECRequest: () => marshalRegistrarApiEnableDomainDNSSECRequest,
27
+ marshalRegistrarApiRegisterExternalDomainRequest: () => marshalRegistrarApiRegisterExternalDomainRequest,
28
+ marshalRegistrarApiRenewDomainsRequest: () => marshalRegistrarApiRenewDomainsRequest,
29
+ marshalRegistrarApiRetryInboundTransferRequest: () => marshalRegistrarApiRetryInboundTransferRequest,
30
+ marshalRegistrarApiTradeDomainRequest: () => marshalRegistrarApiTradeDomainRequest,
31
+ marshalRegistrarApiTransferInDomainRequest: () => marshalRegistrarApiTransferInDomainRequest,
32
+ marshalRegistrarApiUpdateContactRequest: () => marshalRegistrarApiUpdateContactRequest,
33
+ marshalRegistrarApiUpdateDomainHostRequest: () => marshalRegistrarApiUpdateDomainHostRequest,
34
+ marshalRegistrarApiUpdateDomainRequest: () => marshalRegistrarApiUpdateDomainRequest,
35
+ marshalUpdateDNSZoneNameserversRequest: () => marshalUpdateDNSZoneNameserversRequest,
36
+ marshalUpdateDNSZoneRecordsRequest: () => marshalUpdateDNSZoneRecordsRequest,
37
+ marshalUpdateDNSZoneRequest: () => marshalUpdateDNSZoneRequest,
38
+ unmarshalCheckContactsCompatibilityResponse: () => unmarshalCheckContactsCompatibilityResponse,
39
+ unmarshalClearDNSZoneRecordsResponse: () => unmarshalClearDNSZoneRecordsResponse,
40
+ unmarshalContact: () => unmarshalContact,
41
+ unmarshalDNSZone: () => unmarshalDNSZone,
42
+ unmarshalDSRecord: () => unmarshalDSRecord,
43
+ unmarshalDeleteDNSZoneResponse: () => unmarshalDeleteDNSZoneResponse,
44
+ unmarshalDeleteExternalDomainResponse: () => unmarshalDeleteExternalDomainResponse,
45
+ unmarshalDeleteSSLCertificateResponse: () => unmarshalDeleteSSLCertificateResponse,
46
+ unmarshalDomain: () => unmarshalDomain,
47
+ unmarshalGetDNSZoneTsigKeyResponse: () => unmarshalGetDNSZoneTsigKeyResponse,
48
+ unmarshalGetDNSZoneVersionDiffResponse: () => unmarshalGetDNSZoneVersionDiffResponse,
49
+ unmarshalGetDomainAuthCodeResponse: () => unmarshalGetDomainAuthCodeResponse,
50
+ unmarshalHost: () => unmarshalHost,
51
+ unmarshalImportProviderDNSZoneResponse: () => unmarshalImportProviderDNSZoneResponse,
52
+ unmarshalImportRawDNSZoneResponse: () => unmarshalImportRawDNSZoneResponse,
53
+ unmarshalListContactsResponse: () => unmarshalListContactsResponse,
54
+ unmarshalListDNSZoneNameserversResponse: () => unmarshalListDNSZoneNameserversResponse,
55
+ unmarshalListDNSZoneRecordsResponse: () => unmarshalListDNSZoneRecordsResponse,
56
+ unmarshalListDNSZoneVersionRecordsResponse: () => unmarshalListDNSZoneVersionRecordsResponse,
57
+ unmarshalListDNSZoneVersionsResponse: () => unmarshalListDNSZoneVersionsResponse,
58
+ unmarshalListDNSZonesResponse: () => unmarshalListDNSZonesResponse,
59
+ unmarshalListDomainHostsResponse: () => unmarshalListDomainHostsResponse,
60
+ unmarshalListDomainsResponse: () => unmarshalListDomainsResponse,
61
+ unmarshalListInboundTransfersResponse: () => unmarshalListInboundTransfersResponse,
62
+ unmarshalListRenewableDomainsResponse: () => unmarshalListRenewableDomainsResponse,
63
+ unmarshalListSSLCertificatesResponse: () => unmarshalListSSLCertificatesResponse,
64
+ unmarshalListTasksResponse: () => unmarshalListTasksResponse,
65
+ unmarshalListTldsResponse: () => unmarshalListTldsResponse,
66
+ unmarshalOrderResponse: () => unmarshalOrderResponse,
67
+ unmarshalRefreshDNSZoneResponse: () => unmarshalRefreshDNSZoneResponse,
68
+ unmarshalRegisterExternalDomainResponse: () => unmarshalRegisterExternalDomainResponse,
69
+ unmarshalRestoreDNSZoneVersionResponse: () => unmarshalRestoreDNSZoneVersionResponse,
70
+ unmarshalRetryInboundTransferResponse: () => unmarshalRetryInboundTransferResponse,
71
+ unmarshalSSLCertificate: () => unmarshalSSLCertificate,
72
+ unmarshalSearchAvailableDomainsConsoleResponse: () => unmarshalSearchAvailableDomainsConsoleResponse,
73
+ unmarshalSearchAvailableDomainsResponse: () => unmarshalSearchAvailableDomainsResponse,
74
+ unmarshalTask: () => unmarshalTask,
75
+ unmarshalUpdateDNSZoneNameserversResponse: () => unmarshalUpdateDNSZoneNameserversResponse,
76
+ unmarshalUpdateDNSZoneRecordsResponse: () => unmarshalUpdateDNSZoneRecordsResponse
77
+ });
78
+ export { index_gen_exports };