File tree 5 files changed +20
-9
lines changed
5 files changed +20
-9
lines changed Original file line number Diff line number Diff line change
1
+ # 7.29.0
2
+
3
+ * Adds ` max_bitrate ` as an option to the ` Video::Archives#start ` method. [ #321 ] ( https://github.com/Vonage/vonage-ruby-sdk/pull/321 )
4
+
1
5
# 7.28.0
2
6
3
7
* Adds templates and template fragments to the Verify v2 implementation. [ #318 ] ( https://github.com/Vonage/vonage-ruby-sdk/pull/318 )
Original file line number Diff line number Diff line change @@ -28,16 +28,19 @@ def camelcase(hash)
28
28
'remove_stream' ,
29
29
'screenshare_type' ,
30
30
'session_id' ,
31
+ 'output_mode' ,
31
32
'stream_mode' ,
32
33
'archive_mode' ,
34
+ 'multi_archive_tag' ,
33
35
'language_code' ,
34
36
'max_duration' ,
35
37
'partial_captions' ,
36
38
'status_callback_url' ,
37
39
'audio_rate' ,
38
40
'phone_number' ,
39
41
'hashed_phone_number' ,
40
- 'max_age'
42
+ 'max_age' ,
43
+ 'max_bitrate'
41
44
]
42
45
hash . transform_keys do |k |
43
46
if exceptions . include? ( k . to_s )
Original file line number Diff line number Diff line change 1
1
# typed: strong
2
2
3
3
module Vonage
4
- VERSION = '7.28 .0'
4
+ VERSION = '7.29 .0'
5
5
end
Original file line number Diff line number Diff line change @@ -45,19 +45,21 @@ def info(archive_id:)
45
45
#
46
46
# @param [required, String] :session_id
47
47
#
48
- # @param [optional, String] :hasAudio
48
+ # @param [optional, String] :has_audio
49
49
#
50
- # @param [optional, String] :hasVideo
50
+ # @param [optional, String] :has_video
51
51
#
52
52
# @param [optional, String] :name
53
53
#
54
- # @param [optional, String] :outputMode
54
+ # @param [optional, String] :output_mode
55
55
#
56
56
# @param [optional, String] :resolution
57
57
#
58
- # @param [optional, String] :streamMode
58
+ # @param [optional, String] :stream_mode
59
59
#
60
- # @param [optional, String] :multiArchiveTag
60
+ # @param [optional, String] :multi_archive_tag
61
+ #
62
+ # @param [optional, String] :max_bitrate
61
63
#
62
64
# @param [optional, Hash] :layout
63
65
#
Original file line number Diff line number Diff line change @@ -43,15 +43,17 @@ def test_start_method_with_optional_params
43
43
request_params = {
44
44
sessionId : video_session_id ,
45
45
resolution : '640x480' ,
46
- streamMode : 'auto'
46
+ streamMode : 'auto' ,
47
+ maxBitrate : 200000
47
48
}
48
49
49
50
stub_request ( :post , uri ) . with ( body : request_params ) . to_return ( response )
50
51
51
52
assert_kind_of Vonage ::Response , archives . start (
52
53
session_id : video_session_id ,
53
54
resolution : '640x480' ,
54
- stream_mode : 'auto'
55
+ stream_mode : 'auto' ,
56
+ max_bitrate : 200000
55
57
)
56
58
end
57
59
You can’t perform that action at this time.
0 commit comments