@opusdns/api 0.261.0 → 0.262.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 +2 -1
- package/src/schema.d.ts +1 -1
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
|
@@ -8562,6 +8562,7 @@ components:
|
|
|
8562
8562
|
- dns_zone_records
|
|
8563
8563
|
- domain_forwards
|
|
8564
8564
|
- expiring_domains
|
|
8565
|
+
- email_forwards
|
|
8565
8566
|
- billing_transactions
|
|
8566
8567
|
- billing_transactions_monthly
|
|
8567
8568
|
title: ReportType
|
|
@@ -10119,7 +10120,7 @@ info:
|
|
|
10119
10120
|
\n\n"
|
|
10120
10121
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10121
10122
|
title: OpusDNS API
|
|
10122
|
-
version: 2026-04-
|
|
10123
|
+
version: 2026-04-22-010242
|
|
10123
10124
|
x-logo:
|
|
10124
10125
|
altText: OpusDNS API Reference
|
|
10125
10126
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7924,7 +7924,7 @@ export interface components {
|
|
|
7924
7924
|
* ReportType
|
|
7925
7925
|
* @enum {string}
|
|
7926
7926
|
*/
|
|
7927
|
-
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "billing_transactions" | "billing_transactions_monthly";
|
|
7927
|
+
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "email_forwards" | "billing_transactions" | "billing_transactions_monthly";
|
|
7928
7928
|
/** RequestHistory */
|
|
7929
7929
|
RequestHistory: {
|
|
7930
7930
|
/**
|