@opusdns/api 0.207.0 → 0.208.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/requests.d.ts +18 -9
- package/src/helpers/responses.d.ts +407 -18
- package/src/openapi.yaml +944 -56
- package/src/schema.d.ts +453 -30
package/package.json
CHANGED
|
@@ -2179,7 +2179,8 @@ export type PUT_DomainForwardsHostnameProtocol_Request_Body = PUT_DomainForwards
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* Request type for GET DomainForwardsMetrics endpoint
|
|
2181
2181
|
*
|
|
2182
|
-
*
|
|
2182
|
+
* Get domain forward metrics
|
|
2183
|
+
* Retrieves overall metrics for domain forwards including total and unique visit counts.
|
|
2183
2184
|
*
|
|
2184
2185
|
* @remarks
|
|
2185
2186
|
* This type defines the complete request structure for the GET DomainForwardsMetrics endpoint.
|
|
@@ -2223,7 +2224,8 @@ export type GET_DomainForwardsMetrics_Request_Query = GET_DomainForwardsMetrics_
|
|
|
2223
2224
|
/**
|
|
2224
2225
|
* Request type for GET DomainForwardsMetricsBrowser endpoint
|
|
2225
2226
|
*
|
|
2226
|
-
*
|
|
2227
|
+
* Get browser statistics
|
|
2228
|
+
* Retrieves visitor traffic broken down by browser type (Chrome, Safari, Firefox, etc.) with total and unique visit counts.
|
|
2227
2229
|
*
|
|
2228
2230
|
* @remarks
|
|
2229
2231
|
* This type defines the complete request structure for the GET DomainForwardsMetricsBrowser endpoint.
|
|
@@ -2267,7 +2269,8 @@ export type GET_DomainForwardsMetricsBrowser_Request_Query = GET_DomainForwardsM
|
|
|
2267
2269
|
/**
|
|
2268
2270
|
* Request type for GET DomainForwardsMetricsGeo endpoint
|
|
2269
2271
|
*
|
|
2270
|
-
*
|
|
2272
|
+
* Get geographic statistics
|
|
2273
|
+
* Retrieves visitor traffic broken down by geographic location (country code) with visit counts.
|
|
2271
2274
|
*
|
|
2272
2275
|
* @remarks
|
|
2273
2276
|
* This type defines the complete request structure for the GET DomainForwardsMetricsGeo endpoint.
|
|
@@ -2311,7 +2314,8 @@ export type GET_DomainForwardsMetricsGeo_Request_Query = GET_DomainForwardsMetri
|
|
|
2311
2314
|
/**
|
|
2312
2315
|
* Request type for GET DomainForwardsMetricsPlatform endpoint
|
|
2313
2316
|
*
|
|
2314
|
-
*
|
|
2317
|
+
* Get platform statistics
|
|
2318
|
+
* Retrieves visitor traffic broken down by platform (Windows, Macintosh, iOS, Android, Linux) with total and unique visit counts.
|
|
2315
2319
|
*
|
|
2316
2320
|
* @remarks
|
|
2317
2321
|
* This type defines the complete request structure for the GET DomainForwardsMetricsPlatform endpoint.
|
|
@@ -2355,7 +2359,8 @@ export type GET_DomainForwardsMetricsPlatform_Request_Query = GET_DomainForwards
|
|
|
2355
2359
|
/**
|
|
2356
2360
|
* Request type for GET DomainForwardsMetricsReferrer endpoint
|
|
2357
2361
|
*
|
|
2358
|
-
*
|
|
2362
|
+
* Get referrer statistics
|
|
2363
|
+
* Retrieves visitor referral sources (where traffic came from) with total and unique visit counts.
|
|
2359
2364
|
*
|
|
2360
2365
|
* @remarks
|
|
2361
2366
|
* This type defines the complete request structure for the GET DomainForwardsMetricsReferrer endpoint.
|
|
@@ -2399,7 +2404,8 @@ export type GET_DomainForwardsMetricsReferrer_Request_Query = GET_DomainForwards
|
|
|
2399
2404
|
/**
|
|
2400
2405
|
* Request type for GET DomainForwardsMetricsStatusCode endpoint
|
|
2401
2406
|
*
|
|
2402
|
-
*
|
|
2407
|
+
* Get HTTP status code statistics
|
|
2408
|
+
* Retrieves distribution of HTTP redirect status codes (301, 302, 307, 308) used across forwards.
|
|
2403
2409
|
*
|
|
2404
2410
|
* @remarks
|
|
2405
2411
|
* This type defines the complete request structure for the GET DomainForwardsMetricsStatusCode endpoint.
|
|
@@ -2443,7 +2449,8 @@ export type GET_DomainForwardsMetricsStatusCode_Request_Query = GET_DomainForwar
|
|
|
2443
2449
|
/**
|
|
2444
2450
|
* Request type for GET DomainForwardsMetricsTimeSeries endpoint
|
|
2445
2451
|
*
|
|
2446
|
-
*
|
|
2452
|
+
* Get domain forward time series metrics
|
|
2453
|
+
* Retrieves visit counts bucketed by time intervals (hourly, daily) for the specified time range.
|
|
2447
2454
|
*
|
|
2448
2455
|
* @remarks
|
|
2449
2456
|
* This type defines the complete request structure for the GET DomainForwardsMetricsTimeSeries endpoint.
|
|
@@ -2487,7 +2494,8 @@ export type GET_DomainForwardsMetricsTimeSeries_Request_Query = GET_DomainForwar
|
|
|
2487
2494
|
/**
|
|
2488
2495
|
* Request type for GET DomainForwardsMetricsUserAgent endpoint
|
|
2489
2496
|
*
|
|
2490
|
-
*
|
|
2497
|
+
* Get user agent statistics
|
|
2498
|
+
* Retrieves visitor traffic broken down by user agent string with total and unique visit counts.
|
|
2491
2499
|
*
|
|
2492
2500
|
* @remarks
|
|
2493
2501
|
* This type defines the complete request structure for the GET DomainForwardsMetricsUserAgent endpoint.
|
|
@@ -2531,7 +2539,8 @@ export type GET_DomainForwardsMetricsUserAgent_Request_Query = GET_DomainForward
|
|
|
2531
2539
|
/**
|
|
2532
2540
|
* Request type for GET DomainForwardsMetricsVisitsByKey endpoint
|
|
2533
2541
|
*
|
|
2534
|
-
*
|
|
2542
|
+
* Get visits grouped by key
|
|
2543
|
+
* Retrieves visit metrics grouped by a specified key (url, fqdn, domain, or forward) with total and unique visit counts.
|
|
2535
2544
|
*
|
|
2536
2545
|
* @remarks
|
|
2537
2546
|
* This type defines the complete request structure for the GET DomainForwardsMetricsVisitsByKey endpoint.
|