Browse Source

update protobufs

pull/189/head
Rossen Georgiev 6 years ago
parent
commit
a6e221b53d
  1. 19
      protobufs/steammessages_base.proto
  2. 91
      protobufs/steammessages_broadcast.proto
  3. 5
      protobufs/steammessages_chat.proto
  4. 1
      protobufs/steammessages_clientserver_2.proto
  5. 1
      protobufs/steammessages_clientserver_friends.proto
  6. 75
      protobufs/steammessages_player.proto
  7. 53
      protobufs/steammessages_publishedfile.proto
  8. 21
      protobufs/steammessages_site_license.proto
  9. 9
      protobufs/steammessages_store.proto
  10. 1
      protobufs/steammessages_twofactor.proto
  11. 158
      steam/protobufs/steammessages_base_pb2.py
  12. 1058
      steam/protobufs/steammessages_broadcast_pb2.py
  13. 589
      steam/protobufs/steammessages_chat_pb2.py
  14. 425
      steam/protobufs/steammessages_clientserver_2_pb2.py
  15. 91
      steam/protobufs/steammessages_clientserver_friends_pb2.py
  16. 792
      steam/protobufs/steammessages_player_pb2.py
  17. 565
      steam/protobufs/steammessages_publishedfile_pb2.py
  18. 208
      steam/protobufs/steammessages_site_license_pb2.py
  19. 72
      steam/protobufs/steammessages_store_pb2.py
  20. 35
      steam/protobufs/steammessages_twofactor_pb2.py

19
protobufs/steammessages_base.proto

@ -127,3 +127,22 @@ message CLocalizationToken {
optional string localized_string = 2;
}
message CClanEventUserNewsTuple {
optional uint32 clanid = 1;
optional fixed64 event_gid = 2;
optional fixed64 announcement_gid = 3;
optional uint32 rtime_start = 4;
optional uint32 rtime_end = 5;
optional uint32 priority_score = 6;
optional uint32 type = 7;
optional uint32 clamp_range_slot = 8;
optional uint32 appid = 9;
}
message CClanMatchEventByRange {
optional uint32 rtime_before = 1;
optional uint32 rtime_after = 2;
optional uint32 qualified = 3;
repeated .CClanEventUserNewsTuple events = 4;
}

91
protobufs/steammessages_broadcast.proto

@ -17,6 +17,7 @@ enum EBroadcastWatchLocation {
k_EBroadcastWatchLocation_CuratorPage = 10;
k_EBroadcastWatchLocation_DeveloperPage = 11;
k_EBroadcastWatchLocation_Chat_Friends = 12;
k_EBroadcastWatchLocation_SteamTV_Web = 13;
}
enum EBroadcastChatPermission {
@ -32,6 +33,7 @@ message CBroadcast_BeginBroadcastSession_Request {
optional uint32 cellid = 5;
optional uint64 rtmp_token = 6;
optional bool thumbnail_upload = 7;
optional string client_beta = 8;
}
message CBroadcast_BeginBroadcastSession_Response {
@ -56,6 +58,7 @@ message CBroadcast_StartBroadcastUpload_Request {
optional uint32 delay_seconds = 4;
optional uint64 rtmp_token = 5 [default = 0, (description) = "Only set during RTMP uploads; secret key from the user."];
optional uint32 upload_ip_address = 6;
optional bool is_replay = 7;
}
message CBroadcast_StartBroadcastUpload_Response {
@ -64,6 +67,7 @@ message CBroadcast_StartBroadcastUpload_Response {
optional fixed64 upload_relay_id = 3;
optional string thumbnail_upload_address = 4;
optional uint32 thumbnail_interval_seconds = 5;
optional bool enable_replay = 6;
}
message CBroadcast_NotifyBroadcastUploadStop_Notification {
@ -114,6 +118,8 @@ message CBroadcast_WatchBroadcast_Response {
optional fixed64 webrtc_session_id = 15;
optional string webrtc_offer_sdp = 16;
optional string webrtc_turn_server = 17;
optional bool is_replay = 18;
optional int32 duration = 19;
}
message CBroadcast_HeartbeatBroadcast_Notification {
@ -146,6 +152,7 @@ message CBroadcast_GetBroadcastStatus_Response {
optional int32 update_interval = 9;
optional bool is_uploading = 10;
optional uint32 duration = 11;
optional bool is_replay = 12;
}
message CBroadcast_GetBroadcastThumbnail_Request {
@ -157,6 +164,7 @@ message CBroadcast_GetBroadcastThumbnail_Response {
optional string thumbnail_url = 1;
optional int32 update_interval = 2;
optional int32 num_viewers = 3;
optional int32 duration = 4;
}
message CBroadcast_InviteToBroadcast_Request {
@ -191,8 +199,8 @@ message CBroadcast_GetBroadcastChatInfo_Request {
message CBroadcast_GetBroadcastChatInfo_Response {
optional fixed64 chat_id = 1;
optional string view_url = 2;
optional string view_url_template = 3;
repeated uint32 flair_group_ids = 4;
}
message CBroadcast_PostChatMessage_Request {
@ -208,6 +216,17 @@ message CBroadcast_PostChatMessage_Response {
optional int32 cooldown_time_seconds = 4;
}
message CBroadcast_UpdateChatMessageFlair_Request {
optional fixed64 chat_id = 1;
optional string flair = 2;
}
message CBroadcast_UpdateChatMessageFlair_Response {
optional int32 result = 1;
optional fixed64 chat_id = 2;
optional string flair = 3;
}
message CBroadcast_MuteBroadcastChatUser_Request {
optional fixed64 chat_id = 1;
optional fixed64 user_steamid = 2;
@ -249,6 +268,7 @@ message CBroadcast_SetRTMPInfo_Request {
optional int32 broadcast_buffer = 7 [(description) = "Previous seconds we keep of the stream available"];
optional fixed64 steamid = 8 [(description) = "broadcaster steamID if not logged-in user"];
optional uint32 chat_rate_limit = 9 [(description) = "Seconds required between chat messages"];
optional bool enable_replay = 10 [(description) = "Enable replay of last upload"];
}
message CBroadcast_SetRTMPInfo_Response {
@ -270,6 +290,7 @@ message CBroadcast_GetRTMPInfo_Response {
optional int32 broadcast_buffer = 8 [(description) = "Seconds we keep streams available"];
optional fixed64 steamid = 9 [(description) = "broadcaster steamID"];
optional uint32 chat_rate_limit = 10 [(description) = "Seconds required between chat messages"];
optional bool enable_replay = 11 [(description) = "Enable replay of last upload"];
}
message CBroadcast_WebRTCHaveTURNServer_Notification {
@ -347,6 +368,57 @@ message CBroadcast_WebRTCGetHostCandidates_Response {
repeated .CBroadcast_WebRTC_Candidate candidates = 2;
}
message CBroadcast_GetBroadcastUploadStats_Request {
optional uint32 row_limit = 1 [default = 100, (description) = "How many at maximum to return."];
optional uint32 start_time = 2 [default = 0, (description) = "Start time"];
optional uint64 upload_id = 3 [(description) = "Optional relay upload ID"];
}
message CBroadcast_GetBroadcastUploadStats_Response {
message UploadStats {
optional uint32 upload_result = 1;
optional uint32 time_stopped = 2 [(description) = "time broadcast upload stopped"];
optional uint32 seconds_uploaded = 3 [(description) = "seconds of vido uploaded"];
optional uint32 max_viewers = 4 [(description) = "max concurrent viewers"];
optional uint32 resolution_x = 5 [(description) = "horizontal resultion"];
optional uint32 resolution_y = 6 [(description) = "vertical resultion"];
optional uint32 avg_bandwidth = 7;
optional uint64 total_bytes = 8 [(description) = "total byte uploaded by broadcaster"];
optional uint32 app_id = 9 [(description) = "game broadcasted"];
optional uint32 total_unique_viewers = 10 [(description) = "total unique viewers seen"];
optional uint64 total_seconds_watched = 11 [(description) = "total number of seconds watched by all viewers"];
optional uint32 time_started = 12 [(description) = "time broadcast upload started"];
optional uint64 upload_id = 13 [(description) = "broadcast relay upload id"];
optional string local_address = 14 [(description) = "upload to server address"];
optional string remote_address = 15 [(description) = "upload from client address"];
optional uint32 frames_per_second = 16 [(description) = "frames per second"];
optional uint32 num_representations = 17 [(description) = "number of video represetations"];
optional string app_name = 18 [(description) = "game name"];
optional bool is_replay = 19 [(description) = "replay of previous recording"];
}
repeated .CBroadcast_GetBroadcastUploadStats_Response.UploadStats upload_stats = 1;
}
message CBroadcast_GetBroadcastViewerStats_Request {
optional uint64 upload_id = 1 [(description) = "Get stats for this stream"];
}
message CBroadcast_GetBroadcastViewerStats_Response {
message ViewerStats {
optional uint32 time = 1 [(description) = "time of record"];
optional uint32 num_viewers = 2 [(description) = "current number of viewers"];
}
message CountryStats {
optional string country_code = 1 [(description) = "country code"];
optional uint32 num_viewers = 2 [(description) = "number of viewers"];
}
repeated .CBroadcast_GetBroadcastViewerStats_Response.ViewerStats viewer_stats = 1;
repeated .CBroadcast_GetBroadcastViewerStats_Response.CountryStats country_stats = 2;
}
message CBroadcast_BroadcastViewerState_Notification {
enum EViewerState {
k_EViewerNeedsApproval = 1;
@ -382,6 +454,11 @@ message CBroadcast_BroadcastStatus_Notification {
optional int32 num_viewers = 2;
}
message CBroadcast_BroadcastChannelLive_Notification {
optional fixed64 broadcast_channel_id = 1;
optional string broadcast_channel_name = 2;
}
message CBroadcast_SendThumbnailToRelay_Notification {
optional string thumbnail_upload_token = 1;
optional fixed64 thumbnail_broadcast_session_id = 2;
@ -457,6 +534,9 @@ service Broadcast {
rpc PostChatMessage (.CBroadcast_PostChatMessage_Request) returns (.CBroadcast_PostChatMessage_Response) {
option (method_description) = "Post chat message to specified chat room";
}
rpc UpdateChatMessageFlair (.CBroadcast_UpdateChatMessageFlair_Request) returns (.CBroadcast_UpdateChatMessageFlair_Response) {
option (method_description) = "Update chat message flair in the specified chat room";
}
rpc MuteBroadcastChatUser (.CBroadcast_MuteBroadcastChatUser_Request) returns (.CBroadcast_MuteBroadcastChatUser_Response) {
option (method_description) = "Mute a user in your broadcast chat";
}
@ -496,6 +576,12 @@ service Broadcast {
rpc WebRTCGetHostCandidates (.CBroadcast_WebRTCGetHostCandidates_Request) returns (.CBroadcast_WebRTCGetHostCandidates_Response) {
option (method_description) = "Get the ICE candidates for the host side of a WebRTC session";
}
rpc GetBroadcastUploadStats (.CBroadcast_GetBroadcastUploadStats_Request) returns (.CBroadcast_GetBroadcastUploadStats_Response) {
option (method_description) = "Gets broadcast upload stats for user";
}
rpc GetBroadcastViewerStats (.CBroadcast_GetBroadcastViewerStats_Request) returns (.CBroadcast_GetBroadcastViewerStats_Response) {
option (method_description) = "Gets viewer stats for given broadcast";
}
}
service BroadcastClient {
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
@ -517,6 +603,9 @@ service BroadcastClient {
rpc NotifyBroadcastStatus (.CBroadcast_BroadcastStatus_Notification) returns (.NoResponse) {
option (method_description) = "Notification from server to client about current broadcast status";
}
rpc NotifyBroadcastChannelLive (.CBroadcast_BroadcastChannelLive_Notification) returns (.NoResponse) {
option (method_description) = "Notification from server to client about current broadcast status";
}
rpc SendThumbnailToRelay (.CBroadcast_SendThumbnailToRelay_Notification) returns (.NoResponse) {
option (method_description) = "Send thumbnails to relay";
}

5
protobufs/steammessages_chat.proto

@ -67,6 +67,7 @@ message CChatRoom_CreateChatRoomGroup_Request {
optional string name = 3;
repeated fixed64 steamid_invitees = 4;
optional uint32 watching_broadcast_accountid = 6;
optional uint64 watching_broadcast_channel_id = 7;
}
message CChatRole {
@ -110,6 +111,7 @@ message CChatRoomGroupHeaderState {
repeated .CChatRoleActions role_actions = 19;
optional uint32 watching_broadcast_accountid = 20;
repeated .CChatPartyBeacon party_beacons = 22;
optional uint64 watching_broadcast_channel_id = 23;
}
message CChatRoomMember {
@ -199,6 +201,7 @@ message CChatRoom_SetChatRoomGroupAvatar_Response {
message CChatRoom_SetChatRoomGroupWatchingBroadcast_Request {
optional uint64 chat_group_id = 1;
optional uint32 watching_broadcast_accountid = 2;
optional uint64 watching_broadcast_channel_id = 3;
}
message CChatRoom_SetChatRoomGroupWatchingBroadcast_Response {
@ -474,6 +477,7 @@ message CChatRoom_GetChatRoomGroupSummary_Response {
optional uint32 watching_broadcast_accountid = 16;
optional uint32 appid = 17;
repeated .CChatPartyBeacon party_beacons = 18;
optional uint64 watching_broadcast_channel_id = 19;
}
message CChatRoomSummaryPair {
@ -672,6 +676,7 @@ message CChatRoom_IncomingChatMessage_Notification {
optional uint32 ordinal = 7;
optional .ServerMessage server_message = 8;
optional string message_no_bbcode = 9;
optional string chat_name = 10 [(description) = "A name to use for the chat, intended for notifications"];
}
message CChatRoom_ChatMessageModified_Notification {

1
protobufs/steammessages_clientserver_2.proto

@ -537,6 +537,7 @@ message CMsgDownloadRateStatistics {
optional uint32 seconds = 3;
optional uint64 bytes = 4;
optional string host_name = 5;
optional uint64 microseconds = 6;
}
optional uint32 cell_id = 1;

1
protobufs/steammessages_clientserver_friends.proto

@ -103,6 +103,7 @@ message CMsgClientChangeStatus {
optional bool persona_set_by_user = 5;
optional uint32 persona_state_flags = 6 [default = 0];
optional bool need_persona_response = 7;
optional bool is_client_idle = 8;
}
message CMsgPersonaChangeResponse {

75
protobufs/steammessages_player.proto

@ -21,6 +21,33 @@ message CPlayer_GetMutualFriendsForIncomingInvites_Response {
repeated .CPlayer_IncomingInviteMutualFriendList incoming_invite_mutual_friends_lists = 1;
}
message CPlayer_GetFriendsGameplayInfo_Request {
optional uint32 appid = 1;
}
message CPlayer_GetFriendsGameplayInfo_Response {
message FriendsGameplayInfo {
optional fixed64 steamid = 1;
optional uint32 minutes_played = 2;
optional uint32 minutes_played_forever = 3;
}
message OwnGameplayInfo {
optional fixed64 steamid = 1;
optional uint32 minutes_played = 2;
optional uint32 minutes_played_forever = 3;
optional bool in_wishlist = 4;
optional bool owned = 5;
}
optional .CPlayer_GetFriendsGameplayInfo_Response.OwnGameplayInfo your_info = 1;
repeated .CPlayer_GetFriendsGameplayInfo_Response.FriendsGameplayInfo in_game = 2;
repeated .CPlayer_GetFriendsGameplayInfo_Response.FriendsGameplayInfo played_recently = 3;
repeated .CPlayer_GetFriendsGameplayInfo_Response.FriendsGameplayInfo played_ever = 4;
repeated .CPlayer_GetFriendsGameplayInfo_Response.FriendsGameplayInfo owns = 5;
repeated .CPlayer_GetFriendsGameplayInfo_Response.FriendsGameplayInfo in_wishlist = 6;
}
message CPlayer_GetGameBadgeLevels_Request {
optional uint32 appid = 1;
}
@ -36,6 +63,21 @@ message CPlayer_GetGameBadgeLevels_Response {
repeated .CPlayer_GetGameBadgeLevels_Response.Badge badges = 2;
}
message CPlayer_GetEmoticonList_Request {
}
message CPlayer_GetEmoticonList_Response {
message Emoticon {
optional string name = 1;
optional int32 count = 2;
optional uint32 time_last_used = 3;
optional uint32 use_count = 4;
optional uint32 time_received = 5;
}
repeated .CPlayer_GetEmoticonList_Response.Emoticon emoticons = 1;
}
message CPlayer_GetLastPlayedTimes_Request {
optional uint32 min_last_played = 1 [(description) = "The most recent last-played time the client already knows about"];
}
@ -82,6 +124,7 @@ message PerFriendPreferences {
optional .ENotificationSetting sounds_showingame = 6 [default = k_ENotificationSettingNotifyUseDefault];
optional .ENotificationSetting sounds_showonline = 7 [default = k_ENotificationSettingNotifyUseDefault];
optional .ENotificationSetting sounds_showmessages = 8 [default = k_ENotificationSettingNotifyUseDefault];
optional .ENotificationSetting notifications_sendmobile = 9 [default = k_ENotificationSettingNotifyUseDefault];
}
message CPlayer_GetPerFriendPreferences_Response {
@ -162,6 +205,22 @@ message CPlayer_UpdateSteamAnnouncementLastRead_Request {
message CPlayer_UpdateSteamAnnouncementLastRead_Response {
}
message CPlayer_GetPrivacySettings_Request {
}
message CPrivacySettings {
optional int32 privacy_state = 1;
optional int32 privacy_state_inventory = 2;
optional int32 privacy_state_gifts = 3;
optional int32 privacy_state_ownedgames = 4;
optional int32 privacy_state_playtime = 5;
optional int32 privacy_state_friendslist = 6;
}
message CPlayer_GetPrivacySettings_Response {
optional .CPrivacySettings privacy_settings = 1;
}
message CPlayer_LastPlayedTimes_Notification {
repeated .CPlayer_GetLastPlayedTimes_Response.Game games = 1;
}
@ -189,14 +248,24 @@ message CPlayer_PerFriendPreferencesChanged_Notification {
optional .PerFriendPreferences preferences = 2;
}
message CPlayer_PrivacySettingsChanged_Notification {
optional .CPrivacySettings privacy_settings = 1;
}
service Player {
option (service_description) = "A service for accessing Steam player data";
rpc GetMutualFriendsForIncomingInvites (.CPlayer_GetMutualFriendsForIncomingInvites_Request) returns (.CPlayer_GetMutualFriendsForIncomingInvites_Response) {
option (method_description) = "Get me the mutual friends for each of my pending incoming invites (individuals and clans).";
}
rpc GetFriendsGameplayInfo (.CPlayer_GetFriendsGameplayInfo_Request) returns (.CPlayer_GetFriendsGameplayInfo_Response) {
option (method_description) = "Get a list of friends who are playing, have played, own, or want a game";
}
rpc GetGameBadgeLevels (.CPlayer_GetGameBadgeLevels_Request) returns (.CPlayer_GetGameBadgeLevels_Response) {
option (method_description) = "Returns the Steam Level of a user, the Badge level for the game, and if it's foil";
}
rpc GetEmoticonList (.CPlayer_GetEmoticonList_Request) returns (.CPlayer_GetEmoticonList_Response) {
option (method_description) = "Gets a list of the emoticons a user has with metadata";
}
rpc ClientGetLastPlayedTimes (.CPlayer_GetLastPlayedTimes_Request) returns (.CPlayer_GetLastPlayedTimes_Response) {
option (method_description) = "Gets the last-played times for the account";
}
@ -233,6 +302,9 @@ service Player {
rpc UpdateSteamAnnouncementLastRead (.CPlayer_UpdateSteamAnnouncementLastRead_Request) returns (.CPlayer_UpdateSteamAnnouncementLastRead_Response) {
option (method_description) = "Marks latest announcement timestamp read by user";
}
rpc GetPrivacySettings (.CPlayer_GetPrivacySettings_Request) returns (.CPlayer_GetPrivacySettings_Response) {
option (method_description) = "Get current privacy settings.";
}
}
service PlayerClient {
option (service_description) = "Steam player data client notifications";
@ -252,4 +324,7 @@ service PlayerClient {
rpc NotifyPerFriendPreferencesChanged (.CPlayer_PerFriendPreferencesChanged_Notification) returns (.NoResponse) {
option (method_description) = "Notification from server that per-friend preferences have changed";
}
rpc NotifyPrivacyPrivacySettingsChanged (.CPlayer_PrivacySettingsChanged_Notification) returns (.NoResponse) {
option (method_description) = "Notification from server that privacy settings changed";
}
}

53
protobufs/steammessages_publishedfile.proto

@ -270,6 +270,23 @@ message CPublishedFile_GetUserFiles_Response {
repeated .CPublishedFile_GetUserFiles_Response.App apps = 4;
}
message CPublishedFile_AreFilesInSubscriptionList_Request {
optional uint32 appid = 1;
repeated fixed64 publishedfileids = 2;
optional uint32 listtype = 3 [(description) = "See EUCMListType"];
optional uint32 filetype = 4 [(description) = "See EPublishedFileInfoMatchingFileType"];
optional uint32 workshopfiletype = 5 [(description) = "See EWorkshopFileType. If specified, overrides filetype"];
}
message CPublishedFile_AreFilesInSubscriptionList_Response {
message InList {
optional fixed64 publishedfileid = 1;
optional bool inlist = 2;
}
repeated .CPublishedFile_AreFilesInSubscriptionList_Response.InList files = 1;
}
message CPublishedFile_Update_Request {
optional uint32 appid = 1 [(description) = "App Id this published file belongs to."];
optional fixed64 publishedfileid = 2 [(description) = "Published file id of the file we'd like update."];
@ -457,6 +474,26 @@ message CPublishedFile_RemoveChild_Request {
message CPublishedFile_RemoveChild_Response {
}
message CPublishedFile_FileSubscribed_Notification {
optional fixed64 published_file_id = 1 [(description) = "PublishedFileID_t for the content"];
optional uint32 app_id = 2;
optional fixed64 file_hcontent = 3 [(description) = "UGC file handle or manifest GID"];
optional uint32 file_size = 4;
optional uint32 rtime_subscribed = 5;
optional bool is_depot_content = 6 [(description) = "True if workshop item is delivered via Steampipe"];
optional uint32 rtime_updated = 7 [(description) = "Last time content updated"];
}
message CPublishedFile_FileUnsubscribed_Notification {
optional fixed64 published_file_id = 1 [(description) = "PublishedFileID_t for the content"];
optional uint32 app_id = 2;
}
message CPublishedFile_FileDeleted_Client_Notification {
optional fixed64 published_file_id = 1 [(description) = "PublishedFileID_t for the content"];
optional uint32 app_id = 2;
}
service PublishedFile {
option (service_description) = "A service to access published file data";
rpc Subscribe (.CPublishedFile_Subscribe_Request) returns (.CPublishedFile_Subscribe_Response) {
@ -480,6 +517,9 @@ service PublishedFile {
rpc GetUserFiles (.CPublishedFile_GetUserFiles_Request) returns (.CPublishedFile_GetUserFiles_Response) {
option (method_description) = "Retrieves files published by a user.";
}
rpc AreFilesInSubscriptionList (.CPublishedFile_AreFilesInSubscriptionList_Request) returns (.CPublishedFile_AreFilesInSubscriptionList_Response) {
option (method_description) = "Determines which files in the given list are in a user's subscription list";
}
rpc Update (.CPublishedFile_Update_Request) returns (.CPublishedFile_Update_Response) {
option (method_description) = "Updates information about a published file.";
}
@ -523,3 +563,16 @@ service PublishedFile {
option (method_description) = "Removes parent->child relationship between the given items.";
}
}
service PublishedFileClient {
option (service_description) = "Published file client notifications";
option (service_execution_site) = k_EProtoExecutionSiteSteamClient;
rpc NotifyFileSubscribed (.CPublishedFile_FileSubscribed_Notification) returns (.NoResponse) {
option (method_description) = "Notification from the server when a user subscribes to a file";
}
rpc NotifyFileUnsubscribed (.CPublishedFile_FileUnsubscribed_Notification) returns (.NoResponse) {
option (method_description) = "Notification from the server when a user unsubscribes from a file";
}
rpc NotifyFileDeleted (.CPublishedFile_FileDeleted_Client_Notification) returns (.NoResponse) {
option (method_description) = "Notification from the server when a published file is deleted";
}
}

21
protobufs/steammessages_site_license.proto

@ -18,6 +18,24 @@ message CSiteLicense_ClientSeatCheckout_Notification {
optional uint32 eresult = 2;
}
message CSiteManagerClient_TrackedPayments_Notification {
message Payment {
optional uint64 transid = 1;
optional uint64 steamid = 2;
optional int64 amount = 3;
optional uint32 ecurrency = 4;
optional int32 time_created = 5;
optional int32 purchase_status = 6;
optional string machine_name = 7;
optional string persona_name = 8;
optional string profile_url = 9;
optional string avatar_url = 10;
}
optional fixed64 site_id = 1;
repeated .CSiteManagerClient_TrackedPayments_Notification.Payment payments = 2;
}
message CSiteLicense_InitiateAssociation_Request {
optional fixed64 site_steamid = 1;
optional fixed64 site_instanceid = 2;
@ -77,6 +95,9 @@ service SiteManagerClient {
rpc ClientSeatCheckoutNotification (.CSiteLicense_ClientSeatCheckout_Notification) returns (.NoResponse) {
option (method_description) = "Notify client directly about seat checkout result";
}
rpc TrackedPaymentsNotification (.CSiteManagerClient_TrackedPayments_Notification) returns (.NoResponse) {
option (method_description) = "Rack informing site manager of existing tracked payments";
}
}
service SiteLicense {
option (service_description) = "Site License service";

9
protobufs/steammessages_store.proto

@ -3,6 +3,12 @@ import "steammessages_unified_base.proto";
option py_generic_services = true;
enum EUserReviewScorePreference {
k_EUserReviewScorePreference_Unset = 0;
k_EUserReviewScorePreference_IncludeAll = 1;
k_EUserReviewScorePreference_ExcludeBombs = 2;
}
message CStore_GetLocalizedNameForTags_Request {
optional string language = 1;
repeated uint32 tagids = 2;
@ -31,7 +37,8 @@ message CStore_UserPreferences {
optional bool hide_adult_content_sex = 7;
optional uint32 timestamp_updated = 8;
optional bool hide_store_broadcast = 9;
optional int32 timestamp_content_descriptor_preferences_updated = 10;
optional .EUserReviewScorePreference review_score_preference = 10 [default = k_EUserReviewScorePreference_Unset];
optional int32 timestamp_content_descriptor_preferences_updated = 11;
}
message CStore_UserTagPreferences {

1
protobufs/steammessages_twofactor.proto

@ -84,6 +84,7 @@ message CTwoFactor_RemoveAuthenticator_Response {
}
message CTwoFactor_CreateEmergencyCodes_Request {
optional string code = 1;
}
message CTwoFactor_CreateEmergencyCodes_Response {

158
steam/protobufs/steammessages_base_pb2.py

File diff suppressed because one or more lines are too long

1058
steam/protobufs/steammessages_broadcast_pb2.py

File diff suppressed because one or more lines are too long

589
steam/protobufs/steammessages_chat_pb2.py

File diff suppressed because one or more lines are too long

425
steam/protobufs/steammessages_clientserver_2_pb2.py

File diff suppressed because one or more lines are too long

91
steam/protobufs/steammessages_clientserver_friends_pb2.py

File diff suppressed because one or more lines are too long

792
steam/protobufs/steammessages_player_pb2.py

File diff suppressed because one or more lines are too long

565
steam/protobufs/steammessages_publishedfile_pb2.py

File diff suppressed because one or more lines are too long

208
steam/protobufs/steammessages_site_license_pb2.py

@ -22,7 +22,7 @@ DESCRIPTOR = _descriptor.FileDescriptor(
name='steammessages_site_license.proto',
package='',
syntax='proto2',
serialized_pb=_b('\n steammessages_site_license.proto\x1a steammessages_unified_base.proto\"\x8d\x01\n)CSiteManagerClient_IncomingClient_Request\x12\x17\n\x0fsite_instanceid\x18\x01 \x01(\x06\x12\x16\n\x0e\x63lient_steamid\x18\x02 \x01(\x06\x12\x17\n\x0f\x63lient_local_ip\x18\x03 \x01(\x07\x12\x16\n\x0e\x63onnection_key\x18\x04 \x01(\x0c\",\n*CSiteManagerClient_IncomingClient_Response\"N\n,CSiteLicense_ClientSeatCheckout_Notification\x12\r\n\x05\x61ppid\x18\x01 \x01(\r\x12\x0f\n\x07\x65result\x18\x02 \x01(\r\"r\n(CSiteLicense_InitiateAssociation_Request\x12\x14\n\x0csite_steamid\x18\x01 \x01(\x06\x12\x17\n\x0fsite_instanceid\x18\x02 \x01(\x06\x12\x17\n\x0f\x63lient_local_ip\x18\x03 \x01(\x07\"C\n)CSiteLicense_InitiateAssociation_Response\x12\x16\n\x0e\x63onnection_key\x18\x01 \x01(\x0c\":\n$CSiteLicense_LCSAuthenticate_Request\x12\x12\n\ninstanceid\x18\x01 \x01(\x06\"z\n%CSiteLicense_LCSAuthenticate_Response\x12\x0f\n\x07site_id\x18\x01 \x01(\x04\x12\x11\n\tsite_name\x18\x02 \x01(\t\x12\x13\n\x0bnew_session\x18\x03 \x01(\x08\x12\x18\n\x10no_site_licenses\x18\x04 \x01(\x08\"t\n%CSiteLicense_LCSAssociateUser_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x10\n\x08local_ip\x18\x02 \x01(\x07\x12\x12\n\ninstanceid\x18\x03 \x01(\x06\x12\x14\n\x0cmachine_name\x18\x04 \x01(\t\"(\n&CSiteLicense_LCSAssociateUser_Response\"]\n\'CSiteLicense_ClientSeatCheckout_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x12\n\ninstanceid\x18\x02 \x01(\x06\x12\r\n\x05\x61ppid\x18\x03 \x01(\r\"*\n(CSiteLicense_ClientSeatCheckout_Response\"b\n,CSiteLicense_ClientGetAvailableSeats_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x12\n\ninstanceid\x18\x02 \x01(\x06\x12\r\n\x05\x61ppid\x18\x03 \x01(\r\"H\n-CSiteLicense_ClientGetAvailableSeats_Response\x12\x17\n\x0f\x61vailable_seats\x18\x01 \x01(\r2\x86\x03\n\x11SiteManagerClient\x12\xaf\x01\n\x0eIncomingClient\x12*.CSiteManagerClient_IncomingClient_Request\x1a+.CSiteManagerClient_IncomingClient_Response\"D\x82\xb5\x18@Rack informing site manager of new inbound client PSK connection\x12\x93\x01\n\x1e\x43lientSeatCheckoutNotification\x12-.CSiteLicense_ClientSeatCheckout_Notification\x1a\x0b.NoResponse\"5\x82\xb5\x18\x31Notify client directly about seat checkout result\x1a)\x82\xb5\x18!Local site manager client service\xc0\xb5\x18\x02\x32\xd5\x06\n\x0bSiteLicense\x12\xa4\x01\n\x13InitiateAssociation\x12).CSiteLicense_InitiateAssociation_Request\x1a*.CSiteLicense_InitiateAssociation_Response\"6\x82\xb5\x18\x32\x43lient is requesting connetion info for local site\x12\x86\x01\n\x0fLCSAuthenticate\x12%.CSiteLicense_LCSAuthenticate_Request\x1a&.CSiteLicense_LCSAuthenticate_Response\"$\x82\xb5\x18 Local cafe server authentication\x12\x9d\x01\n\x10LCSAssociateUser\x12&.CSiteLicense_LCSAssociateUser_Request\x1a\'.CSiteLicense_LCSAssociateUser_Response\"8\x82\xb5\x18\x34Local cafe server wants to grant user access to site\x12\x9e\x01\n\x12\x43lientSeatCheckout\x12(.CSiteLicense_ClientSeatCheckout_Request\x1a).CSiteLicense_ClientSeatCheckout_Response\"3\x82\xb5\x18/Client is requesting use of a site license seat\x12\xba\x01\n\x17\x43lientGetAvailableSeats\x12-.CSiteLicense_ClientGetAvailableSeats_Request\x1a..CSiteLicense_ClientGetAvailableSeats_Response\"@\x82\xb5\x18<Client is requesting the number of currently available seats\x1a\x18\x82\xb5\x18\x14Site License serviceB\x03\x90\x01\x01')
serialized_pb=_b('\n steammessages_site_license.proto\x1a steammessages_unified_base.proto\"\x8d\x01\n)CSiteManagerClient_IncomingClient_Request\x12\x17\n\x0fsite_instanceid\x18\x01 \x01(\x06\x12\x16\n\x0e\x63lient_steamid\x18\x02 \x01(\x06\x12\x17\n\x0f\x63lient_local_ip\x18\x03 \x01(\x07\x12\x16\n\x0e\x63onnection_key\x18\x04 \x01(\x0c\",\n*CSiteManagerClient_IncomingClient_Response\"N\n,CSiteLicense_ClientSeatCheckout_Notification\x12\r\n\x05\x61ppid\x18\x01 \x01(\r\x12\x0f\n\x07\x65result\x18\x02 \x01(\r\"\xe3\x02\n/CSiteManagerClient_TrackedPayments_Notification\x12\x0f\n\x07site_id\x18\x01 \x01(\x06\x12J\n\x08payments\x18\x02 \x03(\x0b\x32\x38.CSiteManagerClient_TrackedPayments_Notification.Payment\x1a\xd2\x01\n\x07Payment\x12\x0f\n\x07transid\x18\x01 \x01(\x04\x12\x0f\n\x07steamid\x18\x02 \x01(\x04\x12\x0e\n\x06\x61mount\x18\x03 \x01(\x03\x12\x11\n\tecurrency\x18\x04 \x01(\r\x12\x14\n\x0ctime_created\x18\x05 \x01(\x05\x12\x17\n\x0fpurchase_status\x18\x06 \x01(\x05\x12\x14\n\x0cmachine_name\x18\x07 \x01(\t\x12\x14\n\x0cpersona_name\x18\x08 \x01(\t\x12\x13\n\x0bprofile_url\x18\t \x01(\t\x12\x12\n\navatar_url\x18\n \x01(\t\"r\n(CSiteLicense_InitiateAssociation_Request\x12\x14\n\x0csite_steamid\x18\x01 \x01(\x06\x12\x17\n\x0fsite_instanceid\x18\x02 \x01(\x06\x12\x17\n\x0f\x63lient_local_ip\x18\x03 \x01(\x07\"C\n)CSiteLicense_InitiateAssociation_Response\x12\x16\n\x0e\x63onnection_key\x18\x01 \x01(\x0c\":\n$CSiteLicense_LCSAuthenticate_Request\x12\x12\n\ninstanceid\x18\x01 \x01(\x06\"z\n%CSiteLicense_LCSAuthenticate_Response\x12\x0f\n\x07site_id\x18\x01 \x01(\x04\x12\x11\n\tsite_name\x18\x02 \x01(\t\x12\x13\n\x0bnew_session\x18\x03 \x01(\x08\x12\x18\n\x10no_site_licenses\x18\x04 \x01(\x08\"t\n%CSiteLicense_LCSAssociateUser_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x10\n\x08local_ip\x18\x02 \x01(\x07\x12\x12\n\ninstanceid\x18\x03 \x01(\x06\x12\x14\n\x0cmachine_name\x18\x04 \x01(\t\"(\n&CSiteLicense_LCSAssociateUser_Response\"]\n\'CSiteLicense_ClientSeatCheckout_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x12\n\ninstanceid\x18\x02 \x01(\x06\x12\r\n\x05\x61ppid\x18\x03 \x01(\r\"*\n(CSiteLicense_ClientSeatCheckout_Response\"b\n,CSiteLicense_ClientGetAvailableSeats_Request\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x12\n\ninstanceid\x18\x02 \x01(\x06\x12\r\n\x05\x61ppid\x18\x03 \x01(\r\"H\n-CSiteLicense_ClientGetAvailableSeats_Response\x12\x17\n\x0f\x61vailable_seats\x18\x01 \x01(\r2\xa3\x04\n\x11SiteManagerClient\x12\xaf\x01\n\x0eIncomingClient\x12*.CSiteManagerClient_IncomingClient_Request\x1a+.CSiteManagerClient_IncomingClient_Response\"D\x82\xb5\x18@Rack informing site manager of new inbound client PSK connection\x12\x93\x01\n\x1e\x43lientSeatCheckoutNotification\x12-.CSiteLicense_ClientSeatCheckout_Notification\x1a\x0b.NoResponse\"5\x82\xb5\x18\x31Notify client directly about seat checkout result\x12\x9a\x01\n\x1bTrackedPaymentsNotification\x12\x30.CSiteManagerClient_TrackedPayments_Notification\x1a\x0b.NoResponse\"<\x82\xb5\x18\x38Rack informing site manager of existing tracked payments\x1a)\x82\xb5\x18!Local site manager client service\xc0\xb5\x18\x02\x32\xd5\x06\n\x0bSiteLicense\x12\xa4\x01\n\x13InitiateAssociation\x12).CSiteLicense_InitiateAssociation_Request\x1a*.CSiteLicense_InitiateAssociation_Response\"6\x82\xb5\x18\x32\x43lient is requesting connetion info for local site\x12\x86\x01\n\x0fLCSAuthenticate\x12%.CSiteLicense_LCSAuthenticate_Request\x1a&.CSiteLicense_LCSAuthenticate_Response\"$\x82\xb5\x18 Local cafe server authentication\x12\x9d\x01\n\x10LCSAssociateUser\x12&.CSiteLicense_LCSAssociateUser_Request\x1a\'.CSiteLicense_LCSAssociateUser_Response\"8\x82\xb5\x18\x34Local cafe server wants to grant user access to site\x12\x9e\x01\n\x12\x43lientSeatCheckout\x12(.CSiteLicense_ClientSeatCheckout_Request\x1a).CSiteLicense_ClientSeatCheckout_Response\"3\x82\xb5\x18/Client is requesting use of a site license seat\x12\xba\x01\n\x17\x43lientGetAvailableSeats\x12-.CSiteLicense_ClientGetAvailableSeats_Request\x1a..CSiteLicense_ClientGetAvailableSeats_Response\"@\x82\xb5\x18<Client is requesting the number of currently available seats\x1a\x18\x82\xb5\x18\x14Site License serviceB\x03\x90\x01\x01')
,
dependencies=[steammessages__unified__base__pb2.DESCRIPTOR,])
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
@ -144,6 +144,137 @@ _CSITELICENSE_CLIENTSEATCHECKOUT_NOTIFICATION = _descriptor.Descriptor(
)
_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION_PAYMENT = _descriptor.Descriptor(
name='Payment',
full_name='CSiteManagerClient_TrackedPayments_Notification.Payment',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='transid', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.transid', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='steamid', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.steamid', index=1,
number=2, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='amount', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.amount', index=2,
number=3, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='ecurrency', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.ecurrency', index=3,
number=4, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='time_created', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.time_created', index=4,
number=5, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='purchase_status', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.purchase_status', index=5,
number=6, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='machine_name', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.machine_name', index=6,
number=7, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='persona_name', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.persona_name', index=7,
number=8, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='profile_url', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.profile_url', index=8,
number=9, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='avatar_url', full_name='CSiteManagerClient_TrackedPayments_Notification.Payment.avatar_url', index=9,
number=10, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=486,
serialized_end=696,
)
_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION = _descriptor.Descriptor(
name='CSiteManagerClient_TrackedPayments_Notification',
full_name='CSiteManagerClient_TrackedPayments_Notification',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='site_id', full_name='CSiteManagerClient_TrackedPayments_Notification.site_id', index=0,
number=1, type=6, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='payments', full_name='CSiteManagerClient_TrackedPayments_Notification.payments', index=1,
number=2, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION_PAYMENT, ],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=341,
serialized_end=696,
)
_CSITELICENSE_INITIATEASSOCIATION_REQUEST = _descriptor.Descriptor(
name='CSiteLicense_InitiateAssociation_Request',
full_name='CSiteLicense_InitiateAssociation_Request',
@ -184,8 +315,8 @@ _CSITELICENSE_INITIATEASSOCIATION_REQUEST = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=340,
serialized_end=454,
serialized_start=698,
serialized_end=812,
)
@ -215,8 +346,8 @@ _CSITELICENSE_INITIATEASSOCIATION_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=456,
serialized_end=523,
serialized_start=814,
serialized_end=881,
)
@ -246,8 +377,8 @@ _CSITELICENSE_LCSAUTHENTICATE_REQUEST = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=525,
serialized_end=583,
serialized_start=883,
serialized_end=941,
)
@ -298,8 +429,8 @@ _CSITELICENSE_LCSAUTHENTICATE_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=585,
serialized_end=707,
serialized_start=943,
serialized_end=1065,
)
@ -350,8 +481,8 @@ _CSITELICENSE_LCSASSOCIATEUSER_REQUEST = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=709,
serialized_end=825,
serialized_start=1067,
serialized_end=1183,
)
@ -374,8 +505,8 @@ _CSITELICENSE_LCSASSOCIATEUSER_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=827,
serialized_end=867,
serialized_start=1185,
serialized_end=1225,
)
@ -419,8 +550,8 @@ _CSITELICENSE_CLIENTSEATCHECKOUT_REQUEST = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=869,
serialized_end=962,
serialized_start=1227,
serialized_end=1320,
)
@ -443,8 +574,8 @@ _CSITELICENSE_CLIENTSEATCHECKOUT_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=964,
serialized_end=1006,
serialized_start=1322,
serialized_end=1364,
)
@ -488,8 +619,8 @@ _CSITELICENSE_CLIENTGETAVAILABLESEATS_REQUEST = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=1008,
serialized_end=1106,
serialized_start=1366,
serialized_end=1464,
)
@ -519,13 +650,16 @@ _CSITELICENSE_CLIENTGETAVAILABLESEATS_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=1108,
serialized_end=1180,
serialized_start=1466,
serialized_end=1538,
)
_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION_PAYMENT.containing_type = _CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION
_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION.fields_by_name['payments'].message_type = _CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION_PAYMENT
DESCRIPTOR.message_types_by_name['CSiteManagerClient_IncomingClient_Request'] = _CSITEMANAGERCLIENT_INCOMINGCLIENT_REQUEST
DESCRIPTOR.message_types_by_name['CSiteManagerClient_IncomingClient_Response'] = _CSITEMANAGERCLIENT_INCOMINGCLIENT_RESPONSE
DESCRIPTOR.message_types_by_name['CSiteLicense_ClientSeatCheckout_Notification'] = _CSITELICENSE_CLIENTSEATCHECKOUT_NOTIFICATION
DESCRIPTOR.message_types_by_name['CSiteManagerClient_TrackedPayments_Notification'] = _CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION
DESCRIPTOR.message_types_by_name['CSiteLicense_InitiateAssociation_Request'] = _CSITELICENSE_INITIATEASSOCIATION_REQUEST
DESCRIPTOR.message_types_by_name['CSiteLicense_InitiateAssociation_Response'] = _CSITELICENSE_INITIATEASSOCIATION_RESPONSE
DESCRIPTOR.message_types_by_name['CSiteLicense_LCSAuthenticate_Request'] = _CSITELICENSE_LCSAUTHENTICATE_REQUEST
@ -558,6 +692,21 @@ CSiteLicense_ClientSeatCheckout_Notification = _reflection.GeneratedProtocolMess
))
_sym_db.RegisterMessage(CSiteLicense_ClientSeatCheckout_Notification)
CSiteManagerClient_TrackedPayments_Notification = _reflection.GeneratedProtocolMessageType('CSiteManagerClient_TrackedPayments_Notification', (_message.Message,), dict(
Payment = _reflection.GeneratedProtocolMessageType('Payment', (_message.Message,), dict(
DESCRIPTOR = _CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION_PAYMENT,
__module__ = 'steammessages_site_license_pb2'
# @@protoc_insertion_point(class_scope:CSiteManagerClient_TrackedPayments_Notification.Payment)
))
,
DESCRIPTOR = _CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION,
__module__ = 'steammessages_site_license_pb2'
# @@protoc_insertion_point(class_scope:CSiteManagerClient_TrackedPayments_Notification)
))
_sym_db.RegisterMessage(CSiteManagerClient_TrackedPayments_Notification)
_sym_db.RegisterMessage(CSiteManagerClient_TrackedPayments_Notification.Payment)
CSiteLicense_InitiateAssociation_Request = _reflection.GeneratedProtocolMessageType('CSiteLicense_InitiateAssociation_Request', (_message.Message,), dict(
DESCRIPTOR = _CSITELICENSE_INITIATEASSOCIATION_REQUEST,
__module__ = 'steammessages_site_license_pb2'
@ -638,8 +787,8 @@ _SITEMANAGERCLIENT = _descriptor.ServiceDescriptor(
file=DESCRIPTOR,
index=0,
options=_descriptor._ParseOptions(descriptor_pb2.ServiceOptions(), _b('\202\265\030!Local site manager client service\300\265\030\002')),
serialized_start=1183,
serialized_end=1573,
serialized_start=1541,
serialized_end=2088,
methods=[
_descriptor.MethodDescriptor(
name='IncomingClient',
@ -659,6 +808,15 @@ _SITEMANAGERCLIENT = _descriptor.ServiceDescriptor(
output_type=steammessages__unified__base__pb2._NORESPONSE,
options=_descriptor._ParseOptions(descriptor_pb2.MethodOptions(), _b('\202\265\0301Notify client directly about seat checkout result')),
),
_descriptor.MethodDescriptor(
name='TrackedPaymentsNotification',
full_name='SiteManagerClient.TrackedPaymentsNotification',
index=2,
containing_service=None,
input_type=_CSITEMANAGERCLIENT_TRACKEDPAYMENTS_NOTIFICATION,
output_type=steammessages__unified__base__pb2._NORESPONSE,
options=_descriptor._ParseOptions(descriptor_pb2.MethodOptions(), _b('\202\265\0308Rack informing site manager of existing tracked payments')),
),
])
SiteManagerClient = service_reflection.GeneratedServiceType('SiteManagerClient', (_service.Service,), dict(
@ -679,8 +837,8 @@ _SITELICENSE = _descriptor.ServiceDescriptor(
file=DESCRIPTOR,
index=1,
options=_descriptor._ParseOptions(descriptor_pb2.ServiceOptions(), _b('\202\265\030\024Site License service')),
serialized_start=1576,
serialized_end=2429,
serialized_start=2091,
serialized_end=2944,
methods=[
_descriptor.MethodDescriptor(
name='InitiateAssociation',

72
steam/protobufs/steammessages_store_pb2.py

@ -3,6 +3,7 @@
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
@ -22,11 +23,41 @@ DESCRIPTOR = _descriptor.FileDescriptor(
name='steammessages_store.proto',
package='',
syntax='proto2',
serialized_pb=_b('\n\x19steammessages_store.proto\x1a steammessages_unified_base.proto\"J\n&CStore_GetLocalizedNameForTags_Request\x12\x10\n\x08language\x18\x01 \x01(\t\x12\x0e\n\x06tagids\x18\x02 \x03(\r\"\x9f\x01\n\'CStore_GetLocalizedNameForTags_Response\x12:\n\x04tags\x18\x01 \x03(\x0b\x32,.CStore_GetLocalizedNameForTags_Response.Tag\x1a\x38\n\x03Tag\x12\r\n\x05tagid\x18\x01 \x01(\r\x12\x14\n\x0c\x65nglish_name\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"$\n\"CStore_GetStorePreferences_Request\"\xcf\x02\n\x16\x43Store_UserPreferences\x12\x18\n\x10primary_language\x18\x01 \x01(\r\x12\x1b\n\x13secondary_languages\x18\x02 \x01(\r\x12\x18\n\x10platform_windows\x18\x03 \x01(\x08\x12\x14\n\x0cplatform_mac\x18\x04 \x01(\x08\x12\x16\n\x0eplatform_linux\x18\x05 \x01(\x08\x12#\n\x1bhide_adult_content_violence\x18\x06 \x01(\x08\x12\x1e\n\x16hide_adult_content_sex\x18\x07 \x01(\x08\x12\x19\n\x11timestamp_updated\x18\x08 \x01(\r\x12\x1c\n\x14hide_store_broadcast\x18\t \x01(\x08\x12\x38\n0timestamp_content_descriptor_preferences_updated\x18\n \x01(\x05\"\x91\x01\n\x19\x43Store_UserTagPreferences\x12\x37\n\x0ftags_to_exclude\x18\x01 \x03(\x0b\x32\x1e.CStore_UserTagPreferences.Tag\x1a;\n\x03Tag\x12\r\n\x05tagid\x18\x01 \x01(\r\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x17\n\x0ftimestamp_added\x18\x03 \x01(\r\"\xd9\x01\n\'CStore_UserContentDescriptorPreferences\x12\x62\n\x1e\x63ontent_descriptors_to_exclude\x18\x01 \x03(\x0b\x32:.CStore_UserContentDescriptorPreferences.ContentDescriptor\x1aJ\n\x11\x43ontentDescriptor\x12\x1c\n\x14\x63ontent_descriptorid\x18\x01 \x01(\r\x12\x17\n\x0ftimestamp_added\x18\x02 \x01(\r\"\xda\x01\n#CStore_GetStorePreferences_Response\x12,\n\x0bpreferences\x18\x01 \x01(\x0b\x32\x17.CStore_UserPreferences\x12\x33\n\x0ftag_preferences\x18\x02 \x01(\x0b\x32\x1a.CStore_UserTagPreferences\x12P\n\x1e\x63ontent_descriptor_preferences\x18\x03 \x01(\x0b\x32(.CStore_UserContentDescriptorPreferences2\xf9\x02\n\x05Store\x12\x98\x01\n\x17GetLocalizedNameForTags\x12\'.CStore_GetLocalizedNameForTags_Request\x1a(.CStore_GetLocalizedNameForTags_Response\"*\x82\xb5\x18&Gets tag names in a different language\x12\xaf\x01\n\x13GetStorePreferences\x12#.CStore_GetStorePreferences_Request\x1a$.CStore_GetStorePreferences_Response\"M\x82\xb5\x18IReturns the desired ratings board and maximum rating to show on the store\x1a#\x82\xb5\x18\x1f\x41 service to access store data.B\x03\x90\x01\x01')
serialized_pb=_b('\n\x19steammessages_store.proto\x1a steammessages_unified_base.proto\"J\n&CStore_GetLocalizedNameForTags_Request\x12\x10\n\x08language\x18\x01 \x01(\t\x12\x0e\n\x06tagids\x18\x02 \x03(\r\"\x9f\x01\n\'CStore_GetLocalizedNameForTags_Response\x12:\n\x04tags\x18\x01 \x03(\x0b\x32,.CStore_GetLocalizedNameForTags_Response.Tag\x1a\x38\n\x03Tag\x12\r\n\x05tagid\x18\x01 \x01(\r\x12\x14\n\x0c\x65nglish_name\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"$\n\"CStore_GetStorePreferences_Request\"\xb1\x03\n\x16\x43Store_UserPreferences\x12\x18\n\x10primary_language\x18\x01 \x01(\r\x12\x1b\n\x13secondary_languages\x18\x02 \x01(\r\x12\x18\n\x10platform_windows\x18\x03 \x01(\x08\x12\x14\n\x0cplatform_mac\x18\x04 \x01(\x08\x12\x16\n\x0eplatform_linux\x18\x05 \x01(\x08\x12#\n\x1bhide_adult_content_violence\x18\x06 \x01(\x08\x12\x1e\n\x16hide_adult_content_sex\x18\x07 \x01(\x08\x12\x19\n\x11timestamp_updated\x18\x08 \x01(\r\x12\x1c\n\x14hide_store_broadcast\x18\t \x01(\x08\x12`\n\x17review_score_preference\x18\n \x01(\x0e\x32\x1b.EUserReviewScorePreference:\"k_EUserReviewScorePreference_Unset\x12\x38\n0timestamp_content_descriptor_preferences_updated\x18\x0b \x01(\x05\"\x91\x01\n\x19\x43Store_UserTagPreferences\x12\x37\n\x0ftags_to_exclude\x18\x01 \x03(\x0b\x32\x1e.CStore_UserTagPreferences.Tag\x1a;\n\x03Tag\x12\r\n\x05tagid\x18\x01 \x01(\r\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x17\n\x0ftimestamp_added\x18\x03 \x01(\r\"\xd9\x01\n\'CStore_UserContentDescriptorPreferences\x12\x62\n\x1e\x63ontent_descriptors_to_exclude\x18\x01 \x03(\x0b\x32:.CStore_UserContentDescriptorPreferences.ContentDescriptor\x1aJ\n\x11\x43ontentDescriptor\x12\x1c\n\x14\x63ontent_descriptorid\x18\x01 \x01(\r\x12\x17\n\x0ftimestamp_added\x18\x02 \x01(\r\"\xda\x01\n#CStore_GetStorePreferences_Response\x12,\n\x0bpreferences\x18\x01 \x01(\x0b\x32\x17.CStore_UserPreferences\x12\x33\n\x0ftag_preferences\x18\x02 \x01(\x0b\x32\x1a.CStore_UserTagPreferences\x12P\n\x1e\x63ontent_descriptor_preferences\x18\x03 \x01(\x0b\x32(.CStore_UserContentDescriptorPreferences*\xa0\x01\n\x1a\x45UserReviewScorePreference\x12&\n\"k_EUserReviewScorePreference_Unset\x10\x00\x12+\n\'k_EUserReviewScorePreference_IncludeAll\x10\x01\x12-\n)k_EUserReviewScorePreference_ExcludeBombs\x10\x02\x32\xf9\x02\n\x05Store\x12\x98\x01\n\x17GetLocalizedNameForTags\x12\'.CStore_GetLocalizedNameForTags_Request\x1a(.CStore_GetLocalizedNameForTags_Response\"*\x82\xb5\x18&Gets tag names in a different language\x12\xaf\x01\n\x13GetStorePreferences\x12#.CStore_GetStorePreferences_Request\x1a$.CStore_GetStorePreferences_Response\"M\x82\xb5\x18IReturns the desired ratings board and maximum rating to show on the store\x1a#\x82\xb5\x18\x1f\x41 service to access store data.B\x03\x90\x01\x01')
,
dependencies=[steammessages__unified__base__pb2.DESCRIPTOR,])
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
_EUSERREVIEWSCOREPREFERENCE = _descriptor.EnumDescriptor(
name='EUserReviewScorePreference',
full_name='EUserReviewScorePreference',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='k_EUserReviewScorePreference_Unset', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='k_EUserReviewScorePreference_IncludeAll', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='k_EUserReviewScorePreference_ExcludeBombs', index=2, number=2,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=1365,
serialized_end=1525,
)
_sym_db.RegisterEnumDescriptor(_EUSERREVIEWSCOREPREFERENCE)
EUserReviewScorePreference = enum_type_wrapper.EnumTypeWrapper(_EUSERREVIEWSCOREPREFERENCE)
k_EUserReviewScorePreference_Unset = 0
k_EUserReviewScorePreference_IncludeAll = 1
k_EUserReviewScorePreference_ExcludeBombs = 2
@ -238,8 +269,15 @@ _CSTORE_USERPREFERENCES = _descriptor.Descriptor(
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='timestamp_content_descriptor_preferences_updated', full_name='CStore_UserPreferences.timestamp_content_descriptor_preferences_updated', index=9,
number=10, type=5, cpp_type=1, label=1,
name='review_score_preference', full_name='CStore_UserPreferences.review_score_preference', index=9,
number=10, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='timestamp_content_descriptor_preferences_updated', full_name='CStore_UserPreferences.timestamp_content_descriptor_preferences_updated', index=10,
number=11, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
@ -257,7 +295,7 @@ _CSTORE_USERPREFERENCES = _descriptor.Descriptor(
oneofs=[
],
serialized_start=340,
serialized_end=675,
serialized_end=773,
)
@ -301,8 +339,8 @@ _CSTORE_USERTAGPREFERENCES_TAG = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=764,
serialized_end=823,
serialized_start=862,
serialized_end=921,
)
_CSTORE_USERTAGPREFERENCES = _descriptor.Descriptor(
@ -331,8 +369,8 @@ _CSTORE_USERTAGPREFERENCES = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=678,
serialized_end=823,
serialized_start=776,
serialized_end=921,
)
@ -369,8 +407,8 @@ _CSTORE_USERCONTENTDESCRIPTORPREFERENCES_CONTENTDESCRIPTOR = _descriptor.Descrip
extension_ranges=[],
oneofs=[
],
serialized_start=969,
serialized_end=1043,
serialized_start=1067,
serialized_end=1141,
)
_CSTORE_USERCONTENTDESCRIPTORPREFERENCES = _descriptor.Descriptor(
@ -399,8 +437,8 @@ _CSTORE_USERCONTENTDESCRIPTORPREFERENCES = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=826,
serialized_end=1043,
serialized_start=924,
serialized_end=1141,
)
@ -444,12 +482,13 @@ _CSTORE_GETSTOREPREFERENCES_RESPONSE = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=1046,
serialized_end=1264,
serialized_start=1144,
serialized_end=1362,
)
_CSTORE_GETLOCALIZEDNAMEFORTAGS_RESPONSE_TAG.containing_type = _CSTORE_GETLOCALIZEDNAMEFORTAGS_RESPONSE
_CSTORE_GETLOCALIZEDNAMEFORTAGS_RESPONSE.fields_by_name['tags'].message_type = _CSTORE_GETLOCALIZEDNAMEFORTAGS_RESPONSE_TAG
_CSTORE_USERPREFERENCES.fields_by_name['review_score_preference'].enum_type = _EUSERREVIEWSCOREPREFERENCE
_CSTORE_USERTAGPREFERENCES_TAG.containing_type = _CSTORE_USERTAGPREFERENCES
_CSTORE_USERTAGPREFERENCES.fields_by_name['tags_to_exclude'].message_type = _CSTORE_USERTAGPREFERENCES_TAG
_CSTORE_USERCONTENTDESCRIPTORPREFERENCES_CONTENTDESCRIPTOR.containing_type = _CSTORE_USERCONTENTDESCRIPTORPREFERENCES
@ -464,6 +503,7 @@ DESCRIPTOR.message_types_by_name['CStore_UserPreferences'] = _CSTORE_USERPREFERE
DESCRIPTOR.message_types_by_name['CStore_UserTagPreferences'] = _CSTORE_USERTAGPREFERENCES
DESCRIPTOR.message_types_by_name['CStore_UserContentDescriptorPreferences'] = _CSTORE_USERCONTENTDESCRIPTORPREFERENCES
DESCRIPTOR.message_types_by_name['CStore_GetStorePreferences_Response'] = _CSTORE_GETSTOREPREFERENCES_RESPONSE
DESCRIPTOR.enum_types_by_name['EUserReviewScorePreference'] = _EUSERREVIEWSCOREPREFERENCE
CStore_GetLocalizedNameForTags_Request = _reflection.GeneratedProtocolMessageType('CStore_GetLocalizedNameForTags_Request', (_message.Message,), dict(
DESCRIPTOR = _CSTORE_GETLOCALIZEDNAMEFORTAGS_REQUEST,
@ -548,8 +588,8 @@ _STORE = _descriptor.ServiceDescriptor(
file=DESCRIPTOR,
index=0,
options=_descriptor._ParseOptions(descriptor_pb2.ServiceOptions(), _b('\202\265\030\037A service to access store data.')),
serialized_start=1267,
serialized_end=1644,
serialized_start=1528,
serialized_end=1905,
methods=[
_descriptor.MethodDescriptor(
name='GetLocalizedNameForTags',

35
steam/protobufs/steammessages_twofactor_pb2.py

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save