chore: retire private visibility

This commit is contained in:
Steven
2024-08-31 22:08:57 +08:00
parent b74e4f90c1
commit a49f87c55f
12 changed files with 34 additions and 147 deletions

View File

@ -10,19 +10,10 @@ enum State {
INACTIVE = 2;
}
// deprecated
enum RowStatus {
ROW_STATUS_UNSPECIFIED = 0;
NORMAL = 1;
ARCHIVED = 2;
}
enum Visibility {
VISIBILITY_UNSPECIFIED = 0;
PRIVATE = 1 [deprecated = true];
WORKSPACE = 1;
WORKSPACE = 2;
PUBLIC = 3;
PUBLIC = 2;
}