@opusdns/api 0.9.0 → 0.10.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 +3 -3
- package/src/helpers/constants.ts +1863 -0
- package/src/helpers/index.ts +19 -0
- package/src/helpers/keys.ts +15719 -0
- package/src/helpers/requests.ts +3493 -0
- package/src/helpers/responses.ts +5428 -0
- package/src/helpers/schemas-arrays.ts +543 -0
- package/src/helpers/schemas.ts +2284 -0
- package/src/index.ts +2 -0
- package/src/openapi.yaml +12 -3
- package/src/schema.d.ts +396 -0
- package/src/types/constants.ts +109 -0
- package/src/types/keys.ts +1526 -4
- package/src/types/types.ts +470 -4
package/src/index.ts
ADDED
package/src/openapi.yaml
CHANGED
|
@@ -4064,7 +4064,7 @@ info:
|
|
|
4064
4064
|
'
|
|
4065
4065
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
4066
4066
|
title: OpusDNS API
|
|
4067
|
-
version: 2025-07-
|
|
4067
|
+
version: 2025-07-31-022547
|
|
4068
4068
|
x-logo:
|
|
4069
4069
|
altText: OpusDNS API Reference
|
|
4070
4070
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -5952,6 +5952,15 @@ paths:
|
|
|
5952
5952
|
title: Domain Management Error
|
|
5953
5953
|
tld: Additional error context.
|
|
5954
5954
|
type: domain-tld-not-available
|
|
5955
|
+
Domain Transfer Error:
|
|
5956
|
+
value:
|
|
5957
|
+
code: ERROR_DOMAIN_TRANSFER
|
|
5958
|
+
detail: An unspecified error occurred
|
|
5959
|
+
domain_name: Additional error context.
|
|
5960
|
+
reason: There was an error transferring the domain
|
|
5961
|
+
status: 400
|
|
5962
|
+
title: Domain Transfer Error
|
|
5963
|
+
type: domain-transfer
|
|
5955
5964
|
schema:
|
|
5956
5965
|
$ref: '#/components/schemas/Problem'
|
|
5957
5966
|
description: Bad Request
|
|
@@ -6420,11 +6429,11 @@ paths:
|
|
|
6420
6429
|
application/problem+json:
|
|
6421
6430
|
example:
|
|
6422
6431
|
code: ERROR_DOMAIN_TRANSFER
|
|
6423
|
-
detail:
|
|
6432
|
+
detail: An unspecified error occurred
|
|
6424
6433
|
domain_name: Additional error context.
|
|
6425
6434
|
reason: There was an error transferring the domain
|
|
6426
6435
|
status: 400
|
|
6427
|
-
title: Domain
|
|
6436
|
+
title: Domain Transfer Error
|
|
6428
6437
|
type: domain-transfer
|
|
6429
6438
|
schema:
|
|
6430
6439
|
$ref: '#/components/schemas/Problem'
|