"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7328/react/features/invite/actionTypes.ts" (8 Jun 2023, 1768 Bytes) of package /linux/misc/jitsi-meet-7328.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 /**
2 * The type of redux action which will add pending invite request to the redux
3 * store.
4 *
5 * {
6 * type: ADD_PENDING_INVITE_REQUEST,
7 * request: Object
8 * }
9 */
10 export const ADD_PENDING_INVITE_REQUEST = 'ADD_PENDING_INVITE_REQUEST';
11
12 /**
13 * The type of the (redux) action which signals that a click/tap has been
14 * performed on {@link InviteButton} and that the execution flow for
15 * adding/inviting people to the current conference/meeting is to begin.
16 *
17 * {
18 * type: BEGIN_ADD_PEOPLE
19 * }
20 */
21 export const BEGIN_ADD_PEOPLE = 'BEGIN_ADD_PEOPLE';
22
23 /**
24 * The type of redux action which will remove pending invite requests from the
25 * redux store.
26 *
27 * {
28 * type: REMOVE_PENDING_INVITE_REQUESTS
29 * }
30 */
31 export const REMOVE_PENDING_INVITE_REQUESTS
32 = 'REMOVE_PENDING_INVITE_REQUESTS';
33
34 /**
35 * The type of redux action which sets the visibility of {@code CalleeInfo}.
36 *
37 * {
38 * type: SET_CALLEE_INFO_VISIBLE,
39 * calleeInfoVisible: boolean
40 * }
41 */
42 export const SET_CALLEE_INFO_VISIBLE = 'SET_CALLEE_INFO_VISIBLE';
43
44 /**
45 * The type of redux action to signal that the {@code AddPeopleDialog} should close.
46 */
47 export const HIDE_ADD_PEOPLE_DIALOG = 'HIDE_ADD_PEOPLE_DIALOG';
48
49 /**
50 * The type of the action which signals an error occurred while requesting dial-
51 * in numbers.
52 *
53 * {
54 * type: UPDATE_DIAL_IN_NUMBERS_FAILED,
55 * error: Object
56 * }
57 */
58 export const UPDATE_DIAL_IN_NUMBERS_FAILED
59 = 'UPDATE_DIAL_IN_NUMBERS_FAILED';
60
61 /**
62 * The type of the action which signals a request for dial-in numbers has
63 * succeeded.
64 *
65 * {
66 * type: UPDATE_DIAL_IN_NUMBERS_SUCCESS,
67 * conferenceID: Object,
68 * dialInNumbers: Object
69 * }
70 */
71 export const UPDATE_DIAL_IN_NUMBERS_SUCCESS
72 = 'UPDATE_DIAL_IN_NUMBERS_SUCCESS';