fix initial invoice ack

This commit is contained in:
boufni95 2025-09-23 18:43:48 +00:00
parent c31360b0cd
commit c85ea7ff57
12 changed files with 239 additions and 263 deletions

View file

@ -753,12 +753,18 @@ message LiveManageRequest {
string npub = 2;
}
message DebitToAuthorize {
repeated DebitRule rules = 1;
optional string invoice = 2;
}
message DebitResponse {
string request_id = 1;
string npub = 2;
oneof response {
Empty denied = 3;
string invoice = 4;
DebitToAuthorize authorize = 5;
}
}