@opusdns/api 0.162.0 → 0.163.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 +7 -1
- package/src/openapi.yaml +4 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3203,6 +3203,9 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
3203
3203
|
AFNIC_REACHABLE_MEDIA: "AFNIC_REACHABLE_MEDIA",
|
|
3204
3204
|
AFNIC_REACHABLE_STATUS: "AFNIC_REACHABLE_STATUS",
|
|
3205
3205
|
AFNIC_RESTRICTED_PUBLICATION: "AFNIC_RESTRICTED_PUBLICATION",
|
|
3206
|
+
ROTLD_CONTACT_TYPE: "ROTLD_CONTACT_TYPE",
|
|
3207
|
+
ROTLD_FISCAL_CODE: "ROTLD_FISCAL_CODE",
|
|
3208
|
+
ROTLD_REGISTRATION_NUMBER: "ROTLD_REGISTRATION_NUMBER",
|
|
3206
3209
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
3207
3210
|
|
|
3208
3211
|
/**
|
|
@@ -3247,7 +3250,10 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
3247
3250
|
'AFNIC_ID_STATUS',
|
|
3248
3251
|
'AFNIC_REACHABLE_MEDIA',
|
|
3249
3252
|
'AFNIC_REACHABLE_STATUS',
|
|
3250
|
-
'AFNIC_RESTRICTED_PUBLICATION'
|
|
3253
|
+
'AFNIC_RESTRICTED_PUBLICATION',
|
|
3254
|
+
'ROTLD_CONTACT_TYPE',
|
|
3255
|
+
'ROTLD_FISCAL_CODE',
|
|
3256
|
+
'ROTLD_REGISTRATION_NUMBER'
|
|
3251
3257
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
3252
3258
|
|
|
3253
3259
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -5302,6 +5302,9 @@ components:
|
|
|
5302
5302
|
- AFNIC_REACHABLE_MEDIA
|
|
5303
5303
|
- AFNIC_REACHABLE_STATUS
|
|
5304
5304
|
- AFNIC_RESTRICTED_PUBLICATION
|
|
5305
|
+
- ROTLD_CONTACT_TYPE
|
|
5306
|
+
- ROTLD_FISCAL_CODE
|
|
5307
|
+
- ROTLD_REGISTRATION_NUMBER
|
|
5305
5308
|
title: RegistryHandleAttributeType
|
|
5306
5309
|
type: string
|
|
5307
5310
|
RegistryLockBase:
|
|
@@ -6747,7 +6750,7 @@ info:
|
|
|
6747
6750
|
'
|
|
6748
6751
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6749
6752
|
title: OpusDNS API
|
|
6750
|
-
version: 2026-01-20-
|
|
6753
|
+
version: 2026-01-20-175334
|
|
6751
6754
|
x-logo:
|
|
6752
6755
|
altText: OpusDNS API Reference
|
|
6753
6756
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5243,7 +5243,7 @@ export interface components {
|
|
|
5243
5243
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
5244
5244
|
* @enum {string}
|
|
5245
5245
|
*/
|
|
5246
|
-
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";
|
|
5246
|
+
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";
|
|
5247
5247
|
/** RegistryLockBase */
|
|
5248
5248
|
RegistryLockBase: {
|
|
5249
5249
|
/**
|