@opusdns/api 0.69.0 → 0.70.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
@@ -8,7 +8,7 @@
8
8
  "typescript": "^5.8.2"
9
9
  },
10
10
  "name": "@opusdns/api",
11
- "version": "0.69.0",
11
+ "version": "0.70.0",
12
12
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
13
13
  "main": "./src/index.ts",
14
14
  "module": "./src/index.ts",
@@ -1248,6 +1248,7 @@ export type GET_DomainSearchSuggest_Request_Query = GET_DomainSearchSuggest_Requ
1248
1248
  * Use this type to ensure type safety when making API requests to this endpoint.
1249
1249
  *
1250
1250
  * @path /v1/domains
1251
+ * @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
1251
1252
  *
1252
1253
  * @see {@link GET_Domains_Request_Query} - Query parameters type
1253
1254
  * @see {@link GET_Domains_Request_Path} - Path parameters type
@@ -1269,6 +1270,7 @@ export type GET_Domains_Request = {
1269
1270
  * Use this type to ensure type safety for query parameters.
1270
1271
  *
1271
1272
  * @path /v1/domains
1273
+ * @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
1272
1274
  */
1273
1275
  export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query'];
1274
1276
 
@@ -2120,6 +2120,7 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
2120
2120
 
2121
2121
  *
2122
2122
  * @path /v1/domains
2123
+ * @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
2123
2124
  *
2124
2125
  * @see {@link GET_Domains_Response_200} - 200 response type
2125
2126
  * @see {@link GET_Domains_Response_422} - 422 response type
@@ -2139,6 +2140,7 @@ export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Respon
2139
2140
 
2140
2141
  *
2141
2142
  * @path /v1/domains
2143
+ * @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
2142
2144
  *
2143
2145
  * @see {@link GET_Domains_Response} - The main response type definition
2144
2146
  * @see {@link Pagination_Domain} - The actual schema type definition
@@ -2156,6 +2158,7 @@ export type GET_Domains_Response_200 = Pagination_Domain
2156
2158
 
2157
2159
  *
2158
2160
  * @path /v1/domains
2161
+ * @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
2159
2162
  *
2160
2163
  * @see {@link GET_Domains_Response} - The main response type definition
2161
2164
  * @see {@link HTTPValidationError} - The actual schema type definition
package/src/openapi.yaml CHANGED
@@ -5196,7 +5196,7 @@ info:
5196
5196
  '
5197
5197
  summary: OpusDNS - your gateway to a seamless domain management experience.
5198
5198
  title: OpusDNS API
5199
- version: 2025-09-29-071158
5199
+ version: 2025-09-29-074010
5200
5200
  x-logo:
5201
5201
  altText: OpusDNS API Reference
5202
5202
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -6959,6 +6959,20 @@ paths:
6959
6959
  type: string
6960
6960
  - type: 'null'
6961
6961
  title: Registered Before
6962
+ - description: Filter domains by registry status. Can be specified multiple
6963
+ times (union of all provided values).
6964
+ in: query
6965
+ name: statuses
6966
+ required: false
6967
+ schema:
6968
+ anyOf:
6969
+ - items:
6970
+ type: string
6971
+ type: array
6972
+ - type: 'null'
6973
+ description: Filter domains by registry status. Can be specified multiple
6974
+ times (union of all provided values).
6975
+ title: Statuses
6962
6976
  - in: query
6963
6977
  name: page
6964
6978
  required: false
package/src/schema.d.ts CHANGED
@@ -6263,6 +6263,8 @@ export interface operations {
6263
6263
  expires_in_90_days?: boolean | null;
6264
6264
  registered_after?: Date | null;
6265
6265
  registered_before?: Date | null;
6266
+ /** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
6267
+ statuses?: string[] | null;
6266
6268
  page?: number;
6267
6269
  page_size?: number;
6268
6270
  };