@opusdns/api 1.24.0 → 1.25.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
|
@@ -12735,7 +12735,7 @@ info:
|
|
|
12735
12735
|
\n\n"
|
|
12736
12736
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
12737
12737
|
title: OpusDNS API
|
|
12738
|
-
version: 2026-06-22-
|
|
12738
|
+
version: 2026-06-22-103725
|
|
12739
12739
|
x-logo:
|
|
12740
12740
|
altText: OpusDNS API Reference
|
|
12741
12741
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -25489,6 +25489,14 @@ paths:
|
|
|
25489
25489
|
type: string
|
|
25490
25490
|
- type: 'null'
|
|
25491
25491
|
title: Search
|
|
25492
|
+
- in: query
|
|
25493
|
+
name: status
|
|
25494
|
+
required: false
|
|
25495
|
+
schema:
|
|
25496
|
+
anyOf:
|
|
25497
|
+
- $ref: '#/components/schemas/UserStatus'
|
|
25498
|
+
- type: 'null'
|
|
25499
|
+
title: Status
|
|
25492
25500
|
- in: query
|
|
25493
25501
|
name: page
|
|
25494
25502
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -20495,6 +20495,7 @@ export interface operations {
|
|
|
20495
20495
|
sort_by?: components["schemas"]["UserSortField"];
|
|
20496
20496
|
sort_order?: components["schemas"]["SortOrder"];
|
|
20497
20497
|
search?: string | null;
|
|
20498
|
+
status?: components["schemas"]["UserStatus"] | null;
|
|
20498
20499
|
page?: number;
|
|
20499
20500
|
page_size?: number;
|
|
20500
20501
|
};
|