zed/zed-rpc/proto/zed.proto
2021-06-15 10:46:23 +02:00

66 lines
1.3 KiB
Protocol Buffer

syntax = "proto3";
package zed.messages;
message FromClient {
int32 id = 1;
oneof variant {
Auth auth = 2;
NewWorktree new_worktree = 3;
ShareWorktree share_worktree = 4;
UploadFile upload_file = 5;
SubscribeToPathRequests subscribe_to_path_requests = 6;
}
message Auth {
int32 user_id = 1;
string access_token = 2;
}
message NewWorktree {}
message ShareWorktree {
uint64 worktree_id = 1;
repeated PathAndDigest files = 2;
}
message PathAndDigest {
bytes path = 1;
bytes digest = 2;
}
message UploadFile {
bytes path = 1;
bytes content = 2;
}
message SubscribeToPathRequests {}
}
message FromServer {
optional int32 request_id = 1;
oneof variant {
AuthResponse auth_response = 2;
NewWorktreeResponse new_worktree_response = 3;
ShareWorktreeResponse share_worktree_response = 4;
PathRequest path_request = 5;
}
message AuthResponse {
bool credentials_valid = 1;
}
message NewWorktreeResponse {
uint64 worktree_id = 1;
}
message ShareWorktreeResponse {
repeated int32 needed_file_indices = 1;
}
message PathRequest {
bytes path = 1;
}
}