@opusdns/api 1.139.0 → 1.140.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
|
@@ -15780,7 +15780,7 @@ info:
|
|
|
15780
15780
|
\n\n"
|
|
15781
15781
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15782
15782
|
title: OpusDNS API
|
|
15783
|
-
version: 2026-08-27-
|
|
15783
|
+
version: 2026-08-27-143617
|
|
15784
15784
|
x-logo:
|
|
15785
15785
|
altText: OpusDNS API Reference
|
|
15786
15786
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -18066,6 +18066,14 @@ paths:
|
|
|
18066
18066
|
- type: string
|
|
18067
18067
|
- type: 'null'
|
|
18068
18068
|
title: Country
|
|
18069
|
+
- in: query
|
|
18070
|
+
name: in_use
|
|
18071
|
+
required: false
|
|
18072
|
+
schema:
|
|
18073
|
+
anyOf:
|
|
18074
|
+
- type: boolean
|
|
18075
|
+
- type: 'null'
|
|
18076
|
+
title: In Use
|
|
18069
18077
|
- in: query
|
|
18070
18078
|
name: created_after
|
|
18071
18079
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -15231,6 +15231,7 @@ export interface operations {
|
|
|
15231
15231
|
email?: string | null;
|
|
15232
15232
|
search?: string | null;
|
|
15233
15233
|
country?: string | null;
|
|
15234
|
+
in_use?: boolean | null;
|
|
15234
15235
|
created_after?: Date | null;
|
|
15235
15236
|
created_before?: Date | null;
|
|
15236
15237
|
/** @description Include additional data in the response. Can be specified multiple times. */
|