From 7c72174126c561d1ba9a3379e576918f101a8f79 Mon Sep 17 00:00:00 2001 From: mesilov Date: Wed, 29 Oct 2025 13:23:14 +0600 Subject: [PATCH] Add `project` type to `PortalLicenseFamily` enum and update CHANGELOG with details. Signed-off-by: mesilov --- CHANGELOG.md | 1 + src/Application/PortalLicenseFamily.php | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1d23f2d..3d73054a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Fixed wrong offset in `ItemsResult` [see details](https://github.com/bitrix24/b24phpsdk/issues/279) - Fixed wrong exception for method `crm.item.get`, now it `ItemNotFoundException` [see details](https://github.com/bitrix24/b24phpsdk/issues/282) +- Fixed added type `project` in enum `PortalLicenseFamily` [see details](https://github.com/bitrix24/b24phpsdk/issues/286) ### Statistics diff --git a/src/Application/PortalLicenseFamily.php b/src/Application/PortalLicenseFamily.php index 718fa953..42a63b0b 100644 --- a/src/Application/PortalLicenseFamily.php +++ b/src/Application/PortalLicenseFamily.php @@ -23,6 +23,7 @@ enum PortalLicenseFamily: string case basic = 'basic'; case std = 'std'; case pro = 'pro'; + case project = 'project'; case en = 'en'; case nfr = 'nfr'; } \ No newline at end of file