diff --git a/plug.proto b/plug.proto index 207ec65..52f3036 100644 --- a/plug.proto +++ b/plug.proto @@ -39,17 +39,14 @@ message PlugTask { } message PlugTaskCreation { - string user_id = 1; - string user_source_name = 2; - bool deep_scrape = 3; - string api_key = 4; - string user_source_id = 5; + string user_source_id = 1; + bool deep_scrape = 2; + string api_key = 3; } message SendMessageRequest { string user_source_id = 1; string message = 2; - string user_source_name = 3; } message SendMessageResponse { @@ -58,7 +55,6 @@ message SendMessageResponse { message GetMessagesRequest { string user_source_id = 1; - string user_source_name = 2; } message GetMessagesResponse { @@ -67,8 +63,7 @@ message GetMessagesResponse { message Message { string from_user_source_id = 1; - string from_user_source_name = 2; - google.protobuf.Timestamp created_at = 3; - string body = 4; - string title = 5; + google.protobuf.Timestamp created_at = 2; + string body = 3; + string title = 4; } \ No newline at end of file