@webex/plugin-meetings 3.8.1-next.38 → 3.8.1-next.39

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.
@@ -209,7 +209,7 @@ var Breakout = _webexCore.WebexPlugin.extend({
209
209
  sessionId: this.sessionId
210
210
  });
211
211
  },
212
- version: "3.8.1-next.38"
212
+ version: "3.8.1-next.39"
213
213
  });
214
214
  var _default = exports.default = Breakout;
215
215
  //# sourceMappingURL=breakout.js.map
@@ -1110,7 +1110,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
1110
1110
  this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
1111
1111
  }
1112
1112
  },
1113
- version: "3.8.1-next.38"
1113
+ version: "3.8.1-next.39"
1114
1114
  });
1115
1115
  var _default = exports.default = Breakouts;
1116
1116
  //# sourceMappingURL=index.js.map
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
373
373
  throw error;
374
374
  });
375
375
  },
376
- version: "3.8.1-next.38"
376
+ version: "3.8.1-next.39"
377
377
  });
378
378
  var _default = exports.default = SimultaneousInterpretation;
379
379
  //# sourceMappingURL=index.js.map
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
18
18
  languageCode: 'number',
19
19
  languageName: 'string'
20
20
  },
21
- version: "3.8.1-next.38"
21
+ version: "3.8.1-next.39"
22
22
  });
23
23
  var _default = exports.default = SILanguage;
24
24
  //# sourceMappingURL=siLanguage.js.map
@@ -8258,6 +8258,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
8258
8258
  return _promise.default.reject(new _parameter.default('Cannot share without channelUrl.'));
8259
8259
  }
8260
8260
  if (whiteboard) {
8261
+ // @ts-ignore
8262
+ this.webex.internal.newMetrics.callDiagnosticLatencies.saveTimestamp({
8263
+ key: 'internal.client.share.initiated'
8264
+ });
8261
8265
  // @ts-ignore
8262
8266
  this.webex.internal.newMetrics.submitClientEvent({
8263
8267
  name: 'client.share.initiated',
@@ -8313,11 +8317,17 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
8313
8317
  return element.name === 'whiteboard';
8314
8318
  });
8315
8319
  if (whiteboard) {
8320
+ // @ts-ignore
8321
+ this.webex.internal.newMetrics.callDiagnosticLatencies.saveTimestamp({
8322
+ key: 'internal.client.share.stopped'
8323
+ });
8316
8324
  // @ts-ignore
8317
8325
  this.webex.internal.newMetrics.submitClientEvent({
8318
8326
  name: 'client.share.stopped',
8319
8327
  payload: {
8320
- mediaType: 'whiteboard'
8328
+ mediaType: 'whiteboard',
8329
+ // @ts-ignore
8330
+ shareDuration: this.webex.internal.newMetrics.callDiagnosticLatencies.getShareDuration()
8321
8331
  },
8322
8332
  options: {
8323
8333
  meetingId: this.id
@@ -8463,11 +8473,17 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
8463
8473
  if (content) {
8464
8474
  var _content$floor;
8465
8475
  // @ts-ignore
8476
+ this.webex.internal.newMetrics.callDiagnosticLatencies.saveTimestamp({
8477
+ key: 'internal.client.share.stopped'
8478
+ });
8479
+ // @ts-ignore
8466
8480
  this.webex.internal.newMetrics.submitClientEvent({
8467
8481
  name: 'client.share.stopped',
8468
8482
  payload: {
8469
8483
  mediaType: 'share',
8470
- shareInstanceId: this.localShareInstanceId
8484
+ shareInstanceId: this.localShareInstanceId,
8485
+ // @ts-ignore
8486
+ shareDuration: this.webex.internal.newMetrics.callDiagnosticLatencies.getShareDuration()
8471
8487
  },
8472
8488
  options: {
8473
8489
  meetingId: this.id
@@ -9283,13 +9299,18 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
9283
9299
  return this.updateTranscodedMediaConnection();
9284
9300
  case 31:
9285
9301
  if (!floorRequestNeeded) {
9286
- _context40.next = 39;
9302
+ _context40.next = 40;
9287
9303
  break;
9288
9304
  }
9289
9305
  this.localShareInstanceId = _uuid.default.v4();
9290
9306
  this.shareCAEventSentStatus.transmitStart = false;
9291
9307
  this.shareCAEventSentStatus.transmitStop = false;
9292
9308
 
9309
+ // @ts-ignore
9310
+ this.webex.internal.newMetrics.callDiagnosticLatencies.saveTimestamp({
9311
+ key: 'internal.client.share.initiated'
9312
+ });
9313
+
9293
9314
  // @ts-ignore
9294
9315
  this.webex.internal.newMetrics.submitClientEvent({
9295
9316
  name: 'client.share.initiated',
@@ -9309,9 +9330,9 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
9309
9330
  // we're sending the http request to Locus to request the screen share floor
9310
9331
  // only after the SDP update, because that's how it's always been done for transcoded meetings
9311
9332
  // and also if sharing from the start, we need confluence to have been created
9312
- _context40.next = 39;
9333
+ _context40.next = 40;
9313
9334
  return this.enqueueScreenShareFloorRequest();
9314
- case 39:
9335
+ case 40:
9315
9336
  case "end":
9316
9337
  return _context40.stop();
9317
9338
  }