diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index 764518dd..b70c1402 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -9895,6 +9895,7 @@ components: enum: - TRANSACTION_FAILED - USER_CANCELLATION + - TIMEOUT description: Reason for the refund example: TRANSACTION_FAILED OutgoingRateDetails: @@ -9952,7 +9953,6 @@ components: - LIGHTNING_PAYMENT_FAILED - FUNDING_AMOUNT_MISMATCH - COUNTERPARTY_POST_TX_FAILED - - TIMEOUT description: Reason for failure of an outgoing transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed state, this field is omitted. OutgoingTransaction: title: Outgoing Transaction diff --git a/mintlify/platform-overview/core-concepts/transaction-lifecycle.mdx b/mintlify/platform-overview/core-concepts/transaction-lifecycle.mdx index 521c70ca..d4343e1b 100644 --- a/mintlify/platform-overview/core-concepts/transaction-lifecycle.mdx +++ b/mintlify/platform-overview/core-concepts/transaction-lifecycle.mdx @@ -271,7 +271,6 @@ Use for reconciliation and reporting. | `QUOTE_EXPIRED` | Quote expired before execution | Create new quote | | `QUOTE_EXECUTION_FAILED` | Error executing the quote | Create new quote | | `INSUFFICIENT_BALANCE` | Source account lacks funds | Fund account, retry | -| `TIMEOUT` | Transaction timed out | Retry or contact support | ## Best Practices diff --git a/mintlify/snippets/error-handling.mdx b/mintlify/snippets/error-handling.mdx index 51191f86..c388b5bb 100644 --- a/mintlify/snippets/error-handling.mdx +++ b/mintlify/snippets/error-handling.mdx @@ -145,7 +145,6 @@ When a transaction fails, the `failureReason` field provides specific details: - `QUOTE_EXPIRED` - Quote expired before execution - `QUOTE_EXECUTION_FAILED` - Error executing the quote - `FUNDING_AMOUNT_MISMATCH` - Funding amount doesn't match expected amount -- `TIMEOUT` - Transaction timed out ### Incoming payment failures diff --git a/openapi.yaml b/openapi.yaml index 764518dd..b70c1402 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -9895,6 +9895,7 @@ components: enum: - TRANSACTION_FAILED - USER_CANCELLATION + - TIMEOUT description: Reason for the refund example: TRANSACTION_FAILED OutgoingRateDetails: @@ -9952,7 +9953,6 @@ components: - LIGHTNING_PAYMENT_FAILED - FUNDING_AMOUNT_MISMATCH - COUNTERPARTY_POST_TX_FAILED - - TIMEOUT description: Reason for failure of an outgoing transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed state, this field is omitted. OutgoingTransaction: title: Outgoing Transaction diff --git a/openapi/components/schemas/common/Refund.yaml b/openapi/components/schemas/common/Refund.yaml index 5ab7635b..3ecc4e63 100644 --- a/openapi/components/schemas/common/Refund.yaml +++ b/openapi/components/schemas/common/Refund.yaml @@ -31,5 +31,6 @@ properties: enum: - TRANSACTION_FAILED - USER_CANCELLATION + - TIMEOUT description: Reason for the refund example: TRANSACTION_FAILED diff --git a/openapi/components/schemas/transactions/OutgoingTransactionFailureReason.yaml b/openapi/components/schemas/transactions/OutgoingTransactionFailureReason.yaml index 4aa4fe88..8af526f7 100644 --- a/openapi/components/schemas/transactions/OutgoingTransactionFailureReason.yaml +++ b/openapi/components/schemas/transactions/OutgoingTransactionFailureReason.yaml @@ -5,7 +5,6 @@ enum: - LIGHTNING_PAYMENT_FAILED - FUNDING_AMOUNT_MISMATCH - COUNTERPARTY_POST_TX_FAILED - - TIMEOUT description: >- Reason for failure of an outgoing transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed