@opusdns/api 0.260.0 → 0.261.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
|
@@ -4179,6 +4179,7 @@ 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",
|
|
4182
4183
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
4183
4184
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
4184
4185
|
} as const satisfies Record<string, ReportType>;
|
|
@@ -4209,6 +4210,7 @@ export const REPORT_TYPE_VALUES = [
|
|
|
4209
4210
|
'dns_zone_summary',
|
|
4210
4211
|
'dns_zone_records',
|
|
4211
4212
|
'domain_forwards',
|
|
4213
|
+
'expiring_domains',
|
|
4212
4214
|
'billing_transactions',
|
|
4213
4215
|
'billing_transactions_monthly'
|
|
4214
4216
|
] as const satisfies [string, ...string[]] | ReportType[];
|
package/src/openapi.yaml
CHANGED
|
@@ -8561,6 +8561,7 @@ components:
|
|
|
8561
8561
|
- dns_zone_summary
|
|
8562
8562
|
- dns_zone_records
|
|
8563
8563
|
- domain_forwards
|
|
8564
|
+
- expiring_domains
|
|
8564
8565
|
- billing_transactions
|
|
8565
8566
|
- billing_transactions_monthly
|
|
8566
8567
|
title: ReportType
|
|
@@ -10118,7 +10119,7 @@ info:
|
|
|
10118
10119
|
\n\n"
|
|
10119
10120
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10120
10121
|
title: OpusDNS API
|
|
10121
|
-
version: 2026-04-21-
|
|
10122
|
+
version: 2026-04-21-224426
|
|
10122
10123
|
x-logo:
|
|
10123
10124
|
altText: OpusDNS API Reference
|
|
10124
10125
|
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" | "billing_transactions" | "billing_transactions_monthly";
|
|
7928
7928
|
/** RequestHistory */
|
|
7929
7929
|
RequestHistory: {
|
|
7930
7930
|
/**
|