@opusdns/api 0.42.0 → 0.43.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 +7 -1
- package/src/openapi.yaml +4 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -538,6 +538,9 @@ export const DNS_RRSET_TYPE = {
|
|
|
538
538
|
TXT: "TXT",
|
|
539
539
|
SOA: "SOA",
|
|
540
540
|
SRV: "SRV",
|
|
541
|
+
SMIMEA: "SMIMEA",
|
|
542
|
+
TLSA: "TLSA",
|
|
543
|
+
URI: "URI",
|
|
541
544
|
} as const satisfies Record<string, DnsRrsetType>;
|
|
542
545
|
|
|
543
546
|
/**
|
|
@@ -574,7 +577,10 @@ export const DNS_RRSET_TYPE_VALUES = [
|
|
|
574
577
|
'PTR',
|
|
575
578
|
'TXT',
|
|
576
579
|
'SOA',
|
|
577
|
-
'SRV'
|
|
580
|
+
'SRV',
|
|
581
|
+
'SMIMEA',
|
|
582
|
+
'TLSA',
|
|
583
|
+
'URI'
|
|
578
584
|
] as const satisfies [string, ...string[]] | DnsRrsetType[];
|
|
579
585
|
|
|
580
586
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -987,6 +987,9 @@ components:
|
|
|
987
987
|
- TXT
|
|
988
988
|
- SOA
|
|
989
989
|
- SRV
|
|
990
|
+
- SMIMEA
|
|
991
|
+
- TLSA
|
|
992
|
+
- URI
|
|
990
993
|
title: DnsRrsetType
|
|
991
994
|
type: string
|
|
992
995
|
DnsRrsetWithOneRecordPatch:
|
|
@@ -5268,7 +5271,7 @@ info:
|
|
|
5268
5271
|
'
|
|
5269
5272
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5270
5273
|
title: OpusDNS API
|
|
5271
|
-
version: 2025-09-
|
|
5274
|
+
version: 2025-09-15-073932
|
|
5272
5275
|
x-logo:
|
|
5273
5276
|
altText: OpusDNS API Reference
|
|
5274
5277
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1878,7 +1878,7 @@ export interface components {
|
|
|
1878
1878
|
* DnsRrsetType
|
|
1879
1879
|
* @enum {string}
|
|
1880
1880
|
*/
|
|
1881
|
-
DnsRrsetType: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "DNSKEY" | "DS" | "MX" | "NS" | "PTR" | "TXT" | "SOA" | "SRV";
|
|
1881
|
+
DnsRrsetType: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "DNSKEY" | "DS" | "MX" | "NS" | "PTR" | "TXT" | "SOA" | "SRV" | "SMIMEA" | "TLSA" | "URI";
|
|
1882
1882
|
/** DnsRrsetWithOneRecordPatch */
|
|
1883
1883
|
DnsRrsetWithOneRecordPatch: {
|
|
1884
1884
|
/** Name */
|