@opusdns/api 1.1.0 → 1.2.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 +11 -9
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -4859,11 +4859,13 @@ components:
|
|
|
4859
4859
|
description: Additional attributes of the domain
|
|
4860
4860
|
title: Attributes
|
|
4861
4861
|
auth_code:
|
|
4862
|
+
anyOf:
|
|
4863
|
+
- maxLength: 32
|
|
4864
|
+
minLength: 6
|
|
4865
|
+
type: string
|
|
4866
|
+
- type: 'null'
|
|
4862
4867
|
description: The auth code for the domain
|
|
4863
|
-
maxLength: 32
|
|
4864
|
-
minLength: 6
|
|
4865
4868
|
title: Auth Code
|
|
4866
|
-
type: string
|
|
4867
4869
|
contacts:
|
|
4868
4870
|
anyOf:
|
|
4869
4871
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -4906,7 +4908,6 @@ components:
|
|
|
4906
4908
|
- name
|
|
4907
4909
|
- contacts
|
|
4908
4910
|
- renewal_mode
|
|
4909
|
-
- auth_code
|
|
4910
4911
|
title: DomainTransferIn
|
|
4911
4912
|
type: object
|
|
4912
4913
|
DomainTransferPayloadData:
|
|
@@ -4922,11 +4923,13 @@ components:
|
|
|
4922
4923
|
description: Additional attributes of the domain
|
|
4923
4924
|
title: Attributes
|
|
4924
4925
|
auth_code:
|
|
4926
|
+
anyOf:
|
|
4927
|
+
- maxLength: 32
|
|
4928
|
+
minLength: 6
|
|
4929
|
+
type: string
|
|
4930
|
+
- type: 'null'
|
|
4925
4931
|
description: The auth code for the domain
|
|
4926
|
-
maxLength: 32
|
|
4927
|
-
minLength: 6
|
|
4928
4932
|
title: Auth Code
|
|
4929
|
-
type: string
|
|
4930
4933
|
contacts:
|
|
4931
4934
|
anyOf:
|
|
4932
4935
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -4969,7 +4972,6 @@ components:
|
|
|
4969
4972
|
- name
|
|
4970
4973
|
- contacts
|
|
4971
4974
|
- renewal_mode
|
|
4972
|
-
- auth_code
|
|
4973
4975
|
title: DomainTransferPayloadData
|
|
4974
4976
|
type: object
|
|
4975
4977
|
DomainTransferWorkerPayload:
|
|
@@ -11596,7 +11598,7 @@ info:
|
|
|
11596
11598
|
\n\n"
|
|
11597
11599
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11598
11600
|
title: OpusDNS API
|
|
11599
|
-
version: 2026-06-
|
|
11601
|
+
version: 2026-06-05-190914
|
|
11600
11602
|
x-logo:
|
|
11601
11603
|
altText: OpusDNS API Reference
|
|
11602
11604
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5669,7 +5669,7 @@ export interface components {
|
|
|
5669
5669
|
* Auth Code
|
|
5670
5670
|
* @description The auth code for the domain
|
|
5671
5671
|
*/
|
|
5672
|
-
auth_code
|
|
5672
|
+
auth_code?: string | null;
|
|
5673
5673
|
/**
|
|
5674
5674
|
* Contacts
|
|
5675
5675
|
* @description The contacts of the domain
|
|
@@ -5714,7 +5714,7 @@ export interface components {
|
|
|
5714
5714
|
* Auth Code
|
|
5715
5715
|
* @description The auth code for the domain
|
|
5716
5716
|
*/
|
|
5717
|
-
auth_code
|
|
5717
|
+
auth_code?: string | null;
|
|
5718
5718
|
/**
|
|
5719
5719
|
* Contacts
|
|
5720
5720
|
* @description The contacts of the domain
|