diff --git a/.changeset/pre.json b/.changeset/pre.json index 37c4b393..81382537 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -4,5 +4,11 @@ "initialVersions": { "fingerprint-pro-server-api-php-sdk": "6.4.0" }, - "changesets": [] + "changesets": [ + "fuzzy-pumas-end", + "shaky-goats-beam", + "sharp-chicken-yawn", + "shiny-ghosts-sin", + "thick-clouds-ring" + ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index bce1a61b..19ac739d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Fingerprint Pro Server PHP SDK +## 6.5.0-develop.0 + +### Minor Changes + +- **events-search**: Event search now supports a new set of filter parameters: `vpn`, `virtual_machine`, `tampering`, `anti_detect_browser`, `incognito`, `privacy_settings`, `jailbroken`, `frida`, `factory_reset`, `cloned_app`, `emulator`, `root_apps`, `vpn_confidence`, `min_suspect_score`. ([9ec63ea](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9ec63ea694ecb71ce002e9243513947e131bc27c)) +- **events-search**: Event search now supports two new filter parameters: `ip_blocklist`, `datacenter` ([e2b6aba](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/e2b6aba413642c18526a4f0cf06f07de38353c35)) + +### Patch Changes + +- **webhook**: Apply x-flatten-optional-params: true in correct place in the webhook.yaml ([9ec63ea](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9ec63ea694ecb71ce002e9243513947e131bc27c)) +- **events**: Update Tampering descriptions to reflect Android support. ([9ec63ea](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9ec63ea694ecb71ce002e9243513947e131bc27c)) +- **webhook**: Add `environmentId` property ([9ec63ea](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9ec63ea694ecb71ce002e9243513947e131bc27c)) + ## 6.4.0 ### Minor Changes diff --git a/README.md b/README.md index 37c53f81..b7a33853 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: 6.4.0 + - Package version: dev-6.5.0-0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index f701f9d0..978dc4c7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.4.0", + "version": "dev-6.5.0-0", "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 ea421232..e22d802a 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": "6.4.0" + "artifactVersion": "dev-6.5.0-0" } diff --git a/package.json b/package.json index 80872497..5e03c6a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.4.0", + "version": "6.5.0-develop.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index d96bfe3e..0bd98a25 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/6.4.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/dev-6.5.0-0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index bb81606a..679df3b8 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/6.4.0/php'; + protected string $userAgent = 'Swagger-Codegen/dev-6.5.0-0/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: 6.4.0'.PHP_EOL; + $report .= ' SDK Package Version: dev-6.5.0-0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;