@opusdns/api 0.142.0 → 0.143.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.142.0",
6
+ "version": "0.143.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -9457,7 +9457,6 @@ export const KEY_DOMAIN_RESTORE_REQUEST_AUTO_RENEW: keyof DomainRestoreRequest =
9457
9457
  *
9458
9458
  * Reason for restoring the domain
9459
9459
  *
9460
- * @type {string}
9461
9460
  *
9462
9461
  *
9463
9462
  * @remarks
package/src/openapi.yaml CHANGED
@@ -2244,9 +2244,11 @@ components:
2244
2244
  title: Auto Renew
2245
2245
  type: boolean
2246
2246
  reason:
2247
+ anyOf:
2248
+ - type: string
2249
+ - type: 'null'
2247
2250
  description: Reason for restoring the domain
2248
2251
  title: Reason
2249
- type: string
2250
2252
  required:
2251
2253
  - reason
2252
2254
  title: DomainRestoreRequest
@@ -6484,7 +6486,7 @@ info:
6484
6486
  '
6485
6487
  summary: OpusDNS - your gateway to a seamless domain management experience.
6486
6488
  title: OpusDNS API
6487
- version: 2026-01-08-111822
6489
+ version: 2026-01-08-132858
6488
6490
  x-logo:
6489
6491
  altText: OpusDNS API Reference
6490
6492
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -3228,7 +3228,7 @@ export interface components {
3228
3228
  * Reason
3229
3229
  * @description Reason for restoring the domain
3230
3230
  */
3231
- reason: string;
3231
+ reason: string | null;
3232
3232
  };
3233
3233
  /** DomainRestoreResponse */
3234
3234
  DomainRestoreResponse: {