@webex/plugin-meetings 3.12.0-next.9 → 3.12.0-next.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +9 -0
- package/dist/aiEnableRequest/index.js +15 -2
- package/dist/aiEnableRequest/index.js.map +1 -1
- package/dist/breakouts/breakout.js +8 -3
- package/dist/breakouts/breakout.js.map +1 -1
- package/dist/breakouts/index.js +26 -2
- package/dist/breakouts/index.js.map +1 -1
- package/dist/config.js +2 -2
- package/dist/config.js.map +1 -1
- package/dist/constants.js +35 -9
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/constants.js +11 -1
- package/dist/controls-options-manager/constants.js.map +1 -1
- package/dist/controls-options-manager/index.js +67 -29
- package/dist/controls-options-manager/index.js.map +1 -1
- package/dist/controls-options-manager/util.js +91 -0
- package/dist/controls-options-manager/util.js.map +1 -1
- package/dist/hashTree/constants.js +13 -1
- package/dist/hashTree/constants.js.map +1 -1
- package/dist/hashTree/hashTreeParser.js +880 -382
- package/dist/hashTree/hashTreeParser.js.map +1 -1
- package/dist/hashTree/utils.js +42 -0
- package/dist/hashTree/utils.js.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/interceptors/dataChannelAuthToken.js +75 -15
- package/dist/interceptors/dataChannelAuthToken.js.map +1 -1
- package/dist/interceptors/locusRetry.js +23 -8
- package/dist/interceptors/locusRetry.js.map +1 -1
- package/dist/interpretation/index.js +10 -1
- package/dist/interpretation/index.js.map +1 -1
- package/dist/interpretation/interpretation.types.js +7 -0
- package/dist/interpretation/interpretation.types.js.map +1 -0
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/controlsUtils.js +4 -1
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/index.js +303 -88
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/infoUtils.js +36 -5
- package/dist/locus-info/infoUtils.js.map +1 -1
- package/dist/locus-info/types.js +19 -0
- package/dist/locus-info/types.js.map +1 -1
- package/dist/media/index.js +3 -1
- package/dist/media/index.js.map +1 -1
- package/dist/media/properties.js +1 -0
- package/dist/media/properties.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +5 -1
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +1233 -793
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/locusMediaRequest.js +229 -82
- package/dist/meeting/locusMediaRequest.js.map +1 -1
- package/dist/meeting/muteState.js +10 -1
- package/dist/meeting/muteState.js.map +1 -1
- package/dist/meeting/request.js +5 -2
- package/dist/meeting/request.js.map +1 -1
- package/dist/meeting/util.js +35 -2
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +2 -2
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meetings/index.js +231 -118
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/meetings.types.js +6 -1
- package/dist/meetings/meetings.types.js.map +1 -1
- package/dist/meetings/request.js +39 -0
- package/dist/meetings/request.js.map +1 -1
- package/dist/meetings/util.js +79 -5
- package/dist/meetings/util.js.map +1 -1
- package/dist/member/index.js +10 -0
- package/dist/member/index.js.map +1 -1
- package/dist/member/types.js.map +1 -1
- package/dist/member/util.js +30 -0
- package/dist/member/util.js.map +1 -1
- package/dist/members/index.js +101 -43
- package/dist/members/index.js.map +1 -1
- package/dist/members/util.js +8 -1
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/constants.js +5 -1
- package/dist/metrics/constants.js.map +1 -1
- package/dist/multistream/codec/constants.js +63 -0
- package/dist/multistream/codec/constants.js.map +1 -0
- package/dist/multistream/mediaRequestManager.js +62 -15
- package/dist/multistream/mediaRequestManager.js.map +1 -1
- package/dist/multistream/receiveSlot.js +9 -0
- package/dist/multistream/receiveSlot.js.map +1 -1
- package/dist/reachability/index.js +10 -13
- package/dist/reachability/index.js.map +1 -1
- package/dist/reachability/reachability.types.js +2 -0
- package/dist/reachability/reachability.types.js.map +1 -1
- package/dist/reachability/util.js +45 -0
- package/dist/reachability/util.js.map +1 -1
- package/dist/reactions/reactions.type.js.map +1 -1
- package/dist/recording-controller/index.js +1 -3
- package/dist/recording-controller/index.js.map +1 -1
- package/dist/types/config.d.ts +2 -2
- package/dist/types/constants.d.ts +12 -1
- package/dist/types/controls-options-manager/constants.d.ts +6 -1
- package/dist/types/controls-options-manager/index.d.ts +16 -0
- package/dist/types/hashTree/constants.d.ts +2 -0
- package/dist/types/hashTree/hashTreeParser.d.ts +146 -17
- package/dist/types/hashTree/utils.d.ts +18 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/interceptors/locusRetry.d.ts +4 -4
- package/dist/types/interpretation/interpretation.types.d.ts +10 -0
- package/dist/types/locus-info/index.d.ts +50 -6
- package/dist/types/locus-info/infoUtils.d.ts +8 -0
- package/dist/types/locus-info/types.d.ts +21 -1
- package/dist/types/media/properties.d.ts +1 -0
- package/dist/types/meeting/in-meeting-actions.d.ts +4 -0
- package/dist/types/meeting/index.d.ts +94 -7
- package/dist/types/meeting/locusMediaRequest.d.ts +12 -0
- package/dist/types/meeting/request.d.ts +1 -0
- package/dist/types/meeting/util.d.ts +9 -0
- package/dist/types/meetings/index.d.ts +30 -18
- package/dist/types/meetings/meetings.types.d.ts +15 -0
- package/dist/types/meetings/request.d.ts +14 -0
- package/dist/types/member/index.d.ts +1 -0
- package/dist/types/member/types.d.ts +1 -0
- package/dist/types/member/util.d.ts +9 -0
- package/dist/types/members/index.d.ts +15 -2
- package/dist/types/members/util.d.ts +1 -5
- package/dist/types/metrics/constants.d.ts +4 -0
- package/dist/types/multistream/codec/constants.d.ts +7 -0
- package/dist/types/multistream/mediaRequestManager.d.ts +22 -5
- package/dist/types/reachability/index.d.ts +1 -1
- package/dist/types/reachability/reachability.types.d.ts +7 -0
- package/dist/types/reachability/util.d.ts +17 -0
- package/dist/types/reactions/reactions.type.d.ts +3 -0
- package/dist/webinar/index.js +305 -159
- package/dist/webinar/index.js.map +1 -1
- package/package.json +22 -22
- package/src/aiEnableRequest/index.ts +16 -0
- package/src/breakouts/breakout.ts +3 -1
- package/src/breakouts/index.ts +31 -0
- package/src/config.ts +2 -2
- package/src/constants.ts +20 -3
- package/src/controls-options-manager/constants.ts +14 -1
- package/src/controls-options-manager/index.ts +87 -28
- package/src/controls-options-manager/util.ts +81 -1
- package/src/hashTree/constants.ts +16 -0
- package/src/hashTree/hashTreeParser.ts +580 -196
- package/src/hashTree/utils.ts +36 -0
- package/src/index.ts +6 -0
- package/src/interceptors/dataChannelAuthToken.ts +88 -12
- package/src/interceptors/locusRetry.ts +25 -4
- package/src/interpretation/index.ts +27 -9
- package/src/interpretation/interpretation.types.ts +11 -0
- package/src/locus-info/controlsUtils.ts +3 -1
- package/src/locus-info/index.ts +304 -100
- package/src/locus-info/infoUtils.ts +41 -6
- package/src/locus-info/types.ts +25 -1
- package/src/media/index.ts +3 -0
- package/src/media/properties.ts +1 -0
- package/src/meeting/in-meeting-actions.ts +8 -0
- package/src/meeting/index.ts +494 -67
- package/src/meeting/locusMediaRequest.ts +106 -6
- package/src/meeting/muteState.ts +10 -1
- package/src/meeting/request.ts +11 -0
- package/src/meeting/util.ts +47 -5
- package/src/meeting-info/meeting-info-v2.ts +4 -2
- package/src/meetings/index.ts +133 -78
- package/src/meetings/meetings.types.ts +19 -0
- package/src/meetings/request.ts +43 -0
- package/src/meetings/util.ts +97 -1
- package/src/member/index.ts +10 -0
- package/src/member/types.ts +1 -0
- package/src/member/util.ts +29 -0
- package/src/members/index.ts +70 -7
- package/src/members/util.ts +12 -4
- package/src/metrics/constants.ts +4 -0
- package/src/multistream/codec/constants.ts +58 -0
- package/src/multistream/mediaRequestManager.ts +119 -28
- package/src/multistream/receiveSlot.ts +18 -0
- package/src/reachability/index.ts +19 -15
- package/src/reachability/reachability.types.ts +11 -0
- package/src/reachability/util.ts +36 -0
- package/src/reactions/reactions.type.ts +3 -0
- package/src/recording-controller/index.ts +1 -2
- package/src/webinar/index.ts +214 -36
- package/test/unit/spec/aiEnableRequest/index.ts +86 -0
- package/test/unit/spec/breakouts/breakout.ts +9 -3
- package/test/unit/spec/breakouts/index.ts +49 -0
- package/test/unit/spec/controls-options-manager/index.js +244 -29
- package/test/unit/spec/controls-options-manager/util.js +165 -0
- package/test/unit/spec/hashTree/hashTreeParser.ts +1838 -180
- package/test/unit/spec/hashTree/utils.ts +125 -1
- package/test/unit/spec/interceptors/dataChannelAuthToken.ts +196 -0
- package/test/unit/spec/interceptors/locusRetry.ts +205 -4
- package/test/unit/spec/interpretation/index.ts +26 -4
- package/test/unit/spec/locus-info/controlsUtils.js +172 -57
- package/test/unit/spec/locus-info/index.js +499 -81
- package/test/unit/spec/locus-info/infoUtils.js +184 -1
- package/test/unit/spec/media/index.ts +31 -0
- package/test/unit/spec/meeting/in-meeting-actions.ts +4 -0
- package/test/unit/spec/meeting/index.js +1615 -42
- package/test/unit/spec/meeting/locusMediaRequest.ts +302 -4
- package/test/unit/spec/meeting/muteState.js +81 -0
- package/test/unit/spec/meeting/request.js +12 -0
- package/test/unit/spec/meeting/utils.js +157 -1
- package/test/unit/spec/meeting-info/meetinginfov2.js +19 -10
- package/test/unit/spec/meetings/index.js +363 -36
- package/test/unit/spec/meetings/request.js +141 -0
- package/test/unit/spec/meetings/utils.js +189 -0
- package/test/unit/spec/member/index.js +7 -0
- package/test/unit/spec/member/util.js +89 -0
- package/test/unit/spec/members/index.js +216 -0
- package/test/unit/spec/members/request.js +37 -1
- package/test/unit/spec/members/utils.js +63 -0
- package/test/unit/spec/multistream/mediaRequestManager.ts +501 -37
- package/test/unit/spec/reachability/index.ts +59 -46
- package/test/unit/spec/reachability/util.ts +31 -0
- package/test/unit/spec/recording-controller/index.js +9 -8
- package/test/unit/spec/webinar/index.ts +329 -28
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import {SELF_ROLES, DISPLAY_HINTS, INTERSTITIAL_DISPLAY_HINTS} from '../constants';
|
|
2
2
|
|
|
3
|
+
// these values have to match what Locus sends us
|
|
4
|
+
export enum DisplayHintSection {
|
|
5
|
+
JOINED = 'joined',
|
|
6
|
+
MODERATOR = 'moderator',
|
|
7
|
+
COHOST = 'coHost',
|
|
8
|
+
PRESENTER = 'presenter',
|
|
9
|
+
PANELIST = 'panelist',
|
|
10
|
+
ATTENDEE = 'attendee',
|
|
11
|
+
}
|
|
12
|
+
|
|
3
13
|
const InfoUtils: any = {};
|
|
4
14
|
|
|
5
15
|
InfoUtils.parse = (info, roles, isJoined = true) => {
|
|
@@ -7,6 +17,9 @@ InfoUtils.parse = (info, roles, isJoined = true) => {
|
|
|
7
17
|
policy: InfoUtils.parsePolicy(info),
|
|
8
18
|
moderator: InfoUtils.parseModerator(info),
|
|
9
19
|
coHost: InfoUtils.parseCoHost(info),
|
|
20
|
+
presenter: InfoUtils.parsePresenter(info),
|
|
21
|
+
panelist: InfoUtils.parsePanelist(info),
|
|
22
|
+
attendee: InfoUtils.parseAttendee(info),
|
|
10
23
|
};
|
|
11
24
|
|
|
12
25
|
let userDisplayHints = isJoined
|
|
@@ -27,6 +40,18 @@ InfoUtils.parse = (info, roles, isJoined = true) => {
|
|
|
27
40
|
userDisplayHints = {...userDisplayHints, ...parsed.moderator};
|
|
28
41
|
}
|
|
29
42
|
|
|
43
|
+
if (roles.includes(SELF_ROLES.PRESENTER)) {
|
|
44
|
+
userDisplayHints = {...userDisplayHints, ...parsed.presenter};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (roles.includes(SELF_ROLES.PANELIST)) {
|
|
48
|
+
userDisplayHints = {...userDisplayHints, ...parsed.panelist};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (roles.includes(SELF_ROLES.ATTENDEE)) {
|
|
52
|
+
userDisplayHints = {...userDisplayHints, ...parsed.attendee};
|
|
53
|
+
}
|
|
54
|
+
|
|
30
55
|
parsed.userDisplayHints = Object.keys(userDisplayHints);
|
|
31
56
|
|
|
32
57
|
if (info.sipUri) {
|
|
@@ -44,8 +69,8 @@ InfoUtils.parse = (info, roles, isJoined = true) => {
|
|
|
44
69
|
return parsed;
|
|
45
70
|
};
|
|
46
71
|
|
|
47
|
-
InfoUtils.parseDisplayHintSection = (info, displayHintKey) => {
|
|
48
|
-
const displayHints = {};
|
|
72
|
+
InfoUtils.parseDisplayHintSection = (info: any, displayHintKey: DisplayHintSection) => {
|
|
73
|
+
const displayHints: Record<string, boolean> = {};
|
|
49
74
|
|
|
50
75
|
if (
|
|
51
76
|
info &&
|
|
@@ -53,7 +78,7 @@ InfoUtils.parseDisplayHintSection = (info, displayHintKey) => {
|
|
|
53
78
|
info.displayHints[displayHintKey] &&
|
|
54
79
|
info.displayHints[displayHintKey].length > 0
|
|
55
80
|
) {
|
|
56
|
-
info.displayHints[displayHintKey].forEach((key) => {
|
|
81
|
+
info.displayHints[displayHintKey].forEach((key: any) => {
|
|
57
82
|
displayHints[key] = true;
|
|
58
83
|
});
|
|
59
84
|
}
|
|
@@ -61,20 +86,30 @@ InfoUtils.parseDisplayHintSection = (info, displayHintKey) => {
|
|
|
61
86
|
return displayHints;
|
|
62
87
|
};
|
|
63
88
|
|
|
64
|
-
InfoUtils.parsePolicy = (info) =>
|
|
89
|
+
InfoUtils.parsePolicy = (info) =>
|
|
90
|
+
InfoUtils.parseDisplayHintSection(info, DisplayHintSection.JOINED);
|
|
65
91
|
|
|
66
92
|
InfoUtils.parseModerator = (info) => {
|
|
67
|
-
const displayHints = InfoUtils.parseDisplayHintSection(info,
|
|
93
|
+
const displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.MODERATOR);
|
|
68
94
|
|
|
69
95
|
return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};
|
|
70
96
|
};
|
|
71
97
|
|
|
72
98
|
InfoUtils.parseCoHost = (info) => {
|
|
73
|
-
const displayHints = InfoUtils.parseDisplayHintSection(info,
|
|
99
|
+
const displayHints = InfoUtils.parseDisplayHintSection(info, DisplayHintSection.COHOST);
|
|
74
100
|
|
|
75
101
|
return {...displayHints, [DISPLAY_HINTS.LOWER_SOMEONE_ELSES_HAND]: true};
|
|
76
102
|
};
|
|
77
103
|
|
|
104
|
+
InfoUtils.parsePresenter = (info) =>
|
|
105
|
+
InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PRESENTER);
|
|
106
|
+
|
|
107
|
+
InfoUtils.parsePanelist = (info) =>
|
|
108
|
+
InfoUtils.parseDisplayHintSection(info, DisplayHintSection.PANELIST);
|
|
109
|
+
|
|
110
|
+
InfoUtils.parseAttendee = (info) =>
|
|
111
|
+
InfoUtils.parseDisplayHintSection(info, DisplayHintSection.ATTENDEE);
|
|
112
|
+
|
|
78
113
|
InfoUtils.isLocked = (policy) => policy.LOCK_STATUS_LOCKED || false;
|
|
79
114
|
|
|
80
115
|
InfoUtils.isUnlocked = (policy) => policy.LOCK_STATUS_UNLOCKED || false;
|
package/src/locus-info/types.ts
CHANGED
|
@@ -1,15 +1,33 @@
|
|
|
1
|
+
import {Enum} from '../constants';
|
|
1
2
|
import {HtMeta} from '../hashTree/types';
|
|
2
3
|
|
|
4
|
+
export const EndMeetingReason = {
|
|
5
|
+
maxMeetingDuration: 'MAX_MEETING_DURATION',
|
|
6
|
+
allParticipantsLeft: 'ALL_PARTICIPANTS_LEFT',
|
|
7
|
+
sipHostLeft: 'SIP_HOST_LEFT',
|
|
8
|
+
noHost: 'NO_HOST',
|
|
9
|
+
waitingForMpsEndMeetingTimeout: 'WAITING_FOR_MPS_END_MEETING_TIMEOUT',
|
|
10
|
+
fraudDetection: 'FRAUD_DETECTION',
|
|
11
|
+
meetingEndedByHost: 'MEETING_ENDED_BY_HOST',
|
|
12
|
+
meetingUpdated: 'MEETING_UPDATED', // Locus code has comment about EndMeetingIfPossible reason for this one
|
|
13
|
+
meetingCancelled: 'MEETING_CANCELLED', // Locus code has comment about EndMeetingIfPossible reason for this one
|
|
14
|
+
autoEndWithSingleParticipant: 'AUTO_END_WITH_SINGLE_PARTICIPANT',
|
|
15
|
+
breakoutEnded: 'BREAKOUT_ENDED', // indicates that only a breakout session ended, not the whole meeting
|
|
16
|
+
} as const;
|
|
17
|
+
|
|
18
|
+
export type EndMeetingReason = Enum<typeof EndMeetingReason>;
|
|
19
|
+
|
|
3
20
|
export type LocusFullState = {
|
|
4
21
|
active: boolean;
|
|
5
22
|
count: number;
|
|
6
23
|
lastActive: string;
|
|
7
24
|
locked: boolean;
|
|
8
25
|
sessionId: string;
|
|
9
|
-
|
|
26
|
+
sessionIds: string[];
|
|
10
27
|
startTime: number;
|
|
11
28
|
state: string;
|
|
12
29
|
type: string;
|
|
30
|
+
endMeetingReason?: EndMeetingReason;
|
|
13
31
|
};
|
|
14
32
|
|
|
15
33
|
export type Links = {
|
|
@@ -59,3 +77,9 @@ export type ReplacesInfo = {
|
|
|
59
77
|
replacedAt: string;
|
|
60
78
|
sessionId: string;
|
|
61
79
|
};
|
|
80
|
+
|
|
81
|
+
export const LocusErrorCodes = {
|
|
82
|
+
LOCUS_INACTIVE: 2403004,
|
|
83
|
+
} as const;
|
|
84
|
+
|
|
85
|
+
export type LocusErrorCodes = Enum<typeof LocusErrorCodes>;
|
package/src/media/index.ts
CHANGED
|
@@ -145,6 +145,7 @@ Media.createMediaConnection = (
|
|
|
145
145
|
iceCandidatesTimeout?: number;
|
|
146
146
|
disableAudioMainDtx?: boolean;
|
|
147
147
|
enableAudioTwcc?: boolean;
|
|
148
|
+
enableAv1SlidesSupport?: boolean;
|
|
148
149
|
stopIceGatheringAfterFirstRelayCandidate?: boolean;
|
|
149
150
|
}
|
|
150
151
|
) => {
|
|
@@ -159,6 +160,7 @@ Media.createMediaConnection = (
|
|
|
159
160
|
iceCandidatesTimeout,
|
|
160
161
|
disableAudioMainDtx,
|
|
161
162
|
enableAudioTwcc,
|
|
163
|
+
enableAv1SlidesSupport,
|
|
162
164
|
stopIceGatheringAfterFirstRelayCandidate,
|
|
163
165
|
} = options;
|
|
164
166
|
|
|
@@ -178,6 +180,7 @@ Media.createMediaConnection = (
|
|
|
178
180
|
const config: MultistreamConnectionConfig = {
|
|
179
181
|
iceServers,
|
|
180
182
|
disableAudioTwcc: !enableAudioTwcc,
|
|
183
|
+
enableAV1SlidesSupport: !!enableAv1SlidesSupport,
|
|
181
184
|
};
|
|
182
185
|
|
|
183
186
|
if (bundlePolicy) {
|
package/src/media/properties.ts
CHANGED
|
@@ -43,6 +43,7 @@ export default class MediaProperties {
|
|
|
43
43
|
shareAudioStream?: LocalSystemAudioStream;
|
|
44
44
|
videoDeviceId: any;
|
|
45
45
|
videoStream?: LocalCameraStream;
|
|
46
|
+
srtpCipher: string | undefined;
|
|
46
47
|
namespace = MEETINGS;
|
|
47
48
|
mediaIssueCounters: {[key: string]: number} = {};
|
|
48
49
|
throttledSendMediaIssueMetric: ReturnType<typeof throttle>;
|
|
@@ -120,6 +120,8 @@ interface IInMeetingActions {
|
|
|
120
120
|
canDisablePollingQA?: boolean;
|
|
121
121
|
canAttendeeRequestAiAssistantEnabled?: boolean;
|
|
122
122
|
isAttendeeRequestAiAssistantDeclinedAll?: boolean;
|
|
123
|
+
isAnonymizeDisplayNamesEnabled?: boolean;
|
|
124
|
+
canViewTheParticipantList?: boolean;
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
/**
|
|
@@ -346,6 +348,10 @@ export default class InMeetingActions implements IInMeetingActions {
|
|
|
346
348
|
|
|
347
349
|
isAttendeeRequestAiAssistantDeclinedAll = null;
|
|
348
350
|
|
|
351
|
+
isAnonymizeDisplayNamesEnabled = null;
|
|
352
|
+
|
|
353
|
+
canViewTheParticipantList = null;
|
|
354
|
+
|
|
349
355
|
/**
|
|
350
356
|
* Returns all meeting action options
|
|
351
357
|
* @returns {Object}
|
|
@@ -460,6 +466,8 @@ export default class InMeetingActions implements IInMeetingActions {
|
|
|
460
466
|
canDisablePollingQA: this.canDisablePollingQA,
|
|
461
467
|
canAttendeeRequestAiAssistantEnabled: this.canAttendeeRequestAiAssistantEnabled,
|
|
462
468
|
isAttendeeRequestAiAssistantDeclinedAll: this.isAttendeeRequestAiAssistantDeclinedAll,
|
|
469
|
+
isAnonymizeDisplayNamesEnabled: this.isAnonymizeDisplayNamesEnabled,
|
|
470
|
+
canViewTheParticipantList: this.canViewTheParticipantList,
|
|
463
471
|
});
|
|
464
472
|
|
|
465
473
|
/**
|