@opusdns/api 0.257.0 → 0.258.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 +26 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -38842,6 +38842,31 @@ export const KEYS_DOMAIN_AVAILABILITY_LIST = [
|
|
|
38842
38842
|
* @see {@link KEYS_DOMAIN_AVAILABILITY_CHECK} - Array of all keys for this type
|
|
38843
38843
|
*/
|
|
38844
38844
|
export const KEY_DOMAIN_AVAILABILITY_CHECK_AVAILABLE: keyof DomainAvailabilityCheck = 'available';
|
|
38845
|
+
/**
|
|
38846
|
+
* Claim Key
|
|
38847
|
+
*
|
|
38848
|
+
* Claim key, if trademark notice acceptance is required
|
|
38849
|
+
*
|
|
38850
|
+
*
|
|
38851
|
+
*
|
|
38852
|
+
* @remarks
|
|
38853
|
+
* This key constant provides type-safe access to the `claim_key` property of DomainAvailabilityCheck objects.
|
|
38854
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
38855
|
+
*
|
|
38856
|
+
* @example
|
|
38857
|
+
* ```typescript
|
|
38858
|
+
* // Direct property access
|
|
38859
|
+
* const value = domainavailabilitycheck[KEY_DOMAIN_AVAILABILITY_CHECK_CLAIM_KEY];
|
|
38860
|
+
*
|
|
38861
|
+
* // Dynamic property access
|
|
38862
|
+
* const propertyName = KEY_DOMAIN_AVAILABILITY_CHECK_CLAIM_KEY;
|
|
38863
|
+
* const value = domainavailabilitycheck[propertyName];
|
|
38864
|
+
* ```
|
|
38865
|
+
*
|
|
38866
|
+
* @see {@link DomainAvailabilityCheck} - The TypeScript type definition
|
|
38867
|
+
* @see {@link KEYS_DOMAIN_AVAILABILITY_CHECK} - Array of all keys for this type
|
|
38868
|
+
*/
|
|
38869
|
+
export const KEY_DOMAIN_AVAILABILITY_CHECK_CLAIM_KEY: keyof DomainAvailabilityCheck = 'claim_key';
|
|
38845
38870
|
/**
|
|
38846
38871
|
* Domain
|
|
38847
38872
|
*
|
|
@@ -38966,6 +38991,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_REASON: keyof DomainAvailabilityCheck
|
|
|
38966
38991
|
*/
|
|
38967
38992
|
export const KEYS_DOMAIN_AVAILABILITY_CHECK = [
|
|
38968
38993
|
KEY_DOMAIN_AVAILABILITY_CHECK_AVAILABLE,
|
|
38994
|
+
KEY_DOMAIN_AVAILABILITY_CHECK_CLAIM_KEY,
|
|
38969
38995
|
KEY_DOMAIN_AVAILABILITY_CHECK_DOMAIN,
|
|
38970
38996
|
KEY_DOMAIN_AVAILABILITY_CHECK_IS_PREMIUM,
|
|
38971
38997
|
KEY_DOMAIN_AVAILABILITY_CHECK_PREMIUM_PRICING,
|
package/src/openapi.yaml
CHANGED
|
@@ -9765,6 +9765,12 @@ components:
|
|
|
9765
9765
|
available:
|
|
9766
9766
|
title: Available
|
|
9767
9767
|
type: boolean
|
|
9768
|
+
claim_key:
|
|
9769
|
+
anyOf:
|
|
9770
|
+
- type: string
|
|
9771
|
+
- type: 'null'
|
|
9772
|
+
description: Claim key, if trademark notice acceptance is required
|
|
9773
|
+
title: Claim Key
|
|
9768
9774
|
domain:
|
|
9769
9775
|
description: The domain name
|
|
9770
9776
|
examples:
|
|
@@ -9863,7 +9869,7 @@ info:
|
|
|
9863
9869
|
\n\n"
|
|
9864
9870
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9865
9871
|
title: OpusDNS API
|
|
9866
|
-
version: 2026-04-
|
|
9872
|
+
version: 2026-04-21-115243
|
|
9867
9873
|
x-logo:
|
|
9868
9874
|
altText: OpusDNS API Reference
|
|
9869
9875
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -8721,6 +8721,11 @@ export interface components {
|
|
|
8721
8721
|
common__models__domain__domain__DomainAvailabilityResponse: {
|
|
8722
8722
|
/** Available */
|
|
8723
8723
|
available: boolean;
|
|
8724
|
+
/**
|
|
8725
|
+
* Claim Key
|
|
8726
|
+
* @description Claim key, if trademark notice acceptance is required
|
|
8727
|
+
*/
|
|
8728
|
+
claim_key?: string | null;
|
|
8724
8729
|
/**
|
|
8725
8730
|
* Domain
|
|
8726
8731
|
* @description The domain name
|