@opusdns/api 1.32.0 → 1.33.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 +9 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2277,6 +2277,7 @@ export const KEY_DOMAIN_REGISTERED_ON = 'registered_on' satisfies keyof Domain;
|
|
|
2277
2277
|
export const KEY_DOMAIN_REGISTRY_ACCOUNT_ID = 'registry_account_id' satisfies keyof Domain;
|
|
2278
2278
|
export const KEY_DOMAIN_REGISTRY_STATUSES = 'registry_statuses' satisfies keyof Domain;
|
|
2279
2279
|
export const KEY_DOMAIN_RENEWAL_MODE = 'renewal_mode' satisfies keyof Domain;
|
|
2280
|
+
export const KEY_DOMAIN_RENEWAL_PERIOD = 'renewal_period' satisfies keyof Domain;
|
|
2280
2281
|
export const KEY_DOMAIN_ROID = 'roid' satisfies keyof Domain;
|
|
2281
2282
|
export const KEY_DOMAIN_SLD = 'sld' satisfies keyof Domain;
|
|
2282
2283
|
export const KEY_DOMAIN_STATUS_TAGS = 'status_tags' satisfies keyof Domain;
|
|
@@ -2304,6 +2305,7 @@ export const KEYS_DOMAIN = [
|
|
|
2304
2305
|
KEY_DOMAIN_REGISTRY_ACCOUNT_ID,
|
|
2305
2306
|
KEY_DOMAIN_REGISTRY_STATUSES,
|
|
2306
2307
|
KEY_DOMAIN_RENEWAL_MODE,
|
|
2308
|
+
KEY_DOMAIN_RENEWAL_PERIOD,
|
|
2307
2309
|
KEY_DOMAIN_ROID,
|
|
2308
2310
|
KEY_DOMAIN_SLD,
|
|
2309
2311
|
KEY_DOMAIN_STATUS_TAGS,
|
package/src/openapi.yaml
CHANGED
|
@@ -5002,6 +5002,14 @@ components:
|
|
|
5002
5002
|
renewal_mode:
|
|
5003
5003
|
$ref: '#/components/schemas/RenewalMode'
|
|
5004
5004
|
description: The renewal mode of the domain
|
|
5005
|
+
renewal_period:
|
|
5006
|
+
anyOf:
|
|
5007
|
+
- type: string
|
|
5008
|
+
- type: 'null'
|
|
5009
|
+
description: Renewal period of the domain as an ISO 8601 duration (e.g.
|
|
5010
|
+
'P1M', 'P1Y'). Null when the domain is not set to renew (renewal mode
|
|
5011
|
+
'expire') or has no active subscription.
|
|
5012
|
+
title: Renewal Period
|
|
5005
5013
|
roid:
|
|
5006
5014
|
description: The registry object id of the domain
|
|
5007
5015
|
examples:
|
|
@@ -13375,7 +13383,7 @@ info:
|
|
|
13375
13383
|
\n\n"
|
|
13376
13384
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13377
13385
|
title: OpusDNS API
|
|
13378
|
-
version: 2026-06-24-
|
|
13386
|
+
version: 2026-06-24-134115
|
|
13379
13387
|
x-logo:
|
|
13380
13388
|
altText: OpusDNS API Reference
|
|
13381
13389
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6061,6 +6061,11 @@ export interface components {
|
|
|
6061
6061
|
registry_statuses?: string[];
|
|
6062
6062
|
/** @description The renewal mode of the domain */
|
|
6063
6063
|
renewal_mode?: components["schemas"]["RenewalMode"];
|
|
6064
|
+
/**
|
|
6065
|
+
* Renewal Period
|
|
6066
|
+
* @description Renewal period of the domain as an ISO 8601 duration (e.g. 'P1M', 'P1Y'). Null when the domain is not set to renew (renewal mode 'expire') or has no active subscription.
|
|
6067
|
+
*/
|
|
6068
|
+
renewal_period?: string | null;
|
|
6064
6069
|
/**
|
|
6065
6070
|
* Roid
|
|
6066
6071
|
* @description The registry object id of the domain
|