@opusdns/api 0.234.0 → 0.235.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 +5 -1
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -4152,6 +4152,8 @@ export const REPORT_TYPE = {
|
|
|
4152
4152
|
DOMAIN_INVENTORY: "domain_inventory",
|
|
4153
4153
|
DNS_ZONE_SUMMARY: "dns_zone_summary",
|
|
4154
4154
|
DNS_ZONE_RECORDS: "dns_zone_records",
|
|
4155
|
+
BILLING_TRANSACTIONS: "billing_transactions",
|
|
4156
|
+
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
4155
4157
|
} as const satisfies Record<string, ReportType>;
|
|
4156
4158
|
|
|
4157
4159
|
/**
|
|
@@ -4178,7 +4180,9 @@ export const REPORT_TYPE = {
|
|
|
4178
4180
|
export const REPORT_TYPE_VALUES = [
|
|
4179
4181
|
'domain_inventory',
|
|
4180
4182
|
'dns_zone_summary',
|
|
4181
|
-
'dns_zone_records'
|
|
4183
|
+
'dns_zone_records',
|
|
4184
|
+
'billing_transactions',
|
|
4185
|
+
'billing_transactions_monthly'
|
|
4182
4186
|
] as const satisfies [string, ...string[]] | ReportType[];
|
|
4183
4187
|
|
|
4184
4188
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -8275,6 +8275,8 @@ components:
|
|
|
8275
8275
|
- domain_inventory
|
|
8276
8276
|
- dns_zone_summary
|
|
8277
8277
|
- dns_zone_records
|
|
8278
|
+
- billing_transactions
|
|
8279
|
+
- billing_transactions_monthly
|
|
8278
8280
|
title: ReportType
|
|
8279
8281
|
type: string
|
|
8280
8282
|
RequestHistory:
|
|
@@ -9654,7 +9656,7 @@ info:
|
|
|
9654
9656
|
\n\n"
|
|
9655
9657
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9656
9658
|
title: OpusDNS API
|
|
9657
|
-
version: 2026-04-
|
|
9659
|
+
version: 2026-04-02-142331
|
|
9658
9660
|
x-logo:
|
|
9659
9661
|
altText: OpusDNS API Reference
|
|
9660
9662
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7660,7 +7660,7 @@ export interface components {
|
|
|
7660
7660
|
* ReportType
|
|
7661
7661
|
* @enum {string}
|
|
7662
7662
|
*/
|
|
7663
|
-
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records";
|
|
7663
|
+
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "billing_transactions" | "billing_transactions_monthly";
|
|
7664
7664
|
/** RequestHistory */
|
|
7665
7665
|
RequestHistory: {
|
|
7666
7666
|
/**
|