Skip to content

Commit 3239e37

Browse files
4 files | M webui/service_playtest.proto, M webui/service_promotionplanning.proto, M webui/service_steamlearn.proto, M webui/service_storequery.proto
1 parent 018d035 commit 3239e37

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed

webui/service_playtest.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ message CPlaytest_GetUserStatus_Response_AppStatus {
3838
optional int32 status = 2 [(.description) = "enum"];
3939
optional int32 invites_remaining = 3;
4040
optional uint32 time_joined = 4;
41+
optional uint32 packageid = 5;
4142
}
4243

4344
message CPlaytest_RequestInvite_Request {

webui/service_promotionplanning.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ message CPromotionPlan_GetPromotionPlanSalesDaily_Response_Product {
6969
optional uint32 secondary_product_id = 3;
7070
optional .CPromotionPlan_SummarySaleResult summary_sales = 4;
7171
repeated .CPromotionPlan_GetPromotionPlanSalesDaily_Response_DailyPromotionSales daily_promo_sales = 5;
72+
optional uint32 package_billing_type = 6;
7273
}
7374

7475
message CPromotionPlan_GetPromotionPlanSalesDaily_Response_PromotionSaleData {

webui/service_steamlearn.proto

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,21 @@ message CMsgSteamLearn_GetProject_Response {
174174
optional .CMsgSteamLearnProject project = 1;
175175
}
176176

177+
message CMsgSteamLearn_GetSnapshotStatus_Request {
178+
optional uint32 project_id = 1;
179+
optional uint32 published_version = 2;
180+
optional uint32 snapshot_example_count = 3;
181+
}
182+
183+
message CMsgSteamLearn_GetSnapshotStatus_Response {
184+
optional int32 result = 1 [(.description) = "enum"];
185+
optional uint32 project_id = 2;
186+
optional uint32 published_version = 3;
187+
optional uint32 snapshot_count = 4;
188+
optional uint32 snapshot_object_count = 5;
189+
repeated .CMsgSteamLearnSnapshotStorage snapshot_examples = 6;
190+
}
191+
177192
message CMsgSteamLearn_GetTrainLogs_Request {
178193
optional uint32 project_id = 1;
179194
optional uint32 fetch_id = 2;
@@ -231,6 +246,8 @@ message CMsgSteamLearn_GetTrainStatus_Response_Epoch {
231246
repeated .CMsgSteamLearn_GetTrainStatus_Response_Batch validate_batches = 7;
232247
optional uint32 start_time = 8;
233248
optional uint32 end_time = 9;
249+
repeated float epoch_validate_f1_score = 10;
250+
repeated float epoch_train_f1_score = 11;
234251
}
235252

236253
message CMsgSteamLearn_GetTrainStatusVersions_Request {
@@ -997,6 +1014,20 @@ message CMsgSteamLearnScheduledTrainConfig {
9971014
optional float auto_activate_accuracy_threshold = 6;
9981015
}
9991016

1017+
message CMsgSteamLearnSnapshotStorage {
1018+
repeated .CMsgSteamLearnSnapshotStorage_MapStorageElementsEntry map_storage_elements = 1;
1019+
}
1020+
1021+
message CMsgSteamLearnSnapshotStorage_MapStorageElementsEntry {
1022+
optional uint32 key = 1;
1023+
optional .CMsgSteamLearnSnapshotStorage_StorageElement value = 2;
1024+
}
1025+
1026+
message CMsgSteamLearnSnapshotStorage_StorageElement {
1027+
optional float float_value = 1;
1028+
optional string string_value = 2;
1029+
}
1030+
10001031
message CMsgSteamLearnTrainConfig {
10011032
optional uint32 fetch_workers = 1;
10021033
optional uint32 fetch_chunk_size = 2;
@@ -1036,6 +1067,7 @@ service SteamLearn {
10361067
rpc GetLogEvents (.CMsgSteamLearn_GetLogEvents_Request) returns (.CMsgSteamLearn_GetLogEvents_Response);
10371068
rpc GetNearestEmbedding (.CMsgSteamLearn_GetNearestEmbedding_Request) returns (.CMsgSteamLearn_GetNearestEmbedding_Response);
10381069
rpc GetProject (.CMsgSteamLearn_GetProject_Request) returns (.CMsgSteamLearn_GetProject_Response);
1070+
rpc GetSnapshotStatus (.CMsgSteamLearn_GetSnapshotStatus_Request) returns (.CMsgSteamLearn_GetSnapshotStatus_Response);
10391071
rpc GetTrainLogs (.CMsgSteamLearn_GetTrainLogs_Request) returns (.CMsgSteamLearn_GetTrainLogs_Response);
10401072
rpc GetTrainStatus (.CMsgSteamLearn_GetTrainStatus_Request) returns (.CMsgSteamLearn_GetTrainStatus_Response);
10411073
rpc GetTrainStatusVersions (.CMsgSteamLearn_GetTrainStatusVersions_Request) returns (.CMsgSteamLearn_GetTrainStatusVersions_Response);

webui/service_storequery.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ message CStoreQueryFilters {
7979
optional bool coming_soon_only = 2;
8080
optional .CStoreQueryFilters_TypeFilters type_filters = 3;
8181
repeated int32 exclude_from = 4 [(.description) = "enum"];
82+
optional .CStoreQueryFilters_PredefinedFilter predefined_filter = 5;
8283
repeated .CStoreQueryFilters_TagFilter tagids_must_match = 10;
8384
repeated int32 tagids_exclude = 11;
8485
optional .CStoreQueryFilters_PriceFilters price_filters = 12;
@@ -92,6 +93,11 @@ message CStoreQueryFilters {
9293
repeated uint32 parent_appids = 45;
9394
}
9495

96+
message CStoreQueryFilters_PredefinedFilter {
97+
optional int32 filter_type = 1 [(.description) = "enum"];
98+
repeated int32 language_preferences = 2;
99+
}
100+
95101
message CStoreQueryFilters_PriceFilters {
96102
optional bool only_free_items = 1;
97103
optional bool exclude_free_items = 2;

0 commit comments

Comments
 (0)