@opusdns/api 0.106.0 → 0.108.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 +8 -3
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2738,6 +2738,7 @@ export const REGISTRANT_CHANGE_TYPE_VALUES = [
|
|
|
2738
2738
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
2739
2739
|
AT_EXT_CONTACT_TYPE: "at-ext-contact:type",
|
|
2740
2740
|
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
2741
|
+
DNSBE_TYPE: "dnsbe:type",
|
|
2741
2742
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
2742
2743
|
|
|
2743
2744
|
/**
|
|
@@ -2763,7 +2764,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2763
2764
|
*/
|
|
2764
2765
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
2765
2766
|
'at-ext-contact:type',
|
|
2766
|
-
'DE_CONTACT_TYPE'
|
|
2767
|
+
'DE_CONTACT_TYPE',
|
|
2768
|
+
'dnsbe:type'
|
|
2767
2769
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
2768
2770
|
|
|
2769
2771
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -4423,6 +4423,7 @@ components:
|
|
|
4423
4423
|
enum:
|
|
4424
4424
|
- at-ext-contact:type
|
|
4425
4425
|
- DE_CONTACT_TYPE
|
|
4426
|
+
- dnsbe:type
|
|
4426
4427
|
title: RegistryHandleAttributeType
|
|
4427
4428
|
type: string
|
|
4428
4429
|
RegistryLockBase:
|
|
@@ -5601,7 +5602,7 @@ info:
|
|
|
5601
5602
|
'
|
|
5602
5603
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5603
5604
|
title: OpusDNS API
|
|
5604
|
-
version: 2025-12-
|
|
5605
|
+
version: 2025-12-03-100606
|
|
5605
5606
|
x-logo:
|
|
5606
5607
|
altText: OpusDNS API Reference
|
|
5607
5608
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -8998,7 +8999,7 @@ paths:
|
|
|
8998
8999
|
summary: Withdraw a nic.at domain
|
|
8999
9000
|
tags:
|
|
9000
9001
|
- domain
|
|
9001
|
-
-
|
|
9002
|
+
- domain_tld_specific
|
|
9002
9003
|
/v1/domains/tld-specific/de/{domain_reference}/transit:
|
|
9003
9004
|
post:
|
|
9004
9005
|
operationId: transit_domain_v1_domains_tld_specific_de__domain_reference__transit_post
|
|
@@ -9053,7 +9054,7 @@ paths:
|
|
|
9053
9054
|
summary: Transit a DENIC domain
|
|
9054
9055
|
tags:
|
|
9055
9056
|
- domain
|
|
9056
|
-
-
|
|
9057
|
+
- domain_tld_specific
|
|
9057
9058
|
/v1/domains/transfer:
|
|
9058
9059
|
post:
|
|
9059
9060
|
description: 'Start the transfer process for a domain <br>
|
|
@@ -11999,6 +12000,9 @@ tags:
|
|
|
11999
12000
|
'
|
|
12000
12001
|
name: domain
|
|
12001
12002
|
x-displayName: Domain management
|
|
12003
|
+
- description: ''
|
|
12004
|
+
name: domain_tld_specific
|
|
12005
|
+
x-displayName: TLD specific domain management
|
|
12002
12006
|
- description: 'Endpoints for searching domains.
|
|
12003
12007
|
|
|
12004
12008
|
'
|
|
@@ -12053,6 +12057,7 @@ x-tagGroups:
|
|
|
12053
12057
|
- name: Domains
|
|
12054
12058
|
tags:
|
|
12055
12059
|
- domain
|
|
12060
|
+
- domain_tld_specific
|
|
12056
12061
|
- contact
|
|
12057
12062
|
- event
|
|
12058
12063
|
- availability
|
package/src/schema.d.ts
CHANGED
|
@@ -4308,7 +4308,7 @@ export interface components {
|
|
|
4308
4308
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
4309
4309
|
* @enum {string}
|
|
4310
4310
|
*/
|
|
4311
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE";
|
|
4311
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type";
|
|
4312
4312
|
/** RegistryLockBase */
|
|
4313
4313
|
RegistryLockBase: {
|
|
4314
4314
|
/**
|