@opusdns/api 1.72.0 → 1.73.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/constants.ts +2 -0
- package/src/openapi.yaml +20 -1
- package/src/schema.d.ts +3 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -733,6 +733,7 @@ export const DOMAIN_SORT_FIELD = {
|
|
|
733
733
|
UPDATED_ON: "updated_on",
|
|
734
734
|
EXPIRES_ON: "expires_on",
|
|
735
735
|
REGISTERED_ON: "registered_on",
|
|
736
|
+
TRANSFERRED_ON: "transferred_on",
|
|
736
737
|
} as const satisfies Record<string, DomainSortField>;
|
|
737
738
|
|
|
738
739
|
export const DOMAIN_SORT_FIELD_VALUES = [
|
|
@@ -741,6 +742,7 @@ export const DOMAIN_SORT_FIELD_VALUES = [
|
|
|
741
742
|
'updated_on',
|
|
742
743
|
'expires_on',
|
|
743
744
|
'registered_on',
|
|
745
|
+
'transferred_on',
|
|
744
746
|
] as const satisfies ReadonlyArray<DomainSortField>;
|
|
745
747
|
|
|
746
748
|
export const DOMAIN_STATUS = {
|
package/src/openapi.yaml
CHANGED
|
@@ -5451,6 +5451,7 @@ components:
|
|
|
5451
5451
|
- updated_on
|
|
5452
5452
|
- expires_on
|
|
5453
5453
|
- registered_on
|
|
5454
|
+
- transferred_on
|
|
5454
5455
|
title: DomainSortField
|
|
5455
5456
|
type: string
|
|
5456
5457
|
DomainStatus:
|
|
@@ -14255,7 +14256,7 @@ info:
|
|
|
14255
14256
|
\n\n"
|
|
14256
14257
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14257
14258
|
title: OpusDNS API
|
|
14258
|
-
version: 2026-07-21-
|
|
14259
|
+
version: 2026-07-21-195001
|
|
14259
14260
|
x-logo:
|
|
14260
14261
|
altText: OpusDNS API Reference
|
|
14261
14262
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -22094,6 +22095,24 @@ paths:
|
|
|
22094
22095
|
type: string
|
|
22095
22096
|
- type: 'null'
|
|
22096
22097
|
title: Registered Before
|
|
22098
|
+
- in: query
|
|
22099
|
+
name: transferred_after
|
|
22100
|
+
required: false
|
|
22101
|
+
schema:
|
|
22102
|
+
anyOf:
|
|
22103
|
+
- format: date-time
|
|
22104
|
+
type: string
|
|
22105
|
+
- type: 'null'
|
|
22106
|
+
title: Transferred After
|
|
22107
|
+
- in: query
|
|
22108
|
+
name: transferred_before
|
|
22109
|
+
required: false
|
|
22110
|
+
schema:
|
|
22111
|
+
anyOf:
|
|
22112
|
+
- format: date-time
|
|
22113
|
+
type: string
|
|
22114
|
+
- type: 'null'
|
|
22115
|
+
title: Transferred Before
|
|
22097
22116
|
- description: Filter domains by registry status. Can be specified multiple
|
|
22098
22117
|
times (union of all provided values).
|
|
22099
22118
|
in: query
|
package/src/schema.d.ts
CHANGED
|
@@ -6410,7 +6410,7 @@ export interface components {
|
|
|
6410
6410
|
* DomainSortField
|
|
6411
6411
|
* @enum {string}
|
|
6412
6412
|
*/
|
|
6413
|
-
DomainSortField: "name" | "created_on" | "updated_on" | "expires_on" | "registered_on";
|
|
6413
|
+
DomainSortField: "name" | "created_on" | "updated_on" | "expires_on" | "registered_on" | "transferred_on";
|
|
6414
6414
|
/**
|
|
6415
6415
|
* DomainStatus
|
|
6416
6416
|
* @enum {string}
|
|
@@ -18231,6 +18231,8 @@ export interface operations {
|
|
|
18231
18231
|
expires_in_90_days?: boolean | null;
|
|
18232
18232
|
registered_after?: Date | null;
|
|
18233
18233
|
registered_before?: Date | null;
|
|
18234
|
+
transferred_after?: Date | null;
|
|
18235
|
+
transferred_before?: Date | null;
|
|
18234
18236
|
/** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
|
|
18235
18237
|
registry_statuses?: string[] | null;
|
|
18236
18238
|
/** @description Include additional data in the response. Can be specified multiple times. */
|