Skip to content

Commit 70ee487

Browse files
committed
chore: sync PHP client with Apify OpenAPI spec v2-2026-08-27T071624Z
1 parent 42f4d62 commit 70ee487

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.5.3
4+
5+
- Bumped `Version::API_SPEC_VERSION` to the Apify OpenAPI spec `v2-2026-08-27T071624Z`. Covers the
6+
removal of `pricingInfos` from the Create Actor request body (never implemented by this client),
7+
the `RequestWithoutId`/`RequestBase` bundling fix (this client already enforces the `uniqueKey`/
8+
`url` requirement client-side), and additive error-response/enum/format documentation fixes
9+
(nullable `notice`, unformatted `pictureUrl`, `401` on `GET /v2/users/{userId}`, a new `ErrorType`
10+
member, `409` on `PUT /v2/schedules/{scheduleId}`). None of this client's typed models expose
11+
those fields or enums, so no client code or public interface change.
12+
313
## 0.5.2
414

515
- Bumped `Version::API_SPEC_VERSION` to the Apify OpenAPI spec `v2-2026-08-14T072928Z`. This

src/Version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ final class Version
1717
* The semantic version of this client library (see https://semver.org/).
1818
* Changes to the public interface other than additive ones are considered breaking changes.
1919
*/
20-
public const CLIENT_VERSION = '0.5.2';
20+
public const CLIENT_VERSION = '0.5.3';
2121

2222
/**
2323
* The version of the Apify OpenAPI specification this client was generated and verified
2424
* against. Corresponds to the {@code info.version} field of the Apify OpenAPI document.
2525
*/
26-
public const API_SPEC_VERSION = 'v2-2026-08-14T072928Z';
26+
public const API_SPEC_VERSION = 'v2-2026-08-27T071624Z';
2727

2828
private function __construct()
2929
{

0 commit comments

Comments
 (0)