diff --git a/.changeset/silent-frogs-beam.md b/.changeset/silent-frogs-beam.md deleted file mode 100644 index 74434c1d..00000000 --- a/.changeset/silent-frogs-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -add `replayed` field to `identification` in Events and Webhooks \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 735195a7..b461bfc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Fingerprint Pro Server PHP SDK +## 6.7.0 + +### Minor Changes + +- add `replayed` field to `identification` in Events and Webhooks ([098df62](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/098df620ddab449988e3ff9e1b5fc787ba0d622f)) + ## 6.6.0 ### Minor Changes diff --git a/README.md b/README.md index 78e2e5ea..9ea3f5d2 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.6.0 + - Package version: 6.7.0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index 167ad071..b4b5909c 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.6.0", + "version": "6.7.0", "description": "Fingerprint Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", "keywords": [ "swagger", diff --git a/config.json b/config.json index b1002482..80866d4d 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.6.0" + "artifactVersion": "6.7.0" } diff --git a/package.json b/package.json index 2eb32b9d..78981dac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.6.0", + "version": "6.7.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 1be64029..96169dab 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.6.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.7.0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index c3f5fc6d..cfe92892 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.6.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.7.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.6.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.7.0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;