@webex/plugin-meetings 2.52.12 → 2.53.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/dist/meeting/index.js +194 -202
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +2 -6
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meeting-info/util.js +5 -6
- package/dist/meeting-info/util.js.map +1 -1
- package/dist/meeting-info/utilv2.js +13 -10
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/index.d.ts +0 -1
- package/dist/meetings/index.js +0 -1
- package/dist/meetings/index.js.map +1 -1
- package/package.json +19 -20
- package/src/meeting/index.ts +4 -23
- package/src/meeting-info/meeting-info-v2.ts +3 -3
- package/src/meeting-info/util.ts +10 -5
- package/src/meeting-info/utilv2.ts +28 -16
- package/src/meetings/index.ts +0 -1
- package/test/unit/spec/meeting/index.js +7 -21
- package/test/unit/spec/meeting-info/meetinginfov2.js +8 -4
|
@@ -345,13 +345,17 @@ describe('plugin-meetings', () => {
|
|
|
345
345
|
ciUserUuid: conversation.participants.items[1].entryUUID,
|
|
346
346
|
});
|
|
347
347
|
|
|
348
|
+
webex.request.resolves({
|
|
349
|
+
statusCode: 200,
|
|
350
|
+
body: conversation
|
|
351
|
+
});
|
|
352
|
+
|
|
348
353
|
await meetingInfo.createAdhocSpaceMeeting(conversationUrl);
|
|
349
354
|
|
|
350
355
|
assert.calledWith(
|
|
351
|
-
webex.
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
);
|
|
356
|
+
webex.request,
|
|
357
|
+
conversationUrl,
|
|
358
|
+
)
|
|
355
359
|
|
|
356
360
|
assert.calledWith(webex.request, {
|
|
357
361
|
method: 'POST',
|