hyperboria/nexus/models/proto/operation.proto
the-superpirate dd23846059 - [nexus] Refactoring
- [nexus] Switch bot
  - [bot] Added extra receivers functionality

GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
2022-03-28 17:42:18 +03:00

40 lines
778 B
Protocol Buffer

syntax = "proto3";
package nexus.models.proto;
import "nexus/models/proto/typed_document.proto";
message CrossReferenceOperation {
string source = 1;
string target = 2;
uint32 last_retry_unixtime = 3;
uint32 retry_count = 4;
}
message DocumentOperation {
oneof operation {
Vote vote = 1;
StoreTelegramFileId store_telegram_file_id = 2;
UpdateDocument update_document = 3;
};
}
message Vote {
int64 document_id = 1;
int32 value = 2;
int64 voter_id = 3;
}
message UpdateDocument {
repeated string fields = 1;
bool should_fill_from_external_source = 2;
bool commit = 3;
bool reindex = 4;
TypedDocument typed_document = 5;
}
message StoreTelegramFileId {
string bot_name = 1;
string telegram_file_id = 2;
int64 document_id = 3;
}