Skip to content

Commit

Permalink
Add migration guide for v4.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pimm committed Sep 16, 2024
1 parent e7db5e5 commit 05abbdb
Showing 1 changed file with 110 additions and 2 deletions.
112 changes: 110 additions & 2 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,112 @@
# Migrating from v2.3.2 to v3.0.0
# Migrating from v3.×.× to v4.0.0

## Raised Node.js requirement

Node.js 14+ is officially supported, although we believe Node.js 8+ should work.

## Removed `withParent`

`withParent` has been removed, eliminating state from the client:
```diff
- const payments = mollieClient.customerPayments.withParent(customer).iterate();
+ const payments = mollieClient.customerPayments.iterate({ customerId: customer.id });
for await (const payment of payments) {
}
```

## Removed snake case properties (e.g. `payments_refunds`)

Snake case properties have been removed in favour of camel case ones. Please use `paymentRefunds` instead of `payments_refunds`, `orderShipments` instead of `orders_shipments`, et cetera:
```diff
- mollieClient.customers_subscriptions.get('sub_PCN3U3U27K', { customerId: 'cst_pzhEvnttJ2' })
+ mollieClient.customerSubscriptions.get('sub_PCN3U3U27K', { customerId: 'cst_pzhEvnttJ2' });
```

## Removed endpoint aliases (e.g. `payments.delete`)

Endpoint aliases have been removed. Please use `mollieClient.payments.cancel` instead of `mollieClient.payments.delete`, `mollieClient.refunds.page` instead of `mollieClient.refunds.list`, et cetera:
```diff
- mollieClient.subscriptions.list({ limit: 10 })
+ mollieClient.subscriptions.page({ limit: 10 })
```

## Removed predictable helper functions

Helper functions which do not provide a significantly simpler API have been removed:
```diff
- if (payment.isOpen()) {
+ if (payment.status == PaymentStatus.open) {
```
```diff
- if (payment.hasSequenceTypeFirst()) {
+ if (payment.sequenceType == SequenceType.first)
```

## Removed functions from `ApiError`

`getMessage`, `getField`, `getStatusCode` have been removed. Please use `message`, `field`, and `statusCode` instead:
```diff
try {
const payment = await mollieClient.payments.get(…);
} catch (error) {
- console.warn(error.getMessage())
+ console.warn(error.message)
}
```

## Changed type of `metadata` (from `any`) to `unknown`

The `metadata` property is now typed as `unknown`. Please check its type at runtime, or use `as any` to opt in to type issues.

This is part of a larger movement in the TypeScript universe to reduce usage of the `any` type. See [microsoft/TypeScript#41016](https://github.com/microsoft/TypeScript/issues/41016).

## Removed `count`

The `count` property has been removed from pages, please use `length` instead:
```diff
- mollieClient.payments.page({ limit: 10 }).count
+ mollieClient.payments.page({ limit: 10 }).length
```

## List API changes

The return type of list functions now reflects whether the underlying endpoint is paginated. The following functions now return (plain) arrays:

* `mollieClient.methods.list`
* `mollieClient.orderShipments.list`
* `mollieClient.permissions.list`

The following functions now return iterators:

* `customer.getMandates()`
* `customer.getSubscriptions()`
* `customer.getPayments()`
* `order.getRefunds()`
* `payment.getRefunds()`
* `payment.getChargebacks()`
* `payment.getCaptures()`
* `profile.getChargebacks()`
* `profile.getPayments()`
* `profile.getRefunds()`
* `subscription.getPayments()`

## Removed `toPlainObject`

`toPlainObject` has been removed. The appropriate alternative depends on your motivation to use the now-removed function.

## Removed Axios-specific options

Previously, it was possible to provide options to Axios through `createMollieClient`. The client no longer uses Axios. The following options no longer have any effect:

* `adapter`
* `proxy`
* `socketPath`
* `timeout`

Please [create an issue](https://github.com/mollie/mollie-api-node/issues/new/choose) if you rely on such an option.

# Migrating from v2.×.× to v3.0.0

## Initialization

Expand Down Expand Up @@ -60,7 +168,7 @@ The alternative using JavaScript modules would be to replace the first line of t
import createMollieClient, { PaymentMethod } from '@mollie/api-client';
```

# Migrating from v1.x to v2.0
# Migrating from v1.×.× to v2.0.0

Version 2.x of the Node client uses the v2 Mollie API. Please refer to [Migrating from v1 to v2](https://docs.mollie.com/migrating-v1-to-v2) for a general overview of the changes introduced by the new Mollie API.

Expand Down

0 comments on commit 05abbdb

Please sign in to comment.