Skip to content

Commit

Permalink
Add info_v2
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Dec 11, 2024
1 parent f1055b9 commit fd89db3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/service/mobile_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -348,15 +348,23 @@ message carrier_incentive_promotion_list_res_v1 {

service gateway {
// Get info for the specified gateway
rpc info(gateway_info_req_v1) returns (gateway_info_res_v1);
rpc info(gateway_info_req_v1) returns (gateway_info_res_v1) {
option deprecated = true;
}
// Get info for a batch of gateways specified by public key
rpc info_batch(gateway_info_batch_req_v1)
returns (stream gateway_info_stream_res_v1);
returns (stream gateway_info_stream_res_v1) {
option deprecated = true;
}
// Get a stream of gateway info
rpc info_stream(gateway_info_stream_req_v1)
returns (stream gateway_info_stream_res_v1) {
option deprecated = true;
}

// V2
// Get info for the specified gateway (V2)
rpc info_v2(gateway_info_req_v1) returns (gateway_info_res_v2);
// Get a stream of gateway info (V2)
rpc info_stream_v2(gateway_info_stream_req_v2)
returns (stream gateway_info_stream_res_v2);
Expand Down

0 comments on commit fd89db3

Please sign in to comment.