plivo 4.61.0 → 4.61.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/lib/plivo/resources/verify_session.rb +4 -2
- data/lib/plivo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0200b603736dd9a97b9ae182f4cbb91a707ebb7d
|
4
|
+
data.tar.gz: 20557f63e0102cced16783b2922729d6c30b43fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4b500cd9846eb4cf8f5c14f3f375517dd7fd3104d0cdbbb44896402dc4af5875456a22428910a57d8d604c0619cc13feb2b2619b638e836d2594637d5f31e0d
|
7
|
+
data.tar.gz: 3fcb82f91c6eed1d784c02cf7c9c207f7e83a3a1b8ee25301e155d309ee30b6d28483102b60573a092328aed604f16de057c58a32dcd7939e00d729dc8609d94
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
# Change Log
|
2
|
+
## [4.61.1](https://github.com/plivo/plivo-ruby/tree/v4.61.1) (2024-10-10)
|
3
|
+
**Feature - Dtmf param in Create, Get and List Session**
|
4
|
+
- Support for the `dtmf` parameter in voice verify session request
|
5
|
+
- Added support for `dtmf` in GET and LIST verify session
|
6
|
+
|
2
7
|
## [4.61.0](https://github.com/plivo/plivo-ruby/tree/v4.61.0) (2024-09-30)
|
3
8
|
**Feature - Adding new param support for Number Masking session with single party **
|
4
9
|
- Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session
|
data/README.md
CHANGED
@@ -42,7 +42,7 @@ module Plivo
|
|
42
42
|
perform_get(session_uuid)
|
43
43
|
end
|
44
44
|
|
45
|
-
def create(app_uuid = nil, recipient = nil,channel = nil, url = nil, method = nil, locale=nil, brand_name=nil, app_hash=nil, code_length=nil)
|
45
|
+
def create(app_uuid = nil, recipient = nil,channel = nil, url = nil, method = nil, locale=nil, brand_name=nil, app_hash=nil, code_length=nil, dtmf=nil)
|
46
46
|
valid_param?(:app_uuid, app_uuid, [String, Symbol], false)
|
47
47
|
valid_param?(:recipient, recipient, [Integer, String, Symbol], true)
|
48
48
|
valid_param?(:channel, channel, [String, Symbol], false)
|
@@ -52,6 +52,7 @@ module Plivo
|
|
52
52
|
valid_param?(:brand_name, brand_name, [String, Symbol], false)
|
53
53
|
valid_param?(:app_hash, app_hash, [String, Symbol], false)
|
54
54
|
valid_param?(:code_length, code_length,[Integer,Symbol], false)
|
55
|
+
valid_param?(:dtmf, dtmf,[Integer,Symbol], false)
|
55
56
|
|
56
57
|
params = {
|
57
58
|
app_uuid: app_uuid,
|
@@ -62,7 +63,8 @@ module Plivo
|
|
62
63
|
locale: locale,
|
63
64
|
brand_name: brand_name,
|
64
65
|
app_hash: app_hash,
|
65
|
-
code_length: code_length
|
66
|
+
code_length: code_length,
|
67
|
+
dtmf:dtmf
|
66
68
|
}
|
67
69
|
perform_create(params)
|
68
70
|
end
|
data/lib/plivo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plivo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.61.
|
4
|
+
version: 4.61.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Plivo SDKs Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|