Skip to content

Commit

Permalink
fix: Add missing advanced machine detection mode (#947)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-vanhees-micoworks authored Jul 23, 2024
1 parent 78eab81 commit f2cc9c1
Showing 1 changed file with 7 additions and 2 deletions.
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',
}

0 comments on commit f2cc9c1

Please sign in to comment.