wishlist and dashboard
Build and Publish / BuildAndDeployAmd64 (push) Failing after 4s
Build and Publish / BuildAndDeployArm64 (push) Failing after 5s

This commit is contained in:
2026-07-01 13:04:55 +02:00
parent 4a37cb479c
commit 1c97a4bdb0
16 changed files with 792 additions and 340 deletions
+12
View File
@@ -95,6 +95,16 @@ message UpsertSubscriptionDetails {
google.protobuf.Any data = 4;
}
enum CartType {
REGULAR = 0;
WISHLIST = 1;
OFFER = 2;
}
message SetCartType {
CartType type = 1;
}
message Mutation {
oneof type {
ClearCartRequest clear_cart = 1;
@@ -109,5 +119,7 @@ message Mutation {
AddVoucher add_voucher = 20;
RemoveVoucher remove_voucher = 21;
UpsertSubscriptionDetails upsert_subscription_details = 22;
SetCartType set_cart_type = 23;
}
}