@opusdns/api 0.173.0 → 0.174.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 +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3208,6 +3208,7 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
3208
3208
|
ROTLD_CONTACT_TYPE: "ROTLD_CONTACT_TYPE",
|
|
3209
3209
|
ROTLD_FISCAL_CODE: "ROTLD_FISCAL_CODE",
|
|
3210
3210
|
ROTLD_REGISTRATION_NUMBER: "ROTLD_REGISTRATION_NUMBER",
|
|
3211
|
+
ROTLD_DOMAIN_NAME: "ROTLD_DOMAIN_NAME",
|
|
3211
3212
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
3212
3213
|
|
|
3213
3214
|
/**
|
|
@@ -3255,7 +3256,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
3255
3256
|
'AFNIC_RESTRICTED_PUBLICATION',
|
|
3256
3257
|
'ROTLD_CONTACT_TYPE',
|
|
3257
3258
|
'ROTLD_FISCAL_CODE',
|
|
3258
|
-
'ROTLD_REGISTRATION_NUMBER'
|
|
3259
|
+
'ROTLD_REGISTRATION_NUMBER',
|
|
3260
|
+
'ROTLD_DOMAIN_NAME'
|
|
3259
3261
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
3260
3262
|
|
|
3261
3263
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -5470,6 +5470,7 @@ components:
|
|
|
5470
5470
|
- ROTLD_CONTACT_TYPE
|
|
5471
5471
|
- ROTLD_FISCAL_CODE
|
|
5472
5472
|
- ROTLD_REGISTRATION_NUMBER
|
|
5473
|
+
- ROTLD_DOMAIN_NAME
|
|
5473
5474
|
title: RegistryHandleAttributeType
|
|
5474
5475
|
type: string
|
|
5475
5476
|
RegistryLockBase:
|
|
@@ -6920,7 +6921,7 @@ info:
|
|
|
6920
6921
|
'
|
|
6921
6922
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6922
6923
|
title: OpusDNS API
|
|
6923
|
-
version: 2026-01-27-
|
|
6924
|
+
version: 2026-01-27-214713
|
|
6924
6925
|
x-logo:
|
|
6925
6926
|
altText: OpusDNS API Reference
|
|
6926
6927
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5451,7 +5451,7 @@ export interface components {
|
|
|
5451
5451
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
5452
5452
|
* @enum {string}
|
|
5453
5453
|
*/
|
|
5454
|
-
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_FISCAL_CODE" | "ROTLD_REGISTRATION_NUMBER";
|
|
5454
|
+
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_FISCAL_CODE" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME";
|
|
5455
5455
|
/** RegistryLockBase */
|
|
5456
5456
|
RegistryLockBase: {
|
|
5457
5457
|
/**
|