@opusdns/api 0.261.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 +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/openapi.yaml +5 -4
- package/src/schema.d.ts +2 -3
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -4180,6 +4180,7 @@ export const REPORT_TYPE = {
|
|
|
4180
4180
|
DNS_ZONE_RECORDS: "dns_zone_records",
|
|
4181
4181
|
DOMAIN_FORWARDS: "domain_forwards",
|
|
4182
4182
|
EXPIRING_DOMAINS: "expiring_domains",
|
|
4183
|
+
EMAIL_FORWARDS: "email_forwards",
|
|
4183
4184
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
4184
4185
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
4185
4186
|
} as const satisfies Record<string, ReportType>;
|
|
@@ -4211,6 +4212,7 @@ export const REPORT_TYPE_VALUES = [
|
|
|
4211
4212
|
'dns_zone_records',
|
|
4212
4213
|
'domain_forwards',
|
|
4213
4214
|
'expiring_domains',
|
|
4215
|
+
'email_forwards',
|
|
4214
4216
|
'billing_transactions',
|
|
4215
4217
|
'billing_transactions_monthly'
|
|
4216
4218
|
] as const satisfies [string, ...string[]] | ReportType[];
|
package/src/openapi.yaml
CHANGED
|
@@ -2401,8 +2401,9 @@ components:
|
|
|
2401
2401
|
DnsZoneUpdatePayloadData:
|
|
2402
2402
|
properties:
|
|
2403
2403
|
dnssec_status:
|
|
2404
|
-
|
|
2405
|
-
|
|
2404
|
+
anyOf:
|
|
2405
|
+
- $ref: '#/components/schemas/DnssecStatus'
|
|
2406
|
+
- type: 'null'
|
|
2406
2407
|
name:
|
|
2407
2408
|
title: Name
|
|
2408
2409
|
type: string
|
|
@@ -8562,6 +8563,7 @@ components:
|
|
|
8562
8563
|
- dns_zone_records
|
|
8563
8564
|
- domain_forwards
|
|
8564
8565
|
- expiring_domains
|
|
8566
|
+
- email_forwards
|
|
8565
8567
|
- billing_transactions
|
|
8566
8568
|
- billing_transactions_monthly
|
|
8567
8569
|
title: ReportType
|
|
@@ -10119,7 +10121,7 @@ info:
|
|
|
10119
10121
|
\n\n"
|
|
10120
10122
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10121
10123
|
title: OpusDNS API
|
|
10122
|
-
version: 2026-04-
|
|
10124
|
+
version: 2026-04-23-132311
|
|
10123
10125
|
x-logo:
|
|
10124
10126
|
altText: OpusDNS API Reference
|
|
10125
10127
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -18769,7 +18771,6 @@ paths:
|
|
|
18769
18771
|
- command: dns_zone_update
|
|
18770
18772
|
idempotency_key: update-zone-example-com
|
|
18771
18773
|
payload:
|
|
18772
|
-
dnssec_status: disabled
|
|
18773
18774
|
name: example.com
|
|
18774
18775
|
rrsets:
|
|
18775
18776
|
- name: '@'
|
package/src/schema.d.ts
CHANGED
|
@@ -3888,8 +3888,7 @@ export interface components {
|
|
|
3888
3888
|
};
|
|
3889
3889
|
/** DnsZoneUpdatePayloadData */
|
|
3890
3890
|
DnsZoneUpdatePayloadData: {
|
|
3891
|
-
|
|
3892
|
-
dnssec_status: components["schemas"]["DnssecStatus"];
|
|
3891
|
+
dnssec_status?: components["schemas"]["DnssecStatus"] | null;
|
|
3893
3892
|
/** Name */
|
|
3894
3893
|
name: string;
|
|
3895
3894
|
/** Rrsets */
|
|
@@ -7924,7 +7923,7 @@ export interface components {
|
|
|
7924
7923
|
* ReportType
|
|
7925
7924
|
* @enum {string}
|
|
7926
7925
|
*/
|
|
7927
|
-
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "billing_transactions" | "billing_transactions_monthly";
|
|
7926
|
+
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "email_forwards" | "billing_transactions" | "billing_transactions_monthly";
|
|
7928
7927
|
/** RequestHistory */
|
|
7929
7928
|
RequestHistory: {
|
|
7930
7929
|
/**
|