File tree Expand file tree Collapse file tree 5 files changed +223
-223
lines changed Expand file tree Collapse file tree 5 files changed +223
-223
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
deploy :
10
- name : Validate SDK
10
+ name : Validate SDK
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
24
24
USER_NUMBER : ${{ secrets.USER_NUMBER }}
25
25
BASE_CALLBACK_URL : ${{ secrets.BASE_CALLBACK_URL }}
26
26
-
uses :
Bandwidth/[email protected]
27
- if : always()
27
+ if : failure() && !github.event.pull_request.draft
28
28
with :
29
29
job-status : ${{ job.status }}
30
30
slack-bot-token : ${{ secrets.SLACK_BOT_TOKEN }}
Original file line number Diff line number Diff line change 17
17
require_relative 'voice/models/conference_state.rb'
18
18
require_relative 'voice/models/conference_member_state.rb'
19
19
require_relative 'voice/models/conference_recording_metadata.rb'
20
- require_relative 'voice/models/machine_detection_request .rb'
20
+ require_relative 'voice/models/machine_detection_configuration .rb'
21
21
require_relative 'voice/models/transcribe_recording_request.rb'
22
22
require_relative 'voice/models/transcription_response.rb'
23
23
require_relative 'voice/models/transcription_metadata.rb'
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ def self.from_hash(hash)
274
274
disconnect_method =
275
275
hash . key? ( 'disconnectMethod' ) ? hash [ 'disconnectMethod' ] : SKIP
276
276
tag = hash . key? ( 'tag' ) ? hash [ 'tag' ] : SKIP
277
- machine_detection = MachineDetectionRequest . from_hash ( hash [ 'machineDetection' ] ) if
277
+ machine_detection = MachineDetectionConfiguration . from_hash ( hash [ 'machineDetection' ] ) if
278
278
hash [ 'machineDetection' ]
279
279
280
280
# Create object from extracted values.
You can’t perform that action at this time.
0 commit comments