@opusdns/api 1.11.0 → 1.12.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": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.11.0",
6
+ "version": "1.12.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -1364,6 +1364,7 @@ export const KEY_DNS_ZONE_NAME = 'name' satisfies keyof DnsZone;
1364
1364
  export const KEY_DNS_ZONE_RRSETS = 'rrsets' satisfies keyof DnsZone;
1365
1365
  export const KEY_DNS_ZONE_TAGS = 'tags' satisfies keyof DnsZone;
1366
1366
  export const KEY_DNS_ZONE_UPDATED_ON = 'updated_on' satisfies keyof DnsZone;
1367
+ export const KEY_DNS_ZONE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZone;
1367
1368
 
1368
1369
  export const KEYS_DNS_ZONE = [
1369
1370
  KEY_DNS_ZONE_CREATED_ON,
@@ -1374,6 +1375,7 @@ export const KEYS_DNS_ZONE = [
1374
1375
  KEY_DNS_ZONE_RRSETS,
1375
1376
  KEY_DNS_ZONE_TAGS,
1376
1377
  KEY_DNS_ZONE_UPDATED_ON,
1378
+ KEY_DNS_ZONE_VANITY_NAMESERVER_SET_ID,
1377
1379
  ] as const satisfies (keyof DnsZone)[];
1378
1380
 
1379
1381
  export const KEY_DNS_ZONE_RRSETS_CREATE_RRSETS = 'rrsets' satisfies keyof DnsZoneRrsetsCreate;
package/src/openapi.yaml CHANGED
@@ -2842,6 +2842,18 @@ components:
2842
2842
  format: date-time
2843
2843
  title: Updated On
2844
2844
  type: string
2845
+ vanity_nameserver_set_id:
2846
+ anyOf:
2847
+ - examples:
2848
+ - vns_01h45ytscbebyvny4gc8cr8ma2
2849
+ format: typeid
2850
+ pattern: ^vns_[0-7][0-9a-hjkmnpq-tv-z]{25}$
2851
+ type: string
2852
+ x-typeid-prefix: vns
2853
+ - type: 'null'
2854
+ description: Vanity NS set whose apex NS + SOA brand this zone, or null
2855
+ when the zone uses the system default nameservers.
2856
+ title: Vanity Nameserver Set Id
2845
2857
  required:
2846
2858
  - name
2847
2859
  - dns_zone_id
@@ -11989,7 +12001,7 @@ info:
11989
12001
  \n\n"
11990
12002
  summary: OpusDNS - your gateway to a seamless domain management experience.
11991
12003
  title: OpusDNS API
11992
- version: 2026-06-11-134841
12004
+ version: 2026-06-11-173831
11993
12005
  x-logo:
11994
12006
  altText: OpusDNS API Reference
11995
12007
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -4364,6 +4364,11 @@ export interface components {
4364
4364
  * @description The date/time the entry was last updated on
4365
4365
  */
4366
4366
  updated_on?: Date;
4367
+ /**
4368
+ * Vanity Nameserver Set Id
4369
+ * @description Vanity NS set whose apex NS + SOA brand this zone, or null when the zone uses the system default nameservers.
4370
+ */
4371
+ vanity_nameserver_set_id?: TypeId<"vns"> | null;
4367
4372
  };
4368
4373
  /** DnsZoneRrsetsCreate */
4369
4374
  DnsZoneRrsetsCreate: {