update
Some checks failed
Build and Publish / BuildAndDeployAmd64 (push) Failing after 30s
Build and Publish / BuildAndDeployArm64 (push) Failing after 13m2s

This commit is contained in:
matst80
2025-12-05 07:44:34 +01:00
parent 593d6cfe44
commit b4ffb9da85
6 changed files with 485 additions and 613 deletions

View File

@@ -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;
}