Skip to content

Commit 04cfc9f

Browse files
committed
Update protobufs and packages
1 parent e066753 commit 04cfc9f

35 files changed

Lines changed: 3016 additions & 587 deletions

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "Resources/Protobufs"]
22
path = Resources/Protobufs
3-
url = https://github.com/steamdatabase/protobufs.git
3+
url = https://github.com/SteamTracking/Protobufs.git

Resources/Protobufs

Submodule Protobufs updated 88 files

SteamKit2/SteamKit2/Base/Generated/ClientObjects.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4105,7 +4105,7 @@ public partial class CMsgMonitorInfo : global::ProtoBuf.IExtensible
41054105
=> global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing);
41064106

41074107
[global::ProtoBuf.ProtoMember(1, IsRequired = true)]
4108-
public string selected_display_name { get; set; }
4108+
public string selected_device_name { get; set; }
41094109

41104110
[global::ProtoBuf.ProtoMember(2)]
41114111
public global::System.Collections.Generic.List<MonitorInfo> monitors { get; } = new global::System.Collections.Generic.List<MonitorInfo>();

SteamKit2/SteamKit2/Base/Generated/Enums.cs

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,26 @@ public enum EProvideDeckFeedbackPreference
581581
k_EProvideDeckFeedbackPreference_No = 2,
582582
}
583583

584+
[global::ProtoBuf.ProtoContract()]
585+
public enum EHardwareCompatibilityFeedbackDetails
586+
{
587+
k_EHardwareCompatibilityFeedbackDetails_Unset = 0,
588+
k_EHardwareCompatibilityFeedbackDetails_Performance = 1,
589+
k_EHardwareCompatibilityFeedbackDetails_Stability = 2,
590+
k_EHardwareCompatibilityFeedbackDetails_Legibility = 4,
591+
k_EHardwareCompatibilityFeedbackDetails_Input = 8,
592+
k_EHardwareCompatibilityFeedbackDetails_Other = 16,
593+
}
594+
595+
[global::ProtoBuf.ProtoContract()]
596+
public enum EGameFrameRateReportingPreference
597+
{
598+
k_EGameFrameRateReportingPreference_Unset = 0,
599+
k_EGameFrameRateReportingPreference_No = 1,
600+
k_EGameFrameRateReportingPreference_Yes_Anonymous = 2,
601+
k_EGameFrameRateReportingPreference_Yes_NonAnonymous = 3,
602+
}
603+
584604
[global::ProtoBuf.ProtoContract()]
585605
public enum ETouchGesture
586606
{
@@ -869,7 +889,26 @@ public enum EContentReportResolution
869889
k_EContentReportResolution_RemoveAndWarn = 11,
870890
k_EContentReportResolution_RemoveAndBan = 12,
871891
k_EContentReportResolution_RemoveAndKick = 13,
872-
k_EContentReportResolution_MAX = 14,
892+
k_EContentReportResolution_Sanctioned = 14,
893+
k_EContentReportResolution_Sustained = 15,
894+
k_EContentReportResolution_MAX = 16,
895+
}
896+
897+
[global::ProtoBuf.ProtoContract()]
898+
public enum EContentModerationSanction
899+
{
900+
k_EContentModerationSanction_Invalid = 0,
901+
k_EContentModerationSanction_Deleted = 1,
902+
k_EContentModerationSanction_CommunityBanned = 2,
903+
k_EContentModerationSanction_HubBanned = 3,
904+
k_EContentModerationSanction_TradeBanned = 4,
905+
k_EContentModerationSanction_CommentHistoryDeleted = 5,
906+
k_EContentModerationSanction_Relabelled = 6,
907+
k_EContentModerationSanction_MarkAsSuspicious = 7,
908+
k_EContentModerationSanction_Warned = 8,
909+
k_EContentModerationSanction_KickedFromGroup = 9,
910+
k_EContentModerationSanction_HarassmentBanned = 10,
911+
k_EContentModerationSanction_MAX = 11,
873912
}
874913

875914
[global::ProtoBuf.ProtoContract()]
@@ -989,7 +1028,34 @@ public enum EPressOutletAction
9891028
k_EPressOutletAction_Updated = 4,
9901029
k_EPressOutletAction_Deleted = 5,
9911030
k_EPressOutletAction_Undeleted = 6,
992-
k_EPressOutletAction_MAX = 7,
1031+
k_EPressOutletAction_StagedAdd = 7,
1032+
k_EPressOutletAction_StagedDelete = 8,
1033+
k_EPressOutletAction_EnterStaging = 9,
1034+
k_EPressOutletAction_ExitStaging = 10,
1035+
k_EPressOutletAction_ReverseStagedAdd = 11,
1036+
k_EPressOutletAction_ReverseStagedDelete = 12,
1037+
k_EPressOutletAction_MAX = 13,
1038+
}
1039+
1040+
[global::ProtoBuf.ProtoContract()]
1041+
public enum EPressOutletMemberPendingState
1042+
{
1043+
k_EPressOutletMemberPendingState_Member = 0,
1044+
k_EPressOutletMemberPendingState_StagedDelete = 1,
1045+
k_EPressOutletMemberPendingState_StagedAdd = 2,
1046+
k_EPressOutletMemberPendingState_MAX = 3,
1047+
}
1048+
1049+
[global::ProtoBuf.ProtoContract()]
1050+
public enum ECommentDeleteReason
1051+
{
1052+
k_ECommentDeleteReason_Invalid = 0,
1053+
k_ECommentDeleteReason_User = 1,
1054+
k_ECommentDeleteReason_ThreadOwner = 2,
1055+
k_ECommentDeleteReason_Moderator = 3,
1056+
k_ECommentDeleteReason_Support = 4,
1057+
k_ECommentDeleteReason_Spam = 5,
1058+
k_ECommentDeleteReason_AccountDeletion = 6,
9931059
}
9941060

9951061
}

SteamKit2/SteamKit2/Base/Generated/GC/CSGO/MsgGC.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4164,6 +4164,16 @@ public string errormsg
41644164
public void Reseterrormsg() => __pbn__errormsg = null;
41654165
private string __pbn__errormsg;
41664166

4167+
[global::ProtoBuf.ProtoMember(7)]
4168+
public bool is_local_server
4169+
{
4170+
get => __pbn__is_local_server.GetValueOrDefault();
4171+
set => __pbn__is_local_server = value;
4172+
}
4173+
public bool ShouldSerializeis_local_server() => __pbn__is_local_server != null;
4174+
public void Resetis_local_server() => __pbn__is_local_server = null;
4175+
private bool? __pbn__is_local_server;
4176+
41674177
}
41684178

41694179
[global::ProtoBuf.ProtoContract()]

SteamKit2/SteamKit2/Base/Generated/GC/CSGO/SteamMsgGC.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3301,6 +3301,16 @@ public uint points_remaining
33013301
public void Resetpoints_remaining() => __pbn__points_remaining = null;
33023302
private uint? __pbn__points_remaining;
33033303

3304+
[global::ProtoBuf.ProtoMember(5)]
3305+
public uint volatile_limit
3306+
{
3307+
get => __pbn__volatile_limit.GetValueOrDefault();
3308+
set => __pbn__volatile_limit = value;
3309+
}
3310+
public bool ShouldSerializevolatile_limit() => __pbn__volatile_limit != null;
3311+
public void Resetvolatile_limit() => __pbn__volatile_limit = null;
3312+
private uint? __pbn__volatile_limit;
3313+
33043314
}
33053315

33063316
[global::ProtoBuf.ProtoContract()]

0 commit comments

Comments
 (0)