@opusdns/api 0.206.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 +25 -16
- package/src/helpers/responses.d.ts +414 -25
- package/src/openapi.yaml +1073 -83
- package/src/schema.d.ts +482 -56
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.
|
|
@@ -3551,7 +3560,7 @@ export type POST_EmailForwards_Request_Body = POST_EmailForwards_Request['reques
|
|
|
3551
3560
|
* Request type for DELETE EmailForwardsEmailForwardId endpoint
|
|
3552
3561
|
*
|
|
3553
3562
|
* Delete email forward configuration
|
|
3554
|
-
* Permanently deletes the email forward configuration including all aliases. If enabled, automatically disables first (removes DNS records and unregisters from
|
|
3563
|
+
* Permanently deletes the email forward configuration including all aliases. If enabled, automatically disables first (removes DNS records and unregisters from the email forwarding provider).
|
|
3555
3564
|
*
|
|
3556
3565
|
* @remarks
|
|
3557
3566
|
* This type defines the complete request structure for the DELETE EmailForwardsEmailForwardId endpoint.
|
|
@@ -3590,7 +3599,7 @@ export type DELETE_EmailForwardsEmailForwardId_Request_Path = DELETE_EmailForwar
|
|
|
3590
3599
|
* Request type for GET EmailForwardsEmailForwardId endpoint
|
|
3591
3600
|
*
|
|
3592
3601
|
* Get email forward configuration
|
|
3593
|
-
* Retrieves the email forward configuration for the specified
|
|
3602
|
+
* Retrieves the email forward configuration for the specified email forward including all aliases
|
|
3594
3603
|
*
|
|
3595
3604
|
* @remarks
|
|
3596
3605
|
* This type defines the complete request structure for the GET EmailForwardsEmailForwardId endpoint.
|
|
@@ -3629,7 +3638,7 @@ export type GET_EmailForwardsEmailForwardId_Request_Path = GET_EmailForwardsEmai
|
|
|
3629
3638
|
* Request type for POST EmailForwardsEmailForwardIdAliases endpoint
|
|
3630
3639
|
*
|
|
3631
3640
|
* Create email forward alias
|
|
3632
|
-
* Creates a new email forward alias for the specified
|
|
3641
|
+
* Creates a new email forward alias for the specified email forward. Use '*' as the alias name to configure a catch-all alias that forwards all unmatched emails for the domain.
|
|
3633
3642
|
*
|
|
3634
3643
|
* @remarks
|
|
3635
3644
|
* This type defines the complete request structure for the POST EmailForwardsEmailForwardIdAliases endpoint.
|
|
@@ -3682,7 +3691,7 @@ export type POST_EmailForwardsEmailForwardIdAliases_Request_Body = POST_EmailFor
|
|
|
3682
3691
|
* Request type for DELETE EmailForwardsEmailForwardIdAliasesAliasId endpoint
|
|
3683
3692
|
*
|
|
3684
3693
|
* Delete email forward alias
|
|
3685
|
-
* Deletes a specific email forward alias for the specified
|
|
3694
|
+
* Deletes a specific email forward alias specified by email_forward_alias_id for the specified email forward
|
|
3686
3695
|
*
|
|
3687
3696
|
* @remarks
|
|
3688
3697
|
* This type defines the complete request structure for the DELETE EmailForwardsEmailForwardIdAliasesAliasId endpoint.
|
|
@@ -3721,7 +3730,7 @@ export type DELETE_EmailForwardsEmailForwardIdAliasesAliasId_Request_Path = DELE
|
|
|
3721
3730
|
* Request type for PUT EmailForwardsEmailForwardIdAliasesAliasId endpoint
|
|
3722
3731
|
*
|
|
3723
3732
|
* Update email forward alias
|
|
3724
|
-
* Updates the forward_to address for a specific email forward alias
|
|
3733
|
+
* Updates the forward_to address for a specific email forward alias specified by email_forward_alias_id
|
|
3725
3734
|
*
|
|
3726
3735
|
* @remarks
|
|
3727
3736
|
* This type defines the complete request structure for the PUT EmailForwardsEmailForwardIdAliasesAliasId endpoint.
|
|
@@ -3774,7 +3783,7 @@ export type PUT_EmailForwardsEmailForwardIdAliasesAliasId_Request_Body = PUT_Ema
|
|
|
3774
3783
|
* Request type for PATCH EmailForwardsEmailForwardIdDisable endpoint
|
|
3775
3784
|
*
|
|
3776
3785
|
* Disable email forwarding
|
|
3777
|
-
* Disables email forwarding by removing MX and SPF DNS records and unregistering the domain from the email
|
|
3786
|
+
* Disables email forwarding by removing MX and SPF DNS records and unregistering the domain from the email forwarding provider. The email forward configuration is preserved but disabled.
|
|
3778
3787
|
*
|
|
3779
3788
|
* @remarks
|
|
3780
3789
|
* This type defines the complete request structure for the PATCH EmailForwardsEmailForwardIdDisable endpoint.
|
|
@@ -3813,7 +3822,7 @@ export type PATCH_EmailForwardsEmailForwardIdDisable_Request_Path = PATCH_EmailF
|
|
|
3813
3822
|
* Request type for PATCH EmailForwardsEmailForwardIdEnable endpoint
|
|
3814
3823
|
*
|
|
3815
3824
|
* Enable email forwarding
|
|
3816
|
-
* Enables email forwarding by creating necessary MX and SPF DNS records and registering the domain with the email
|
|
3825
|
+
* Enables email forwarding by creating necessary MX and SPF DNS records and registering the domain with the email forwarding provider.
|
|
3817
3826
|
*
|
|
3818
3827
|
* @remarks
|
|
3819
3828
|
* This type defines the complete request structure for the PATCH EmailForwardsEmailForwardIdEnable endpoint.
|