bandwidth-sdk 16.1.0 → 16.2.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/Gemfile.lock +5 -5
- data/README.md +6 -3
- data/bandwidth.yml +266 -11
- data/coverage/.last_run.json +1 -1
- data/coverage/.resultset.json +501 -1
- data/coverage/index.html +6296 -970
- data/docs/BusinessEntityTypeEnum.md +15 -0
- data/docs/BusinessRegistrationTypeEnum.md +15 -0
- data/docs/CallTranscriptionMetadata.md +1 -1
- data/docs/ConferenceMember.md +1 -1
- data/docs/ListMessageItem.md +13 -1
- data/docs/MessagesApi.md +24 -0
- data/docs/MultiChannelMessageResponseData.md +2 -2
- data/docs/OptInWorkflow.md +3 -1
- data/docs/ProductTypeEnum.md +15 -0
- data/docs/RbmActionBase.md +1 -1
- data/docs/RbmSuggestionResponse.md +1 -1
- data/docs/TfvSubmissionInfo.md +7 -1
- data/docs/TranscriptionsApi.md +13 -13
- data/docs/VerificationRequest.md +11 -1
- data/docs/VerificationUpdateRequest.md +11 -1
- data/lib/bandwidth-sdk/api/messages_api.rb +36 -0
- data/lib/bandwidth-sdk/api/transcriptions_api.rb +8 -8
- data/lib/bandwidth-sdk/models/business_entity_type_enum.rb +43 -0
- data/lib/bandwidth-sdk/models/business_registration_type_enum.rb +40 -0
- data/lib/bandwidth-sdk/models/bxml/verbs/stop_stream.rb +2 -1
- data/lib/bandwidth-sdk/models/call_transcription_metadata.rb +1 -1
- data/lib/bandwidth-sdk/models/conference_member.rb +1 -1
- data/lib/bandwidth-sdk/models/list_message_item.rb +71 -5
- data/lib/bandwidth-sdk/models/message_type_enum.rb +2 -1
- data/lib/bandwidth-sdk/models/multi_channel_message_response_data.rb +11 -11
- data/lib/bandwidth-sdk/models/opt_in_workflow.rb +38 -4
- data/lib/bandwidth-sdk/models/product_type_enum.rb +47 -0
- data/lib/bandwidth-sdk/models/tfv_submission_info.rb +72 -4
- data/lib/bandwidth-sdk/models/verification_request.rb +108 -4
- data/lib/bandwidth-sdk/models/verification_update_request.rb +108 -4
- data/lib/bandwidth-sdk/version.rb +1 -1
- data/lib/bandwidth-sdk.rb +3 -0
- data/spec/smoke/messages_api_spec.rb +2 -1
- data/spec/spec_helper.rb +3 -2
- data/spec/unit/api/messages_api_spec.rb +6 -0
- data/spec/unit/models/bxml/verbs/stop_stream_spec.rb +6 -4
- metadata +44 -38
@@ -48,6 +48,41 @@ module Bandwidth
|
|
48
48
|
# The company 'Doing Business As'.
|
49
49
|
attr_accessor :business_dba
|
50
50
|
|
51
|
+
# US Federal Tax ID Number (EIN) or Canada Business Number (CBN). Optional until early 2026. If a value is provided for this field, a value must be provided for `businessRegistrationType` and `businessEntityType`. Available starting October 1st, 2025.
|
52
|
+
attr_accessor :business_registration_number
|
53
|
+
|
54
|
+
attr_accessor :business_registration_type
|
55
|
+
|
56
|
+
attr_accessor :business_entity_type
|
57
|
+
|
58
|
+
# A message that gets sent to users requesting help.
|
59
|
+
attr_accessor :help_message_response
|
60
|
+
|
61
|
+
# Indicates whether the content is age-gated.
|
62
|
+
attr_accessor :age_gated_content
|
63
|
+
|
64
|
+
class EnumAttributeValidator
|
65
|
+
attr_reader :datatype
|
66
|
+
attr_reader :allowable_values
|
67
|
+
|
68
|
+
def initialize(datatype, allowable_values)
|
69
|
+
@allowable_values = allowable_values.map do |value|
|
70
|
+
case datatype.to_s
|
71
|
+
when /Integer/i
|
72
|
+
value.to_i
|
73
|
+
when /Float/i
|
74
|
+
value.to_f
|
75
|
+
else
|
76
|
+
value
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
def valid?(value)
|
82
|
+
!value || allowable_values.include?(value)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
51
86
|
# Attribute mapping from ruby-style variable name to JSON key.
|
52
87
|
def self.attribute_map
|
53
88
|
{
|
@@ -62,7 +97,12 @@ module Bandwidth
|
|
62
97
|
:'isv_reseller' => :'isvReseller',
|
63
98
|
:'privacy_policy_url' => :'privacyPolicyUrl',
|
64
99
|
:'terms_and_conditions_url' => :'termsAndConditionsUrl',
|
65
|
-
:'business_dba' => :'businessDba'
|
100
|
+
:'business_dba' => :'businessDba',
|
101
|
+
:'business_registration_number' => :'businessRegistrationNumber',
|
102
|
+
:'business_registration_type' => :'businessRegistrationType',
|
103
|
+
:'business_entity_type' => :'businessEntityType',
|
104
|
+
:'help_message_response' => :'helpMessageResponse',
|
105
|
+
:'age_gated_content' => :'ageGatedContent'
|
66
106
|
}
|
67
107
|
end
|
68
108
|
|
@@ -85,7 +125,12 @@ module Bandwidth
|
|
85
125
|
:'isv_reseller' => :'String',
|
86
126
|
:'privacy_policy_url' => :'String',
|
87
127
|
:'terms_and_conditions_url' => :'String',
|
88
|
-
:'business_dba' => :'String'
|
128
|
+
:'business_dba' => :'String',
|
129
|
+
:'business_registration_number' => :'String',
|
130
|
+
:'business_registration_type' => :'BusinessRegistrationTypeEnum',
|
131
|
+
:'business_entity_type' => :'BusinessEntityTypeEnum',
|
132
|
+
:'help_message_response' => :'String',
|
133
|
+
:'age_gated_content' => :'Boolean'
|
89
134
|
}
|
90
135
|
end
|
91
136
|
|
@@ -94,6 +139,10 @@ module Bandwidth
|
|
94
139
|
Set.new([
|
95
140
|
:'additional_information',
|
96
141
|
:'isv_reseller',
|
142
|
+
:'business_registration_number',
|
143
|
+
:'business_registration_type',
|
144
|
+
:'business_entity_type',
|
145
|
+
:'help_message_response',
|
97
146
|
])
|
98
147
|
end
|
99
148
|
|
@@ -173,6 +222,26 @@ module Bandwidth
|
|
173
222
|
if attributes.key?(:'business_dba')
|
174
223
|
self.business_dba = attributes[:'business_dba']
|
175
224
|
end
|
225
|
+
|
226
|
+
if attributes.key?(:'business_registration_number')
|
227
|
+
self.business_registration_number = attributes[:'business_registration_number']
|
228
|
+
end
|
229
|
+
|
230
|
+
if attributes.key?(:'business_registration_type')
|
231
|
+
self.business_registration_type = attributes[:'business_registration_type']
|
232
|
+
end
|
233
|
+
|
234
|
+
if attributes.key?(:'business_entity_type')
|
235
|
+
self.business_entity_type = attributes[:'business_entity_type']
|
236
|
+
end
|
237
|
+
|
238
|
+
if attributes.key?(:'help_message_response')
|
239
|
+
self.help_message_response = attributes[:'help_message_response']
|
240
|
+
end
|
241
|
+
|
242
|
+
if attributes.key?(:'age_gated_content')
|
243
|
+
self.age_gated_content = attributes[:'age_gated_content']
|
244
|
+
end
|
176
245
|
end
|
177
246
|
|
178
247
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -256,6 +325,14 @@ module Bandwidth
|
|
256
325
|
invalid_properties.push('invalid value for "isv_reseller", the character length must be great than or equal to 0.')
|
257
326
|
end
|
258
327
|
|
328
|
+
if !@business_registration_number.nil? && @business_registration_number.to_s.length > 500
|
329
|
+
invalid_properties.push('invalid value for "business_registration_number", the character length must be smaller than or equal to 500.')
|
330
|
+
end
|
331
|
+
|
332
|
+
if !@help_message_response.nil? && @help_message_response.to_s.length > 500
|
333
|
+
invalid_properties.push('invalid value for "help_message_response", the character length must be smaller than or equal to 500.')
|
334
|
+
end
|
335
|
+
|
259
336
|
invalid_properties
|
260
337
|
end
|
261
338
|
|
@@ -282,6 +359,8 @@ module Bandwidth
|
|
282
359
|
return false if !@additional_information.nil? && @additional_information.to_s.length < 0
|
283
360
|
return false if !@isv_reseller.nil? && @isv_reseller.to_s.length > 500
|
284
361
|
return false if !@isv_reseller.nil? && @isv_reseller.to_s.length < 0
|
362
|
+
return false if !@business_registration_number.nil? && @business_registration_number.to_s.length > 500
|
363
|
+
return false if !@help_message_response.nil? && @help_message_response.to_s.length > 500
|
285
364
|
true
|
286
365
|
end
|
287
366
|
|
@@ -385,6 +464,26 @@ module Bandwidth
|
|
385
464
|
@isv_reseller = isv_reseller
|
386
465
|
end
|
387
466
|
|
467
|
+
# Custom attribute writer method with validation
|
468
|
+
# @param [Object] business_registration_number Value to be assigned
|
469
|
+
def business_registration_number=(business_registration_number)
|
470
|
+
if !business_registration_number.nil? && business_registration_number.to_s.length > 500
|
471
|
+
fail ArgumentError, 'invalid value for "business_registration_number", the character length must be smaller than or equal to 500.'
|
472
|
+
end
|
473
|
+
|
474
|
+
@business_registration_number = business_registration_number
|
475
|
+
end
|
476
|
+
|
477
|
+
# Custom attribute writer method with validation
|
478
|
+
# @param [Object] help_message_response Value to be assigned
|
479
|
+
def help_message_response=(help_message_response)
|
480
|
+
if !help_message_response.nil? && help_message_response.to_s.length > 500
|
481
|
+
fail ArgumentError, 'invalid value for "help_message_response", the character length must be smaller than or equal to 500.'
|
482
|
+
end
|
483
|
+
|
484
|
+
@help_message_response = help_message_response
|
485
|
+
end
|
486
|
+
|
388
487
|
# Checks equality by comparing each attribute.
|
389
488
|
# @param [Object] Object to be compared
|
390
489
|
def ==(o)
|
@@ -401,7 +500,12 @@ module Bandwidth
|
|
401
500
|
isv_reseller == o.isv_reseller &&
|
402
501
|
privacy_policy_url == o.privacy_policy_url &&
|
403
502
|
terms_and_conditions_url == o.terms_and_conditions_url &&
|
404
|
-
business_dba == o.business_dba
|
503
|
+
business_dba == o.business_dba &&
|
504
|
+
business_registration_number == o.business_registration_number &&
|
505
|
+
business_registration_type == o.business_registration_type &&
|
506
|
+
business_entity_type == o.business_entity_type &&
|
507
|
+
help_message_response == o.help_message_response &&
|
508
|
+
age_gated_content == o.age_gated_content
|
405
509
|
end
|
406
510
|
|
407
511
|
# @see the `==` method
|
@@ -413,7 +517,7 @@ module Bandwidth
|
|
413
517
|
# Calculates hash code according to all attributes.
|
414
518
|
# @return [Integer] Hash code
|
415
519
|
def hash
|
416
|
-
[business_address, business_contact, message_volume, use_case, use_case_summary, production_message_content, opt_in_workflow, additional_information, isv_reseller, privacy_policy_url, terms_and_conditions_url, business_dba].hash
|
520
|
+
[business_address, business_contact, message_volume, use_case, use_case_summary, production_message_content, opt_in_workflow, additional_information, isv_reseller, privacy_policy_url, terms_and_conditions_url, business_dba, business_registration_number, business_registration_type, business_entity_type, help_message_response, age_gated_content].hash
|
417
521
|
end
|
418
522
|
|
419
523
|
# Builds the object from hash
|
data/lib/bandwidth-sdk.rb
CHANGED
@@ -24,6 +24,8 @@ require 'bandwidth-sdk/models/answer_callback'
|
|
24
24
|
require 'bandwidth-sdk/models/blocked_webhook'
|
25
25
|
require 'bandwidth-sdk/models/bridge_complete_callback'
|
26
26
|
require 'bandwidth-sdk/models/bridge_target_complete_callback'
|
27
|
+
require 'bandwidth-sdk/models/business_entity_type_enum'
|
28
|
+
require 'bandwidth-sdk/models/business_registration_type_enum'
|
27
29
|
require 'bandwidth-sdk/models/call_direction_enum'
|
28
30
|
require 'bandwidth-sdk/models/call_recording_metadata'
|
29
31
|
require 'bandwidth-sdk/models/call_state'
|
@@ -106,6 +108,7 @@ require 'bandwidth-sdk/models/multi_channel_message_response_data_channel_list_i
|
|
106
108
|
require 'bandwidth-sdk/models/opt_in_workflow'
|
107
109
|
require 'bandwidth-sdk/models/page_info'
|
108
110
|
require 'bandwidth-sdk/models/priority_enum'
|
111
|
+
require 'bandwidth-sdk/models/product_type_enum'
|
109
112
|
require 'bandwidth-sdk/models/rbm_action_base'
|
110
113
|
require 'bandwidth-sdk/models/rbm_action_dial'
|
111
114
|
require 'bandwidth-sdk/models/rbm_action_open_url'
|
@@ -76,7 +76,8 @@ describe 'MessagesApi Integration Tests' do
|
|
76
76
|
it 'lists messages' do
|
77
77
|
get_opts = {
|
78
78
|
source_tn: BW_NUMBER,
|
79
|
-
message_direction: list_message_direction
|
79
|
+
message_direction: list_message_direction,
|
80
|
+
calling_number_country_a3: 'USA'
|
80
81
|
}
|
81
82
|
data, status_code = @messaging_api_instance.list_messages_with_http_info(BW_ACCOUNT_ID, get_opts)
|
82
83
|
|
data/spec/spec_helper.rb
CHANGED
@@ -9,9 +9,10 @@ SimpleCov.start do
|
|
9
9
|
else
|
10
10
|
!(['/models/call_state_enum.rb',
|
11
11
|
'/models/call_state.rb',
|
12
|
-
'/models/
|
12
|
+
'/models/tfv_error.rb',
|
13
13
|
'/models/message.rb',
|
14
|
-
'/models/verify_code_request.rb'
|
14
|
+
'/models/verify_code_request.rb',
|
15
|
+
'/models/verify_code_response.rb'
|
15
16
|
].any? { |name| source_file.filename.include?(name) })
|
16
17
|
end
|
17
18
|
end
|
@@ -75,6 +75,7 @@ describe 'MessagesApi' do
|
|
75
75
|
expect(data.page_info.prev_page_token).to be_instance_of(String)
|
76
76
|
expect(data.page_info.next_page_token).to be_instance_of(String)
|
77
77
|
expect(data.messages).to be_instance_of(Array)
|
78
|
+
expect(data.messages[0]).to be_instance_of(Bandwidth::ListMessageItem)
|
78
79
|
expect(data.messages[0].message_id.length).to eq(29)
|
79
80
|
expect(data.messages[0].account_id.length).to eq(7)
|
80
81
|
expect(data.messages[0].source_tn.length).to eq(12)
|
@@ -92,6 +93,11 @@ describe 'MessagesApi' do
|
|
92
93
|
expect(data.messages[0].recipient_count).to be_instance_of(Integer)
|
93
94
|
expect(data.messages[0].campaign_class).to be_instance_of(String)
|
94
95
|
expect(data.messages[0].campaign_id).to be_instance_of(String)
|
96
|
+
expect(data.messages[0].bw_latency).to be_instance_of(Integer)
|
97
|
+
expect(data.messages[0].calling_number_country_a3).to be_instance_of(String)
|
98
|
+
expect(data.messages[0].called_number_country_a3).to be_instance_of(String)
|
99
|
+
expect(data.messages[0].product).to be_one_of(Bandwidth::ProductTypeEnum.all_vars)
|
100
|
+
expect(data.messages[0].location).to be_instance_of(String)
|
95
101
|
end
|
96
102
|
|
97
103
|
it 'causes an ArgumentError for a missing account_id' do
|
@@ -2,13 +2,15 @@
|
|
2
2
|
describe 'Bandwidth::Bxml::StopStream' do
|
3
3
|
let(:initial_attributes) {
|
4
4
|
{
|
5
|
-
name: 'initial_name'
|
5
|
+
name: 'initial_name',
|
6
|
+
wait: true
|
6
7
|
}
|
7
8
|
}
|
8
9
|
|
9
10
|
let(:new_attributes) {
|
10
11
|
{
|
11
|
-
name: 'new_name'
|
12
|
+
name: 'new_name',
|
13
|
+
wait: false
|
12
14
|
}
|
13
15
|
}
|
14
16
|
|
@@ -21,13 +23,13 @@ describe 'Bandwidth::Bxml::StopStream' do
|
|
21
23
|
end
|
22
24
|
|
23
25
|
it 'tests the to_bxml method of the StopStream instance' do
|
24
|
-
expected = "\n<StopStream name=\"initial_name\"/>\n"
|
26
|
+
expected = "\n<StopStream name=\"initial_name\" wait=\"true\"/>\n"
|
25
27
|
expect(instance.to_bxml).to eq(expected)
|
26
28
|
end
|
27
29
|
|
28
30
|
it 'tests the set_attributes method of the StopStream instance' do
|
29
31
|
instance.set_attributes(new_attributes)
|
30
|
-
expected = "\n<StopStream name=\"new_name\"/>\n"
|
32
|
+
expected = "\n<StopStream name=\"new_name\" wait=\"false\"/>\n"
|
31
33
|
expect(instance.to_bxml).to eq(expected)
|
32
34
|
end
|
33
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bandwidth-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 16.1
|
4
|
+
version: 16.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bandwidth
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -150,6 +150,8 @@ files:
|
|
150
150
|
- docs/BlockedWebhook.md
|
151
151
|
- docs/BridgeCompleteCallback.md
|
152
152
|
- docs/BridgeTargetCompleteCallback.md
|
153
|
+
- docs/BusinessEntityTypeEnum.md
|
154
|
+
- docs/BusinessRegistrationTypeEnum.md
|
153
155
|
- docs/CallDirectionEnum.md
|
154
156
|
- docs/CallRecordingMetadata.md
|
155
157
|
- docs/CallState.md
|
@@ -239,6 +241,7 @@ files:
|
|
239
241
|
- docs/PageInfo.md
|
240
242
|
- docs/PhoneNumberLookupApi.md
|
241
243
|
- docs/PriorityEnum.md
|
244
|
+
- docs/ProductTypeEnum.md
|
242
245
|
- docs/RbmActionBase.md
|
243
246
|
- docs/RbmActionDial.md
|
244
247
|
- docs/RbmActionOpenUrl.md
|
@@ -328,6 +331,8 @@ files:
|
|
328
331
|
- lib/bandwidth-sdk/models/blocked_webhook.rb
|
329
332
|
- lib/bandwidth-sdk/models/bridge_complete_callback.rb
|
330
333
|
- lib/bandwidth-sdk/models/bridge_target_complete_callback.rb
|
334
|
+
- lib/bandwidth-sdk/models/business_entity_type_enum.rb
|
335
|
+
- lib/bandwidth-sdk/models/business_registration_type_enum.rb
|
331
336
|
- lib/bandwidth-sdk/models/bxml/bxml.rb
|
332
337
|
- lib/bandwidth-sdk/models/bxml/nestable_verb.rb
|
333
338
|
- lib/bandwidth-sdk/models/bxml/response.rb
|
@@ -443,6 +448,7 @@ files:
|
|
443
448
|
- lib/bandwidth-sdk/models/opt_in_workflow.rb
|
444
449
|
- lib/bandwidth-sdk/models/page_info.rb
|
445
450
|
- lib/bandwidth-sdk/models/priority_enum.rb
|
451
|
+
- lib/bandwidth-sdk/models/product_type_enum.rb
|
446
452
|
- lib/bandwidth-sdk/models/rbm_action_base.rb
|
447
453
|
- lib/bandwidth-sdk/models/rbm_action_dial.rb
|
448
454
|
- lib/bandwidth-sdk/models/rbm_action_open_url.rb
|
@@ -600,67 +606,67 @@ summary: Bandwidth Ruby SDK
|
|
600
606
|
test_files:
|
601
607
|
- spec/call_utils.rb
|
602
608
|
- spec/fixtures/ruby_cat.jpeg
|
603
|
-
- spec/smoke/recordings_api_spec.rb
|
604
609
|
- spec/smoke/phone_number_lookup_api_spec.rb
|
605
|
-
- spec/smoke/
|
606
|
-
- spec/smoke/calls_api_spec.rb
|
610
|
+
- spec/smoke/transcriptions_api_spec.rb
|
607
611
|
- spec/smoke/toll_free_verification_api_spec.rb
|
608
|
-
- spec/smoke/
|
612
|
+
- spec/smoke/multi_channel_api_spec.rb
|
609
613
|
- spec/smoke/messages_api_spec.rb
|
610
614
|
- spec/smoke/conferences_api_spec.rb
|
615
|
+
- spec/smoke/recordings_api_spec.rb
|
611
616
|
- spec/smoke/mfa_api_spec.rb
|
612
|
-
- spec/smoke/transcriptions_api_spec.rb
|
613
617
|
- spec/smoke/statistics_api_spec.rb
|
618
|
+
- spec/smoke/calls_api_spec.rb
|
619
|
+
- spec/smoke/media_api_spec.rb
|
614
620
|
- spec/spec_helper.rb
|
615
|
-
- spec/unit/api/recordings_api_spec.rb
|
616
621
|
- spec/unit/api/phone_number_lookup_api_spec.rb
|
617
|
-
- spec/unit/api/
|
618
|
-
- spec/unit/api/calls_api_spec.rb
|
622
|
+
- spec/unit/api/transcriptions_api_spec.rb
|
619
623
|
- spec/unit/api/toll_free_verification_api_spec.rb
|
620
|
-
- spec/unit/api/
|
624
|
+
- spec/unit/api/multi_channel_api_spec.rb
|
621
625
|
- spec/unit/api/messages_api_spec.rb
|
622
626
|
- spec/unit/api/conferences_api_spec.rb
|
627
|
+
- spec/unit/api/recordings_api_spec.rb
|
623
628
|
- spec/unit/api/mfa_api_spec.rb
|
624
|
-
- spec/unit/api/transcriptions_api_spec.rb
|
625
629
|
- spec/unit/api/statistics_api_spec.rb
|
626
|
-
- spec/unit/
|
630
|
+
- spec/unit/api/calls_api_spec.rb
|
631
|
+
- spec/unit/api/media_api_spec.rb
|
627
632
|
- spec/unit/client/api_error_spec.rb
|
633
|
+
- spec/unit/client/configuration_spec.rb
|
628
634
|
- spec/unit/client/api_client_spec.rb
|
629
|
-
- spec/unit/models/message_spec.rb
|
630
|
-
- spec/unit/models/tfv_error_spec.rb
|
631
635
|
- spec/unit/models/verify_code_request_spec.rb
|
632
|
-
- spec/unit/models/
|
633
|
-
- spec/unit/models/
|
634
|
-
- spec/unit/models/bxml/verbs/
|
635
|
-
- spec/unit/models/bxml/verbs/
|
636
|
+
- spec/unit/models/call_state_spec.rb
|
637
|
+
- spec/unit/models/tfv_error_spec.rb
|
638
|
+
- spec/unit/models/bxml/verbs/gather_spec.rb
|
639
|
+
- spec/unit/models/bxml/verbs/stop_recording_spec.rb
|
636
640
|
- spec/unit/models/bxml/verbs/stop_transcription_spec.rb
|
637
|
-
- spec/unit/models/bxml/verbs/
|
638
|
-
- spec/unit/models/bxml/verbs/
|
641
|
+
- spec/unit/models/bxml/verbs/ring_spec.rb
|
642
|
+
- spec/unit/models/bxml/verbs/resume_recording_spec.rb
|
643
|
+
- spec/unit/models/bxml/verbs/record_spec.rb
|
644
|
+
- spec/unit/models/bxml/verbs/start_stream_spec.rb
|
639
645
|
- spec/unit/models/bxml/verbs/pause_spec.rb
|
640
646
|
- spec/unit/models/bxml/verbs/start_gather_spec.rb
|
641
|
-
- spec/unit/models/bxml/verbs/
|
647
|
+
- spec/unit/models/bxml/verbs/hangup_spec.rb
|
648
|
+
- spec/unit/models/bxml/verbs/redirect_spec.rb
|
642
649
|
- spec/unit/models/bxml/verbs/bridge_spec.rb
|
643
|
-
- spec/unit/models/bxml/verbs/
|
644
|
-
- spec/unit/models/bxml/verbs/
|
650
|
+
- spec/unit/models/bxml/verbs/start_transcription_spec.rb
|
651
|
+
- spec/unit/models/bxml/verbs/custom_param_spec.rb
|
652
|
+
- spec/unit/models/bxml/verbs/conference_spec.rb
|
653
|
+
- spec/unit/models/bxml/verbs/stop_gather_spec.rb
|
645
654
|
- spec/unit/models/bxml/verbs/pause_recording_spec.rb
|
646
|
-
- spec/unit/models/bxml/verbs/
|
647
|
-
- spec/unit/models/bxml/verbs/transfer_spec.rb
|
648
|
-
- spec/unit/models/bxml/verbs/ring_spec.rb
|
655
|
+
- spec/unit/models/bxml/verbs/sip_uri_spec.rb
|
649
656
|
- spec/unit/models/bxml/verbs/forward_spec.rb
|
650
|
-
- spec/unit/models/bxml/verbs/start_recording_spec.rb
|
651
|
-
- spec/unit/models/bxml/verbs/record_spec.rb
|
652
657
|
- spec/unit/models/bxml/verbs/play_audio_spec.rb
|
653
|
-
- spec/unit/models/bxml/verbs/
|
654
|
-
- spec/unit/models/bxml/verbs/
|
655
|
-
- spec/unit/models/bxml/verbs/
|
656
|
-
- spec/unit/models/bxml/verbs/
|
658
|
+
- spec/unit/models/bxml/verbs/stop_stream_spec.rb
|
659
|
+
- spec/unit/models/bxml/verbs/transfer_spec.rb
|
660
|
+
- spec/unit/models/bxml/verbs/send_dtmf_spec.rb
|
661
|
+
- spec/unit/models/bxml/verbs/speak_sentence_spec.rb
|
662
|
+
- spec/unit/models/bxml/verbs/tag_spec.rb
|
657
663
|
- spec/unit/models/bxml/verbs/stream_param_spec.rb
|
658
|
-
- spec/unit/models/bxml/verbs/
|
659
|
-
- spec/unit/models/bxml/verbs/
|
660
|
-
- spec/unit/models/bxml/response_spec.rb
|
661
|
-
- spec/unit/models/bxml/nestable_verb_spec.rb
|
664
|
+
- spec/unit/models/bxml/verbs/start_recording_spec.rb
|
665
|
+
- spec/unit/models/bxml/verbs/phone_number_spec.rb
|
662
666
|
- spec/unit/models/bxml/verb_spec.rb
|
663
667
|
- spec/unit/models/bxml/bxml_spec.rb
|
668
|
+
- spec/unit/models/bxml/response_spec.rb
|
669
|
+
- spec/unit/models/bxml/nestable_verb_spec.rb
|
664
670
|
- spec/unit/models/call_state_enum_spec.rb
|
665
671
|
- spec/unit/models/verify_code_response_spec.rb
|
666
|
-
- spec/unit/models/
|
672
|
+
- spec/unit/models/message_spec.rb
|