Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@
- `list` Get a list of custom types crm.type.list
- `delete` This method deletes an existing smart process by the identifier id

### Fixed

- Fixed wrong offset in `ItemsResult` [see details](https://github.com/bitrix24/b24phpsdk/issues/279)

### Statistics

```
Bitrix24 API-methods count:
Supported in bitrix24-php-sdk methods count:
Coverage percentage:
```

## 1.7.0 - 2025.10.08

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Services/CRM/Item/Result/ItemsResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ItemsResult extends AbstractResult
public function getItems(): array
{
$items = [];
foreach ($this->getCoreResponse()->getResponseData()->getResult() as $item) {
foreach ($this->getCoreResponse()->getResponseData()->getResult()['items'] as $item) {
$items[] = new ItemItemResult($item);
}

Expand Down