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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/plivo/resources/calls.rb +6 -0
- data/lib/plivo/version.rb +1 -1
- data/lib/plivo/xml/record.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: 1851463b5af5e5e2c6ebca819fd78d52f8ee2212
|
4
|
+
data.tar.gz: b5a6fa1efa1f0164cf695ae465c19ab5b27581a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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
data/lib/plivo/xml/record.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.
|
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-
|
11
|
+
date: 2025-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|