@opusdns/api 0.229.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/constants.ts +5 -1
- package/src/helpers/keys.ts +27 -0
- package/src/openapi.yaml +9 -1
- package/src/schema.d.ts +7 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3827,6 +3827,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
3827
3827
|
NOMINET_CO_NO: "NOMINET_CO_NO",
|
|
3828
3828
|
NOMINET_TRAD_NAME: "NOMINET_TRAD_NAME",
|
|
3829
3829
|
CIRA_CPR: "CIRA_CPR",
|
|
3830
|
+
SIDN_LEGAL_FORM: "SIDN_LEGAL_FORM",
|
|
3831
|
+
SIDN_LEGAL_REG_NO: "SIDN_LEGAL_REG_NO",
|
|
3830
3832
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
3831
3833
|
|
|
3832
3834
|
/**
|
|
@@ -3880,7 +3882,9 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
3880
3882
|
'NOMINET_CONTACT_TYPE',
|
|
3881
3883
|
'NOMINET_CO_NO',
|
|
3882
3884
|
'NOMINET_TRAD_NAME',
|
|
3883
|
-
'CIRA_CPR'
|
|
3885
|
+
'CIRA_CPR',
|
|
3886
|
+
'SIDN_LEGAL_FORM',
|
|
3887
|
+
'SIDN_LEGAL_REG_NO'
|
|
3884
3888
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
3885
3889
|
|
|
3886
3890
|
/**
|
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
|
@@ -8171,6 +8171,8 @@ components:
|
|
|
8171
8171
|
- NOMINET_CO_NO
|
|
8172
8172
|
- NOMINET_TRAD_NAME
|
|
8173
8173
|
- CIRA_CPR
|
|
8174
|
+
- SIDN_LEGAL_FORM
|
|
8175
|
+
- SIDN_LEGAL_REG_NO
|
|
8174
8176
|
title: RegistryHandleAttributeType
|
|
8175
8177
|
type: string
|
|
8176
8178
|
RegistryLockBase:
|
|
@@ -8746,6 +8748,12 @@ components:
|
|
|
8746
8748
|
description: Whether an auth info is required for transfers
|
|
8747
8749
|
title: Authinfo Required
|
|
8748
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
|
|
8749
8757
|
authinfo_time_limited:
|
|
8750
8758
|
anyOf:
|
|
8751
8759
|
- type: boolean
|
|
@@ -9662,7 +9670,7 @@ info:
|
|
|
9662
9670
|
'
|
|
9663
9671
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9664
9672
|
title: OpusDNS API
|
|
9665
|
-
version: 2026-
|
|
9673
|
+
version: 2026-04-01-073138
|
|
9666
9674
|
x-logo:
|
|
9667
9675
|
altText: OpusDNS API Reference
|
|
9668
9676
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7598,7 +7598,7 @@ export interface components {
|
|
|
7598
7598
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
7599
7599
|
* @enum {string}
|
|
7600
7600
|
*/
|
|
7601
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR";
|
|
7601
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO";
|
|
7602
7602
|
/** RegistryLockBase */
|
|
7603
7603
|
RegistryLockBase: {
|
|
7604
7604
|
/**
|
|
@@ -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
|