@opusdns/api 0.165.0 → 0.167.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 +30 -3
- package/src/openapi.yaml +15 -4
- package/src/schema.d.ts +9 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -1298,7 +1298,7 @@ export const KEY_CONTACT_CREATE_COUNTRY: keyof ContactCreate = 'country';
|
|
|
1298
1298
|
/**
|
|
1299
1299
|
* Disclose
|
|
1300
1300
|
*
|
|
1301
|
-
* Whether the contact should be disclosed
|
|
1301
|
+
* Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
1302
1302
|
*
|
|
1303
1303
|
* @type {boolean}
|
|
1304
1304
|
*
|
|
@@ -1746,7 +1746,7 @@ export const KEY_CONTACT_COUNTRY: keyof Contact = 'country';
|
|
|
1746
1746
|
/**
|
|
1747
1747
|
* Disclose
|
|
1748
1748
|
*
|
|
1749
|
-
* Whether the contact should be disclosed
|
|
1749
|
+
* Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
1750
1750
|
*
|
|
1751
1751
|
* @type {boolean}
|
|
1752
1752
|
*
|
|
@@ -2270,7 +2270,7 @@ export const KEY_CONTACT_SCHEMA_DELETED_ON: keyof ContactSchema = 'deleted_on';
|
|
|
2270
2270
|
/**
|
|
2271
2271
|
* Disclose
|
|
2272
2272
|
*
|
|
2273
|
-
* Whether the contact should be disclosed
|
|
2273
|
+
* Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
2274
2274
|
*
|
|
2275
2275
|
* @type {boolean}
|
|
2276
2276
|
*
|
|
@@ -22208,6 +22208,32 @@ export const KEY_TLD_SPECIFICATION_LAUNCH_PHASES: keyof TldSpecification = 'laun
|
|
|
22208
22208
|
* @see {@link KEYS_TLD_SPECIFICATION} - Array of all keys for this type
|
|
22209
22209
|
*/
|
|
22210
22210
|
export const KEY_TLD_SPECIFICATION_LOCAL_PRESENCE: keyof TldSpecification = 'local_presence';
|
|
22211
|
+
/**
|
|
22212
|
+
* Parking Enabled
|
|
22213
|
+
*
|
|
22214
|
+
* Whether parking is enabled for this TLD
|
|
22215
|
+
*
|
|
22216
|
+
* @type {boolean}
|
|
22217
|
+
*
|
|
22218
|
+
*
|
|
22219
|
+
* @remarks
|
|
22220
|
+
* This key constant provides type-safe access to the `parking_enabled` property of TldSpecification objects.
|
|
22221
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
22222
|
+
*
|
|
22223
|
+
* @example
|
|
22224
|
+
* ```typescript
|
|
22225
|
+
* // Direct property access
|
|
22226
|
+
* const value = tldspecification[KEY_TLD_SPECIFICATION_PARKING_ENABLED];
|
|
22227
|
+
*
|
|
22228
|
+
* // Dynamic property access
|
|
22229
|
+
* const propertyName = KEY_TLD_SPECIFICATION_PARKING_ENABLED;
|
|
22230
|
+
* const value = tldspecification[propertyName];
|
|
22231
|
+
* ```
|
|
22232
|
+
*
|
|
22233
|
+
* @see {@link TldSpecification} - The TypeScript type definition
|
|
22234
|
+
* @see {@link KEYS_TLD_SPECIFICATION} - Array of all keys for this type
|
|
22235
|
+
*/
|
|
22236
|
+
export const KEY_TLD_SPECIFICATION_PARKING_ENABLED: keyof TldSpecification = 'parking_enabled';
|
|
22211
22237
|
/**
|
|
22212
22238
|
* premium_domains property
|
|
22213
22239
|
*
|
|
@@ -22414,6 +22440,7 @@ export const KEYS_TLD_SPECIFICATION = [
|
|
|
22414
22440
|
KEY_TLD_SPECIFICATION_IDN,
|
|
22415
22441
|
KEY_TLD_SPECIFICATION_LAUNCH_PHASES,
|
|
22416
22442
|
KEY_TLD_SPECIFICATION_LOCAL_PRESENCE,
|
|
22443
|
+
KEY_TLD_SPECIFICATION_PARKING_ENABLED,
|
|
22417
22444
|
KEY_TLD_SPECIFICATION_PREMIUM_DOMAINS,
|
|
22418
22445
|
KEY_TLD_SPECIFICATION_RDAP,
|
|
22419
22446
|
KEY_TLD_SPECIFICATION_REGISTRY_LOCK,
|
package/src/openapi.yaml
CHANGED
|
@@ -287,7 +287,9 @@ components:
|
|
|
287
287
|
title: Country
|
|
288
288
|
type: string
|
|
289
289
|
disclose:
|
|
290
|
-
description: Whether the contact should be disclosed
|
|
290
|
+
description: Whether the contact details should be disclosed. The Disclose
|
|
291
|
+
function may not work with all TLDs. Some registries still display the
|
|
292
|
+
data in Whois if, for example, the organization field is filled in.
|
|
291
293
|
title: Disclose
|
|
292
294
|
type: boolean
|
|
293
295
|
email:
|
|
@@ -412,7 +414,9 @@ components:
|
|
|
412
414
|
title: Country
|
|
413
415
|
type: string
|
|
414
416
|
disclose:
|
|
415
|
-
description: Whether the contact should be disclosed
|
|
417
|
+
description: Whether the contact details should be disclosed. The Disclose
|
|
418
|
+
function may not work with all TLDs. Some registries still display the
|
|
419
|
+
data in Whois if, for example, the organization field is filled in.
|
|
416
420
|
title: Disclose
|
|
417
421
|
type: boolean
|
|
418
422
|
email:
|
|
@@ -537,7 +541,9 @@ components:
|
|
|
537
541
|
description: The date/time the entry was deleted on
|
|
538
542
|
title: Deleted On
|
|
539
543
|
disclose:
|
|
540
|
-
description: Whether the contact should be disclosed
|
|
544
|
+
description: Whether the contact details should be disclosed. The Disclose
|
|
545
|
+
function may not work with all TLDs. Some registries still display the
|
|
546
|
+
data in Whois if, for example, the organization field is filled in.
|
|
541
547
|
title: Disclose
|
|
542
548
|
type: boolean
|
|
543
549
|
email:
|
|
@@ -5744,6 +5750,11 @@ components:
|
|
|
5744
5750
|
- $ref: '#/components/schemas/LocalPresenceBase'
|
|
5745
5751
|
- type: 'null'
|
|
5746
5752
|
description: Local presence requirements
|
|
5753
|
+
parking_enabled:
|
|
5754
|
+
default: false
|
|
5755
|
+
description: Whether parking is enabled for this TLD
|
|
5756
|
+
title: Parking Enabled
|
|
5757
|
+
type: boolean
|
|
5747
5758
|
premium_domains:
|
|
5748
5759
|
anyOf:
|
|
5749
5760
|
- $ref: '#/components/schemas/PremiumDomainsBase'
|
|
@@ -6813,7 +6824,7 @@ info:
|
|
|
6813
6824
|
'
|
|
6814
6825
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6815
6826
|
title: OpusDNS API
|
|
6816
|
-
version: 2026-01-
|
|
6827
|
+
version: 2026-01-22-170829
|
|
6817
6828
|
x-logo:
|
|
6818
6829
|
altText: OpusDNS API Reference
|
|
6819
6830
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1992,7 +1992,7 @@ export interface components {
|
|
|
1992
1992
|
country: string;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* Disclose
|
|
1995
|
-
* @description Whether the contact should be disclosed
|
|
1995
|
+
* @description Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
1996
1996
|
*/
|
|
1997
1997
|
disclose: boolean;
|
|
1998
1998
|
/**
|
|
@@ -2084,7 +2084,7 @@ export interface components {
|
|
|
2084
2084
|
country: string;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* Disclose
|
|
2087
|
-
* @description Whether the contact should be disclosed
|
|
2087
|
+
* @description Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
2088
2088
|
*/
|
|
2089
2089
|
disclose: boolean;
|
|
2090
2090
|
/**
|
|
@@ -2185,7 +2185,7 @@ export interface components {
|
|
|
2185
2185
|
deleted_on?: Date | null;
|
|
2186
2186
|
/**
|
|
2187
2187
|
* Disclose
|
|
2188
|
-
* @description Whether the contact should be disclosed
|
|
2188
|
+
* @description Whether the contact details should be disclosed. The Disclose function may not work with all TLDs. Some registries still display the data in Whois if, for example, the organization field is filled in.
|
|
2189
2189
|
*/
|
|
2190
2190
|
disclose: boolean;
|
|
2191
2191
|
/**
|
|
@@ -5577,6 +5577,12 @@ export interface components {
|
|
|
5577
5577
|
launch_phases?: components["schemas"]["LaunchPhasesBase"] | null;
|
|
5578
5578
|
/** @description Local presence requirements */
|
|
5579
5579
|
local_presence?: components["schemas"]["LocalPresenceBase"] | null;
|
|
5580
|
+
/**
|
|
5581
|
+
* Parking Enabled
|
|
5582
|
+
* @description Whether parking is enabled for this TLD
|
|
5583
|
+
* @default false
|
|
5584
|
+
*/
|
|
5585
|
+
parking_enabled: boolean;
|
|
5580
5586
|
/** @description Premium domains configuration */
|
|
5581
5587
|
premium_domains?: components["schemas"]["PremiumDomainsBase"] | null;
|
|
5582
5588
|
/** @description RDAP configuration */
|