@opusdns/api 1.120.0 → 1.121.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 +18 -1
- package/src/schema.d.ts +7 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2597,6 +2597,7 @@ export const KEY_DOMAIN_IS_PREMIUM = 'is_premium' satisfies keyof Domain;
|
|
|
2597
2597
|
export const KEY_DOMAIN_NAME = 'name' satisfies keyof Domain;
|
|
2598
2598
|
export const KEY_DOMAIN_NAMESERVERS = 'nameservers' satisfies keyof Domain;
|
|
2599
2599
|
export const KEY_DOMAIN_OWNER_ID = 'owner_id' satisfies keyof Domain;
|
|
2600
|
+
export const KEY_DOMAIN_READ_ONLY = 'read_only' satisfies keyof Domain;
|
|
2600
2601
|
export const KEY_DOMAIN_REGISTERED_ON = 'registered_on' satisfies keyof Domain;
|
|
2601
2602
|
export const KEY_DOMAIN_REGISTRY_ACCOUNT_ID = 'registry_account_id' satisfies keyof Domain;
|
|
2602
2603
|
export const KEY_DOMAIN_REGISTRY_STATUSES = 'registry_statuses' satisfies keyof Domain;
|
|
@@ -2627,6 +2628,7 @@ export const KEYS_DOMAIN = [
|
|
|
2627
2628
|
KEY_DOMAIN_NAME,
|
|
2628
2629
|
KEY_DOMAIN_NAMESERVERS,
|
|
2629
2630
|
KEY_DOMAIN_OWNER_ID,
|
|
2631
|
+
KEY_DOMAIN_READ_ONLY,
|
|
2630
2632
|
KEY_DOMAIN_REGISTERED_ON,
|
|
2631
2633
|
KEY_DOMAIN_REGISTRY_ACCOUNT_ID,
|
|
2632
2634
|
KEY_DOMAIN_REGISTRY_STATUSES,
|
package/src/openapi.yaml
CHANGED
|
@@ -5579,6 +5579,15 @@ components:
|
|
|
5579
5579
|
title: Owner Id
|
|
5580
5580
|
type: string
|
|
5581
5581
|
x-typeid-prefix: organization
|
|
5582
|
+
read_only:
|
|
5583
|
+
default: false
|
|
5584
|
+
description: "Whether the domain is read-only in OpusDNS. When `true`, the\
|
|
5585
|
+
\ domain is listed in your portfolio but cannot be managed \u2014 for\
|
|
5586
|
+
\ example while it awaits a migration, is locked for legal reasons, or\
|
|
5587
|
+
\ is managed at an external registrar. The flag is set and removed by\
|
|
5588
|
+
\ OpusDNS; it cannot be changed through the API."
|
|
5589
|
+
title: Read Only
|
|
5590
|
+
type: boolean
|
|
5582
5591
|
registered_on:
|
|
5583
5592
|
anyOf:
|
|
5584
5593
|
- format: date-time
|
|
@@ -15538,7 +15547,7 @@ info:
|
|
|
15538
15547
|
\n\n"
|
|
15539
15548
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15540
15549
|
title: OpusDNS API
|
|
15541
|
-
version: 2026-08-18-
|
|
15550
|
+
version: 2026-08-18-162915
|
|
15542
15551
|
x-logo:
|
|
15543
15552
|
altText: OpusDNS API Reference
|
|
15544
15553
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23349,6 +23358,14 @@ paths:
|
|
|
23349
23358
|
- type: boolean
|
|
23350
23359
|
- type: 'null'
|
|
23351
23360
|
title: Transfer Lock
|
|
23361
|
+
- in: query
|
|
23362
|
+
name: read_only
|
|
23363
|
+
required: false
|
|
23364
|
+
schema:
|
|
23365
|
+
anyOf:
|
|
23366
|
+
- type: boolean
|
|
23367
|
+
- type: 'null'
|
|
23368
|
+
title: Read Only
|
|
23352
23369
|
- in: query
|
|
23353
23370
|
name: is_premium
|
|
23354
23371
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -6613,6 +6613,12 @@ export interface components {
|
|
|
6613
6613
|
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
6614
6614
|
*/
|
|
6615
6615
|
owner_id: TypeId<"organization">;
|
|
6616
|
+
/**
|
|
6617
|
+
* Read Only
|
|
6618
|
+
* @description Whether the domain is read-only in OpusDNS. When `true`, the domain is listed in your portfolio but cannot be managed — for example while it awaits a migration, is locked for legal reasons, or is managed at an external registrar. The flag is set and removed by OpusDNS; it cannot be changed through the API.
|
|
6619
|
+
* @default false
|
|
6620
|
+
*/
|
|
6621
|
+
read_only: boolean;
|
|
6616
6622
|
/**
|
|
6617
6623
|
* Registered On
|
|
6618
6624
|
* @description When the domain was registered
|
|
@@ -19126,6 +19132,7 @@ export interface operations {
|
|
|
19126
19132
|
tld?: string[] | null;
|
|
19127
19133
|
sld?: string | null;
|
|
19128
19134
|
transfer_lock?: boolean | null;
|
|
19135
|
+
read_only?: boolean | null;
|
|
19129
19136
|
is_premium?: boolean | null;
|
|
19130
19137
|
created_after?: Date | null;
|
|
19131
19138
|
created_before?: Date | null;
|