@opusdns/api 1.106.0 → 1.107.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 +2 -0
- package/src/openapi.yaml +10 -1
- package/src/schema.d.ts +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2400,6 +2400,7 @@ export const KEY_DOMAIN_LIFECYCLE_BASE_REDEMPTION_PERIOD = 'redemption_period' s
|
|
|
2400
2400
|
export const KEY_DOMAIN_LIFECYCLE_BASE_REGISTRATION_PERIODS = 'registration_periods' satisfies keyof DomainLifecycleBase;
|
|
2401
2401
|
export const KEY_DOMAIN_LIFECYCLE_BASE_REGISTRY_AUTO_RENEW = 'registry_auto_renew' satisfies keyof DomainLifecycleBase;
|
|
2402
2402
|
export const KEY_DOMAIN_LIFECYCLE_BASE_RENEWAL_PERIODS = 'renewal_periods' satisfies keyof DomainLifecycleBase;
|
|
2403
|
+
export const KEY_DOMAIN_LIFECYCLE_BASE_RESTORE_TRIGGERS_RENEWAL = 'restore_triggers_renewal' satisfies keyof DomainLifecycleBase;
|
|
2403
2404
|
export const KEY_DOMAIN_LIFECYCLE_BASE_RGP_OPERATIONS = 'rgp_operations' satisfies keyof DomainLifecycleBase;
|
|
2404
2405
|
export const KEY_DOMAIN_LIFECYCLE_BASE_SYNC_AFTER_OPERATIONS = 'sync_after_operations' satisfies keyof DomainLifecycleBase;
|
|
2405
2406
|
export const KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_GRACE_PERIOD = 'transfer_grace_period' satisfies keyof DomainLifecycleBase;
|
|
@@ -2418,6 +2419,7 @@ export const KEYS_DOMAIN_LIFECYCLE_BASE = [
|
|
|
2418
2419
|
KEY_DOMAIN_LIFECYCLE_BASE_REGISTRATION_PERIODS,
|
|
2419
2420
|
KEY_DOMAIN_LIFECYCLE_BASE_REGISTRY_AUTO_RENEW,
|
|
2420
2421
|
KEY_DOMAIN_LIFECYCLE_BASE_RENEWAL_PERIODS,
|
|
2422
|
+
KEY_DOMAIN_LIFECYCLE_BASE_RESTORE_TRIGGERS_RENEWAL,
|
|
2421
2423
|
KEY_DOMAIN_LIFECYCLE_BASE_RGP_OPERATIONS,
|
|
2422
2424
|
KEY_DOMAIN_LIFECYCLE_BASE_SYNC_AFTER_OPERATIONS,
|
|
2423
2425
|
KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_GRACE_PERIOD,
|
package/src/openapi.yaml
CHANGED
|
@@ -5096,6 +5096,15 @@ components:
|
|
|
5096
5096
|
$ref: '#/components/schemas/PeriodList'
|
|
5097
5097
|
description: List of allowed renewal periods (e.g., '1y' or ['1y', '2y',
|
|
5098
5098
|
'5y'])
|
|
5099
|
+
restore_triggers_renewal:
|
|
5100
|
+
default: true
|
|
5101
|
+
description: After a restore, renew the domain so its term matches the subscription.
|
|
5102
|
+
True for RGP registries, whose redemption restore does not extend the
|
|
5103
|
+
domain. False where the restore already leaves a valid term - e.g. NASK/.pl,
|
|
5104
|
+
where restore removes clientRenewProhibited or renews+reactivates, and
|
|
5105
|
+
a redundant renew is rejected (one renewal per billing period).
|
|
5106
|
+
title: Restore Triggers Renewal
|
|
5107
|
+
type: boolean
|
|
5099
5108
|
rgp_operations:
|
|
5100
5109
|
anyOf:
|
|
5101
5110
|
- $ref: '#/components/schemas/RgpOperations'
|
|
@@ -15106,7 +15115,7 @@ info:
|
|
|
15106
15115
|
\n\n"
|
|
15107
15116
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15108
15117
|
title: OpusDNS API
|
|
15109
|
-
version: 2026-08-
|
|
15118
|
+
version: 2026-08-10-151407
|
|
15110
15119
|
x-logo:
|
|
15111
15120
|
altText: OpusDNS API Reference
|
|
15112
15121
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6216,6 +6216,12 @@ export interface components {
|
|
|
6216
6216
|
registry_auto_renew?: boolean | null;
|
|
6217
6217
|
/** @description List of allowed renewal periods (e.g., '1y' or ['1y', '2y', '5y']) */
|
|
6218
6218
|
renewal_periods?: components["schemas"]["PeriodList"];
|
|
6219
|
+
/**
|
|
6220
|
+
* Restore Triggers Renewal
|
|
6221
|
+
* @description After a restore, renew the domain so its term matches the subscription. True for RGP registries, whose redemption restore does not extend the domain. False where the restore already leaves a valid term - e.g. NASK/.pl, where restore removes clientRenewProhibited or renews+reactivates, and a redundant renew is rejected (one renewal per billing period).
|
|
6222
|
+
* @default true
|
|
6223
|
+
*/
|
|
6224
|
+
restore_triggers_renewal: boolean;
|
|
6219
6225
|
/** @description RGP operations supported by the registry */
|
|
6220
6226
|
rgp_operations?: components["schemas"]["RgpOperations"] | null;
|
|
6221
6227
|
/**
|