Skip to content

Commit c27f4eb

Browse files
committed
app+proto: run make protos
1 parent 5882a21 commit c27f4eb

File tree

4 files changed

+130
-3
lines changed

4 files changed

+130
-3
lines changed

app/src/types/generated/firewall_pb.d.ts

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/types/generated/firewall_pb.js

Lines changed: 104 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/util/tests/sampleData.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@ export const litListSessions: LIT.ListSessionsResponse.AsObject = {
906906
sessionType: LIT.SessionType.TYPE_UI_PASSWORD,
907907
createdAt: '253300000000',
908908
accountId: '',
909+
groupId: '',
909910
revokedAt: '453300000000',
910911
autopilotFeatureInfoMap: [
911912
[
@@ -986,6 +987,7 @@ export const litListSessions: LIT.ListSessionsResponse.AsObject = {
986987
sessionType: LIT.SessionType.TYPE_UI_PASSWORD,
987988
createdAt: '253300000000',
988989
revokedAt: '453300000000',
990+
groupId: '',
989991
accountId: '',
990992
autopilotFeatureInfoMap: [
991993
[

proto/firewall.proto

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,20 @@ message PrivacyMapConversionRequest {
3636
bool real_to_pseudo = 1;
3737

3838
/*
39+
Deprecated, use group_id.
3940
The session ID under which to search for the real-pseudo pair.
4041
*/
41-
bytes session_id = 2;
42+
bytes session_id = 2 [deprecated = true];
4243

4344
/*
4445
The input to be converted into the real or pseudo value.
4546
*/
4647
string input = 3;
48+
49+
/*
50+
The group ID under which to search for the real-pseudo pair.
51+
*/
52+
bytes group_id = 4;
4753
}
4854

4955
message PrivacyMapConversionResponse {
@@ -120,6 +126,11 @@ message ListActionsRequest {
120126
considered.
121127
*/
122128
uint64 end_timestamp = 11 [jstype = JS_STRING];
129+
130+
/*
131+
If specified, then only actions under the given group will be queried.
132+
*/
133+
bytes group_id = 12;
123134
}
124135

125136
message ListActionsResponse {

0 commit comments

Comments
 (0)