@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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.24.0",
6
+ "version": "1.25.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
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-090758
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
  };