@webex/plugin-meetings 2.10.0 → 2.12.0

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/README.md CHANGED
@@ -1029,6 +1029,10 @@ meeting.members.muteMember(memberId)
1029
1029
  // use a memberId string and a "raise" boolean to raise or lower, default to true ("raise the hand")
1030
1030
  meeting.members.raiseOrLowerHand(memberId)
1031
1031
 
1032
+ // You can lower all hands in a meeting
1033
+ // use a memberId string to indicate who is requesting lowering all hands
1034
+ meeting.members.lowerAllHands(requestingMemberId)
1035
+
1032
1036
  // You can transfer the host role to another member in the meeting, this is proxied by meeting.transfer
1033
1037
  // use a memberId string and a moderator boolean to transfer or not, default to true
1034
1038
  meeting.members.transferHostToMember(memberId)
@@ -1369,6 +1369,8 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
1369
1369
  password: password,
1370
1370
  captchaCode: captchaCode
1371
1371
  }).then(function () {
1372
+ _metrics.default.sendBehavioralMetric(_constants2.default.VERIFY_PASSWORD_SUCCESS);
1373
+
1372
1374
  return {
1373
1375
  isPasswordValid: true,
1374
1376
  requiredCaptcha: null,