@webex/plugin-meetings 3.5.0-next.22 → 3.5.0-next.24

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/package.json CHANGED
@@ -43,13 +43,13 @@
43
43
  "@webex/eslint-config-legacy": "0.0.0",
44
44
  "@webex/jest-config-legacy": "0.0.0",
45
45
  "@webex/legacy-tools": "0.0.0",
46
- "@webex/plugin-meetings": "3.5.0-next.22",
47
- "@webex/plugin-rooms": "3.5.0-next.18",
48
- "@webex/test-helper-chai": "3.5.0-next.16",
49
- "@webex/test-helper-mocha": "3.5.0-next.16",
50
- "@webex/test-helper-mock-webex": "3.5.0-next.16",
51
- "@webex/test-helper-retry": "3.5.0-next.16",
52
- "@webex/test-helper-test-users": "3.5.0-next.16",
46
+ "@webex/plugin-meetings": "3.5.0-next.24",
47
+ "@webex/plugin-rooms": "3.5.0-next.19",
48
+ "@webex/test-helper-chai": "3.5.0-next.17",
49
+ "@webex/test-helper-mocha": "3.5.0-next.17",
50
+ "@webex/test-helper-mock-webex": "3.5.0-next.17",
51
+ "@webex/test-helper-retry": "3.5.0-next.17",
52
+ "@webex/test-helper-test-users": "3.5.0-next.17",
53
53
  "chai": "^4.3.4",
54
54
  "chai-as-promised": "^7.1.1",
55
55
  "eslint": "^8.24.0",
@@ -61,21 +61,21 @@
61
61
  "typescript": "^4.7.4"
62
62
  },
63
63
  "dependencies": {
64
- "@webex/common": "3.5.0-next.16",
64
+ "@webex/common": "3.5.0-next.17",
65
65
  "@webex/internal-media-core": "2.11.3",
66
- "@webex/internal-plugin-conversation": "3.5.0-next.18",
67
- "@webex/internal-plugin-device": "3.5.0-next.16",
68
- "@webex/internal-plugin-llm": "3.5.0-next.16",
69
- "@webex/internal-plugin-mercury": "3.5.0-next.16",
70
- "@webex/internal-plugin-metrics": "3.5.0-next.16",
71
- "@webex/internal-plugin-support": "3.5.0-next.18",
72
- "@webex/internal-plugin-user": "3.5.0-next.16",
73
- "@webex/internal-plugin-voicea": "3.5.0-next.22",
74
- "@webex/media-helpers": "3.5.0-next.17",
75
- "@webex/plugin-people": "3.5.0-next.16",
76
- "@webex/plugin-rooms": "3.5.0-next.18",
66
+ "@webex/internal-plugin-conversation": "3.5.0-next.19",
67
+ "@webex/internal-plugin-device": "3.5.0-next.17",
68
+ "@webex/internal-plugin-llm": "3.5.0-next.17",
69
+ "@webex/internal-plugin-mercury": "3.5.0-next.17",
70
+ "@webex/internal-plugin-metrics": "3.5.0-next.17",
71
+ "@webex/internal-plugin-support": "3.5.0-next.19",
72
+ "@webex/internal-plugin-user": "3.5.0-next.17",
73
+ "@webex/internal-plugin-voicea": "3.5.0-next.24",
74
+ "@webex/media-helpers": "3.5.0-next.18",
75
+ "@webex/plugin-people": "3.5.0-next.17",
76
+ "@webex/plugin-rooms": "3.5.0-next.19",
77
77
  "@webex/web-capabilities": "^1.4.0",
78
- "@webex/webex-core": "3.5.0-next.16",
78
+ "@webex/webex-core": "3.5.0-next.17",
79
79
  "ampersand-collection": "^2.0.2",
80
80
  "bowser": "^2.11.0",
81
81
  "btoa": "^1.2.1",
@@ -91,5 +91,5 @@
91
91
  "//": [
92
92
  "TODO: upgrade jwt-decode when moving to node 18"
93
93
  ],
94
- "version": "3.5.0-next.22"
94
+ "version": "3.5.0-next.24"
95
95
  }
@@ -6376,7 +6376,7 @@ export default class Meeting extends StatelessWebexPlugin {
6376
6376
  private async createMediaConnection(turnServerInfo, bundlePolicy?: BundlePolicy) {
6377
6377
  this.rtcMetrics = this.isMultistream
6378
6378
  ? // @ts-ignore
6379
- new RtcMetrics(this.webex, this.id, this.correlationId)
6379
+ new RtcMetrics(this.webex, {meetingId: this.id}, this.correlationId)
6380
6380
  : undefined;
6381
6381
 
6382
6382
  const mc = Media.createMediaConnection(
@@ -144,7 +144,14 @@ export type BasicMeetingInformation = {
144
144
  environment: string;
145
145
  id: string;
146
146
  locusUrl: string;
147
- locusInfo: any; // it's only a very small subset of the locus info, see what's populated in the destroy() method
147
+ locusInfo: {
148
+ // it's only a very small subset of the locus info, to avoid using much memory
149
+ url: string;
150
+ fullState: {
151
+ lastActive: string;
152
+ sessionId: string;
153
+ };
154
+ };
148
155
  meetingInfo: any;
149
156
  sessionCorrelationId: string;
150
157
  };
@@ -1103,7 +1110,6 @@ export default class Meetings extends WebexPlugin {
1103
1110
  meetingInfo: cloneDeep(meeting.meetingInfo),
1104
1111
  locusInfo: {
1105
1112
  // locusInfo can be quite big, so keep just the minimal info
1106
- sequence: meeting.locusInfo?.sequence,
1107
1113
  url: meeting.locusInfo?.url,
1108
1114
  fullState: {
1109
1115
  lastActive: meeting.locusInfo?.fullState?.lastActive,