1 /** 2 * JaaS customer statuses which represent their account state. 3 */ 4 export const STATUSES = { 5 ACTIVE: 'ACTIVE', 6 BLOCKED: 'BLOCKED' 7 }; 8 9 /** 10 * URL for displaying JaaS upgrade options. 11 */ 12 export const JAAS_UPGRADE_URL = 'https://jaas.8x8.vc/#/plan/upgrade'; 13 14 /** 15 * The prefix for the vpaas tenant. 16 */ 17 export const VPAAS_TENANT_PREFIX = 'vpaas-magic-cookie-';