You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 586B

12345678910111213141516171819202122232425
  1. /**
  2. * JaaS customer statuses which represent their account state
  3. */
  4. export const STATUSES = {
  5. ACTIVE: 'ACTIVE',
  6. BLOCKED: 'BLOCKED'
  7. };
  8. /**
  9. * Service features for JaaS users
  10. */
  11. export const FEATURES = {
  12. INBOUND_CALL: 'inbound-call',
  13. OUTBOUND_CALL: 'outbound-call',
  14. RECORDING: 'recording',
  15. SIP_INBOUND_CALL: 'sip-inbound-call',
  16. SIP_OUTBOUND_CALL: 'sip-outbound-call',
  17. STREAMING: 'streaming',
  18. TRANSCRIPTION: 'transcription'
  19. };
  20. /**
  21. * URL for displaying JaaS upgrade options
  22. */
  23. export const JAAS_UPGRADE_URL = 'https://jaas.8x8.vc/#/plan/upgrade';