@opusdns/api 0.49.0 → 0.50.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/responses.d.ts +2 -2
- package/src/openapi.yaml +8 -3
- package/src/schema.d.ts +8 -2
package/package.json
CHANGED
|
@@ -2674,9 +2674,9 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2674
2674
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2675
2675
|
*
|
|
2676
2676
|
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2677
|
-
* @see {@link
|
|
2677
|
+
* @see {@link Problem} - The actual schema type definition
|
|
2678
2678
|
*/
|
|
2679
|
-
export type PUT_DomainsByDomainReferenceDnssec_Response_422 =
|
|
2679
|
+
export type PUT_DomainsByDomainReferenceDnssec_Response_422 = Problem
|
|
2680
2680
|
|
|
2681
2681
|
/**
|
|
2682
2682
|
* Response types for POST DomainsByDomainReferenceDnssecDisable endpoint
|
package/src/openapi.yaml
CHANGED
|
@@ -5334,7 +5334,7 @@ info:
|
|
|
5334
5334
|
'
|
|
5335
5335
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5336
5336
|
title: OpusDNS API
|
|
5337
|
-
version: 2025-09-
|
|
5337
|
+
version: 2025-09-18-062613
|
|
5338
5338
|
x-logo:
|
|
5339
5339
|
altText: OpusDNS API Reference
|
|
5340
5340
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -7672,9 +7672,14 @@ paths:
|
|
|
7672
7672
|
'422':
|
|
7673
7673
|
content:
|
|
7674
7674
|
application/problem+json:
|
|
7675
|
+
example:
|
|
7676
|
+
detail: Additional error context.
|
|
7677
|
+
status: 422
|
|
7678
|
+
title: Policy Validation Error
|
|
7679
|
+
type: policy-validation-error
|
|
7675
7680
|
schema:
|
|
7676
|
-
$ref: '#/components/schemas/
|
|
7677
|
-
description:
|
|
7681
|
+
$ref: '#/components/schemas/Problem'
|
|
7682
|
+
description: Unprocessable Content
|
|
7678
7683
|
security:
|
|
7679
7684
|
- OAuth2PasswordBearer: []
|
|
7680
7685
|
summary: Update DNSSEC data
|
package/src/schema.d.ts
CHANGED
|
@@ -6782,13 +6782,19 @@ export interface operations {
|
|
|
6782
6782
|
"application/problem+json": components["schemas"]["Problem"];
|
|
6783
6783
|
};
|
|
6784
6784
|
};
|
|
6785
|
-
/** @description
|
|
6785
|
+
/** @description Unprocessable Content */
|
|
6786
6786
|
422: {
|
|
6787
6787
|
headers: {
|
|
6788
6788
|
[name: string]: unknown;
|
|
6789
6789
|
};
|
|
6790
6790
|
content: {
|
|
6791
|
-
|
|
6791
|
+
/** @example {
|
|
6792
|
+
* "detail": "Additional error context.",
|
|
6793
|
+
* "status": 422,
|
|
6794
|
+
* "title": "Policy Validation Error",
|
|
6795
|
+
* "type": "policy-validation-error"
|
|
6796
|
+
* } */
|
|
6797
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6792
6798
|
};
|
|
6793
6799
|
};
|
|
6794
6800
|
};
|