@opusdns/api 1.179.0 → 1.181.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 +32 -0
- package/src/openapi.yaml +111 -6
- package/src/schema.d.ts +77 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -2784,33 +2784,54 @@ export const KEYS_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE = [
|
|
|
2784
2784
|
] as const satisfies (keyof DomainSearchSuggestionWithPrice)[];
|
|
2785
2785
|
|
|
2786
2786
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_CREATE = 'create' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2787
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_DELETE = 'delete' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2787
2788
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_KEY = 'key' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2788
2789
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_LABEL = 'label' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2790
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_NET = 'net' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2791
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_RENEW = 'renew' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2792
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_RESTORE = 'restore' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2789
2793
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TOTAL = 'total' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2790
2794
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER = 'transfer' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2795
|
+
export const KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER_OUT = 'transfer_out' satisfies keyof DomainStatisticsBreakdownRow;
|
|
2791
2796
|
|
|
2792
2797
|
export const KEYS_DOMAIN_STATISTICS_BREAKDOWN_ROW = [
|
|
2793
2798
|
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_CREATE,
|
|
2799
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_DELETE,
|
|
2794
2800
|
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_KEY,
|
|
2795
2801
|
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_LABEL,
|
|
2802
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_NET,
|
|
2803
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_RENEW,
|
|
2804
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_RESTORE,
|
|
2796
2805
|
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TOTAL,
|
|
2797
2806
|
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER,
|
|
2807
|
+
KEY_DOMAIN_STATISTICS_BREAKDOWN_ROW_TRANSFER_OUT,
|
|
2798
2808
|
] as const satisfies (keyof DomainStatisticsBreakdownRow)[];
|
|
2799
2809
|
|
|
2800
2810
|
export const KEY_DOMAIN_STATISTICS_BUCKET_CREATE = 'create' satisfies keyof DomainStatisticsBucket;
|
|
2811
|
+
export const KEY_DOMAIN_STATISTICS_BUCKET_DELETE = 'delete' satisfies keyof DomainStatisticsBucket;
|
|
2812
|
+
export const KEY_DOMAIN_STATISTICS_BUCKET_NET = 'net' satisfies keyof DomainStatisticsBucket;
|
|
2801
2813
|
export const KEY_DOMAIN_STATISTICS_BUCKET_PARTIAL = 'partial' satisfies keyof DomainStatisticsBucket;
|
|
2802
2814
|
export const KEY_DOMAIN_STATISTICS_BUCKET_PERIOD_START = 'period_start' satisfies keyof DomainStatisticsBucket;
|
|
2815
|
+
export const KEY_DOMAIN_STATISTICS_BUCKET_RENEW = 'renew' satisfies keyof DomainStatisticsBucket;
|
|
2816
|
+
export const KEY_DOMAIN_STATISTICS_BUCKET_RESTORE = 'restore' satisfies keyof DomainStatisticsBucket;
|
|
2803
2817
|
export const KEY_DOMAIN_STATISTICS_BUCKET_TRANSFER = 'transfer' satisfies keyof DomainStatisticsBucket;
|
|
2818
|
+
export const KEY_DOMAIN_STATISTICS_BUCKET_TRANSFER_OUT = 'transfer_out' satisfies keyof DomainStatisticsBucket;
|
|
2804
2819
|
|
|
2805
2820
|
export const KEYS_DOMAIN_STATISTICS_BUCKET = [
|
|
2806
2821
|
KEY_DOMAIN_STATISTICS_BUCKET_CREATE,
|
|
2822
|
+
KEY_DOMAIN_STATISTICS_BUCKET_DELETE,
|
|
2823
|
+
KEY_DOMAIN_STATISTICS_BUCKET_NET,
|
|
2807
2824
|
KEY_DOMAIN_STATISTICS_BUCKET_PARTIAL,
|
|
2808
2825
|
KEY_DOMAIN_STATISTICS_BUCKET_PERIOD_START,
|
|
2826
|
+
KEY_DOMAIN_STATISTICS_BUCKET_RENEW,
|
|
2827
|
+
KEY_DOMAIN_STATISTICS_BUCKET_RESTORE,
|
|
2809
2828
|
KEY_DOMAIN_STATISTICS_BUCKET_TRANSFER,
|
|
2829
|
+
KEY_DOMAIN_STATISTICS_BUCKET_TRANSFER_OUT,
|
|
2810
2830
|
] as const satisfies (keyof DomainStatisticsBucket)[];
|
|
2811
2831
|
|
|
2812
2832
|
export const KEY_DOMAIN_STATISTICS_BREAKDOWN = 'breakdown' satisfies keyof DomainStatistics;
|
|
2813
2833
|
export const KEY_DOMAIN_STATISTICS_BUCKETS = 'buckets' satisfies keyof DomainStatistics;
|
|
2834
|
+
export const KEY_DOMAIN_STATISTICS_DATA_AVAILABLE_FROM = 'data_available_from' satisfies keyof DomainStatistics;
|
|
2814
2835
|
export const KEY_DOMAIN_STATISTICS_END_DATE = 'end_date' satisfies keyof DomainStatistics;
|
|
2815
2836
|
export const KEY_DOMAIN_STATISTICS_GRANULARITY = 'granularity' satisfies keyof DomainStatistics;
|
|
2816
2837
|
export const KEY_DOMAIN_STATISTICS_ORGANIZATION_ID = 'organization_id' satisfies keyof DomainStatistics;
|
|
@@ -2820,6 +2841,7 @@ export const KEY_DOMAIN_STATISTICS_TOTALS = 'totals' satisfies keyof DomainStati
|
|
|
2820
2841
|
export const KEYS_DOMAIN_STATISTICS = [
|
|
2821
2842
|
KEY_DOMAIN_STATISTICS_BREAKDOWN,
|
|
2822
2843
|
KEY_DOMAIN_STATISTICS_BUCKETS,
|
|
2844
|
+
KEY_DOMAIN_STATISTICS_DATA_AVAILABLE_FROM,
|
|
2823
2845
|
KEY_DOMAIN_STATISTICS_END_DATE,
|
|
2824
2846
|
KEY_DOMAIN_STATISTICS_GRANULARITY,
|
|
2825
2847
|
KEY_DOMAIN_STATISTICS_ORGANIZATION_ID,
|
|
@@ -2828,13 +2850,23 @@ export const KEYS_DOMAIN_STATISTICS = [
|
|
|
2828
2850
|
] as const satisfies (keyof DomainStatistics)[];
|
|
2829
2851
|
|
|
2830
2852
|
export const KEY_DOMAIN_STATISTICS_TOTALS_CREATE = 'create' satisfies keyof DomainStatisticsTotals;
|
|
2853
|
+
export const KEY_DOMAIN_STATISTICS_TOTALS_DELETE = 'delete' satisfies keyof DomainStatisticsTotals;
|
|
2854
|
+
export const KEY_DOMAIN_STATISTICS_TOTALS_NET = 'net' satisfies keyof DomainStatisticsTotals;
|
|
2855
|
+
export const KEY_DOMAIN_STATISTICS_TOTALS_RENEW = 'renew' satisfies keyof DomainStatisticsTotals;
|
|
2856
|
+
export const KEY_DOMAIN_STATISTICS_TOTALS_RESTORE = 'restore' satisfies keyof DomainStatisticsTotals;
|
|
2831
2857
|
export const KEY_DOMAIN_STATISTICS_TOTALS_TOTAL = 'total' satisfies keyof DomainStatisticsTotals;
|
|
2832
2858
|
export const KEY_DOMAIN_STATISTICS_TOTALS_TRANSFER = 'transfer' satisfies keyof DomainStatisticsTotals;
|
|
2859
|
+
export const KEY_DOMAIN_STATISTICS_TOTALS_TRANSFER_OUT = 'transfer_out' satisfies keyof DomainStatisticsTotals;
|
|
2833
2860
|
|
|
2834
2861
|
export const KEYS_DOMAIN_STATISTICS_TOTALS = [
|
|
2835
2862
|
KEY_DOMAIN_STATISTICS_TOTALS_CREATE,
|
|
2863
|
+
KEY_DOMAIN_STATISTICS_TOTALS_DELETE,
|
|
2864
|
+
KEY_DOMAIN_STATISTICS_TOTALS_NET,
|
|
2865
|
+
KEY_DOMAIN_STATISTICS_TOTALS_RENEW,
|
|
2866
|
+
KEY_DOMAIN_STATISTICS_TOTALS_RESTORE,
|
|
2836
2867
|
KEY_DOMAIN_STATISTICS_TOTALS_TOTAL,
|
|
2837
2868
|
KEY_DOMAIN_STATISTICS_TOTALS_TRANSFER,
|
|
2869
|
+
KEY_DOMAIN_STATISTICS_TOTALS_TRANSFER_OUT,
|
|
2838
2870
|
] as const satisfies (keyof DomainStatisticsTotals)[];
|
|
2839
2871
|
|
|
2840
2872
|
export const KEY_DOMAIN_STATUS2_STATUS = 'status' satisfies keyof DomainStatus2;
|
package/src/openapi.yaml
CHANGED
|
@@ -6175,6 +6175,9 @@ components:
|
|
|
6175
6175
|
create:
|
|
6176
6176
|
title: Create
|
|
6177
6177
|
type: integer
|
|
6178
|
+
delete:
|
|
6179
|
+
title: Delete
|
|
6180
|
+
type: integer
|
|
6178
6181
|
key:
|
|
6179
6182
|
description: Organization id, or the TLD without the leading dot
|
|
6180
6183
|
title: Key
|
|
@@ -6185,18 +6188,38 @@ components:
|
|
|
6185
6188
|
- type: 'null'
|
|
6186
6189
|
description: Organization name; absent for TLD rows
|
|
6187
6190
|
title: Label
|
|
6191
|
+
net:
|
|
6192
|
+
description: Created plus transferred in, minus deleted and transferred
|
|
6193
|
+
out
|
|
6194
|
+
title: Net
|
|
6195
|
+
type: integer
|
|
6196
|
+
renew:
|
|
6197
|
+
title: Renew
|
|
6198
|
+
type: integer
|
|
6199
|
+
restore:
|
|
6200
|
+
title: Restore
|
|
6201
|
+
type: integer
|
|
6188
6202
|
total:
|
|
6203
|
+
description: Created plus transferred
|
|
6189
6204
|
title: Total
|
|
6190
6205
|
type: integer
|
|
6191
6206
|
transfer:
|
|
6192
6207
|
title: Transfer
|
|
6193
6208
|
type: integer
|
|
6209
|
+
transfer_out:
|
|
6210
|
+
title: Transfer Out
|
|
6211
|
+
type: integer
|
|
6194
6212
|
required:
|
|
6195
6213
|
- key
|
|
6196
6214
|
- label
|
|
6197
6215
|
- create
|
|
6198
6216
|
- transfer
|
|
6199
6217
|
- total
|
|
6218
|
+
- delete
|
|
6219
|
+
- transfer_out
|
|
6220
|
+
- renew
|
|
6221
|
+
- restore
|
|
6222
|
+
- net
|
|
6200
6223
|
title: DomainStatisticsBreakdownRowResponse
|
|
6201
6224
|
type: object
|
|
6202
6225
|
DomainStatisticsBucketResponse:
|
|
@@ -6205,6 +6228,15 @@ components:
|
|
|
6205
6228
|
description: Domains created in this bucket
|
|
6206
6229
|
title: Create
|
|
6207
6230
|
type: integer
|
|
6231
|
+
delete:
|
|
6232
|
+
description: Domains deleted in this bucket
|
|
6233
|
+
title: Delete
|
|
6234
|
+
type: integer
|
|
6235
|
+
net:
|
|
6236
|
+
description: Created plus transferred in, minus deleted and transferred
|
|
6237
|
+
out
|
|
6238
|
+
title: Net
|
|
6239
|
+
type: integer
|
|
6208
6240
|
partial:
|
|
6209
6241
|
description: The bucket reaches outside the requested window, so its counts
|
|
6210
6242
|
cover only part of its span and must not be read as a rise or fall against
|
|
@@ -6216,14 +6248,31 @@ components:
|
|
|
6216
6248
|
format: date
|
|
6217
6249
|
title: Period Start
|
|
6218
6250
|
type: string
|
|
6251
|
+
renew:
|
|
6252
|
+
description: Domain renewals in this bucket
|
|
6253
|
+
title: Renew
|
|
6254
|
+
type: integer
|
|
6255
|
+
restore:
|
|
6256
|
+
description: Domains restored in this bucket
|
|
6257
|
+
title: Restore
|
|
6258
|
+
type: integer
|
|
6219
6259
|
transfer:
|
|
6220
6260
|
description: Domains transferred in during this bucket
|
|
6221
6261
|
title: Transfer
|
|
6222
6262
|
type: integer
|
|
6263
|
+
transfer_out:
|
|
6264
|
+
description: Domains transferred away during this bucket
|
|
6265
|
+
title: Transfer Out
|
|
6266
|
+
type: integer
|
|
6223
6267
|
required:
|
|
6224
6268
|
- period_start
|
|
6225
6269
|
- create
|
|
6226
6270
|
- transfer
|
|
6271
|
+
- delete
|
|
6272
|
+
- transfer_out
|
|
6273
|
+
- renew
|
|
6274
|
+
- restore
|
|
6275
|
+
- net
|
|
6227
6276
|
- partial
|
|
6228
6277
|
title: DomainStatisticsBucketResponse
|
|
6229
6278
|
type: object
|
|
@@ -6243,6 +6292,16 @@ components:
|
|
|
6243
6292
|
$ref: '#/components/schemas/DomainStatisticsBucketResponse'
|
|
6244
6293
|
title: Buckets
|
|
6245
6294
|
type: array
|
|
6295
|
+
data_available_from:
|
|
6296
|
+
anyOf:
|
|
6297
|
+
- format: date-time
|
|
6298
|
+
type: string
|
|
6299
|
+
- type: 'null'
|
|
6300
|
+
description: Oldest day these statistics can report on. They are read from
|
|
6301
|
+
the domain event log, which starts later than the domains themselves,
|
|
6302
|
+
so a window reaching further back is empty before this instant rather
|
|
6303
|
+
than zero.
|
|
6304
|
+
title: Data Available From
|
|
6246
6305
|
end_date:
|
|
6247
6306
|
description: Last day of the window, inclusive
|
|
6248
6307
|
format: date
|
|
@@ -6275,6 +6334,7 @@ components:
|
|
|
6275
6334
|
- totals
|
|
6276
6335
|
- buckets
|
|
6277
6336
|
- breakdown
|
|
6337
|
+
- data_available_from
|
|
6278
6338
|
title: DomainStatisticsResponse
|
|
6279
6339
|
type: object
|
|
6280
6340
|
DomainStatisticsTotalsResponse:
|
|
@@ -6283,6 +6343,24 @@ components:
|
|
|
6283
6343
|
description: Domains created (newly registered) in the window
|
|
6284
6344
|
title: Create
|
|
6285
6345
|
type: integer
|
|
6346
|
+
delete:
|
|
6347
|
+
description: Domains deleted in the window
|
|
6348
|
+
title: Delete
|
|
6349
|
+
type: integer
|
|
6350
|
+
net:
|
|
6351
|
+
description: Created plus transferred in, minus deleted and transferred
|
|
6352
|
+
out
|
|
6353
|
+
title: Net
|
|
6354
|
+
type: integer
|
|
6355
|
+
renew:
|
|
6356
|
+
description: Domains renewed in the window, counted once per day a domain
|
|
6357
|
+
was renewed
|
|
6358
|
+
title: Renew
|
|
6359
|
+
type: integer
|
|
6360
|
+
restore:
|
|
6361
|
+
description: Domains restored from redemption in the window
|
|
6362
|
+
title: Restore
|
|
6363
|
+
type: integer
|
|
6286
6364
|
total:
|
|
6287
6365
|
description: Created plus transferred
|
|
6288
6366
|
title: Total
|
|
@@ -6291,10 +6369,19 @@ components:
|
|
|
6291
6369
|
description: Domains transferred to OpusDNS in the window
|
|
6292
6370
|
title: Transfer
|
|
6293
6371
|
type: integer
|
|
6372
|
+
transfer_out:
|
|
6373
|
+
description: Domains transferred away from OpusDNS in the window
|
|
6374
|
+
title: Transfer Out
|
|
6375
|
+
type: integer
|
|
6294
6376
|
required:
|
|
6295
6377
|
- create
|
|
6296
6378
|
- transfer
|
|
6297
6379
|
- total
|
|
6380
|
+
- delete
|
|
6381
|
+
- transfer_out
|
|
6382
|
+
- renew
|
|
6383
|
+
- restore
|
|
6384
|
+
- net
|
|
6298
6385
|
title: DomainStatisticsTotalsResponse
|
|
6299
6386
|
type: object
|
|
6300
6387
|
DomainStatus:
|
|
@@ -16949,7 +17036,7 @@ info:
|
|
|
16949
17036
|
\n\n"
|
|
16950
17037
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16951
17038
|
title: OpusDNS API
|
|
16952
|
-
version: 2026-09-
|
|
17039
|
+
version: 2026-09-15-153517
|
|
16953
17040
|
x-logo:
|
|
16954
17041
|
altText: OpusDNS API Reference
|
|
16955
17042
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -25024,6 +25111,14 @@ paths:
|
|
|
25024
25111
|
- type: string
|
|
25025
25112
|
- type: 'null'
|
|
25026
25113
|
title: Sld
|
|
25114
|
+
- in: query
|
|
25115
|
+
name: nameserver
|
|
25116
|
+
required: false
|
|
25117
|
+
schema:
|
|
25118
|
+
anyOf:
|
|
25119
|
+
- type: string
|
|
25120
|
+
- type: 'null'
|
|
25121
|
+
title: Nameserver
|
|
25027
25122
|
- in: query
|
|
25028
25123
|
name: transfer_lock
|
|
25029
25124
|
required: false
|
|
@@ -25541,9 +25636,11 @@ paths:
|
|
|
25541
25636
|
- domains:manage
|
|
25542
25637
|
/v1/domains/statistics:
|
|
25543
25638
|
get:
|
|
25544
|
-
description: 'Counts the domains
|
|
25545
|
-
|
|
25546
|
-
|
|
25639
|
+
description: 'Counts the domains that moved in or out of your organization''s
|
|
25640
|
+
portfolio in a window of whole days, bucketed by the requested granularity:
|
|
25641
|
+
creates (new registrations), inbound transfers, deletes, outbound transfers,
|
|
25642
|
+
renewals and restores, plus `net` (created and transferred in, minus deleted
|
|
25643
|
+
and transferred out).
|
|
25547
25644
|
|
|
25548
25645
|
|
|
25549
25646
|
Counts cover your organization and its sub-organizations, like the domain
|
|
@@ -25551,12 +25648,20 @@ paths:
|
|
|
25551
25648
|
is counted on the day OpusDNS took the order and a transfer on the day it
|
|
25552
25649
|
completed, so domains that have since been deleted still appear in the window
|
|
25553
25650
|
they were acquired in. Imported domains count as creates on the day they were
|
|
25554
|
-
imported.
|
|
25651
|
+
imported. Renewals and restores are counted once per day a domain was renewed
|
|
25652
|
+
or restored, so a domain renewed in two different months counts in both. Domains
|
|
25653
|
+
held at a connected external registrar are not included.
|
|
25555
25654
|
|
|
25556
25655
|
|
|
25557
25656
|
Every bucket the window touches is present, so the series can be charted as
|
|
25558
25657
|
is. A bucket marked `partial` reaches outside the window and covers only part
|
|
25559
|
-
of its span.
|
|
25658
|
+
of its span.
|
|
25659
|
+
|
|
25660
|
+
|
|
25661
|
+
These counts are read from the domain event log, which begins later than the
|
|
25662
|
+
domains themselves. `data_available_from` reports the oldest event it holds:
|
|
25663
|
+
a window reaching further back is empty before that instant rather than genuinely
|
|
25664
|
+
zero.'
|
|
25560
25665
|
operationId: get_domain_statistics_v1_domains_statistics_get
|
|
25561
25666
|
parameters:
|
|
25562
25667
|
- in: query
|
package/src/schema.d.ts
CHANGED
|
@@ -1185,11 +1185,13 @@ export interface paths {
|
|
|
1185
1185
|
};
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Get domain statistics
|
|
1188
|
-
* @description Counts the domains your organization
|
|
1188
|
+
* @description Counts the domains that moved in or out of your organization's portfolio in a window of whole days, bucketed by the requested granularity: creates (new registrations), inbound transfers, deletes, outbound transfers, renewals and restores, plus `net` (created and transferred in, minus deleted and transferred out).
|
|
1189
1189
|
*
|
|
1190
|
-
* Counts cover your organization and its sub-organizations, like the domain summary; `breakdown=organization` shows how they divide between them. A create is counted on the day OpusDNS took the order and a transfer on the day it completed, so domains that have since been deleted still appear in the window they were acquired in. Imported domains count as creates on the day they were imported. Domains held at a connected external registrar are not included.
|
|
1190
|
+
* Counts cover your organization and its sub-organizations, like the domain summary; `breakdown=organization` shows how they divide between them. A create is counted on the day OpusDNS took the order and a transfer on the day it completed, so domains that have since been deleted still appear in the window they were acquired in. Imported domains count as creates on the day they were imported. Renewals and restores are counted once per day a domain was renewed or restored, so a domain renewed in two different months counts in both. Domains held at a connected external registrar are not included.
|
|
1191
1191
|
*
|
|
1192
1192
|
* Every bucket the window touches is present, so the series can be charted as is. A bucket marked `partial` reaches outside the window and covers only part of its span.
|
|
1193
|
+
*
|
|
1194
|
+
* These counts are read from the domain event log, which begins later than the domains themselves. `data_available_from` reports the oldest event it holds: a window reaching further back is empty before that instant rather than genuinely zero.
|
|
1193
1195
|
*/
|
|
1194
1196
|
get: operations["get_domain_statistics_v1_domains_statistics_get"];
|
|
1195
1197
|
put?: never;
|
|
@@ -7204,6 +7206,8 @@ export interface components {
|
|
|
7204
7206
|
DomainStatisticsBreakdownRowResponse: {
|
|
7205
7207
|
/** Create */
|
|
7206
7208
|
create: number;
|
|
7209
|
+
/** Delete */
|
|
7210
|
+
delete: number;
|
|
7207
7211
|
/**
|
|
7208
7212
|
* Key
|
|
7209
7213
|
* @description Organization id, or the TLD without the leading dot
|
|
@@ -7214,10 +7218,24 @@ export interface components {
|
|
|
7214
7218
|
* @description Organization name; absent for TLD rows
|
|
7215
7219
|
*/
|
|
7216
7220
|
label: string | null;
|
|
7217
|
-
/**
|
|
7221
|
+
/**
|
|
7222
|
+
* Net
|
|
7223
|
+
* @description Created plus transferred in, minus deleted and transferred out
|
|
7224
|
+
*/
|
|
7225
|
+
net: number;
|
|
7226
|
+
/** Renew */
|
|
7227
|
+
renew: number;
|
|
7228
|
+
/** Restore */
|
|
7229
|
+
restore: number;
|
|
7230
|
+
/**
|
|
7231
|
+
* Total
|
|
7232
|
+
* @description Created plus transferred
|
|
7233
|
+
*/
|
|
7218
7234
|
total: number;
|
|
7219
7235
|
/** Transfer */
|
|
7220
7236
|
transfer: number;
|
|
7237
|
+
/** Transfer Out */
|
|
7238
|
+
transfer_out: number;
|
|
7221
7239
|
};
|
|
7222
7240
|
/** DomainStatisticsBucketResponse */
|
|
7223
7241
|
DomainStatisticsBucketResponse: {
|
|
@@ -7226,6 +7244,16 @@ export interface components {
|
|
|
7226
7244
|
* @description Domains created in this bucket
|
|
7227
7245
|
*/
|
|
7228
7246
|
create: number;
|
|
7247
|
+
/**
|
|
7248
|
+
* Delete
|
|
7249
|
+
* @description Domains deleted in this bucket
|
|
7250
|
+
*/
|
|
7251
|
+
delete: number;
|
|
7252
|
+
/**
|
|
7253
|
+
* Net
|
|
7254
|
+
* @description Created plus transferred in, minus deleted and transferred out
|
|
7255
|
+
*/
|
|
7256
|
+
net: number;
|
|
7229
7257
|
/**
|
|
7230
7258
|
* Partial
|
|
7231
7259
|
* @description The bucket reaches outside the requested window, so its counts cover only part of its span and must not be read as a rise or fall against its neighbours
|
|
@@ -7237,11 +7265,26 @@ export interface components {
|
|
|
7237
7265
|
* @description First day of the bucket (UTC)
|
|
7238
7266
|
*/
|
|
7239
7267
|
period_start: string;
|
|
7268
|
+
/**
|
|
7269
|
+
* Renew
|
|
7270
|
+
* @description Domain renewals in this bucket
|
|
7271
|
+
*/
|
|
7272
|
+
renew: number;
|
|
7273
|
+
/**
|
|
7274
|
+
* Restore
|
|
7275
|
+
* @description Domains restored in this bucket
|
|
7276
|
+
*/
|
|
7277
|
+
restore: number;
|
|
7240
7278
|
/**
|
|
7241
7279
|
* Transfer
|
|
7242
7280
|
* @description Domains transferred in during this bucket
|
|
7243
7281
|
*/
|
|
7244
7282
|
transfer: number;
|
|
7283
|
+
/**
|
|
7284
|
+
* Transfer Out
|
|
7285
|
+
* @description Domains transferred away during this bucket
|
|
7286
|
+
*/
|
|
7287
|
+
transfer_out: number;
|
|
7245
7288
|
};
|
|
7246
7289
|
/** DomainStatisticsResponse */
|
|
7247
7290
|
DomainStatisticsResponse: {
|
|
@@ -7255,6 +7298,11 @@ export interface components {
|
|
|
7255
7298
|
* @description One entry per bucket the window touches, oldest first, including empty buckets
|
|
7256
7299
|
*/
|
|
7257
7300
|
buckets: components["schemas"]["DomainStatisticsBucketResponse"][];
|
|
7301
|
+
/**
|
|
7302
|
+
* Data Available From
|
|
7303
|
+
* @description Oldest day these statistics can report on. They are read from the domain event log, which starts later than the domains themselves, so a window reaching further back is empty before this instant rather than zero.
|
|
7304
|
+
*/
|
|
7305
|
+
data_available_from: Date | null;
|
|
7258
7306
|
/**
|
|
7259
7307
|
* End Date
|
|
7260
7308
|
* Format: date
|
|
@@ -7285,6 +7333,26 @@ export interface components {
|
|
|
7285
7333
|
* @description Domains created (newly registered) in the window
|
|
7286
7334
|
*/
|
|
7287
7335
|
create: number;
|
|
7336
|
+
/**
|
|
7337
|
+
* Delete
|
|
7338
|
+
* @description Domains deleted in the window
|
|
7339
|
+
*/
|
|
7340
|
+
delete: number;
|
|
7341
|
+
/**
|
|
7342
|
+
* Net
|
|
7343
|
+
* @description Created plus transferred in, minus deleted and transferred out
|
|
7344
|
+
*/
|
|
7345
|
+
net: number;
|
|
7346
|
+
/**
|
|
7347
|
+
* Renew
|
|
7348
|
+
* @description Domains renewed in the window, counted once per day a domain was renewed
|
|
7349
|
+
*/
|
|
7350
|
+
renew: number;
|
|
7351
|
+
/**
|
|
7352
|
+
* Restore
|
|
7353
|
+
* @description Domains restored from redemption in the window
|
|
7354
|
+
*/
|
|
7355
|
+
restore: number;
|
|
7288
7356
|
/**
|
|
7289
7357
|
* Total
|
|
7290
7358
|
* @description Created plus transferred
|
|
@@ -7295,6 +7363,11 @@ export interface components {
|
|
|
7295
7363
|
* @description Domains transferred to OpusDNS in the window
|
|
7296
7364
|
*/
|
|
7297
7365
|
transfer: number;
|
|
7366
|
+
/**
|
|
7367
|
+
* Transfer Out
|
|
7368
|
+
* @description Domains transferred away from OpusDNS in the window
|
|
7369
|
+
*/
|
|
7370
|
+
transfer_out: number;
|
|
7298
7371
|
};
|
|
7299
7372
|
/**
|
|
7300
7373
|
* DomainStatus
|
|
@@ -20520,6 +20593,7 @@ export interface operations {
|
|
|
20520
20593
|
/** @description Filter by top-level domain (e.g., 'com', 'org'). Can be specified multiple times (union of all provided values). */
|
|
20521
20594
|
tld?: string[] | null;
|
|
20522
20595
|
sld?: string | null;
|
|
20596
|
+
nameserver?: string | null;
|
|
20523
20597
|
transfer_lock?: boolean | null;
|
|
20524
20598
|
read_only?: boolean | null;
|
|
20525
20599
|
is_premium?: boolean | null;
|