@opusdns/api 1.55.0 → 1.57.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
|
@@ -1611,6 +1611,7 @@ export const REPORT_TYPE = {
|
|
|
1611
1611
|
REGISTRAR_PORTFOLIO_PDF: "registrar_portfolio_pdf",
|
|
1612
1612
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
1613
1613
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
1614
|
+
SUBORG_BILLING_TRANSACTIONS_MONTHLY: "suborg_billing_transactions_monthly",
|
|
1614
1615
|
} as const satisfies Record<string, ReportType>;
|
|
1615
1616
|
|
|
1616
1617
|
export const REPORT_TYPE_VALUES = [
|
|
@@ -1623,6 +1624,7 @@ export const REPORT_TYPE_VALUES = [
|
|
|
1623
1624
|
'registrar_portfolio_pdf',
|
|
1624
1625
|
'billing_transactions',
|
|
1625
1626
|
'billing_transactions_monthly',
|
|
1627
|
+
'suborg_billing_transactions_monthly',
|
|
1626
1628
|
] as const satisfies ReadonlyArray<ReportType>;
|
|
1627
1629
|
|
|
1628
1630
|
export const REQUEST_HISTORY_SORT_FIELD = {
|
package/src/openapi.yaml
CHANGED
|
@@ -11451,6 +11451,7 @@ components:
|
|
|
11451
11451
|
- registrar_portfolio_pdf
|
|
11452
11452
|
- billing_transactions
|
|
11453
11453
|
- billing_transactions_monthly
|
|
11454
|
+
- suborg_billing_transactions_monthly
|
|
11454
11455
|
title: ReportType
|
|
11455
11456
|
type: string
|
|
11456
11457
|
RequestHistory:
|
|
@@ -13866,7 +13867,7 @@ info:
|
|
|
13866
13867
|
\n\n"
|
|
13867
13868
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13868
13869
|
title: OpusDNS API
|
|
13869
|
-
version: 2026-07-14-
|
|
13870
|
+
version: 2026-07-14-201005
|
|
13870
13871
|
x-logo:
|
|
13871
13872
|
altText: OpusDNS API Reference
|
|
13872
13873
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -10247,7 +10247,7 @@ export interface components {
|
|
|
10247
10247
|
* ReportType
|
|
10248
10248
|
* @enum {string}
|
|
10249
10249
|
*/
|
|
10250
|
-
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "email_forwards" | "registrar_portfolio_pdf" | "billing_transactions" | "billing_transactions_monthly";
|
|
10250
|
+
ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "email_forwards" | "registrar_portfolio_pdf" | "billing_transactions" | "billing_transactions_monthly" | "suborg_billing_transactions_monthly";
|
|
10251
10251
|
/** RequestHistory */
|
|
10252
10252
|
RequestHistory: {
|
|
10253
10253
|
/**
|