@opusdns/api 1.41.0 → 1.42.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/openapi.yaml +3 -2
- package/src/schema.d.ts +2 -1
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -5592,6 +5592,8 @@ components:
|
|
|
5592
5592
|
title: Attributes
|
|
5593
5593
|
contacts:
|
|
5594
5594
|
$ref: '#/components/schemas/DomainContactHandles'
|
|
5595
|
+
description: The contacts of the domain. Optional for transfers when all
|
|
5596
|
+
supported contact roles have a minimum of 0 in the TLD specification.
|
|
5595
5597
|
create_zone:
|
|
5596
5598
|
default: false
|
|
5597
5599
|
description: Create a zone on OpusDNS nameserver infrastructure
|
|
@@ -5614,7 +5616,6 @@ components:
|
|
|
5614
5616
|
$ref: '#/components/schemas/RenewalMode'
|
|
5615
5617
|
description: The renewal mode of the domain
|
|
5616
5618
|
required:
|
|
5617
|
-
- contacts
|
|
5618
5619
|
- renewal_mode
|
|
5619
5620
|
title: DomainTransferBulkTemplate
|
|
5620
5621
|
type: object
|
|
@@ -13805,7 +13806,7 @@ info:
|
|
|
13805
13806
|
\n\n"
|
|
13806
13807
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13807
13808
|
title: OpusDNS API
|
|
13808
|
-
version: 2026-06-
|
|
13809
|
+
version: 2026-06-30-085121
|
|
13809
13810
|
x-logo:
|
|
13810
13811
|
altText: OpusDNS API Reference
|
|
13811
13812
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6365,7 +6365,8 @@ export interface components {
|
|
|
6365
6365
|
attributes?: {
|
|
6366
6366
|
[key: string]: string;
|
|
6367
6367
|
} | null;
|
|
6368
|
-
contacts
|
|
6368
|
+
/** @description The contacts of the domain. Optional for transfers when all supported contact roles have a minimum of 0 in the TLD specification. */
|
|
6369
|
+
contacts?: components["schemas"]["DomainContactHandles"];
|
|
6369
6370
|
/**
|
|
6370
6371
|
* Create Zone
|
|
6371
6372
|
* @description Create a zone on OpusDNS nameserver infrastructure
|