@opusdns/api 1.34.0 → 1.35.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 -3
- package/src/schema.d.ts +2 -1
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -13383,7 +13383,7 @@ info:
|
|
|
13383
13383
|
\n\n"
|
|
13384
13384
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13385
13385
|
title: OpusDNS API
|
|
13386
|
-
version: 2026-06-24-
|
|
13386
|
+
version: 2026-06-24-164613
|
|
13387
13387
|
x-logo:
|
|
13388
13388
|
altText: OpusDNS API Reference
|
|
13389
13389
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -20808,13 +20808,19 @@ paths:
|
|
|
20808
20808
|
- type: string
|
|
20809
20809
|
- type: 'null'
|
|
20810
20810
|
title: Search
|
|
20811
|
-
-
|
|
20811
|
+
- description: Filter by top-level domain (e.g., 'com', 'org'). Can be specified
|
|
20812
|
+
multiple times (union of all provided values).
|
|
20813
|
+
in: query
|
|
20812
20814
|
name: tld
|
|
20813
20815
|
required: false
|
|
20814
20816
|
schema:
|
|
20815
20817
|
anyOf:
|
|
20816
|
-
-
|
|
20818
|
+
- items:
|
|
20819
|
+
type: string
|
|
20820
|
+
type: array
|
|
20817
20821
|
- type: 'null'
|
|
20822
|
+
description: Filter by top-level domain (e.g., 'com', 'org'). Can be specified
|
|
20823
|
+
multiple times (union of all provided values).
|
|
20818
20824
|
title: Tld
|
|
20819
20825
|
- in: query
|
|
20820
20826
|
name: sld
|
package/src/schema.d.ts
CHANGED
|
@@ -16943,7 +16943,8 @@ export interface operations {
|
|
|
16943
16943
|
tag_mode?: components["schemas"]["TagFilterMode"];
|
|
16944
16944
|
name?: string | null;
|
|
16945
16945
|
search?: string | null;
|
|
16946
|
-
|
|
16946
|
+
/** @description Filter by top-level domain (e.g., 'com', 'org'). Can be specified multiple times (union of all provided values). */
|
|
16947
|
+
tld?: string[] | null;
|
|
16947
16948
|
sld?: string | null;
|
|
16948
16949
|
transfer_lock?: boolean | null;
|
|
16949
16950
|
is_premium?: boolean | null;
|