@opusdns/api 1.69.0 → 1.70.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 +12 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2270,6 +2270,7 @@ export const KEY_DOMAIN_LIFECYCLE_BASE_REGISTRY_AUTO_RENEW = 'registry_auto_rene
|
|
|
2270
2270
|
export const KEY_DOMAIN_LIFECYCLE_BASE_RENEWAL_PERIODS = 'renewal_periods' satisfies keyof DomainLifecycleBase;
|
|
2271
2271
|
export const KEY_DOMAIN_LIFECYCLE_BASE_RGP_OPERATIONS = 'rgp_operations' satisfies keyof DomainLifecycleBase;
|
|
2272
2272
|
export const KEY_DOMAIN_LIFECYCLE_BASE_SYNC_AFTER_OPERATIONS = 'sync_after_operations' satisfies keyof DomainLifecycleBase;
|
|
2273
|
+
export const KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_GRACE_PERIOD = 'transfer_grace_period' satisfies keyof DomainLifecycleBase;
|
|
2273
2274
|
export const KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_RENEWAL_PERIODS = 'transfer_renewal_periods' satisfies keyof DomainLifecycleBase;
|
|
2274
2275
|
|
|
2275
2276
|
export const KEYS_DOMAIN_LIFECYCLE_BASE = [
|
|
@@ -2287,6 +2288,7 @@ export const KEYS_DOMAIN_LIFECYCLE_BASE = [
|
|
|
2287
2288
|
KEY_DOMAIN_LIFECYCLE_BASE_RENEWAL_PERIODS,
|
|
2288
2289
|
KEY_DOMAIN_LIFECYCLE_BASE_RGP_OPERATIONS,
|
|
2289
2290
|
KEY_DOMAIN_LIFECYCLE_BASE_SYNC_AFTER_OPERATIONS,
|
|
2291
|
+
KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_GRACE_PERIOD,
|
|
2290
2292
|
KEY_DOMAIN_LIFECYCLE_BASE_TRANSFER_RENEWAL_PERIODS,
|
|
2291
2293
|
] as const satisfies (keyof DomainLifecycleBase)[];
|
|
2292
2294
|
|
package/src/openapi.yaml
CHANGED
|
@@ -4857,6 +4857,17 @@ components:
|
|
|
4857
4857
|
- type: 'null'
|
|
4858
4858
|
description: Operations that trigger a sync with the registry
|
|
4859
4859
|
title: Sync After Operations
|
|
4860
|
+
transfer_grace_period:
|
|
4861
|
+
anyOf:
|
|
4862
|
+
- examples:
|
|
4863
|
+
- P5D
|
|
4864
|
+
- P1Y
|
|
4865
|
+
pattern: ^\-?P?(\d+Y)?(\d+M)?(\d+D)?T?(\d+H)?(\d+M)?(\d+S)?$
|
|
4866
|
+
type: string
|
|
4867
|
+
- type: 'null'
|
|
4868
|
+
description: Transfer grace period after a transfer in ISO 8601 format (e.g.,
|
|
4869
|
+
5D, 3D)
|
|
4870
|
+
title: Transfer Grace Period
|
|
4860
4871
|
transfer_renewal_periods:
|
|
4861
4872
|
$ref: '#/components/schemas/PeriodList'
|
|
4862
4873
|
description: List of allowed transfer renewal periods (eg. '1y')
|
|
@@ -14137,7 +14148,7 @@ info:
|
|
|
14137
14148
|
\n\n"
|
|
14138
14149
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14139
14150
|
title: OpusDNS API
|
|
14140
|
-
version: 2026-07-
|
|
14151
|
+
version: 2026-07-21-001849
|
|
14141
14152
|
x-logo:
|
|
14142
14153
|
altText: OpusDNS API Reference
|
|
14143
14154
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5960,6 +5960,11 @@ export interface components {
|
|
|
5960
5960
|
* @description Operations that trigger a sync with the registry
|
|
5961
5961
|
*/
|
|
5962
5962
|
sync_after_operations?: components["schemas"]["SyncOperationType"][] | null;
|
|
5963
|
+
/**
|
|
5964
|
+
* Transfer Grace Period
|
|
5965
|
+
* @description Transfer grace period after a transfer in ISO 8601 format (e.g., 5D, 3D)
|
|
5966
|
+
*/
|
|
5967
|
+
transfer_grace_period?: string | null;
|
|
5963
5968
|
/** @description List of allowed transfer renewal periods (eg. '1y') */
|
|
5964
5969
|
transfer_renewal_periods?: components["schemas"]["PeriodList"];
|
|
5965
5970
|
};
|