@opusdns/api 0.242.0 → 0.243.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 +1 -9
- package/src/schema.d.ts +4 -4
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -2524,8 +2524,6 @@ components:
|
|
|
2524
2524
|
type: boolean
|
|
2525
2525
|
expected_price:
|
|
2526
2526
|
anyOf:
|
|
2527
|
-
- minimum: 0.0
|
|
2528
|
-
type: number
|
|
2529
2527
|
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
2530
2528
|
type: string
|
|
2531
2529
|
- type: 'null'
|
|
@@ -3427,8 +3425,6 @@ components:
|
|
|
3427
3425
|
type: string
|
|
3428
3426
|
expected_price:
|
|
3429
3427
|
anyOf:
|
|
3430
|
-
- minimum: 0.0
|
|
3431
|
-
type: number
|
|
3432
3428
|
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
3433
3429
|
type: string
|
|
3434
3430
|
- type: 'null'
|
|
@@ -3623,8 +3619,6 @@ components:
|
|
|
3623
3619
|
title: Additional Info
|
|
3624
3620
|
expected_price:
|
|
3625
3621
|
anyOf:
|
|
3626
|
-
- minimum: 0.0
|
|
3627
|
-
type: number
|
|
3628
3622
|
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
3629
3623
|
type: string
|
|
3630
3624
|
- type: 'null'
|
|
@@ -4058,8 +4052,6 @@ components:
|
|
|
4058
4052
|
type: boolean
|
|
4059
4053
|
expected_price:
|
|
4060
4054
|
anyOf:
|
|
4061
|
-
- minimum: 0.0
|
|
4062
|
-
type: number
|
|
4063
4055
|
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4064
4056
|
type: string
|
|
4065
4057
|
- type: 'null'
|
|
@@ -9752,7 +9744,7 @@ info:
|
|
|
9752
9744
|
\n\n"
|
|
9753
9745
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9754
9746
|
title: OpusDNS API
|
|
9755
|
-
version: 2026-04-10-
|
|
9747
|
+
version: 2026-04-10-140958
|
|
9756
9748
|
x-logo:
|
|
9757
9749
|
altText: OpusDNS API Reference
|
|
9758
9750
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3884,7 +3884,7 @@ export interface components {
|
|
|
3884
3884
|
* Expected Price
|
|
3885
3885
|
* @description Expected price for premium domain confirmation
|
|
3886
3886
|
*/
|
|
3887
|
-
expected_price?:
|
|
3887
|
+
expected_price?: string | null;
|
|
3888
3888
|
/**
|
|
3889
3889
|
* Name
|
|
3890
3890
|
* @description The domain to be created
|
|
@@ -4443,7 +4443,7 @@ export interface components {
|
|
|
4443
4443
|
* Expected Price
|
|
4444
4444
|
* @description Expected price for premium domain confirmation
|
|
4445
4445
|
*/
|
|
4446
|
-
expected_price?:
|
|
4446
|
+
expected_price?: string | null;
|
|
4447
4447
|
/** @description How long to extend the domain registration */
|
|
4448
4448
|
period: components["schemas"]["DomainPeriod"];
|
|
4449
4449
|
};
|
|
@@ -4598,7 +4598,7 @@ export interface components {
|
|
|
4598
4598
|
* Expected Price
|
|
4599
4599
|
* @description Expected price for premium domain confirmation
|
|
4600
4600
|
*/
|
|
4601
|
-
expected_price?:
|
|
4601
|
+
expected_price?: string | null;
|
|
4602
4602
|
/**
|
|
4603
4603
|
* Reason
|
|
4604
4604
|
* @description Reason for restoring the domain
|
|
@@ -4881,7 +4881,7 @@ export interface components {
|
|
|
4881
4881
|
* Expected Price
|
|
4882
4882
|
* @description Expected price for premium domain confirmation
|
|
4883
4883
|
*/
|
|
4884
|
-
expected_price?:
|
|
4884
|
+
expected_price?: string | null;
|
|
4885
4885
|
/**
|
|
4886
4886
|
* Name
|
|
4887
4887
|
* @description The domain to be created
|