Skip to content

Commit

Permalink
Merge branch 'main' of github.com:CloudStriver/service-idl-go into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Lansongxx committed Mar 22, 2024
2 parents 9c614fe + 6f71353 commit d128f82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
13 changes: 7 additions & 6 deletions cloudmind/content/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,13 @@ message FileFilterOptions {
optional string onlyUserId = 1;
optional string onlyFileId = 2;
optional string onlyFatherId = 3;
optional string onlyZone = 5; // 分区
optional string onlySubZone = 6; // 子分区
optional int64 onlyIsDel = 7; // 是否删除 1:未删除 2:软删除 3:彻底删除
optional int64 onlyDocumentType = 8; // 操作类型 1:个人空间文件 2:公共空间文件
repeated string onlyType = 9;
optional string onlyLabelId = 10;
optional string onlyZone = 4; // 分区
optional string onlySubZone = 5; // 子分区
optional int64 onlyIsDel = 6; // 是否删除 1:未删除 2:软删除 3:彻底删除
optional int64 onlyDocumentType = 7; // 操作类型 1:个人空间文件 2:公共空间文件
repeated string onlyType = 8;
optional string onlyLabelId = 9;
optional int64 onlyCategory = 10;
}

message ShareFileFilterOptions {
Expand Down
1 change: 1 addition & 0 deletions cloudmind/core_api/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ message FileFilterOptions {
optional int64 onlyDocumentType = 7; // 操作类型 1:个人空间文件 2:公共空间文件
repeated string onlyLabels = 8; // 标签id
repeated string onlyType = 9; // 文件类型
optional int64 onlyCategory = 10;
}

message ShareFileFilterOptions {
Expand Down
2 changes: 2 additions & 0 deletions cloudmind/core_api/content.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ message GetPrivateFilesReq{
optional string lastToken = 8;
optional bool backward = 9;
optional int64 offset = 10;
optional int64 onlyCategory = 11;
}

message GetPrivateFilesResp{
Expand All @@ -88,6 +89,7 @@ message GetPublicFilesReq{
optional string lastToken = 12;
optional bool backward = 13;
optional int64 offset = 14;
optional int64 onlyCategory = 15;
}

message GetPublicFilesResp{
Expand Down

0 comments on commit d128f82

Please sign in to comment.