@opusdns/api 1.178.0 → 1.179.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/keys.ts +14 -14
- package/src/helpers/schemas.d.ts +1 -1
- package/src/openapi.yaml +4 -4
- package/src/schema.d.ts +3 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -193,7 +193,7 @@ import type {
|
|
|
193
193
|
DomainSearch,
|
|
194
194
|
DomainSearchSuggestionPriceData,
|
|
195
195
|
DomainSearchSuggestionWithPrice,
|
|
196
|
-
|
|
196
|
+
DomainStatisticsBreakdownRow,
|
|
197
197
|
DomainStatisticsBucket,
|
|
198
198
|
DomainStatistics,
|
|
199
199
|
DomainStatisticsTotals,
|
|
@@ -2783,19 +2783,19 @@ export const KEYS_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE = [
|
|
|
2783
2783
|
KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_RENEWAL_PRICE,
|
|
2784
2784
|
] as const satisfies (keyof DomainSearchSuggestionWithPrice)[];
|
|
2785
2785
|
|
|
2786
|
-
export const
|
|
2787
|
-
export const
|
|
2788
|
-
export const
|
|
2789
|
-
export const
|
|
2790
|
-
export const
|
|
2791
|
-
|
|
2792
|
-
export const
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
] as const satisfies (keyof
|
|
2786
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_CREATE = 'create' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2787
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_KEY = 'key' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2788
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_LABEL = 'label' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2789
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TOTAL = 'total' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2790
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER = 'transfer' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2791
|
+
|
|
2792
|
+
export const KEYS_DOMAIN_STATISTICS_BREAKDOWN_ROW = [
|
|
2793
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_CREATE,
|
|
2794
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_KEY,
|
|
2795
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_LABEL,
|
|
2796
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TOTAL,
|
|
2797
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER,
|
|
2798
|
+
] as const satisfies (keyof DomainStatisticsBreakdownRow)[];
|
|
2799
2799
|
|
|
2800
2800
|
export const KEY_DOMAIN_STATISTICS_BUCKET_CREATE = 'create' satisfies keyof DomainStatisticsBucket;
|
|
2801
2801
|
export const KEY_DOMAIN_STATISTICS_BUCKET_PARTIAL = 'partial' satisfies keyof DomainStatisticsBucket;
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -239,7 +239,7 @@ export type DomainSearchSuggestionPriceData = components['schemas']['DomainSearc
|
|
|
239
239
|
export type DomainSearchSuggestionWithPrice = components['schemas']['DomainSearchSuggestionWithPrice'];
|
|
240
240
|
export type DomainSortField = components['schemas']['DomainSortField'];
|
|
241
241
|
export type DomainStatisticsBreakdown = components['schemas']['DomainStatisticsBreakdown'];
|
|
242
|
-
export type
|
|
242
|
+
export type DomainStatisticsBreakdownRow = components['schemas']['DomainStatisticsBreakdownRowResponse'];
|
|
243
243
|
export type DomainStatisticsBucket = components['schemas']['DomainStatisticsBucketResponse'];
|
|
244
244
|
export type DomainStatistics = components['schemas']['DomainStatisticsResponse'];
|
|
245
245
|
export type DomainStatisticsTotals = components['schemas']['DomainStatisticsTotalsResponse'];
|
package/src/openapi.yaml
CHANGED
|
@@ -6170,7 +6170,7 @@ components:
|
|
|
6170
6170
|
- tld
|
|
6171
6171
|
title: DomainStatisticsBreakdown
|
|
6172
6172
|
type: string
|
|
6173
|
-
|
|
6173
|
+
DomainStatisticsBreakdownRowResponse:
|
|
6174
6174
|
properties:
|
|
6175
6175
|
create:
|
|
6176
6176
|
title: Create
|
|
@@ -6197,7 +6197,7 @@ components:
|
|
|
6197
6197
|
- create
|
|
6198
6198
|
- transfer
|
|
6199
6199
|
- total
|
|
6200
|
-
title:
|
|
6200
|
+
title: DomainStatisticsBreakdownRowResponse
|
|
6201
6201
|
type: object
|
|
6202
6202
|
DomainStatisticsBucketResponse:
|
|
6203
6203
|
properties:
|
|
@@ -6233,7 +6233,7 @@ components:
|
|
|
6233
6233
|
description: Top organizations or TLDs by acquisitions in the window; empty
|
|
6234
6234
|
unless requested
|
|
6235
6235
|
items:
|
|
6236
|
-
$ref: '#/components/schemas/
|
|
6236
|
+
$ref: '#/components/schemas/DomainStatisticsBreakdownRowResponse'
|
|
6237
6237
|
title: Breakdown
|
|
6238
6238
|
type: array
|
|
6239
6239
|
buckets:
|
|
@@ -16949,7 +16949,7 @@ info:
|
|
|
16949
16949
|
\n\n"
|
|
16950
16950
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16951
16951
|
title: OpusDNS API
|
|
16952
|
-
version: 2026-09-14-
|
|
16952
|
+
version: 2026-09-14-124237
|
|
16953
16953
|
x-logo:
|
|
16954
16954
|
altText: OpusDNS API Reference
|
|
16955
16955
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7200,8 +7200,8 @@ export interface components {
|
|
|
7200
7200
|
* @enum {string}
|
|
7201
7201
|
*/
|
|
7202
7202
|
DomainStatisticsBreakdown: "none" | "organization" | "tld";
|
|
7203
|
-
/**
|
|
7204
|
-
|
|
7203
|
+
/** DomainStatisticsBreakdownRowResponse */
|
|
7204
|
+
DomainStatisticsBreakdownRowResponse: {
|
|
7205
7205
|
/** Create */
|
|
7206
7206
|
create: number;
|
|
7207
7207
|
/**
|
|
@@ -7249,7 +7249,7 @@ export interface components {
|
|
|
7249
7249
|
* Breakdown
|
|
7250
7250
|
* @description Top organizations or TLDs by acquisitions in the window; empty unless requested
|
|
7251
7251
|
*/
|
|
7252
|
-
breakdown: components["schemas"]["
|
|
7252
|
+
breakdown: components["schemas"]["DomainStatisticsBreakdownRowResponse"][];
|
|
7253
7253
|
/**
|
|
7254
7254
|
* Buckets
|
|
7255
7255
|
* @description One entry per bucket the window touches, oldest first, including empty buckets
|