@@ -301,8 +301,13 @@ export interface BrowserCacheTTL {
301
301
id ?: 'browser_cache_ttl' ;
302
302
303
303
/**
304
- * The number of seconds to cache resources for. The API prohibits setting this to
305
- * 0 for non-Enterprise domains.
304
+ * The number of seconds to cache resources for. Minimum values by plan:
305
+ *
306
+ * - Free: 7200 seconds (2 hours)
307
+ * - Pro: 3600 seconds (1 hour)
308
+ * - Business: 1 second
309
+ * - Enterprise: 1 second Setting this to 0 enables "Respect Existing Headers" and
310
+ * is allowed for all plans.
306
311
*/
307
312
value ?: number ;
308
313
}
@@ -314,8 +319,13 @@ export interface BrowserCacheTTLParam {
314
319
id ?: 'browser_cache_ttl' ;
315
320
316
321
/**
317
- * The number of seconds to cache resources for. The API prohibits setting this to
318
- * 0 for non-Enterprise domains.
322
+ * The number of seconds to cache resources for. Minimum values by plan:
323
+ *
324
+ * - Free: 7200 seconds (2 hours)
325
+ * - Pro: 3600 seconds (1 hour)
326
+ * - Business: 1 second
327
+ * - Enterprise: 1 second Setting this to 0 enables "Respect Existing Headers" and
328
+ * is allowed for all plans.
319
329
*/
320
330
value ?: number ;
321
331
}
@@ -1704,35 +1714,7 @@ export namespace SettingEditResponse {
1704
1714
/**
1705
1715
* Current value of the zone setting.
1706
1716
*/
1707
- value :
1708
- | 0
1709
- | 30
1710
- | 60
1711
- | 120
1712
- | 300
1713
- | 1200
1714
- | 1800
1715
- | 3600
1716
- | 7200
1717
- | 10800
1718
- | 14400
1719
- | 18000
1720
- | 28800
1721
- | 43200
1722
- | 57600
1723
- | 72000
1724
- | 86400
1725
- | 172800
1726
- | 259200
1727
- | 345600
1728
- | 432000
1729
- | 691200
1730
- | 1382400
1731
- | 2073600
1732
- | 2678400
1733
- | 5356800
1734
- | 16070400
1735
- | 31536000 ;
1717
+ value : number ;
1736
1718
1737
1719
/**
1738
1720
* Whether or not this setting can be modified for this zone (based on your
@@ -2776,35 +2758,7 @@ export namespace SettingGetResponse {
2776
2758
/**
2777
2759
* Current value of the zone setting.
2778
2760
*/
2779
- value :
2780
- | 0
2781
- | 30
2782
- | 60
2783
- | 120
2784
- | 300
2785
- | 1200
2786
- | 1800
2787
- | 3600
2788
- | 7200
2789
- | 10800
2790
- | 14400
2791
- | 18000
2792
- | 28800
2793
- | 43200
2794
- | 57600
2795
- | 72000
2796
- | 86400
2797
- | 172800
2798
- | 259200
2799
- | 345600
2800
- | 432000
2801
- | 691200
2802
- | 1382400
2803
- | 2073600
2804
- | 2678400
2805
- | 5356800
2806
- | 16070400
2807
- | 31536000 ;
2761
+ value : number ;
2808
2762
2809
2763
/**
2810
2764
* Whether or not this setting can be modified for this zone (based on your
0 commit comments