@opusdns/api 1.18.0 → 1.19.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.
- package/package.json +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -582,6 +582,7 @@ export const DNSSEC_STATUS_VALUES = [
|
|
|
582
582
|
export const DOMAIN_ATTRIBUTE_KEY = {
|
|
583
583
|
AUTO_RENEW_PERIOD: "auto_renew_period",
|
|
584
584
|
MUSIC_REGISTRANT_ATTESTATION: "music_registrant_attestation",
|
|
585
|
+
NIC_IT_COMPLIANCE_CONFIRMATION: "nic_it_compliance_confirmation",
|
|
585
586
|
TRAVEL_INDUSTRY_ACKNOWLEDGEMENT: "travel_industry_acknowledgement",
|
|
586
587
|
VERIFICATION_REQUIRED: "verification_required",
|
|
587
588
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
@@ -589,6 +590,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
589
590
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
590
591
|
'auto_renew_period',
|
|
591
592
|
'music_registrant_attestation',
|
|
593
|
+
'nic_it_compliance_confirmation',
|
|
592
594
|
'travel_industry_acknowledgement',
|
|
593
595
|
'verification_required',
|
|
594
596
|
] as const satisfies ReadonlyArray<DomainAttributeKey>;
|
package/src/openapi.yaml
CHANGED
|
@@ -3182,6 +3182,7 @@ components:
|
|
|
3182
3182
|
enum:
|
|
3183
3183
|
- auto_renew_period
|
|
3184
3184
|
- music_registrant_attestation
|
|
3185
|
+
- nic_it_compliance_confirmation
|
|
3185
3186
|
- travel_industry_acknowledgement
|
|
3186
3187
|
- verification_required
|
|
3187
3188
|
title: DomainAttributeKey
|
|
@@ -12342,7 +12343,7 @@ info:
|
|
|
12342
12343
|
\n\n"
|
|
12343
12344
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
12344
12345
|
title: OpusDNS API
|
|
12345
|
-
version: 2026-06-17-
|
|
12346
|
+
version: 2026-06-17-220249
|
|
12346
12347
|
x-logo:
|
|
12347
12348
|
altText: OpusDNS API Reference
|
|
12348
12349
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4711,7 +4711,7 @@ export interface components {
|
|
|
4711
4711
|
* DomainAttributeKey
|
|
4712
4712
|
* @enum {string}
|
|
4713
4713
|
*/
|
|
4714
|
-
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "travel_industry_acknowledgement" | "verification_required";
|
|
4714
|
+
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required";
|
|
4715
4715
|
/** DomainAvailability */
|
|
4716
4716
|
DomainAvailability: {
|
|
4717
4717
|
/** Domain */
|