diff --git a/CHANGELOG.md b/CHANGELOG.md index 5218a69a..f197455e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ Please see [the migration guide](MIGRATION.md) for guidance about updating to a newer major version. +### v4.4.0 - 2026-01-14 + - Add OAuth API support ([#461](https://github.com/mollie/mollie-api-node/pull/461)) + - Add Clients API support ([#463](https://github.com/mollie/mollie-api-node/pull/463)) + - Add Client Links API support ([#464](https://github.com/mollie/mollie-api-node/pull/464)) + - Add Capabilities API support ([#462](https://github.com/mollie/mollie-api-node/pull/462)) + - Add Delayed Routing API support ([#454](https://github.com/mollie/mollie-api-node/pull/454)) + - Add Balance Transfers API + - Add Organizations API `getPartnerStatus` endpoint ([#453](https://github.com/mollie/mollie-api-node/pull/453)) + - Add missing payment methods: Bizum, MobilePay, Swish, Vipps ([#452](https://github.com/mollie/mollie-api-node/pull/452)) + - Add missing `cancelled` refund status ([#468](https://github.com/mollie/mollie-api-node/pull/468)) + - Enhance PointOfSaleDetails with additional fields ([#469](https://github.com/mollie/mollie-api-node/pull/469)) + - Add missing payment links parameters ([#471](https://github.com/mollie/mollie-api-node/pull/471)) + - Fix partner status helper implementation + - Fix `cardReadMethod` options in PointOfSaleReceipt interface + - Omit `_links` from public types for consistency ([#465](https://github.com/mollie/mollie-api-node/pull/465)) + - Improve build tooling and suppress intentional warnings ([#451](https://github.com/mollie/mollie-api-node/pull/451)) + ### v4.3.3 - 2025-06-17 - Fix parameters for `customerPayments.create()` ([#442](https://github.com/mollie/mollie-api-node/pull/442)) diff --git a/package.json b/package.json index 04bd542b..038e8e5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mollie/api-client", - "version": "4.3.3", + "version": "4.4.0", "license": "BSD-3-Clause", "description": "Official Mollie API client for Node", "repository": { diff --git a/src/data/organizations/partner/PartnerStatusHelper.ts b/src/data/organizations/partner/PartnerStatusHelper.ts index 8b1a5822..0ad54fac 100644 --- a/src/data/organizations/partner/PartnerStatusHelper.ts +++ b/src/data/organizations/partner/PartnerStatusHelper.ts @@ -14,6 +14,8 @@ export default class PartnerStatusHelper extends Helper