@@ -382,6 +382,12 @@ export namespace Application {
382
382
*/
383
383
name ?: string ;
384
384
385
+ /**
386
+ * Allows options preflight requests to bypass Access authentication and go
387
+ * directly to the origin. Cannot turn on if cors_headers is set.
388
+ */
389
+ options_preflight_bypass ?: boolean ;
390
+
385
391
/**
386
392
* Enables cookie paths to scope an application's JWT to the application path. If
387
393
* disabled, the JWT will scope to the hostname by default
@@ -637,6 +643,12 @@ export namespace Application {
637
643
*/
638
644
name ?: string ;
639
645
646
+ /**
647
+ * Allows options preflight requests to bypass Access authentication and go
648
+ * directly to the origin. Cannot turn on if cors_headers is set.
649
+ */
650
+ options_preflight_bypass ?: boolean ;
651
+
640
652
/**
641
653
* Enables cookie paths to scope an application's JWT to the application path. If
642
654
* disabled, the JWT will scope to the hostname by default
@@ -776,6 +788,12 @@ export namespace Application {
776
788
*/
777
789
name ?: string ;
778
790
791
+ /**
792
+ * Allows options preflight requests to bypass Access authentication and go
793
+ * directly to the origin. Cannot turn on if cors_headers is set.
794
+ */
795
+ options_preflight_bypass ?: boolean ;
796
+
779
797
/**
780
798
* Enables cookie paths to scope an application's JWT to the application path. If
781
799
* disabled, the JWT will scope to the hostname by default
@@ -1298,6 +1316,12 @@ export namespace ApplicationCreateParams {
1298
1316
*/
1299
1317
name ?: string ;
1300
1318
1319
+ /**
1320
+ * Body param: Allows options preflight requests to bypass Access authentication
1321
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
1322
+ */
1323
+ options_preflight_bypass ?: boolean ;
1324
+
1301
1325
/**
1302
1326
* Body param: Enables cookie paths to scope an application's JWT to the
1303
1327
* application path. If disabled, the JWT will scope to the hostname by default
@@ -1555,6 +1579,12 @@ export namespace ApplicationCreateParams {
1555
1579
*/
1556
1580
name ?: string ;
1557
1581
1582
+ /**
1583
+ * Body param: Allows options preflight requests to bypass Access authentication
1584
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
1585
+ */
1586
+ options_preflight_bypass ?: boolean ;
1587
+
1558
1588
/**
1559
1589
* Body param: Enables cookie paths to scope an application's JWT to the
1560
1590
* application path. If disabled, the JWT will scope to the hostname by default
@@ -1698,6 +1728,12 @@ export namespace ApplicationCreateParams {
1698
1728
*/
1699
1729
name ?: string ;
1700
1730
1731
+ /**
1732
+ * Body param: Allows options preflight requests to bypass Access authentication
1733
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
1734
+ */
1735
+ options_preflight_bypass ?: boolean ;
1736
+
1701
1737
/**
1702
1738
* Body param: Enables cookie paths to scope an application's JWT to the
1703
1739
* application path. If disabled, the JWT will scope to the hostname by default
@@ -2012,6 +2048,12 @@ export namespace ApplicationUpdateParams {
2012
2048
*/
2013
2049
name ?: string ;
2014
2050
2051
+ /**
2052
+ * Body param: Allows options preflight requests to bypass Access authentication
2053
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
2054
+ */
2055
+ options_preflight_bypass ?: boolean ;
2056
+
2015
2057
/**
2016
2058
* Body param: Enables cookie paths to scope an application's JWT to the
2017
2059
* application path. If disabled, the JWT will scope to the hostname by default
@@ -2269,6 +2311,12 @@ export namespace ApplicationUpdateParams {
2269
2311
*/
2270
2312
name ?: string ;
2271
2313
2314
+ /**
2315
+ * Body param: Allows options preflight requests to bypass Access authentication
2316
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
2317
+ */
2318
+ options_preflight_bypass ?: boolean ;
2319
+
2272
2320
/**
2273
2321
* Body param: Enables cookie paths to scope an application's JWT to the
2274
2322
* application path. If disabled, the JWT will scope to the hostname by default
@@ -2412,6 +2460,12 @@ export namespace ApplicationUpdateParams {
2412
2460
*/
2413
2461
name ?: string ;
2414
2462
2463
+ /**
2464
+ * Body param: Allows options preflight requests to bypass Access authentication
2465
+ * and go directly to the origin. Cannot turn on if cors_headers is set.
2466
+ */
2467
+ options_preflight_bypass ?: boolean ;
2468
+
2415
2469
/**
2416
2470
* Body param: Enables cookie paths to scope an application's JWT to the
2417
2471
* application path. If disabled, the JWT will scope to the hostname by default
0 commit comments