@opusdns/api 0.140.0 → 0.142.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 +159 -1
- package/src/helpers/keys.ts +1431 -148
- package/src/helpers/requests.d.ts +380 -0
- package/src/helpers/responses.d.ts +553 -1
- package/src/helpers/schemas-arrays.d.ts +113 -1
- package/src/helpers/schemas.d.ts +320 -0
- package/src/openapi.yaml +697 -4
- package/src/schema.d.ts +608 -12
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainForwardPatchOp, HttpRedirectList, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, DomainContactType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, ObjectLog, Organization, RequestHistory, UserPublic, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
24
|
+
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, RegistryHandleAttributeType, ContactAttributeDefinition, ContactRoleAttributeRequirement, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, ContactHandle, Nameserver, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainClientStatus, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, DomainContactType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactSchema, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, ObjectLog, Organization, RequestHistory, UserPublic, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* DomainDnssecDataResponse
|
|
@@ -317,6 +317,48 @@ export type ContactHandleArray = ContactHandle[];
|
|
|
317
317
|
* @see {@link Nameserver} - The individual Nameserver type definition
|
|
318
318
|
*/
|
|
319
319
|
export type NameserverArray = Nameserver[];
|
|
320
|
+
/**
|
|
321
|
+
* BrowserStatsBucket
|
|
322
|
+
*
|
|
323
|
+
* @remarks
|
|
324
|
+
* Array type for BrowserStatsBucket objects. Used when the API returns a collection of BrowserStatsBucket instances.
|
|
325
|
+
*
|
|
326
|
+
* @example
|
|
327
|
+
* ```typescript
|
|
328
|
+
* const items: BrowserStatsBucketArray = await api.getBrowserStatsBuckets();
|
|
329
|
+
* ```
|
|
330
|
+
*
|
|
331
|
+
* @see {@link BrowserStatsBucket} - The individual BrowserStatsBucket type definition
|
|
332
|
+
*/
|
|
333
|
+
export type BrowserStatsBucketArray = BrowserStatsBucket[];
|
|
334
|
+
/**
|
|
335
|
+
* GeoStatsBucket
|
|
336
|
+
*
|
|
337
|
+
* @remarks
|
|
338
|
+
* Array type for GeoStatsBucket objects. Used when the API returns a collection of GeoStatsBucket instances.
|
|
339
|
+
*
|
|
340
|
+
* @example
|
|
341
|
+
* ```typescript
|
|
342
|
+
* const items: GeoStatsBucketArray = await api.getGeoStatsBuckets();
|
|
343
|
+
* ```
|
|
344
|
+
*
|
|
345
|
+
* @see {@link GeoStatsBucket} - The individual GeoStatsBucket type definition
|
|
346
|
+
*/
|
|
347
|
+
export type GeoStatsBucketArray = GeoStatsBucket[];
|
|
348
|
+
/**
|
|
349
|
+
* TimeSeriesBucket
|
|
350
|
+
*
|
|
351
|
+
* @remarks
|
|
352
|
+
* Array type for TimeSeriesBucket objects. Used when the API returns a collection of TimeSeriesBucket instances.
|
|
353
|
+
*
|
|
354
|
+
* @example
|
|
355
|
+
* ```typescript
|
|
356
|
+
* const items: TimeSeriesBucketArray = await api.getTimeSeriesBuckets();
|
|
357
|
+
* ```
|
|
358
|
+
*
|
|
359
|
+
* @see {@link TimeSeriesBucket} - The individual TimeSeriesBucket type definition
|
|
360
|
+
*/
|
|
361
|
+
export type TimeSeriesBucketArray = TimeSeriesBucket[];
|
|
320
362
|
/**
|
|
321
363
|
* DomainForwardPatchOp
|
|
322
364
|
*
|
|
@@ -331,6 +373,20 @@ export type NameserverArray = Nameserver[];
|
|
|
331
373
|
* @see {@link DomainForwardPatchOp} - The individual DomainForwardPatchOp type definition
|
|
332
374
|
*/
|
|
333
375
|
export type DomainForwardPatchOpArray = DomainForwardPatchOp[];
|
|
376
|
+
/**
|
|
377
|
+
* PlatformStatsBucket
|
|
378
|
+
*
|
|
379
|
+
* @remarks
|
|
380
|
+
* Array type for PlatformStatsBucket objects. Used when the API returns a collection of PlatformStatsBucket instances.
|
|
381
|
+
*
|
|
382
|
+
* @example
|
|
383
|
+
* ```typescript
|
|
384
|
+
* const items: PlatformStatsBucketArray = await api.getPlatformStatsBuckets();
|
|
385
|
+
* ```
|
|
386
|
+
*
|
|
387
|
+
* @see {@link PlatformStatsBucket} - The individual PlatformStatsBucket type definition
|
|
388
|
+
*/
|
|
389
|
+
export type PlatformStatsBucketArray = PlatformStatsBucket[];
|
|
334
390
|
/**
|
|
335
391
|
* HttpRedirectListResponse
|
|
336
392
|
*
|
|
@@ -345,6 +401,62 @@ export type DomainForwardPatchOpArray = DomainForwardPatchOp[];
|
|
|
345
401
|
* @see {@link HttpRedirectList} - The individual HttpRedirectListResponse type definition
|
|
346
402
|
*/
|
|
347
403
|
export type HttpRedirectListArray = HttpRedirectList[];
|
|
404
|
+
/**
|
|
405
|
+
* ReferrerStatsBucket
|
|
406
|
+
*
|
|
407
|
+
* @remarks
|
|
408
|
+
* Array type for ReferrerStatsBucket objects. Used when the API returns a collection of ReferrerStatsBucket instances.
|
|
409
|
+
*
|
|
410
|
+
* @example
|
|
411
|
+
* ```typescript
|
|
412
|
+
* const items: ReferrerStatsBucketArray = await api.getReferrerStatsBuckets();
|
|
413
|
+
* ```
|
|
414
|
+
*
|
|
415
|
+
* @see {@link ReferrerStatsBucket} - The individual ReferrerStatsBucket type definition
|
|
416
|
+
*/
|
|
417
|
+
export type ReferrerStatsBucketArray = ReferrerStatsBucket[];
|
|
418
|
+
/**
|
|
419
|
+
* StatusCodeStatsBucket
|
|
420
|
+
*
|
|
421
|
+
* @remarks
|
|
422
|
+
* Array type for StatusCodeStatsBucket objects. Used when the API returns a collection of StatusCodeStatsBucket instances.
|
|
423
|
+
*
|
|
424
|
+
* @example
|
|
425
|
+
* ```typescript
|
|
426
|
+
* const items: StatusCodeStatsBucketArray = await api.getStatusCodeStatsBuckets();
|
|
427
|
+
* ```
|
|
428
|
+
*
|
|
429
|
+
* @see {@link StatusCodeStatsBucket} - The individual StatusCodeStatsBucket type definition
|
|
430
|
+
*/
|
|
431
|
+
export type StatusCodeStatsBucketArray = StatusCodeStatsBucket[];
|
|
432
|
+
/**
|
|
433
|
+
* UserAgentStatsBucket
|
|
434
|
+
*
|
|
435
|
+
* @remarks
|
|
436
|
+
* Array type for UserAgentStatsBucket objects. Used when the API returns a collection of UserAgentStatsBucket instances.
|
|
437
|
+
*
|
|
438
|
+
* @example
|
|
439
|
+
* ```typescript
|
|
440
|
+
* const items: UserAgentStatsBucketArray = await api.getUserAgentStatsBuckets();
|
|
441
|
+
* ```
|
|
442
|
+
*
|
|
443
|
+
* @see {@link UserAgentStatsBucket} - The individual UserAgentStatsBucket type definition
|
|
444
|
+
*/
|
|
445
|
+
export type UserAgentStatsBucketArray = UserAgentStatsBucket[];
|
|
446
|
+
/**
|
|
447
|
+
* VisitsByKeyBucket
|
|
448
|
+
*
|
|
449
|
+
* @remarks
|
|
450
|
+
* Array type for VisitsByKeyBucket objects. Used when the API returns a collection of VisitsByKeyBucket instances.
|
|
451
|
+
*
|
|
452
|
+
* @example
|
|
453
|
+
* ```typescript
|
|
454
|
+
* const items: VisitsByKeyBucketArray = await api.getVisitsByKeyBuckets();
|
|
455
|
+
* ```
|
|
456
|
+
*
|
|
457
|
+
* @see {@link VisitsByKeyBucket} - The individual VisitsByKeyBucket type definition
|
|
458
|
+
*/
|
|
459
|
+
export type VisitsByKeyBucketArray = VisitsByKeyBucket[];
|
|
348
460
|
/**
|
|
349
461
|
* DomainForward
|
|
350
462
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -186,6 +186,22 @@ export type BillingTransactionSortField = components['schemas']['BillingTransact
|
|
|
186
186
|
* @see {@link components} - The OpenAPI components schema definition
|
|
187
187
|
*/
|
|
188
188
|
export type BillingTransactionStatus = components['schemas']['BillingTransactionStatus'];
|
|
189
|
+
/**
|
|
190
|
+
* BrowserStatsBucket
|
|
191
|
+
*
|
|
192
|
+
* @remarks
|
|
193
|
+
* Type alias for the `BrowserStatsBucket` OpenAPI schema.
|
|
194
|
+
* This type represents browserstatsbucket data structures used in API requests and responses.
|
|
195
|
+
*
|
|
196
|
+
* @example
|
|
197
|
+
* ```typescript
|
|
198
|
+
* const response = await api.getBrowserStatsBucket();
|
|
199
|
+
* const item: BrowserStatsBucket = response.results;
|
|
200
|
+
* ```
|
|
201
|
+
*
|
|
202
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
203
|
+
*/
|
|
204
|
+
export type BrowserStatsBucket = components['schemas']['BrowserStatsBucket'];
|
|
189
205
|
/**
|
|
190
206
|
* ContactAttributeDefinition. Definition of a possible attribute for a TLD.
|
|
191
207
|
*
|
|
@@ -1034,6 +1050,22 @@ export type DomainDnssecData = components['schemas']['DomainDnssecDataResponse']
|
|
|
1034
1050
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1035
1051
|
*/
|
|
1036
1052
|
export type DomainForward = components['schemas']['DomainForward'];
|
|
1053
|
+
/**
|
|
1054
|
+
* DomainForwardBrowserStatsResponse
|
|
1055
|
+
*
|
|
1056
|
+
* @remarks
|
|
1057
|
+
* Type alias for the `DomainForwardBrowserStatsResponse` OpenAPI schema.
|
|
1058
|
+
* This type represents domainforwardbrowserstatsresponse data structures used in API requests and responses.
|
|
1059
|
+
*
|
|
1060
|
+
* @example
|
|
1061
|
+
* ```typescript
|
|
1062
|
+
* const response = await api.getDomainForwardBrowserStats();
|
|
1063
|
+
* const item: DomainForwardBrowserStats = response.results;
|
|
1064
|
+
* ```
|
|
1065
|
+
*
|
|
1066
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1067
|
+
*/
|
|
1068
|
+
export type DomainForwardBrowserStats = components['schemas']['DomainForwardBrowserStatsResponse'];
|
|
1037
1069
|
/**
|
|
1038
1070
|
* DomainForwardCreateRequest
|
|
1039
1071
|
*
|
|
@@ -1050,6 +1082,54 @@ export type DomainForward = components['schemas']['DomainForward'];
|
|
|
1050
1082
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1051
1083
|
*/
|
|
1052
1084
|
export type DomainForwardCreateRequest = components['schemas']['DomainForwardCreateRequest'];
|
|
1085
|
+
/**
|
|
1086
|
+
* DomainForwardGeoStatsResponse
|
|
1087
|
+
*
|
|
1088
|
+
* @remarks
|
|
1089
|
+
* Type alias for the `DomainForwardGeoStatsResponse` OpenAPI schema.
|
|
1090
|
+
* This type represents domainforwardgeostatsresponse data structures used in API requests and responses.
|
|
1091
|
+
*
|
|
1092
|
+
* @example
|
|
1093
|
+
* ```typescript
|
|
1094
|
+
* const response = await api.getDomainForwardGeoStats();
|
|
1095
|
+
* const item: DomainForwardGeoStats = response.results;
|
|
1096
|
+
* ```
|
|
1097
|
+
*
|
|
1098
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1099
|
+
*/
|
|
1100
|
+
export type DomainForwardGeoStats = components['schemas']['DomainForwardGeoStatsResponse'];
|
|
1101
|
+
/**
|
|
1102
|
+
* DomainForwardMetricsResponse
|
|
1103
|
+
*
|
|
1104
|
+
* @remarks
|
|
1105
|
+
* Type alias for the `DomainForwardMetricsResponse` OpenAPI schema.
|
|
1106
|
+
* This type represents domainforwardmetricsresponse data structures used in API requests and responses.
|
|
1107
|
+
*
|
|
1108
|
+
* @example
|
|
1109
|
+
* ```typescript
|
|
1110
|
+
* const response = await api.getDomainForwardMetrics();
|
|
1111
|
+
* const item: DomainForwardMetrics = response.results;
|
|
1112
|
+
* ```
|
|
1113
|
+
*
|
|
1114
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1115
|
+
*/
|
|
1116
|
+
export type DomainForwardMetrics = components['schemas']['DomainForwardMetricsResponse'];
|
|
1117
|
+
/**
|
|
1118
|
+
* DomainForwardMetricsTimeSeriesResponse
|
|
1119
|
+
*
|
|
1120
|
+
* @remarks
|
|
1121
|
+
* Type alias for the `DomainForwardMetricsTimeSeriesResponse` OpenAPI schema.
|
|
1122
|
+
* This type represents domainforwardmetricstimeseriesresponse data structures used in API requests and responses.
|
|
1123
|
+
*
|
|
1124
|
+
* @example
|
|
1125
|
+
* ```typescript
|
|
1126
|
+
* const response = await api.getDomainForwardMetricsTimeSeries();
|
|
1127
|
+
* const item: DomainForwardMetricsTimeSeries = response.results;
|
|
1128
|
+
* ```
|
|
1129
|
+
*
|
|
1130
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1131
|
+
*/
|
|
1132
|
+
export type DomainForwardMetricsTimeSeries = components['schemas']['DomainForwardMetricsTimeSeriesResponse'];
|
|
1053
1133
|
/**
|
|
1054
1134
|
* DomainForwardPatchOp
|
|
1055
1135
|
*
|
|
@@ -1082,6 +1162,22 @@ export type DomainForwardPatchOp = components['schemas']['DomainForwardPatchOp']
|
|
|
1082
1162
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1083
1163
|
*/
|
|
1084
1164
|
export type DomainForwardPatchOps = components['schemas']['DomainForwardPatchOps'];
|
|
1165
|
+
/**
|
|
1166
|
+
* DomainForwardPlatformStatsResponse
|
|
1167
|
+
*
|
|
1168
|
+
* @remarks
|
|
1169
|
+
* Type alias for the `DomainForwardPlatformStatsResponse` OpenAPI schema.
|
|
1170
|
+
* This type represents domainforwardplatformstatsresponse data structures used in API requests and responses.
|
|
1171
|
+
*
|
|
1172
|
+
* @example
|
|
1173
|
+
* ```typescript
|
|
1174
|
+
* const response = await api.getDomainForwardPlatformStats();
|
|
1175
|
+
* const item: DomainForwardPlatformStats = response.results;
|
|
1176
|
+
* ```
|
|
1177
|
+
*
|
|
1178
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1179
|
+
*/
|
|
1180
|
+
export type DomainForwardPlatformStats = components['schemas']['DomainForwardPlatformStatsResponse'];
|
|
1085
1181
|
/**
|
|
1086
1182
|
* DomainForwardProtocolSetRequest
|
|
1087
1183
|
*
|
|
@@ -1114,6 +1210,22 @@ export type DomainForwardProtocolSetRequest = components['schemas']['DomainForwa
|
|
|
1114
1210
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1115
1211
|
*/
|
|
1116
1212
|
export type DomainForwardProtocolSet = components['schemas']['DomainForwardProtocolSetResponse'];
|
|
1213
|
+
/**
|
|
1214
|
+
* DomainForwardReferrerStatsResponse
|
|
1215
|
+
*
|
|
1216
|
+
* @remarks
|
|
1217
|
+
* Type alias for the `DomainForwardReferrerStatsResponse` OpenAPI schema.
|
|
1218
|
+
* This type represents domainforwardreferrerstatsresponse data structures used in API requests and responses.
|
|
1219
|
+
*
|
|
1220
|
+
* @example
|
|
1221
|
+
* ```typescript
|
|
1222
|
+
* const response = await api.getDomainForwardReferrerStats();
|
|
1223
|
+
* const item: DomainForwardReferrerStats = response.results;
|
|
1224
|
+
* ```
|
|
1225
|
+
*
|
|
1226
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1227
|
+
*/
|
|
1228
|
+
export type DomainForwardReferrerStats = components['schemas']['DomainForwardReferrerStatsResponse'];
|
|
1117
1229
|
/**
|
|
1118
1230
|
* DomainForwardSetCreateRequest
|
|
1119
1231
|
*
|
|
@@ -1178,6 +1290,54 @@ export type DomainForwardSet = components['schemas']['DomainForwardSetResponse']
|
|
|
1178
1290
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1179
1291
|
*/
|
|
1180
1292
|
export type DomainForwardSortField = components['schemas']['DomainForwardSortField'];
|
|
1293
|
+
/**
|
|
1294
|
+
* DomainForwardStatusCodeStatsResponse
|
|
1295
|
+
*
|
|
1296
|
+
* @remarks
|
|
1297
|
+
* Type alias for the `DomainForwardStatusCodeStatsResponse` OpenAPI schema.
|
|
1298
|
+
* This type represents domainforwardstatuscodestatsresponse data structures used in API requests and responses.
|
|
1299
|
+
*
|
|
1300
|
+
* @example
|
|
1301
|
+
* ```typescript
|
|
1302
|
+
* const response = await api.getDomainForwardStatusCodeStats();
|
|
1303
|
+
* const item: DomainForwardStatusCodeStats = response.results;
|
|
1304
|
+
* ```
|
|
1305
|
+
*
|
|
1306
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1307
|
+
*/
|
|
1308
|
+
export type DomainForwardStatusCodeStats = components['schemas']['DomainForwardStatusCodeStatsResponse'];
|
|
1309
|
+
/**
|
|
1310
|
+
* DomainForwardUserAgentStatsResponse
|
|
1311
|
+
*
|
|
1312
|
+
* @remarks
|
|
1313
|
+
* Type alias for the `DomainForwardUserAgentStatsResponse` OpenAPI schema.
|
|
1314
|
+
* This type represents domainforwarduseragentstatsresponse data structures used in API requests and responses.
|
|
1315
|
+
*
|
|
1316
|
+
* @example
|
|
1317
|
+
* ```typescript
|
|
1318
|
+
* const response = await api.getDomainForwardUserAgentStats();
|
|
1319
|
+
* const item: DomainForwardUserAgentStats = response.results;
|
|
1320
|
+
* ```
|
|
1321
|
+
*
|
|
1322
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1323
|
+
*/
|
|
1324
|
+
export type DomainForwardUserAgentStats = components['schemas']['DomainForwardUserAgentStatsResponse'];
|
|
1325
|
+
/**
|
|
1326
|
+
* DomainForwardVisitsByKeyResponse
|
|
1327
|
+
*
|
|
1328
|
+
* @remarks
|
|
1329
|
+
* Type alias for the `DomainForwardVisitsByKeyResponse` OpenAPI schema.
|
|
1330
|
+
* This type represents domainforwardvisitsbykeyresponse data structures used in API requests and responses.
|
|
1331
|
+
*
|
|
1332
|
+
* @example
|
|
1333
|
+
* ```typescript
|
|
1334
|
+
* const response = await api.getDomainForwardVisitsByKey();
|
|
1335
|
+
* const item: DomainForwardVisitsByKey = response.results;
|
|
1336
|
+
* ```
|
|
1337
|
+
*
|
|
1338
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1339
|
+
*/
|
|
1340
|
+
export type DomainForwardVisitsByKey = components['schemas']['DomainForwardVisitsByKeyResponse'];
|
|
1181
1341
|
/**
|
|
1182
1342
|
* DomainForwardZone
|
|
1183
1343
|
*
|
|
@@ -1962,6 +2122,22 @@ export type EventType = components['schemas']['EventType'];
|
|
|
1962
2122
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1963
2123
|
*/
|
|
1964
2124
|
export type GeneralAvailabilityBase = components['schemas']['GeneralAvailabilityBase'];
|
|
2125
|
+
/**
|
|
2126
|
+
* GeoStatsBucket
|
|
2127
|
+
*
|
|
2128
|
+
* @remarks
|
|
2129
|
+
* Type alias for the `GeoStatsBucket` OpenAPI schema.
|
|
2130
|
+
* This type represents geostatsbucket data structures used in API requests and responses.
|
|
2131
|
+
*
|
|
2132
|
+
* @example
|
|
2133
|
+
* ```typescript
|
|
2134
|
+
* const response = await api.getGeoStatsBucket();
|
|
2135
|
+
* const item: GeoStatsBucket = response.results;
|
|
2136
|
+
* ```
|
|
2137
|
+
*
|
|
2138
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2139
|
+
*/
|
|
2140
|
+
export type GeoStatsBucket = components['schemas']['GeoStatsBucket'];
|
|
1965
2141
|
/**
|
|
1966
2142
|
* GetPricesResponse
|
|
1967
2143
|
*
|
|
@@ -2351,6 +2527,22 @@ export type LocalPresenceBase = components['schemas']['LocalPresenceBase'];
|
|
|
2351
2527
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2352
2528
|
*/
|
|
2353
2529
|
export type LocalPresenceRequirementType = components['schemas']['LocalPresenceRequirementType'];
|
|
2530
|
+
/**
|
|
2531
|
+
* MetricsGrouping
|
|
2532
|
+
*
|
|
2533
|
+
* @remarks
|
|
2534
|
+
* Type alias for the `MetricsGrouping` OpenAPI schema.
|
|
2535
|
+
* This type represents metricsgrouping data structures used in API requests and responses.
|
|
2536
|
+
*
|
|
2537
|
+
* @example
|
|
2538
|
+
* ```typescript
|
|
2539
|
+
* const response = await api.getMetricsGrouping();
|
|
2540
|
+
* const item: MetricsGrouping = response.results;
|
|
2541
|
+
* ```
|
|
2542
|
+
*
|
|
2543
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2544
|
+
*/
|
|
2545
|
+
export type MetricsGrouping = components['schemas']['MetricsGrouping'];
|
|
2354
2546
|
/**
|
|
2355
2547
|
* Nameserver
|
|
2356
2548
|
*
|
|
@@ -2943,6 +3135,22 @@ export type Permission = components['schemas']['Permission'];
|
|
|
2943
3135
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2944
3136
|
*/
|
|
2945
3137
|
export type PermissionSet = components['schemas']['PermissionSet'];
|
|
3138
|
+
/**
|
|
3139
|
+
* PlatformStatsBucket
|
|
3140
|
+
*
|
|
3141
|
+
* @remarks
|
|
3142
|
+
* Type alias for the `PlatformStatsBucket` OpenAPI schema.
|
|
3143
|
+
* This type represents platformstatsbucket data structures used in API requests and responses.
|
|
3144
|
+
*
|
|
3145
|
+
* @example
|
|
3146
|
+
* ```typescript
|
|
3147
|
+
* const response = await api.getPlatformStatsBucket();
|
|
3148
|
+
* const item: PlatformStatsBucket = response.results;
|
|
3149
|
+
* ```
|
|
3150
|
+
*
|
|
3151
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3152
|
+
*/
|
|
3153
|
+
export type PlatformStatsBucket = components['schemas']['PlatformStatsBucket'];
|
|
2946
3154
|
/**
|
|
2947
3155
|
* PostTransferRequirements
|
|
2948
3156
|
*
|
|
@@ -3071,6 +3279,22 @@ export type PricingPeriod = components['schemas']['PricingPeriod'];
|
|
|
3071
3279
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3072
3280
|
*/
|
|
3073
3281
|
export type Problem = components['schemas']['Problem'];
|
|
3282
|
+
/**
|
|
3283
|
+
* Protocol
|
|
3284
|
+
*
|
|
3285
|
+
* @remarks
|
|
3286
|
+
* Type alias for the `Protocol` OpenAPI schema.
|
|
3287
|
+
* This type represents protocol data structures used in API requests and responses.
|
|
3288
|
+
*
|
|
3289
|
+
* @example
|
|
3290
|
+
* ```typescript
|
|
3291
|
+
* const response = await api.getProtocol();
|
|
3292
|
+
* const item: Protocol = response.results;
|
|
3293
|
+
* ```
|
|
3294
|
+
*
|
|
3295
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3296
|
+
*/
|
|
3297
|
+
export type Protocol = components['schemas']['Protocol'];
|
|
3074
3298
|
/**
|
|
3075
3299
|
* PublicAuthRequestForm
|
|
3076
3300
|
*
|
|
@@ -3119,6 +3343,22 @@ export type RdapBase = components['schemas']['RdapBase'];
|
|
|
3119
3343
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3120
3344
|
*/
|
|
3121
3345
|
export type RedirectCode = components['schemas']['RedirectCode'];
|
|
3346
|
+
/**
|
|
3347
|
+
* ReferrerStatsBucket
|
|
3348
|
+
*
|
|
3349
|
+
* @remarks
|
|
3350
|
+
* Type alias for the `ReferrerStatsBucket` OpenAPI schema.
|
|
3351
|
+
* This type represents referrerstatsbucket data structures used in API requests and responses.
|
|
3352
|
+
*
|
|
3353
|
+
* @example
|
|
3354
|
+
* ```typescript
|
|
3355
|
+
* const response = await api.getReferrerStatsBucket();
|
|
3356
|
+
* const item: ReferrerStatsBucket = response.results;
|
|
3357
|
+
* ```
|
|
3358
|
+
*
|
|
3359
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3360
|
+
*/
|
|
3361
|
+
export type ReferrerStatsBucket = components['schemas']['ReferrerStatsBucket'];
|
|
3122
3362
|
/**
|
|
3123
3363
|
* RegistrantChangeType
|
|
3124
3364
|
*
|
|
@@ -3359,6 +3599,22 @@ export type SortOrder = components['schemas']['SortOrder'];
|
|
|
3359
3599
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3360
3600
|
*/
|
|
3361
3601
|
export type SpiceDbRelationshipUpdate = components['schemas']['SpiceDbRelationshipUpdate'];
|
|
3602
|
+
/**
|
|
3603
|
+
* StatusCodeStatsBucket
|
|
3604
|
+
*
|
|
3605
|
+
* @remarks
|
|
3606
|
+
* Type alias for the `StatusCodeStatsBucket` OpenAPI schema.
|
|
3607
|
+
* This type represents statuscodestatsbucket data structures used in API requests and responses.
|
|
3608
|
+
*
|
|
3609
|
+
* @example
|
|
3610
|
+
* ```typescript
|
|
3611
|
+
* const response = await api.getStatusCodeStatsBucket();
|
|
3612
|
+
* const item: StatusCodeStatsBucket = response.results;
|
|
3613
|
+
* ```
|
|
3614
|
+
*
|
|
3615
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3616
|
+
*/
|
|
3617
|
+
export type StatusCodeStatsBucket = components['schemas']['StatusCodeStatsBucket'];
|
|
3362
3618
|
/**
|
|
3363
3619
|
* SyncOperationType
|
|
3364
3620
|
*
|
|
@@ -3391,6 +3647,38 @@ export type SyncOperationType = components['schemas']['SyncOperationType'];
|
|
|
3391
3647
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3392
3648
|
*/
|
|
3393
3649
|
export type TLDType = components['schemas']['TLDType'];
|
|
3650
|
+
/**
|
|
3651
|
+
* TimeRange
|
|
3652
|
+
*
|
|
3653
|
+
* @remarks
|
|
3654
|
+
* Type alias for the `TimeRange` OpenAPI schema.
|
|
3655
|
+
* This type represents timerange data structures used in API requests and responses.
|
|
3656
|
+
*
|
|
3657
|
+
* @example
|
|
3658
|
+
* ```typescript
|
|
3659
|
+
* const response = await api.getTimeRange();
|
|
3660
|
+
* const item: TimeRange = response.results;
|
|
3661
|
+
* ```
|
|
3662
|
+
*
|
|
3663
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3664
|
+
*/
|
|
3665
|
+
export type TimeRange = components['schemas']['TimeRange'];
|
|
3666
|
+
/**
|
|
3667
|
+
* TimeSeriesBucket
|
|
3668
|
+
*
|
|
3669
|
+
* @remarks
|
|
3670
|
+
* Type alias for the `TimeSeriesBucket` OpenAPI schema.
|
|
3671
|
+
* This type represents timeseriesbucket data structures used in API requests and responses.
|
|
3672
|
+
*
|
|
3673
|
+
* @example
|
|
3674
|
+
* ```typescript
|
|
3675
|
+
* const response = await api.getTimeSeriesBucket();
|
|
3676
|
+
* const item: TimeSeriesBucket = response.results;
|
|
3677
|
+
* ```
|
|
3678
|
+
*
|
|
3679
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3680
|
+
*/
|
|
3681
|
+
export type TimeSeriesBucket = components['schemas']['TimeSeriesBucket'];
|
|
3394
3682
|
/**
|
|
3395
3683
|
* TldBase
|
|
3396
3684
|
*
|
|
@@ -3535,6 +3823,22 @@ export type TransferPoliciesBase = components['schemas']['TransferPoliciesBase']
|
|
|
3535
3823
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3536
3824
|
*/
|
|
3537
3825
|
export type User = components['schemas']['User'];
|
|
3826
|
+
/**
|
|
3827
|
+
* UserAgentStatsBucket
|
|
3828
|
+
*
|
|
3829
|
+
* @remarks
|
|
3830
|
+
* Type alias for the `UserAgentStatsBucket` OpenAPI schema.
|
|
3831
|
+
* This type represents useragentstatsbucket data structures used in API requests and responses.
|
|
3832
|
+
*
|
|
3833
|
+
* @example
|
|
3834
|
+
* ```typescript
|
|
3835
|
+
* const response = await api.getUserAgentStatsBucket();
|
|
3836
|
+
* const item: UserAgentStatsBucket = response.results;
|
|
3837
|
+
* ```
|
|
3838
|
+
*
|
|
3839
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3840
|
+
*/
|
|
3841
|
+
export type UserAgentStatsBucket = components['schemas']['UserAgentStatsBucket'];
|
|
3538
3842
|
/**
|
|
3539
3843
|
* UserAttributeBase
|
|
3540
3844
|
*
|
|
@@ -3711,6 +4015,22 @@ export type ValidationError = components['schemas']['ValidationError'];
|
|
|
3711
4015
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3712
4016
|
*/
|
|
3713
4017
|
export type VerificationType = components['schemas']['VerificationType'];
|
|
4018
|
+
/**
|
|
4019
|
+
* VisitsByKeyBucket
|
|
4020
|
+
*
|
|
4021
|
+
* @remarks
|
|
4022
|
+
* Type alias for the `VisitsByKeyBucket` OpenAPI schema.
|
|
4023
|
+
* This type represents visitsbykeybucket data structures used in API requests and responses.
|
|
4024
|
+
*
|
|
4025
|
+
* @example
|
|
4026
|
+
* ```typescript
|
|
4027
|
+
* const response = await api.getVisitsByKeyBucket();
|
|
4028
|
+
* const item: VisitsByKeyBucket = response.results;
|
|
4029
|
+
* ```
|
|
4030
|
+
*
|
|
4031
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
4032
|
+
*/
|
|
4033
|
+
export type VisitsByKeyBucket = components['schemas']['VisitsByKeyBucket'];
|
|
3714
4034
|
/**
|
|
3715
4035
|
* WhoisBase
|
|
3716
4036
|
*
|