@connectedxm/admin 6.0.3 → 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.cjs CHANGED
@@ -1252,6 +1252,7 @@ __export(index_exports, {
1252
1252
  InitiateVideoDownload: () => InitiateVideoDownload,
1253
1253
  IntegrationType: () => IntegrationType,
1254
1254
  InvoiceStatus: () => InvoiceStatus,
1255
+ JoinMeeting: () => JoinMeeting,
1255
1256
  LEVELS_QUERY_KEY: () => LEVELS_QUERY_KEY,
1256
1257
  LEVEL_ACCOUNTS_QUERY_KEY: () => LEVEL_ACCOUNTS_QUERY_KEY,
1257
1258
  LEVEL_QUERY_KEY: () => LEVEL_QUERY_KEY,
@@ -2991,6 +2992,7 @@ __export(index_exports, {
2991
2992
  useImportRooms: () => useImportRooms,
2992
2993
  useIndexEventPasses: () => useIndexEventPasses,
2993
2994
  useInitiateVideoDownload: () => useInitiateVideoDownload,
2995
+ useJoinMeeting: () => useJoinMeeting,
2994
2996
  usePublishActivity: () => usePublishActivity,
2995
2997
  useRefundOrganizationPayment: () => useRefundOrganizationPayment,
2996
2998
  useRegenerateMeetingParticipantToken: () => useRegenerateMeetingParticipantToken,
@@ -35454,6 +35456,21 @@ var useDeleteMeetingParticipant = (options = {}) => {
35454
35456
  return useConnectedMutation(DeleteMeetingParticipant, options);
35455
35457
  };
35456
35458
 
35459
+ // src/mutations/meetings/meetings/useJoinMeeting.ts
35460
+ var JoinMeeting = async ({
35461
+ meetingId,
35462
+ adminApiParams
35463
+ }) => {
35464
+ const connectedXM = await GetAdminAPI(adminApiParams);
35465
+ const { data } = await connectedXM.get(
35466
+ `/meetings/${meetingId}/join`
35467
+ );
35468
+ return data;
35469
+ };
35470
+ var useJoinMeeting = (options = {}) => {
35471
+ return useConnectedMutation(JoinMeeting, options);
35472
+ };
35473
+
35457
35474
  // src/mutations/meetings/meetings/useRegenerateMeetingParticipantToken.ts
35458
35475
  var RegenerateMeetingParticipantToken = async ({
35459
35476
  meetingId,
@@ -40600,6 +40617,7 @@ var useUploadVideoCaptions = (options = {}) => {
40600
40617
  InitiateVideoDownload,
40601
40618
  IntegrationType,
40602
40619
  InvoiceStatus,
40620
+ JoinMeeting,
40603
40621
  LEVELS_QUERY_KEY,
40604
40622
  LEVEL_ACCOUNTS_QUERY_KEY,
40605
40623
  LEVEL_QUERY_KEY,
@@ -42339,6 +42357,7 @@ var useUploadVideoCaptions = (options = {}) => {
42339
42357
  useImportRooms,
42340
42358
  useIndexEventPasses,
42341
42359
  useInitiateVideoDownload,
42360
+ useJoinMeeting,
42342
42361
  usePublishActivity,
42343
42362
  useRefundOrganizationPayment,
42344
42363
  useRegenerateMeetingParticipantToken,