Skip to content

Commit 393626f

Browse files
Merge pull request #148 from fingerprintjs/feat/open-api-v2.11.0
OpenAPI schema sync (v2.11.0)
2 parents ce385f1 + 3de9bfa commit 393626f

22 files changed

+646
-50
lines changed

.changeset/cute-buses-attend.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'fingerprint-pro-server-api-python-sdk': minor
3+
---
4+
5+
**events-search**: Event search now supports a new set of filter parameters: `developer_tools`, `location_spoofing`, `mitm_attack`, `proxy`, `sdk_version`, `sdk_platform`, `environment`

.changeset/fast-hotels-hunt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'fingerprint-pro-server-api-python-sdk': minor
3+
---
4+
5+
**webhook**: Add `supplementaryIds` property to the Webhooks schema.

.changeset/pre.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mode": "pre",
3+
"tag": "rc",
4+
"initialVersions": {
5+
"fingerprint-pro-server-api-python-sdk": "8.10.0"
6+
},
7+
"changesets": []
8+
}

.changeset/quick-kiwis-visit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'fingerprint-pro-server-api-python-sdk': minor
3+
---
4+
5+
Add `environmentId` property to `identification`

.schema-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.10.0
1+
v2.11.0

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ Class | Method | HTTP request | Description
369369
- [SDK](docs/SDK.md)
370370
- [SearchEventsResponse](docs/SearchEventsResponse.md)
371371
- [SearchEventsResponseEvents](docs/SearchEventsResponseEvents.md)
372+
- [SupplementaryID](docs/SupplementaryID.md)
372373
- [SuspectScore](docs/SuspectScore.md)
373374
- [Tag](docs/Tag.md)
374375
- [Tampering](docs/Tampering.md)
@@ -399,6 +400,7 @@ Class | Method | HTTP request | Description
399400
- [WebhookRawDeviceAttributes](docs/WebhookRawDeviceAttributes.md)
400401
- [WebhookRemoteControl](docs/WebhookRemoteControl.md)
401402
- [WebhookRootApps](docs/WebhookRootApps.md)
403+
- [WebhookSupplementaryIDs](docs/WebhookSupplementaryIDs.md)
402404
- [WebhookSuspectScore](docs/WebhookSuspectScore.md)
403405
- [WebhookTampering](docs/WebhookTampering.md)
404406
- [WebhookTor](docs/WebhookTor.md)

docs/FingerprintApi.md

Lines changed: 32 additions & 18 deletions
Large diffs are not rendered by default.

docs/Identification.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**visitor_id** | **str** | String of 20 characters that uniquely identifies the visitor's browser. |
6+
**visitor_id** | **str** | String of 20 characters that uniquely identifies the visitor's browser or mobile device. |
77
**request_id** | **str** | Unique identifier of the user's request. |
88
**browser_details** | [**BrowserDetails**](BrowserDetails.md) | |
99
**incognito** | **bool** | Flag if user used incognito session. |
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
2222
**components** | [**RawDeviceAttributes**](RawDeviceAttributes.md) | | [optional]
2323
**replayed** | **bool** | `true` if we determined that this payload was replayed, `false` otherwise. |
2424
**sdk** | [**SDK**](SDK.md) | | [optional]
25+
**environment_id** | **str** | Environment ID associated with the event | [optional]
2526

2627
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2728

docs/SupplementaryID.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# SupplementaryID
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**visitor_id** | **str** | String of 20 characters that uniquely identifies the visitor's browser or mobile device. | [optional]
7+
**visitor_found** | **bool** | Attribute represents if a visitor had been identified before. | [optional]
8+
**confidence** | [**IdentificationConfidence**](IdentificationConfidence.md) | | [optional]
9+
**first_seen_at** | [**IdentificationSeenAt**](IdentificationSeenAt.md) | | [optional]
10+
**last_seen_at** | [**IdentificationSeenAt**](IdentificationSeenAt.md) | | [optional]
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+

docs/Webhook.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**timestamp** | **int** | Timestamp of the event with millisecond precision in Unix time. |
1313
**ip_location** | [**DeprecatedGeolocation**](DeprecatedGeolocation.md) | | [optional]
1414
**linked_id** | **str** | A customer-provided id that was sent with the request. | [optional]
15-
**visitor_id** | **str** | String of 20 characters that uniquely identifies the visitor's browser. | [optional]
15+
**visitor_id** | **str** | String of 20 characters that uniquely identifies the visitor's browser or mobile device. | [optional]
1616
**visitor_found** | **bool** | Attribute represents if a visitor had been identified before. | [optional]
1717
**confidence** | [**IdentificationConfidence**](IdentificationConfidence.md) | | [optional]
1818
**first_seen_at** | [**IdentificationSeenAt**](IdentificationSeenAt.md) | | [optional]
@@ -47,6 +47,7 @@ Name | Type | Description | Notes
4747
**mitm_attack** | [**WebhookMitMAttack**](WebhookMitMAttack.md) | | [optional]
4848
**replayed** | **bool** | `true` if we determined that this payload was replayed, `false` otherwise. | [optional]
4949
**sdk** | [**SDK**](SDK.md) | |
50+
**supplementary_ids** | [**WebhookSupplementaryIDs**](WebhookSupplementaryIDs.md) | | [optional]
5051

5152
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
5253

0 commit comments

Comments
 (0)