mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export const MESSAGE_STATUS = {
 | 
						|
  FAILED: 'failed',
 | 
						|
  SENT: 'sent',
 | 
						|
  PROGRESS: 'progress',
 | 
						|
};
 | 
						|
 | 
						|
export const MESSAGE_TYPE = {
 | 
						|
  INCOMING: 0,
 | 
						|
  OUTGOING: 1,
 | 
						|
  ACTIVITY: 2,
 | 
						|
  TEMPLATE: 3,
 | 
						|
};
 |