@opusdns/api 0.320.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 +2 -2
- package/src/helpers/constants.ts +420 -4430
- package/src/helpers/index.ts +3 -18
- package/src/helpers/keys.ts +2067 -42959
- package/src/helpers/requests.d.ts +752 -7216
- package/src/helpers/responses.d.ts +994 -14360
- package/src/helpers/schemas.d.ts +0 -6741
- package/src/openapi.yaml +12 -9
- package/src/schema.d.ts +3 -3
- package/src/helpers/schemas-arrays.d.ts +0 -1775
- package/src/types/constants.ts +0 -490
- package/src/types/index.ts +0 -10
- package/src/types/keys.ts +0 -2713
- package/src/types/types.ts +0 -643
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:
|
|
@@ -5988,6 +5990,7 @@ components:
|
|
|
5988
5990
|
- VANITY_NS_PROVISION
|
|
5989
5991
|
- VANITY_NS_SUSPENSION
|
|
5990
5992
|
- VANITY_NS_RESTORATION
|
|
5993
|
+
- VANITY_NS_TERMINATION
|
|
5991
5994
|
title: EventType
|
|
5992
5995
|
type: string
|
|
5993
5996
|
EventVersion:
|
|
@@ -11595,7 +11598,7 @@ info:
|
|
|
11595
11598
|
\n\n"
|
|
11596
11599
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11597
11600
|
title: OpusDNS API
|
|
11598
|
-
version: 2026-06-
|
|
11601
|
+
version: 2026-06-05-190914
|
|
11599
11602
|
x-logo:
|
|
11600
11603
|
altText: OpusDNS API Reference
|
|
11601
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
|
|
@@ -6440,7 +6440,7 @@ export interface components {
|
|
|
6440
6440
|
* EventType
|
|
6441
6441
|
* @enum {string}
|
|
6442
6442
|
*/
|
|
6443
|
-
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE" | "VANITY_NS_PROVISION" | "VANITY_NS_SUSPENSION" | "VANITY_NS_RESTORATION";
|
|
6443
|
+
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION" | "BALANCE" | "VANITY_NS_PROVISION" | "VANITY_NS_SUSPENSION" | "VANITY_NS_RESTORATION" | "VANITY_NS_TERMINATION";
|
|
6444
6444
|
/**
|
|
6445
6445
|
* EventVersion
|
|
6446
6446
|
* @enum {string}
|