@opusdns/api 0.136.0 → 0.137.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/constants.ts +1 -3
- package/src/openapi.yaml +1 -2
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -3052,7 +3052,6 @@ export const RELATION_VALUES = [
|
|
|
3052
3052
|
export const RENEWAL_MODE = {
|
|
3053
3053
|
RENEW: "renew",
|
|
3054
3054
|
EXPIRE: "expire",
|
|
3055
|
-
DELETE: "delete",
|
|
3056
3055
|
} as const satisfies Record<string, RenewalMode>;
|
|
3057
3056
|
|
|
3058
3057
|
/**
|
|
@@ -3078,8 +3077,7 @@ export const RENEWAL_MODE = {
|
|
|
3078
3077
|
*/
|
|
3079
3078
|
export const RENEWAL_MODE_VALUES = [
|
|
3080
3079
|
'renew',
|
|
3081
|
-
'expire'
|
|
3082
|
-
'delete'
|
|
3080
|
+
'expire'
|
|
3083
3081
|
] as const satisfies [string, ...string[]] | RenewalMode[];
|
|
3084
3082
|
|
|
3085
3083
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -4939,7 +4939,6 @@ components:
|
|
|
4939
4939
|
enum:
|
|
4940
4940
|
- renew
|
|
4941
4941
|
- expire
|
|
4942
|
-
- delete
|
|
4943
4942
|
title: RenewalMode
|
|
4944
4943
|
type: string
|
|
4945
4944
|
RequestHistory:
|
|
@@ -6145,7 +6144,7 @@ info:
|
|
|
6145
6144
|
'
|
|
6146
6145
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6147
6146
|
title: OpusDNS API
|
|
6148
|
-
version: 2025-12-
|
|
6147
|
+
version: 2025-12-23-120441
|
|
6149
6148
|
x-logo:
|
|
6150
6149
|
altText: OpusDNS API Reference
|
|
6151
6150
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED