persona-ruby 0.1.1 → 0.1.2
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/lib/persona-ruby/actions/inquiries.rb +6 -2
- data/lib/persona-ruby/version.rb +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: 5cc7f275fc525eeb0e36145989d91d6aabfb6b7900b95e98093e534d505ded11
|
4
|
+
data.tar.gz: 8525817da267ab069a01a1e19767e1937a0d3624173b845ef7b6d4df59292674
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 748fb5eef608c43ce65afae5b5ec840ecff58833793dc2b3054662cdfa2079f6560d72ddeb460ef1a2018d8cd44ebb0beb7422308f8d7ea4e7c9e3715c917083
|
7
|
+
data.tar.gz: 8cc8a748f4b55b614ea6df49a2bac17f080dca07e0075d18de36a118866be786f80aa47b06194eed45fafe31bd8c6ab336261d106ae355ddca8bcc64649c0f72
|
@@ -3,8 +3,8 @@
|
|
3
3
|
module Persona
|
4
4
|
module Actions
|
5
5
|
module Inquiries
|
6
|
-
def inquiry_list
|
7
|
-
connection.get("inquiries",
|
6
|
+
def inquiry_list(params = {})
|
7
|
+
connection.get("inquiries", params)
|
8
8
|
end
|
9
9
|
|
10
10
|
def inquiry_get(id)
|
@@ -22,6 +22,10 @@ module Persona
|
|
22
22
|
def inquiry_delete(id)
|
23
23
|
connection.delete("inquiries/#{id}", {})
|
24
24
|
end
|
25
|
+
|
26
|
+
def inquiry_one_time_link(id, options = {})
|
27
|
+
connection.post("inquiries/#{id}/generate-one-time-link", options)
|
28
|
+
end
|
25
29
|
end
|
26
30
|
end
|
27
31
|
end
|
data/lib/persona-ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: persona-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ravi Trivedi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-04-
|
12
|
+
date: 2024-04-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|