@webex/internal-plugin-metrics 3.0.0-beta.263 → 3.0.0-beta.265

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/dist/metrics.js CHANGED
@@ -161,7 +161,7 @@ var Metrics = _webexCore.WebexPlugin.extend({
161
161
  });
162
162
  });
163
163
  },
164
- version: "3.0.0-beta.263"
164
+ version: "3.0.0-beta.265"
165
165
  });
166
166
  var _default = Metrics;
167
167
  exports.default = _default;
@@ -145,6 +145,7 @@ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
145
145
  destinationLocusUrl?: string;
146
146
  destinationVenueId?: string;
147
147
  deviceId?: string;
148
+ globalMeetingId?: string;
148
149
  ivrCallId?: string;
149
150
  ivrDialogId?: string;
150
151
  ivrId?: string;
@@ -153,6 +154,7 @@ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
153
154
  locusSessionId?: string;
154
155
  locusStartTime?: string;
155
156
  locusUrl?: string;
157
+ machineId?: string;
156
158
  mediaAgentAlias?: string;
157
159
  mediaAgentGroupId?: string;
158
160
  meetClusterName?: string;
@@ -212,6 +214,7 @@ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
212
214
  destinationLocusUrl?: string;
213
215
  destinationVenueId?: string;
214
216
  deviceId?: string;
217
+ globalMeetingId?: string;
215
218
  ivrCallId?: string;
216
219
  ivrDialogId?: string;
217
220
  ivrId?: string;
@@ -220,6 +223,7 @@ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
220
223
  locusSessionId?: string;
221
224
  locusStartTime?: string;
222
225
  locusUrl?: string;
226
+ machineId?: string;
223
227
  mediaAgentAlias?: string;
224
228
  mediaAgentGroupId?: string;
225
229
  meetClusterName?: string;
@@ -303,7 +307,7 @@ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
303
307
  */
304
308
  generateClientEventErrorPayload(rawError: any): {
305
309
  fatal: boolean;
306
- category: "other" | "signaling" | "media" | "expected";
310
+ category: "other" | "signaling" | "media" | "network" | "expected";
307
311
  errorDescription?: string;
308
312
  errorCode?: number;
309
313
  errorCodeStr?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/internal-plugin-metrics",
3
- "version": "3.0.0-beta.263",
3
+ "version": "3.0.0-beta.265",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -28,13 +28,13 @@
28
28
  "build": "yarn run -T tsc --declaration true --declarationDir ./dist/types"
29
29
  },
30
30
  "dependencies": {
31
- "@webex/common": "3.0.0-beta.263",
32
- "@webex/common-timers": "3.0.0-beta.263",
33
- "@webex/event-dictionary-ts": "^1.0.1268",
34
- "@webex/internal-plugin-device": "3.0.0-beta.263",
35
- "@webex/internal-plugin-metrics": "3.0.0-beta.263",
36
- "@webex/test-helper-chai": "3.0.0-beta.263",
37
- "@webex/test-helper-mock-webex": "3.0.0-beta.263",
38
- "@webex/webex-core": "3.0.0-beta.263"
31
+ "@webex/common": "3.0.0-beta.265",
32
+ "@webex/common-timers": "3.0.0-beta.265",
33
+ "@webex/event-dictionary-ts": "^1.0.1290",
34
+ "@webex/internal-plugin-device": "3.0.0-beta.265",
35
+ "@webex/internal-plugin-metrics": "3.0.0-beta.265",
36
+ "@webex/test-helper-chai": "3.0.0-beta.265",
37
+ "@webex/test-helper-mock-webex": "3.0.0-beta.265",
38
+ "@webex/webex-core": "3.0.0-beta.265"
39
39
  }
40
40
  }