Initial version

This commit is contained in:
Lol3rrr
2024-09-15 05:09:15 +02:00
commit c7aa4dbe8c
489 changed files with 124650 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import "common.proto";
message CPartnerStoreBrowse_GetCountryRestrictions_Request {
repeated .StoreItemID ids = 1;
}
message CPartnerStoreBrowse_GetCountryRestrictions_Response {
repeated .CPartnerStoreBrowse_GetCountryRestrictions_Response_CCountryRestrictions results = 1;
repeated .StoreItemID no_info = 2;
}
message CPartnerStoreBrowse_GetCountryRestrictions_Response_CCountryRestrictions {
optional .StoreItemID id = 1;
optional bool no_restrictions = 2;
repeated string allowed_countries = 3;
repeated string restricted_countries = 4;
}
service PartnerStoreBrowse {
rpc GetCountryRestrictions (.CPartnerStoreBrowse_GetCountryRestrictions_Request) returns (.CPartnerStoreBrowse_GetCountryRestrictions_Response);
rpc GetItems (.CStoreBrowse_GetItems_Request) returns (.CStoreBrowse_GetItems_Response);
}