plivo 4.61.0 → 4.61.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
  SHA1:
3
- metadata.gz: dad0624d86cfb72024e70b16d27c133c64fc2b60
4
- data.tar.gz: e254b099152b86cee6aacfd702b9abd899e5a18b
3
+ metadata.gz: 0200b603736dd9a97b9ae182f4cbb91a707ebb7d
4
+ data.tar.gz: 20557f63e0102cced16783b2922729d6c30b43fb
5
5
  SHA512:
6
- metadata.gz: 96b812d2c9f73e740b410294b417040d7e948c0347cc42d00228bd893189dcbe6ea1d5a701891cd36c85baf33b11488f07931d60a6a8d8052c2c519ac4b350d8
7
- data.tar.gz: 1a08ab72fae1ccbf1ae35ef450790264402023392e718b04314fef4174621b56a068cf12fb8685055f94a75cba87b3335da9f96b896585a681f24d55808e0959
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
@@ -9,7 +9,7 @@ The Plivo Ruby SDK makes it simpler to integrate communications into your Ruby a
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'plivo', '>= 4.61.0'
12
+ gem 'plivo', '>= 4.61.1'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.61.0".freeze
2
+ VERSION = "4.61.1".freeze
3
3
  end
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.0
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-09-30 00:00:00.000000000 Z
11
+ date: 2024-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday