@opusdns/api 0.302.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 +4 -6
- package/src/openapi.yaml +2 -3
- package/src/schema.d.ts +2 -2
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
|
/**
|
|
@@ -3165,8 +3167,6 @@ export const MESSAGE_CONTEXT_KIND = {
|
|
|
3165
3167
|
ZONES: "zones",
|
|
3166
3168
|
CONTACTS: "contacts",
|
|
3167
3169
|
DOMAINS: "domains",
|
|
3168
|
-
BATCH_IDS: "batch_ids",
|
|
3169
|
-
OTHER: "other",
|
|
3170
3170
|
} as const satisfies Record<string, MessageContextKind>;
|
|
3171
3171
|
|
|
3172
3172
|
/**
|
|
@@ -3193,9 +3193,7 @@ export const MESSAGE_CONTEXT_KIND = {
|
|
|
3193
3193
|
export const MESSAGE_CONTEXT_KIND_VALUES = [
|
|
3194
3194
|
'zones',
|
|
3195
3195
|
'contacts',
|
|
3196
|
-
'domains'
|
|
3197
|
-
'batch_ids',
|
|
3198
|
-
'other'
|
|
3196
|
+
'domains'
|
|
3199
3197
|
] as const satisfies [string, ...string[]] | MessageContextKind[];
|
|
3200
3198
|
|
|
3201
3199
|
/**
|
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:
|
|
@@ -7024,8 +7025,6 @@ components:
|
|
|
7024
7025
|
- zones
|
|
7025
7026
|
- contacts
|
|
7026
7027
|
- domains
|
|
7027
|
-
- batch_ids
|
|
7028
|
-
- other
|
|
7029
7028
|
title: MessageContextKind
|
|
7030
7029
|
type: string
|
|
7031
7030
|
MessageCreateRequest:
|
|
@@ -11347,7 +11346,7 @@ info:
|
|
|
11347
11346
|
\n\n"
|
|
11348
11347
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11349
11348
|
title: OpusDNS API
|
|
11350
|
-
version: 2026-05-
|
|
11349
|
+
version: 2026-05-18-133136
|
|
11351
11350
|
x-logo:
|
|
11352
11351
|
altText: OpusDNS API Reference
|
|
11353
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 */
|
|
@@ -7139,7 +7139,7 @@ export interface components {
|
|
|
7139
7139
|
* MessageContextKind
|
|
7140
7140
|
* @enum {string}
|
|
7141
7141
|
*/
|
|
7142
|
-
MessageContextKind: "zones" | "contacts" | "domains"
|
|
7142
|
+
MessageContextKind: "zones" | "contacts" | "domains";
|
|
7143
7143
|
/** MessageCreateRequest */
|
|
7144
7144
|
MessageCreateRequest: {
|
|
7145
7145
|
/** Content */
|