@opusdns/api 1.154.0 → 1.155.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/keys.ts +2 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -5530,6 +5530,7 @@ export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_REQUIRED = 'authinfo_required'
|
|
|
5530
5530
|
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR = 'authinfo_set_by_registrar' satisfies keyof TransferPoliciesBase;
|
|
5531
5531
|
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_TIME_LIMITED = 'authinfo_time_limited' satisfies keyof TransferPoliciesBase;
|
|
5532
5532
|
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_VALIDITY_PERIOD = 'authinfo_validity_period' satisfies keyof TransferPoliciesBase;
|
|
5533
|
+
export const KEY_TRANSFER_POLICIES_BASE_CONTACTS_IN_TRANSFER_COMMAND = 'contacts_in_transfer_command' satisfies keyof TransferPoliciesBase;
|
|
5533
5534
|
export const KEY_TRANSFER_POLICIES_BASE_INFO_CONTACT_AUTHINFO = 'info_contact_authinfo' satisfies keyof TransferPoliciesBase;
|
|
5534
5535
|
export const KEY_TRANSFER_POLICIES_BASE_INFO_DOMAIN_AUTHINFO = 'info_domain_authinfo' satisfies keyof TransferPoliciesBase;
|
|
5535
5536
|
export const KEY_TRANSFER_POLICIES_BASE_POST_TRANSFER_REQUIREMENTS = 'post_transfer_requirements' satisfies keyof TransferPoliciesBase;
|
|
@@ -5549,6 +5550,7 @@ export const KEYS_TRANSFER_POLICIES_BASE = [
|
|
|
5549
5550
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR,
|
|
5550
5551
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_TIME_LIMITED,
|
|
5551
5552
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_VALIDITY_PERIOD,
|
|
5553
|
+
KEY_TRANSFER_POLICIES_BASE_CONTACTS_IN_TRANSFER_COMMAND,
|
|
5552
5554
|
KEY_TRANSFER_POLICIES_BASE_INFO_CONTACT_AUTHINFO,
|
|
5553
5555
|
KEY_TRANSFER_POLICIES_BASE_INFO_DOMAIN_AUTHINFO,
|
|
5554
5556
|
KEY_TRANSFER_POLICIES_BASE_POST_TRANSFER_REQUIREMENTS,
|
package/src/openapi.yaml
CHANGED
|
@@ -13964,6 +13964,12 @@ components:
|
|
|
13964
13964
|
- type: 'null'
|
|
13965
13965
|
description: Validity period of the auth info (e.g., '5D' for 5 days)
|
|
13966
13966
|
title: Authinfo Validity Period
|
|
13967
|
+
contacts_in_transfer_command:
|
|
13968
|
+
default: false
|
|
13969
|
+
description: Whether the registry takes the domain contacts on the transfer
|
|
13970
|
+
command itself
|
|
13971
|
+
title: Contacts In Transfer Command
|
|
13972
|
+
type: boolean
|
|
13967
13973
|
info_contact_authinfo:
|
|
13968
13974
|
anyOf:
|
|
13969
13975
|
- type: boolean
|
|
@@ -16170,7 +16176,7 @@ info:
|
|
|
16170
16176
|
\n\n"
|
|
16171
16177
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16172
16178
|
title: OpusDNS API
|
|
16173
|
-
version: 2026-09-
|
|
16179
|
+
version: 2026-09-04-155853
|
|
16174
16180
|
x-logo:
|
|
16175
16181
|
altText: OpusDNS API Reference
|
|
16176
16182
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -12296,6 +12296,12 @@ export interface components {
|
|
|
12296
12296
|
* @description Validity period of the auth info (e.g., '5D' for 5 days)
|
|
12297
12297
|
*/
|
|
12298
12298
|
authinfo_validity_period?: string | null;
|
|
12299
|
+
/**
|
|
12300
|
+
* Contacts In Transfer Command
|
|
12301
|
+
* @description Whether the registry takes the domain contacts on the transfer command itself
|
|
12302
|
+
* @default false
|
|
12303
|
+
*/
|
|
12304
|
+
contacts_in_transfer_command: boolean;
|
|
12299
12305
|
/**
|
|
12300
12306
|
* Info Contact Authinfo
|
|
12301
12307
|
* @description Whether querying a foreign contact with authinfo is possible
|