1 /** 2 * The type of (redux) action which signals that sip GW service change its 3 * availability status. 4 * 5 * { 6 * type: SIP_GW_AVAILABILITY_CHANGED, 7 * status: string 8 * } 9 */ 10 export const SIP_GW_AVAILABILITY_CHANGED 11 = 'SIP_GW_AVAILABILITY_CHANGED'; 12 13 /** 14 * The type of the action which signals to invite room participants to the 15 * conference through the SIP Jibri service. 16 * 17 * { 18 * type: SIP_GW_INVITE_ROOMS, 19 * conference: JitsiConference, 20 * rooms: {Immutable.List} 21 * } 22 */ 23 export const SIP_GW_INVITE_ROOMS = 'SIP_GW_INVITE_ROOMS';