bandwidth-sdk 3.8.0 → 3.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bandwidth.rb +24 -1
- data/lib/bandwidth/client.rb +2 -0
- data/lib/bandwidth/configuration.rb +23 -4
- data/lib/bandwidth/messaging_lib/messaging/client.rb +2 -0
- data/lib/bandwidth/messaging_lib/messaging/controllers/base_controller.rb +1 -1
- data/lib/bandwidth/two_factor_auth_lib/two_factor_auth/client.rb +2 -0
- data/lib/bandwidth/two_factor_auth_lib/two_factor_auth/controllers/base_controller.rb +1 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/bridge.rb +7 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/conference.rb +5 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/gather.rb +5 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/phone_number.rb +5 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/record.rb +5 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/redirect.rb +5 -1
- data/lib/bandwidth/voice_lib/bxml/verbs/ring.rb +15 -0
- data/lib/bandwidth/voice_lib/bxml/verbs/start_gather.rb +20 -0
- data/lib/bandwidth/voice_lib/bxml/verbs/stop_gather.rb +14 -0
- data/lib/bandwidth/voice_lib/bxml/verbs/transfer.rb +5 -1
- data/lib/bandwidth/voice_lib/voice.rb +5 -2
- data/lib/bandwidth/voice_lib/voice/client.rb +2 -0
- data/lib/bandwidth/voice_lib/voice/controllers/api_controller.rb +416 -16
- data/lib/bandwidth/voice_lib/voice/controllers/base_controller.rb +1 -1
- data/lib/bandwidth/voice_lib/voice/models/answer_fallback_method_enum.rb +17 -0
- data/lib/bandwidth/voice_lib/voice/models/api_call_response.rb +45 -0
- data/lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb +45 -0
- data/lib/bandwidth/voice_lib/voice/models/api_modify_call_request.rb +36 -0
- data/lib/bandwidth/voice_lib/voice/models/api_transcribe_recording_request.rb +11 -2
- data/lib/bandwidth/voice_lib/voice/models/call_engine_modify_conference_request.rb +74 -2
- data/lib/bandwidth/voice_lib/voice/models/conference_detail.rb +7 -4
- data/lib/bandwidth/voice_lib/voice/models/conference_recording_metadata_response.rb +126 -0
- data/lib/bandwidth/voice_lib/voice/models/recording_metadata_response.rb +32 -4
- data/lib/bandwidth/voice_lib/voice/models/redirect_fallback_method_enum.rb +17 -0
- data/lib/bandwidth/voice_lib/voice/models/state_enum.rb +3 -3
- data/lib/bandwidth/voice_lib/voice/models/status1_enum.rb +4 -1
- data/lib/bandwidth/voice_lib/voice/models/{status2_enum.rb → status3_enum.rb} +3 -3
- data/lib/bandwidth/voice_lib/voice/models/transcription.rb +1 -1
- data/lib/bandwidth/web_rtc_lib/utils/web_rtc_transfer.rb +13 -0
- data/lib/bandwidth/web_rtc_lib/web_rtc/client.rb +2 -0
- data/lib/bandwidth/web_rtc_lib/web_rtc/controllers/base_controller.rb +1 -1
- metadata +30 -11
@@ -3,6 +3,7 @@
|
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
+
require 'date'
|
6
7
|
module Bandwidth
|
7
8
|
# ConferenceDetail Model.
|
8
9
|
class ConferenceDetail < BaseModel
|
@@ -15,11 +16,11 @@ module Bandwidth
|
|
15
16
|
attr_accessor :name
|
16
17
|
|
17
18
|
# TODO: Write general description for this method
|
18
|
-
# @return [
|
19
|
+
# @return [DateTime]
|
19
20
|
attr_accessor :created_time
|
20
21
|
|
21
22
|
# TODO: Write general description for this method
|
22
|
-
# @return [
|
23
|
+
# @return [DateTime]
|
23
24
|
attr_accessor :completed_time
|
24
25
|
|
25
26
|
# TODO: Write general description for this method
|
@@ -77,8 +78,10 @@ module Bandwidth
|
|
77
78
|
# Extract variables from the hash.
|
78
79
|
id = hash['id']
|
79
80
|
name = hash['name']
|
80
|
-
created_time = hash['createdTime']
|
81
|
-
|
81
|
+
created_time = APIHelper.rfc3339(hash['createdTime']) if
|
82
|
+
hash['createdTime']
|
83
|
+
completed_time = APIHelper.rfc3339(hash['completedTime']) if
|
84
|
+
hash['completedTime']
|
82
85
|
conference_event_url = hash['conferenceEventUrl']
|
83
86
|
conference_event_method = hash['conferenceEventMethod']
|
84
87
|
tag = hash['tag']
|
@@ -0,0 +1,126 @@
|
|
1
|
+
# bandwidth
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
require 'date'
|
7
|
+
module Bandwidth
|
8
|
+
# ConferenceRecordingMetadataResponse Model.
|
9
|
+
class ConferenceRecordingMetadataResponse < BaseModel
|
10
|
+
# TODO: Write general description for this method
|
11
|
+
# @return [String]
|
12
|
+
attr_accessor :account_id
|
13
|
+
|
14
|
+
# TODO: Write general description for this method
|
15
|
+
# @return [String]
|
16
|
+
attr_accessor :conference_id
|
17
|
+
|
18
|
+
# TODO: Write general description for this method
|
19
|
+
# @return [String]
|
20
|
+
attr_accessor :name
|
21
|
+
|
22
|
+
# TODO: Write general description for this method
|
23
|
+
# @return [String]
|
24
|
+
attr_accessor :recording_id
|
25
|
+
|
26
|
+
# Format is ISO-8601
|
27
|
+
# @return [String]
|
28
|
+
attr_accessor :duration
|
29
|
+
|
30
|
+
# Format is ISO-8601
|
31
|
+
# @return [Integer]
|
32
|
+
attr_accessor :channels
|
33
|
+
|
34
|
+
# Format is ISO-8601
|
35
|
+
# @return [DateTime]
|
36
|
+
attr_accessor :start_time
|
37
|
+
|
38
|
+
# Format is ISO-8601
|
39
|
+
# @return [DateTime]
|
40
|
+
attr_accessor :end_time
|
41
|
+
|
42
|
+
# Format is ISO-8601
|
43
|
+
# @return [FileFormatEnum]
|
44
|
+
attr_accessor :file_format
|
45
|
+
|
46
|
+
# Format is ISO-8601
|
47
|
+
# @return [Status1Enum]
|
48
|
+
attr_accessor :status
|
49
|
+
|
50
|
+
# Format is ISO-8601
|
51
|
+
# @return [String]
|
52
|
+
attr_accessor :media_url
|
53
|
+
|
54
|
+
# A mapping from model property names to API property names.
|
55
|
+
def self.names
|
56
|
+
@_hash = {} if @_hash.nil?
|
57
|
+
@_hash['account_id'] = 'accountId'
|
58
|
+
@_hash['conference_id'] = 'conferenceId'
|
59
|
+
@_hash['name'] = 'name'
|
60
|
+
@_hash['recording_id'] = 'recordingId'
|
61
|
+
@_hash['duration'] = 'duration'
|
62
|
+
@_hash['channels'] = 'channels'
|
63
|
+
@_hash['start_time'] = 'startTime'
|
64
|
+
@_hash['end_time'] = 'endTime'
|
65
|
+
@_hash['file_format'] = 'fileFormat'
|
66
|
+
@_hash['status'] = 'status'
|
67
|
+
@_hash['media_url'] = 'mediaUrl'
|
68
|
+
@_hash
|
69
|
+
end
|
70
|
+
|
71
|
+
def initialize(account_id = nil,
|
72
|
+
conference_id = nil,
|
73
|
+
name = nil,
|
74
|
+
recording_id = nil,
|
75
|
+
duration = nil,
|
76
|
+
channels = nil,
|
77
|
+
start_time = nil,
|
78
|
+
end_time = nil,
|
79
|
+
file_format = nil,
|
80
|
+
status = nil,
|
81
|
+
media_url = nil)
|
82
|
+
@account_id = account_id
|
83
|
+
@conference_id = conference_id
|
84
|
+
@name = name
|
85
|
+
@recording_id = recording_id
|
86
|
+
@duration = duration
|
87
|
+
@channels = channels
|
88
|
+
@start_time = start_time
|
89
|
+
@end_time = end_time
|
90
|
+
@file_format = file_format
|
91
|
+
@status = status
|
92
|
+
@media_url = media_url
|
93
|
+
end
|
94
|
+
|
95
|
+
# Creates an instance of the object from a hash.
|
96
|
+
def self.from_hash(hash)
|
97
|
+
return nil unless hash
|
98
|
+
|
99
|
+
# Extract variables from the hash.
|
100
|
+
account_id = hash['accountId']
|
101
|
+
conference_id = hash['conferenceId']
|
102
|
+
name = hash['name']
|
103
|
+
recording_id = hash['recordingId']
|
104
|
+
duration = hash['duration']
|
105
|
+
channels = hash['channels']
|
106
|
+
start_time = APIHelper.rfc3339(hash['startTime']) if hash['startTime']
|
107
|
+
end_time = APIHelper.rfc3339(hash['endTime']) if hash['endTime']
|
108
|
+
file_format = hash['fileFormat']
|
109
|
+
status = hash['status']
|
110
|
+
media_url = hash['mediaUrl']
|
111
|
+
|
112
|
+
# Create object from extracted values.
|
113
|
+
ConferenceRecordingMetadataResponse.new(account_id,
|
114
|
+
conference_id,
|
115
|
+
name,
|
116
|
+
recording_id,
|
117
|
+
duration,
|
118
|
+
channels,
|
119
|
+
start_time,
|
120
|
+
end_time,
|
121
|
+
file_format,
|
122
|
+
status,
|
123
|
+
media_url)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
@@ -3,6 +3,7 @@
|
|
3
3
|
# This file was automatically generated by APIMATIC v2.0
|
4
4
|
# ( https://apimatic.io ).
|
5
5
|
|
6
|
+
require 'date'
|
6
7
|
module Bandwidth
|
7
8
|
# RecordingMetadataResponse Model.
|
8
9
|
class RecordingMetadataResponse < BaseModel
|
@@ -18,6 +19,10 @@ module Bandwidth
|
|
18
19
|
# @return [String]
|
19
20
|
attr_accessor :call_id
|
20
21
|
|
22
|
+
# TODO: Write general description for this method
|
23
|
+
# @return [String]
|
24
|
+
attr_accessor :parent_call_id
|
25
|
+
|
21
26
|
# TODO: Write general description for this method
|
22
27
|
# @return [String]
|
23
28
|
attr_accessor :recording_id
|
@@ -30,6 +35,14 @@ module Bandwidth
|
|
30
35
|
# @return [String]
|
31
36
|
attr_accessor :from
|
32
37
|
|
38
|
+
# TODO: Write general description for this method
|
39
|
+
# @return [String]
|
40
|
+
attr_accessor :transfer_caller_id
|
41
|
+
|
42
|
+
# TODO: Write general description for this method
|
43
|
+
# @return [String]
|
44
|
+
attr_accessor :transfer_to
|
45
|
+
|
33
46
|
# Format is ISO-8601
|
34
47
|
# @return [String]
|
35
48
|
attr_accessor :duration
|
@@ -43,11 +56,11 @@ module Bandwidth
|
|
43
56
|
attr_accessor :channels
|
44
57
|
|
45
58
|
# Format is ISO-8601
|
46
|
-
# @return [
|
59
|
+
# @return [DateTime]
|
47
60
|
attr_accessor :start_time
|
48
61
|
|
49
62
|
# Format is ISO-8601
|
50
|
-
# @return [
|
63
|
+
# @return [DateTime]
|
51
64
|
attr_accessor :end_time
|
52
65
|
|
53
66
|
# Format is ISO-8601
|
@@ -72,9 +85,12 @@ module Bandwidth
|
|
72
85
|
@_hash['application_id'] = 'applicationId'
|
73
86
|
@_hash['account_id'] = 'accountId'
|
74
87
|
@_hash['call_id'] = 'callId'
|
88
|
+
@_hash['parent_call_id'] = 'parentCallId'
|
75
89
|
@_hash['recording_id'] = 'recordingId'
|
76
90
|
@_hash['to'] = 'to'
|
77
91
|
@_hash['from'] = 'from'
|
92
|
+
@_hash['transfer_caller_id'] = 'transferCallerId'
|
93
|
+
@_hash['transfer_to'] = 'transferTo'
|
78
94
|
@_hash['duration'] = 'duration'
|
79
95
|
@_hash['direction'] = 'direction'
|
80
96
|
@_hash['channels'] = 'channels'
|
@@ -90,9 +106,12 @@ module Bandwidth
|
|
90
106
|
def initialize(application_id = nil,
|
91
107
|
account_id = nil,
|
92
108
|
call_id = nil,
|
109
|
+
parent_call_id = nil,
|
93
110
|
recording_id = nil,
|
94
111
|
to = nil,
|
95
112
|
from = nil,
|
113
|
+
transfer_caller_id = nil,
|
114
|
+
transfer_to = nil,
|
96
115
|
duration = nil,
|
97
116
|
direction = nil,
|
98
117
|
channels = nil,
|
@@ -105,9 +124,12 @@ module Bandwidth
|
|
105
124
|
@application_id = application_id
|
106
125
|
@account_id = account_id
|
107
126
|
@call_id = call_id
|
127
|
+
@parent_call_id = parent_call_id
|
108
128
|
@recording_id = recording_id
|
109
129
|
@to = to
|
110
130
|
@from = from
|
131
|
+
@transfer_caller_id = transfer_caller_id
|
132
|
+
@transfer_to = transfer_to
|
111
133
|
@duration = duration
|
112
134
|
@direction = direction
|
113
135
|
@channels = channels
|
@@ -127,14 +149,17 @@ module Bandwidth
|
|
127
149
|
application_id = hash['applicationId']
|
128
150
|
account_id = hash['accountId']
|
129
151
|
call_id = hash['callId']
|
152
|
+
parent_call_id = hash['parentCallId']
|
130
153
|
recording_id = hash['recordingId']
|
131
154
|
to = hash['to']
|
132
155
|
from = hash['from']
|
156
|
+
transfer_caller_id = hash['transferCallerId']
|
157
|
+
transfer_to = hash['transferTo']
|
133
158
|
duration = hash['duration']
|
134
159
|
direction = hash['direction']
|
135
160
|
channels = hash['channels']
|
136
|
-
start_time = hash['startTime']
|
137
|
-
end_time = hash['endTime']
|
161
|
+
start_time = APIHelper.rfc3339(hash['startTime']) if hash['startTime']
|
162
|
+
end_time = APIHelper.rfc3339(hash['endTime']) if hash['endTime']
|
138
163
|
file_format = hash['fileFormat']
|
139
164
|
status = hash['status']
|
140
165
|
media_url = hash['mediaUrl']
|
@@ -145,9 +170,12 @@ module Bandwidth
|
|
145
170
|
RecordingMetadataResponse.new(application_id,
|
146
171
|
account_id,
|
147
172
|
call_id,
|
173
|
+
parent_call_id,
|
148
174
|
recording_id,
|
149
175
|
to,
|
150
176
|
from,
|
177
|
+
transfer_caller_id,
|
178
|
+
transfer_to,
|
151
179
|
duration,
|
152
180
|
direction,
|
153
181
|
channels,
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# bandwidth
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module Bandwidth
|
7
|
+
# RedirectFallbackMethod.
|
8
|
+
class RedirectFallbackMethodEnum
|
9
|
+
REDIRECT_FALLBACK_METHOD_ENUM = [
|
10
|
+
# TODO: Write general description for POST
|
11
|
+
POST = 'POST'.freeze,
|
12
|
+
|
13
|
+
# TODO: Write general description for GET
|
14
|
+
GET = 'GET'.freeze
|
15
|
+
].freeze
|
16
|
+
end
|
17
|
+
end
|
@@ -8,13 +8,13 @@ module Bandwidth
|
|
8
8
|
class StateEnum
|
9
9
|
STATE_ENUM = [
|
10
10
|
# TODO: Write general description for DISCONNECTED
|
11
|
-
DISCONNECTED = '
|
11
|
+
DISCONNECTED = 'disconnected'.freeze,
|
12
12
|
|
13
13
|
# TODO: Write general description for ANSWERED
|
14
|
-
ANSWERED = '
|
14
|
+
ANSWERED = 'answered'.freeze,
|
15
15
|
|
16
16
|
# TODO: Write general description for INITIATED
|
17
|
-
INITIATED = '
|
17
|
+
INITIATED = 'initiated'.freeze
|
18
18
|
].freeze
|
19
19
|
end
|
20
20
|
end
|
@@ -20,7 +20,10 @@ module Bandwidth
|
|
20
20
|
DELETED = 'deleted'.freeze,
|
21
21
|
|
22
22
|
# TODO: Write general description for ERROR
|
23
|
-
ERROR = 'error'.freeze
|
23
|
+
ERROR = 'error'.freeze,
|
24
|
+
|
25
|
+
# TODO: Write general description for ALREADYINPROGRESS
|
26
|
+
ALREADYINPROGRESS = 'already-in-progress'.freeze
|
24
27
|
].freeze
|
25
28
|
end
|
26
29
|
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# web_rtc_transfer.rb
|
2
|
+
#
|
3
|
+
# Custom transfer BXML for WebRtc
|
4
|
+
#
|
5
|
+
# @copyright Bandwidth INC
|
6
|
+
|
7
|
+
module Bandwidth
|
8
|
+
module WebRtc
|
9
|
+
def generate_bxml(device_token, sip_uri="sip:sipx.webrtc.bandwidth.com:5060")
|
10
|
+
return '<?xml version="1.0" encoding="UTF-8"?><Response><Transfer><SipUri uui="%s;encoding=jwt">%s</SipUri></Transfer></Response>' % [device_token, sip_uri]
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -17,6 +17,7 @@ module Bandwidth
|
|
17
17
|
|
18
18
|
def initialize(timeout: 60, max_retries: 0, retry_interval: 1,
|
19
19
|
backoff_factor: 1, environment: Environment::PRODUCTION,
|
20
|
+
base_url: 'https://www.example.com',
|
20
21
|
messaging_basic_auth_user_name: 'TODO: Replace',
|
21
22
|
messaging_basic_auth_password: 'TODO: Replace',
|
22
23
|
two_factor_auth_basic_auth_user_name: 'TODO: Replace',
|
@@ -32,6 +33,7 @@ module Bandwidth
|
|
32
33
|
retry_interval: retry_interval,
|
33
34
|
backoff_factor: backoff_factor,
|
34
35
|
environment: environment,
|
36
|
+
base_url: base_url,
|
35
37
|
messaging_basic_auth_user_name: messaging_basic_auth_user_name,
|
36
38
|
messaging_basic_auth_password: messaging_basic_auth_password,
|
37
39
|
two_factor_auth_basic_auth_user_name: two_factor_auth_basic_auth_user_name,
|
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: 3.
|
4
|
+
version: 3.12.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- APIMatic SDK Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logging
|
@@ -16,42 +16,48 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '2.
|
19
|
+
version: '2.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '2.
|
26
|
+
version: '2.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: faraday
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0
|
33
|
+
version: '1.0'
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 1.0.1
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
38
41
|
- - "~>"
|
39
42
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0
|
43
|
+
version: '1.0'
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.0.1
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: faraday_middleware
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
44
50
|
requirements:
|
45
51
|
- - "~>"
|
46
52
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0
|
53
|
+
version: '1.0'
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
51
57
|
requirements:
|
52
58
|
- - "~>"
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0
|
60
|
+
version: '1.0'
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: certifi
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,6 +65,9 @@ dependencies:
|
|
59
65
|
- - "~>"
|
60
66
|
- !ruby/object:Gem::Version
|
61
67
|
version: '2018.1'
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 2018.01.18
|
62
71
|
type: :runtime
|
63
72
|
prerelease: false
|
64
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -66,20 +75,23 @@ dependencies:
|
|
66
75
|
- - "~>"
|
67
76
|
- !ruby/object:Gem::Version
|
68
77
|
version: '2018.1'
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 2018.01.18
|
69
81
|
- !ruby/object:Gem::Dependency
|
70
82
|
name: faraday-http-cache
|
71
83
|
requirement: !ruby/object:Gem::Requirement
|
72
84
|
requirements:
|
73
85
|
- - "~>"
|
74
86
|
- !ruby/object:Gem::Version
|
75
|
-
version: '2.
|
87
|
+
version: '2.2'
|
76
88
|
type: :runtime
|
77
89
|
prerelease: false
|
78
90
|
version_requirements: !ruby/object:Gem::Requirement
|
79
91
|
requirements:
|
80
92
|
- - "~>"
|
81
93
|
- !ruby/object:Gem::Version
|
82
|
-
version: '2.
|
94
|
+
version: '2.2'
|
83
95
|
- !ruby/object:Gem::Dependency
|
84
96
|
name: builder
|
85
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,9 +166,12 @@ files:
|
|
154
166
|
- lib/bandwidth/voice_lib/bxml/verbs/record.rb
|
155
167
|
- lib/bandwidth/voice_lib/bxml/verbs/redirect.rb
|
156
168
|
- lib/bandwidth/voice_lib/bxml/verbs/resume_recording.rb
|
169
|
+
- lib/bandwidth/voice_lib/bxml/verbs/ring.rb
|
157
170
|
- lib/bandwidth/voice_lib/bxml/verbs/send_dtmf.rb
|
158
171
|
- lib/bandwidth/voice_lib/bxml/verbs/speak_sentence.rb
|
172
|
+
- lib/bandwidth/voice_lib/bxml/verbs/start_gather.rb
|
159
173
|
- lib/bandwidth/voice_lib/bxml/verbs/start_recording.rb
|
174
|
+
- lib/bandwidth/voice_lib/bxml/verbs/stop_gather.rb
|
160
175
|
- lib/bandwidth/voice_lib/bxml/verbs/stop_recording.rb
|
161
176
|
- lib/bandwidth/voice_lib/bxml/verbs/transfer.rb
|
162
177
|
- lib/bandwidth/voice_lib/bxml/verbs/xml_verb.rb
|
@@ -165,6 +180,7 @@ files:
|
|
165
180
|
- lib/bandwidth/voice_lib/voice/controllers/api_controller.rb
|
166
181
|
- lib/bandwidth/voice_lib/voice/controllers/base_controller.rb
|
167
182
|
- lib/bandwidth/voice_lib/voice/exceptions/api_error_response_exception.rb
|
183
|
+
- lib/bandwidth/voice_lib/voice/models/answer_fallback_method_enum.rb
|
168
184
|
- lib/bandwidth/voice_lib/voice/models/answer_method_enum.rb
|
169
185
|
- lib/bandwidth/voice_lib/voice/models/api_call_response.rb
|
170
186
|
- lib/bandwidth/voice_lib/voice/models/api_call_state_response.rb
|
@@ -176,22 +192,25 @@ files:
|
|
176
192
|
- lib/bandwidth/voice_lib/voice/models/conference_detail.rb
|
177
193
|
- lib/bandwidth/voice_lib/voice/models/conference_event_method_enum.rb
|
178
194
|
- lib/bandwidth/voice_lib/voice/models/conference_member_detail.rb
|
195
|
+
- lib/bandwidth/voice_lib/voice/models/conference_recording_metadata_response.rb
|
179
196
|
- lib/bandwidth/voice_lib/voice/models/direction_enum.rb
|
180
197
|
- lib/bandwidth/voice_lib/voice/models/disconnect_cause_enum.rb
|
181
198
|
- lib/bandwidth/voice_lib/voice/models/disconnect_method_enum.rb
|
182
199
|
- lib/bandwidth/voice_lib/voice/models/file_format_enum.rb
|
183
200
|
- lib/bandwidth/voice_lib/voice/models/modify_call_recording_state.rb
|
184
201
|
- lib/bandwidth/voice_lib/voice/models/recording_metadata_response.rb
|
202
|
+
- lib/bandwidth/voice_lib/voice/models/redirect_fallback_method_enum.rb
|
185
203
|
- lib/bandwidth/voice_lib/voice/models/redirect_method_enum.rb
|
186
204
|
- lib/bandwidth/voice_lib/voice/models/state1_enum.rb
|
187
205
|
- lib/bandwidth/voice_lib/voice/models/state2_enum.rb
|
188
206
|
- lib/bandwidth/voice_lib/voice/models/state_enum.rb
|
189
207
|
- lib/bandwidth/voice_lib/voice/models/status1_enum.rb
|
190
|
-
- lib/bandwidth/voice_lib/voice/models/
|
208
|
+
- lib/bandwidth/voice_lib/voice/models/status3_enum.rb
|
191
209
|
- lib/bandwidth/voice_lib/voice/models/status_enum.rb
|
192
210
|
- lib/bandwidth/voice_lib/voice/models/transcript.rb
|
193
211
|
- lib/bandwidth/voice_lib/voice/models/transcription.rb
|
194
212
|
- lib/bandwidth/voice_lib/voice/models/transcription_response.rb
|
213
|
+
- lib/bandwidth/web_rtc_lib/utils/web_rtc_transfer.rb
|
195
214
|
- lib/bandwidth/web_rtc_lib/web_rtc.rb
|
196
215
|
- lib/bandwidth/web_rtc_lib/web_rtc/client.rb
|
197
216
|
- lib/bandwidth/web_rtc_lib/web_rtc/controllers/api_controller.rb
|