Jonatan Witoszek
Jonatan Witoszek
Our customers have issue with `checkoutComplete` mutation that causes them to have `Checkouts` with payments that have not been converted to an `Order` because the `checkoutComplete` mutation has failed for...
Here's a paragraph from our docs: > Payment Apps support two distinct ways of processing checkouts: > > - first payments, then order > - first order, then payments >...
We should add a debugging section in https://docs.saleor.io/docs/3.x/developer/extending/apps/asynchronous-webhooks. Debugging webhooks deliveries can be done by this query: ```graphql query { webhook(id: "...") { id eventDeliveries(first: 10) { edges { node...
We could add offline support for our docs page by using a PWA with Service Worker that would cache the entire page on user disc, similar to what [Pupeteer docs...
This PR adds experimental support for [Next.js Edge Runtime](https://nextjs.org/docs/pages/api-reference/edge), which uses Request and Response from Web API
## Problem Unable to charge customers from their saved payment methods without user interaction > **Note** > This RFC is still being worked on, keep in mind that the API...
## Problem - `INFO` event type doesn't make sense to always require an amount, what happens in most cases is that the payment provider sends a text notification, without any...
# Problem There is no way in Saleor to tokenize (store), retrieve and manage saved payment methods and then charge customers using those methods (also referred to as programmatic charges...
This PoC adds new `TransactionEventOutputTypeEnum` that will be used for resolving `TransactionItem`. It has the same fields as existing `TransactionEventTypeEnum`. Meanwhile existing `TarnsactionEventTypeEnum` has gained new REFUND_OR_CANCEL options. Old enum...
### What I'm trying to achieve Saleor Cloud allows setting up Basic Auth authentication when setting up an environment: https://docs.saleor.io/cloud/restricting-api-access#api-password-protection When installing apps in such Saleor instance it results in...