@opusdns/api 1.71.0 → 1.72.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 +8 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2438,6 +2438,7 @@ export const KEY_DOMAIN_STATUS_TAGS = 'status_tags' satisfies keyof Domain;
|
|
|
2438
2438
|
export const KEY_DOMAIN_TAGS = 'tags' satisfies keyof Domain;
|
|
2439
2439
|
export const KEY_DOMAIN_TLD = 'tld' satisfies keyof Domain;
|
|
2440
2440
|
export const KEY_DOMAIN_TRANSFER_LOCK = 'transfer_lock' satisfies keyof Domain;
|
|
2441
|
+
export const KEY_DOMAIN_TRANSFERRED_ON = 'transferred_on' satisfies keyof Domain;
|
|
2441
2442
|
export const KEY_DOMAIN_UPDATED_ON = 'updated_on' satisfies keyof Domain;
|
|
2442
2443
|
export const KEY_DOMAIN_VERIFICATION_REQUIRED = 'verification_required' satisfies keyof Domain;
|
|
2443
2444
|
|
|
@@ -2466,6 +2467,7 @@ export const KEYS_DOMAIN = [
|
|
|
2466
2467
|
KEY_DOMAIN_TAGS,
|
|
2467
2468
|
KEY_DOMAIN_TLD,
|
|
2468
2469
|
KEY_DOMAIN_TRANSFER_LOCK,
|
|
2470
|
+
KEY_DOMAIN_TRANSFERRED_ON,
|
|
2469
2471
|
KEY_DOMAIN_UPDATED_ON,
|
|
2470
2472
|
KEY_DOMAIN_VERIFICATION_REQUIRED,
|
|
2471
2473
|
] as const satisfies (keyof Domain)[];
|
package/src/openapi.yaml
CHANGED
|
@@ -5301,6 +5301,13 @@ components:
|
|
|
5301
5301
|
description: Whether the domain is locked for transfer
|
|
5302
5302
|
title: Transfer Lock
|
|
5303
5303
|
type: boolean
|
|
5304
|
+
transferred_on:
|
|
5305
|
+
anyOf:
|
|
5306
|
+
- format: date-time
|
|
5307
|
+
type: string
|
|
5308
|
+
- type: 'null'
|
|
5309
|
+
description: When the domain was last transferred to us
|
|
5310
|
+
title: Transferred On
|
|
5304
5311
|
updated_on:
|
|
5305
5312
|
description: The date/time the entry was last updated on
|
|
5306
5313
|
format: date-time
|
|
@@ -14248,7 +14255,7 @@ info:
|
|
|
14248
14255
|
\n\n"
|
|
14249
14256
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14250
14257
|
title: OpusDNS API
|
|
14251
|
-
version: 2026-07-21-
|
|
14258
|
+
version: 2026-07-21-194842
|
|
14252
14259
|
x-logo:
|
|
14253
14260
|
altText: OpusDNS API Reference
|
|
14254
14261
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6321,6 +6321,11 @@ export interface components {
|
|
|
6321
6321
|
* @default false
|
|
6322
6322
|
*/
|
|
6323
6323
|
transfer_lock: boolean;
|
|
6324
|
+
/**
|
|
6325
|
+
* Transferred On
|
|
6326
|
+
* @description When the domain was last transferred to us
|
|
6327
|
+
*/
|
|
6328
|
+
transferred_on?: Date | null;
|
|
6324
6329
|
/**
|
|
6325
6330
|
* Updated On
|
|
6326
6331
|
* Format: date-time
|