Skip to content

Commit

Permalink
feat(frontier): filter zero amount invoices while listing (#349)
Browse files Browse the repository at this point in the history
Signed-off-by: Kush Sharma <[email protected]>
  • Loading branch information
kushsharma authored Apr 1, 2024
1 parent 5dcd741 commit 2ceb023
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ service FrontierService {
};
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
tags: "ServiceUser";
summary: "Create service user key";
summary: "Create service user public/private key pair";
description: "Generate a service user key and return it, the private key part of the response will not be persisted and should be kept securely by client.";
};
}
Expand Down Expand Up @@ -382,7 +382,7 @@ service FrontierService {
};
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
tags: "ServiceUser";
summary: "Create service user secret";
summary: "Create service user client/secret";
description: "Generate a service user secret and return it. The secret value will not be persisted and should be securely stored by client.";
};
}
Expand Down Expand Up @@ -2172,6 +2172,8 @@ message ListInvoicesRequest {
ignore_empty: true,
uuid: true
}];

bool nonzero_amount_only = 3;
}

message ListInvoicesResponse {
Expand Down

0 comments on commit 2ceb023

Please sign in to comment.