Conversation
Signed-off-by: mesilov <mesilov.maxim@gmail.com>
Update changelog and `composer.json` to support PHP 8.5
Bitrix24 portals with Enterprise license return LICENSE_FAMILY='ent' from app.info REST API. The previous 'en' value was a typo that caused: "ent" is not a valid backing value for enum Bitrix24\SDK\Application\PortalLicenseFamily Ref: https://apidocs.bitrix24.com/api-reference/common/system/app-info.html
…mily fix: rename 'en' to 'ent' (Enterprise) in PortalLicenseFamily enum
…t-returns-deal-item-result Bugfix/447 fix user batch get returns deal item result
…nerator Feature/393 add crm documentgenerator
…dget Feature/501 add landing repowidget
Feature/504 add sign.b2e
Feature/505 add imbot.v2
Feature/527 add catalog.product.*
…atalog.extra-catalog.measure Feature/530 add catalog.enum catalog.extra catalog.measure
…pe-catalog.priceTypeLang-catalog.priceTypeGroup
…catalog.priceType-catalog.priceTypeLang-catalog.priceTypeGroup Feature/536 add catalog.price catalog.price type catalog.price type lang catalog.price type group
…tImage Feature/537 add catalog.product image
…tProperty Feature/538 add catalog.product property
…tPropertySection Feature/558 add catalog.product property section
…tPropertyEnum Feature/549 add catalog.product property enum
…tPropertyFeature Feature/553 add catalog.product property feature
Fix main scope code handling
Ship SDK release 1.11.0
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2c17257c6b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| 'page' => 1, | ||
| ]; | ||
|
|
||
| if ($additionalParameters !== null) { |
There was a problem hiding this comment.
Continue connector pagination when total is absent
When an account has more than 50 connectors, biconnector.connector.list does not provide a pagination total (as also documented by Connector::count()), so getTotal() returns null. The subsequent comparison treats that as being within one page and yields only the first response, causing both batch->list() and count() to silently truncate results at 50; pagination should instead continue by page until a short or empty page is returned.
Useful? React with 👍 / 👎.
Closes #...