@opusdns/api 1.182.0 → 1.184.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 +4 -3
- package/src/schema.d.ts +3 -3
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2064,6 +2064,7 @@ export const REPORT_TYPE = {
|
|
|
2064
2064
|
BILLING_TRANSACTIONS: "billing_transactions",
|
|
2065
2065
|
BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
|
|
2066
2066
|
SUBORG_BILLING_TRANSACTIONS_MONTHLY: "suborg_billing_transactions_monthly",
|
|
2067
|
+
AGP_DELETIONS: "agp_deletions",
|
|
2067
2068
|
} as const satisfies Record<string, ReportType>;
|
|
2068
2069
|
|
|
2069
2070
|
export const REPORT_TYPE_VALUES = [
|
|
@@ -2077,6 +2078,7 @@ export const REPORT_TYPE_VALUES = [
|
|
|
2077
2078
|
'billing_transactions',
|
|
2078
2079
|
'billing_transactions_monthly',
|
|
2079
2080
|
'suborg_billing_transactions_monthly',
|
|
2081
|
+
'agp_deletions',
|
|
2080
2082
|
] as const satisfies ReadonlyArray<ReportType>;
|
|
2081
2083
|
|
|
2082
2084
|
export const REQUEST_HISTORY_SORT_FIELD = {
|
package/src/openapi.yaml
CHANGED
|
@@ -5600,9 +5600,9 @@ components:
|
|
|
5600
5600
|
of results would multiply into a registry rate-limit problem.
|
|
5601
5601
|
|
|
5602
5602
|
|
|
5603
|
-
|
|
5603
|
+
Both the public list route and the internal domains-service list request
|
|
5604
5604
|
|
|
5605
|
-
|
|
5605
|
+
implement every member.'
|
|
5606
5606
|
enum:
|
|
5607
5607
|
- tags
|
|
5608
5608
|
- registrar_credential
|
|
@@ -13752,6 +13752,7 @@ components:
|
|
|
13752
13752
|
- billing_transactions
|
|
13753
13753
|
- billing_transactions_monthly
|
|
13754
13754
|
- suborg_billing_transactions_monthly
|
|
13755
|
+
- agp_deletions
|
|
13755
13756
|
title: ReportType
|
|
13756
13757
|
type: string
|
|
13757
13758
|
RequestHistory:
|
|
@@ -17057,7 +17058,7 @@ info:
|
|
|
17057
17058
|
\n\n"
|
|
17058
17059
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
17059
17060
|
title: OpusDNS API
|
|
17060
|
-
version: 2026-09-
|
|
17061
|
+
version: 2026-09-17-075228
|
|
17061
17062
|
x-logo:
|
|
17062
17063
|
altText: OpusDNS API Reference
|
|
17063
17064
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6809,8 +6809,8 @@ export interface components {
|
|
|
6809
6809
|
* costs a registry check plus a billing call per premium domain, which a page
|
|
6810
6810
|
* of results would multiply into a registry rate-limit problem.
|
|
6811
6811
|
*
|
|
6812
|
-
*
|
|
6813
|
-
*
|
|
6812
|
+
* Both the public list route and the internal domains-service list request
|
|
6813
|
+
* implement every member.
|
|
6814
6814
|
* @enum {string}
|
|
6815
6815
|
*/
|
|
6816
6816
|
DomainListIncludeField: "tags" | "registrar_credential";
|
|
@@ -12231,7 +12231,7 @@ export interface components {
|
|
|
12231
12231
|
* ReportType
|
|
12232
12232
|
* @enum {string}
|
|
12233
12233
|
*/
|
|
12234
|
-
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";
|
|
12234
|
+
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" | "agp_deletions";
|
|
12235
12235
|
/** RequestHistory */
|
|
12236
12236
|
RequestHistory: {
|
|
12237
12237
|
/**
|