@opusdns/api 0.272.0 → 0.273.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/keys.ts +52 -0
- package/src/openapi.yaml +17 -1
- package/src/schema.d.ts +10 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -10943,6 +10943,31 @@ export const KEY_DOMAIN_CREATE_ATTRIBUTES: keyof DomainCreate = 'attributes';
|
|
|
10943
10943
|
* @see {@link KEYS_DOMAIN_CREATE} - Array of all keys for this type
|
|
10944
10944
|
*/
|
|
10945
10945
|
export const KEY_DOMAIN_CREATE_AUTH_CODE: keyof DomainCreate = 'auth_code';
|
|
10946
|
+
/**
|
|
10947
|
+
* The accept_hash of the related claims notice
|
|
10948
|
+
*
|
|
10949
|
+
* During the claims phase domain names that match a trademark registered in the Trademark Clearinghouse require an acceptance by the registrant.
|
|
10950
|
+
*
|
|
10951
|
+
*
|
|
10952
|
+
*
|
|
10953
|
+
* @remarks
|
|
10954
|
+
* This key constant provides type-safe access to the `claims_notice_acceptance_hash` property of DomainCreate objects.
|
|
10955
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10956
|
+
*
|
|
10957
|
+
* @example
|
|
10958
|
+
* ```typescript
|
|
10959
|
+
* // Direct property access
|
|
10960
|
+
* const value = domaincreate[KEY_DOMAIN_CREATE_CLAIMS_NOTICE_ACCEPTANCE_HASH];
|
|
10961
|
+
*
|
|
10962
|
+
* // Dynamic property access
|
|
10963
|
+
* const propertyName = KEY_DOMAIN_CREATE_CLAIMS_NOTICE_ACCEPTANCE_HASH;
|
|
10964
|
+
* const value = domaincreate[propertyName];
|
|
10965
|
+
* ```
|
|
10966
|
+
*
|
|
10967
|
+
* @see {@link DomainCreate} - The TypeScript type definition
|
|
10968
|
+
* @see {@link KEYS_DOMAIN_CREATE} - Array of all keys for this type
|
|
10969
|
+
*/
|
|
10970
|
+
export const KEY_DOMAIN_CREATE_CLAIMS_NOTICE_ACCEPTANCE_HASH: keyof DomainCreate = 'claims_notice_acceptance_hash';
|
|
10946
10971
|
/**
|
|
10947
10972
|
* Contacts
|
|
10948
10973
|
*
|
|
@@ -11144,6 +11169,7 @@ export const KEY_DOMAIN_CREATE_RENEWAL_MODE: keyof DomainCreate = 'renewal_mode'
|
|
|
11144
11169
|
export const KEYS_DOMAIN_CREATE = [
|
|
11145
11170
|
KEY_DOMAIN_CREATE_ATTRIBUTES,
|
|
11146
11171
|
KEY_DOMAIN_CREATE_AUTH_CODE,
|
|
11172
|
+
KEY_DOMAIN_CREATE_CLAIMS_NOTICE_ACCEPTANCE_HASH,
|
|
11147
11173
|
KEY_DOMAIN_CREATE_CONTACTS,
|
|
11148
11174
|
KEY_DOMAIN_CREATE_CREATE_ZONE,
|
|
11149
11175
|
KEY_DOMAIN_CREATE_EXPECTED_PRICE,
|
|
@@ -11926,6 +11952,31 @@ export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_ATTRIBUTES: keyof DomainCreatePayloa
|
|
|
11926
11952
|
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11927
11953
|
*/
|
|
11928
11954
|
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE: keyof DomainCreatePayloadData = 'auth_code';
|
|
11955
|
+
/**
|
|
11956
|
+
* The accept_hash of the related claims notice
|
|
11957
|
+
*
|
|
11958
|
+
* During the claims phase domain names that match a trademark registered in the Trademark Clearinghouse require an acceptance by the registrant.
|
|
11959
|
+
*
|
|
11960
|
+
*
|
|
11961
|
+
*
|
|
11962
|
+
* @remarks
|
|
11963
|
+
* This key constant provides type-safe access to the `claims_notice_acceptance_hash` property of DomainCreatePayloadData objects.
|
|
11964
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11965
|
+
*
|
|
11966
|
+
* @example
|
|
11967
|
+
* ```typescript
|
|
11968
|
+
* // Direct property access
|
|
11969
|
+
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_CLAIMS_NOTICE_ACCEPTANCE_HASH];
|
|
11970
|
+
*
|
|
11971
|
+
* // Dynamic property access
|
|
11972
|
+
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_CLAIMS_NOTICE_ACCEPTANCE_HASH;
|
|
11973
|
+
* const value = domaincreatepayloaddata[propertyName];
|
|
11974
|
+
* ```
|
|
11975
|
+
*
|
|
11976
|
+
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11977
|
+
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11978
|
+
*/
|
|
11979
|
+
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_CLAIMS_NOTICE_ACCEPTANCE_HASH: keyof DomainCreatePayloadData = 'claims_notice_acceptance_hash';
|
|
11929
11980
|
/**
|
|
11930
11981
|
* Contacts
|
|
11931
11982
|
*
|
|
@@ -12127,6 +12178,7 @@ export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_RENEWAL_MODE: keyof DomainCreatePayl
|
|
|
12127
12178
|
export const KEYS_DOMAIN_CREATE_PAYLOAD_DATA = [
|
|
12128
12179
|
KEY_DOMAIN_CREATE_PAYLOAD_DATA_ATTRIBUTES,
|
|
12129
12180
|
KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE,
|
|
12181
|
+
KEY_DOMAIN_CREATE_PAYLOAD_DATA_CLAIMS_NOTICE_ACCEPTANCE_HASH,
|
|
12130
12182
|
KEY_DOMAIN_CREATE_PAYLOAD_DATA_CONTACTS,
|
|
12131
12183
|
KEY_DOMAIN_CREATE_PAYLOAD_DATA_CREATE_ZONE,
|
|
12132
12184
|
KEY_DOMAIN_CREATE_PAYLOAD_DATA_EXPECTED_PRICE,
|
package/src/openapi.yaml
CHANGED
|
@@ -2629,6 +2629,14 @@ components:
|
|
|
2629
2629
|
- type: 'null'
|
|
2630
2630
|
description: The auth code used for the domain
|
|
2631
2631
|
title: Auth Code
|
|
2632
|
+
claims_notice_acceptance_hash:
|
|
2633
|
+
anyOf:
|
|
2634
|
+
- type: string
|
|
2635
|
+
- type: 'null'
|
|
2636
|
+
description: During the claims phase domain names that match a trademark
|
|
2637
|
+
registered in the Trademark Clearinghouse require an acceptance by the
|
|
2638
|
+
registrant.
|
|
2639
|
+
title: The accept_hash of the related claims notice
|
|
2632
2640
|
contacts:
|
|
2633
2641
|
anyOf:
|
|
2634
2642
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -2849,6 +2857,14 @@ components:
|
|
|
2849
2857
|
- type: 'null'
|
|
2850
2858
|
description: The auth code used for the domain
|
|
2851
2859
|
title: Auth Code
|
|
2860
|
+
claims_notice_acceptance_hash:
|
|
2861
|
+
anyOf:
|
|
2862
|
+
- type: string
|
|
2863
|
+
- type: 'null'
|
|
2864
|
+
description: During the claims phase domain names that match a trademark
|
|
2865
|
+
registered in the Trademark Clearinghouse require an acceptance by the
|
|
2866
|
+
registrant.
|
|
2867
|
+
title: The accept_hash of the related claims notice
|
|
2852
2868
|
contacts:
|
|
2853
2869
|
anyOf:
|
|
2854
2870
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -10153,7 +10169,7 @@ info:
|
|
|
10153
10169
|
\n\n"
|
|
10154
10170
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10155
10171
|
title: OpusDNS API
|
|
10156
|
-
version: 2026-04-27-
|
|
10172
|
+
version: 2026-04-27-175347
|
|
10157
10173
|
x-logo:
|
|
10158
10174
|
altText: OpusDNS API Reference
|
|
10159
10175
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4011,6 +4011,11 @@ export interface components {
|
|
|
4011
4011
|
* @description The auth code used for the domain
|
|
4012
4012
|
*/
|
|
4013
4013
|
auth_code?: string | null;
|
|
4014
|
+
/**
|
|
4015
|
+
* The accept_hash of the related claims notice
|
|
4016
|
+
* @description During the claims phase domain names that match a trademark registered in the Trademark Clearinghouse require an acceptance by the registrant.
|
|
4017
|
+
*/
|
|
4018
|
+
claims_notice_acceptance_hash?: string | null;
|
|
4014
4019
|
/**
|
|
4015
4020
|
* Contacts
|
|
4016
4021
|
* @description The contacts of the domain
|
|
@@ -4168,6 +4173,11 @@ export interface components {
|
|
|
4168
4173
|
* @description The auth code used for the domain
|
|
4169
4174
|
*/
|
|
4170
4175
|
auth_code?: string | null;
|
|
4176
|
+
/**
|
|
4177
|
+
* The accept_hash of the related claims notice
|
|
4178
|
+
* @description During the claims phase domain names that match a trademark registered in the Trademark Clearinghouse require an acceptance by the registrant.
|
|
4179
|
+
*/
|
|
4180
|
+
claims_notice_acceptance_hash?: string | null;
|
|
4171
4181
|
/**
|
|
4172
4182
|
* Contacts
|
|
4173
4183
|
* @description The contacts of the domain
|