@opusdns/api 0.256.0 → 0.257.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
|
@@ -4178,6 +4178,7 @@ export const REPORT_TYPE = {
|
|
|
4178
4178
|
DOMAIN_INVENTORY: "domain_inventory",
|
|
4179
4179
|
DNS_ZONE_SUMMARY: "dns_zone_summary",
|
|
4180
4180
|
DNS_ZONE_RECORDS: "dns_zone_records",
|
|
4181
|
+
DOMAIN_FORWARDS: "domain_forwards",
|
|
4181
4182
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
4182
4183
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
4183
4184
|
} as const satisfies Record<string, ReportType>;
|
|
@@ -4207,6 +4208,7 @@ export const REPORT_TYPE_VALUES = [
|
|
|
4207
4208
|
'domain_inventory',
|
|
4208
4209
|
'dns_zone_summary',
|
|
4209
4210
|
'dns_zone_records',
|
|
4211
|
+
'domain_forwards',
|
|
4210
4212
|
'billing_transactions',
|
|
4211
4213
|
'billing_transactions_monthly'
|
|
4212
4214
|
] as const satisfies [string, ...string[]] | ReportType[];
|
package/src/openapi.yaml
CHANGED
|
@@ -8431,6 +8431,7 @@ components:
|
|
|
8431
8431
|
- domain_inventory
|
|
8432
8432
|
- dns_zone_summary
|
|
8433
8433
|
- dns_zone_records
|
|
8434
|
+
- domain_forwards
|
|
8434
8435
|
- billing_transactions
|
|
8435
8436
|
- billing_transactions_monthly
|
|
8436
8437
|
title: ReportType
|
|
@@ -9862,7 +9863,7 @@ info:
|
|
|
9862
9863
|
\n\n"
|
|
9863
9864
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9864
9865
|
title: OpusDNS API
|
|
9865
|
-
version: 2026-04-20-
|
|
9866
|
+
version: 2026-04-20-173548
|
|
9866
9867
|
x-logo:
|
|
9867
9868
|
altText: OpusDNS API Reference
|
|
9868
9869
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7770,7 +7770,7 @@ export interface components {
|
|
|
7770
7770
|
* ReportType
|
|
7771
7771
|
* @enum {string}
|
|
7772
7772
|
*/
|
|
7773
|
-
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "billing_transactions" | "billing_transactions_monthly";
|
|
7773
|
+
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "billing_transactions" | "billing_transactions_monthly";
|
|
7774
7774
|
/** RequestHistory */
|
|
7775
7775
|
RequestHistory: {
|
|
7776
7776
|
/**
|