Skip to content

Release [changeset] #121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fuzzy-pumas-end.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-ghosts-sin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-clouds-ring.md

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Fingerprint Pro Server Python SDK

## 8.6.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`. ([9354da9](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/9354da95724f407566a5190d1a24f571c3ca4f3f))
- **events-search**: Event search now supports two new filter parameters: `ip_blocklist`, `datacenter` ([826cb8e](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/826cb8e1a939994240a2cb5e048451f4aaf02cde))

### Patch Changes

- **webhook**: Add `environmentId` property ([9354da9](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/9354da95724f407566a5190d1a24f571c3ca4f3f))

## 8.6.0-rc.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0-rc.0
- Package version: 8.6.0
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

## Requirements
Expand Down
12 changes: 6 additions & 6 deletions fingerprint_pro_server_api_sdk/api/fingerprint_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]

header_params = {}

Expand Down Expand Up @@ -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.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]

header_params = {}

Expand Down Expand Up @@ -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.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
if 'visitor_id' in params:
query_params.append(('visitor_id', params['visitor_id'])) # noqa: E501

Expand Down Expand Up @@ -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.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
if 'request_id' in params:
query_params.append(('request_id', params['request_id'])) # noqa: E501
if 'linked_id' in params:
Expand Down Expand Up @@ -633,7 +633,7 @@ def search_events_with_http_info(self, limit: int, **kwargs): # noqa: E501

path_params = {}

query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
if 'limit' in params:
query_params.append(('limit', params['limit'])) # noqa: E501
if 'pagination_key' in params:
Expand Down Expand Up @@ -795,7 +795,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.6.0-rc.0')]
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]

header_params = {}

Expand Down
2 changes: 1 addition & 1 deletion fingerprint_pro_server_api_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0-rc.0/python'
self.user_agent = 'Swagger-Codegen/8.6.0/python'

def __del__(self):
self.pool.close()
Expand Down
2 changes: 1 addition & 1 deletion fingerprint_pro_server_api_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0-rc.0".\
"SDK Package Version: 8.6.0".\
format(env=sys.platform, pyversion=sys.version)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fingerprint-pro-server-api-python-sdk",
"version": "8.6.0-rc.0",
"version": "8.6.0",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.8",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
version = 8.6.0-rc.0
version = 8.6.0
2 changes: 1 addition & 1 deletion test/test_fingerprint_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

API_KEY = 'private_key'

VERSION = '8.6.0-rc.0'
VERSION = '8.6.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'
Expand Down
Loading