@opusdns/api 0.260.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 +4 -0
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -4179,6 +4179,8 @@ export const REPORT_TYPE = {
|
|
|
4179
4179
|
DNS_ZONE_SUMMARY: "dns_zone_summary",
|
|
4180
4180
|
DNS_ZONE_RECORDS: "dns_zone_records",
|
|
4181
4181
|
DOMAIN_FORWARDS: "domain_forwards",
|
|
4182
|
+
EXPIRING_DOMAINS: "expiring_domains",
|
|
4183
|
+
EMAIL_FORWARDS: "email_forwards",
|
|
4182
4184
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
4183
4185
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
4184
4186
|
} as const satisfies Record<string, ReportType>;
|
|
@@ -4209,6 +4211,8 @@ export const REPORT_TYPE_VALUES = [
|
|
|
4209
4211
|
'dns_zone_summary',
|
|
4210
4212
|
'dns_zone_records',
|
|
4211
4213
|
'domain_forwards',
|
|
4214
|
+
'expiring_domains',
|
|
4215
|
+
'email_forwards',
|
|
4212
4216
|
'billing_transactions',
|
|
4213
4217
|
'billing_transactions_monthly'
|
|
4214
4218
|
] as const satisfies [string, ...string[]] | ReportType[];
|
package/src/openapi.yaml
CHANGED
|
@@ -8561,6 +8561,8 @@ components:
|
|
|
8561
8561
|
- dns_zone_summary
|
|
8562
8562
|
- dns_zone_records
|
|
8563
8563
|
- domain_forwards
|
|
8564
|
+
- expiring_domains
|
|
8565
|
+
- email_forwards
|
|
8564
8566
|
- billing_transactions
|
|
8565
8567
|
- billing_transactions_monthly
|
|
8566
8568
|
title: ReportType
|
|
@@ -10118,7 +10120,7 @@ info:
|
|
|
10118
10120
|
\n\n"
|
|
10119
10121
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10120
10122
|
title: OpusDNS API
|
|
10121
|
-
version: 2026-04-
|
|
10123
|
+
version: 2026-04-22-010242
|
|
10122
10124
|
x-logo:
|
|
10123
10125
|
altText: OpusDNS API Reference
|
|
10124
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" | "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
|
/**
|