@opusdns/api 1.102.0 → 1.103.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/keys.ts +2 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2922,10 +2922,12 @@ export const KEYS_DOMAIN_WITHDRAW_REQUEST = [
|
|
|
2922
2922
|
KEY_DOMAIN_WITHDRAW_REQUEST_ZONE_DELETE,
|
|
2923
2923
|
] as const satisfies (keyof DomainWithdrawRequest)[];
|
|
2924
2924
|
|
|
2925
|
+
export const KEY_DOMAIN_WITHDRAW_DETAIL = 'detail' satisfies keyof DomainWithdraw;
|
|
2925
2926
|
export const KEY_DOMAIN_WITHDRAW_NAME = 'name' satisfies keyof DomainWithdraw;
|
|
2926
2927
|
export const KEY_DOMAIN_WITHDRAW_SUCCESS = 'success' satisfies keyof DomainWithdraw;
|
|
2927
2928
|
|
|
2928
2929
|
export const KEYS_DOMAIN_WITHDRAW = [
|
|
2930
|
+
KEY_DOMAIN_WITHDRAW_DETAIL,
|
|
2929
2931
|
KEY_DOMAIN_WITHDRAW_NAME,
|
|
2930
2932
|
KEY_DOMAIN_WITHDRAW_SUCCESS,
|
|
2931
2933
|
] as const satisfies (keyof DomainWithdraw)[];
|
package/src/openapi.yaml
CHANGED
|
@@ -6430,6 +6430,12 @@ components:
|
|
|
6430
6430
|
type: object
|
|
6431
6431
|
DomainWithdrawResponse:
|
|
6432
6432
|
properties:
|
|
6433
|
+
detail:
|
|
6434
|
+
anyOf:
|
|
6435
|
+
- type: string
|
|
6436
|
+
- type: 'null'
|
|
6437
|
+
description: Why the withdraw did not succeed
|
|
6438
|
+
title: Detail
|
|
6433
6439
|
name:
|
|
6434
6440
|
description: The domain name that was withdrawn
|
|
6435
6441
|
title: Name
|
|
@@ -15017,7 +15023,7 @@ info:
|
|
|
15017
15023
|
\n\n"
|
|
15018
15024
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15019
15025
|
title: OpusDNS API
|
|
15020
|
-
version: 2026-08-07-
|
|
15026
|
+
version: 2026-08-07-161644
|
|
15021
15027
|
x-logo:
|
|
15022
15028
|
altText: OpusDNS API Reference
|
|
15023
15029
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7091,6 +7091,11 @@ export interface components {
|
|
|
7091
7091
|
};
|
|
7092
7092
|
/** DomainWithdrawResponse */
|
|
7093
7093
|
DomainWithdrawResponse: {
|
|
7094
|
+
/**
|
|
7095
|
+
* Detail
|
|
7096
|
+
* @description Why the withdraw did not succeed
|
|
7097
|
+
*/
|
|
7098
|
+
detail?: string | null;
|
|
7094
7099
|
/**
|
|
7095
7100
|
* Name
|
|
7096
7101
|
* @description The domain name that was withdrawn
|