@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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.136.0",
6
+ "version": "0.137.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -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-22-170801
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
@@ -4850,7 +4850,7 @@ export interface components {
4850
4850
  * RenewalMode
4851
4851
  * @enum {string}
4852
4852
  */
4853
- RenewalMode: "renew" | "expire" | "delete";
4853
+ RenewalMode: "renew" | "expire";
4854
4854
  /** RequestHistory */
4855
4855
  RequestHistory: {
4856
4856
  /**