Browse Source

update protobufs

pull/35/merge
Rossen Georgiev 8 years ago
parent
commit
db28c719b0
  1. 1
      protobufs/steammessages_base.proto
  2. 7
      protobufs/steammessages_broadcast.proto
  3. 14
      protobufs/steammessages_inventory.proto
  4. 31
      protobufs/steammessages_publishedfile.proto
  5. 31
      steam/protobufs/steammessages_base_pb2.py
  6. 139
      steam/protobufs/steammessages_broadcast_pb2.py
  7. 171
      steam/protobufs/steammessages_inventory_pb2.py
  8. 429
      steam/protobufs/steammessages_publishedfile_pb2.py

1
protobufs/steammessages_base.proto

@ -34,6 +34,7 @@ message CMsgProtoBufHeader {
optional uint64 trace_tag = 21;
optional uint32 webapi_key_id = 25;
optional bool is_from_external_source = 26;
repeated uint32 forward_to_sysid = 27;
}
message CMsgMulti {

7
protobufs/steammessages_broadcast.proto

@ -42,9 +42,9 @@ message CBroadcast_NotifyBroadcastUploadStop_Notification {
}
message CBroadcast_WatchBroadcast_Request {
optional fixed64 steamid = 1;
optional fixed64 existing_broadcast_id = 2;
optional fixed64 viewer_token = 3;
optional fixed64 steamid = 1 [(description) = "broadcaster steamID."];
optional fixed64 existing_broadcast_id = 2 [(description) = "broadcast session ID (optional, rejoin if specified)."];
optional fixed64 viewer_token = 3 [(description) = "viewer token received from last WatchRequest call, from browser storage."];
optional uint32 client_ip = 4;
optional uint32 client_cell = 5;
}
@ -75,6 +75,7 @@ message CBroadcast_WatchBroadcast_Response {
optional bool is_rtmp = 8;
optional int32 seconds_delay = 9;
optional fixed64 viewer_token = 10;
optional string hls_m3u8_master_url = 11;
}
message CBroadcast_GetBroadcastStatus_Request {

14
protobufs/steammessages_inventory.proto

@ -14,6 +14,7 @@ message CInventory_Response {
optional string item_json = 3;
optional string itemdef_json = 4;
optional bytes ticket = 5;
optional bool replayed = 6 [(description) = "If true, the requestid given was processed earlier."];
}
message CInventory_ExchangeItem_Request {
@ -39,6 +40,7 @@ message CInventory_AddItem_Request {
repeated string itempropsjson = 3;
optional uint64 steamid = 4;
optional bool notify = 5 [(description) = "Should notify the user that the item was added to their Steam Inventory."];
optional uint64 requestid = 6;
}
message CInventory_SafeModifyItem_Request {
@ -53,20 +55,13 @@ message CInventory_ConsumePlaytime_Request {
optional uint64 itemdefid = 2;
}
message CInventory_GetItemDefs_Request {
optional uint32 appid = 1;
optional string modifiedsince = 2;
repeated uint64 itemdefids = 4;
repeated uint64 workshopids = 5;
optional uint32 cache_max_age_seconds = 7 [default = 0, (description) = "Allow stale data to be returned for the specified number of seconds."];
}
message CInventory_ConsumeItem_Request {
optional uint32 appid = 1;
optional uint64 itemid = 2;
optional uint32 quantity = 3;
optional string timestamp = 4;
optional uint64 steamid = 5;
optional uint64 requestid = 6;
}
message CInventory_DevSetNextDrop_Request {
@ -120,9 +115,6 @@ service Inventory {
rpc ConsumePlaytime (.CInventory_ConsumePlaytime_Request) returns (.CInventory_Response) {
option (method_description) = "Consumes playtime and possibly returns a granted item";
}
rpc GetItemDefs (.CInventory_GetItemDefs_Request) returns (.CInventory_Response) {
option (method_description) = "Get item definitions";
}
rpc ConsumeItem (.CInventory_ConsumeItem_Request) returns (.CInventory_Response) {
option (method_description) = "Consume an item";
}

31
protobufs/steammessages_publishedfile.proto

@ -66,6 +66,7 @@ message CPublishedFile_GetDetails_Request {
optional bool includeforsaledata = 10 [(description) = "If true, return pricing data, if applicable."];
optional bool includemetadata = 11 [(description) = "If true, populate the metadata field."];
optional int32 language = 12 [default = 0, (description) = "Specifies the localized text to return. Defaults to English."];
optional uint32 return_playtime_stats = 13 [(description) = "Return playtime stats for the specified number of days before today."];
}
message PublishedFileDetails {
@ -111,6 +112,11 @@ message PublishedFileDetails {
optional uint32 discount_percentage = 6;
}
message PlaytimeStats {
optional uint64 playtime_seconds = 1;
optional uint64 num_sessions = 2;
}
enum EPublishedFileForSaleStatus {
k_PFFSS_NotForSale = 0;
k_PFFSS_PendingApproval = 1;
@ -177,6 +183,7 @@ message PublishedFileDetails {
repeated .PublishedFileDetails.Child children = 53;
repeated .PublishedFileDetails.KVTag kvtags = 54;
optional .PublishedFileDetails.VoteData vote_data = 55;
optional .PublishedFileDetails.PlaytimeStats playtime_stats = 64;
optional uint32 time_subscribed = 56 [(description) = "Only valid in PublishedFile.GetUserFiles and not normal PublishedFile.GetDetail calls"];
optional .PublishedFileDetails.ForSaleData for_sale_data = 57 [(description) = "Pricing information, if applicable."];
optional string metadata = 58 [(description) = "Metadata associated with the item"];
@ -243,6 +250,7 @@ message CPublishedFile_GetUserFiles_Request {
optional bool return_short_description = 24 [default = true, (description) = "Populate the short_description field instead of file_description"];
optional bool return_for_sale_data = 26 [(description) = "Return pricing information, if applicable"];
optional bool return_metadata = 28 [default = false, (description) = "Populate the metadata field"];
optional uint32 return_playtime_stats = 31 [(description) = "Return playtime stats for the specified number of days before today."];
}
message CPublishedFile_GetUserFiles_Response {
@ -351,6 +359,7 @@ message CPublishedFile_QueryFiles_Request {
optional bool return_short_description = 22 [(description) = "Populate the short_description field instead of file_description"];
optional bool return_for_sale_data = 30 [(description) = "Return pricing information, if applicable"];
optional bool return_metadata = 32 [default = false, (description) = "Populate the metadata"];
optional uint32 return_playtime_stats = 36 [(description) = "Return playtime stats for the specified number of days before today."];
}
message CPublishedFile_QueryFiles_Response {
@ -394,6 +403,22 @@ message CPublishedFile_SetPlaytimeForControllerConfigs_Request {
message CPublishedFile_SetPlaytimeForControllerConfigs_Response {
}
message CPublishedFile_AddChild_Request {
optional uint64 publishedfileid = 1;
optional uint64 child_publishedfileid = 2;
}
message CPublishedFile_AddChild_Response {
}
message CPublishedFile_RemoveChild_Request {
optional uint64 publishedfileid = 1;
optional uint64 child_publishedfileid = 2;
}
message CPublishedFile_RemoveChild_Response {
}
service PublishedFile {
option (service_description) = "A service to access published file data";
rpc Subscribe (.CPublishedFile_Subscribe_Request) returns (.CPublishedFile_Subscribe_Response) {
@ -444,4 +469,10 @@ service PublishedFile {
rpc SetPlaytimeForControllerConfigs (.CPublishedFile_SetPlaytimeForControllerConfigs_Request) returns (.CPublishedFile_SetPlaytimeForControllerConfigs_Response) {
option (method_description) = "Stops usage tracking all controller configs for the given app and set the usage time for the for the given controller configs";
}
rpc AddChild (.CPublishedFile_AddChild_Request) returns (.CPublishedFile_AddChild_Response) {
option (method_description) = "Adds a parent->child relationship between the given items.";
}
rpc RemoveChild (.CPublishedFile_RemoveChild_Request) returns (.CPublishedFile_RemoveChild_Response) {
option (method_description) = "Removes parent->child relationship between the given items.";
}
}

31
steam/protobufs/steammessages_base_pb2.py

@ -20,7 +20,7 @@ DESCRIPTOR = _descriptor.FileDescriptor(
name='steammessages_base.proto',
package='',
syntax='proto2',
serialized_pb=_b('\n\x18steammessages_base.proto\x1a google/protobuf/descriptor.proto\"\x99\x04\n\x12\x43MsgProtoBufHeader\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x18\n\x10\x63lient_sessionid\x18\x02 \x01(\x05\x12\x15\n\rrouting_appid\x18\x03 \x01(\r\x12*\n\x0cjobid_source\x18\n \x01(\x06:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12*\n\x0cjobid_target\x18\x0b \x01(\x06:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12\x17\n\x0ftarget_job_name\x18\x0c \x01(\t\x12\x0f\n\x07seq_num\x18\x18 \x01(\x05\x12\x12\n\x07\x65result\x18\r \x01(\x05:\x01\x32\x12\x15\n\rerror_message\x18\x0e \x01(\t\x12\n\n\x02ip\x18\x0f \x01(\r\x12\x1a\n\x12\x61uth_account_flags\x18\x10 \x01(\r\x12\x14\n\x0ctoken_source\x18\x16 \x01(\r\x12\x1b\n\x13\x61\x64min_spoofing_user\x18\x17 \x01(\x08\x12\x1a\n\x0ftransport_error\x18\x11 \x01(\x05:\x01\x31\x12\'\n\tmessageid\x18\x12 \x01(\x04:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12\x1a\n\x12publisher_group_id\x18\x13 \x01(\r\x12\r\n\x05sysid\x18\x14 \x01(\r\x12\x11\n\ttrace_tag\x18\x15 \x01(\x04\x12\x15\n\rwebapi_key_id\x18\x19 \x01(\r\x12\x1f\n\x17is_from_external_source\x18\x1a \x01(\x08\"8\n\tCMsgMulti\x12\x15\n\rsize_unzipped\x18\x01 \x01(\r\x12\x14\n\x0cmessage_body\x18\x02 \x01(\x0c\"+\n\x13\x43MsgProtobufWrapped\x12\x14\n\x0cmessage_body\x18\x01 \x01(\x0c\"\x8f\x01\n\x0e\x43MsgAuthTicket\x12\x0e\n\x06\x65state\x18\x01 \x01(\r\x12\x12\n\x07\x65result\x18\x02 \x01(\r:\x01\x32\x12\x0f\n\x07steamid\x18\x03 \x01(\x06\x12\x0e\n\x06gameid\x18\x04 \x01(\x06\x12\x14\n\x0ch_steam_pipe\x18\x05 \x01(\r\x12\x12\n\nticket_crc\x18\x06 \x01(\r\x12\x0e\n\x06ticket\x18\x07 \x01(\x0c\"\xf6\x01\n\x14\x43\x43\x44\x44\x42\x41ppDetailCommon\x12\r\n\x05\x61ppid\x18\x01 \x01(\r\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0c\n\x04icon\x18\x03 \x01(\t\x12\x0c\n\x04logo\x18\x04 \x01(\t\x12\x12\n\nlogo_small\x18\x05 \x01(\t\x12\x0c\n\x04tool\x18\x06 \x01(\x08\x12\x0c\n\x04\x64\x65mo\x18\x07 \x01(\x08\x12\r\n\x05media\x18\x08 \x01(\x08\x12\x1f\n\x17\x63ommunity_visible_stats\x18\t \x01(\x08\x12\x15\n\rfriendly_name\x18\n \x01(\t\x12\x13\n\x0bpropagation\x18\x0b \x01(\t\x12\x19\n\x11has_adult_content\x18\x0c \x01(\x08\"\xef\x02\n\rCMsgAppRights\x12\x11\n\tedit_info\x18\x01 \x01(\x08\x12\x0f\n\x07publish\x18\x02 \x01(\x08\x12\x17\n\x0fview_error_data\x18\x03 \x01(\x08\x12\x10\n\x08\x64ownload\x18\x04 \x01(\x08\x12\x15\n\rupload_cdkeys\x18\x05 \x01(\x08\x12\x17\n\x0fgenerate_cdkeys\x18\x06 \x01(\x08\x12\x17\n\x0fview_financials\x18\x07 \x01(\x08\x12\x12\n\nmanage_ceg\x18\x08 \x01(\x08\x12\x16\n\x0emanage_signing\x18\t \x01(\x08\x12\x15\n\rmanage_cdkeys\x18\n \x01(\x08\x12\x16\n\x0e\x65\x64it_marketing\x18\x0b \x01(\x08\x12\x17\n\x0f\x65\x63onomy_support\x18\x0c \x01(\x08\x12\"\n\x1a\x65\x63onomy_support_supervisor\x18\r \x01(\x08\x12\x16\n\x0emanage_pricing\x18\x0e \x01(\x08\x12\x16\n\x0e\x62roadcast_live\x18\x0f \x01(\x08:A\n\x12msgpool_soft_limit\x12\x1f.google.protobuf.MessageOptions\x18\xd0\x86\x03 \x01(\x05:\x02\x33\x32:B\n\x12msgpool_hard_limit\x12\x1f.google.protobuf.MessageOptions\x18\xd1\x86\x03 \x01(\x05:\x03\x33\x38\x34:C\n\x14\x66orce_php_generation\x12\x1c.google.protobuf.FileOptions\x18\xd0\x86\x03 \x01(\x08:\x05\x66\x61lseB\x05H\x01\x90\x01\x00')
serialized_pb=_b('\n\x18steammessages_base.proto\x1a google/protobuf/descriptor.proto\"\xb3\x04\n\x12\x43MsgProtoBufHeader\x12\x0f\n\x07steamid\x18\x01 \x01(\x06\x12\x18\n\x10\x63lient_sessionid\x18\x02 \x01(\x05\x12\x15\n\rrouting_appid\x18\x03 \x01(\r\x12*\n\x0cjobid_source\x18\n \x01(\x06:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12*\n\x0cjobid_target\x18\x0b \x01(\x06:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12\x17\n\x0ftarget_job_name\x18\x0c \x01(\t\x12\x0f\n\x07seq_num\x18\x18 \x01(\x05\x12\x12\n\x07\x65result\x18\r \x01(\x05:\x01\x32\x12\x15\n\rerror_message\x18\x0e \x01(\t\x12\n\n\x02ip\x18\x0f \x01(\r\x12\x1a\n\x12\x61uth_account_flags\x18\x10 \x01(\r\x12\x14\n\x0ctoken_source\x18\x16 \x01(\r\x12\x1b\n\x13\x61\x64min_spoofing_user\x18\x17 \x01(\x08\x12\x1a\n\x0ftransport_error\x18\x11 \x01(\x05:\x01\x31\x12\'\n\tmessageid\x18\x12 \x01(\x04:\x14\x31\x38\x34\x34\x36\x37\x34\x34\x30\x37\x33\x37\x30\x39\x35\x35\x31\x36\x31\x35\x12\x1a\n\x12publisher_group_id\x18\x13 \x01(\r\x12\r\n\x05sysid\x18\x14 \x01(\r\x12\x11\n\ttrace_tag\x18\x15 \x01(\x04\x12\x15\n\rwebapi_key_id\x18\x19 \x01(\r\x12\x1f\n\x17is_from_external_source\x18\x1a \x01(\x08\x12\x18\n\x10\x66orward_to_sysid\x18\x1b \x03(\r\"8\n\tCMsgMulti\x12\x15\n\rsize_unzipped\x18\x01 \x01(\r\x12\x14\n\x0cmessage_body\x18\x02 \x01(\x0c\"+\n\x13\x43MsgProtobufWrapped\x12\x14\n\x0cmessage_body\x18\x01 \x01(\x0c\"\x8f\x01\n\x0e\x43MsgAuthTicket\x12\x0e\n\x06\x65state\x18\x01 \x01(\r\x12\x12\n\x07\x65result\x18\x02 \x01(\r:\x01\x32\x12\x0f\n\x07steamid\x18\x03 \x01(\x06\x12\x0e\n\x06gameid\x18\x04 \x01(\x06\x12\x14\n\x0ch_steam_pipe\x18\x05 \x01(\r\x12\x12\n\nticket_crc\x18\x06 \x01(\r\x12\x0e\n\x06ticket\x18\x07 \x01(\x0c\"\xf6\x01\n\x14\x43\x43\x44\x44\x42\x41ppDetailCommon\x12\r\n\x05\x61ppid\x18\x01 \x01(\r\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0c\n\x04icon\x18\x03 \x01(\t\x12\x0c\n\x04logo\x18\x04 \x01(\t\x12\x12\n\nlogo_small\x18\x05 \x01(\t\x12\x0c\n\x04tool\x18\x06 \x01(\x08\x12\x0c\n\x04\x64\x65mo\x18\x07 \x01(\x08\x12\r\n\x05media\x18\x08 \x01(\x08\x12\x1f\n\x17\x63ommunity_visible_stats\x18\t \x01(\x08\x12\x15\n\rfriendly_name\x18\n \x01(\t\x12\x13\n\x0bpropagation\x18\x0b \x01(\t\x12\x19\n\x11has_adult_content\x18\x0c \x01(\x08\"\xef\x02\n\rCMsgAppRights\x12\x11\n\tedit_info\x18\x01 \x01(\x08\x12\x0f\n\x07publish\x18\x02 \x01(\x08\x12\x17\n\x0fview_error_data\x18\x03 \x01(\x08\x12\x10\n\x08\x64ownload\x18\x04 \x01(\x08\x12\x15\n\rupload_cdkeys\x18\x05 \x01(\x08\x12\x17\n\x0fgenerate_cdkeys\x18\x06 \x01(\x08\x12\x17\n\x0fview_financials\x18\x07 \x01(\x08\x12\x12\n\nmanage_ceg\x18\x08 \x01(\x08\x12\x16\n\x0emanage_signing\x18\t \x01(\x08\x12\x15\n\rmanage_cdkeys\x18\n \x01(\x08\x12\x16\n\x0e\x65\x64it_marketing\x18\x0b \x01(\x08\x12\x17\n\x0f\x65\x63onomy_support\x18\x0c \x01(\x08\x12\"\n\x1a\x65\x63onomy_support_supervisor\x18\r \x01(\x08\x12\x16\n\x0emanage_pricing\x18\x0e \x01(\x08\x12\x16\n\x0e\x62roadcast_live\x18\x0f \x01(\x08:A\n\x12msgpool_soft_limit\x12\x1f.google.protobuf.MessageOptions\x18\xd0\x86\x03 \x01(\x05:\x02\x33\x32:B\n\x12msgpool_hard_limit\x12\x1f.google.protobuf.MessageOptions\x18\xd1\x86\x03 \x01(\x05:\x03\x33\x38\x34:C\n\x14\x66orce_php_generation\x12\x1c.google.protobuf.FileOptions\x18\xd0\x86\x03 \x01(\x08:\x05\x66\x61lseB\x05H\x01\x90\x01\x00')
,
dependencies=[google_dot_protobuf_dot_descriptor__pb2.DESCRIPTOR,])
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
@ -199,6 +199,13 @@ _CMSGPROTOBUFHEADER = _descriptor.Descriptor(
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='forward_to_sysid', full_name='CMsgProtoBufHeader.forward_to_sysid', index=20,
number=27, type=13, cpp_type=3, 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=[
],
@ -212,7 +219,7 @@ _CMSGPROTOBUFHEADER = _descriptor.Descriptor(
oneofs=[
],
serialized_start=63,
serialized_end=600,
serialized_end=626,
)
@ -249,8 +256,8 @@ _CMSGMULTI = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=602,
serialized_end=658,
serialized_start=628,
serialized_end=684,
)
@ -280,8 +287,8 @@ _CMSGPROTOBUFWRAPPED = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=660,
serialized_end=703,
serialized_start=686,
serialized_end=729,
)
@ -353,8 +360,8 @@ _CMSGAUTHTICKET = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=706,
serialized_end=849,
serialized_start=732,
serialized_end=875,
)
@ -461,8 +468,8 @@ _CCDDBAPPDETAILCOMMON = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=852,
serialized_end=1098,
serialized_start=878,
serialized_end=1124,
)
@ -590,8 +597,8 @@ _CMSGAPPRIGHTS = _descriptor.Descriptor(
extension_ranges=[],
oneofs=[
],
serialized_start=1101,
serialized_end=1468,
serialized_start=1127,
serialized_end=1494,
)
DESCRIPTOR.message_types_by_name['CMsgProtoBufHeader'] = _CMSGPROTOBUFHEADER

139
steam/protobufs/steammessages_broadcast_pb2.py

File diff suppressed because one or more lines are too long

171
steam/protobufs/steammessages_inventory_pb2.py

File diff suppressed because one or more lines are too long

429
steam/protobufs/steammessages_publishedfile_pb2.py

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