twilio-ruby 5.6.2 → 5.6.3

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: f8a92e178cfc380c3fc508787840bf7988811dab
4
- data.tar.gz: 597a1df255cfd8542a868c06e5519d1576f0d80d
3
+ metadata.gz: b58ab12b92c6a42201132493c55e77d503fb311e
4
+ data.tar.gz: bd087c2441445e125f59d9f229724f1b2680884e
5
5
  SHA512:
6
- metadata.gz: d3ac5a9a007c736cc73ead9711c5790fe51d9ad7750f4b9f82e55c59f1c6f9af3682d1710069d594c4ca74b1afadf0c5bf41c9e9ab64c00ee5f94d4add8ba3fa
7
- data.tar.gz: 31cb8f8246a185a8bad889687e4f321df5a32e6307431fb8902f7be355e27dded56856a2a9be1b42fc2cd29402dad60d7826d8d115f417a0f89d64b54449dcbc
6
+ metadata.gz: 6f096dd2c3037026e32e2aa16962891cd0fdea62d33f5f0841d84f68aa872a93be876f62ba0f04520cf01c4eef50a5592bb9809c0d777e49348d068b4e404679
7
+ data.tar.gz: 84a03bbc531fc589e11716a3ba7c66afbb2eb1aeafe7415b2e40f614ee6ac5d9130aff8e934bbe2e344590df45ad77680cfe8884b7e056e104841524ae089feb
data/CHANGES.md CHANGED
@@ -1,6 +1,15 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2018-02-09] Version 5.6.3
5
+ ---------------------------
6
+ **Api**
7
+ - Add `AnnounceUrl` and `AnnounceMethod` params for conference announce
8
+
9
+ **Chat**
10
+ - Add support to looking up user channels by identity in v1
11
+
12
+
4
13
  [2018-01-30] Version 5.6.2
5
14
  ---------------------------
6
15
  **Api**
data/README.md CHANGED
@@ -27,13 +27,13 @@ in-line code documentation here in the library.
27
27
  To install using [Bundler][bundler] grab the latest stable version:
28
28
 
29
29
  ```ruby
30
- gem 'twilio-ruby', '~> 5.6.2'
30
+ gem 'twilio-ruby', '~> 5.6.3'
31
31
  ```
32
32
 
33
33
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
34
34
 
35
35
  ```bash
36
- gem install twilio-ruby -v 5.6.2
36
+ gem install twilio-ruby -v 5.6.3
37
37
  ```
38
38
 
39
39
  To build and install the development branch yourself from the latest source:
@@ -237,9 +237,15 @@ module Twilio
237
237
  ##
238
238
  # Update the ConferenceInstance
239
239
  # @param [conference.UpdateStatus] status The status
240
+ # @param [String] announce_url The announce_url
241
+ # @param [String] announce_method The announce_method
240
242
  # @return [ConferenceInstance] Updated ConferenceInstance
241
- def update(status: :unset)
242
- data = Twilio::Values.of({'Status' => status, })
243
+ def update(status: :unset, announce_url: :unset, announce_method: :unset)
244
+ data = Twilio::Values.of({
245
+ 'Status' => status,
246
+ 'AnnounceUrl' => announce_url,
247
+ 'AnnounceMethod' => announce_method,
248
+ })
243
249
 
244
250
  payload = @version.update(
245
251
  'POST',
@@ -392,9 +398,11 @@ module Twilio
392
398
  ##
393
399
  # Update the ConferenceInstance
394
400
  # @param [conference.UpdateStatus] status The status
401
+ # @param [String] announce_url The announce_url
402
+ # @param [String] announce_method The announce_method
395
403
  # @return [ConferenceInstance] Updated ConferenceInstance
396
- def update(status: :unset)
397
- context.update(status: status, )
404
+ def update(status: :unset, announce_url: :unset, announce_method: :unset)
405
+ context.update(status: status, announce_url: announce_url, announce_method: announce_method, )
398
406
  end
399
407
 
400
408
  ##
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '5.6.2'
2
+ VERSION = '5.6.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.2
4
+ version: 5.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-31 00:00:00.000000000 Z
11
+ date: 2018-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt