cart and checkout
Build and Publish / BuildAndDeployAmd64 (push) Failing after 4s
Build and Publish / BuildAndDeployArm64 (push) Failing after 6s

This commit is contained in:
2026-06-27 19:49:00 +02:00
parent 492f54ff45
commit 528c59bfd3
67 changed files with 3618 additions and 1031 deletions
+21
View File
@@ -96,3 +96,24 @@ message IssueRefund {
string return_id = 4; // optional linked RMA
int64 at_ms = 5;
}
// RequestExchange opens an RMA return and reserves/adds replacement lines.
message RequestExchange {
string id = 1;
string return_id = 2;
string reason = 3;
repeated FulfillmentLine return_lines = 4;
repeated OrderLine new_lines = 5;
int64 at_ms = 6;
}
// EditOrderDetails updates address/shipping price post-placement.
message EditOrderDetails {
bytes shipping_address = 1;
bytes billing_address = 2;
int64 shipping_price = 3;
int64 at_ms = 4;
}