passageidentity 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/lib/passageidentity/client.rb +3 -1
- data/lib/passageidentity/user_api.rb +3 -1
- data/passageidentity.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28dadc05eb922f886ce714f7cdeea5500441e1b218527b5c0876938a13745555
|
|
4
|
+
data.tar.gz: cfca8d3aa6ffd7b11896c7c4ad01fbeea19e5e8eb9d4338bf74f99a599c36fb0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b94421e84f5249bb7a04d3b1d0faf7a034a02a8608210a9c2457e9f62c960ff9cf898405ab8819433cbdcf868f07c7180e57d0e9d4d8c5afb3a1d71e8311548b
|
|
7
|
+
data.tar.gz: 76948a35ec51da50061f2e3fbef13f8df68f99994635d60bcb3d301d5bd9c89b07f50739b0e056a9b61ce0606a56394009a5924b936af4c9a137979674f70859
|
data/README.md
CHANGED
|
@@ -184,7 +184,9 @@ The information available in the array of Passage Device struct returned by Pass
|
|
|
184
184
|
:cred_id,
|
|
185
185
|
:friendly_name,
|
|
186
186
|
:usage_count,
|
|
187
|
-
:
|
|
187
|
+
:updated_at,
|
|
188
|
+
:created_at,
|
|
189
|
+
:last_login_at,
|
|
188
190
|
|
|
189
191
|
```
|
|
190
192
|
|
|
@@ -205,7 +207,7 @@ end
|
|
|
205
207
|
|
|
206
208
|
## Create an Embeddable Magic Link
|
|
207
209
|
|
|
208
|
-
To create a magic link, you should use the `create_magic_link` method. You can check out our guide on embeddable magic links in our [docs](https://docs.passage.id/
|
|
210
|
+
To create a magic link, you should use the `create_magic_link` method. You can check out our guide on embeddable magic links in our [docs](https://docs.passage.id/guides/embedded-links).
|
|
209
211
|
|
|
210
212
|
```ruby
|
|
211
213
|
require 'passageidentity'
|
|
@@ -227,7 +227,9 @@ module Passage
|
|
|
227
227
|
cred_id: device["cred_id"],
|
|
228
228
|
friendly_name: device["friendly_name"],
|
|
229
229
|
usage_count: device["usage_count"],
|
|
230
|
-
|
|
230
|
+
updated_at: device["updated_at"],
|
|
231
|
+
created_at: device["created_at"],
|
|
232
|
+
last_login_at: device["last_login_at"]
|
|
231
233
|
)
|
|
232
234
|
)
|
|
233
235
|
end
|
data/passageidentity.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'passageidentity'
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.8'
|
|
4
4
|
s.summary = 'Passage SDK for biometric authentication'
|
|
5
5
|
s.description =
|
|
6
6
|
'Enables verification of server-side authentication and user management for applications using Passage'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: passageidentity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Passage Identity
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-07-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|