@opusdns/api 0.51.0 → 0.52.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 +3 -2
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2084,6 +2084,7 @@ export const REGISTRANT_CHANGE_TYPE_VALUES = [
|
|
|
2084
2084
|
*/
|
|
2085
2085
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
2086
2086
|
AT_EXT_CONTACT_TYPE: "at-ext-contact:type",
|
|
2087
|
+
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
2087
2088
|
} as const satisfies Record<string, RegistryHandleAttributeType>;
|
|
2088
2089
|
|
|
2089
2090
|
/**
|
|
@@ -2108,7 +2109,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
2108
2109
|
* @see {@link REGISTRY_HANDLE_ATTRIBUTE_TYPE} - The object form of this enum
|
|
2109
2110
|
*/
|
|
2110
2111
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
2111
|
-
'at-ext-contact:type'
|
|
2112
|
+
'at-ext-contact:type',
|
|
2113
|
+
'DE_CONTACT_TYPE'
|
|
2112
2114
|
] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
|
|
2113
2115
|
|
|
2114
2116
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -245,7 +245,7 @@ components:
|
|
|
245
245
|
attributes:
|
|
246
246
|
anyOf:
|
|
247
247
|
- additionalProperties:
|
|
248
|
-
|
|
248
|
+
type: string
|
|
249
249
|
propertyNames:
|
|
250
250
|
$ref: '#/components/schemas/RegistryHandleAttributeType'
|
|
251
251
|
type: object
|
|
@@ -3980,6 +3980,7 @@ components:
|
|
|
3980
3980
|
description: Registry handle attribute types for type-safe attribute key access.
|
|
3981
3981
|
enum:
|
|
3982
3982
|
- at-ext-contact:type
|
|
3983
|
+
- DE_CONTACT_TYPE
|
|
3983
3984
|
title: RegistryHandleAttributeType
|
|
3984
3985
|
type: string
|
|
3985
3986
|
RegistryLockBase:
|
|
@@ -5334,7 +5335,7 @@ info:
|
|
|
5334
5335
|
'
|
|
5335
5336
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5336
5337
|
title: OpusDNS API
|
|
5337
|
-
version: 2025-09-18-
|
|
5338
|
+
version: 2025-09-18-131050
|
|
5338
5339
|
x-logo:
|
|
5339
5340
|
altText: OpusDNS API Reference
|
|
5340
5341
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1394,7 +1394,7 @@ export interface components {
|
|
|
1394
1394
|
* @description Additional attributes related to the contact
|
|
1395
1395
|
*/
|
|
1396
1396
|
attributes?: {
|
|
1397
|
-
[key: string]:
|
|
1397
|
+
[key: string]: string;
|
|
1398
1398
|
} | null;
|
|
1399
1399
|
/**
|
|
1400
1400
|
* Contact Id
|
|
@@ -3853,7 +3853,7 @@ export interface components {
|
|
|
3853
3853
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
3854
3854
|
* @enum {string}
|
|
3855
3855
|
*/
|
|
3856
|
-
RegistryHandleAttributeType: "at-ext-contact:type";
|
|
3856
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE";
|
|
3857
3857
|
/** RegistryLockBase */
|
|
3858
3858
|
RegistryLockBase: {
|
|
3859
3859
|
/**
|