@opusdns/api 0.135.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 +4 -5
- 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
|
@@ -257,7 +257,7 @@ components:
|
|
|
257
257
|
type: string
|
|
258
258
|
country:
|
|
259
259
|
description: The country of the contact
|
|
260
|
-
|
|
260
|
+
pattern: ^\w{2}$
|
|
261
261
|
title: Country
|
|
262
262
|
type: string
|
|
263
263
|
disclose:
|
|
@@ -382,7 +382,7 @@ components:
|
|
|
382
382
|
type: string
|
|
383
383
|
country:
|
|
384
384
|
description: The country of the contact
|
|
385
|
-
|
|
385
|
+
pattern: ^\w{2}$
|
|
386
386
|
title: Country
|
|
387
387
|
type: string
|
|
388
388
|
disclose:
|
|
@@ -495,7 +495,7 @@ components:
|
|
|
495
495
|
x-typeid-prefix: contact
|
|
496
496
|
country:
|
|
497
497
|
description: The country of the contact
|
|
498
|
-
|
|
498
|
+
pattern: ^\w{2}$
|
|
499
499
|
title: Country
|
|
500
500
|
type: string
|
|
501
501
|
created_on:
|
|
@@ -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