twilio-ruby 7.2.1 → 7.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +74 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/call/transcription.rb +5 -599
- data/lib/twilio-ruby/rest/api/v2010/account/message.rb +2 -2
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload/data.rb +200 -0
- data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +22 -1
- data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +303 -0
- data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +626 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb +229 -0
- data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +593 -0
- data/lib/twilio-ruby/rest/assistants/v1/policy.rb +264 -0
- data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +264 -0
- data/lib/twilio-ruby/rest/assistants/v1/session.rb +328 -0
- data/lib/twilio-ruby/rest/assistants/v1/tool.rb +549 -0
- data/lib/twilio-ruby/rest/assistants/v1.rb +100 -0
- data/lib/twilio-ruby/rest/{preview_iam.rb → assistants.rb} +1 -1
- data/lib/twilio-ruby/rest/assistants_base.rb +38 -0
- data/lib/twilio-ruby/rest/client.rb +8 -3
- data/lib/twilio-ruby/rest/content/v1/content/approval_fetch.rb +11 -11
- data/lib/twilio-ruby/rest/content/v1/content.rb +167 -4
- data/lib/twilio-ruby/rest/flex_api/v2/flex_user.rb +81 -1
- data/lib/twilio-ruby/rest/iam/v1/api_key.rb +270 -0
- data/lib/twilio-ruby/rest/iam/v1/get_api_keys.rb +223 -0
- data/lib/twilio-ruby/rest/iam/v1/new_api_key.rb +177 -0
- data/lib/twilio-ruby/rest/iam/v1.rb +61 -0
- data/lib/twilio-ruby/rest/iam.rb +6 -0
- data/lib/twilio-ruby/rest/{preview_iam_base.rb → iam_base.rb} +10 -5
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +60 -12
- data/lib/twilio-ruby/rest/intelligence/v2/operator_type.rb +1 -1
- data/lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb +16 -3
- data/lib/twilio-ruby/rest/intelligence/v2.rb +1 -1
- data/lib/twilio-ruby/rest/marketplace/v1/installed_add_on/installed_add_on_usage.rb +16 -29
- data/lib/twilio-ruby/rest/marketplace/v1/module_data_management.rb +46 -20
- data/lib/twilio-ruby/rest/marketplace/v1/referral_conversion.rb +199 -0
- data/lib/twilio-ruby/rest/marketplace/v1.rb +7 -1
- data/lib/twilio-ruby/rest/messaging/v1/external_campaign.rb +4 -1
- data/lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb +40 -0
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in.rb +10 -10
- data/lib/twilio-ruby/rest/numbers/v1/porting_port_in_phone_number.rb +24 -17
- data/lib/twilio-ruby/rest/numbers/v1/porting_portability.rb +7 -7
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb +3 -3
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb +1 -1
- data/lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_fetch.rb +3 -3
- data/lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb +96 -0
- data/lib/twilio-ruby/rest/numbers/v1.rb +2 -2
- data/lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb +277 -0
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb +8 -5
- data/lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/supporting_document.rb +7 -0
- data/lib/twilio-ruby/rest/numbers/v2.rb +15 -0
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +2 -2
- data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_real_time_statistics.rb +1 -1
- data/lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb +12 -3
- data/lib/twilio-ruby/rest/verify/v2/service.rb +4 -4
- data/lib/twilio-ruby/version.rb +1 -1
- data/twilio-ruby.gemspec +2 -1
- metadata +23 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a53ce791923b82cf98d5e73e79ad205845ccb0e
|
4
|
+
data.tar.gz: b0939883d6aecdb2bab7b837305c01f8b7701ac4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 748ddf00fa7eab5318808b35f3ad873c2fddbb71e5b8b0c466cf67761d896a1f32b0f75ddf8cfaabbdd0eb8d61ae98d1ce2ca9eceb6c4965c3a4c2d7ad8a5a49
|
7
|
+
data.tar.gz: 21168d4b82b52ee9d2a6c9312727a0f3cfa014b90dc25212dc7d54e670f14354c220b4e85a6e1cb37e1e3536512497c5589739182336b01588e17e0c6fc69f5c
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,80 @@
|
|
1
1
|
twilio-ruby changelog
|
2
2
|
=====================
|
3
3
|
|
4
|
+
[2024-09-18] Version 7.3.1
|
5
|
+
--------------------------
|
6
|
+
**Intelligence**
|
7
|
+
- Remove public from operator_type
|
8
|
+
- Update operator_type to include general-availablity and deprecated
|
9
|
+
|
10
|
+
**Numbers**
|
11
|
+
- Remove beta flag for bundle clone API
|
12
|
+
|
13
|
+
|
14
|
+
[2024-09-05] Version 7.3.0
|
15
|
+
--------------------------
|
16
|
+
**Iam**
|
17
|
+
- updated library_visibility public for new public apikeys
|
18
|
+
|
19
|
+
**Numbers**
|
20
|
+
- Add new field in Error Codes for Regulatory Compliance.
|
21
|
+
- Change typing of Port In Request date_created field to date_time instead of date **(breaking change)**
|
22
|
+
|
23
|
+
|
24
|
+
[2024-08-26] Version 7.2.4
|
25
|
+
--------------------------
|
26
|
+
**Library - Chore**
|
27
|
+
- [PR #729](https://github.com/twilio/twilio-ruby/pull/729): remove preview_iam reference. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
|
28
|
+
- [PR #727](https://github.com/twilio/twilio-ruby/pull/727): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
29
|
+
- [PR #726](https://github.com/twilio/twilio-ruby/pull/726): bug fix. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
30
|
+
- [PR #725](https://github.com/twilio/twilio-ruby/pull/725): fix documentation link. Thanks to [@manisha1997](https://github.com/manisha1997)!
|
31
|
+
|
32
|
+
**Api**
|
33
|
+
- Update documentation of `error_code` and `error_message` on the Message resource.
|
34
|
+
- Remove generic parameters from `transcription` resource
|
35
|
+
- Added public documentation for Payload Data retrieval API
|
36
|
+
|
37
|
+
**Flex**
|
38
|
+
- Adding update Flex User api
|
39
|
+
|
40
|
+
**Insights**
|
41
|
+
- Added 'branded', 'business_profile' and 'voice_integrity' fields in List Call Summary
|
42
|
+
|
43
|
+
**Intelligence**
|
44
|
+
- Add `words` array information to the Sentences v2 entity.
|
45
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Operator Results.
|
46
|
+
- Change the path parameter when fetching an `/OperatorType/{}` from `sid<EY>` to `string` to support searching by SID or by name
|
47
|
+
- Add `X-Rate-Limit-Limit`, `X-Rate-Limit-Remaining`, and `X-Rate-Limit-Config` headers for Transcript and Service endpoints.
|
48
|
+
|
49
|
+
**Messaging**
|
50
|
+
- Adds two new channel senders api to add/remove channel senders to/from a messaging service
|
51
|
+
- Extend ERC api to accept an optional attribute in request body to indicate CNP migration for an ERC
|
52
|
+
|
53
|
+
**Numbers**
|
54
|
+
- Modify visibility to public in bundle clone API
|
55
|
+
- Add `port_date` field to Port In Request and Port In Phone Numbers Fetch APIs
|
56
|
+
- Change properties docs for port in phone numbers api
|
57
|
+
- Add is_test body param to the Bundle Create API
|
58
|
+
- Change properties docs for port in api
|
59
|
+
|
60
|
+
**Trusthub**
|
61
|
+
- Add new field in themeSetId in compliance_inquiry.
|
62
|
+
|
63
|
+
**Verify**
|
64
|
+
- Update `custom_code_enabled` description on verification docs
|
65
|
+
|
66
|
+
|
67
|
+
[2024-07-02] Version 7.2.3
|
68
|
+
--------------------------
|
69
|
+
**Rubygems**
|
70
|
+
- Add docs link to gemspec
|
71
|
+
|
72
|
+
[2024-07-02] Version 7.2.2
|
73
|
+
--------------------------
|
74
|
+
**Intelligence**
|
75
|
+
- Deprecate account flag api.twilio-intelligence.v2
|
76
|
+
|
77
|
+
|
4
78
|
[2024-06-27] Version 7.2.1
|
5
79
|
--------------------------
|
6
80
|
**Api**
|
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.
|
42
|
+
gem 'twilio-ruby', '~> 7.3.1'
|
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.
|
48
|
+
gem install twilio-ruby -v 7.3.1
|
49
49
|
```
|
50
50
|
|
51
51
|
To build and install the development branch yourself from the latest source:
|