plivo 4.61.4 → 4.62.0

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: 32adb2993a31e298a5739fdbf41b390c3cc16f68
4
- data.tar.gz: 8b41028cfec6b74dfb46d316e7f70949392ffc46
3
+ metadata.gz: 1851463b5af5e5e2c6ebca819fd78d52f8ee2212
4
+ data.tar.gz: b5a6fa1efa1f0164cf695ae465c19ab5b27581a7
5
5
  SHA512:
6
- metadata.gz: eae1ac6873f457d79736b9f9492bab0085533f55c22d52d3dfea90c6de394d502f0fc8002cf6cf929e85ff308294820ed0c6761a0841194142b7931a6da10b63
7
- data.tar.gz: '018aadb508be8ed0719d036dc7fa66476509a4a6b76cac184ed3f6f8843e91f5f792cc3e1f767c86061aaa4bfe30a3c7095ee996f3dfbb599c17406a29f35bc7'
6
+ metadata.gz: 83cb052981fa58a65914debc7169b3302ed30b1ef9475d24a957c24a5dbbd789b82bf82c932bcf9550cb6e8f92fc0fd229ab689647d55fc2e91c37157cb96605
7
+ data.tar.gz: 903a98bdf2371da100c3d86f132ab9a7d5514abc3dd3e77639de946f4ff834775fae1d1269dc2b43fbef337776ca988817d6cf1e4356acff8e5add3207745fdc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## [4.62.0](https://github.com/plivo/plivo-ruby/tree/v4.62.0) (2025-04-30)
4
+ **Feature - New Param added for Start Recording API.**
5
+ - Support `record_channel_type` in Start Recording API and `recordChannelType` in Record XML.
6
+
3
7
  ## [4.61.4](https://github.com/plivo/plivo-ruby/tree/v4.61.4) (2025-02-25)
4
8
  **Feature - Supporting parameter_name in WhatsApp Template .**
5
9
  - Supporting `parameter_name` in WhatsApp Template .
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.4'
12
+ gem 'plivo', '>= 4.62.0'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -99,6 +99,12 @@ module Plivo
99
99
  params[:transcription_type] = options[:transcription_type]
100
100
  end
101
101
 
102
+ if options.key?(:record_channel_type) &&
103
+ valid_param?(:record_channel_type, options[:record_channel_type],
104
+ [String, Symbol], true)
105
+ params[:record_channel_type] = options[:record_channel_type]
106
+ end
107
+
102
108
  perform_action('Record', 'POST', params, true)
103
109
  end
104
110
 
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.61.4".freeze
2
+ VERSION = "4.62.0".freeze
3
3
  end
@@ -7,7 +7,7 @@ module Plivo
7
7
  startOnDialAnswer redirect fileFormat
8
8
  callbackUrl callbackMethod
9
9
  transcriptionType transcriptionUrl
10
- transcriptionMethod]
10
+ transcriptionMethod recordChannelType]
11
11
 
12
12
  def initialize(attributes = {})
13
13
  super(nil, attributes)
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
4
+ version: 4.62.0
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: 2025-02-25 00:00:00.000000000 Z
11
+ date: 2025-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday