plivo 4.25.0 → 4.25.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: fbaf4fabdd81296b5818890fc82e5d651ba24e8b
4
- data.tar.gz: 9943aaacb63c0022e3052533cc951d72f30e2e1e
3
+ metadata.gz: 3f443da345e9dd7008e4da7feb9fb380aa600d2d
4
+ data.tar.gz: f0a9c52fc349c4741cb0efd72bff4d1ffa72d35d
5
5
  SHA512:
6
- metadata.gz: affc19347cdbec6fa100c74c058588a9f69c1225c9c496ebf506d05cb10cf2ff917a0b4d53a2c850756d9a3ed93e3df1bdb0954bc0593e8a8e7de5f5b9cba9c0
7
- data.tar.gz: 3d357b1f45ff1949d6bb2e6d0cc9cdadd775366c62a534d602c5c448ea25d9859c193ffcd17593e6becbbabde923f96912adf63e0a47c1ae615e5a51b6d7211d
6
+ metadata.gz: f2bf6055224a1feb6411d683ed13100681b0350e60ab3d76869a8d7cd97dacddbacb16522e8ba6daa685c80792d7d0d13c33f0bf14cf6ca3613eec4638625d8f
7
+ data.tar.gz: c8c2e8e68cd4c71a4a416f70883b99e3ee73aa2a6ebe4cc3a518382f55f48353dfb89d19b0c3e144c2046c2d3f906a9e82738db5bb9d02341e2e0ed30807919c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## [4.25.1](https://github.com/plivo/plivo-ruby/tree/v4.25.1) (2022-02-02)
4
+ **Bugfix - Recording**
5
+ - Fix for Start Recording API response issue
6
+
3
7
  ## [4.25.0](https://github.com/plivo/plivo-ruby/tree/v4.25.0) (2022-01-27)
4
8
  **Features - MPCStartCallRecording**
5
9
  - parameter name change from statusCallback to recordingCallback
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.25.0'
12
+ gem 'plivo', '>= 4.25.1'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -492,7 +492,11 @@ module Plivo
492
492
  # @option options [String] :callback_method - The method which is used to invoke the callback_url URL. Defaults to POST.
493
493
  def record(call_uuid, options = nil)
494
494
  valid_param?(:call_uuid, call_uuid, [String, Symbol], true)
495
- Call.new(@_client, resource_id: call_uuid).record(options)
495
+ response = Call.new(@_client, resource_id: call_uuid).record(options)
496
+ return Base::Response.new(Hash["api_id" => response.api_id,
497
+ "recording_id" => response.recording_id,
498
+ "message" => response.message,
499
+ "url" => response.url])
496
500
  end
497
501
 
498
502
  # @param [String] call_uuid
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.25.0".freeze
2
+ VERSION = "4.25.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.25.0
4
+ version: 4.25.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: 2022-02-01 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday