mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-28 08:49:42 +02:00
Initial Commit 🚀 🚀
This commit is contained in:
commit
4f2a629340
444 changed files with 76863 additions and 0 deletions
25
ui/src/constants/dispositionCodes.ts
Normal file
25
ui/src/constants/dispositionCodes.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* Centralized disposition codes used throughout the application
|
||||
* Update this array when adding new disposition codes
|
||||
*/
|
||||
export const DISPOSITION_CODES = [
|
||||
'CALLBK',
|
||||
'call_duration_exceeded',
|
||||
'DAIR',
|
||||
'DNC',
|
||||
'HU',
|
||||
'LB',
|
||||
'ND',
|
||||
'NIBP',
|
||||
'NQ',
|
||||
'system_connect_error',
|
||||
'unknown',
|
||||
'user_disqualified',
|
||||
'user_idle_max_duration_exceeded',
|
||||
'VM',
|
||||
'voicemail_detected',
|
||||
'WN',
|
||||
'XFER',
|
||||
] as const;
|
||||
|
||||
export type DispositionCode = typeof DISPOSITION_CODES[number];
|
||||
Loading…
Add table
Add a link
Reference in a new issue