incognia_api 0.5.5 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +9 -18
- data/lib/incognia_api/api.rb +7 -11
- data/lib/incognia_api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a8273559cc0083cb3373809d8ecf76edd3f843cb40b49b450e6ec2fc2de4455
|
4
|
+
data.tar.gz: 598e1eeb493b7f9eba3882b032e33803d472181bfbb61a9e9b7e60f2fbf67512
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7bb01031ef75a1dc426bff6ef8fec7d17dd9d0a7022db6c0ccac7a8bc1c2a552b30ebd779fe094eeed45b57d8d60f922fffb1ccae72430c992fd290118af627
|
7
|
+
data.tar.gz: 63e398c7600a573d4cbcf742953944a63e2c116382c976e7dcc819bc4e6908ea7d0fa42e98d0fadea2753bc2e187d2e198613e534be019ace70f176f8101c4cf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.1.0] - 2024-07-24
|
4
|
+
|
5
|
+
- Add support to passing request_token and occurred_at to #register_feedback
|
6
|
+
|
7
|
+
## [1.0.0] - 2024-07-05
|
8
|
+
|
9
|
+
- Remove #get_signup_assessment, because the endpoint was discontinued
|
10
|
+
|
3
11
|
## [0.5.5] - 2024-04-01
|
4
12
|
|
5
13
|
- Fix datetime parcer to RFC3339 format
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -80,17 +80,6 @@ assessment = api.register_signup(
|
|
80
80
|
# => #<OpenStruct id="...", device_id="...", risk_assessment="..", evidence=...>
|
81
81
|
```
|
82
82
|
|
83
|
-
### Getting a Signup
|
84
|
-
|
85
|
-
This method allows you to query the latest assessment for a given signup event, returning signup assessment, containing the risk assessment and supporting evidence:
|
86
|
-
|
87
|
-
```ruby
|
88
|
-
assessment = api.get_signup_assessment(signup_id: "95a9fc56-f65e-436b-a87f-a1338043678f")
|
89
|
-
|
90
|
-
# => #<OpenStruct id="...", request_id="...", device_id="...", risk_assessment="..", evidence=...>
|
91
|
-
|
92
|
-
```
|
93
|
-
|
94
83
|
### Registering a Login
|
95
84
|
|
96
85
|
This method registers a new login for the given installation and account, returning a login assessment, containing the risk assessment and supporting evidence:
|
@@ -213,12 +202,14 @@ The `expires_at` argument should be a _Time_, _DateTime_ or an date in **RFC 333
|
|
213
202
|
|
214
203
|
|
215
204
|
```ruby
|
216
|
-
|
217
|
-
|
205
|
+
installation_id = 'installation-id'
|
206
|
+
account_id = 'account-id'
|
207
|
+
occurred_at = DateTime.parse('2024-07-22T15:20:00Z')
|
218
208
|
|
219
209
|
success = api.register_feedback(
|
220
|
-
event: Incognia::Constants::FeedbackEvent::
|
221
|
-
|
210
|
+
event: Incognia::Constants::FeedbackEvent::ACCOUNT_TAKEOVER,
|
211
|
+
occurred_at: occurred_at,
|
212
|
+
installation_id: installation_id,
|
222
213
|
account_id: account_id
|
223
214
|
)
|
224
215
|
|
@@ -230,9 +221,9 @@ For custom fraud, set the value of `event` with the corresponding code:
|
|
230
221
|
```ruby
|
231
222
|
success = api.register_feedback(
|
232
223
|
event: 'custom_fraud_name',
|
233
|
-
|
234
|
-
|
235
|
-
|
224
|
+
occurred_at: occurred_at,
|
225
|
+
installation_id: installation_id,
|
226
|
+
account_id: account_id
|
236
227
|
)
|
237
228
|
|
238
229
|
# => true
|
data/lib/incognia_api/api.rb
CHANGED
@@ -29,15 +29,6 @@ module Incognia
|
|
29
29
|
SignupAssessment.from_hash(response.body) if response.success?
|
30
30
|
end
|
31
31
|
|
32
|
-
def get_signup_assessment(signup_id:)
|
33
|
-
response = connection.request(
|
34
|
-
:get,
|
35
|
-
"v2/onboarding/signups/#{signup_id}"
|
36
|
-
)
|
37
|
-
|
38
|
-
SignupAssessment.from_hash(response.body) if response.success?
|
39
|
-
end
|
40
|
-
|
41
32
|
def register_login(installation_id:, account_id:, **opts)
|
42
33
|
params = {
|
43
34
|
type: :login,
|
@@ -55,11 +46,16 @@ module Incognia
|
|
55
46
|
LoginAssessment.from_hash(response.body) if response.success?
|
56
47
|
end
|
57
48
|
|
58
|
-
def register_feedback(event:,
|
49
|
+
def register_feedback(event:, occurred_at: nil, expires_at: nil, timestamp: nil, **ids)
|
50
|
+
if !timestamp.nil?
|
51
|
+
warn("Deprecation warning: use occurred_at instead of timestamp")
|
52
|
+
end
|
53
|
+
|
59
54
|
timestamp = timestamp.strftime('%s%L') if timestamp.respond_to? :strftime
|
55
|
+
occurred_at = occurred_at.to_datetime.rfc3339 if occurred_at.respond_to? :to_datetime
|
60
56
|
expires_at = expires_at.to_datetime.rfc3339 if expires_at.respond_to? :to_datetime
|
61
57
|
|
62
|
-
params = { event: event, timestamp: timestamp&.to_i, expires_at: expires_at }.compact
|
58
|
+
params = { event: event, timestamp: timestamp&.to_i, occurred_at: occurred_at, expires_at: expires_at }.compact
|
63
59
|
params.merge!(ids)
|
64
60
|
|
65
61
|
response = connection.request(
|
data/lib/incognia_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: incognia_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guilherme Cavalcanti
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
|
-
rubygems_version: 3.
|
95
|
+
rubygems_version: 3.4.19
|
96
96
|
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: Official Ruby lib for communicating with Incognia API
|