twilio-ruby 7.10.7 → 7.11.1
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/.github/workflows/test-and-deploy.yml +43 -67
- data/.gitignore +0 -1
- data/CHANGES.md +46 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +154 -0
- data/README.md +3 -3
- data/Rakefile +1 -1
- data/lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb +25 -6
- data/lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb +48 -12
- data/lib/twilio-ruby/rest/api/v2010/account/call.rb +6 -0
- data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +56 -2
- data/lib/twilio-ruby/rest/client.rb +0 -5
- data/lib/twilio-ruby/rest/content/v1/content/approval_create.rb +11 -1
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +10 -10
- data/lib/twilio-ruby/rest/conversations/v1/service/conversation/message.rb +10 -10
- data/lib/twilio-ruby/rest/conversations/v2/action.rb +2 -2
- data/lib/twilio-ruby/rest/conversations/v2/communication.rb +43 -21
- data/lib/twilio-ruby/rest/conversations/v2/configuration.rb +59 -21
- data/lib/twilio-ruby/rest/conversations/v2/conversation.rb +28 -28
- data/lib/twilio-ruby/rest/conversations/v2/operation.rb +10 -10
- data/lib/twilio-ruby/rest/conversations/v2/participant.rb +58 -58
- data/lib/twilio-ruby/rest/conversations/v2.rb +45 -45
- data/lib/twilio-ruby/rest/iam/v1/new_api_key.rb +2 -2
- data/lib/twilio-ruby/rest/iam/v1/o_auth_app.rb +15 -2
- data/lib/twilio-ruby/rest/iam_base.rb +6 -1
- data/lib/twilio-ruby/rest/insights/v1/call/call_summary.rb +7 -0
- data/lib/twilio-ruby/rest/insights/v1/call/event.rb +7 -0
- data/lib/twilio-ruby/rest/insights/v1/call_summaries.rb +7 -0
- data/lib/twilio-ruby/rest/insights/v3/metadata.rb +1 -1
- data/lib/twilio-ruby/rest/insights/v3/query.rb +1 -1
- data/lib/twilio-ruby/rest/insights/v3.rb +1 -1
- data/lib/twilio-ruby/rest/intelligence/v3/conversation.rb +8 -8
- data/lib/twilio-ruby/rest/intelligence/v3/rule_execution.rb +502 -0
- data/lib/twilio-ruby/rest/intelligence/v3.rb +6 -0
- data/lib/twilio-ruby/rest/knowledge/v2/chunk.rb +28 -0
- data/lib/twilio-ruby/rest/knowledge/v2/knowledge.rb +38 -0
- data/lib/twilio-ruby/rest/knowledge/v2/search.rb +8 -117
- data/lib/twilio-ruby/rest/knowledge/v2.rb +1 -2
- data/lib/twilio-ruby/rest/memory/v1/bulk.rb +9 -118
- data/lib/twilio-ruby/rest/memory/v1/conversation_summary.rb +13 -5
- data/lib/twilio-ruby/rest/memory/v1/data_mapping.rb +6 -12
- data/lib/twilio-ruby/rest/memory/v1/identifier.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/identity_resolution_setting.rb +11 -132
- data/lib/twilio-ruby/rest/memory/v1/import.rb +28 -5
- data/lib/twilio-ruby/rest/memory/v1/lookup.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/observation.rb +70 -18
- data/lib/twilio-ruby/rest/memory/v1/operation.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/profile.rb +2 -2
- data/lib/twilio-ruby/rest/memory/v1/recall.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/revision.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/store.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/trait.rb +1 -1
- data/lib/twilio-ruby/rest/memory/v1/trait_group.rb +56 -6
- data/lib/twilio-ruby/rest/memory/v1.rb +3 -46
- data/lib/twilio-ruby/rest/messaging/v1/brand_registration.rb +0 -18
- data/lib/twilio-ruby/rest/messaging/v2/channels_sender.rb +23 -4
- data/lib/twilio-ruby/rest/messaging/v3/typing_indicator.rb +4 -4
- data/lib/twilio-ruby/rest/numbers/v1/sms_verification.rb +231 -0
- data/lib/twilio-ruby/rest/numbers/v1/sms_verification_check.rb +238 -0
- data/lib/twilio-ruby/rest/numbers/v1/voice_verification.rb +245 -0
- data/lib/twilio-ruby/rest/numbers/v1/voice_verification_check.rb +224 -0
- data/lib/twilio-ruby/rest/numbers/v1.rb +24 -0
- data/lib/twilio-ruby/rest/{assistants/v1/session.rb → numbers/v2/caller_id.rb} +141 -127
- data/lib/twilio-ruby/rest/numbers/v2.rb +16 -0
- data/lib/twilio-ruby/rest/oauth/v2/authorize.rb +14 -2
- data/lib/twilio-ruby/rest/oauth/v2/oauth_authorization_server.rb +259 -0
- data/lib/twilio-ruby/rest/oauth/v2/token.rb +8 -2
- data/lib/twilio-ruby/rest/preview_iam/versionless/organization.rb +0 -19
- data/lib/twilio-ruby/rest/routes/v3/phone_number.rb +465 -0
- data/lib/twilio-ruby/rest/routes/v3.rb +50 -0
- data/lib/twilio-ruby/rest/routes_base.rb +6 -1
- data/lib/twilio-ruby/rest/trusthub/v1/a2p_brand_registration.rb +330 -0
- data/lib/twilio-ruby/rest/trusthub/v1/a2p_brand_registration_embedded_session.rb +233 -0
- data/lib/twilio-ruby/rest/trusthub/v1/a2p_campaign_registration.rb +321 -0
- data/lib/twilio-ruby/rest/trusthub/v1/a2p_campaign_registration_embedded_session.rb +233 -0
- data/lib/twilio-ruby/rest/trusthub/v1/customer_profiles_provisional_copy.rb +445 -0
- data/lib/twilio-ruby/rest/trusthub/v1/trust_products_provisional_copy.rb +445 -0
- data/lib/twilio-ruby/rest/trusthub/v1.rb +74 -0
- data/lib/twilio-ruby/rest/voice/v2/account_default_configuration.rb +556 -0
- data/lib/twilio-ruby/rest/voice/v2/configuration/default.rb +356 -0
- data/lib/twilio-ruby/rest/voice/v2/configuration.rb +412 -0
- data/lib/twilio-ruby/rest/voice/v2/recording.rb +616 -0
- data/lib/twilio-ruby/rest/voice/v2/transcription.rb +591 -0
- data/lib/twilio-ruby/rest/voice/v2/type.rb +518 -0
- data/lib/twilio-ruby/rest/voice/v2.rb +141 -0
- data/lib/twilio-ruby/rest/voice_base.rb +5 -0
- data/lib/twilio-ruby/twiml/voice_response.rb +6 -68
- data/lib/twilio-ruby/version.rb +1 -1
- data/twilio-ruby.gemspec +1 -1
- metadata +33 -21
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb +0 -558
- data/lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb +0 -558
- data/lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb +0 -431
- data/lib/twilio-ruby/rest/assistants/v1/assistant/message.rb +0 -296
- data/lib/twilio-ruby/rest/assistants/v1/assistant.rb +0 -927
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb +0 -325
- data/lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb +0 -349
- data/lib/twilio-ruby/rest/assistants/v1/knowledge.rb +0 -871
- data/lib/twilio-ruby/rest/assistants/v1/policy.rb +0 -364
- data/lib/twilio-ruby/rest/assistants/v1/session/message.rb +0 -360
- data/lib/twilio-ruby/rest/assistants/v1/tool.rb +0 -847
- data/lib/twilio-ruby/rest/assistants/v1.rb +0 -104
- data/lib/twilio-ruby/rest/assistants.rb +0 -6
- data/lib/twilio-ruby/rest/assistants_base.rb +0 -38
|
@@ -52,9 +52,10 @@ module Twilio
|
|
|
52
52
|
# refer_url:: Webhook that will receive future SIP REFER requests
|
|
53
53
|
# refer_method:: The HTTP method to use for the refer Webhook
|
|
54
54
|
# events:: Subscription to events
|
|
55
|
+
# passports:: Base64-encoded comma-separated identity passports (e.g. shaken, div)
|
|
55
56
|
# keyword_args:: additional attributes
|
|
56
|
-
def dial(number: nil, action: nil, method: nil, timeout: nil, hangup_on_star: nil, time_limit: nil, caller_id: nil, record: nil, trim: nil, recording_status_callback: nil, recording_configuration_id: nil, recording_status_callback_method: nil, recording_status_callback_event: nil, answer_on_bridge: nil, ring_tone: nil, recording_track: nil, sequential: nil, refer_url: nil, refer_method: nil, events: nil, **keyword_args)
|
|
57
|
-
dial = Dial.new(number: number, action: action, method: method, timeout: timeout, hangup_on_star: hangup_on_star, time_limit: time_limit, caller_id: caller_id, record: record, trim: trim, recording_status_callback: recording_status_callback, recording_configuration_id: recording_configuration_id, recording_status_callback_method: recording_status_callback_method, recording_status_callback_event: recording_status_callback_event, answer_on_bridge: answer_on_bridge, ring_tone: ring_tone, recording_track: recording_track, sequential: sequential, refer_url: refer_url, refer_method: refer_method, events: events, **keyword_args)
|
|
57
|
+
def dial(number: nil, action: nil, method: nil, timeout: nil, hangup_on_star: nil, time_limit: nil, caller_id: nil, record: nil, trim: nil, recording_status_callback: nil, recording_configuration_id: nil, recording_status_callback_method: nil, recording_status_callback_event: nil, answer_on_bridge: nil, ring_tone: nil, recording_track: nil, sequential: nil, refer_url: nil, refer_method: nil, events: nil, passports: nil, **keyword_args)
|
|
58
|
+
dial = Dial.new(number: number, action: action, method: method, timeout: timeout, hangup_on_star: hangup_on_star, time_limit: time_limit, caller_id: caller_id, record: record, trim: trim, recording_status_callback: recording_status_callback, recording_configuration_id: recording_configuration_id, recording_status_callback_method: recording_status_callback_method, recording_status_callback_event: recording_status_callback_event, answer_on_bridge: answer_on_bridge, ring_tone: ring_tone, recording_track: recording_track, sequential: sequential, refer_url: refer_url, refer_method: refer_method, events: events, passports: passports, **keyword_args)
|
|
58
59
|
|
|
59
60
|
yield(dial) if block_given?
|
|
60
61
|
append(dial)
|
|
@@ -2119,37 +2120,6 @@ module Twilio
|
|
|
2119
2120
|
append(conversation_relay)
|
|
2120
2121
|
end
|
|
2121
2122
|
|
|
2122
|
-
##
|
|
2123
|
-
# Create a new <Assistant> element
|
|
2124
|
-
# id:: The assistant ID of the AI Assistant
|
|
2125
|
-
# language:: Language to be used for both text-to-speech and transcription
|
|
2126
|
-
# tts_language:: Language to be used for text-to-speech
|
|
2127
|
-
# transcription_language:: Language to be used for transcription
|
|
2128
|
-
# tts_provider:: Provider to be used for text-to-speech
|
|
2129
|
-
# voice:: Voice to be used for text-to-speech
|
|
2130
|
-
# transcription_provider:: Provider to be used for transcription
|
|
2131
|
-
# speech_model:: Speech model to be used for transcription
|
|
2132
|
-
# profanity_filter:: Whether profanities should be filtered out of the speech transcription
|
|
2133
|
-
# dtmf_detection:: Whether DTMF tones should be detected and reported in speech transcription
|
|
2134
|
-
# welcome_greeting:: The sentence to be played automatically when the session is connected
|
|
2135
|
-
# partial_prompts:: Whether partial prompts should be reported to WebSocket server before the caller finishes speaking
|
|
2136
|
-
# welcome_greeting_interruptible:: "Whether and how the input from a caller, such as speaking or DTMF can interrupt the welcome greeting
|
|
2137
|
-
# interruptible:: Whether and how the input from a caller, such as speaking or DTMF can interrupt the play of text-to-speech
|
|
2138
|
-
# preemptible:: Whether subsequent text-to-speech or play media can interrupt the on-going play of text-to-speech or media
|
|
2139
|
-
# hints:: Phrases to help better accuracy in speech recognition of these pharases
|
|
2140
|
-
# intelligence_service:: The Conversational Intelligence Service id or unique name to be used for the session
|
|
2141
|
-
# report_input_during_agent_speech:: Whether prompts should be reported to WebSocket server when text-to-speech playing and interrupt is disabled
|
|
2142
|
-
# elevenlabs_text_normalization:: When using ElevenLabs as TTS provider, this parameter allows you to enable or disable its text normalization feature
|
|
2143
|
-
# interrupt_sensitivity:: Set the sensitivity of the interrupt feature for speech. The value can be low, medium, or high
|
|
2144
|
-
# debug:: Multiple debug options to be used for troubleshooting
|
|
2145
|
-
# keyword_args:: additional attributes
|
|
2146
|
-
def assistant(id: nil, language: nil, tts_language: nil, transcription_language: nil, tts_provider: nil, voice: nil, transcription_provider: nil, speech_model: nil, profanity_filter: nil, dtmf_detection: nil, welcome_greeting: nil, partial_prompts: nil, welcome_greeting_interruptible: nil, interruptible: nil, preemptible: nil, hints: nil, intelligence_service: nil, report_input_during_agent_speech: nil, elevenlabs_text_normalization: nil, interrupt_sensitivity: nil, debug: nil, **keyword_args)
|
|
2147
|
-
assistant = Assistant.new(id: id, language: language, tts_language: tts_language, transcription_language: transcription_language, tts_provider: tts_provider, voice: voice, transcription_provider: transcription_provider, speech_model: speech_model, profanity_filter: profanity_filter, dtmf_detection: dtmf_detection, welcome_greeting: welcome_greeting, partial_prompts: partial_prompts, welcome_greeting_interruptible: welcome_greeting_interruptible, interruptible: interruptible, preemptible: preemptible, hints: hints, intelligence_service: intelligence_service, report_input_during_agent_speech: report_input_during_agent_speech, elevenlabs_text_normalization: elevenlabs_text_normalization, interrupt_sensitivity: interrupt_sensitivity, debug: debug, **keyword_args)
|
|
2148
|
-
|
|
2149
|
-
yield(assistant) if block_given?
|
|
2150
|
-
append(assistant)
|
|
2151
|
-
end
|
|
2152
|
-
|
|
2153
2123
|
##
|
|
2154
2124
|
# Create a new <AiSession> element
|
|
2155
2125
|
# ai_connector:: The unique name or installed add-on sid that identifies the installed addon resource for the AI Connector
|
|
@@ -2192,11 +2162,11 @@ module Twilio
|
|
|
2192
2162
|
end
|
|
2193
2163
|
|
|
2194
2164
|
##
|
|
2195
|
-
# <
|
|
2196
|
-
class
|
|
2165
|
+
# <ConversationRelay> TwiML Noun
|
|
2166
|
+
class ConversationRelay < TwiML
|
|
2197
2167
|
def initialize(**keyword_args)
|
|
2198
2168
|
super(**keyword_args)
|
|
2199
|
-
@name = '
|
|
2169
|
+
@name = 'ConversationRelay'
|
|
2200
2170
|
|
|
2201
2171
|
yield(self) if block_given?
|
|
2202
2172
|
end
|
|
@@ -2234,38 +2204,6 @@ module Twilio
|
|
|
2234
2204
|
end
|
|
2235
2205
|
end
|
|
2236
2206
|
|
|
2237
|
-
##
|
|
2238
|
-
# <ConversationRelay> TwiML Noun
|
|
2239
|
-
class ConversationRelay < TwiML
|
|
2240
|
-
def initialize(**keyword_args)
|
|
2241
|
-
super(**keyword_args)
|
|
2242
|
-
@name = 'ConversationRelay'
|
|
2243
|
-
|
|
2244
|
-
yield(self) if block_given?
|
|
2245
|
-
end
|
|
2246
|
-
|
|
2247
|
-
##
|
|
2248
|
-
# Create a new <Language> element
|
|
2249
|
-
# code:: Language code of this language setting is for
|
|
2250
|
-
# tts_provider:: Provider to be used for text-to-speech of this language
|
|
2251
|
-
# voice:: Voice to be used for text-to-speech of this language
|
|
2252
|
-
# transcription_provider:: Provider to be used for transcription of this language
|
|
2253
|
-
# speech_model:: Speech model to be used for transcription of this language
|
|
2254
|
-
# keyword_args:: additional attributes
|
|
2255
|
-
def language(code: nil, tts_provider: nil, voice: nil, transcription_provider: nil, speech_model: nil, **keyword_args)
|
|
2256
|
-
append(Language.new(code: code, tts_provider: tts_provider, voice: voice, transcription_provider: transcription_provider, speech_model: speech_model, **keyword_args))
|
|
2257
|
-
end
|
|
2258
|
-
|
|
2259
|
-
##
|
|
2260
|
-
# Create a new <Parameter> element
|
|
2261
|
-
# name:: The name of the custom parameter
|
|
2262
|
-
# value:: The value of the custom parameter
|
|
2263
|
-
# keyword_args:: additional attributes
|
|
2264
|
-
def parameter(name: nil, value: nil, **keyword_args)
|
|
2265
|
-
append(Parameter.new(name: name, value: value, **keyword_args))
|
|
2266
|
-
end
|
|
2267
|
-
end
|
|
2268
|
-
|
|
2269
2207
|
##
|
|
2270
2208
|
# <Conversation> TwiML Noun
|
|
2271
2209
|
class Conversation < TwiML
|
data/lib/twilio-ruby/version.rb
CHANGED
data/twilio-ruby.gemspec
CHANGED
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
# Workaround for RBX <= 2.2.1, should be fixed in next version
|
|
32
32
|
spec.add_dependency('rubysl') if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
|
33
33
|
|
|
34
|
-
spec.add_development_dependency 'bundler', '>= 1.5', '<
|
|
34
|
+
spec.add_development_dependency 'bundler', '>= 1.5', '< 5.0'
|
|
35
35
|
spec.add_development_dependency 'equivalent-xml', '~> 0.6'
|
|
36
36
|
spec.add_development_dependency 'fakeweb', '~> 1.3'
|
|
37
37
|
spec.add_development_dependency 'rack', '~> 2.0'
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twilio-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Twilio API Team
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-08-24 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: jwt
|
|
@@ -78,7 +79,7 @@ dependencies:
|
|
|
78
79
|
version: '1.5'
|
|
79
80
|
- - "<"
|
|
80
81
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '
|
|
82
|
+
version: '5.0'
|
|
82
83
|
type: :development
|
|
83
84
|
prerelease: false
|
|
84
85
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -88,7 +89,7 @@ dependencies:
|
|
|
88
89
|
version: '1.5'
|
|
89
90
|
- - "<"
|
|
90
91
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: '
|
|
92
|
+
version: '5.0'
|
|
92
93
|
- !ruby/object:Gem::Dependency
|
|
93
94
|
name: equivalent-xml
|
|
94
95
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -189,11 +190,12 @@ dependencies:
|
|
|
189
190
|
version: 1.4.2
|
|
190
191
|
description: The official library for communicating with the Twilio REST API, building
|
|
191
192
|
TwiML, and generating Twilio JWT Capability Tokens
|
|
193
|
+
email:
|
|
192
194
|
executables: []
|
|
193
195
|
extensions: []
|
|
194
196
|
extra_rdoc_files:
|
|
195
|
-
- LICENSE
|
|
196
197
|
- README.md
|
|
198
|
+
- LICENSE
|
|
197
199
|
files:
|
|
198
200
|
- ".dockerignore"
|
|
199
201
|
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
|
@@ -208,6 +210,7 @@ files:
|
|
|
208
210
|
- CONTRIBUTING.md
|
|
209
211
|
- Dockerfile
|
|
210
212
|
- Gemfile
|
|
213
|
+
- Gemfile.lock
|
|
211
214
|
- ISSUE_TEMPLATE.md
|
|
212
215
|
- LICENSE
|
|
213
216
|
- Makefile
|
|
@@ -351,21 +354,6 @@ files:
|
|
|
351
354
|
- lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb
|
|
352
355
|
- lib/twilio-ruby/rest/api/v2010/account/validation_request.rb
|
|
353
356
|
- lib/twilio-ruby/rest/api_base.rb
|
|
354
|
-
- lib/twilio-ruby/rest/assistants.rb
|
|
355
|
-
- lib/twilio-ruby/rest/assistants/v1.rb
|
|
356
|
-
- lib/twilio-ruby/rest/assistants/v1/assistant.rb
|
|
357
|
-
- lib/twilio-ruby/rest/assistants/v1/assistant/assistants_knowledge.rb
|
|
358
|
-
- lib/twilio-ruby/rest/assistants/v1/assistant/assistants_tool.rb
|
|
359
|
-
- lib/twilio-ruby/rest/assistants/v1/assistant/feedback.rb
|
|
360
|
-
- lib/twilio-ruby/rest/assistants/v1/assistant/message.rb
|
|
361
|
-
- lib/twilio-ruby/rest/assistants/v1/knowledge.rb
|
|
362
|
-
- lib/twilio-ruby/rest/assistants/v1/knowledge/chunk.rb
|
|
363
|
-
- lib/twilio-ruby/rest/assistants/v1/knowledge/knowledge_status.rb
|
|
364
|
-
- lib/twilio-ruby/rest/assistants/v1/policy.rb
|
|
365
|
-
- lib/twilio-ruby/rest/assistants/v1/session.rb
|
|
366
|
-
- lib/twilio-ruby/rest/assistants/v1/session/message.rb
|
|
367
|
-
- lib/twilio-ruby/rest/assistants/v1/tool.rb
|
|
368
|
-
- lib/twilio-ruby/rest/assistants_base.rb
|
|
369
357
|
- lib/twilio-ruby/rest/bulkexports.rb
|
|
370
358
|
- lib/twilio-ruby/rest/bulkexports/v1.rb
|
|
371
359
|
- lib/twilio-ruby/rest/bulkexports/v1/export.rb
|
|
@@ -552,6 +540,7 @@ files:
|
|
|
552
540
|
- lib/twilio-ruby/rest/intelligence/v3/conversation.rb
|
|
553
541
|
- lib/twilio-ruby/rest/intelligence/v3/operator.rb
|
|
554
542
|
- lib/twilio-ruby/rest/intelligence/v3/operator_result.rb
|
|
543
|
+
- lib/twilio-ruby/rest/intelligence/v3/rule_execution.rb
|
|
555
544
|
- lib/twilio-ruby/rest/intelligence/v3/version.rb
|
|
556
545
|
- lib/twilio-ruby/rest/intelligence_base.rb
|
|
557
546
|
- lib/twilio-ruby/rest/ip_messaging.rb
|
|
@@ -687,6 +676,10 @@ files:
|
|
|
687
676
|
- lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb
|
|
688
677
|
- lib/twilio-ruby/rest/numbers/v1/sender_id_registration.rb
|
|
689
678
|
- lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
|
|
679
|
+
- lib/twilio-ruby/rest/numbers/v1/sms_verification.rb
|
|
680
|
+
- lib/twilio-ruby/rest/numbers/v1/sms_verification_check.rb
|
|
681
|
+
- lib/twilio-ruby/rest/numbers/v1/voice_verification.rb
|
|
682
|
+
- lib/twilio-ruby/rest/numbers/v1/voice_verification_check.rb
|
|
690
683
|
- lib/twilio-ruby/rest/numbers/v1/webhook.rb
|
|
691
684
|
- lib/twilio-ruby/rest/numbers/v2.rb
|
|
692
685
|
- lib/twilio-ruby/rest/numbers/v2/application.rb
|
|
@@ -694,6 +687,7 @@ files:
|
|
|
694
687
|
- lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb
|
|
695
688
|
- lib/twilio-ruby/rest/numbers/v2/bulk_hosted_number_order.rb
|
|
696
689
|
- lib/twilio-ruby/rest/numbers/v2/bundle_clone.rb
|
|
690
|
+
- lib/twilio-ruby/rest/numbers/v2/caller_id.rb
|
|
697
691
|
- lib/twilio-ruby/rest/numbers/v2/hosted_number_order.rb
|
|
698
692
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance.rb
|
|
699
693
|
- lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle.rb
|
|
@@ -715,6 +709,7 @@ files:
|
|
|
715
709
|
- lib/twilio-ruby/rest/oauth/v1/token.rb
|
|
716
710
|
- lib/twilio-ruby/rest/oauth/v2.rb
|
|
717
711
|
- lib/twilio-ruby/rest/oauth/v2/authorize.rb
|
|
712
|
+
- lib/twilio-ruby/rest/oauth/v2/oauth_authorization_server.rb
|
|
718
713
|
- lib/twilio-ruby/rest/oauth/v2/token.rb
|
|
719
714
|
- lib/twilio-ruby/rest/oauth_base.rb
|
|
720
715
|
- lib/twilio-ruby/rest/preview.rb
|
|
@@ -773,6 +768,8 @@ files:
|
|
|
773
768
|
- lib/twilio-ruby/rest/routes/v2/phone_number.rb
|
|
774
769
|
- lib/twilio-ruby/rest/routes/v2/sip_domain.rb
|
|
775
770
|
- lib/twilio-ruby/rest/routes/v2/trunk.rb
|
|
771
|
+
- lib/twilio-ruby/rest/routes/v3.rb
|
|
772
|
+
- lib/twilio-ruby/rest/routes/v3/phone_number.rb
|
|
776
773
|
- lib/twilio-ruby/rest/routes_base.rb
|
|
777
774
|
- lib/twilio-ruby/rest/serverless.rb
|
|
778
775
|
- lib/twilio-ruby/rest/serverless/v1.rb
|
|
@@ -879,6 +876,10 @@ files:
|
|
|
879
876
|
- lib/twilio-ruby/rest/trunking_base.rb
|
|
880
877
|
- lib/twilio-ruby/rest/trusthub.rb
|
|
881
878
|
- lib/twilio-ruby/rest/trusthub/v1.rb
|
|
879
|
+
- lib/twilio-ruby/rest/trusthub/v1/a2p_brand_registration.rb
|
|
880
|
+
- lib/twilio-ruby/rest/trusthub/v1/a2p_brand_registration_embedded_session.rb
|
|
881
|
+
- lib/twilio-ruby/rest/trusthub/v1/a2p_campaign_registration.rb
|
|
882
|
+
- lib/twilio-ruby/rest/trusthub/v1/a2p_campaign_registration_embedded_session.rb
|
|
882
883
|
- lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb
|
|
883
884
|
- lib/twilio-ruby/rest/trusthub/v1/compliance_registration_inquiries.rb
|
|
884
885
|
- lib/twilio-ruby/rest/trusthub/v1/compliance_tollfree_inquiries.rb
|
|
@@ -886,6 +887,7 @@ files:
|
|
|
886
887
|
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
|
|
887
888
|
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb
|
|
888
889
|
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_evaluations.rb
|
|
890
|
+
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles_provisional_copy.rb
|
|
889
891
|
- lib/twilio-ruby/rest/trusthub/v1/end_user.rb
|
|
890
892
|
- lib/twilio-ruby/rest/trusthub/v1/end_user_type.rb
|
|
891
893
|
- lib/twilio-ruby/rest/trusthub/v1/policies.rb
|
|
@@ -895,6 +897,7 @@ files:
|
|
|
895
897
|
- lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb
|
|
896
898
|
- lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb
|
|
897
899
|
- lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_evaluations.rb
|
|
900
|
+
- lib/twilio-ruby/rest/trusthub/v1/trust_products_provisional_copy.rb
|
|
898
901
|
- lib/twilio-ruby/rest/trusthub_base.rb
|
|
899
902
|
- lib/twilio-ruby/rest/verify.rb
|
|
900
903
|
- lib/twilio-ruby/rest/verify/v2.rb
|
|
@@ -951,6 +954,13 @@ files:
|
|
|
951
954
|
- lib/twilio-ruby/rest/voice/v1/dialing_permissions/settings.rb
|
|
952
955
|
- lib/twilio-ruby/rest/voice/v1/ip_record.rb
|
|
953
956
|
- lib/twilio-ruby/rest/voice/v1/source_ip_mapping.rb
|
|
957
|
+
- lib/twilio-ruby/rest/voice/v2.rb
|
|
958
|
+
- lib/twilio-ruby/rest/voice/v2/account_default_configuration.rb
|
|
959
|
+
- lib/twilio-ruby/rest/voice/v2/configuration.rb
|
|
960
|
+
- lib/twilio-ruby/rest/voice/v2/configuration/default.rb
|
|
961
|
+
- lib/twilio-ruby/rest/voice/v2/recording.rb
|
|
962
|
+
- lib/twilio-ruby/rest/voice/v2/transcription.rb
|
|
963
|
+
- lib/twilio-ruby/rest/voice/v2/type.rb
|
|
954
964
|
- lib/twilio-ruby/rest/voice/v3.rb
|
|
955
965
|
- lib/twilio-ruby/rest/voice/v3/transcription.rb
|
|
956
966
|
- lib/twilio-ruby/rest/voice_base.rb
|
|
@@ -979,6 +989,7 @@ licenses:
|
|
|
979
989
|
metadata:
|
|
980
990
|
documentation_uri: https://www.twilio.com/docs/libraries/reference/twilio-ruby/
|
|
981
991
|
yard.run: yri
|
|
992
|
+
post_install_message:
|
|
982
993
|
rdoc_options:
|
|
983
994
|
- "--line-numbers"
|
|
984
995
|
- "--inline-source"
|
|
@@ -999,7 +1010,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
999
1010
|
- !ruby/object:Gem::Version
|
|
1000
1011
|
version: '0'
|
|
1001
1012
|
requirements: []
|
|
1002
|
-
rubygems_version:
|
|
1013
|
+
rubygems_version: 3.5.22
|
|
1014
|
+
signing_key:
|
|
1003
1015
|
specification_version: 4
|
|
1004
1016
|
summary: The official library for communicating with the Twilio REST API, building
|
|
1005
1017
|
TwiML, and generating Twilio JWT Capability Tokens
|