@opusdns/api 0.12.1 → 0.13.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 +25 -1
- package/src/schema.d.ts +3 -0
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -4953,7 +4953,7 @@ info:
|
|
|
4953
4953
|
'
|
|
4954
4954
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
4955
4955
|
title: OpusDNS API
|
|
4956
|
-
version: 2025-
|
|
4956
|
+
version: 2025-08-01-144220
|
|
4957
4957
|
x-logo:
|
|
4958
4958
|
altText: OpusDNS API Reference
|
|
4959
4959
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -6670,6 +6670,30 @@ paths:
|
|
|
6670
6670
|
type: string
|
|
6671
6671
|
- type: 'null'
|
|
6672
6672
|
title: Expires Before
|
|
6673
|
+
- in: query
|
|
6674
|
+
name: expires_in_30_days
|
|
6675
|
+
required: false
|
|
6676
|
+
schema:
|
|
6677
|
+
anyOf:
|
|
6678
|
+
- type: boolean
|
|
6679
|
+
- type: 'null'
|
|
6680
|
+
title: Expires In 30 Days
|
|
6681
|
+
- in: query
|
|
6682
|
+
name: expires_in_60_days
|
|
6683
|
+
required: false
|
|
6684
|
+
schema:
|
|
6685
|
+
anyOf:
|
|
6686
|
+
- type: boolean
|
|
6687
|
+
- type: 'null'
|
|
6688
|
+
title: Expires In 60 Days
|
|
6689
|
+
- in: query
|
|
6690
|
+
name: expires_in_90_days
|
|
6691
|
+
required: false
|
|
6692
|
+
schema:
|
|
6693
|
+
anyOf:
|
|
6694
|
+
- type: boolean
|
|
6695
|
+
- type: 'null'
|
|
6696
|
+
title: Expires In 90 Days
|
|
6673
6697
|
- in: query
|
|
6674
6698
|
name: registered_after
|
|
6675
6699
|
required: false
|
package/src/schema.d.ts
CHANGED
|
@@ -5801,6 +5801,9 @@ export interface operations {
|
|
|
5801
5801
|
updated_before?: Date | null;
|
|
5802
5802
|
expires_after?: Date | null;
|
|
5803
5803
|
expires_before?: Date | null;
|
|
5804
|
+
expires_in_30_days?: boolean | null;
|
|
5805
|
+
expires_in_60_days?: boolean | null;
|
|
5806
|
+
expires_in_90_days?: boolean | null;
|
|
5804
5807
|
registered_after?: Date | null;
|
|
5805
5808
|
registered_before?: Date | null;
|
|
5806
5809
|
};
|