@connectedxm/admin 6.0.4 → 6.0.5

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/index.js CHANGED
@@ -32209,6 +32209,21 @@ var useDeleteMeetingParticipant = (options = {}) => {
32209
32209
  return useConnectedMutation(DeleteMeetingParticipant, options);
32210
32210
  };
32211
32211
 
32212
+ // src/mutations/meetings/meetings/useJoinMeeting.ts
32213
+ var JoinMeeting = async ({
32214
+ meetingId,
32215
+ adminApiParams
32216
+ }) => {
32217
+ const connectedXM = await GetAdminAPI(adminApiParams);
32218
+ const { data } = await connectedXM.get(
32219
+ `/meetings/${meetingId}/join`
32220
+ );
32221
+ return data;
32222
+ };
32223
+ var useJoinMeeting = (options = {}) => {
32224
+ return useConnectedMutation(JoinMeeting, options);
32225
+ };
32226
+
32212
32227
  // src/mutations/meetings/meetings/useRegenerateMeetingParticipantToken.ts
32213
32228
  var RegenerateMeetingParticipantToken = async ({
32214
32229
  meetingId,
@@ -37354,6 +37369,7 @@ export {
37354
37369
  InitiateVideoDownload,
37355
37370
  IntegrationType,
37356
37371
  InvoiceStatus,
37372
+ JoinMeeting,
37357
37373
  LEVELS_QUERY_KEY,
37358
37374
  LEVEL_ACCOUNTS_QUERY_KEY,
37359
37375
  LEVEL_QUERY_KEY,
@@ -39093,6 +39109,7 @@ export {
39093
39109
  useImportRooms,
39094
39110
  useIndexEventPasses,
39095
39111
  useInitiateVideoDownload,
39112
+ useJoinMeeting,
39096
39113
  usePublishActivity,
39097
39114
  useRefundOrganizationPayment,
39098
39115
  useRegenerateMeetingParticipantToken,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.0.4",
3
+ "version": "6.0.5",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",