From 1c330343e00c9d6c02d923bf3bb530aafec733c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 14 Oct 2024 08:22:43 +0000 Subject: [PATCH] chore(release): changeset created a new release (develop) --- .changeset/pre.json | 1 + CHANGELOG.md | 6 ++++++ README.md | 2 +- composer.json | 2 +- config.json | 2 +- package.json | 2 +- src/Api/FingerprintApi.php | 2 +- src/Configuration.php | 4 ++-- src/ObjectSerializer.php | 2 +- 9 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 7681b4e7..5f356837 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -7,6 +7,7 @@ "changesets": [ "nervous-sheep-attend", "orange-taxis-fetch", + "popular-falcons-punch", "rude-llamas-judge" ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c75126..cae55b11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Fingerprint Pro Server PHP SDK +## 5.1.0-develop.2 + +### Patch Changes + +- Correctly handle boolean values in `updateEvent` method request body ([d5a8d80](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/d5a8d808f8c20388b0492c660f486d9f3bc4b694)) + ## 5.1.0-develop.1 ### Minor Changes diff --git a/README.md b/README.md index 7f2a4831..c38fe0af 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 - - Package version: dev-5.1.0-1 + - Package version: dev-5.1.0-2 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index 934e84e1..e6702bf6 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "dev-5.1.0-1", + "version": "dev-5.1.0-2", "description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", "keywords": [ "swagger", diff --git a/config.json b/config.json index 42bb4b5e..9a3636e0 100644 --- a/config.json +++ b/config.json @@ -8,5 +8,5 @@ "gitUserId": "fingerprintjs", "gitRepoId": "fingerprint-pro-server-api-php-sdk", "description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", - "artifactVersion": "dev-5.1.0-1" + "artifactVersion": "dev-5.1.0-2" } diff --git a/package.json b/package.json index 8ed9b0ae..c5f3a698 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "5.1.0-develop.1", + "version": "5.1.0-develop.2", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 2cb8e572..7dbeb677 100644 --- a/src/Api/FingerprintApi.php +++ b/src/Api/FingerprintApi.php @@ -57,7 +57,7 @@ class FingerprintApi protected ClientInterface $client; protected Configuration $config; - protected string $integration_info = 'fingerprint-pro-server-php-sdk/dev-5.1.0-1'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/dev-5.1.0-2'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index c0ce6d2b..41eb784d 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -81,7 +81,7 @@ class Configuration /** * User agent of the HTTP request, set to "PHP-Swagger" by default. */ - protected string $userAgent = 'Swagger-Codegen/dev-5.1.0-1/php'; + protected string $userAgent = 'Swagger-Codegen/dev-5.1.0-2/php'; /** * Debug switch (default set to false). @@ -422,7 +422,7 @@ public static function toDebugReport(): string $report .= ' OS: '.php_uname().PHP_EOL; $report .= ' PHP Version: '.PHP_VERSION.PHP_EOL; $report .= ' OpenAPI Spec Version: 3'.PHP_EOL; - $report .= ' SDK Package Version: dev-5.1.0-1'.PHP_EOL; + $report .= ' SDK Package Version: dev-5.1.0-2'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report; diff --git a/src/ObjectSerializer.php b/src/ObjectSerializer.php index e99f4f27..7ef0e85a 100644 --- a/src/ObjectSerializer.php +++ b/src/ObjectSerializer.php @@ -50,7 +50,7 @@ class ObjectSerializer * * @return array|object|string serialized form of $data */ - public static function sanitizeForSerialization(mixed $data, ?string $format = null): array|object|string|bool + public static function sanitizeForSerialization(mixed $data, ?string $format = null): array|bool|object|string { if (is_scalar($data) || null === $data) { return $data;