Skip to content

Commit 1482904

Browse files
chore(release): changeset created a new release
1 parent 7aa0cd4 commit 1482904

12 files changed

+23
-39
lines changed

.changeset/fuzzy-pumas-end.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/shiny-ghosts-sin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thick-clouds-ring.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Fingerprint Pro Server Python SDK
22

3+
## 8.6.0
4+
5+
### Minor Changes
6+
7+
- **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))
8+
- **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))
9+
10+
### Patch Changes
11+
12+
- **webhook**: Add `environmentId` property ([9354da9](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/9354da95724f407566a5190d1a24f571c3ca4f3f))
13+
314
## 8.6.0-rc.0
415

516
### Minor Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Fingerprint Server Python SDK is an easy way to interact with the Fingerprin
2626
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2727

2828
- API version: 3
29-
- Package version: 8.6.0-rc.0
29+
- Package version: 8.6.0
3030
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
3131

3232
## Requirements

fingerprint_pro_server_api_sdk/api/fingerprint_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def delete_visitor_data_with_http_info(self, visitor_id: str, **kwargs): # noqa
104104
if 'visitor_id' in params:
105105
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
106106

107-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
107+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
108108

109109
header_params = {}
110110

@@ -214,7 +214,7 @@ def get_event_with_http_info(self, request_id: str, **kwargs): # noqa: E501
214214
if 'request_id' in params:
215215
path_params['request_id'] = params['request_id'] # noqa: E501
216216

217-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
217+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
218218

219219
header_params = {}
220220

@@ -316,7 +316,7 @@ def get_related_visitors_with_http_info(self, visitor_id: str, **kwargs): # noq
316316

317317
path_params = {}
318318

319-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
319+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
320320
if 'visitor_id' in params:
321321
query_params.append(('visitor_id', params['visitor_id'])) # noqa: E501
322322

@@ -443,7 +443,7 @@ def get_visits_with_http_info(self, visitor_id: str, **kwargs): # noqa: E501
443443
if 'visitor_id' in params:
444444
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
445445

446-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
446+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
447447
if 'request_id' in params:
448448
query_params.append(('request_id', params['request_id'])) # noqa: E501
449449
if 'linked_id' in params:
@@ -633,7 +633,7 @@ def search_events_with_http_info(self, limit: int, **kwargs): # noqa: E501
633633

634634
path_params = {}
635635

636-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
636+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
637637
if 'limit' in params:
638638
query_params.append(('limit', params['limit'])) # noqa: E501
639639
if 'pagination_key' in params:
@@ -795,7 +795,7 @@ def update_event_with_http_info(self, body: EventsUpdateRequest, request_id: str
795795
if 'request_id' in params:
796796
path_params['request_id'] = params['request_id'] # noqa: E501
797797

798-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0-rc.0')]
798+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.6.0')]
799799

800800
header_params = {}
801801

fingerprint_pro_server_api_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration: Optional[Configuration] = None, header_name: O
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'Swagger-Codegen/8.6.0-rc.0/python'
82+
self.user_agent = 'Swagger-Codegen/8.6.0/python'
8383

8484
def __del__(self):
8585
self.pool.close()

fingerprint_pro_server_api_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,5 +210,5 @@ def to_debug_report(self):
210210
"OS: {env}\n"\
211211
"Python Version: {pyversion}\n"\
212212
"Version of the API: 3\n"\
213-
"SDK Package Version: 8.6.0-rc.0".\
213+
"SDK Package Version: 8.6.0".\
214214
format(env=sys.platform, pyversion=sys.version)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint-pro-server-api-python-sdk",
3-
"version": "8.6.0-rc.0",
3+
"version": "8.6.0",
44
"private": true,
55
"devDependencies": {
66
"@changesets/cli": "^2.27.8",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
version = 8.6.0-rc.0
2+
version = 8.6.0

test/test_fingerprint_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
API_KEY = 'private_key'
2727

28-
VERSION = '8.6.0-rc.0'
28+
VERSION = '8.6.0'
2929

3030
MOCK_GET_VISITORS_200_LIMIT_1 = 'get_visitors_200_limit_1.json'
3131
MOCK_GET_VISITORS_200_LIMIT_500 = 'get_visitors_200_limit_500.json'

0 commit comments

Comments
 (0)