@opusdns/api 0.155.0 → 0.156.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 -7
- package/src/schema.d.ts +0 -6
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -9608,32 +9608,6 @@ export const KEYS_DOMAIN_RESTORE_REQUEST = [
|
|
|
9608
9608
|
* @see {@link KEYS_DOMAIN_RESTORE} - Array of all keys for this type
|
|
9609
9609
|
*/
|
|
9610
9610
|
export const KEY_DOMAIN_RESTORE_DOMAIN_ID: keyof DomainRestore = 'domain_id';
|
|
9611
|
-
/**
|
|
9612
|
-
* Expiration Date
|
|
9613
|
-
*
|
|
9614
|
-
* The new expiration date after restore
|
|
9615
|
-
*
|
|
9616
|
-
* @type {string}
|
|
9617
|
-
*
|
|
9618
|
-
*
|
|
9619
|
-
* @remarks
|
|
9620
|
-
* This key constant provides type-safe access to the `expiration_date` property of DomainRestore objects.
|
|
9621
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
9622
|
-
*
|
|
9623
|
-
* @example
|
|
9624
|
-
* ```typescript
|
|
9625
|
-
* // Direct property access
|
|
9626
|
-
* const value = domainrestore[KEY_DOMAIN_RESTORE_EXPIRATION_DATE];
|
|
9627
|
-
*
|
|
9628
|
-
* // Dynamic property access
|
|
9629
|
-
* const propertyName = KEY_DOMAIN_RESTORE_EXPIRATION_DATE;
|
|
9630
|
-
* const value = domainrestore[propertyName];
|
|
9631
|
-
* ```
|
|
9632
|
-
*
|
|
9633
|
-
* @see {@link DomainRestore} - The TypeScript type definition
|
|
9634
|
-
* @see {@link KEYS_DOMAIN_RESTORE} - Array of all keys for this type
|
|
9635
|
-
*/
|
|
9636
|
-
export const KEY_DOMAIN_RESTORE_EXPIRATION_DATE: keyof DomainRestore = 'expiration_date';
|
|
9637
9611
|
/**
|
|
9638
9612
|
* Name
|
|
9639
9613
|
*
|
|
@@ -9709,7 +9683,6 @@ export const KEY_DOMAIN_RESTORE_RESTORED_AT: keyof DomainRestore = 'restored_at'
|
|
|
9709
9683
|
*/
|
|
9710
9684
|
export const KEYS_DOMAIN_RESTORE = [
|
|
9711
9685
|
KEY_DOMAIN_RESTORE_DOMAIN_ID,
|
|
9712
|
-
KEY_DOMAIN_RESTORE_EXPIRATION_DATE,
|
|
9713
9686
|
KEY_DOMAIN_RESTORE_NAME,
|
|
9714
9687
|
KEY_DOMAIN_RESTORE_RESTORED_AT,
|
|
9715
9688
|
] as const satisfies (keyof DomainRestore)[];
|
package/src/openapi.yaml
CHANGED
|
@@ -2283,11 +2283,6 @@ components:
|
|
|
2283
2283
|
title: Domain Id
|
|
2284
2284
|
type: string
|
|
2285
2285
|
x-typeid-prefix: domain
|
|
2286
|
-
expiration_date:
|
|
2287
|
-
description: The new expiration date after restore
|
|
2288
|
-
format: date-time
|
|
2289
|
-
title: Expiration Date
|
|
2290
|
-
type: string
|
|
2291
2286
|
name:
|
|
2292
2287
|
description: The name of the restored domain
|
|
2293
2288
|
title: Name
|
|
@@ -2300,7 +2295,6 @@ components:
|
|
|
2300
2295
|
required:
|
|
2301
2296
|
- domain_id
|
|
2302
2297
|
- name
|
|
2303
|
-
- expiration_date
|
|
2304
2298
|
- restored_at
|
|
2305
2299
|
title: DomainRestoreResponse
|
|
2306
2300
|
type: object
|
|
@@ -6550,7 +6544,7 @@ info:
|
|
|
6550
6544
|
'
|
|
6551
6545
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6552
6546
|
title: OpusDNS API
|
|
6553
|
-
version: 2026-01-13-
|
|
6547
|
+
version: 2026-01-13-161713
|
|
6554
6548
|
x-logo:
|
|
6555
6549
|
altText: OpusDNS API Reference
|
|
6556
6550
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3251,12 +3251,6 @@ export interface components {
|
|
|
3251
3251
|
* @example domain_01h45ytscbebyvny4gc8cr8ma2
|
|
3252
3252
|
*/
|
|
3253
3253
|
domain_id: TypeId<"domain">;
|
|
3254
|
-
/**
|
|
3255
|
-
* Expiration Date
|
|
3256
|
-
* Format: date-time
|
|
3257
|
-
* @description The new expiration date after restore
|
|
3258
|
-
*/
|
|
3259
|
-
expiration_date: Date;
|
|
3260
3254
|
/**
|
|
3261
3255
|
* Name
|
|
3262
3256
|
* @description The name of the restored domain
|