| OLD | NEW |
| 1 syntax = "proto2"; | 1 syntax = "proto2"; |
| 2 package copresence; | 2 package copresence; |
| 3 option optimize_for = LITE_RUNTIME; | 3 option optimize_for = LITE_RUNTIME; |
| 4 import "config_data.proto"; | 4 import "config_data.proto"; |
| 5 import "enums.proto"; | 5 import "enums.proto"; |
| 6 import "identity.proto"; | 6 import "identity.proto"; |
| 7 message ClientVersion { | 7 message ClientVersion { |
| 8 optional string client = 1; | 8 optional string client = 1; |
| 9 optional string version_name = 2; | 9 optional string version_name = 2; |
| 10 optional int64 version_code = 3; | 10 optional int64 version_code = 3; |
| 11 optional string certificate_fingerprint = 4; | 11 optional string certificate_fingerprint = 4; |
| 12 optional string project_id = 5; | |
| 13 } | 12 } |
| 14 message Status { | 13 message Status { |
| 15 optional StatusCode code = 1; | 14 optional StatusCode code = 1; |
| 16 optional string message = 2; | 15 optional string message = 2; |
| 17 } | 16 } |
| 18 message PushServiceRegistration { | 17 message PushServiceRegistration { |
| 19 optional PushService service = 1; | 18 optional PushService service = 1; |
| 20 optional GcmRegistration gcm_registration = 2; | 19 optional GcmRegistration gcm_registration = 2; |
| 21 } | 20 } |
| 22 message GcmRegistration { | 21 message GcmRegistration { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 } | 129 } |
| 131 message MessageResult { | 130 message MessageResult { |
| 132 optional string published_message_id = 1; | 131 optional string published_message_id = 1; |
| 133 } | 132 } |
| 134 message SubscriptionResult { | 133 message SubscriptionResult { |
| 135 optional string subscription_id = 1; | 134 optional string subscription_id = 1; |
| 136 } | 135 } |
| 137 message OptInStateFilter { | 136 message OptInStateFilter { |
| 138 repeated OptInState allowed_opt_in_state = 1; | 137 repeated OptInState allowed_opt_in_state = 1; |
| 139 } | 138 } |
| OLD | NEW |