@opusdns/api 0.156.0 → 0.157.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 +0 -27
- package/src/openapi.yaml +1 -6
- package/src/schema.d.ts +0 -6
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -9504,32 +9504,6 @@ export const KEYS_DOMAIN = [
|
|
|
9504
9504
|
* @see {@link KEYS_DOMAIN_RESTORE_REQUEST} - Array of all keys for this type
|
|
9505
9505
|
*/
|
|
9506
9506
|
export const KEY_DOMAIN_RESTORE_REQUEST_ADDITIONAL_INFO: keyof DomainRestoreRequest = 'additional_info';
|
|
9507
|
-
/**
|
|
9508
|
-
* Auto Renew
|
|
9509
|
-
*
|
|
9510
|
-
* Whether to automatically renew the domain after restore
|
|
9511
|
-
*
|
|
9512
|
-
* @type {boolean}
|
|
9513
|
-
*
|
|
9514
|
-
*
|
|
9515
|
-
* @remarks
|
|
9516
|
-
* This key constant provides type-safe access to the `auto_renew` property of DomainRestoreRequest objects.
|
|
9517
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
9518
|
-
*
|
|
9519
|
-
* @example
|
|
9520
|
-
* ```typescript
|
|
9521
|
-
* // Direct property access
|
|
9522
|
-
* const value = domainrestorerequest[KEY_DOMAIN_RESTORE_REQUEST_AUTO_RENEW];
|
|
9523
|
-
*
|
|
9524
|
-
* // Dynamic property access
|
|
9525
|
-
* const propertyName = KEY_DOMAIN_RESTORE_REQUEST_AUTO_RENEW;
|
|
9526
|
-
* const value = domainrestorerequest[propertyName];
|
|
9527
|
-
* ```
|
|
9528
|
-
*
|
|
9529
|
-
* @see {@link DomainRestoreRequest} - The TypeScript type definition
|
|
9530
|
-
* @see {@link KEYS_DOMAIN_RESTORE_REQUEST} - Array of all keys for this type
|
|
9531
|
-
*/
|
|
9532
|
-
export const KEY_DOMAIN_RESTORE_REQUEST_AUTO_RENEW: keyof DomainRestoreRequest = 'auto_renew';
|
|
9533
9507
|
/**
|
|
9534
9508
|
* Reason
|
|
9535
9509
|
*
|
|
@@ -9578,7 +9552,6 @@ export const KEY_DOMAIN_RESTORE_REQUEST_REASON: keyof DomainRestoreRequest = 're
|
|
|
9578
9552
|
*/
|
|
9579
9553
|
export const KEYS_DOMAIN_RESTORE_REQUEST = [
|
|
9580
9554
|
KEY_DOMAIN_RESTORE_REQUEST_ADDITIONAL_INFO,
|
|
9581
|
-
KEY_DOMAIN_RESTORE_REQUEST_AUTO_RENEW,
|
|
9582
9555
|
KEY_DOMAIN_RESTORE_REQUEST_REASON,
|
|
9583
9556
|
] as const satisfies (keyof DomainRestoreRequest)[];
|
|
9584
9557
|
|
package/src/openapi.yaml
CHANGED
|
@@ -2259,11 +2259,6 @@ components:
|
|
|
2259
2259
|
- type: 'null'
|
|
2260
2260
|
description: Additional information to include in the restore operation
|
|
2261
2261
|
title: Additional Info
|
|
2262
|
-
auto_renew:
|
|
2263
|
-
default: true
|
|
2264
|
-
description: Whether to automatically renew the domain after restore
|
|
2265
|
-
title: Auto Renew
|
|
2266
|
-
type: boolean
|
|
2267
2262
|
reason:
|
|
2268
2263
|
anyOf:
|
|
2269
2264
|
- type: string
|
|
@@ -6544,7 +6539,7 @@ info:
|
|
|
6544
6539
|
'
|
|
6545
6540
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6546
6541
|
title: OpusDNS API
|
|
6547
|
-
version: 2026-01-
|
|
6542
|
+
version: 2026-01-14-103335
|
|
6548
6543
|
x-logo:
|
|
6549
6544
|
altText: OpusDNS API Reference
|
|
6550
6545
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3230,12 +3230,6 @@ export interface components {
|
|
|
3230
3230
|
* @description Additional information to include in the restore operation
|
|
3231
3231
|
*/
|
|
3232
3232
|
additional_info?: string | null;
|
|
3233
|
-
/**
|
|
3234
|
-
* Auto Renew
|
|
3235
|
-
* @description Whether to automatically renew the domain after restore
|
|
3236
|
-
* @default true
|
|
3237
|
-
*/
|
|
3238
|
-
auto_renew: boolean;
|
|
3239
3233
|
/**
|
|
3240
3234
|
* Reason
|
|
3241
3235
|
* @description Reason for restoring the domain
|