@opusdns/api 0.276.0 → 0.277.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 +7 -7
- package/src/openapi.yaml +4 -4
- package/src/schema.d.ts +3 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -39846,30 +39846,30 @@ export const KEYS_DOMAIN_AVAILABILITY_LIST = [
|
|
|
39846
39846
|
*/
|
|
39847
39847
|
export const KEY_DOMAIN_AVAILABILITY_CHECK_AVAILABLE: keyof DomainAvailabilityCheck = 'available';
|
|
39848
39848
|
/**
|
|
39849
|
-
*
|
|
39849
|
+
* Claims Key
|
|
39850
39850
|
*
|
|
39851
|
-
*
|
|
39851
|
+
* Claims key, if claims notice acceptance is required
|
|
39852
39852
|
*
|
|
39853
39853
|
*
|
|
39854
39854
|
*
|
|
39855
39855
|
* @remarks
|
|
39856
|
-
* This key constant provides type-safe access to the `
|
|
39856
|
+
* This key constant provides type-safe access to the `claims_key` property of DomainAvailabilityCheck objects.
|
|
39857
39857
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
39858
39858
|
*
|
|
39859
39859
|
* @example
|
|
39860
39860
|
* ```typescript
|
|
39861
39861
|
* // Direct property access
|
|
39862
|
-
* const value = domainavailabilitycheck[
|
|
39862
|
+
* const value = domainavailabilitycheck[KEY_DOMAIN_AVAILABILITY_CHECK_CLAIMS_KEY];
|
|
39863
39863
|
*
|
|
39864
39864
|
* // Dynamic property access
|
|
39865
|
-
* const propertyName =
|
|
39865
|
+
* const propertyName = KEY_DOMAIN_AVAILABILITY_CHECK_CLAIMS_KEY;
|
|
39866
39866
|
* const value = domainavailabilitycheck[propertyName];
|
|
39867
39867
|
* ```
|
|
39868
39868
|
*
|
|
39869
39869
|
* @see {@link DomainAvailabilityCheck} - The TypeScript type definition
|
|
39870
39870
|
* @see {@link KEYS_DOMAIN_AVAILABILITY_CHECK} - Array of all keys for this type
|
|
39871
39871
|
*/
|
|
39872
|
-
export const
|
|
39872
|
+
export const KEY_DOMAIN_AVAILABILITY_CHECK_CLAIMS_KEY: keyof DomainAvailabilityCheck = 'claims_key';
|
|
39873
39873
|
/**
|
|
39874
39874
|
* Domain
|
|
39875
39875
|
*
|
|
@@ -39994,7 +39994,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_REASON: keyof DomainAvailabilityCheck
|
|
|
39994
39994
|
*/
|
|
39995
39995
|
export const KEYS_DOMAIN_AVAILABILITY_CHECK = [
|
|
39996
39996
|
KEY_DOMAIN_AVAILABILITY_CHECK_AVAILABLE,
|
|
39997
|
-
|
|
39997
|
+
KEY_DOMAIN_AVAILABILITY_CHECK_CLAIMS_KEY,
|
|
39998
39998
|
KEY_DOMAIN_AVAILABILITY_CHECK_DOMAIN,
|
|
39999
39999
|
KEY_DOMAIN_AVAILABILITY_CHECK_IS_PREMIUM,
|
|
40000
40000
|
KEY_DOMAIN_AVAILABILITY_CHECK_PREMIUM_PRICING,
|
package/src/openapi.yaml
CHANGED
|
@@ -10108,12 +10108,12 @@ components:
|
|
|
10108
10108
|
available:
|
|
10109
10109
|
title: Available
|
|
10110
10110
|
type: boolean
|
|
10111
|
-
|
|
10111
|
+
claims_key:
|
|
10112
10112
|
anyOf:
|
|
10113
10113
|
- type: string
|
|
10114
10114
|
- type: 'null'
|
|
10115
|
-
description:
|
|
10116
|
-
title:
|
|
10115
|
+
description: Claims key, if claims notice acceptance is required
|
|
10116
|
+
title: Claims Key
|
|
10117
10117
|
domain:
|
|
10118
10118
|
description: The domain name
|
|
10119
10119
|
examples:
|
|
@@ -10212,7 +10212,7 @@ info:
|
|
|
10212
10212
|
\n\n"
|
|
10213
10213
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10214
10214
|
title: OpusDNS API
|
|
10215
|
-
version: 2026-04-
|
|
10215
|
+
version: 2026-04-29-122519
|
|
10216
10216
|
x-logo:
|
|
10217
10217
|
altText: OpusDNS API Reference
|
|
10218
10218
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -9038,10 +9038,10 @@ export interface components {
|
|
|
9038
9038
|
/** Available */
|
|
9039
9039
|
available: boolean;
|
|
9040
9040
|
/**
|
|
9041
|
-
*
|
|
9042
|
-
* @description
|
|
9041
|
+
* Claims Key
|
|
9042
|
+
* @description Claims key, if claims notice acceptance is required
|
|
9043
9043
|
*/
|
|
9044
|
-
|
|
9044
|
+
claims_key?: string | null;
|
|
9045
9045
|
/**
|
|
9046
9046
|
* Domain
|
|
9047
9047
|
* @description The domain name
|