add service
Some checks failed
Deploy Smart Search Backend Test / deploy (push) Failing after 14m2s

This commit is contained in:
vallyenfail
2026-01-20 13:47:40 +03:00
parent f834967768
commit f2574a8838
6 changed files with 135 additions and 44 deletions

View File

@@ -57,7 +57,7 @@ message GetMailingListByIDRequest {
}
message GetMailingListByIDResponse {
MailingItem item = 1;
MailingDetail detail = 1;
}
message MailingItem {
@@ -68,3 +68,10 @@ message MailingItem {
google.protobuf.Timestamp created_at = 5;
int32 suppliers_found = 6;
}
message MailingDetail {
string request_id = 1;
string title = 2;
string mail_text = 3;
repeated Supplier suppliers = 4;
}