Skip to content

Commit e9fb428

Browse files
Merge pull request #152 from fingerprintjs/changeset-release/main
Release [changeset]
2 parents decd677 + 7057dbb commit e9fb428

File tree

13 files changed

+21
-45
lines changed

13 files changed

+21
-45
lines changed

.changeset/cute-buses-attend.md

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

.changeset/fast-hotels-hunt.md

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

.changeset/pre.json

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

.changeset/proud-feet-attack.md

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

.changeset/quick-kiwis-visit.md

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

CHANGELOG.md

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

3+
## 8.11.0
4+
5+
### Minor Changes
6+
7+
- **events-search**: Event search now supports a new set of filter parameters: `developer_tools`, `location_spoofing`, `mitm_attack`, `proxy`, `sdk_version`, `sdk_platform`, `environment` ([4e2baaf](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/4e2baafe8cbaad13bb72d46ab9f227053eba28ed))
8+
- **webhook**: Add `supplementaryIds` property to the Webhooks schema. ([4e2baaf](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/4e2baafe8cbaad13bb72d46ab9f227053eba28ed))
9+
- Add `proximity` signal that represents a fixed geographical zone in a discrete global grid within which the device is observed. ([8b24e3b](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/8b24e3b39b28d4c774e50f42e1648f5bfd804f11))
10+
- Add `environmentId` property to `identification` ([4e2baaf](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/4e2baafe8cbaad13bb72d46ab9f227053eba28ed))
11+
312
## 8.11.0-rc.0
413

514
### 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.11.0-rc.0
29+
- Package version: 8.11.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.11.0-rc.0')]
107+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.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.11.0-rc.0')]
217+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.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.11.0-rc.0')]
319+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.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.11.0-rc.0')]
446+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.0')]
447447
if 'request_id' in params:
448448
query_params.append(('request_id', params['request_id'])) # noqa: E501
449449
if 'linked_id' in params:
@@ -660,7 +660,7 @@ def search_events_with_http_info(self, limit: int, **kwargs): # noqa: E501
660660

661661
path_params = {}
662662

663-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.0-rc.0')]
663+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.0')]
664664
if 'limit' in params:
665665
query_params.append(('limit', params['limit'])) # noqa: E501
666666
if 'pagination_key' in params:
@@ -841,7 +841,7 @@ def update_event_with_http_info(self, body: EventsUpdateRequest, request_id: str
841841
if 'request_id' in params:
842842
path_params['request_id'] = params['request_id'] # noqa: E501
843843

844-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.0-rc.0')]
844+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.11.0')]
845845

846846
header_params = {}
847847

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.11.0-rc.0/python'
82+
self.user_agent = 'Swagger-Codegen/8.11.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.11.0-rc.0".\
213+
"SDK Package Version: 8.11.0".\
214214
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)