Skip to content

Commit

Permalink
fix(gebura): use internal id for AppSaveFile
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabing010102 committed Mar 9, 2024
1 parent bfd8923 commit e0ccb7f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions proto/librarian/sephirah/v1/gebura.proto
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ message UploadAppSaveFileResponse {
}

message DownloadAppSaveFileRequest {
librarian.v1.InternalID file_id = 1;
librarian.v1.InternalID id = 1;
}

message DownloadAppSaveFileResponse {
Expand All @@ -254,26 +254,27 @@ message ListAppSaveFilesRequest {

message ListAppSaveFilesResponse {
message Result {
FileMetadata file = 1;
bool pinned = 2;
librarian.v1.InternalID id = 1;
FileMetadata file = 2;
bool pinned = 3;
}
repeated Result results = 1;
}

message RemoveAppSaveFileRequest {
librarian.v1.InternalID file_id = 1;
librarian.v1.InternalID id = 1;
}

message RemoveAppSaveFileResponse {}

message PinAppSaveFileRequest {
librarian.v1.InternalID file_id = 1;
librarian.v1.InternalID id = 1;
}

message PinAppSaveFileResponse {}

message UnpinAppSaveFileRequest {
librarian.v1.InternalID file_id = 1;
librarian.v1.InternalID id = 1;
}

message UnpinAppSaveFileResponse {}
Expand Down

0 comments on commit e0ccb7f

Please sign in to comment.