@opusdns/api 0.262.0 → 0.264.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/openapi.yaml +12 -4
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -2401,8 +2401,9 @@ components:
|
|
|
2401
2401
|
DnsZoneUpdatePayloadData:
|
|
2402
2402
|
properties:
|
|
2403
2403
|
dnssec_status:
|
|
2404
|
-
|
|
2405
|
-
|
|
2404
|
+
anyOf:
|
|
2405
|
+
- $ref: '#/components/schemas/DnssecStatus'
|
|
2406
|
+
- type: 'null'
|
|
2406
2407
|
name:
|
|
2407
2408
|
title: Name
|
|
2408
2409
|
type: string
|
|
@@ -10120,7 +10121,7 @@ info:
|
|
|
10120
10121
|
\n\n"
|
|
10121
10122
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10122
10123
|
title: OpusDNS API
|
|
10123
|
-
version: 2026-04-
|
|
10124
|
+
version: 2026-04-23-182347
|
|
10124
10125
|
x-logo:
|
|
10125
10126
|
altText: OpusDNS API Reference
|
|
10126
10127
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -15864,6 +15865,14 @@ paths:
|
|
|
15864
15865
|
- type: boolean
|
|
15865
15866
|
- type: 'null'
|
|
15866
15867
|
title: Transfer Lock
|
|
15868
|
+
- in: query
|
|
15869
|
+
name: is_premium
|
|
15870
|
+
required: false
|
|
15871
|
+
schema:
|
|
15872
|
+
anyOf:
|
|
15873
|
+
- type: boolean
|
|
15874
|
+
- type: 'null'
|
|
15875
|
+
title: Is Premium
|
|
15867
15876
|
- in: query
|
|
15868
15877
|
name: created_after
|
|
15869
15878
|
required: false
|
|
@@ -18770,7 +18779,6 @@ paths:
|
|
|
18770
18779
|
- command: dns_zone_update
|
|
18771
18780
|
idempotency_key: update-zone-example-com
|
|
18772
18781
|
payload:
|
|
18773
|
-
dnssec_status: disabled
|
|
18774
18782
|
name: example.com
|
|
18775
18783
|
rrsets:
|
|
18776
18784
|
- name: '@'
|
package/src/schema.d.ts
CHANGED
|
@@ -3888,8 +3888,7 @@ export interface components {
|
|
|
3888
3888
|
};
|
|
3889
3889
|
/** DnsZoneUpdatePayloadData */
|
|
3890
3890
|
DnsZoneUpdatePayloadData: {
|
|
3891
|
-
|
|
3892
|
-
dnssec_status: components["schemas"]["DnssecStatus"];
|
|
3891
|
+
dnssec_status?: components["schemas"]["DnssecStatus"] | null;
|
|
3893
3892
|
/** Name */
|
|
3894
3893
|
name: string;
|
|
3895
3894
|
/** Rrsets */
|
|
@@ -12735,6 +12734,7 @@ export interface operations {
|
|
|
12735
12734
|
tld?: string | null;
|
|
12736
12735
|
sld?: string | null;
|
|
12737
12736
|
transfer_lock?: boolean | null;
|
|
12737
|
+
is_premium?: boolean | null;
|
|
12738
12738
|
created_after?: Date | null;
|
|
12739
12739
|
created_before?: Date | null;
|
|
12740
12740
|
updated_after?: Date | null;
|