From c61eb538efae8eeef71a5eb2fe65ecb10408a2c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 7 Feb 2025 13:28:11 +0000 Subject: [PATCH] chore(release): changeset created a new release (rc) --- .changeset/pre.json | 4 +++- CHANGELOG.md | 6 ++++++ README.md | 2 +- .../api/fingerprint_api.py | 12 ++++++------ fingerprint_pro_server_api_sdk/api_client.py | 2 +- fingerprint_pro_server_api_sdk/configuration.py | 2 +- package.json | 2 +- setup.cfg | 2 +- test/test_fingerprint_api.py | 2 +- 9 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 97aacec0..3bab18ea 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -4,5 +4,7 @@ "initialVersions": { "fingerprint-pro-server-api-python-sdk": "8.2.1" }, - "changesets": [] + "changesets": [ + "good-experts-watch" + ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a56595e..b0e62b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Fingerprint Pro Server Python SDK +## 8.3.0-rc.0 + +### Minor Changes + +- **events-search**: Add a new `events/search` API endpoint. Allow users to search for identification events matching one or more search criteria, for example, visitor ID, IP address, bot detection result, etc. ([2ce9734](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/2ce97343ee676a163b383b8040737ac481dfbb03)) + ## 8.2.1 ### Patch Changes diff --git a/README.md b/README.md index 21687655..08f02ec1 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The Fingerprint Server Python SDK is an easy way to interact with the Fingerprin This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 -- Package version: 8.2.1 +- Package version: 8.3.0-rc.0 - Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen ## Requirements diff --git a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py index ca686f89..b69a7a37 100644 --- a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py +++ b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py @@ -104,7 +104,7 @@ def delete_visitor_data_with_http_info(self, visitor_id: str, **kwargs): # noqa if 'visitor_id' in params: path_params['visitor_id'] = params['visitor_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] header_params = {} @@ -214,7 +214,7 @@ def get_event_with_http_info(self, request_id: str, **kwargs): # noqa: E501 if 'request_id' in params: path_params['request_id'] = params['request_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] header_params = {} @@ -316,7 +316,7 @@ def get_related_visitors_with_http_info(self, visitor_id: str, **kwargs): # noq path_params = {} - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] if 'visitor_id' in params: query_params.append(('visitor_id', params['visitor_id'])) # noqa: E501 @@ -443,7 +443,7 @@ def get_visits_with_http_info(self, visitor_id: str, **kwargs): # noqa: E501 if 'visitor_id' in params: path_params['visitor_id'] = params['visitor_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] if 'request_id' in params: query_params.append(('request_id', params['request_id'])) # noqa: E501 if 'linked_id' in params: @@ -582,7 +582,7 @@ def search_events_with_http_info(self, limit: int, **kwargs): # noqa: E501 path_params = {} - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 if 'visitor_id' in params: @@ -710,7 +710,7 @@ def update_event_with_http_info(self, body: EventsUpdateRequest, request_id: str if 'request_id' in params: path_params['request_id'] = params['request_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.2.1')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.3.0-rc.0')] header_params = {} diff --git a/fingerprint_pro_server_api_sdk/api_client.py b/fingerprint_pro_server_api_sdk/api_client.py index ae55e6bf..32889d09 100644 --- a/fingerprint_pro_server_api_sdk/api_client.py +++ b/fingerprint_pro_server_api_sdk/api_client.py @@ -79,7 +79,7 @@ def __init__(self, configuration: Optional[Configuration] = None, header_name: O self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/8.2.1/python' + self.user_agent = 'Swagger-Codegen/8.3.0-rc.0/python' def __del__(self): self.pool.close() diff --git a/fingerprint_pro_server_api_sdk/configuration.py b/fingerprint_pro_server_api_sdk/configuration.py index deeafb52..7fc7c307 100644 --- a/fingerprint_pro_server_api_sdk/configuration.py +++ b/fingerprint_pro_server_api_sdk/configuration.py @@ -210,5 +210,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 3\n"\ - "SDK Package Version: 8.2.1".\ + "SDK Package Version: 8.3.0-rc.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/package.json b/package.json index 252e87b8..6ca91eb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-python-sdk", - "version": "8.2.1", + "version": "8.3.0-rc.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/setup.cfg b/setup.cfg index bb54c4d6..cf33376c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -version = 8.2.1 +version = 8.3.0-rc.0 diff --git a/test/test_fingerprint_api.py b/test/test_fingerprint_api.py index 39040b3f..1def17ee 100644 --- a/test/test_fingerprint_api.py +++ b/test/test_fingerprint_api.py @@ -25,7 +25,7 @@ API_KEY = 'private_key' -VERSION = '8.2.1' +VERSION = '8.3.0-rc.0' MOCK_GET_VISITORS_200_LIMIT_1 = 'get_visitors_200_limit_1.json' MOCK_GET_VISITORS_200_LIMIT_500 = 'get_visitors_200_limit_500.json'