Skip to content

fix: Add missing advanced machine detection mode #947

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions packages/voice/lib/enums/AdvancedMachineDetectionMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
*/
export enum AdvancedMachineDetectionMode {
/**
* Detect mode, used for advanced machine detection without beep detection.
* Default mode, used for advanced async machine detection, including beep detection.
*/
DEFAULT = 'default',

/**
* Detect mode, used for advanced sync machine detection without beep detection.
*/
DETECT = 'detect',

/**
* Detect beep mode, used for advanced machine detection with beep detection.
* Detect beep mode, used for advanced sync machine detection with beep detection.
*/
DETECTBEEP = 'detect_beep',
}
Loading