Skip to content

Commit

Permalink
deploy: 39688c3
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 18, 2023
1 parent 0ed37a1 commit b26da0b
Show file tree
Hide file tree
Showing 161 changed files with 388 additions and 331 deletions.
6 changes: 3 additions & 3 deletions 404.html

Large diffs are not rendered by default.

127 changes: 92 additions & 35 deletions API/Greenfield/v1/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -5290,6 +5290,7 @@
}
}
],
"operationId": "PaymentRequests_Pay",
"description": "Create a new invoice for the payment request, or reuse an existing one",
"requestBody": {
"description": "Invoice creation request",
Expand Down Expand Up @@ -8762,7 +8763,7 @@
}
},
{
"name": "userId",
"name": "idOrEmail",
"in": "path",
"required": true,
"description": "The user's id or email",
Expand Down Expand Up @@ -10440,7 +10441,7 @@
"name": "idOrEmail",
"in": "path",
"required": true,
"description": "The ID of the user to be deleted",
"description": "The ID or email of the user to be deleted",
"schema": {
"type": "string"
}
Expand Down Expand Up @@ -11716,11 +11717,17 @@
},
"depositablePaymentMethods": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of payment methods (crypto code + network) you can deposit to the custodian.",
"nullable": false
},
"withdrawablePaymentMethods": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of payment methods (crypto code + network) you can withdraw from the custodian.",
"nullable": false
},
Expand Down Expand Up @@ -12257,7 +12264,11 @@
"status": {
"nullable": false,
"description": "Mark an invoice as completed or invalid.",
"$ref": "#/components/schemas/InvoiceStatusMark"
"allOf": [
{
"$ref": "#/components/schemas/InvoiceStatusMark"
}
]
}
}
},
Expand All @@ -12275,7 +12286,7 @@
},
"InvoiceStatus": {
"type": "string",
"description": "",
"description": "The status of the invoice",
"x-enumNames": [
"Expired",
"Invalid",
Expand Down Expand Up @@ -12318,13 +12329,21 @@
},
"checkout": {
"nullable": true,
"$ref": "#/components/schemas/CheckoutOptions",
"description": "Additional settings to customize the checkout flow"
"description": "Additional settings to customize the checkout flow",
"allOf": [
{
"$ref": "#/components/schemas/CheckoutOptions"
}
]
},
"receipt": {
"nullable": true,
"$ref": "#/components/schemas/ReceiptOptions",
"description": "Additional settings to customize the public receipt"
"description": "Additional settings to customize the public receipt",
"allOf": [
{
"$ref": "#/components/schemas/ReceiptOptions"
}
]
}
}
},
Expand Down Expand Up @@ -12357,8 +12376,7 @@
"example": "USD"
},
"type": {
"$ref": "#/components/schemas/InvoiceType",
"description": "The type of invoice"
"$ref": "#/components/schemas/InvoiceType"
},
"checkoutLink": {
"type": "string",
Expand Down Expand Up @@ -12389,12 +12407,10 @@
]
},
"status": {
"$ref": "#/components/schemas/InvoiceStatus",
"description": "The status of the invoice"
"$ref": "#/components/schemas/InvoiceStatus"
},
"additionalStatus": {
"$ref": "#/components/schemas/InvoiceAdditionalStatus",
"description": "a secondary status of the invoice"
"$ref": "#/components/schemas/InvoiceAdditionalStatus"
},
"availableStatusesForManualMarking": {
"type": "array",
Expand Down Expand Up @@ -12631,8 +12647,11 @@
"properties": {
"speedPolicy": {
"nullable": true,
"$ref": "#/components/schemas/SpeedPolicy",
"description": "This is a risk mitigation parameter for the merchant to configure how they want to fulfill orders depending on the number of block confirmations for the transaction made by the consumer on the selected cryptocurrency"
"allOf": [
{
"$ref": "#/components/schemas/SpeedPolicy"
}
]
},
"paymentMethods": {
"type": "array",
Expand Down Expand Up @@ -12703,11 +12722,8 @@
"description": "`\"V1\"`: The original checkout form \n`\"V2\"`: The new experimental checkout form. \nIf `null` or unspecified, the store's settings will be used.",
"nullable": true,
"default": null,
"x-enumNames": [
"V1",
"V2"
],
"enum": [
null,
"V1",
"V2"
]
Expand Down Expand Up @@ -12862,8 +12878,7 @@
"description": "The fee paid for the payment"
},
"status": {
"$ref": "#/components/schemas/PaymentStatus",
"description": "The status of the payment"
"$ref": "#/components/schemas/PaymentStatus"
},
"destination": {
"type": "string",
Expand All @@ -12873,7 +12888,7 @@
},
"PaymentStatus": {
"type": "string",
"description": "",
"description": "The status of the payment",
"x-enumNames": [
"Invalid",
"Processing",
Expand All @@ -12887,7 +12902,7 @@
},
"InvoiceType": {
"type": "string",
"description": "",
"description": "The type of the invoice",
"x-enumNames": [
"Standard",
"TopUp"
Expand Down Expand Up @@ -12941,7 +12956,7 @@
},
"SpeedPolicy": {
"type": "string",
"description": "`\"HighSpeed\"`: 0 confirmations (1 confirmation if RBF enabled in transaction) \n`\"MediumSpeed\"`: 1 confirmation \n`\"LowMediumSpeed\"`: 2 confirmations \n`\"LowSpeed\"`: 6 confirmations\n",
"description": "This is a risk mitigation parameter for the merchant to configure how they want to fulfill orders depending on the number of block confirmations for the transaction made by the consumer on the selected cryptocurrency.\n`\"HighSpeed\"`: 0 confirmations (1 confirmation if RBF enabled in transaction) \n`\"MediumSpeed\"`: 1 confirmation \n`\"LowMediumSpeed\"`: 2 confirmations \n`\"LowSpeed\"`: 6 confirmations\n",
"x-enumNames": [
"HighSpeed",
"LowMediumSpeed",
Expand Down Expand Up @@ -13261,16 +13276,22 @@
"type": "object",
"properties": {
"onchain": {
"type": "object",
"description": "On-chain balance of the Lightning node",
"nullable": true,
"$ref": "#/components/schemas/OnchainBalanceData"
"allOf": [
{
"$ref": "#/components/schemas/OnchainBalanceData"
}
]
},
"offchain": {
"type": "object",
"description": "Off-chain balance of the Lightning node",
"nullable": true,
"$ref": "#/components/schemas/OffchainBalanceData"
"allOf": [
{
"$ref": "#/components/schemas/OffchainBalanceData"
}
]
}
}
},
Expand Down Expand Up @@ -14772,7 +14793,6 @@
},
"TransactionStatus": {
"type": "string",
"description": "",
"x-enumNames": [
"Confirmed",
"Unconfirmed"
Expand Down Expand Up @@ -14839,8 +14859,12 @@
]
},
"status": {
"$ref": "#/components/schemas/TransactionStatus",
"description": "The status for this transaction"
"allOf": [
{
"$ref": "#/components/schemas/TransactionStatus"
}
],
"description": "The status of this transaction"
},
"labels": {
"description": "Labels linked to this transaction",
Expand Down Expand Up @@ -15262,8 +15286,12 @@
},
"receipt": {
"nullable": true,
"$ref": "#/components/schemas/ReceiptOptions",
"description": "Additional settings to customize the public receipt"
"description": "Additional settings to customize the public receipt",
"allOf": [
{
"$ref": "#/components/schemas/ReceiptOptions"
}
]
},
"lightningAmountInSatoshi": {
"type": "boolean",
Expand Down Expand Up @@ -15323,6 +15351,31 @@
"default": false,
"description": "If true, payjoin will be proposed in the checkout page if possible. ([More information](https://docs.btcpayserver.org/Payjoin/))"
},
"autoDetectLanguage": {
"type": "boolean",
"default": false,
"description": "If true, the language on the checkout page will adapt to the language defined by the user's browser settings"
},
"showPayInWalletButton": {
"type": "boolean",
"default": true,
"description": "If true, the \"Pay in wallet\" button will be shown on the checkout page (Checkout V2)"
},
"showStoreHeader": {
"type": "boolean",
"default": true,
"description": "If true, the store header will be shown on the checkout page (Checkout V2)"
},
"celebratePayment": {
"type": "boolean",
"default": true,
"description": "If true, payments on the checkout page will be celebrated with confetti (Checkout V2)"
},
"playSoundOnPayment": {
"type": "boolean",
"default": false,
"description": "If true, sounds on the checkout page will be enabled (Checkout V2)"
},
"lazyPaymentMethods": {
"type": "boolean",
"default": false,
Expand Down Expand Up @@ -15716,7 +15769,11 @@
},
"payment": {
"description": "Details about the payment",
"$ref": "#/components/schemas/Payment"
"allOf": [
{
"$ref": "#/components/schemas/Payment"
}
]
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions AdvancedForms/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Apps/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayServer/LocalDevSetup/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayServer/Security/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayServer/db-migration/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayServer/greenfield-authorization/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayServer/greenfield-development/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions BTCPayVsOthers/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions ColdCardWallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Community/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Configurator/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/Design/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/Dev/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/DevCode/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/DevTest/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/Misc/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/Translate/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/Write/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/WriteBlog/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/WriteDocs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/WriteSoftware/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Contribute/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CreateStore/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CreateWallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CustomIntegration/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Dashboard/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/Azure/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/AzurePennyPinching/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/Clovyr/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/DreamlabNetwork/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/DynamicDNS/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/GoogleCloud/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/Hack0/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/Hardware/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/HardwareAsAService/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/LightningInABox/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/LunaNode/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/ManualDeployment/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/ManualDeploymentExtended/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/RaspberryPi4/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/ReverseProxyToTor/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/ReverseSSHtunnel/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/ThirdPartyHosting/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/voltagecloud/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Deployment/webdeployment/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/Altcoins/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/GreenFieldExample-NodeJS/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/GreenFieldExample/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/GreenfieldExample-PHP/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/InvoiceMetadata/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/LocalDev/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/LocalDevelopment/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/Plugins/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/TestnetDemo/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/Theme/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Development/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/backup-restore/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/chatwoot/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/cloudflare-tunnel/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/fastsync/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/fireflyiii/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/joinmarket/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/lightning-terminal/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/ndlc/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/pihole/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Docker/tallycoin-connect/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Drupal/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions ElectrumPersonalServer/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions ElectrumWallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions ElectrumX/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Altcoin/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Apps/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Deployment/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/General/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Integrations/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/LightningNetwork/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/ServerSettings/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Stores/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Synchronization/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/Wallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FAQ/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Forms/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Guide/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions HardwareWalletIntegration/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Invoices/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LNDhubAPI/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LNbank/LNDhub/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LNbank/Troubleshooting/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LNbank/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LedgerWallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LightningNetwork/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions LightningNetwork_PaymentChannels/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Magento/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions NBXplorer/API/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions NBXplorer/Postgres-Migration/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions NBXplorer/Postgres-Schema/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions NBXplorer/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Nostr/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Notifications/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions OpenCart/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Payjoin/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions PaymentRequests/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Payouts/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions PodServer/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions PrestaShop/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions PullPayments/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Refund/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions RegisterAccount/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Reporting/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Shopify/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Shopware/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Support/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions TicketTailor/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Transmuter/DCA/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Transmuter/EmailReceiptsPreset/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Transmuter/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Trocador/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Troubleshooting/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions TryItOut/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions UseCase/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Vault/HowToVerify/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions VirtueMart/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Wabisabi/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Walkthrough/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Wallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions WalletSetup/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions WasabiWallet/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions WhatsNext/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions WooCommerce/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Zapier/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/10.4e4dfa8b.js → assets/js/10.46d80c52.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/133.74b5909f.js → assets/js/133.55d129fe.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/135.91e2346c.js → assets/js/135.f6f0ddb9.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b26da0b

Please sign in to comment.