Skip to content

Commit 8b454ba

Browse files
chore(release): changeset created a new release
1 parent e997531 commit 8b454ba

File tree

10 files changed

+17
-21
lines changed

10 files changed

+17
-21
lines changed

.changeset/forty-seas-prove.md

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

.changeset/orange-poets-drive.md

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

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Fingerprint Pro Server Python SDK
22

3+
## 8.1.0
4+
5+
### Minor Changes
6+
7+
- Add `relay` detection method to the VPN Detection Smart Signal ([cff0ef7](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/cff0ef77d21758844f7b9ff466df78aa7ecba51e))
8+
- **events**: Add a `suspect` field to the `identification` product schema ([cff0ef7](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/cff0ef77d21758844f7b9ff466df78aa7ecba51e))
9+
310
## 8.0.0
411

512
### Major Changes
613

714
The underlying Server API hasn’t changed, but we made SDK type and class generation more precise, resulting in small breaking changes for the SDK itself. This change should make the SDK API a lot more stable going forward
815

9-
1016
- - Remove the `BrowserDetails` field `botProbability`.
1117
- Update the `IdentificationConfidence` field `score` type format: `float` -> `double`.
1218
- Make the `RawDeviceAttributeError` field `name` **optional** .

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.0.0
29+
- Package version: 8.1.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def delete_visitor_data_with_http_info(self, visitor_id: str, **kwargs): # noqa
102102
if 'visitor_id' in params:
103103
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
104104

105-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.0.0')]
105+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.1.0')]
106106

107107
header_params = {}
108108

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

215-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.0.0')]
215+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.1.0')]
216216

217217
header_params = {}
218218

@@ -331,7 +331,7 @@ def get_visits_with_http_info(self, visitor_id: str, **kwargs): # noqa: E501
331331
if 'visitor_id' in params:
332332
path_params['visitor_id'] = params['visitor_id'] # noqa: E501
333333

334-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.0.0')]
334+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.1.0')]
335335
if 'request_id' in params:
336336
query_params.append(('request_id', params['request_id'])) # noqa: E501
337337
if 'linked_id' in params:
@@ -454,7 +454,7 @@ def update_event_with_http_info(self, body: EventsUpdateRequest, request_id: str
454454
if 'request_id' in params:
455455
path_params['request_id'] = params['request_id'] # noqa: E501
456456

457-
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.0.0')]
457+
query_params = [('ii', 'fingerprint-pro-server-python-sdk/8.1.0')]
458458

459459
header_params = {}
460460

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.0.0/python'
82+
self.user_agent = 'Swagger-Codegen/8.1.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.0.0".\
213+
"SDK Package Version: 8.1.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.0.0",
3+
"version": "8.1.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.0.0
2+
version = 8.1.0

test/test_fingerprint_api.py

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

2525
API_KEY = 'private_key'
2626

27-
VERSION = '8.0.0'
27+
VERSION = '8.1.0'
2828

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

0 commit comments

Comments
 (0)