Update to latest proto definitions from SteamDatabase/Protobufs

From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
This commit is contained in:
TBK 2025-10-18 20:00:55 +02:00
commit 9946f23749
No known key found for this signature in database
GPG key ID: 4F205025B48377EB
127 changed files with 40662 additions and 28630 deletions

View file

@ -10,7 +10,6 @@ message CGameRecordingFile {
repeated .CGameRecordingPostGameSummary postgame_events = 2;
repeated string temporary_clips = 3;
repeated .CGameRecordingTag tags = 4;
repeated .CGameRecordingPhase phases = 5;
}
message CGameRecordingClipFile {
@ -51,6 +50,7 @@ message CGameRecordingTimelineMetadata {
optional uint64 duration_ms = 4;
repeated .CGameRecordingTimelineMetadata.Recording recordings = 5;
repeated .CGameRecordingPhase phases = 6;
repeated .CGameRecordingTimelineEvent significant_events = 7;
}
message CGameRecordingPostGameSummary {
@ -96,14 +96,12 @@ message CGameRecordingPhase {
optional string group = 2;
}
optional string title = 1;
optional string desc = 2;
optional string icon = 3;
optional string phase_id = 4;
optional uint64 duration_ms = 5;
repeated .CGameRecordingPhase.Tag tags = 6;
repeated .CGameRecordingPhase.Tag contained_tags = 7;
optional uint64 background_timeline_offset = 8;
repeated .CPhaseAttribute attributes = 9;
}
message CTimelineTag {
@ -112,3 +110,9 @@ message CTimelineTag {
optional string icon = 3;
optional uint32 priority = 4;
}
message CPhaseAttribute {
optional string group = 1;
optional string value = 2;
optional uint32 priority = 3;
}