@opusdns/api 0.230.0 → 0.231.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 +27 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -34909,6 +34909,32 @@ export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN: keyof TransferPolicies
|
|
|
34909
34909
|
* @see {@link KEYS_TRANSFER_POLICIES_BASE} - Array of all keys for this type
|
|
34910
34910
|
*/
|
|
34911
34911
|
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_REQUIRED: keyof TransferPoliciesBase = 'authinfo_required';
|
|
34912
|
+
/**
|
|
34913
|
+
* Authinfo Set By Registrar
|
|
34914
|
+
*
|
|
34915
|
+
* Whether the registrar can set the auth info, or whether the registry controls it
|
|
34916
|
+
*
|
|
34917
|
+
* @type {boolean}
|
|
34918
|
+
*
|
|
34919
|
+
*
|
|
34920
|
+
* @remarks
|
|
34921
|
+
* This key constant provides type-safe access to the `authinfo_set_by_registrar` property of TransferPoliciesBase objects.
|
|
34922
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
34923
|
+
*
|
|
34924
|
+
* @example
|
|
34925
|
+
* ```typescript
|
|
34926
|
+
* // Direct property access
|
|
34927
|
+
* const value = transferpoliciesbase[KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR];
|
|
34928
|
+
*
|
|
34929
|
+
* // Dynamic property access
|
|
34930
|
+
* const propertyName = KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR;
|
|
34931
|
+
* const value = transferpoliciesbase[propertyName];
|
|
34932
|
+
* ```
|
|
34933
|
+
*
|
|
34934
|
+
* @see {@link TransferPoliciesBase} - The TypeScript type definition
|
|
34935
|
+
* @see {@link KEYS_TRANSFER_POLICIES_BASE} - Array of all keys for this type
|
|
34936
|
+
*/
|
|
34937
|
+
export const KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR: keyof TransferPoliciesBase = 'authinfo_set_by_registrar';
|
|
34912
34938
|
/**
|
|
34913
34939
|
* Authinfo Time Limited
|
|
34914
34940
|
*
|
|
@@ -35235,6 +35261,7 @@ export const KEYS_TRANSFER_POLICIES_BASE = [
|
|
|
35235
35261
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_MIN_LENGTH,
|
|
35236
35262
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_PATTERN,
|
|
35237
35263
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_REQUIRED,
|
|
35264
|
+
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_SET_BY_REGISTRAR,
|
|
35238
35265
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_TIME_LIMITED,
|
|
35239
35266
|
KEY_TRANSFER_POLICIES_BASE_AUTHINFO_VALIDITY_PERIOD,
|
|
35240
35267
|
KEY_TRANSFER_POLICIES_BASE_INFO_CONTACT_AUTHINFO,
|
package/src/openapi.yaml
CHANGED
|
@@ -8748,6 +8748,12 @@ components:
|
|
|
8748
8748
|
description: Whether an auth info is required for transfers
|
|
8749
8749
|
title: Authinfo Required
|
|
8750
8750
|
type: boolean
|
|
8751
|
+
authinfo_set_by_registrar:
|
|
8752
|
+
default: true
|
|
8753
|
+
description: Whether the registrar can set the auth info, or whether the
|
|
8754
|
+
registry controls it
|
|
8755
|
+
title: Authinfo Set By Registrar
|
|
8756
|
+
type: boolean
|
|
8751
8757
|
authinfo_time_limited:
|
|
8752
8758
|
anyOf:
|
|
8753
8759
|
- type: boolean
|
|
@@ -9664,7 +9670,7 @@ info:
|
|
|
9664
9670
|
'
|
|
9665
9671
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9666
9672
|
title: OpusDNS API
|
|
9667
|
-
version: 2026-04-01-
|
|
9673
|
+
version: 2026-04-01-073138
|
|
9668
9674
|
x-logo:
|
|
9669
9675
|
altText: OpusDNS API Reference
|
|
9670
9676
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7987,6 +7987,12 @@ export interface components {
|
|
|
7987
7987
|
* @description Whether an auth info is required for transfers
|
|
7988
7988
|
*/
|
|
7989
7989
|
authinfo_required: boolean;
|
|
7990
|
+
/**
|
|
7991
|
+
* Authinfo Set By Registrar
|
|
7992
|
+
* @description Whether the registrar can set the auth info, or whether the registry controls it
|
|
7993
|
+
* @default true
|
|
7994
|
+
*/
|
|
7995
|
+
authinfo_set_by_registrar: boolean;
|
|
7990
7996
|
/**
|
|
7991
7997
|
* Authinfo Time Limited
|
|
7992
7998
|
* @description Whether an auth info has a time limit
|