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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 150a9a5019bc8edcee52a97ca0827e550bcdddf331c53a5d30b93d9ee34c654a
4
- data.tar.gz: 2e426bb06a6b0f48215bd6fc65f14f16bbe89533ef43268477345d6ee1ca10c4
3
+ metadata.gz: 28dadc05eb922f886ce714f7cdeea5500441e1b218527b5c0876938a13745555
4
+ data.tar.gz: cfca8d3aa6ffd7b11896c7c4ad01fbeea19e5e8eb9d4338bf74f99a599c36fb0
5
5
  SHA512:
6
- metadata.gz: ccb948349018b0b7d6cca610f450c7ec73a14bb36043d1470186178b7a009f6e3c064812bff3016df0d5366b017e15bf1a58dd6226cca2feab3d91fa283e4d58
7
- data.tar.gz: fe4a77185f3c88c1cde260a55ed9f238b7fc909bcdf57746eb9bd3023ac9ff08f178c6d8c6bd74451e8a8f7c6df79dd5386b46efbf10f538a194bef2570d3ecf
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
- :last_used,
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/popular-guides/smart-links).
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'
@@ -51,7 +51,9 @@ module Passage
51
51
  :cred_id,
52
52
  :friendly_name,
53
53
  :usage_count,
54
- :last_used,
54
+ :updated_at,
55
+ :created_at,
56
+ :last_login_at,
55
57
  keyword_init: true
56
58
 
57
59
  COOKIE_STRATEGY = 0
@@ -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
- last_used: device["last_used"]
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'passageidentity'
3
- s.version = '0.0.7'
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.7
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-06-01 00:00:00.000000000 Z
11
+ date: 2022-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday