@opusdns/api 0.70.0 → 0.71.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/helpers/requests.d.ts +2 -2
- package/src/helpers/responses.d.ts +3 -3
- package/src/openapi.yaml +3 -3
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1248,7 +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
|
|
1251
|
+
* @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
1252
1252
|
*
|
|
1253
1253
|
* @see {@link GET_Domains_Request_Query} - Query parameters type
|
|
1254
1254
|
* @see {@link GET_Domains_Request_Path} - Path parameters type
|
|
@@ -1270,7 +1270,7 @@ export type GET_Domains_Request = {
|
|
|
1270
1270
|
* Use this type to ensure type safety for query parameters.
|
|
1271
1271
|
*
|
|
1272
1272
|
* @path /v1/domains
|
|
1273
|
-
* @param
|
|
1273
|
+
* @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
1274
1274
|
*/
|
|
1275
1275
|
export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query'];
|
|
1276
1276
|
|
|
@@ -2120,7 +2120,7 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
|
2120
2120
|
|
|
2121
2121
|
*
|
|
2122
2122
|
* @path /v1/domains
|
|
2123
|
-
* @param
|
|
2123
|
+
* @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2124
2124
|
*
|
|
2125
2125
|
* @see {@link GET_Domains_Response_200} - 200 response type
|
|
2126
2126
|
* @see {@link GET_Domains_Response_422} - 422 response type
|
|
@@ -2140,7 +2140,7 @@ export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Respon
|
|
|
2140
2140
|
|
|
2141
2141
|
*
|
|
2142
2142
|
* @path /v1/domains
|
|
2143
|
-
* @param
|
|
2143
|
+
* @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2144
2144
|
*
|
|
2145
2145
|
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2146
2146
|
* @see {@link Pagination_Domain} - The actual schema type definition
|
|
@@ -2158,7 +2158,7 @@ export type GET_Domains_Response_200 = Pagination_Domain
|
|
|
2158
2158
|
|
|
2159
2159
|
*
|
|
2160
2160
|
* @path /v1/domains
|
|
2161
|
-
* @param
|
|
2161
|
+
* @param registry_statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2162
2162
|
*
|
|
2163
2163
|
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2164
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-
|
|
5199
|
+
version: 2025-09-29-080859
|
|
5200
5200
|
x-logo:
|
|
5201
5201
|
altText: OpusDNS API Reference
|
|
5202
5202
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -6962,7 +6962,7 @@ paths:
|
|
|
6962
6962
|
- description: Filter domains by registry status. Can be specified multiple
|
|
6963
6963
|
times (union of all provided values).
|
|
6964
6964
|
in: query
|
|
6965
|
-
name:
|
|
6965
|
+
name: registry_statuses
|
|
6966
6966
|
required: false
|
|
6967
6967
|
schema:
|
|
6968
6968
|
anyOf:
|
|
@@ -6972,7 +6972,7 @@ paths:
|
|
|
6972
6972
|
- type: 'null'
|
|
6973
6973
|
description: Filter domains by registry status. Can be specified multiple
|
|
6974
6974
|
times (union of all provided values).
|
|
6975
|
-
title: Statuses
|
|
6975
|
+
title: Registry Statuses
|
|
6976
6976
|
- in: query
|
|
6977
6977
|
name: page
|
|
6978
6978
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -6264,7 +6264,7 @@ export interface operations {
|
|
|
6264
6264
|
registered_after?: Date | null;
|
|
6265
6265
|
registered_before?: Date | null;
|
|
6266
6266
|
/** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
|
|
6267
|
-
|
|
6267
|
+
registry_statuses?: string[] | null;
|
|
6268
6268
|
page?: number;
|
|
6269
6269
|
page_size?: number;
|
|
6270
6270
|
};
|