@opusdns/api 0.263.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 +9 -1
- package/src/schema.d.ts +1 -0
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -10121,7 +10121,7 @@ info:
|
|
|
10121
10121
|
\n\n"
|
|
10122
10122
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10123
10123
|
title: OpusDNS API
|
|
10124
|
-
version: 2026-04-23-
|
|
10124
|
+
version: 2026-04-23-182347
|
|
10125
10125
|
x-logo:
|
|
10126
10126
|
altText: OpusDNS API Reference
|
|
10127
10127
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -15865,6 +15865,14 @@ paths:
|
|
|
15865
15865
|
- type: boolean
|
|
15866
15866
|
- type: 'null'
|
|
15867
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
|
|
15868
15876
|
- in: query
|
|
15869
15877
|
name: created_after
|
|
15870
15878
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -12734,6 +12734,7 @@ export interface operations {
|
|
|
12734
12734
|
tld?: string | null;
|
|
12735
12735
|
sld?: string | null;
|
|
12736
12736
|
transfer_lock?: boolean | null;
|
|
12737
|
+
is_premium?: boolean | null;
|
|
12737
12738
|
created_after?: Date | null;
|
|
12738
12739
|
created_before?: Date | null;
|
|
12739
12740
|
updated_after?: Date | null;
|