@opusdns/api 1.48.0 → 1.50.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 +6 -0
- package/src/openapi.yaml +10 -1
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1388,6 +1388,7 @@ export const PUBLIC_RESOURCE = {
|
|
|
1388
1388
|
TAGS: "tags",
|
|
1389
1389
|
AUDIT_LOGS: "audit_logs",
|
|
1390
1390
|
VANITY_NS: "vanity_ns",
|
|
1391
|
+
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
1391
1392
|
AI_CONCIERGE: "ai_concierge",
|
|
1392
1393
|
} as const satisfies Record<string, PublicResource>;
|
|
1393
1394
|
|
|
@@ -1409,6 +1410,7 @@ export const PUBLIC_RESOURCE_VALUES = [
|
|
|
1409
1410
|
'tags',
|
|
1410
1411
|
'audit_logs',
|
|
1411
1412
|
'vanity_ns',
|
|
1413
|
+
'whitelabel_branding',
|
|
1412
1414
|
'ai_concierge',
|
|
1413
1415
|
] as const satisfies ReadonlyArray<PublicResource>;
|
|
1414
1416
|
|
|
@@ -1508,6 +1510,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
1508
1510
|
SK_NIC_IDENT_VALUE: "SK_NIC_IDENT_VALUE",
|
|
1509
1511
|
NIC_LV_REG_NR: "NIC_LV_REG_NR",
|
|
1510
1512
|
NIC_LV_VAT_NR: "NIC_LV_VAT_NR",
|
|
1513
|
+
DOMREG_LT_CONTACT_ROLE: "DOMREG_LT_CONTACT_ROLE",
|
|
1514
|
+
DOMREG_LT_ORG_CODE: "DOMREG_LT_ORG_CODE",
|
|
1511
1515
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
1512
1516
|
|
|
1513
1517
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
@@ -1559,6 +1563,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
|
1559
1563
|
'SK_NIC_IDENT_VALUE',
|
|
1560
1564
|
'NIC_LV_REG_NR',
|
|
1561
1565
|
'NIC_LV_VAT_NR',
|
|
1566
|
+
'DOMREG_LT_CONTACT_ROLE',
|
|
1567
|
+
'DOMREG_LT_ORG_CODE',
|
|
1562
1568
|
] as const satisfies ReadonlyArray<RegistryHandleAttributeType>;
|
|
1563
1569
|
|
|
1564
1570
|
export const RENEWAL_MODE = {
|
package/src/openapi.yaml
CHANGED
|
@@ -11056,6 +11056,7 @@ components:
|
|
|
11056
11056
|
- tags
|
|
11057
11057
|
- audit_logs
|
|
11058
11058
|
- vanity_ns
|
|
11059
|
+
- whitelabel_branding
|
|
11059
11060
|
- ai_concierge
|
|
11060
11061
|
title: PublicResource
|
|
11061
11062
|
type: string
|
|
@@ -11410,6 +11411,8 @@ components:
|
|
|
11410
11411
|
- SK_NIC_IDENT_VALUE
|
|
11411
11412
|
- NIC_LV_REG_NR
|
|
11412
11413
|
- NIC_LV_VAT_NR
|
|
11414
|
+
- DOMREG_LT_CONTACT_ROLE
|
|
11415
|
+
- DOMREG_LT_ORG_CODE
|
|
11413
11416
|
title: RegistryHandleAttributeType
|
|
11414
11417
|
type: string
|
|
11415
11418
|
RegistryLockBase:
|
|
@@ -13854,7 +13857,7 @@ info:
|
|
|
13854
13857
|
\n\n"
|
|
13855
13858
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13856
13859
|
title: OpusDNS API
|
|
13857
|
-
version: 2026-07-
|
|
13860
|
+
version: 2026-07-10-154828
|
|
13858
13861
|
x-logo:
|
|
13859
13862
|
altText: OpusDNS API Reference
|
|
13860
13863
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -29892,6 +29895,11 @@ tags:
|
|
|
29892
29895
|
'
|
|
29893
29896
|
name: nameserver
|
|
29894
29897
|
x-displayName: Vanity Nameservers
|
|
29898
|
+
- description: 'Endpoints for managing an organization''s whitelabel branding configuration.
|
|
29899
|
+
|
|
29900
|
+
'
|
|
29901
|
+
name: whitelabel
|
|
29902
|
+
x-displayName: Whitelabel Branding
|
|
29895
29903
|
- description: 'Endpoints for creating and managing organizations.
|
|
29896
29904
|
|
|
29897
29905
|
'
|
|
@@ -30001,6 +30009,7 @@ x-tagGroups:
|
|
|
30001
30009
|
tags:
|
|
30002
30010
|
- dns
|
|
30003
30011
|
- nameserver
|
|
30012
|
+
- whitelabel
|
|
30004
30013
|
- email_forward
|
|
30005
30014
|
- domain_forward
|
|
30006
30015
|
- parking
|
package/src/schema.d.ts
CHANGED
|
@@ -10019,7 +10019,7 @@ export interface components {
|
|
|
10019
10019
|
* PublicResource
|
|
10020
10020
|
* @enum {string}
|
|
10021
10021
|
*/
|
|
10022
|
-
PublicResource: "organization" | "domains" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "ai_concierge";
|
|
10022
|
+
PublicResource: "organization" | "domains" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "whitelabel_branding" | "ai_concierge";
|
|
10023
10023
|
/**
|
|
10024
10024
|
* PublicRole
|
|
10025
10025
|
* @enum {string}
|
|
@@ -10205,7 +10205,7 @@ export interface components {
|
|
|
10205
10205
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
10206
10206
|
* @enum {string}
|
|
10207
10207
|
*/
|
|
10208
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "DE_GENERAL_REQUEST_URI_TEMPLATE" | "DE_ABUSE_URI_TEMPLATE" | "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" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE" | "NIC_LV_REG_NR" | "NIC_LV_VAT_NR";
|
|
10208
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "DE_GENERAL_REQUEST_URI_TEMPLATE" | "DE_ABUSE_URI_TEMPLATE" | "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" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE" | "NIC_LV_REG_NR" | "NIC_LV_VAT_NR" | "DOMREG_LT_CONTACT_ROLE" | "DOMREG_LT_ORG_CODE";
|
|
10209
10209
|
/** RegistryLockBase */
|
|
10210
10210
|
RegistryLockBase: {
|
|
10211
10211
|
/**
|