@opusdns/api 0.106.0 → 0.107.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
|
@@ -2738,6 +2738,7 @@ export const REGISTRANT_CHANGE_TYPE_VALUES = [
|
|
|
2738
2738
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
2739
2739
|
AT_EXT_CONTACT_TYPE: "at-ext-contact:type",
|
|
2740
2740
|
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
2741
|
+
DNSBE_TYPE: "dnsbe:type",
|
|
2741
2742
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
2742
2743
|
|
|
2743
2744
|
/**
|
|
@@ -2763,7 +2764,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2763
2764
|
*/
|
|
2764
2765
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
2765
2766
|
'at-ext-contact:type',
|
|
2766
|
-
'DE_CONTACT_TYPE'
|
|
2767
|
+
'DE_CONTACT_TYPE',
|
|
2768
|
+
'dnsbe:type'
|
|
2767
2769
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
2768
2770
|
|
|
2769
2771
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -4423,6 +4423,7 @@ components:
|
|
|
4423
4423
|
enum:
|
|
4424
4424
|
- at-ext-contact:type
|
|
4425
4425
|
- DE_CONTACT_TYPE
|
|
4426
|
+
- dnsbe:type
|
|
4426
4427
|
title: RegistryHandleAttributeType
|
|
4427
4428
|
type: string
|
|
4428
4429
|
RegistryLockBase:
|
|
@@ -5601,7 +5602,7 @@ info:
|
|
|
5601
5602
|
'
|
|
5602
5603
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5603
5604
|
title: OpusDNS API
|
|
5604
|
-
version: 2025-12-02-
|
|
5605
|
+
version: 2025-12-02-180143
|
|
5605
5606
|
x-logo:
|
|
5606
5607
|
altText: OpusDNS API Reference
|
|
5607
5608
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4308,7 +4308,7 @@ export interface components {
|
|
|
4308
4308
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
4309
4309
|
* @enum {string}
|
|
4310
4310
|
*/
|
|
4311
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE";
|
|
4311
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type";
|
|
4312
4312
|
/** RegistryLockBase */
|
|
4313
4313
|
RegistryLockBase: {
|
|
4314
4314
|
/**
|