@opusdns/api 0.119.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
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
|
/**
|
|
@@ -1669,7 +1669,7 @@ export type PATCH_DomainForwardsHostnameDisable_Request_Path = PATCH_DomainForwa
|
|
|
1669
1669
|
* Request type for PATCH DomainForwardsHostnameEnable endpoint
|
|
1670
1670
|
*
|
|
1671
1671
|
* Enable domain forward
|
|
1672
|
-
* Enables domain forwarding by creating necessary DNS records
|
|
1672
|
+
* Enables domain forwarding by creating necessary DNS records
|
|
1673
1673
|
*
|
|
1674
1674
|
* @remarks
|
|
1675
1675
|
* This type defines the complete request structure for the PATCH DomainForwardsHostnameEnable endpoint.
|
|
@@ -3435,7 +3435,7 @@ export type PATCH_DomainForwardsByHostnameDisable_Response_422 = HTTPValidationE
|
|
|
3435
3435
|
* Response types for PATCH DomainForwardsByHostnameEnable endpoint
|
|
3436
3436
|
*
|
|
3437
3437
|
* Enable domain forward
|
|
3438
|
-
* Enables domain forwarding by creating necessary DNS records
|
|
3438
|
+
* Enables domain forwarding by creating necessary DNS records
|
|
3439
3439
|
*
|
|
3440
3440
|
* @remarks
|
|
3441
3441
|
* This type defines all possible response structures for the PATCH DomainForwardsByHostnameEnable endpoint.
|
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
|
|
@@ -9162,8 +9163,7 @@ paths:
|
|
|
9162
9163
|
- domain_forward
|
|
9163
9164
|
/v1/domain-forwards/{hostname}/enable:
|
|
9164
9165
|
patch:
|
|
9165
|
-
description: Enables domain forwarding by creating necessary DNS records
|
|
9166
|
-
auto-creates the zone and domain forward if they don't exist.
|
|
9166
|
+
description: Enables domain forwarding by creating necessary DNS records
|
|
9167
9167
|
operationId: enable_domain_forward_v1_domain_forwards__hostname__enable_patch
|
|
9168
9168
|
parameters:
|
|
9169
9169
|
- description: Hostname
|
package/src/schema.d.ts
CHANGED
|
@@ -549,7 +549,7 @@ export interface paths {
|
|
|
549
549
|
head?: never;
|
|
550
550
|
/**
|
|
551
551
|
* Enable domain forward
|
|
552
|
-
* @description Enables domain forwarding by creating necessary DNS records
|
|
552
|
+
* @description Enables domain forwarding by creating necessary DNS records
|
|
553
553
|
*/
|
|
554
554
|
patch: operations["enable_domain_forward_v1_domain_forwards__hostname__enable_patch"];
|
|
555
555
|
trace?: never;
|
|
@@ -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
|
/**
|