@@ -96,6 +96,9 @@ export interface DefaultEditResponse {
9696 */
9797 enabled ?: boolean ;
9898
99+ /**
100+ * List of routes excluded in the WARP client's tunnel.
101+ */
99102 exclude ?: Array < PoliciesAPI . SplitTunnelExclude > ;
100103
101104 /**
@@ -107,6 +110,9 @@ export interface DefaultEditResponse {
107110
108111 gateway_unique_id ?: string ;
109112
113+ /**
114+ * List of routes included in the WARP client's tunnel.
115+ */
110116 include ?: Array < PoliciesAPI . SplitTunnelInclude > ;
111117
112118 /**
@@ -191,6 +197,9 @@ export interface DefaultGetResponse {
191197 */
192198 enabled ?: boolean ;
193199
200+ /**
201+ * List of routes excluded in the WARP client's tunnel.
202+ */
194203 exclude ?: Array < PoliciesAPI . SplitTunnelExclude > ;
195204
196205 /**
@@ -202,6 +211,9 @@ export interface DefaultGetResponse {
202211
203212 gateway_unique_id ?: string ;
204213
214+ /**
215+ * List of routes included in the WARP client's tunnel.
216+ */
205217 include ?: Array < PoliciesAPI . SplitTunnelInclude > ;
206218
207219 /**
@@ -282,11 +294,23 @@ export interface DefaultEditParams {
282294 */
283295 disable_auto_fallback ?: boolean ;
284296
297+ /**
298+ * Body param: List of routes excluded in the WARP client's tunnel. Both 'exclude'
299+ * and 'include' cannot be set in the same request.
300+ */
301+ exclude ?: Array < PoliciesAPI . SplitTunnelExcludeParam > ;
302+
285303 /**
286304 * Body param: Whether to add Microsoft IPs to Split Tunnel exclusions.
287305 */
288306 exclude_office_ips ?: boolean ;
289307
308+ /**
309+ * Body param: List of routes included in the WARP client's tunnel. Both 'exclude'
310+ * and 'include' cannot be set in the same request.
311+ */
312+ include ?: Array < PoliciesAPI . SplitTunnelExcludeParam > ;
313+
290314 /**
291315 * Body param: Determines if the operating system will register WARP's local
292316 * interface IP with your on-premises DNS server.
0 commit comments