Results 4 issues of SirupDev

const { createMollieClient } = require('@mollie/api-client'); const mollieClient = createMollieClient({ apiKey: 'test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM' }); const updatedTransaction = mollieClient.payments.update('tr_7UhSN1zuXS', { description: 'Order #98765', redirect_url: 'https://example.org/webshop/order/98765/' }).catch((reason) => { // error handling });

Hello, I noticed that it's possible to use Siesta asynchronously by configuring a concurrent.Executor via JdbcSqlExecutor. I was wondering what you think about supporting two separate executors - one for...

It would be nice if you can add Java 8 support. I got the following error if I am trying to build my Java 8 Project: java: cannot access com.mojang.datafixers.util.Pair...

Currently, when delegating the `Database` class (e.g., to implement `XYDatabase`), it's easy to overlook some method overrides. By extracting the relevant methods into an interface (e.g., `ForwardingDatabase`) we can: -...