@opusdns/api 0.243.0 → 0.245.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 +15 -1
- package/src/schema.d.ts +8 -0
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -2528,6 +2528,8 @@ components:
|
|
|
2528
2528
|
type: string
|
|
2529
2529
|
- type: 'null'
|
|
2530
2530
|
description: Expected price for premium domain confirmation
|
|
2531
|
+
examples:
|
|
2532
|
+
- '12.50'
|
|
2531
2533
|
title: Expected Price
|
|
2532
2534
|
name:
|
|
2533
2535
|
description: The domain to be created
|
|
@@ -2739,6 +2741,8 @@ components:
|
|
|
2739
2741
|
type: string
|
|
2740
2742
|
- type: 'null'
|
|
2741
2743
|
description: Expected price for premium domain confirmation
|
|
2744
|
+
examples:
|
|
2745
|
+
- '12.50'
|
|
2742
2746
|
title: Expected Price
|
|
2743
2747
|
name:
|
|
2744
2748
|
description: The domain to be created
|
|
@@ -3429,6 +3433,8 @@ components:
|
|
|
3429
3433
|
type: string
|
|
3430
3434
|
- type: 'null'
|
|
3431
3435
|
description: Expected price for premium domain confirmation
|
|
3436
|
+
examples:
|
|
3437
|
+
- '12.50'
|
|
3432
3438
|
title: Expected Price
|
|
3433
3439
|
period:
|
|
3434
3440
|
$ref: '#/components/schemas/DomainPeriod'
|
|
@@ -3623,6 +3629,8 @@ components:
|
|
|
3623
3629
|
type: string
|
|
3624
3630
|
- type: 'null'
|
|
3625
3631
|
description: Expected price for premium domain confirmation
|
|
3632
|
+
examples:
|
|
3633
|
+
- '12.50'
|
|
3626
3634
|
title: Expected Price
|
|
3627
3635
|
reason:
|
|
3628
3636
|
anyOf:
|
|
@@ -4056,6 +4064,8 @@ components:
|
|
|
4056
4064
|
type: string
|
|
4057
4065
|
- type: 'null'
|
|
4058
4066
|
description: Expected price for premium domain confirmation
|
|
4067
|
+
examples:
|
|
4068
|
+
- '12.50'
|
|
4059
4069
|
title: Expected Price
|
|
4060
4070
|
name:
|
|
4061
4071
|
description: The domain to be created
|
|
@@ -4120,6 +4130,8 @@ components:
|
|
|
4120
4130
|
type: string
|
|
4121
4131
|
- type: 'null'
|
|
4122
4132
|
description: Expected price for premium domain confirmation
|
|
4133
|
+
examples:
|
|
4134
|
+
- '12.50'
|
|
4123
4135
|
title: Expected Price
|
|
4124
4136
|
name:
|
|
4125
4137
|
description: The domain to be created
|
|
@@ -9744,7 +9756,7 @@ info:
|
|
|
9744
9756
|
\n\n"
|
|
9745
9757
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9746
9758
|
title: OpusDNS API
|
|
9747
|
-
version: 2026-04-10-
|
|
9759
|
+
version: 2026-04-10-204100
|
|
9748
9760
|
x-logo:
|
|
9749
9761
|
altText: OpusDNS API Reference
|
|
9750
9762
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -15960,6 +15972,7 @@ paths:
|
|
|
15960
15972
|
content:
|
|
15961
15973
|
application/problem+json:
|
|
15962
15974
|
example:
|
|
15975
|
+
code: ERROR_POLICY_VALIDATION
|
|
15963
15976
|
detail: Additional error context.
|
|
15964
15977
|
status: 422
|
|
15965
15978
|
title: Policy Validation Error
|
|
@@ -16309,6 +16322,7 @@ paths:
|
|
|
16309
16322
|
content:
|
|
16310
16323
|
application/problem+json:
|
|
16311
16324
|
example:
|
|
16325
|
+
code: ERROR_POLICY_VALIDATION
|
|
16312
16326
|
detail: Additional error context.
|
|
16313
16327
|
status: 422
|
|
16314
16328
|
title: Policy Validation Error
|
package/src/schema.d.ts
CHANGED
|
@@ -3883,6 +3883,7 @@ export interface components {
|
|
|
3883
3883
|
/**
|
|
3884
3884
|
* Expected Price
|
|
3885
3885
|
* @description Expected price for premium domain confirmation
|
|
3886
|
+
* @example 12.50
|
|
3886
3887
|
*/
|
|
3887
3888
|
expected_price?: string | null;
|
|
3888
3889
|
/**
|
|
@@ -4033,6 +4034,7 @@ export interface components {
|
|
|
4033
4034
|
/**
|
|
4034
4035
|
* Expected Price
|
|
4035
4036
|
* @description Expected price for premium domain confirmation
|
|
4037
|
+
* @example 12.50
|
|
4036
4038
|
*/
|
|
4037
4039
|
expected_price?: string | null;
|
|
4038
4040
|
/**
|
|
@@ -4442,6 +4444,7 @@ export interface components {
|
|
|
4442
4444
|
/**
|
|
4443
4445
|
* Expected Price
|
|
4444
4446
|
* @description Expected price for premium domain confirmation
|
|
4447
|
+
* @example 12.50
|
|
4445
4448
|
*/
|
|
4446
4449
|
expected_price?: string | null;
|
|
4447
4450
|
/** @description How long to extend the domain registration */
|
|
@@ -4597,6 +4600,7 @@ export interface components {
|
|
|
4597
4600
|
/**
|
|
4598
4601
|
* Expected Price
|
|
4599
4602
|
* @description Expected price for premium domain confirmation
|
|
4603
|
+
* @example 12.50
|
|
4600
4604
|
*/
|
|
4601
4605
|
expected_price?: string | null;
|
|
4602
4606
|
/**
|
|
@@ -4880,6 +4884,7 @@ export interface components {
|
|
|
4880
4884
|
/**
|
|
4881
4885
|
* Expected Price
|
|
4882
4886
|
* @description Expected price for premium domain confirmation
|
|
4887
|
+
* @example 12.50
|
|
4883
4888
|
*/
|
|
4884
4889
|
expected_price?: string | null;
|
|
4885
4890
|
/**
|
|
@@ -4925,6 +4930,7 @@ export interface components {
|
|
|
4925
4930
|
/**
|
|
4926
4931
|
* Expected Price
|
|
4927
4932
|
* @description Expected price for premium domain confirmation
|
|
4933
|
+
* @example 12.50
|
|
4928
4934
|
*/
|
|
4929
4935
|
expected_price?: string | null;
|
|
4930
4936
|
/**
|
|
@@ -12906,6 +12912,7 @@ export interface operations {
|
|
|
12906
12912
|
};
|
|
12907
12913
|
content: {
|
|
12908
12914
|
/** @example {
|
|
12915
|
+
* "code": "ERROR_POLICY_VALIDATION",
|
|
12909
12916
|
* "detail": "Additional error context.",
|
|
12910
12917
|
* "status": 422,
|
|
12911
12918
|
* "title": "Policy Validation Error",
|
|
@@ -13168,6 +13175,7 @@ export interface operations {
|
|
|
13168
13175
|
};
|
|
13169
13176
|
content: {
|
|
13170
13177
|
/** @example {
|
|
13178
|
+
* "code": "ERROR_POLICY_VALIDATION",
|
|
13171
13179
|
* "detail": "Additional error context.",
|
|
13172
13180
|
* "status": 422,
|
|
13173
13181
|
* "title": "Policy Validation Error",
|