bandwidth-sdk 14.1.3 → 15.0.0
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 +10 -10
- data/README.md +34 -1
- data/bandwidth.yml +640 -58
- data/coverage/.last_run.json +1 -1
- data/coverage/.resultset.json +210 -6
- data/coverage/index.html +14901 -12699
- data/docs/CardWidthEnum.md +15 -0
- data/docs/CreateMultiChannelMessageResponse.md +22 -0
- data/docs/ErrorObject.md +20 -0
- data/docs/Link.md +20 -0
- data/docs/Message.md +1 -1
- data/docs/MessageCallback.md +3 -1
- data/docs/MessageRequest.md +1 -1
- data/docs/MmsMessageContent.md +20 -0
- data/docs/MultiChannelAction.md +89 -0
- data/docs/MultiChannelActionCalendarEvent.md +30 -0
- data/docs/MultiChannelApi.md +80 -0
- data/docs/MultiChannelCallbackData.md +26 -0
- data/docs/MultiChannelChannelListObject.md +24 -0
- data/docs/MultiChannelChannelListObjectContent.md +55 -0
- data/docs/MultiChannelMessageCallbackData.md +32 -0
- data/docs/MultiChannelMessageChannelEnum.md +15 -0
- data/docs/MultiChannelMessageData.md +34 -0
- data/docs/MultiChannelMessageDirectionEnum.md +15 -0
- data/docs/MultiChannelMessageRequest.md +26 -0
- data/docs/MultiChannelStatusEnum.md +15 -0
- data/docs/RbmActionBase.md +22 -0
- data/docs/RbmActionDial.md +24 -0
- data/docs/RbmActionOpenUrl.md +24 -0
- data/docs/RbmActionTypeEnum.md +15 -0
- data/docs/RbmActionViewLocation.md +28 -0
- data/docs/RbmCardContent.md +24 -0
- data/docs/RbmCardContentMedia.md +22 -0
- data/docs/RbmMediaHeightEnum.md +15 -0
- data/docs/RbmMessageCarouselCard.md +22 -0
- data/docs/RbmMessageContentFile.md +20 -0
- data/docs/RbmMessageContentRichCard.md +49 -0
- data/docs/RbmMessageContentText.md +20 -0
- data/docs/RbmMessageMedia.md +20 -0
- data/docs/RbmStandaloneCard.md +24 -0
- data/docs/SmsMessageContent.md +18 -0
- data/docs/StandaloneCardOrientationEnum.md +15 -0
- data/docs/TfvStatus.md +5 -1
- data/docs/TfvSubmissionInfo.md +8 -2
- data/docs/ThumbnailAlignmentEnum.md +15 -0
- data/docs/VerificationDenialWebhook.md +5 -1
- data/docs/VerificationRequest.md +7 -1
- data/docs/VerificationUpdateRequest.md +8 -2
- data/lib/bandwidth-sdk/api/multi_channel_api.rb +96 -0
- data/lib/bandwidth-sdk/configuration.rb +6 -0
- data/lib/bandwidth-sdk/models/bxml/verbs/phone_number.rb +1 -0
- data/lib/bandwidth-sdk/models/card_width_enum.rb +40 -0
- data/lib/bandwidth-sdk/models/create_multi_channel_message_response.rb +234 -0
- data/lib/bandwidth-sdk/models/error_object.rb +221 -0
- data/lib/bandwidth-sdk/models/link.rb +221 -0
- data/lib/bandwidth-sdk/models/message.rb +1 -1
- data/lib/bandwidth-sdk/models/message_callback.rb +16 -5
- data/lib/bandwidth-sdk/models/message_request.rb +1 -1
- data/lib/bandwidth-sdk/models/mms_message_content.rb +244 -0
- data/lib/bandwidth-sdk/models/multi_channel_action.rb +61 -0
- data/lib/bandwidth-sdk/models/multi_channel_action_calendar_event.rb +419 -0
- data/lib/bandwidth-sdk/models/multi_channel_callback_data.rb +272 -0
- data/lib/bandwidth-sdk/models/multi_channel_channel_list_object.rb +291 -0
- data/lib/bandwidth-sdk/models/multi_channel_channel_list_object_content.rb +108 -0
- data/lib/bandwidth-sdk/models/multi_channel_message_callback_data.rb +302 -0
- data/lib/bandwidth-sdk/models/multi_channel_message_channel_enum.rb +41 -0
- data/lib/bandwidth-sdk/models/multi_channel_message_data.rb +312 -0
- data/lib/bandwidth-sdk/models/multi_channel_message_direction_enum.rb +40 -0
- data/lib/bandwidth-sdk/models/multi_channel_message_request.rb +310 -0
- data/lib/bandwidth-sdk/models/multi_channel_status_enum.rb +42 -0
- data/lib/bandwidth-sdk/models/rbm_action_base.rb +313 -0
- data/lib/bandwidth-sdk/models/rbm_action_dial.rb +337 -0
- data/lib/bandwidth-sdk/models/rbm_action_open_url.rb +356 -0
- data/lib/bandwidth-sdk/models/rbm_action_type_enum.rb +44 -0
- data/lib/bandwidth-sdk/models/rbm_action_view_location.rb +383 -0
- data/lib/bandwidth-sdk/models/rbm_card_content.rb +301 -0
- data/lib/bandwidth-sdk/models/rbm_card_content_media.rb +313 -0
- data/lib/bandwidth-sdk/models/rbm_media_height_enum.rb +41 -0
- data/lib/bandwidth-sdk/models/rbm_message_carousel_card.rb +309 -0
- data/lib/bandwidth-sdk/models/rbm_message_content_file.rb +268 -0
- data/lib/bandwidth-sdk/models/rbm_message_content_rich_card.rb +104 -0
- data/lib/bandwidth-sdk/models/rbm_message_content_text.rb +270 -0
- data/lib/bandwidth-sdk/models/rbm_message_media.rb +250 -0
- data/lib/bandwidth-sdk/models/rbm_standalone_card.rb +304 -0
- data/lib/bandwidth-sdk/models/sms_message_content.rb +239 -0
- data/lib/bandwidth-sdk/models/standalone_card_orientation_enum.rb +40 -0
- data/lib/bandwidth-sdk/models/tfv_status.rb +24 -4
- data/lib/bandwidth-sdk/models/tfv_status_enum.rb +1 -3
- data/lib/bandwidth-sdk/models/tfv_submission_info.rb +35 -5
- data/lib/bandwidth-sdk/models/thumbnail_alignment_enum.rb +40 -0
- data/lib/bandwidth-sdk/models/verification_denial_webhook.rb +24 -4
- data/lib/bandwidth-sdk/models/verification_request.rb +35 -5
- data/lib/bandwidth-sdk/models/verification_update_request.rb +35 -5
- data/lib/bandwidth-sdk/version.rb +1 -1
- data/lib/bandwidth-sdk.rb +34 -1
- data/spec/smoke/conferences_api_spec.rb +4 -4
- data/spec/smoke/multi_channel_api_spec.rb +40 -0
- data/spec/smoke/transcriptions_api_spec.rb +1 -1
- data/spec/unit/api/multi_channel_api_spec.rb +59 -0
- data/spec/unit/models/bxml/verbs/phone_number_spec.rb +6 -4
- metadata +117 -45
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:
|
4
|
+
version: 15.0.0
|
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-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -161,6 +161,7 @@ files:
|
|
161
161
|
- docs/CallbackMethodEnum.md
|
162
162
|
- docs/CallbackTypeEnum.md
|
163
163
|
- docs/CallsApi.md
|
164
|
+
- docs/CardWidthEnum.md
|
164
165
|
- docs/CodeRequest.md
|
165
166
|
- docs/Conference.md
|
166
167
|
- docs/ConferenceCompletedCallback.md
|
@@ -178,16 +179,19 @@ files:
|
|
178
179
|
- docs/CreateCallResponse.md
|
179
180
|
- docs/CreateLookupResponse.md
|
180
181
|
- docs/CreateMessageRequestError.md
|
182
|
+
- docs/CreateMultiChannelMessageResponse.md
|
181
183
|
- docs/DeferredResult.md
|
182
184
|
- docs/DisconnectCallback.md
|
183
185
|
- docs/Diversion.md
|
184
186
|
- docs/DtmfCallback.md
|
185
187
|
- docs/Error.md
|
188
|
+
- docs/ErrorObject.md
|
186
189
|
- docs/FailureWebhook.md
|
187
190
|
- docs/FieldError.md
|
188
191
|
- docs/FileFormatEnum.md
|
189
192
|
- docs/GatherCallback.md
|
190
193
|
- docs/InitiateCallback.md
|
194
|
+
- docs/Link.md
|
191
195
|
- docs/LinksObject.md
|
192
196
|
- docs/ListMessageDirectionEnum.md
|
193
197
|
- docs/ListMessageItem.md
|
@@ -216,10 +220,37 @@ files:
|
|
216
220
|
- docs/MfaForbiddenRequestError.md
|
217
221
|
- docs/MfaRequestError.md
|
218
222
|
- docs/MfaUnauthorizedRequestError.md
|
223
|
+
- docs/MmsMessageContent.md
|
224
|
+
- docs/MultiChannelAction.md
|
225
|
+
- docs/MultiChannelActionCalendarEvent.md
|
226
|
+
- docs/MultiChannelApi.md
|
227
|
+
- docs/MultiChannelCallbackData.md
|
228
|
+
- docs/MultiChannelChannelListObject.md
|
229
|
+
- docs/MultiChannelChannelListObjectContent.md
|
230
|
+
- docs/MultiChannelMessageCallbackData.md
|
231
|
+
- docs/MultiChannelMessageChannelEnum.md
|
232
|
+
- docs/MultiChannelMessageData.md
|
233
|
+
- docs/MultiChannelMessageDirectionEnum.md
|
234
|
+
- docs/MultiChannelMessageRequest.md
|
235
|
+
- docs/MultiChannelStatusEnum.md
|
219
236
|
- docs/OptInWorkflow.md
|
220
237
|
- docs/PageInfo.md
|
221
238
|
- docs/PhoneNumberLookupApi.md
|
222
239
|
- docs/PriorityEnum.md
|
240
|
+
- docs/RbmActionBase.md
|
241
|
+
- docs/RbmActionDial.md
|
242
|
+
- docs/RbmActionOpenUrl.md
|
243
|
+
- docs/RbmActionTypeEnum.md
|
244
|
+
- docs/RbmActionViewLocation.md
|
245
|
+
- docs/RbmCardContent.md
|
246
|
+
- docs/RbmCardContentMedia.md
|
247
|
+
- docs/RbmMediaHeightEnum.md
|
248
|
+
- docs/RbmMessageCarouselCard.md
|
249
|
+
- docs/RbmMessageContentFile.md
|
250
|
+
- docs/RbmMessageContentRichCard.md
|
251
|
+
- docs/RbmMessageContentText.md
|
252
|
+
- docs/RbmMessageMedia.md
|
253
|
+
- docs/RbmStandaloneCard.md
|
223
254
|
- docs/RecordingAvailableCallback.md
|
224
255
|
- docs/RecordingCompleteCallback.md
|
225
256
|
- docs/RecordingStateEnum.md
|
@@ -228,6 +259,8 @@ files:
|
|
228
259
|
- docs/RecordingsApi.md
|
229
260
|
- docs/RedirectCallback.md
|
230
261
|
- docs/RedirectMethodEnum.md
|
262
|
+
- docs/SmsMessageContent.md
|
263
|
+
- docs/StandaloneCardOrientationEnum.md
|
231
264
|
- docs/StatisticsApi.md
|
232
265
|
- docs/StirShaken.md
|
233
266
|
- docs/Tag.md
|
@@ -239,6 +272,7 @@ files:
|
|
239
272
|
- docs/TfvStatusEnum.md
|
240
273
|
- docs/TfvSubmissionInfo.md
|
241
274
|
- docs/TfvSubmissionWrapper.md
|
275
|
+
- docs/ThumbnailAlignmentEnum.md
|
242
276
|
- docs/TnLookupRequestError.md
|
243
277
|
- docs/TollFreeVerificationApi.md
|
244
278
|
- docs/TranscribeRecording.md
|
@@ -272,6 +306,7 @@ files:
|
|
272
306
|
- lib/bandwidth-sdk/api/media_api.rb
|
273
307
|
- lib/bandwidth-sdk/api/messages_api.rb
|
274
308
|
- lib/bandwidth-sdk/api/mfa_api.rb
|
309
|
+
- lib/bandwidth-sdk/api/multi_channel_api.rb
|
275
310
|
- lib/bandwidth-sdk/api/phone_number_lookup_api.rb
|
276
311
|
- lib/bandwidth-sdk/api/recordings_api.rb
|
277
312
|
- lib/bandwidth-sdk/api/statistics_api.rb
|
@@ -330,6 +365,7 @@ files:
|
|
330
365
|
- lib/bandwidth-sdk/models/call_transcription_track_enum.rb
|
331
366
|
- lib/bandwidth-sdk/models/callback_method_enum.rb
|
332
367
|
- lib/bandwidth-sdk/models/callback_type_enum.rb
|
368
|
+
- lib/bandwidth-sdk/models/card_width_enum.rb
|
333
369
|
- lib/bandwidth-sdk/models/code_request.rb
|
334
370
|
- lib/bandwidth-sdk/models/conference.rb
|
335
371
|
- lib/bandwidth-sdk/models/conference_completed_callback.rb
|
@@ -346,16 +382,19 @@ files:
|
|
346
382
|
- lib/bandwidth-sdk/models/create_call_response.rb
|
347
383
|
- lib/bandwidth-sdk/models/create_lookup_response.rb
|
348
384
|
- lib/bandwidth-sdk/models/create_message_request_error.rb
|
385
|
+
- lib/bandwidth-sdk/models/create_multi_channel_message_response.rb
|
349
386
|
- lib/bandwidth-sdk/models/deferred_result.rb
|
350
387
|
- lib/bandwidth-sdk/models/disconnect_callback.rb
|
351
388
|
- lib/bandwidth-sdk/models/diversion.rb
|
352
389
|
- lib/bandwidth-sdk/models/dtmf_callback.rb
|
353
390
|
- lib/bandwidth-sdk/models/error.rb
|
391
|
+
- lib/bandwidth-sdk/models/error_object.rb
|
354
392
|
- lib/bandwidth-sdk/models/failure_webhook.rb
|
355
393
|
- lib/bandwidth-sdk/models/field_error.rb
|
356
394
|
- lib/bandwidth-sdk/models/file_format_enum.rb
|
357
395
|
- lib/bandwidth-sdk/models/gather_callback.rb
|
358
396
|
- lib/bandwidth-sdk/models/initiate_callback.rb
|
397
|
+
- lib/bandwidth-sdk/models/link.rb
|
359
398
|
- lib/bandwidth-sdk/models/links_object.rb
|
360
399
|
- lib/bandwidth-sdk/models/list_message_direction_enum.rb
|
361
400
|
- lib/bandwidth-sdk/models/list_message_item.rb
|
@@ -381,9 +420,35 @@ files:
|
|
381
420
|
- lib/bandwidth-sdk/models/mfa_forbidden_request_error.rb
|
382
421
|
- lib/bandwidth-sdk/models/mfa_request_error.rb
|
383
422
|
- lib/bandwidth-sdk/models/mfa_unauthorized_request_error.rb
|
423
|
+
- lib/bandwidth-sdk/models/mms_message_content.rb
|
424
|
+
- lib/bandwidth-sdk/models/multi_channel_action.rb
|
425
|
+
- lib/bandwidth-sdk/models/multi_channel_action_calendar_event.rb
|
426
|
+
- lib/bandwidth-sdk/models/multi_channel_callback_data.rb
|
427
|
+
- lib/bandwidth-sdk/models/multi_channel_channel_list_object.rb
|
428
|
+
- lib/bandwidth-sdk/models/multi_channel_channel_list_object_content.rb
|
429
|
+
- lib/bandwidth-sdk/models/multi_channel_message_callback_data.rb
|
430
|
+
- lib/bandwidth-sdk/models/multi_channel_message_channel_enum.rb
|
431
|
+
- lib/bandwidth-sdk/models/multi_channel_message_data.rb
|
432
|
+
- lib/bandwidth-sdk/models/multi_channel_message_direction_enum.rb
|
433
|
+
- lib/bandwidth-sdk/models/multi_channel_message_request.rb
|
434
|
+
- lib/bandwidth-sdk/models/multi_channel_status_enum.rb
|
384
435
|
- lib/bandwidth-sdk/models/opt_in_workflow.rb
|
385
436
|
- lib/bandwidth-sdk/models/page_info.rb
|
386
437
|
- lib/bandwidth-sdk/models/priority_enum.rb
|
438
|
+
- lib/bandwidth-sdk/models/rbm_action_base.rb
|
439
|
+
- lib/bandwidth-sdk/models/rbm_action_dial.rb
|
440
|
+
- lib/bandwidth-sdk/models/rbm_action_open_url.rb
|
441
|
+
- lib/bandwidth-sdk/models/rbm_action_type_enum.rb
|
442
|
+
- lib/bandwidth-sdk/models/rbm_action_view_location.rb
|
443
|
+
- lib/bandwidth-sdk/models/rbm_card_content.rb
|
444
|
+
- lib/bandwidth-sdk/models/rbm_card_content_media.rb
|
445
|
+
- lib/bandwidth-sdk/models/rbm_media_height_enum.rb
|
446
|
+
- lib/bandwidth-sdk/models/rbm_message_carousel_card.rb
|
447
|
+
- lib/bandwidth-sdk/models/rbm_message_content_file.rb
|
448
|
+
- lib/bandwidth-sdk/models/rbm_message_content_rich_card.rb
|
449
|
+
- lib/bandwidth-sdk/models/rbm_message_content_text.rb
|
450
|
+
- lib/bandwidth-sdk/models/rbm_message_media.rb
|
451
|
+
- lib/bandwidth-sdk/models/rbm_standalone_card.rb
|
387
452
|
- lib/bandwidth-sdk/models/recording_available_callback.rb
|
388
453
|
- lib/bandwidth-sdk/models/recording_complete_callback.rb
|
389
454
|
- lib/bandwidth-sdk/models/recording_state_enum.rb
|
@@ -391,6 +456,8 @@ files:
|
|
391
456
|
- lib/bandwidth-sdk/models/recording_transcriptions.rb
|
392
457
|
- lib/bandwidth-sdk/models/redirect_callback.rb
|
393
458
|
- lib/bandwidth-sdk/models/redirect_method_enum.rb
|
459
|
+
- lib/bandwidth-sdk/models/sms_message_content.rb
|
460
|
+
- lib/bandwidth-sdk/models/standalone_card_orientation_enum.rb
|
394
461
|
- lib/bandwidth-sdk/models/stir_shaken.rb
|
395
462
|
- lib/bandwidth-sdk/models/tag.rb
|
396
463
|
- lib/bandwidth-sdk/models/telephone_number.rb
|
@@ -401,6 +468,7 @@ files:
|
|
401
468
|
- lib/bandwidth-sdk/models/tfv_status_enum.rb
|
402
469
|
- lib/bandwidth-sdk/models/tfv_submission_info.rb
|
403
470
|
- lib/bandwidth-sdk/models/tfv_submission_wrapper.rb
|
471
|
+
- lib/bandwidth-sdk/models/thumbnail_alignment_enum.rb
|
404
472
|
- lib/bandwidth-sdk/models/tn_lookup_request_error.rb
|
405
473
|
- lib/bandwidth-sdk/models/transcribe_recording.rb
|
406
474
|
- lib/bandwidth-sdk/models/transcription.rb
|
@@ -435,6 +503,7 @@ files:
|
|
435
503
|
- spec/smoke/media_api_spec.rb
|
436
504
|
- spec/smoke/messages_api_spec.rb
|
437
505
|
- spec/smoke/mfa_api_spec.rb
|
506
|
+
- spec/smoke/multi_channel_api_spec.rb
|
438
507
|
- spec/smoke/phone_number_lookup_api_spec.rb
|
439
508
|
- spec/smoke/recordings_api_spec.rb
|
440
509
|
- spec/smoke/statistics_api_spec.rb
|
@@ -446,6 +515,7 @@ files:
|
|
446
515
|
- spec/unit/api/media_api_spec.rb
|
447
516
|
- spec/unit/api/messages_api_spec.rb
|
448
517
|
- spec/unit/api/mfa_api_spec.rb
|
518
|
+
- spec/unit/api/multi_channel_api_spec.rb
|
449
519
|
- spec/unit/api/phone_number_lookup_api_spec.rb
|
450
520
|
- spec/unit/api/recordings_api_spec.rb
|
451
521
|
- spec/unit/api/statistics_api_spec.rb
|
@@ -517,64 +587,66 @@ summary: Bandwidth Ruby SDK
|
|
517
587
|
test_files:
|
518
588
|
- spec/call_utils.rb
|
519
589
|
- spec/fixtures/ruby_cat.jpeg
|
520
|
-
- spec/smoke/
|
521
|
-
- spec/smoke/
|
522
|
-
- spec/smoke/media_api_spec.rb
|
590
|
+
- spec/smoke/recordings_api_spec.rb
|
591
|
+
- spec/smoke/multi_channel_api_spec.rb
|
523
592
|
- spec/smoke/phone_number_lookup_api_spec.rb
|
524
593
|
- spec/smoke/statistics_api_spec.rb
|
525
|
-
- spec/smoke/messages_api_spec.rb
|
526
|
-
- spec/smoke/calls_api_spec.rb
|
527
594
|
- spec/smoke/conferences_api_spec.rb
|
595
|
+
- spec/smoke/mfa_api_spec.rb
|
596
|
+
- spec/smoke/transcriptions_api_spec.rb
|
597
|
+
- spec/smoke/media_api_spec.rb
|
528
598
|
- spec/smoke/toll_free_verification_api_spec.rb
|
529
|
-
- spec/smoke/
|
599
|
+
- spec/smoke/messages_api_spec.rb
|
600
|
+
- spec/smoke/calls_api_spec.rb
|
530
601
|
- spec/spec_helper.rb
|
602
|
+
- spec/unit/client/api_error_spec.rb
|
603
|
+
- spec/unit/client/configuration_spec.rb
|
604
|
+
- spec/unit/client/api_client_spec.rb
|
605
|
+
- spec/unit/api/recordings_api_spec.rb
|
606
|
+
- spec/unit/api/multi_channel_api_spec.rb
|
607
|
+
- spec/unit/api/phone_number_lookup_api_spec.rb
|
608
|
+
- spec/unit/api/statistics_api_spec.rb
|
609
|
+
- spec/unit/api/conferences_api_spec.rb
|
610
|
+
- spec/unit/api/mfa_api_spec.rb
|
611
|
+
- spec/unit/api/transcriptions_api_spec.rb
|
612
|
+
- spec/unit/api/media_api_spec.rb
|
613
|
+
- spec/unit/api/toll_free_verification_api_spec.rb
|
614
|
+
- spec/unit/api/messages_api_spec.rb
|
615
|
+
- spec/unit/api/calls_api_spec.rb
|
616
|
+
- spec/unit/models/call_state_enum_spec.rb
|
531
617
|
- spec/unit/models/verify_code_request_spec.rb
|
618
|
+
- spec/unit/models/deferred_result_spec.rb
|
532
619
|
- spec/unit/models/message_spec.rb
|
533
|
-
- spec/unit/models/
|
534
|
-
- spec/unit/models/bxml/nestable_verb_spec.rb
|
620
|
+
- spec/unit/models/call_state_spec.rb
|
535
621
|
- spec/unit/models/bxml/bxml_spec.rb
|
622
|
+
- spec/unit/models/bxml/nestable_verb_spec.rb
|
536
623
|
- spec/unit/models/bxml/response_spec.rb
|
537
624
|
- spec/unit/models/bxml/verb_spec.rb
|
538
|
-
- spec/unit/models/bxml/verbs/ring_spec.rb
|
539
625
|
- spec/unit/models/bxml/verbs/start_recording_spec.rb
|
540
|
-
- spec/unit/models/bxml/verbs/
|
541
|
-
- spec/unit/models/bxml/verbs/forward_spec.rb
|
542
|
-
- spec/unit/models/bxml/verbs/sip_uri_spec.rb
|
543
|
-
- spec/unit/models/bxml/verbs/record_spec.rb
|
544
|
-
- spec/unit/models/bxml/verbs/speak_sentence_spec.rb
|
545
|
-
- spec/unit/models/bxml/verbs/send_dtmf_spec.rb
|
546
|
-
- spec/unit/models/bxml/verbs/phone_number_spec.rb
|
626
|
+
- spec/unit/models/bxml/verbs/stop_gather_spec.rb
|
547
627
|
- spec/unit/models/bxml/verbs/pause_spec.rb
|
548
|
-
- spec/unit/models/bxml/verbs/
|
549
|
-
- spec/unit/models/bxml/verbs/start_transcription_spec.rb
|
550
|
-
- spec/unit/models/bxml/verbs/resume_recording_spec.rb
|
628
|
+
- spec/unit/models/bxml/verbs/stop_transcription_spec.rb
|
551
629
|
- spec/unit/models/bxml/verbs/stop_recording_spec.rb
|
552
630
|
- spec/unit/models/bxml/verbs/pause_recording_spec.rb
|
631
|
+
- spec/unit/models/bxml/verbs/sip_uri_spec.rb
|
632
|
+
- spec/unit/models/bxml/verbs/send_dtmf_spec.rb
|
553
633
|
- spec/unit/models/bxml/verbs/redirect_spec.rb
|
554
|
-
- spec/unit/models/bxml/verbs/
|
555
|
-
- spec/unit/models/bxml/verbs/
|
634
|
+
- spec/unit/models/bxml/verbs/speak_sentence_spec.rb
|
635
|
+
- spec/unit/models/bxml/verbs/start_stream_spec.rb
|
556
636
|
- spec/unit/models/bxml/verbs/conference_spec.rb
|
557
|
-
- spec/unit/models/bxml/verbs/gather_spec.rb
|
558
|
-
- spec/unit/models/bxml/verbs/play_audio_spec.rb
|
559
|
-
- spec/unit/models/bxml/verbs/stop_transcription_spec.rb
|
560
637
|
- spec/unit/models/bxml/verbs/bridge_spec.rb
|
561
|
-
- spec/unit/models/bxml/verbs/start_gather_spec.rb
|
562
|
-
- spec/unit/models/bxml/verbs/start_stream_spec.rb
|
563
|
-
- spec/unit/models/bxml/verbs/stream_param_spec.rb
|
564
638
|
- spec/unit/models/bxml/verbs/hangup_spec.rb
|
565
|
-
- spec/unit/models/bxml/verbs/
|
566
|
-
- spec/unit/models/
|
567
|
-
- spec/unit/models/
|
568
|
-
- spec/unit/
|
569
|
-
- spec/unit/
|
570
|
-
- spec/unit/
|
571
|
-
- spec/unit/
|
572
|
-
- spec/unit/
|
573
|
-
- spec/unit/
|
574
|
-
- spec/unit/
|
575
|
-
- spec/unit/
|
576
|
-
- spec/unit/
|
577
|
-
- spec/unit/
|
578
|
-
- spec/unit/
|
579
|
-
- spec/unit/client/configuration_spec.rb
|
580
|
-
- spec/unit/client/api_error_spec.rb
|
639
|
+
- spec/unit/models/bxml/verbs/forward_spec.rb
|
640
|
+
- spec/unit/models/bxml/verbs/record_spec.rb
|
641
|
+
- spec/unit/models/bxml/verbs/custom_param_spec.rb
|
642
|
+
- spec/unit/models/bxml/verbs/start_transcription_spec.rb
|
643
|
+
- spec/unit/models/bxml/verbs/play_audio_spec.rb
|
644
|
+
- spec/unit/models/bxml/verbs/resume_recording_spec.rb
|
645
|
+
- spec/unit/models/bxml/verbs/ring_spec.rb
|
646
|
+
- spec/unit/models/bxml/verbs/stop_stream_spec.rb
|
647
|
+
- spec/unit/models/bxml/verbs/stream_param_spec.rb
|
648
|
+
- spec/unit/models/bxml/verbs/tag_spec.rb
|
649
|
+
- spec/unit/models/bxml/verbs/start_gather_spec.rb
|
650
|
+
- spec/unit/models/bxml/verbs/phone_number_spec.rb
|
651
|
+
- spec/unit/models/bxml/verbs/gather_spec.rb
|
652
|
+
- spec/unit/models/bxml/verbs/transfer_spec.rb
|