@opusdns/api 0.139.0 → 0.141.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 +1398 -268
- package/src/helpers/requests.d.ts +388 -8
- package/src/helpers/responses.d.ts +559 -7
- package/src/helpers/schemas-arrays.d.ts +113 -1
- package/src/helpers/schemas.d.ts +326 -6
- package/src/openapi.yaml +764 -198
- package/src/schema.d.ts +629 -39
|
@@ -34,7 +34,7 @@ import { operations } from '../schema';
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataCreateArray, OrganizationAttributeUpdateArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { ContactCreate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainForwardPatchOps, DomainForwardCreateRequest,
|
|
37
|
+
import { ContactCreate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainForwardPatchOps, DomainForwardCreateRequest, DomainForwardSetCreateRequest, DomainForwardSetRequest, DomainCreate, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainWithdrawRequest, DomainTransitRequest, DomainTransferIn, EmailForwardCreate, EmailForwardAliasCreate, EmailForwardAliasUpdate, OrganizationCreate, IpRestrictionCreate, IpRestrictionUpdate, OrganizationUpdate, UserCreate, PasswordUpdate, UserUpdate, SpiceDbRelationshipUpdate } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Request type for GET ArchiveEmailForwardLogsAliasesEmailForwardAliasId endpoint
|
|
@@ -1609,8 +1609,8 @@ export type GET_DomainForwardsHostname_Request_Path = GET_DomainForwardsHostname
|
|
|
1609
1609
|
/**
|
|
1610
1610
|
* Request type for POST DomainForwardsHostname endpoint
|
|
1611
1611
|
*
|
|
1612
|
-
* Create
|
|
1613
|
-
*
|
|
1612
|
+
* Create domain forward set
|
|
1613
|
+
* Creates a new domain forward set for a specific protocol (HTTP or HTTPS). Raises an error if the set already exists.
|
|
1614
1614
|
*
|
|
1615
1615
|
* @remarks
|
|
1616
1616
|
* This type defines the complete request structure for the POST DomainForwardsHostname endpoint.
|
|
@@ -1629,9 +1629,9 @@ export type GET_DomainForwardsHostname_Request_Path = GET_DomainForwardsHostname
|
|
|
1629
1629
|
*/
|
|
1630
1630
|
export type POST_DomainForwardsHostname_Request = {
|
|
1631
1631
|
parameters: {
|
|
1632
|
-
path: operations['
|
|
1632
|
+
path: operations['create_domain_forward_set_v1_domain_forwards__hostname__post']['parameters']['path'];
|
|
1633
1633
|
};
|
|
1634
|
-
requestBody:
|
|
1634
|
+
requestBody: DomainForwardSetCreateRequest;
|
|
1635
1635
|
}
|
|
1636
1636
|
/**
|
|
1637
1637
|
* Path parameters for POST /v1/domain-forwards/{hostname}
|
|
@@ -1828,8 +1828,8 @@ export type GET_DomainForwardsHostnameProtocol_Request_Path = GET_DomainForwards
|
|
|
1828
1828
|
/**
|
|
1829
1829
|
* Request type for POST DomainForwardsHostnameProtocol endpoint
|
|
1830
1830
|
*
|
|
1831
|
-
* Create domain forward set
|
|
1832
|
-
* Creates a new domain forward set for a specific protocol (HTTP or HTTPS).
|
|
1831
|
+
* Create domain forward set (deprecated)
|
|
1832
|
+
* Deprecated: Use POST /{hostname} with protocol in body instead. Creates a new domain forward set for a specific protocol (HTTP or HTTPS).
|
|
1833
1833
|
*
|
|
1834
1834
|
* @remarks
|
|
1835
1835
|
* This type defines the complete request structure for the POST DomainForwardsHostnameProtocol endpoint.
|
|
@@ -1848,7 +1848,7 @@ export type GET_DomainForwardsHostnameProtocol_Request_Path = GET_DomainForwards
|
|
|
1848
1848
|
*/
|
|
1849
1849
|
export type POST_DomainForwardsHostnameProtocol_Request = {
|
|
1850
1850
|
parameters: {
|
|
1851
|
-
path: operations['
|
|
1851
|
+
path: operations['create_domain_forward_set_deprecated_v1_domain_forwards__hostname___protocol__post']['parameters']['path'];
|
|
1852
1852
|
};
|
|
1853
1853
|
requestBody: DomainForwardSetRequest;
|
|
1854
1854
|
}
|
|
@@ -1935,6 +1935,386 @@ export type PUT_DomainForwardsHostnameProtocol_Request_Path = PUT_DomainForwards
|
|
|
1935
1935
|
*/
|
|
1936
1936
|
export type PUT_DomainForwardsHostnameProtocol_Request_Body = PUT_DomainForwardsHostnameProtocol_Request['requestBody'];
|
|
1937
1937
|
|
|
1938
|
+
/**
|
|
1939
|
+
* Request type for GET DomainForwardsMetrics endpoint
|
|
1940
|
+
*
|
|
1941
|
+
* Metrics
|
|
1942
|
+
*
|
|
1943
|
+
* @remarks
|
|
1944
|
+
* This type defines the complete request structure for the GET DomainForwardsMetrics endpoint.
|
|
1945
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
1946
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
1947
|
+
*
|
|
1948
|
+
* @example
|
|
1949
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
1950
|
+
*
|
|
1951
|
+
* @path /v1/domain-forwards/metrics
|
|
1952
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
1953
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
1954
|
+
*
|
|
1955
|
+
* @see {@link GET_DomainForwardsMetrics_Request_Query} - Query parameters type
|
|
1956
|
+
* @see {@link GET_DomainForwardsMetrics_Request_Path} - Path parameters type
|
|
1957
|
+
* @see {@link GET_DomainForwardsMetrics_Request_Body} - Request body type
|
|
1958
|
+
*/
|
|
1959
|
+
export type GET_DomainForwardsMetrics_Request = {
|
|
1960
|
+
parameters: {
|
|
1961
|
+
query: operations['metrics_v1_domain_forwards_metrics_get']['parameters']['query'];
|
|
1962
|
+
};
|
|
1963
|
+
}
|
|
1964
|
+
/**
|
|
1965
|
+
* Query parameters for GET /v1/domain-forwards/metrics
|
|
1966
|
+
*
|
|
1967
|
+
* @remarks
|
|
1968
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics endpoint.
|
|
1969
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
1970
|
+
*
|
|
1971
|
+
* @example
|
|
1972
|
+
* Use this type to ensure type safety for query parameters.
|
|
1973
|
+
*
|
|
1974
|
+
* @path /v1/domain-forwards/metrics
|
|
1975
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
1976
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
1977
|
+
*/
|
|
1978
|
+
export type GET_DomainForwardsMetrics_Request_Query = GET_DomainForwardsMetrics_Request['parameters']['query'];
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* Request type for GET DomainForwardsMetricsBrowser endpoint
|
|
1982
|
+
*
|
|
1983
|
+
* Browser Stats
|
|
1984
|
+
*
|
|
1985
|
+
* @remarks
|
|
1986
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsBrowser endpoint.
|
|
1987
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
1988
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
1989
|
+
*
|
|
1990
|
+
* @example
|
|
1991
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
1992
|
+
*
|
|
1993
|
+
* @path /v1/domain-forwards/metrics/browser
|
|
1994
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
1995
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
1996
|
+
*
|
|
1997
|
+
* @see {@link GET_DomainForwardsMetricsBrowser_Request_Query} - Query parameters type
|
|
1998
|
+
* @see {@link GET_DomainForwardsMetricsBrowser_Request_Path} - Path parameters type
|
|
1999
|
+
* @see {@link GET_DomainForwardsMetricsBrowser_Request_Body} - Request body type
|
|
2000
|
+
*/
|
|
2001
|
+
export type GET_DomainForwardsMetricsBrowser_Request = {
|
|
2002
|
+
parameters: {
|
|
2003
|
+
query: operations['browser_stats_v1_domain_forwards_metrics_browser_get']['parameters']['query'];
|
|
2004
|
+
};
|
|
2005
|
+
}
|
|
2006
|
+
/**
|
|
2007
|
+
* Query parameters for GET /v1/domain-forwards/metrics/browser
|
|
2008
|
+
*
|
|
2009
|
+
* @remarks
|
|
2010
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/browser endpoint.
|
|
2011
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2012
|
+
*
|
|
2013
|
+
* @example
|
|
2014
|
+
* Use this type to ensure type safety for query parameters.
|
|
2015
|
+
*
|
|
2016
|
+
* @path /v1/domain-forwards/metrics/browser
|
|
2017
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2018
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2019
|
+
*/
|
|
2020
|
+
export type GET_DomainForwardsMetricsBrowser_Request_Query = GET_DomainForwardsMetricsBrowser_Request['parameters']['query'];
|
|
2021
|
+
|
|
2022
|
+
/**
|
|
2023
|
+
* Request type for GET DomainForwardsMetricsGeo endpoint
|
|
2024
|
+
*
|
|
2025
|
+
* Geo Stats
|
|
2026
|
+
*
|
|
2027
|
+
* @remarks
|
|
2028
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsGeo endpoint.
|
|
2029
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2030
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2031
|
+
*
|
|
2032
|
+
* @example
|
|
2033
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2034
|
+
*
|
|
2035
|
+
* @path /v1/domain-forwards/metrics/geo
|
|
2036
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2037
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2038
|
+
*
|
|
2039
|
+
* @see {@link GET_DomainForwardsMetricsGeo_Request_Query} - Query parameters type
|
|
2040
|
+
* @see {@link GET_DomainForwardsMetricsGeo_Request_Path} - Path parameters type
|
|
2041
|
+
* @see {@link GET_DomainForwardsMetricsGeo_Request_Body} - Request body type
|
|
2042
|
+
*/
|
|
2043
|
+
export type GET_DomainForwardsMetricsGeo_Request = {
|
|
2044
|
+
parameters: {
|
|
2045
|
+
query: operations['geo_stats_v1_domain_forwards_metrics_geo_get']['parameters']['query'];
|
|
2046
|
+
};
|
|
2047
|
+
}
|
|
2048
|
+
/**
|
|
2049
|
+
* Query parameters for GET /v1/domain-forwards/metrics/geo
|
|
2050
|
+
*
|
|
2051
|
+
* @remarks
|
|
2052
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/geo endpoint.
|
|
2053
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2054
|
+
*
|
|
2055
|
+
* @example
|
|
2056
|
+
* Use this type to ensure type safety for query parameters.
|
|
2057
|
+
*
|
|
2058
|
+
* @path /v1/domain-forwards/metrics/geo
|
|
2059
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2060
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2061
|
+
*/
|
|
2062
|
+
export type GET_DomainForwardsMetricsGeo_Request_Query = GET_DomainForwardsMetricsGeo_Request['parameters']['query'];
|
|
2063
|
+
|
|
2064
|
+
/**
|
|
2065
|
+
* Request type for GET DomainForwardsMetricsPlatform endpoint
|
|
2066
|
+
*
|
|
2067
|
+
* Platform Stats
|
|
2068
|
+
*
|
|
2069
|
+
* @remarks
|
|
2070
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsPlatform endpoint.
|
|
2071
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2072
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2073
|
+
*
|
|
2074
|
+
* @example
|
|
2075
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2076
|
+
*
|
|
2077
|
+
* @path /v1/domain-forwards/metrics/platform
|
|
2078
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2079
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2080
|
+
*
|
|
2081
|
+
* @see {@link GET_DomainForwardsMetricsPlatform_Request_Query} - Query parameters type
|
|
2082
|
+
* @see {@link GET_DomainForwardsMetricsPlatform_Request_Path} - Path parameters type
|
|
2083
|
+
* @see {@link GET_DomainForwardsMetricsPlatform_Request_Body} - Request body type
|
|
2084
|
+
*/
|
|
2085
|
+
export type GET_DomainForwardsMetricsPlatform_Request = {
|
|
2086
|
+
parameters: {
|
|
2087
|
+
query: operations['platform_stats_v1_domain_forwards_metrics_platform_get']['parameters']['query'];
|
|
2088
|
+
};
|
|
2089
|
+
}
|
|
2090
|
+
/**
|
|
2091
|
+
* Query parameters for GET /v1/domain-forwards/metrics/platform
|
|
2092
|
+
*
|
|
2093
|
+
* @remarks
|
|
2094
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/platform endpoint.
|
|
2095
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2096
|
+
*
|
|
2097
|
+
* @example
|
|
2098
|
+
* Use this type to ensure type safety for query parameters.
|
|
2099
|
+
*
|
|
2100
|
+
* @path /v1/domain-forwards/metrics/platform
|
|
2101
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2102
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2103
|
+
*/
|
|
2104
|
+
export type GET_DomainForwardsMetricsPlatform_Request_Query = GET_DomainForwardsMetricsPlatform_Request['parameters']['query'];
|
|
2105
|
+
|
|
2106
|
+
/**
|
|
2107
|
+
* Request type for GET DomainForwardsMetricsReferrer endpoint
|
|
2108
|
+
*
|
|
2109
|
+
* Referrer Stats
|
|
2110
|
+
*
|
|
2111
|
+
* @remarks
|
|
2112
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsReferrer endpoint.
|
|
2113
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2114
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2115
|
+
*
|
|
2116
|
+
* @example
|
|
2117
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2118
|
+
*
|
|
2119
|
+
* @path /v1/domain-forwards/metrics/referrer
|
|
2120
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2121
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2122
|
+
*
|
|
2123
|
+
* @see {@link GET_DomainForwardsMetricsReferrer_Request_Query} - Query parameters type
|
|
2124
|
+
* @see {@link GET_DomainForwardsMetricsReferrer_Request_Path} - Path parameters type
|
|
2125
|
+
* @see {@link GET_DomainForwardsMetricsReferrer_Request_Body} - Request body type
|
|
2126
|
+
*/
|
|
2127
|
+
export type GET_DomainForwardsMetricsReferrer_Request = {
|
|
2128
|
+
parameters: {
|
|
2129
|
+
query: operations['referrer_stats_v1_domain_forwards_metrics_referrer_get']['parameters']['query'];
|
|
2130
|
+
};
|
|
2131
|
+
}
|
|
2132
|
+
/**
|
|
2133
|
+
* Query parameters for GET /v1/domain-forwards/metrics/referrer
|
|
2134
|
+
*
|
|
2135
|
+
* @remarks
|
|
2136
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/referrer endpoint.
|
|
2137
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2138
|
+
*
|
|
2139
|
+
* @example
|
|
2140
|
+
* Use this type to ensure type safety for query parameters.
|
|
2141
|
+
*
|
|
2142
|
+
* @path /v1/domain-forwards/metrics/referrer
|
|
2143
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2144
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2145
|
+
*/
|
|
2146
|
+
export type GET_DomainForwardsMetricsReferrer_Request_Query = GET_DomainForwardsMetricsReferrer_Request['parameters']['query'];
|
|
2147
|
+
|
|
2148
|
+
/**
|
|
2149
|
+
* Request type for GET DomainForwardsMetricsStatusCode endpoint
|
|
2150
|
+
*
|
|
2151
|
+
* Status Code Stats
|
|
2152
|
+
*
|
|
2153
|
+
* @remarks
|
|
2154
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsStatusCode endpoint.
|
|
2155
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2156
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2157
|
+
*
|
|
2158
|
+
* @example
|
|
2159
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2160
|
+
*
|
|
2161
|
+
* @path /v1/domain-forwards/metrics/status-code
|
|
2162
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2163
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2164
|
+
*
|
|
2165
|
+
* @see {@link GET_DomainForwardsMetricsStatusCode_Request_Query} - Query parameters type
|
|
2166
|
+
* @see {@link GET_DomainForwardsMetricsStatusCode_Request_Path} - Path parameters type
|
|
2167
|
+
* @see {@link GET_DomainForwardsMetricsStatusCode_Request_Body} - Request body type
|
|
2168
|
+
*/
|
|
2169
|
+
export type GET_DomainForwardsMetricsStatusCode_Request = {
|
|
2170
|
+
parameters: {
|
|
2171
|
+
query: operations['status_code_stats_v1_domain_forwards_metrics_status_code_get']['parameters']['query'];
|
|
2172
|
+
};
|
|
2173
|
+
}
|
|
2174
|
+
/**
|
|
2175
|
+
* Query parameters for GET /v1/domain-forwards/metrics/status-code
|
|
2176
|
+
*
|
|
2177
|
+
* @remarks
|
|
2178
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/status-code endpoint.
|
|
2179
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2180
|
+
*
|
|
2181
|
+
* @example
|
|
2182
|
+
* Use this type to ensure type safety for query parameters.
|
|
2183
|
+
*
|
|
2184
|
+
* @path /v1/domain-forwards/metrics/status-code
|
|
2185
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2186
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2187
|
+
*/
|
|
2188
|
+
export type GET_DomainForwardsMetricsStatusCode_Request_Query = GET_DomainForwardsMetricsStatusCode_Request['parameters']['query'];
|
|
2189
|
+
|
|
2190
|
+
/**
|
|
2191
|
+
* Request type for GET DomainForwardsMetricsTimeSeries endpoint
|
|
2192
|
+
*
|
|
2193
|
+
* Time Series
|
|
2194
|
+
*
|
|
2195
|
+
* @remarks
|
|
2196
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsTimeSeries endpoint.
|
|
2197
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2198
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2199
|
+
*
|
|
2200
|
+
* @example
|
|
2201
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2202
|
+
*
|
|
2203
|
+
* @path /v1/domain-forwards/metrics/time-series
|
|
2204
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2205
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2206
|
+
*
|
|
2207
|
+
* @see {@link GET_DomainForwardsMetricsTimeSeries_Request_Query} - Query parameters type
|
|
2208
|
+
* @see {@link GET_DomainForwardsMetricsTimeSeries_Request_Path} - Path parameters type
|
|
2209
|
+
* @see {@link GET_DomainForwardsMetricsTimeSeries_Request_Body} - Request body type
|
|
2210
|
+
*/
|
|
2211
|
+
export type GET_DomainForwardsMetricsTimeSeries_Request = {
|
|
2212
|
+
parameters: {
|
|
2213
|
+
query: operations['time_series_v1_domain_forwards_metrics_time_series_get']['parameters']['query'];
|
|
2214
|
+
};
|
|
2215
|
+
}
|
|
2216
|
+
/**
|
|
2217
|
+
* Query parameters for GET /v1/domain-forwards/metrics/time-series
|
|
2218
|
+
*
|
|
2219
|
+
* @remarks
|
|
2220
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/time-series endpoint.
|
|
2221
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2222
|
+
*
|
|
2223
|
+
* @example
|
|
2224
|
+
* Use this type to ensure type safety for query parameters.
|
|
2225
|
+
*
|
|
2226
|
+
* @path /v1/domain-forwards/metrics/time-series
|
|
2227
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2228
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2229
|
+
*/
|
|
2230
|
+
export type GET_DomainForwardsMetricsTimeSeries_Request_Query = GET_DomainForwardsMetricsTimeSeries_Request['parameters']['query'];
|
|
2231
|
+
|
|
2232
|
+
/**
|
|
2233
|
+
* Request type for GET DomainForwardsMetricsUserAgent endpoint
|
|
2234
|
+
*
|
|
2235
|
+
* User Agent Stats
|
|
2236
|
+
*
|
|
2237
|
+
* @remarks
|
|
2238
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsUserAgent endpoint.
|
|
2239
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2240
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2241
|
+
*
|
|
2242
|
+
* @example
|
|
2243
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2244
|
+
*
|
|
2245
|
+
* @path /v1/domain-forwards/metrics/user-agent
|
|
2246
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2247
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2248
|
+
*
|
|
2249
|
+
* @see {@link GET_DomainForwardsMetricsUserAgent_Request_Query} - Query parameters type
|
|
2250
|
+
* @see {@link GET_DomainForwardsMetricsUserAgent_Request_Path} - Path parameters type
|
|
2251
|
+
* @see {@link GET_DomainForwardsMetricsUserAgent_Request_Body} - Request body type
|
|
2252
|
+
*/
|
|
2253
|
+
export type GET_DomainForwardsMetricsUserAgent_Request = {
|
|
2254
|
+
parameters: {
|
|
2255
|
+
query: operations['user_agent_stats_v1_domain_forwards_metrics_user_agent_get']['parameters']['query'];
|
|
2256
|
+
};
|
|
2257
|
+
}
|
|
2258
|
+
/**
|
|
2259
|
+
* Query parameters for GET /v1/domain-forwards/metrics/user-agent
|
|
2260
|
+
*
|
|
2261
|
+
* @remarks
|
|
2262
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/user-agent endpoint.
|
|
2263
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2264
|
+
*
|
|
2265
|
+
* @example
|
|
2266
|
+
* Use this type to ensure type safety for query parameters.
|
|
2267
|
+
*
|
|
2268
|
+
* @path /v1/domain-forwards/metrics/user-agent
|
|
2269
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2270
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2271
|
+
*/
|
|
2272
|
+
export type GET_DomainForwardsMetricsUserAgent_Request_Query = GET_DomainForwardsMetricsUserAgent_Request['parameters']['query'];
|
|
2273
|
+
|
|
2274
|
+
/**
|
|
2275
|
+
* Request type for GET DomainForwardsMetricsVisitsByKey endpoint
|
|
2276
|
+
*
|
|
2277
|
+
* Visits By Key
|
|
2278
|
+
*
|
|
2279
|
+
* @remarks
|
|
2280
|
+
* This type defines the complete request structure for the GET DomainForwardsMetricsVisitsByKey endpoint.
|
|
2281
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2282
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2283
|
+
*
|
|
2284
|
+
* @example
|
|
2285
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2286
|
+
*
|
|
2287
|
+
* @path /v1/domain-forwards/metrics/visits-by-key
|
|
2288
|
+
* @param grouping (query) - Grouping key: url, fqdn, domain, or forward
|
|
2289
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2290
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2291
|
+
*
|
|
2292
|
+
* @see {@link GET_DomainForwardsMetricsVisitsByKey_Request_Query} - Query parameters type
|
|
2293
|
+
* @see {@link GET_DomainForwardsMetricsVisitsByKey_Request_Path} - Path parameters type
|
|
2294
|
+
* @see {@link GET_DomainForwardsMetricsVisitsByKey_Request_Body} - Request body type
|
|
2295
|
+
*/
|
|
2296
|
+
export type GET_DomainForwardsMetricsVisitsByKey_Request = {
|
|
2297
|
+
parameters: {
|
|
2298
|
+
query: operations['visits_by_key_v1_domain_forwards_metrics_visits_by_key_get']['parameters']['query'];
|
|
2299
|
+
};
|
|
2300
|
+
}
|
|
2301
|
+
/**
|
|
2302
|
+
* Query parameters for GET /v1/domain-forwards/metrics/visits-by-key
|
|
2303
|
+
*
|
|
2304
|
+
* @remarks
|
|
2305
|
+
* This type defines the query parameters for the GET /v1/domain-forwards/metrics/visits-by-key endpoint.
|
|
2306
|
+
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2307
|
+
*
|
|
2308
|
+
* @example
|
|
2309
|
+
* Use this type to ensure type safety for query parameters.
|
|
2310
|
+
*
|
|
2311
|
+
* @path /v1/domain-forwards/metrics/visits-by-key
|
|
2312
|
+
* @param grouping (query) - Grouping key: url, fqdn, domain, or forward
|
|
2313
|
+
* @param protocol (query) - Filter by protocol: http or https
|
|
2314
|
+
* @param time_range (query) - Time range: 1h, 1d, 7d, or 30d
|
|
2315
|
+
*/
|
|
2316
|
+
export type GET_DomainForwardsMetricsVisitsByKey_Request_Query = GET_DomainForwardsMetricsVisitsByKey_Request['parameters']['query'];
|
|
2317
|
+
|
|
1938
2318
|
/**
|
|
1939
2319
|
* Request type for GET DomainSearchSuggest endpoint
|
|
1940
2320
|
*
|