update
This commit is contained in:
@@ -15,6 +15,15 @@ message SetDelivery {
|
||||
optional string city = 7;
|
||||
}
|
||||
|
||||
message Address {
|
||||
string addressLine1 = 1;
|
||||
optional string addressLine2 = 2;
|
||||
string city = 3;
|
||||
string state = 4;
|
||||
string zip = 5;
|
||||
string country = 6;
|
||||
}
|
||||
|
||||
message SetPickupPoint {
|
||||
uint32 deliveryId = 1;
|
||||
PickupPoint pickupPoint = 2;
|
||||
@@ -23,10 +32,7 @@ message SetPickupPoint {
|
||||
message PickupPoint {
|
||||
string id = 2;
|
||||
optional string name = 3;
|
||||
optional string address = 4;
|
||||
optional string city = 5;
|
||||
optional string zip = 6;
|
||||
optional string country = 7;
|
||||
optional Address address = 4;
|
||||
}
|
||||
|
||||
message RemoveDelivery { uint32 id = 1; }
|
||||
@@ -36,6 +42,7 @@ message PaymentStarted {
|
||||
int64 amount = 3;
|
||||
string currency = 4;
|
||||
string provider = 5;
|
||||
optional Address billingAddress = 9;
|
||||
optional string method = 6;
|
||||
optional google.protobuf.Timestamp startedAt = 7;
|
||||
optional google.protobuf.Any sessionData = 8;
|
||||
@@ -83,6 +90,7 @@ message InitializeCheckout {
|
||||
|
||||
message ContactDetailsUpdated {
|
||||
optional string email = 1;
|
||||
optional string postalCode = 4;
|
||||
optional string phone = 2;
|
||||
optional string name = 3;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user