Skip to content
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

SMSI-838: Expose VPN relay SS #174

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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: 5 additions & 0 deletions .changeset/forty-seas-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'fingerprint-pro-server-api-openapi': minor
---

**visitors**: Add the relay field to the VPN Detection Smart Signal methods
soniabhishek marked this conversation as resolved.
Show resolved Hide resolved
ilfa marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 5 additions & 0 deletions schemas/components/schemas/VPNMethods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ required:
- publicVPN
- auxiliaryMobile
- osMismatch
- relay
properties:
timezoneMismatch:
type: boolean
Expand All @@ -20,3 +21,7 @@ properties:
type: boolean
description: >-
The browser runs on a different operating system than the operating system inferred from the request network signature.
relay:
JuroUhlar marked this conversation as resolved.
Show resolved Hide resolved
type: boolean
description: >-
Request IP address belongs to a relay service provider.
JuroUhlar marked this conversation as resolved.
Show resolved Hide resolved
soniabhishek marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 2 additions & 1 deletion schemas/paths/examples/get_event_200.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion schemas/paths/examples/get_event_search_200.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion schemas/paths/examples/webhook.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@
"timezoneMismatch": false,
"publicVPN": false,
"auxiliaryMobile": false,
"osMismatch": false
"osMismatch": false,
"relay": false
JuroUhlar marked this conversation as resolved.
Show resolved Hide resolved
}
},
"proxy": {
Expand Down