| OLD | NEW |
| 1 syntax = "proto2"; | 1 syntax = "proto2"; |
| 2 option go_package = "datastore"; | 2 option go_package = "datastore"; |
| 3 | 3 |
| 4 package appengine; | 4 package appengine; |
| 5 | 5 |
| 6 message Action{} | 6 message Action{} |
| 7 | 7 |
| 8 message PropertyValue { | 8 message PropertyValue { |
| 9 optional int64 int64Value = 1; | 9 optional int64 int64Value = 1; |
| 10 optional bool booleanValue = 2; | 10 optional bool booleanValue = 2; |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 } | 532 } |
| 533 | 533 |
| 534 message CommitResponse { | 534 message CommitResponse { |
| 535 optional Cost cost = 1; | 535 optional Cost cost = 1; |
| 536 | 536 |
| 537 repeated group Version = 3 { | 537 repeated group Version = 3 { |
| 538 required Reference root_entity_key = 4; | 538 required Reference root_entity_key = 4; |
| 539 required int64 version = 5; | 539 required int64 version = 5; |
| 540 } | 540 } |
| 541 } | 541 } |
| OLD | NEW |