@opusdns/api 0.262.0 → 0.263.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.262.0",
6
+ "version": "0.263.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
package/src/openapi.yaml CHANGED
@@ -2401,8 +2401,9 @@ components:
2401
2401
  DnsZoneUpdatePayloadData:
2402
2402
  properties:
2403
2403
  dnssec_status:
2404
- $ref: '#/components/schemas/DnssecStatus'
2405
- default: disabled
2404
+ anyOf:
2405
+ - $ref: '#/components/schemas/DnssecStatus'
2406
+ - type: 'null'
2406
2407
  name:
2407
2408
  title: Name
2408
2409
  type: string
@@ -10120,7 +10121,7 @@ info:
10120
10121
  \n\n"
10121
10122
  summary: OpusDNS - your gateway to a seamless domain management experience.
10122
10123
  title: OpusDNS API
10123
- version: 2026-04-22-010242
10124
+ version: 2026-04-23-132311
10124
10125
  x-logo:
10125
10126
  altText: OpusDNS API Reference
10126
10127
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -18770,7 +18771,6 @@ paths:
18770
18771
  - command: dns_zone_update
18771
18772
  idempotency_key: update-zone-example-com
18772
18773
  payload:
18773
- dnssec_status: disabled
18774
18774
  name: example.com
18775
18775
  rrsets:
18776
18776
  - name: '@'
package/src/schema.d.ts CHANGED
@@ -3888,8 +3888,7 @@ export interface components {
3888
3888
  };
3889
3889
  /** DnsZoneUpdatePayloadData */
3890
3890
  DnsZoneUpdatePayloadData: {
3891
- /** @default disabled */
3892
- dnssec_status: components["schemas"]["DnssecStatus"];
3891
+ dnssec_status?: components["schemas"]["DnssecStatus"] | null;
3893
3892
  /** Name */
3894
3893
  name: string;
3895
3894
  /** Rrsets */