@opusdns/api 0.303.0 → 0.304.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 +3 -1
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1316,6 +1316,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
1316
1316
|
AUTO_RENEW_PERIOD: "auto_renew_period",
|
|
1317
1317
|
MUSIC_REGISTRANT_ATTESTATION: "music_registrant_attestation",
|
|
1318
1318
|
TRAVEL_INDUSTRY_ACKNOWLEDGEMENT: "travel_industry_acknowledgement",
|
|
1319
|
+
VERIFICATION_REQUIRED: "verification_required",
|
|
1319
1320
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
1320
1321
|
|
|
1321
1322
|
/**
|
|
@@ -1342,7 +1343,8 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
1342
1343
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
1343
1344
|
'auto_renew_period',
|
|
1344
1345
|
'music_registrant_attestation',
|
|
1345
|
-
'travel_industry_acknowledgement'
|
|
1346
|
+
'travel_industry_acknowledgement',
|
|
1347
|
+
'verification_required'
|
|
1346
1348
|
] as const satisfies [string, ...string[]] | DomainAttributeKey[];
|
|
1347
1349
|
|
|
1348
1350
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -2911,6 +2911,7 @@ components:
|
|
|
2911
2911
|
- auto_renew_period
|
|
2912
2912
|
- music_registrant_attestation
|
|
2913
2913
|
- travel_industry_acknowledgement
|
|
2914
|
+
- verification_required
|
|
2914
2915
|
title: DomainAttributeKey
|
|
2915
2916
|
type: string
|
|
2916
2917
|
DomainAvailability:
|
|
@@ -11345,7 +11346,7 @@ info:
|
|
|
11345
11346
|
\n\n"
|
|
11346
11347
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11347
11348
|
title: OpusDNS API
|
|
11348
|
-
version: 2026-05-18-
|
|
11349
|
+
version: 2026-05-18-133136
|
|
11349
11350
|
x-logo:
|
|
11350
11351
|
altText: OpusDNS API Reference
|
|
11351
11352
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4424,7 +4424,7 @@ export interface components {
|
|
|
4424
4424
|
* DomainAttributeKey
|
|
4425
4425
|
* @enum {string}
|
|
4426
4426
|
*/
|
|
4427
|
-
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "travel_industry_acknowledgement";
|
|
4427
|
+
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "travel_industry_acknowledgement" | "verification_required";
|
|
4428
4428
|
/** DomainAvailability */
|
|
4429
4429
|
DomainAvailability: {
|
|
4430
4430
|
/** Domain */
|