File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ message AppGuardIpInfo {
5656 optional string region = 7 ;
5757 optional string postal = 8 ;
5858 optional string timezone = 9 ;
59- bool blacklist = 100 ;
59+ // bool blacklist = 100;
6060}
6161
6262message AppGuardTcpInfo {
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ message ServerMessage {
4646message FirewallDefaults {
4747 uint32 timeout = 1 ;
4848 FirewallPolicy policy = 2 ;
49+ bool cache = 3 ;
4950}
5051
5152enum FirewallPolicy {
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ export interface AppGuardIpInfo {
1111 'region' ?: ( string ) ;
1212 'postal' ?: ( string ) ;
1313 'timezone' ?: ( string ) ;
14- 'blacklist' ?: ( boolean ) ;
1514 '_country' ?: "country" ;
1615 '_asn' ?: "asn" ;
1716 '_org' ?: "org" ;
@@ -32,5 +31,4 @@ export interface AppGuardIpInfo__Output {
3231 'region' ?: ( string ) ;
3332 'postal' ?: ( string ) ;
3433 'timezone' ?: ( string ) ;
35- 'blacklist' ?: ( boolean ) ;
3634}
Original file line number Diff line number Diff line change @@ -5,9 +5,11 @@ import type { FirewallPolicy as _appguard_commands_FirewallPolicy } from '../app
55export interface FirewallDefaults {
66 'timeout' ?: ( number ) ;
77 'policy' ?: ( _appguard_commands_FirewallPolicy | keyof typeof _appguard_commands_FirewallPolicy ) ;
8+ 'cache' ?: ( boolean ) ;
89}
910
1011export interface FirewallDefaults__Output {
1112 'timeout' ?: ( number ) ;
1213 'policy' ?: ( _appguard_commands_FirewallPolicy ) ;
14+ 'cache' ?: ( boolean ) ;
1315}
You can’t perform that action at this time.
0 commit comments