Skip to content

Commit f688139

Browse files
committed
update protobuf
1 parent 313a0ce commit f688139

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

client_common/proto/appguard.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

6262
message AppGuardTcpInfo {

client_common/proto/commands.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ message ServerMessage {
4646
message FirewallDefaults {
4747
uint32 timeout = 1;
4848
FirewallPolicy policy = 2;
49+
bool cache = 3;
4950
}
5051

5152
enum FirewallPolicy {

client_common/src/proto/appguard/AppGuardIpInfo.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

client_common/src/proto/appguard_commands/FirewallDefaults.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ import type { FirewallPolicy as _appguard_commands_FirewallPolicy } from '../app
55
export interface FirewallDefaults {
66
'timeout'?: (number);
77
'policy'?: (_appguard_commands_FirewallPolicy | keyof typeof _appguard_commands_FirewallPolicy);
8+
'cache'?: (boolean);
89
}
910

1011
export interface FirewallDefaults__Output {
1112
'timeout'?: (number);
1213
'policy'?: (_appguard_commands_FirewallPolicy);
14+
'cache'?: (boolean);
1315
}

0 commit comments

Comments
 (0)