twilio-ruby 7.2.0 → 7.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +25 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +901 -0
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +27 -0
- data/lib/twilio-ruby/rest/client.rb +5 -0
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +7 -7
- data/lib/twilio-ruby/rest/numbers/v1/{porting_webhook_configuration_fetch.rb → webhook.rb} +20 -20
- data/lib/twilio-ruby/rest/numbers/v1.rb +6 -6
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/regulation.rb +24 -7
- data/lib/twilio-ruby/rest/preview_iam.rb +6 -0
- data/lib/twilio-ruby/rest/preview_iam_base.rb +33 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +89 -14
- data/lib/twilio-ruby/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6dbea59ef4b7192140ee2e54181fdfcb9878d66c
|
4
|
+
data.tar.gz: d9da33b2d489e04c31bee083d396839cf0f6a5ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 457f387633dac16d00ba8f9c4ec6e4c2bf19d4d12d15c6df0f7bcf056dbd94f110fc717e28dbb178b8afe0a28c891fe01f3ae58588c17b0dc69610e58df132c9
|
7
|
+
data.tar.gz: 971756f9b9cf1b60059cc5f9e584378d46d27b01ddd08841901f9801ba32cddf615c1b2504272e9199ad1d3666a258814ec64648acbd1ec8410702f597575f9e
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2024-07-02] Version 7.2.2
|
5
|
+
--------------------------
|
6
|
+
**Intelligence**
|
7
|
+
- Deprecate account flag api.twilio-intelligence.v2
|
8
|
+
|
9
|
+
|
10
|
+
[2024-06-27] Version 7.2.1
|
11
|
+
--------------------------
|
12
|
+
**Api**
|
13
|
+
- Add `transcription` resource
|
14
|
+
- Add beta feature request managed cert
|
15
|
+
|
16
|
+
**Flex**
|
17
|
+
- Changed mount name for flex_team v2 api
|
18
|
+
|
19
|
+
**Intelligence**
|
20
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` as Response Headers to Operator resources
|
21
|
+
|
22
|
+
**Numbers**
|
23
|
+
- Added include_constraints query parameter to the Regulations API
|
24
|
+
|
25
|
+
**Twiml**
|
26
|
+
- Add support for `<Transcription>` noun
|
27
|
+
|
28
|
+
|
4
29
|
[2024-06-18] Version 7.2.0
|
5
30
|
--------------------------
|
6
31
|
**Library - Chore**
|
data/README.md
CHANGED
@@ -39,13 +39,13 @@ This library supports the following Ruby implementations:
|
|
39
39
|
To install using [Bundler][bundler] grab the latest stable version:
|
40
40
|
|
41
41
|
```ruby
|
42
|
-
gem 'twilio-ruby', '~> 7.2.
|
42
|
+
gem 'twilio-ruby', '~> 7.2.2'
|
43
43
|
```
|
44
44
|
|
45
45
|
To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
|
46
46
|
|
47
47
|
```bash
|
48
|
-
gem install twilio-ruby -v 7.2.
|
48
|
+
gem install twilio-ruby -v 7.2.2
|
49
49
|
```
|
50
50
|
|
51
51
|
To build and install the development branch yourself from the latest source:
|