persona_api 0.3.0 → 0.3.1

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: 22a3768e6cb6a14d5af54a64196e8c5f5df453967f7b5646a0692e6ffda3fcb2
4
- data.tar.gz: ea457502f6813d80e7da46b965c846d806e14ea2b3e6597b6df0f8154eca95ad
3
+ metadata.gz: 21804f1ba92f091e929df122f5e8b629d9b531aa28c1b97d7deb1087412b8993
4
+ data.tar.gz: 34b789f47efe266d02401b23af54a2dc82a8336c80b64bca9bfb23349e47cb1a
5
5
  SHA512:
6
- metadata.gz: d27ac09c8a2fc5933af069fb71c6ec4fcf18dcdf1e234086f178bf9b9304b30ba9dd71bb2dcb71b68f38207e5462e47ebfbe7b78fa83f96af8ea0353310e3f53
7
- data.tar.gz: aa922090b50b3007888abc6c786ba314fc829f9baa8bfec2bce081c7ebe25f65103b3142a6842edfafe36c1a17a8a2cd69997df219abdc221c35678477cf9235
6
+ metadata.gz: 5d8ec8ddaf0a51367e54024dde0aa831950a85bc3154406c3107f527a2f6d7c1b2b33ccb368d7994bf2de275989c4607acb1509095511d60e406bb6b125a2cd6
7
+ data.tar.gz: b1059f4cad1a3023fa6f0f2adebce6efc81e61c9e32231f8a1256622980796431c35dd3a42c748a26cd78eec108106003d52625ba7afc00006e36c9ad599bafe
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ == [0.3.1] - 2022-12-06
2
+
3
+ * DB & GovID verification bug fixes
4
+
1
5
  == [0.3.0] - 2022-11-07
2
6
 
3
7
  * Add Transactions Endpoint
@@ -10,8 +10,8 @@ module PersonaApi
10
10
  DatabaseVerification.new get_request("verification/databases/#{ver_id}").body.dig("data")
11
11
  end
12
12
 
13
- def submit(ver_id:, **attributes)
14
- DatabaseVerification.new post_request("verification/databases/#{ver_id}/submit", body: attributes).body.dig("data")
13
+ def submit(ver_id:)
14
+ DatabaseVerification.new post_request("verification/databases/#{ver_id}/submit").body.dig("data")
15
15
  end
16
16
  end
17
17
  end
@@ -10,8 +10,8 @@ module PersonaApi
10
10
  GovernmentIdVerification.new get_request("verification/government-ids/#{ver_id}").body.dig("data")
11
11
  end
12
12
 
13
- def submit(ver_id:, **attributes)
14
- GovernmentIdVerification.new post_request("verification/government-ids/#{ver_id}/submit", body: attributes).body.dig("data")
13
+ def submit(ver_id:)
14
+ GovernmentIdVerification.new post_request("verification/government-ids/#{ver_id}/submit").body.dig("data")
15
15
  end
16
16
  end
17
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PersonaApi
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: persona_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Griffith
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-06 00:00:00.000000000 Z
11
+ date: 2022-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday