@opusdns/api 0.280.0 → 0.281.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
|
@@ -1263,6 +1263,7 @@ export const DNSSEC_STATUS_VALUES = [
|
|
|
1263
1263
|
export const DOMAIN_ATTRIBUTE_KEY = {
|
|
1264
1264
|
AUTO_RENEW_PERIOD: "auto_renew_period",
|
|
1265
1265
|
MUSIC_REGISTRANT_ATTESTATION: "music_registrant_attestation",
|
|
1266
|
+
TRAVEL_INDUSTRY_ACKNOWLEDGEMENT: "travel_industry_acknowledgement",
|
|
1266
1267
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
1267
1268
|
|
|
1268
1269
|
/**
|
|
@@ -1288,7 +1289,8 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
1288
1289
|
*/
|
|
1289
1290
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
1290
1291
|
'auto_renew_period',
|
|
1291
|
-
'music_registrant_attestation'
|
|
1292
|
+
'music_registrant_attestation',
|
|
1293
|
+
'travel_industry_acknowledgement'
|
|
1292
1294
|
] as const satisfies [string, ...string[]] | DomainAttributeKey[];
|
|
1293
1295
|
|
|
1294
1296
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -2561,6 +2561,7 @@ components:
|
|
|
2561
2561
|
enum:
|
|
2562
2562
|
- auto_renew_period
|
|
2563
2563
|
- music_registrant_attestation
|
|
2564
|
+
- travel_industry_acknowledgement
|
|
2564
2565
|
title: DomainAttributeKey
|
|
2565
2566
|
type: string
|
|
2566
2567
|
DomainAvailability:
|
|
@@ -10278,7 +10279,7 @@ info:
|
|
|
10278
10279
|
\n\n"
|
|
10279
10280
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10280
10281
|
title: OpusDNS API
|
|
10281
|
-
version: 2026-04-30-
|
|
10282
|
+
version: 2026-04-30-152802
|
|
10282
10283
|
x-logo:
|
|
10283
10284
|
altText: OpusDNS API Reference
|
|
10284
10285
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3983,7 +3983,7 @@ export interface components {
|
|
|
3983
3983
|
* DomainAttributeKey
|
|
3984
3984
|
* @enum {string}
|
|
3985
3985
|
*/
|
|
3986
|
-
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation";
|
|
3986
|
+
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "travel_industry_acknowledgement";
|
|
3987
3987
|
/** DomainAvailability */
|
|
3988
3988
|
DomainAvailability: {
|
|
3989
3989
|
/** Domain */
|