@opusdns/api 0.120.0 → 0.121.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
|
@@ -2909,6 +2909,7 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2909
2909
|
AT_EXT_CONTACT_TYPE: "at-ext-contact:type",
|
|
2910
2910
|
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
2911
2911
|
DNSBE_TYPE: "dnsbe:type",
|
|
2912
|
+
EURID_TYPE: "eurid:type",
|
|
2912
2913
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
2913
2914
|
|
|
2914
2915
|
/**
|
|
@@ -2935,7 +2936,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2935
2936
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
2936
2937
|
'at-ext-contact:type',
|
|
2937
2938
|
'DE_CONTACT_TYPE',
|
|
2938
|
-
'dnsbe:type'
|
|
2939
|
+
'dnsbe:type',
|
|
2940
|
+
'eurid:type'
|
|
2939
2941
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
2940
2942
|
|
|
2941
2943
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -4723,6 +4723,7 @@ components:
|
|
|
4723
4723
|
- at-ext-contact:type
|
|
4724
4724
|
- DE_CONTACT_TYPE
|
|
4725
4725
|
- dnsbe:type
|
|
4726
|
+
- eurid:type
|
|
4726
4727
|
title: RegistryHandleAttributeType
|
|
4727
4728
|
type: string
|
|
4728
4729
|
RegistryLockBase:
|
|
@@ -5922,7 +5923,7 @@ info:
|
|
|
5922
5923
|
'
|
|
5923
5924
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5924
5925
|
title: OpusDNS API
|
|
5925
|
-
version: 2025-12-10-
|
|
5926
|
+
version: 2025-12-10-161650
|
|
5926
5927
|
x-logo:
|
|
5927
5928
|
altText: OpusDNS API Reference
|
|
5928
5929
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4690,7 +4690,7 @@ export interface components {
|
|
|
4690
4690
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
4691
4691
|
* @enum {string}
|
|
4692
4692
|
*/
|
|
4693
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type";
|
|
4693
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type";
|
|
4694
4694
|
/** RegistryLockBase */
|
|
4695
4695
|
RegistryLockBase: {
|
|
4696
4696
|
/**
|