Skip to content

Commit

Permalink
chore: update check-code
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasburtey committed Mar 15, 2024
1 parent 80ab091 commit 9f735f7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,15 @@ type LnInvoice implements Invoice
satoshis: SatAmount!
}

input LnInvoiceCancelInput
@join__type(graph: GALOY)
{
paymentHash: PaymentHash!

"""Wallet ID for a wallet associated with the current account."""
walletId: WalletId!
}

input LnInvoiceCreateInput
@join__type(graph: GALOY)
{
Expand Down Expand Up @@ -1170,6 +1179,9 @@ type Mutation
"""Sends a payment to a lightning address."""
lnAddressPaymentSend(input: LnAddressPaymentSendInput!): PaymentSendPayload! @join__field(graph: GALOY)

"""Cancel an unpaid lightning invoice for an associated wallet."""
lnInvoiceCancel(input: LnInvoiceCancelInput!): SuccessPayload! @join__field(graph: GALOY)

"""
Returns a lightning invoice for an associated wallet.
When invoice is paid the value will be credited to a BTC wallet.
Expand Down Expand Up @@ -2134,6 +2146,7 @@ enum UserNotificationCategory
PAYMENTS @join__enumValue(graph: GALOY)
BALANCE @join__enumValue(graph: GALOY)
ADMIN_NOTIFICATION @join__enumValue(graph: GALOY)
MARKETING @join__enumValue(graph: GALOY)
}

enum UserNotificationChannel
Expand Down

0 comments on commit 9f735f7

Please sign in to comment.