@amityco/ts-sdk 7.11.1-4c3f6231.0 → 7.11.1-57ff288.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.
Files changed (287) hide show
  1. package/dist/@types/core/events.d.ts +54 -10
  2. package/dist/@types/core/events.d.ts.map +1 -1
  3. package/dist/@types/core/linkPreviewMetadata.d.ts +12 -0
  4. package/dist/@types/core/linkPreviewMetadata.d.ts.map +1 -0
  5. package/dist/@types/core/model.d.ts +6 -1
  6. package/dist/@types/core/model.d.ts.map +1 -1
  7. package/dist/@types/core/payload.d.ts +47 -0
  8. package/dist/@types/core/payload.d.ts.map +1 -1
  9. package/dist/@types/core/permissions.d.ts +5 -1
  10. package/dist/@types/core/permissions.d.ts.map +1 -1
  11. package/dist/@types/core/transport.d.ts +3 -0
  12. package/dist/@types/core/transport.d.ts.map +1 -1
  13. package/dist/@types/domains/client.d.ts +1 -0
  14. package/dist/@types/domains/client.d.ts.map +1 -1
  15. package/dist/@types/domains/community.d.ts +21 -1
  16. package/dist/@types/domains/community.d.ts.map +1 -1
  17. package/dist/@types/domains/event.d.ts +122 -0
  18. package/dist/@types/domains/event.d.ts.map +1 -0
  19. package/dist/@types/domains/invitation.d.ts +7 -2
  20. package/dist/@types/domains/invitation.d.ts.map +1 -1
  21. package/dist/@types/domains/notification.d.ts +11 -4
  22. package/dist/@types/domains/notification.d.ts.map +1 -1
  23. package/dist/@types/domains/partials.d.ts +2 -2
  24. package/dist/@types/domains/partials.d.ts.map +1 -1
  25. package/dist/@types/domains/post.d.ts +22 -0
  26. package/dist/@types/domains/post.d.ts.map +1 -1
  27. package/dist/@types/domains/room.d.ts +28 -6
  28. package/dist/@types/domains/room.d.ts.map +1 -1
  29. package/dist/@types/index.d.ts +1 -0
  30. package/dist/@types/index.d.ts.map +1 -1
  31. package/dist/client/api/fetchLinkPreview.d.ts +3 -0
  32. package/dist/client/api/fetchLinkPreview.d.ts.map +1 -1
  33. package/dist/client/api/getCurrentUser.d.ts +1 -1
  34. package/dist/client/api/getCurrentUser.d.ts.map +1 -1
  35. package/dist/client/api/getLinkPreviewMetadata.d.ts +14 -0
  36. package/dist/client/api/getLinkPreviewMetadata.d.ts.map +1 -0
  37. package/dist/client/api/getPresenceSetting.d.ts +2 -0
  38. package/dist/client/api/getPresenceSetting.d.ts.map +1 -0
  39. package/dist/client/api/index.d.ts +1 -0
  40. package/dist/client/api/index.d.ts.map +1 -1
  41. package/dist/client/api/resumeSession.d.ts.map +1 -1
  42. package/dist/client/events/onUserDeleted.d.ts +17 -0
  43. package/dist/client/events/onUserDeleted.d.ts.map +1 -0
  44. package/dist/client/services/ObjectResolver/objectResolverEngine.d.ts.map +1 -0
  45. package/dist/client/services/ObjectResolver/objectResolverEngineOnLoginHandler.d.ts.map +1 -0
  46. package/dist/client/services/ReadReceiptSync/legacyReadReceiptSyncEngine.d.ts.map +1 -0
  47. package/dist/client/services/ReadReceiptSync/legacyReadReceiptSyncEngineOnLoginHandler.d.ts.map +1 -0
  48. package/dist/client/services/ReadReceiptSync/readReceiptSyncEngine.d.ts.map +1 -0
  49. package/dist/client/services/ReadReceiptSync/readReceiptSyncEngineOnLoginHandler.d.ts.map +1 -0
  50. package/dist/client/utils/setBotClientToken.d.ts.map +1 -1
  51. package/dist/client/utils/setClientToken.d.ts.map +1 -1
  52. package/dist/client/utils/setCurrentUser.d.ts.map +1 -1
  53. package/dist/client/utils/setVisitorClientToken.d.ts.map +1 -1
  54. package/dist/core/events.d.ts +3 -3
  55. package/dist/core/events.d.ts.map +1 -1
  56. package/dist/core/model/idResolvers.d.ts.map +1 -1
  57. package/dist/core/model/index.d.ts.map +1 -1
  58. package/dist/eventRepository/api/createEvent.d.ts +16 -0
  59. package/dist/eventRepository/api/createEvent.d.ts.map +1 -0
  60. package/dist/eventRepository/api/deleteEvent.d.ts +15 -0
  61. package/dist/eventRepository/api/deleteEvent.d.ts.map +1 -0
  62. package/dist/eventRepository/api/index.d.ts +4 -0
  63. package/dist/eventRepository/api/index.d.ts.map +1 -0
  64. package/dist/eventRepository/api/updateEvent.d.ts +17 -0
  65. package/dist/eventRepository/api/updateEvent.d.ts.map +1 -0
  66. package/dist/eventRepository/events/enums.d.ts +8 -0
  67. package/dist/eventRepository/events/enums.d.ts.map +1 -0
  68. package/dist/eventRepository/events/index.d.ts +11 -0
  69. package/dist/eventRepository/events/index.d.ts.map +1 -0
  70. package/dist/eventRepository/events/onEventCreated.d.ts +17 -0
  71. package/dist/eventRepository/events/onEventCreated.d.ts.map +1 -0
  72. package/dist/eventRepository/events/onEventDeleted.d.ts +17 -0
  73. package/dist/eventRepository/events/onEventDeleted.d.ts.map +1 -0
  74. package/dist/eventRepository/events/onEventUpdated.d.ts +17 -0
  75. package/dist/eventRepository/events/onEventUpdated.d.ts.map +1 -0
  76. package/dist/eventRepository/events/onLocalEventCreated.d.ts +17 -0
  77. package/dist/eventRepository/events/onLocalEventCreated.d.ts.map +1 -0
  78. package/dist/eventRepository/events/onLocalEventDeleted.d.ts +17 -0
  79. package/dist/eventRepository/events/onLocalEventDeleted.d.ts.map +1 -0
  80. package/dist/eventRepository/events/onLocalEventUpdated.d.ts +17 -0
  81. package/dist/eventRepository/events/onLocalEventUpdated.d.ts.map +1 -0
  82. package/dist/eventRepository/events/onLocalRSVPCreated.d.ts +17 -0
  83. package/dist/eventRepository/events/onLocalRSVPCreated.d.ts.map +1 -0
  84. package/dist/eventRepository/events/onLocalRSVPUpdated.d.ts +17 -0
  85. package/dist/eventRepository/events/onLocalRSVPUpdated.d.ts.map +1 -0
  86. package/dist/eventRepository/events/onRSVPCreated.d.ts +17 -0
  87. package/dist/eventRepository/events/onRSVPCreated.d.ts.map +1 -0
  88. package/dist/eventRepository/events/onRSVPUpdated.d.ts +17 -0
  89. package/dist/eventRepository/events/onRSVPUpdated.d.ts.map +1 -0
  90. package/dist/eventRepository/index.d.ts +4 -0
  91. package/dist/eventRepository/index.d.ts.map +1 -0
  92. package/dist/eventRepository/internalApi/createRSVP.d.ts +17 -0
  93. package/dist/eventRepository/internalApi/createRSVP.d.ts.map +1 -0
  94. package/dist/eventRepository/internalApi/getEvent.d.ts +32 -0
  95. package/dist/eventRepository/internalApi/getEvent.d.ts.map +1 -0
  96. package/dist/eventRepository/internalApi/getMyRSVP.d.ts +32 -0
  97. package/dist/eventRepository/internalApi/getMyRSVP.d.ts.map +1 -0
  98. package/dist/eventRepository/internalApi/index.d.ts +5 -0
  99. package/dist/eventRepository/internalApi/index.d.ts.map +1 -0
  100. package/dist/eventRepository/internalApi/updateRSVP.d.ts +17 -0
  101. package/dist/eventRepository/internalApi/updateRSVP.d.ts.map +1 -0
  102. package/dist/eventRepository/observers/getEvent.d.ts +21 -0
  103. package/dist/eventRepository/observers/getEvent.d.ts.map +1 -0
  104. package/dist/eventRepository/observers/getEvents/LiveCollectionController.d.ts +13 -0
  105. package/dist/eventRepository/observers/getEvents/LiveCollectionController.d.ts.map +1 -0
  106. package/dist/eventRepository/observers/getEvents/PaginationController.d.ts +5 -0
  107. package/dist/eventRepository/observers/getEvents/PaginationController.d.ts.map +1 -0
  108. package/dist/eventRepository/observers/getEvents/QueryStreamController.d.ts +15 -0
  109. package/dist/eventRepository/observers/getEvents/QueryStreamController.d.ts.map +1 -0
  110. package/dist/eventRepository/observers/getEvents.d.ts +12 -0
  111. package/dist/eventRepository/observers/getEvents.d.ts.map +1 -0
  112. package/dist/eventRepository/observers/getMyEvents/LiveCollectionController.d.ts +13 -0
  113. package/dist/eventRepository/observers/getMyEvents/LiveCollectionController.d.ts.map +1 -0
  114. package/dist/eventRepository/observers/getMyEvents/PaginationController.d.ts +5 -0
  115. package/dist/eventRepository/observers/getMyEvents/PaginationController.d.ts.map +1 -0
  116. package/dist/eventRepository/observers/getMyEvents/QueryStreamController.d.ts +15 -0
  117. package/dist/eventRepository/observers/getMyEvents/QueryStreamController.d.ts.map +1 -0
  118. package/dist/eventRepository/observers/getMyEvents.d.ts +12 -0
  119. package/dist/eventRepository/observers/getMyEvents.d.ts.map +1 -0
  120. package/dist/eventRepository/observers/getRSVPs/LiveCollectionController.d.ts +13 -0
  121. package/dist/eventRepository/observers/getRSVPs/LiveCollectionController.d.ts.map +1 -0
  122. package/dist/eventRepository/observers/getRSVPs/PaginationController.d.ts +5 -0
  123. package/dist/eventRepository/observers/getRSVPs/PaginationController.d.ts.map +1 -0
  124. package/dist/eventRepository/observers/getRSVPs/QueryStreamController.d.ts +15 -0
  125. package/dist/eventRepository/observers/getRSVPs/QueryStreamController.d.ts.map +1 -0
  126. package/dist/eventRepository/observers/getRSVPs.d.ts +12 -0
  127. package/dist/eventRepository/observers/getRSVPs.d.ts.map +1 -0
  128. package/dist/eventRepository/observers/index.d.ts +5 -0
  129. package/dist/eventRepository/observers/index.d.ts.map +1 -0
  130. package/dist/eventRepository/utils/createEventEventSubscriber.d.ts +2 -0
  131. package/dist/eventRepository/utils/createEventEventSubscriber.d.ts.map +1 -0
  132. package/dist/eventRepository/utils/createEventResponseSubscriber.d.ts +2 -0
  133. package/dist/eventRepository/utils/createEventResponseSubscriber.d.ts.map +1 -0
  134. package/dist/eventRepository/utils/index.d.ts +5 -0
  135. package/dist/eventRepository/utils/index.d.ts.map +1 -0
  136. package/dist/eventRepository/utils/prepareEventPayload.d.ts +2 -0
  137. package/dist/eventRepository/utils/prepareEventPayload.d.ts.map +1 -0
  138. package/dist/eventRepository/utils/prepareEventResponsePayload.d.ts +2 -0
  139. package/dist/eventRepository/utils/prepareEventResponsePayload.d.ts.map +1 -0
  140. package/dist/index.cjs.js +5390 -3249
  141. package/dist/index.d.ts +2 -0
  142. package/dist/index.d.ts.map +1 -1
  143. package/dist/index.esm.js +3709 -1570
  144. package/dist/index.umd.js +3 -3
  145. package/dist/invitationRepository/api/cancelInvitation.d.ts +16 -0
  146. package/dist/invitationRepository/api/cancelInvitation.d.ts.map +1 -0
  147. package/dist/invitationRepository/api/index.d.ts +2 -0
  148. package/dist/invitationRepository/api/index.d.ts.map +1 -0
  149. package/dist/invitationRepository/events/index.d.ts +1 -1
  150. package/dist/invitationRepository/events/index.d.ts.map +1 -1
  151. package/dist/invitationRepository/events/onLocalInvitationCanceled.d.ts +17 -0
  152. package/dist/invitationRepository/events/onLocalInvitationCanceled.d.ts.map +1 -0
  153. package/dist/invitationRepository/index.d.ts +1 -0
  154. package/dist/invitationRepository/index.d.ts.map +1 -1
  155. package/dist/invitationRepository/internalApi/getInvitation.d.ts +1 -1
  156. package/dist/invitationRepository/internalApi/getInvitation.d.ts.map +1 -1
  157. package/dist/invitationRepository/internalObservers/getInvitations/InvitationsLiveCollectionController.d.ts.map +1 -0
  158. package/dist/invitationRepository/internalObservers/getInvitations/InvitationsPaginationController.d.ts.map +1 -0
  159. package/dist/invitationRepository/internalObservers/getInvitations/InvitationsQueryStreamController.d.ts.map +1 -0
  160. package/dist/invitationRepository/{observers → internalObservers}/getInvitations/enums.d.ts +1 -1
  161. package/dist/invitationRepository/internalObservers/getInvitations/enums.d.ts.map +1 -0
  162. package/dist/invitationRepository/internalObservers/getInvitations.d.ts +12 -0
  163. package/dist/invitationRepository/internalObservers/getInvitations.d.ts.map +1 -0
  164. package/dist/invitationRepository/observers/getInvitations.d.ts +28 -6
  165. package/dist/invitationRepository/observers/getInvitations.d.ts.map +1 -1
  166. package/dist/invitationRepository/observers/getMyInvitations/MyInvitationsQueryStreamController.d.ts +1 -1
  167. package/dist/invitationRepository/observers/getMyInvitations/MyInvitationsQueryStreamController.d.ts.map +1 -1
  168. package/dist/invitationRepository/observers/index.d.ts +1 -0
  169. package/dist/invitationRepository/observers/index.d.ts.map +1 -1
  170. package/dist/liveReactionRepository/internalApi/createLiveReaction.d.ts +2 -2
  171. package/dist/liveReactionRepository/internalApi/createLiveReaction.d.ts.map +1 -1
  172. package/dist/messagePreview/utils/getChannelMessagePreviewWithUser.d.ts +1 -1
  173. package/dist/postRepository/api/createPost.d.ts +1 -0
  174. package/dist/postRepository/api/createPost.d.ts.map +1 -1
  175. package/dist/postRepository/api/editPost.d.ts +1 -0
  176. package/dist/postRepository/api/editPost.d.ts.map +1 -1
  177. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostLiveCollectionController.d.ts +14 -0
  178. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostLiveCollectionController.d.ts.map +1 -0
  179. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostPaginationController.d.ts +5 -0
  180. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostPaginationController.d.ts.map +1 -0
  181. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostQueryStreamController.d.ts +15 -0
  182. package/dist/postRepository/observers/getCommunityLiveRoomPosts/CommunityLiveRoomPostQueryStreamController.d.ts.map +1 -0
  183. package/dist/postRepository/observers/getCommunityLiveRoomPosts.d.ts +22 -0
  184. package/dist/postRepository/observers/getCommunityLiveRoomPosts.d.ts.map +1 -0
  185. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostLiveCollectionController.d.ts +14 -0
  186. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostLiveCollectionController.d.ts.map +1 -0
  187. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostPaginationController.d.ts +5 -0
  188. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostPaginationController.d.ts.map +1 -0
  189. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostQueryStreamController.d.ts +15 -0
  190. package/dist/postRepository/observers/getLiveRoomPosts/LiveRoomPostQueryStreamController.d.ts.map +1 -0
  191. package/dist/postRepository/observers/getLiveRoomPosts.d.ts +23 -0
  192. package/dist/postRepository/observers/getLiveRoomPosts.d.ts.map +1 -0
  193. package/dist/postRepository/observers/index.d.ts +2 -0
  194. package/dist/postRepository/observers/index.d.ts.map +1 -1
  195. package/dist/postRepository/observers/utils.d.ts +1 -0
  196. package/dist/postRepository/observers/utils.d.ts.map +1 -1
  197. package/dist/roomPresenceRepository/api/getRoomOnlineUsers.d.ts +18 -0
  198. package/dist/roomPresenceRepository/api/getRoomOnlineUsers.d.ts.map +1 -0
  199. package/dist/roomPresenceRepository/api/getRoomUserCount.d.ts +17 -0
  200. package/dist/roomPresenceRepository/api/getRoomUserCount.d.ts.map +1 -0
  201. package/dist/roomPresenceRepository/api/index.d.ts +5 -0
  202. package/dist/roomPresenceRepository/api/index.d.ts.map +1 -0
  203. package/dist/roomPresenceRepository/api/startHeartbeat.d.ts +15 -0
  204. package/dist/roomPresenceRepository/api/startHeartbeat.d.ts.map +1 -0
  205. package/dist/roomPresenceRepository/api/stopHeartbeat.d.ts +15 -0
  206. package/dist/roomPresenceRepository/api/stopHeartbeat.d.ts.map +1 -0
  207. package/dist/roomPresenceRepository/index.d.ts +2 -0
  208. package/dist/roomPresenceRepository/index.d.ts.map +1 -0
  209. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/RoomPresenceSyncEngine.d.ts +38 -0
  210. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/RoomPresenceSyncEngine.d.ts.map +1 -0
  211. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/index.d.ts +2 -0
  212. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/index.d.ts.map +1 -0
  213. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/roomPresenceSyncEngineFactory.d.ts +32 -0
  214. package/dist/roomPresenceRepository/services/RoomPresenceSyncEngine/roomPresenceSyncEngineFactory.d.ts.map +1 -0
  215. package/dist/roomPresenceRepository/services/index.d.ts +2 -0
  216. package/dist/roomPresenceRepository/services/index.d.ts.map +1 -0
  217. package/dist/roomRepository/api/index.d.ts +2 -0
  218. package/dist/roomRepository/api/index.d.ts.map +1 -1
  219. package/dist/roomRepository/api/leaveRoom.d.ts +16 -0
  220. package/dist/roomRepository/api/leaveRoom.d.ts.map +1 -0
  221. package/dist/roomRepository/api/removeParticipant.d.ts +17 -0
  222. package/dist/roomRepository/api/removeParticipant.d.ts.map +1 -0
  223. package/dist/roomRepository/events/index.d.ts +7 -1
  224. package/dist/roomRepository/events/index.d.ts.map +1 -1
  225. package/dist/roomRepository/events/onRoomCoHostInviteAccepted.d.ts +17 -0
  226. package/dist/roomRepository/events/onRoomCoHostInviteAccepted.d.ts.map +1 -0
  227. package/dist/roomRepository/events/onRoomCoHostInviteCanceled.d.ts +17 -0
  228. package/dist/roomRepository/events/onRoomCoHostInviteCanceled.d.ts.map +1 -0
  229. package/dist/roomRepository/events/onRoomCoHostInviteRejected.d.ts +17 -0
  230. package/dist/roomRepository/events/onRoomCoHostInviteRejected.d.ts.map +1 -0
  231. package/dist/roomRepository/events/{onRoomParticipantInviting.d.ts → onRoomCoHostInvited.d.ts} +2 -2
  232. package/dist/roomRepository/events/onRoomCoHostInvited.d.ts.map +1 -0
  233. package/dist/roomRepository/events/onRoomEndBroadcasting.d.ts +1 -1
  234. package/dist/roomRepository/events/onRoomEndBroadcasting.d.ts.map +1 -1
  235. package/dist/roomRepository/events/onRoomLeft.d.ts +17 -0
  236. package/dist/roomRepository/events/onRoomLeft.d.ts.map +1 -0
  237. package/dist/roomRepository/events/onRoomParticipantJoined.d.ts +1 -1
  238. package/dist/roomRepository/events/onRoomParticipantJoined.d.ts.map +1 -1
  239. package/dist/roomRepository/events/onRoomParticipantLeft.d.ts +1 -1
  240. package/dist/roomRepository/events/onRoomParticipantLeft.d.ts.map +1 -1
  241. package/dist/roomRepository/events/onRoomParticipantRemoved.d.ts +17 -0
  242. package/dist/roomRepository/events/onRoomParticipantRemoved.d.ts.map +1 -0
  243. package/dist/roomRepository/events/onRoomParticipantRemovedLocal.d.ts +17 -0
  244. package/dist/roomRepository/events/onRoomParticipantRemovedLocal.d.ts.map +1 -0
  245. package/dist/roomRepository/events/onRoomRecordedAvailable.d.ts +1 -1
  246. package/dist/roomRepository/events/onRoomRecordedAvailable.d.ts.map +1 -1
  247. package/dist/roomRepository/events/onRoomStartBroadcasting.d.ts +1 -1
  248. package/dist/roomRepository/events/onRoomStartBroadcasting.d.ts.map +1 -1
  249. package/dist/roomRepository/events/onRoomTerminated.d.ts +17 -0
  250. package/dist/roomRepository/events/onRoomTerminated.d.ts.map +1 -0
  251. package/dist/roomRepository/events/onRoomWaitingReconnect.d.ts +1 -1
  252. package/dist/roomRepository/events/onRoomWaitingReconnect.d.ts.map +1 -1
  253. package/dist/roomRepository/observers/getRoom.d.ts.map +1 -1
  254. package/dist/roomRepository/observers/utils.d.ts +1 -1
  255. package/dist/utils/linkedObject/communityLinkedObject.d.ts.map +1 -1
  256. package/dist/utils/linkedObject/eventLinkObject.d.ts +2 -0
  257. package/dist/utils/linkedObject/eventLinkObject.d.ts.map +1 -0
  258. package/dist/utils/linkedObject/eventResponseLinkObject.d.ts +2 -0
  259. package/dist/utils/linkedObject/eventResponseLinkObject.d.ts.map +1 -0
  260. package/dist/utils/linkedObject/index.d.ts +2 -0
  261. package/dist/utils/linkedObject/index.d.ts.map +1 -1
  262. package/dist/utils/linkedObject/notificationTrayLinkedObject.d.ts.map +1 -1
  263. package/dist/utils/linkedObject/postLinkedObject.d.ts.map +1 -1
  264. package/dist/utils/linkedObject/roomLinkedObject.d.ts.map +1 -1
  265. package/package.json +1 -1
  266. package/dist/client/utils/ObjectResolver/objectResolverEngine.d.ts.map +0 -1
  267. package/dist/client/utils/ObjectResolver/objectResolverEngineOnLoginHandler.d.ts.map +0 -1
  268. package/dist/client/utils/ReadReceiptSync/legacyReadReceiptSyncEngine.d.ts.map +0 -1
  269. package/dist/client/utils/ReadReceiptSync/legacyReadReceiptSyncEngineOnLoginHandler.d.ts.map +0 -1
  270. package/dist/client/utils/ReadReceiptSync/readReceiptSyncEngine.d.ts.map +0 -1
  271. package/dist/client/utils/ReadReceiptSync/readReceiptSyncEngineOnLoginHandler.d.ts.map +0 -1
  272. package/dist/invitationRepository/events/onLocalInvitationDeleted.d.ts +0 -17
  273. package/dist/invitationRepository/events/onLocalInvitationDeleted.d.ts.map +0 -1
  274. package/dist/invitationRepository/observers/getInvitations/InvitationsLiveCollectionController.d.ts.map +0 -1
  275. package/dist/invitationRepository/observers/getInvitations/InvitationsPaginationController.d.ts.map +0 -1
  276. package/dist/invitationRepository/observers/getInvitations/InvitationsQueryStreamController.d.ts.map +0 -1
  277. package/dist/invitationRepository/observers/getInvitations/enums.d.ts.map +0 -1
  278. package/dist/roomRepository/events/onRoomParticipantInviting.d.ts.map +0 -1
  279. /package/dist/client/{utils → services}/ObjectResolver/objectResolverEngine.d.ts +0 -0
  280. /package/dist/client/{utils → services}/ObjectResolver/objectResolverEngineOnLoginHandler.d.ts +0 -0
  281. /package/dist/client/{utils → services}/ReadReceiptSync/legacyReadReceiptSyncEngine.d.ts +0 -0
  282. /package/dist/client/{utils → services}/ReadReceiptSync/legacyReadReceiptSyncEngineOnLoginHandler.d.ts +0 -0
  283. /package/dist/client/{utils → services}/ReadReceiptSync/readReceiptSyncEngine.d.ts +0 -0
  284. /package/dist/client/{utils → services}/ReadReceiptSync/readReceiptSyncEngineOnLoginHandler.d.ts +0 -0
  285. /package/dist/invitationRepository/{observers → internalObservers}/getInvitations/InvitationsLiveCollectionController.d.ts +0 -0
  286. /package/dist/invitationRepository/{observers → internalObservers}/getInvitations/InvitationsPaginationController.d.ts +0 -0
  287. /package/dist/invitationRepository/{observers → internalObservers}/getInvitations/InvitationsQueryStreamController.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RoomPresenceSyncEngine.d.ts","sourceRoot":"","sources":["../../../../src/roomPresenceRepository/services/RoomPresenceSyncEngine/RoomPresenceSyncEngine.ts"],"names":[],"mappings":"AAQA,cAAM,sBAAsB;IAC1B,OAAO,CAAC,cAAc,CAA2B;IAEjD,OAAO,CAAC,MAAM,CAAS;IAEvB,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,MAAM,CAEZ;gBAEU,MAAM,EAAE,MAAM;YAQZ,gBAAgB;mBAqBT,2BAA2B;IAoChD;;OAEG;IACH,KAAK;IAcL;;OAEG;IACH,IAAI;IAUJ;;OAEG;YACW,aAAa;IAS3B;;OAEG;IACH,SAAS,IAAI,MAAM;IAInB;;OAEG;IACH,QAAQ,IAAI,OAAO;IAInB;;;OAGG;IACH,OAAO;IAMP,kBAAkB;IAKlB,cAAc;CAIf;AAED,eAAe,sBAAsB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './watchingSyncEngineFactory';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/roomPresenceRepository/services/RoomPresenceSyncEngine/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC"}
@@ -0,0 +1,32 @@
1
+ import RoomPresenceSyncEngine from './RoomPresenceSyncEngine';
2
+ /**
3
+ * Get or create a RoomPresenceSyncEngine instance for a specific room
4
+ *
5
+ * @param roomId The room ID to get/create engine for
6
+ * @returns RoomPresenceSyncEngine instance for the room
7
+ */
8
+ export declare const getRoomPresenceSyncEngine: (roomId: string) => RoomPresenceSyncEngine;
9
+ /**
10
+ * Destroy the engine instance for a specific room
11
+ *
12
+ * @param roomId The room ID to destroy engine for
13
+ */
14
+ export declare const destroyRoomPresenceSyncEngine: (roomId: string) => void;
15
+ /**
16
+ * Get all active room IDs with engines
17
+ */
18
+ export declare const getActiveRoomIds: () => string[];
19
+ /**
20
+ * Check if a room has an active engine
21
+ */
22
+ export declare const hasRoomPresenceSyncEngine: (roomId: string) => boolean;
23
+ /**
24
+ * Destroy all engine instances
25
+ */
26
+ export declare const destroyAllRoomPresenceSyncEngines: () => void;
27
+ /**
28
+ * Session management functions
29
+ */
30
+ export declare const onRoomPresenceSyncSessionDestroyed: () => void;
31
+ export declare const onRoomPresenceSyncTokenExpired: () => void;
32
+ //# sourceMappingURL=roomPresenceSyncEngineFactory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roomPresenceSyncEngineFactory.d.ts","sourceRoot":"","sources":["../../../../src/roomPresenceRepository/services/RoomPresenceSyncEngine/roomPresenceSyncEngineFactory.ts"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,MAAM,0BAA0B,CAAC;AAK9D;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,WAAY,MAAM,KAAG,sBAS1D,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,WAAY,MAAM,KAAG,IAM9D,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,QAAO,MAAM,EAEzC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB,WAAY,MAAM,KAAG,OAE1D,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iCAAiC,QAAO,IAKpD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kCAAkC,QAAO,IAErD,CAAC;AAEF,eAAO,MAAM,8BAA8B,QAAO,IAIjD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './RoomPresenceSyncEngine';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/roomPresenceRepository/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
@@ -4,4 +4,6 @@ export * from './deleteRoom';
4
4
  export * from './stopRoom';
5
5
  export * from './getBroadcasterData';
6
6
  export * from './getRecordedUrl';
7
+ export * from './removeParticipant';
8
+ export * from './leaveRoom';
7
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/api/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC"}
@@ -0,0 +1,16 @@
1
+ /**
2
+ * ```js
3
+ * import { leaveRoom } from '@amityco/ts-sdk'
4
+ * const result = await leaveRoom('roomId')
5
+ * ```
6
+ *
7
+ * Leaves an {@link Amity.Room}
8
+ *
9
+ * @param roomId The ID of the room to leave
10
+ * @returns Promise that resolves when the user has left the room
11
+ *
12
+ * @category Room API
13
+ * @async
14
+ */
15
+ export declare const leaveRoom: (roomId: string) => Promise<void>;
16
+ //# sourceMappingURL=leaveRoom.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"leaveRoom.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/api/leaveRoom.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,SAAS,WAAkB,MAAM,KAAG,QAAQ,IAAI,CAS5D,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { removeParticipant } from '@amityco/ts-sdk'
4
+ * const result = await removeParticipant('roomId', 'participantUserId')
5
+ * ```
6
+ *
7
+ * Removes a participant from an {@link Amity.Room}
8
+ *
9
+ * @param roomId The ID of the room to remove participant from
10
+ * @param participantUserId The ID of the user to remove as participant
11
+ * @returns Promise that resolves when the participant is removed
12
+ *
13
+ * @category Room API
14
+ * @async
15
+ */
16
+ export declare const removeParticipant: (roomId: string, participantUserId: string) => Promise<void>;
17
+ //# sourceMappingURL=removeParticipant.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"removeParticipant.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/api/removeParticipant.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,iBAAiB,WACpB,MAAM,qBACK,MAAM,KACxB,QAAQ,IAAI,CAUd,CAAC"}
@@ -2,11 +2,17 @@ export * from './onRoomStartBroadcasting';
2
2
  export * from './onRoomWaitingReconnect';
3
3
  export * from './onRoomEndBroadcasting';
4
4
  export * from './onRoomRecordedAvailable';
5
- export * from './onRoomParticipantInviting';
5
+ export * from './onRoomCoHostInvited';
6
+ export * from './onRoomCoHostInviteAccepted';
7
+ export * from './onRoomCoHostInviteRejected';
8
+ export * from './onRoomCoHostInviteCanceled';
6
9
  export * from './onRoomParticipantJoined';
7
10
  export * from './onRoomParticipantLeft';
11
+ export * from './onRoomTerminated';
8
12
  export * from './onRoomCreated';
9
13
  export * from './onRoomUpdated';
10
14
  export * from './onRoomDeleted';
11
15
  export * from './onRoomStopped';
16
+ export * from './onRoomParticipantRemoved';
17
+ export * from './onRoomLeft';
12
18
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AAGxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomCoHostInviteAccepted } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomCoHostInviteAccepted(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a co-host invitation is accepted for a {@link Amity.Room}
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomCoHostInviteAccepted: (callback: Amity.Listener<Amity.InternalInvitation>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomCoHostInviteAccepted.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomCoHostInviteAccepted.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomCoHostInviteAccepted.ts"],"names":[],"mappings":"AAOA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,0BAA0B,aAC3B,MAAM,QAAQ,CAAC,MAAM,kBAAkB,CAAC,KACjD,MAAM,YAiBR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomCoHostInviteCanceled } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomCoHostInviteCanceled(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a co-host invitation is canceled for a {@link Amity.Room}
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomCoHostInviteCanceled: (callback: Amity.Listener<Amity.InternalInvitation[]>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomCoHostInviteCanceled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomCoHostInviteCanceled.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomCoHostInviteCanceled.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,0BAA0B,aAC3B,MAAM,QAAQ,CAAC,MAAM,kBAAkB,EAAE,CAAC,KACnD,MAAM,YAgBR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomCoHostInviteRejected } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomCoHostInviteRejected(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a co-host invitation is rejected for a {@link Amity.Room}
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomCoHostInviteRejected: (callback: Amity.Listener<Amity.InternalInvitation[]>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomCoHostInviteRejected.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomCoHostInviteRejected.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomCoHostInviteRejected.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,0BAA0B,aAC3B,MAAM,QAAQ,CAAC,MAAM,kBAAkB,EAAE,CAAC,KACnD,MAAM,YAgBR,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomParticipantInviting: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
17
- //# sourceMappingURL=onRoomParticipantInviting.d.ts.map
16
+ export declare const onRoomCoHostInvited: (callback: Amity.Listener<Amity.InternalInvitation[]>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomCoHostInvited.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomCoHostInvited.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomCoHostInvited.ts"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,mBAAmB,aACpB,MAAM,QAAQ,CAAC,MAAM,kBAAkB,EAAE,CAAC,KACnD,MAAM,YAWR,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomEndBroadcasting: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomEndBroadcasting: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomEndBroadcasting.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomEndBroadcasting.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomEndBroadcasting.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,qBAAqB,aAAc,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KAAG,MAAM,YAclF,CAAC"}
1
+ {"version":3,"file":"onRoomEndBroadcasting.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomEndBroadcasting.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,qBAAqB,aACtB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomLeft } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomLeft(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a user has left a {@link Amity.Room} locally
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomLeft: (callback: Amity.Listener<Amity.InternalRoom>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomLeft.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomLeft.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomLeft.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,UAAU,aAAc,MAAM,QAAQ,CAAC,MAAM,YAAY,CAAC,KAAG,MAAM,YAS/E,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomParticipantJoined: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomParticipantJoined: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomParticipantJoined.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomParticipantJoined.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantJoined.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KACnC,MAAM,YAcR,CAAC"}
1
+ {"version":3,"file":"onRoomParticipantJoined.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantJoined.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomParticipantLeft: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomParticipantLeft: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomParticipantLeft.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomParticipantLeft.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantLeft.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,qBAAqB,aAAc,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KAAG,MAAM,YAclF,CAAC"}
1
+ {"version":3,"file":"onRoomParticipantLeft.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantLeft.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,qBAAqB,aACtB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomParticipantRemoved } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomParticipantRemoved(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a participant has been removed from a {@link Amity.Room} locally
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomParticipantRemoved: (callback: Amity.Listener<Amity.InternalRoom>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomParticipantRemoved.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomParticipantRemoved.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantRemoved.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,wBAAwB,aACzB,MAAM,QAAQ,CAAC,MAAM,YAAY,CAAC,KAC3C,MAAM,YAcR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomParticipantRemoved } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomParticipantRemoved(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a participant has been removed from a {@link Amity.Room} locally
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomParticipantRemovedLocal: (callback: Amity.Listener<Amity.InternalRoom>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomParticipantRemovedLocal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomParticipantRemovedLocal.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantRemovedLocal.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,6BAA6B,aAC9B,MAAM,QAAQ,CAAC,MAAM,YAAY,CAAC,KAC3C,MAAM,YAcR,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomRecordedAvailable: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomRecordedAvailable: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomRecordedAvailable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomRecordedAvailable.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomRecordedAvailable.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KACnC,MAAM,YAcR,CAAC"}
1
+ {"version":3,"file":"onRoomRecordedAvailable.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomRecordedAvailable.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomStartBroadcasting: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomStartBroadcasting: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomStartBroadcasting.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomStartBroadcasting.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomStartBroadcasting.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KACnC,MAAM,YAcR,CAAC"}
1
+ {"version":3,"file":"onRoomStartBroadcasting.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomStartBroadcasting.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,uBAAuB,aACxB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * ```js
3
+ * import { onRoomTerminated } from '@amityco/ts-sdk'
4
+ * const dispose = onRoomTerminated(room => {
5
+ * // ...
6
+ * })
7
+ * ```
8
+ *
9
+ * Fired when a {@link Amity.Room} has started broadcasting
10
+ *
11
+ * @param callback The function to call when the event was fired
12
+ * @returns an {@link Amity.Unsubscriber} function to stop listening
13
+ *
14
+ * @category Room Events
15
+ */
16
+ export declare const onRoomTerminated: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
+ //# sourceMappingURL=onRoomTerminated.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onRoomTerminated.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomTerminated.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,gBAAgB,aAAc,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KAAG,MAAM,YAShF,CAAC"}
@@ -13,5 +13,5 @@
13
13
  *
14
14
  * @category Room Events
15
15
  */
16
- export declare const onRoomWaitingReconnect: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
16
+ export declare const onRoomWaitingReconnect: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
17
17
  //# sourceMappingURL=onRoomWaitingReconnect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"onRoomWaitingReconnect.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomWaitingReconnect.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,sBAAsB,aACvB,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KACnC,MAAM,YAcR,CAAC"}
1
+ {"version":3,"file":"onRoomWaitingReconnect.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomWaitingReconnect.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,sBAAsB,aACvB,MAAM,QAAQ,CAAC,MAAM,OAAO,CAAC,KACtC,MAAM,YAcR,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"getRoom.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/observers/getRoom.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,OAAO,WACV,MAAM,YACJ,MAAM,kBAAkB,CAAC,MAAM,IAAI,CAAC,KAC7C,MAAM,YAoBR,CAAC"}
1
+ {"version":3,"file":"getRoom.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/observers/getRoom.ts"],"names":[],"mappings":"AAiBA,eAAO,MAAM,OAAO,WACV,MAAM,YACJ,MAAM,kBAAkB,CAAC,MAAM,IAAI,CAAC,KAC7C,MAAM,YA0BR,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { EnumRoomActions } from './enums';
2
2
  export declare const getRoomSubscription: () => {
3
- fn: (callback: Amity.Listener<Amity.Room>) => Amity.Unsubscriber;
3
+ fn: (callback: Amity.Listener<Amity.RawRoom>) => Amity.Unsubscriber;
4
4
  action: EnumRoomActions;
5
5
  }[];
6
6
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"communityLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/communityLinkedObject.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,qBAAqB,cAAe,MAAM,iBAAiB,KAAG,MAAM,SAyDhF,CAAC"}
1
+ {"version":3,"file":"communityLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/communityLinkedObject.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,qBAAqB,cAAe,MAAM,iBAAiB,KAAG,MAAM,SAsEhF,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const eventLinkedObject: (event: Amity.InternalEvent) => Amity.Event;
2
+ //# sourceMappingURL=eventLinkObject.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eventLinkObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/eventLinkObject.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,iBAAiB,UAAW,MAAM,aAAa,KAAG,WA+D9D,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const eventResponseLinkedObject: (event: Amity.InternalEventResponse) => Amity.EventResponse;
2
+ //# sourceMappingURL=eventResponseLinkObject.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eventResponseLinkObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/eventResponseLinkObject.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,UAC7B,MAAM,qBAAqB,KACjC,MAAM,aA+BR,CAAC"}
@@ -17,5 +17,7 @@ export declare const LinkedObject: {
17
17
  joinRequest: (joinRequest: Amity.InternalJoinRequest) => Amity.JoinRequest;
18
18
  channelMember: (channelMember: Amity.Membership<"channel">) => Amity.Membership<"channel">;
19
19
  room: (room: Amity.RawRoom) => Amity.Room;
20
+ event: (event: Amity.RawEvent) => Amity.Event;
21
+ eventResponse: (event: Amity.RawEventResponse) => Amity.EventResponse;
20
22
  };
21
23
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/index.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;CAmBxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/index.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;CAqBxB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"notificationTrayLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/notificationTrayLinkedObject.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,4BAA4B,SACjC,MAAM,4BAA4B,KACvC,MAAM,oBAWR,CAAC"}
1
+ {"version":3,"file":"notificationTrayLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/notificationTrayLinkedObject.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,4BAA4B,SACjC,MAAM,4BAA4B,KACvC,MAAM,oBAiBR,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IAoGjE,CAAC"}
1
+ {"version":3,"file":"postLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/postLinkedObject.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IA+GjE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"roomLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/roomLinkedObject.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IA8BjE,CAAC"}
1
+ {"version":3,"file":"roomLinkedObject.d.ts","sourceRoot":"","sources":["../../../src/utils/linkedObject/roomLinkedObject.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,gBAAgB,SAAU,MAAM,YAAY,KAAG,MAAM,IAkDjE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amityco/ts-sdk",
3
- "version": "7.11.1-4c3f6231.0",
3
+ "version": "7.11.1-57ff288.0",
4
4
  "license": "CC-BY-ND-4.0",
5
5
  "author": "amity.co <developers@amity.co> (https://amity.co)",
6
6
  "description": "Amity Social Cloud Typescript SDK",
@@ -1 +0,0 @@
1
- {"version":3,"file":"objectResolverEngine.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ObjectResolver/objectResolverEngine.ts"],"names":[],"mappings":"AAOA,cAAM,oBAAoB;IACxB,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAU;IAE5C,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAO;IAEvC,OAAO,CAAC,MAAM,CAGZ;IAEF,OAAO,CAAC,KAAK,CAA2B;IAExC,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,kBAAkB,CAAsB;IAEhD,OAAO,CAAC,WAAW,CAAQ;;IAM3B,aAAa;IAQb,YAAY;IAOZ,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,aAAa,EAAE,KAAK,CAAC,aAAa;IAYtD,OAAO,CAAC,qBAAqB;IAe7B,OAAO,CAAC,wBAAwB;IAIhC,OAAO,CAAC,cAAc;IAyBtB,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,SAAS;IAKjB,oBAAoB;IAKpB,kBAAkB;IAclB,cAAc;CAGf;;;;AAID,wBAKE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"objectResolverEngineOnLoginHandler.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ObjectResolver/objectResolverEngineOnLoginHandler.ts"],"names":[],"mappings":";AAGA,wBAiBE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"legacyReadReceiptSyncEngine.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ReadReceiptSync/legacyReadReceiptSyncEngine.ts"],"names":[],"mappings":"AAMA,qBAAa,kCAAkC;IAC7C,OAAO,CAAC,MAAM,CAAe;IAE7B,OAAO,CAAC,QAAQ,CAAQ;IAExB,OAAO,CAAC,SAAS,CAAK;IAEtB,OAAO,CAAC,cAAc,CAAO;IAE7B,OAAO,CAAC,QAAQ,CAAwC;IAExD,OAAO,CAAC,KAAK,CAA2B;IAGxC,OAAO,CAAC,qBAAqB,CAAK;;IASlC,oBAAoB;IAQpB,gBAAgB,IAAI,IAAI;IASxB,OAAO,CAAC,aAAa;IAcrB,OAAO,CAAC,cAAc;YA2BR,WAAW;IA8BzB,OAAO,CAAC,kBAAkB;IAU1B,OAAO,CAAC,8BAA8B;IAOtC,OAAO,CAAC,6BAA6B;IAgBrC,oBAAoB,IAAI,IAAI;IAI5B,kBAAkB,IAAI,IAAI;IAK1B,cAAc,IAAI,IAAI;IAKtB,gBAAgB,IAAI,IAAI;IAKxB,eAAe,IAAI,IAAI;IAKvB,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAoBrD,OAAO,CAAC,kBAAkB;IAsC1B,OAAO,CAAC,UAAU;IAQlB,OAAO,CAAC,UAAU;IAUlB,OAAO,CAAC,kBAAkB;CAM3B;;;;AAID,wBAME"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"legacyReadReceiptSyncEngineOnLoginHandler.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ReadReceiptSync/legacyReadReceiptSyncEngineOnLoginHandler.ts"],"names":[],"mappings":";AAGA,wBAiBE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"readReceiptSyncEngine.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ReadReceiptSync/readReceiptSyncEngine.ts"],"names":[],"mappings":"AAKA,qBAAa,4BAA4B;IACvC,OAAO,CAAC,MAAM,CAAe;IAE7B,OAAO,CAAC,QAAQ,CAAQ;IAExB,OAAO,CAAC,SAAS,CAAK;IAEtB,OAAO,CAAC,cAAc,CAAO;IAE7B,OAAO,CAAC,QAAQ,CAAkC;IAElD,OAAO,CAAC,KAAK,CAA2B;IAGxC,OAAO,CAAC,qBAAqB,CAAK;;IASlC,oBAAoB;IAQpB,gBAAgB,IAAI,IAAI;IASxB,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,eAAe;YAaT,WAAW;IAuCzB,OAAO,CAAC,8BAA8B;IAOtC,OAAO,CAAC,6BAA6B;IAerC,oBAAoB,IAAI,IAAI;IAI5B,kBAAkB,IAAI,IAAI;IAK1B,cAAc,IAAI,IAAI;IAKtB,gBAAgB,IAAI,IAAI;IAKxB,eAAe,IAAI,IAAI;IAKvB,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAqBlD,OAAO,CAAC,kBAAkB;IAmC1B,OAAO,CAAC,UAAU;IAMlB,OAAO,CAAC,UAAU;CASnB;;;;AAID,wBAME"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"readReceiptSyncEngineOnLoginHandler.d.ts","sourceRoot":"","sources":["../../../../src/client/utils/ReadReceiptSync/readReceiptSyncEngineOnLoginHandler.ts"],"names":[],"mappings":";AAGA,wBAiBE"}
@@ -1,17 +0,0 @@
1
- /**
2
- * ```js
3
- * import { onLocalInvitationDeleted } from '@amityco/ts-sdk'
4
- * const dispose = onLocalInvitationDeleted(data => {
5
- * // ...
6
- * })
7
- * ```
8
- *
9
- * Fired when an {@link Amity.InvitationPayload} has been deleted
10
- *
11
- * @param callback The function to call when the event was fired
12
- * @returns an {@link Amity.Unsubscriber} function to stop listening
13
- *
14
- * @category Invitation Events
15
- */
16
- export declare const onLocalInvitationDeleted: (callback: Amity.Listener<Amity.InternalInvitation[]>) => Amity.Unsubscriber;
17
- //# sourceMappingURL=onLocalInvitationDeleted.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"onLocalInvitationDeleted.d.ts","sourceRoot":"","sources":["../../../src/invitationRepository/events/onLocalInvitationDeleted.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,wBAAwB,aACzB,MAAM,QAAQ,CAAC,MAAM,kBAAkB,EAAE,CAAC,KACnD,MAAM,YAYR,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"InvitationsLiveCollectionController.d.ts","sourceRoot":"","sources":["../../../../src/invitationRepository/observers/getInvitations/InvitationsLiveCollectionController.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAEpF,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAQ1F,qBAAa,mCAAoC,SAAQ,wBAAwB,CAC/E,YAAY,EACZ,KAAK,CAAC,wBAAwB,EAC9B,KAAK,CAAC,UAAU,EAChB,+BAA+B,CAChC;IACC,OAAO,CAAC,qBAAqB,CAAmC;IAEhE,OAAO,CAAC,KAAK,CAAiC;gBAG5C,KAAK,EAAE,KAAK,CAAC,wBAAwB,EACrC,QAAQ,EAAE,KAAK,CAAC,sBAAsB,CAAC,KAAK,CAAC,UAAU,CAAC;IAoB1D,SAAS,CAAC,KAAK;cAUC,YAAY,CAAC,YAAY,EAAE,KAAK,CAAC,iBAAiB,GAAG,KAAK,CAAC,UAAU;IAIrF,SAAS,CAAC,kBAAkB,CAAC,EAC3B,QAAQ,EACR,SAAS,EACT,OAAO,GACR,EAAE,KAAK,CAAC,sCAAsC,CAAC,YAAY,CAAC;IAI7D,iBAAiB;IAiBjB,YAAY,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,EAAE,KAAK,CAAC,0BAA0B;IAsBzE,WAAW,CAAC,IAAI,EAAE,KAAK,CAAC,UAAU,EAAE;CAsCrC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"InvitationsPaginationController.d.ts","sourceRoot":"","sources":["../../../../src/invitationRepository/observers/getInvitations/InvitationsPaginationController.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4CAA4C,CAAC;AAElF,qBAAa,+BAAgC,SAAQ,oBAAoB,CACvE,YAAY,EACZ,KAAK,CAAC,wBAAwB,CAC/B;IACO,UAAU,CAAC,WAAW,EAAE,KAAK,CAAC,wBAAwB,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS;CAWxF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"InvitationsQueryStreamController.d.ts","sourceRoot":"","sources":["../../../../src/invitationRepository/observers/getInvitations/InvitationsQueryStreamController.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAGhD,OAAO,EAAE,qBAAqB,EAAE,MAAM,6CAA6C,CAAC;AAEpF,qBAAa,gCAAiC,SAAQ,qBAAqB,CACzE,KAAK,CAAC,iBAAiB,EACvB,KAAK,CAAC,wBAAwB,CAC/B;IACC,OAAO,CAAC,YAAY,CAAqD;IAEzE,OAAO,CAAC,cAAc,CAA0E;gBAG9F,KAAK,EAAE,KAAK,CAAC,wBAAwB,EACrC,QAAQ,EAAE,MAAM,EAAE,EAClB,YAAY,EAAE,CAAC,MAAM,EAAE,KAAK,CAAC,0BAA0B,KAAK,IAAI,EAChE,cAAc,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC,iBAAiB,KAAK,KAAK,CAAC,0BAA0B;IAOnF,YAAY,CAAC,QAAQ,EAAE,KAAK,CAAC,iBAAiB;IAWpD,mBAAmB,CACjB,QAAQ,EAAE,KAAK,CAAC,iBAAiB,GAAG,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,EAC7D,SAAS,EAAE,KAAK,CAAC,2BAA2B,EAC5C,OAAO,UAAQ;IAoBjB,OAAO,CAAC,MAAM,EAAE,qBAAqB,iBACd,MAAM,kBAAkB,EAAE;IA2BjD,YAAY,CACV,gBAAgB,EAAE;QAChB,EAAE,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,kBAAkB,EAAE,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;QAChF,MAAM,EAAE,qBAAqB,CAAC;KAC/B,EAAE;CAIN"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../src/invitationRepository/observers/getInvitations/enums.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB;IAC/B,wBAAwB,6BAA6B;IACrD,wBAAwB,6BAA6B;IACrD,wBAAwB,6BAA6B;CACtD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"onRoomParticipantInviting.d.ts","sourceRoot":"","sources":["../../../src/roomRepository/events/onRoomParticipantInviting.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,yBAAyB,aAC1B,MAAM,QAAQ,CAAC,MAAM,IAAI,CAAC,KACnC,MAAM,YAcR,CAAC"}