@23blocks/block-conversations 3.3.1 → 3.3.3

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 (66) hide show
  1. package/dist/index.esm.js +10 -10
  2. package/dist/src/index.d.ts +6 -6
  3. package/dist/src/index.d.ts.map +1 -1
  4. package/dist/src/lib/conversations.block.d.ts +1 -1
  5. package/dist/src/lib/conversations.block.d.ts.map +1 -1
  6. package/dist/src/lib/mappers/context.mapper.d.ts +1 -1
  7. package/dist/src/lib/mappers/context.mapper.d.ts.map +1 -1
  8. package/dist/src/lib/mappers/draft-message.mapper.d.ts +1 -1
  9. package/dist/src/lib/mappers/draft-message.mapper.d.ts.map +1 -1
  10. package/dist/src/lib/mappers/group-invite.mapper.d.ts +1 -1
  11. package/dist/src/lib/mappers/group-invite.mapper.d.ts.map +1 -1
  12. package/dist/src/lib/mappers/group.mapper.d.ts +1 -1
  13. package/dist/src/lib/mappers/group.mapper.d.ts.map +1 -1
  14. package/dist/src/lib/mappers/index.d.ts +12 -12
  15. package/dist/src/lib/mappers/index.d.ts.map +1 -1
  16. package/dist/src/lib/mappers/meeting.mapper.d.ts +1 -1
  17. package/dist/src/lib/mappers/meeting.mapper.d.ts.map +1 -1
  18. package/dist/src/lib/mappers/message-file.mapper.d.ts +1 -1
  19. package/dist/src/lib/mappers/message-file.mapper.d.ts.map +1 -1
  20. package/dist/src/lib/mappers/message.mapper.d.ts +1 -1
  21. package/dist/src/lib/mappers/message.mapper.d.ts.map +1 -1
  22. package/dist/src/lib/mappers/notification.mapper.d.ts +1 -1
  23. package/dist/src/lib/mappers/notification.mapper.d.ts.map +1 -1
  24. package/dist/src/lib/mappers/source.mapper.d.ts +1 -1
  25. package/dist/src/lib/mappers/source.mapper.d.ts.map +1 -1
  26. package/dist/src/lib/mappers/user.mapper.d.ts +1 -1
  27. package/dist/src/lib/mappers/user.mapper.d.ts.map +1 -1
  28. package/dist/src/lib/mappers/web-notification.mapper.d.ts +1 -1
  29. package/dist/src/lib/mappers/web-notification.mapper.d.ts.map +1 -1
  30. package/dist/src/lib/services/availabilities.service.d.ts +1 -1
  31. package/dist/src/lib/services/availabilities.service.d.ts.map +1 -1
  32. package/dist/src/lib/services/contexts.service.d.ts +2 -2
  33. package/dist/src/lib/services/contexts.service.d.ts.map +1 -1
  34. package/dist/src/lib/services/conversations.service.d.ts +1 -1
  35. package/dist/src/lib/services/conversations.service.d.ts.map +1 -1
  36. package/dist/src/lib/services/draft-messages.service.d.ts +1 -1
  37. package/dist/src/lib/services/draft-messages.service.d.ts.map +1 -1
  38. package/dist/src/lib/services/group-invites.service.d.ts +2 -2
  39. package/dist/src/lib/services/group-invites.service.d.ts.map +1 -1
  40. package/dist/src/lib/services/groups.service.d.ts +1 -1
  41. package/dist/src/lib/services/groups.service.d.ts.map +1 -1
  42. package/dist/src/lib/services/index.d.ts +15 -15
  43. package/dist/src/lib/services/index.d.ts.map +1 -1
  44. package/dist/src/lib/services/meetings.service.d.ts +1 -1
  45. package/dist/src/lib/services/meetings.service.d.ts.map +1 -1
  46. package/dist/src/lib/services/message-files.service.d.ts +1 -1
  47. package/dist/src/lib/services/message-files.service.d.ts.map +1 -1
  48. package/dist/src/lib/services/messages.service.d.ts +1 -1
  49. package/dist/src/lib/services/messages.service.d.ts.map +1 -1
  50. package/dist/src/lib/services/notification-settings.service.d.ts +1 -1
  51. package/dist/src/lib/services/notification-settings.service.d.ts.map +1 -1
  52. package/dist/src/lib/services/notifications.service.d.ts +1 -1
  53. package/dist/src/lib/services/notifications.service.d.ts.map +1 -1
  54. package/dist/src/lib/services/sources.service.d.ts +1 -1
  55. package/dist/src/lib/services/sources.service.d.ts.map +1 -1
  56. package/dist/src/lib/services/users.service.d.ts +3 -3
  57. package/dist/src/lib/services/users.service.d.ts.map +1 -1
  58. package/dist/src/lib/services/web-notifications.service.d.ts +1 -1
  59. package/dist/src/lib/services/web-notifications.service.d.ts.map +1 -1
  60. package/dist/src/lib/services/websocket-tokens.service.d.ts +1 -1
  61. package/dist/src/lib/services/websocket-tokens.service.d.ts.map +1 -1
  62. package/dist/src/lib/types/conversation.d.ts +1 -1
  63. package/dist/src/lib/types/conversation.d.ts.map +1 -1
  64. package/dist/src/lib/types/index.d.ts +15 -15
  65. package/dist/src/lib/types/index.d.ts.map +1 -1
  66. package/package.json +1 -1
package/dist/index.esm.js CHANGED
@@ -78,7 +78,7 @@ const messageMapper = {
78
78
  type: 'Message',
79
79
  map: (resource)=>({
80
80
  id: resource.id,
81
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
81
+ uniqueId: parseString(resource.attributes['unique_id']),
82
82
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
83
83
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
84
84
  contextId: parseString(resource.attributes['context_id']),
@@ -236,7 +236,7 @@ const draftMessageMapper = {
236
236
  type: 'DraftMessage',
237
237
  map: (resource)=>({
238
238
  id: resource.id,
239
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
239
+ uniqueId: parseString(resource.attributes['unique_id']),
240
240
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
241
241
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
242
242
  contextId: parseString(resource.attributes['context_id']),
@@ -369,7 +369,7 @@ const groupMapper = {
369
369
  type: 'Group',
370
370
  map: (resource)=>({
371
371
  id: resource.id,
372
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
372
+ uniqueId: parseString(resource.attributes['unique_id']),
373
373
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
374
374
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
375
375
  name: parseString(resource.attributes['name']) || '',
@@ -558,7 +558,7 @@ const notificationMapper = {
558
558
  type: 'Notification',
559
559
  map: (resource)=>({
560
560
  id: resource.id,
561
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
561
+ uniqueId: parseString(resource.attributes['unique_id']),
562
562
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
563
563
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
564
564
  content: parseString(resource.attributes['content']) || '',
@@ -741,7 +741,7 @@ const contextMapper = {
741
741
  type: 'Context',
742
742
  map: (resource)=>({
743
743
  id: resource.id,
744
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
744
+ uniqueId: parseString(resource.attributes['unique_id']),
745
745
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
746
746
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
747
747
  name: parseString(resource.attributes['name']),
@@ -897,7 +897,7 @@ const messageFileMapper = {
897
897
  type: 'MessageFile',
898
898
  map: (resource)=>({
899
899
  id: resource.id,
900
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
900
+ uniqueId: parseString(resource.attributes['unique_id']),
901
901
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
902
902
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
903
903
  conversationUniqueId: parseString(resource.attributes['conversation_unique_id']),
@@ -958,7 +958,7 @@ const sourceMapper = {
958
958
  type: 'Source',
959
959
  map: (resource)=>({
960
960
  id: resource.id,
961
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
961
+ uniqueId: parseString(resource.attributes['unique_id']),
962
962
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
963
963
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
964
964
  name: parseString(resource.attributes['name']),
@@ -983,7 +983,7 @@ const conversationsUserMapper = {
983
983
  type: 'User',
984
984
  map: (resource)=>({
985
985
  id: resource.id,
986
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
986
+ uniqueId: parseString(resource.attributes['unique_id']),
987
987
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
988
988
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
989
989
  email: parseString(resource.attributes['email']),
@@ -1106,7 +1106,7 @@ const meetingMapper = {
1106
1106
  type: 'Meeting',
1107
1107
  map: (resource)=>({
1108
1108
  id: resource.id,
1109
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
1109
+ uniqueId: parseString(resource.attributes['unique_id']),
1110
1110
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
1111
1111
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
1112
1112
  title: parseString(resource.attributes['title']) || '',
@@ -1221,7 +1221,7 @@ const webNotificationMapper = {
1221
1221
  type: 'WebNotification',
1222
1222
  map: (resource)=>({
1223
1223
  id: resource.id,
1224
- uniqueId: parseString(resource.attributes['unique_id']) || resource.id,
1224
+ uniqueId: parseString(resource.attributes['unique_id']),
1225
1225
  createdAt: parseDate(resource.attributes['created_at']) || new Date(),
1226
1226
  updatedAt: parseDate(resource.attributes['updated_at']) || new Date(),
1227
1227
  recipientUniqueId: parseString(resource.attributes['recipient_unique_id']) || '',
@@ -1,7 +1,7 @@
1
- export { createConversationsBlock, conversationsBlockMetadata } from './lib/conversations.block';
2
- export type { ConversationsBlock, ConversationsBlockConfig } from './lib/conversations.block';
3
- export type { Message, CreateMessageRequest, UpdateMessageRequest, ListMessagesParams, DraftMessage, CreateDraftMessageRequest, UpdateDraftMessageRequest, ListDraftMessagesParams, Group, CreateGroupRequest, UpdateGroupRequest, ListGroupsParams, GroupInvite, CreateGroupInviteRequest, JoinGroupRequest, QRCodeResponse, ListGroupInvitesParams, Notification, CreateNotificationRequest, UpdateNotificationRequest, ListNotificationsParams, Conversation, ConversationFile, ConversationMeta, GetConversationParams, WebSocketToken, CreateWebSocketTokenRequest, CreateWebSocketTokenResponse, Context, CreateContextRequest, UpdateContextRequest, ListContextsParams, NotificationSettings, UpdateNotificationSettingsRequest, UserAvailability, SetAvailabilityRequest, MessageFile, CreateMessageFileRequest, PresignMessageFileRequest, PresignMessageFileResponse, ListMessageFilesParams, Source, ConversationsUser, RegisterUserRequest, UpdateUserRequest, ListUsersParams, Meeting, MeetingSession, CreateMeetingRequest, UpdateMeetingRequest, ListMeetingsParams, WebNotification, CreateWebNotificationRequest, BulkWebNotificationRequest, ListWebNotificationsParams, } from './lib/types';
4
- export type { MessagesService, DraftMessagesService, GroupsService, GroupInvitesService, NotificationsService, ConversationsService, WebSocketTokensService, ContextsService, NotificationSettingsService, AvailabilitiesService, MessageFilesService, SourcesService, UsersService, MeetingsService, WebNotificationsService, } from './lib/services';
5
- export { createMessagesService, createDraftMessagesService, createGroupsService, createGroupInvitesService, createNotificationsService, createConversationsService, createWebSocketTokensService, createContextsService, createNotificationSettingsService, createAvailabilitiesService, createMessageFilesService, createSourcesService, createUsersService, createMeetingsService, createWebNotificationsService, } from './lib/services';
6
- export { messageMapper, draftMessageMapper, groupMapper, groupInviteMapper, notificationMapper, contextMapper, messageFileMapper, sourceMapper, conversationsUserMapper, meetingMapper, webNotificationMapper, } from './lib/mappers';
1
+ export { createConversationsBlock, conversationsBlockMetadata } from './lib/conversations.block.js';
2
+ export type { ConversationsBlock, ConversationsBlockConfig } from './lib/conversations.block.js';
3
+ export type { Message, CreateMessageRequest, UpdateMessageRequest, ListMessagesParams, DraftMessage, CreateDraftMessageRequest, UpdateDraftMessageRequest, ListDraftMessagesParams, Group, CreateGroupRequest, UpdateGroupRequest, ListGroupsParams, GroupInvite, CreateGroupInviteRequest, JoinGroupRequest, QRCodeResponse, ListGroupInvitesParams, Notification, CreateNotificationRequest, UpdateNotificationRequest, ListNotificationsParams, Conversation, ConversationFile, ConversationMeta, GetConversationParams, WebSocketToken, CreateWebSocketTokenRequest, CreateWebSocketTokenResponse, Context, CreateContextRequest, UpdateContextRequest, ListContextsParams, NotificationSettings, UpdateNotificationSettingsRequest, UserAvailability, SetAvailabilityRequest, MessageFile, CreateMessageFileRequest, PresignMessageFileRequest, PresignMessageFileResponse, ListMessageFilesParams, Source, ConversationsUser, RegisterUserRequest, UpdateUserRequest, ListUsersParams, Meeting, MeetingSession, CreateMeetingRequest, UpdateMeetingRequest, ListMeetingsParams, WebNotification, CreateWebNotificationRequest, BulkWebNotificationRequest, ListWebNotificationsParams, } from './lib/types/index.js';
4
+ export type { MessagesService, DraftMessagesService, GroupsService, GroupInvitesService, NotificationsService, ConversationsService, WebSocketTokensService, ContextsService, NotificationSettingsService, AvailabilitiesService, MessageFilesService, SourcesService, UsersService, MeetingsService, WebNotificationsService, } from './lib/services/index.js';
5
+ export { createMessagesService, createDraftMessagesService, createGroupsService, createGroupInvitesService, createNotificationsService, createConversationsService, createWebSocketTokensService, createContextsService, createNotificationSettingsService, createAvailabilitiesService, createMessageFilesService, createSourcesService, createUsersService, createMeetingsService, createWebNotificationsService, } from './lib/services/index.js';
6
+ export { messageMapper, draftMessageMapper, groupMapper, groupInviteMapper, notificationMapper, contextMapper, messageFileMapper, sourceMapper, conversationsUserMapper, meetingMapper, webNotificationMapper, } from './lib/mappers/index.js';
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,wBAAwB,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACjG,YAAY,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AAG9F,YAAY,EAEV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EAEvB,KAAK,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAEhB,WAAW,EACX,wBAAwB,EACxB,gBAAgB,EAChB,cAAc,EACd,sBAAsB,EAEtB,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EAEvB,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EAErB,cAAc,EACd,2BAA2B,EAC3B,4BAA4B,EAE5B,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,oBAAoB,EACpB,iCAAiC,EAEjC,gBAAgB,EAChB,sBAAsB,EAEtB,WAAW,EACX,wBAAwB,EACxB,yBAAyB,EACzB,0BAA0B,EAC1B,sBAAsB,EAEtB,MAAM,EAEN,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EAEf,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,eAAe,EACf,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,GAC3B,MAAM,aAAa,CAAC;AAGrB,YAAY,EACV,eAAe,EACf,oBAAoB,EACpB,aAAa,EACb,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,sBAAsB,EACtB,eAAe,EACf,2BAA2B,EAC3B,qBAAqB,EACrB,mBAAmB,EACnB,cAAc,EACd,YAAY,EACZ,eAAe,EACf,uBAAuB,GACxB,MAAM,gBAAgB,CAAC;AAExB,OAAO,EACL,qBAAqB,EACrB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,0BAA0B,EAC1B,0BAA0B,EAC1B,4BAA4B,EAC5B,qBAAqB,EACrB,iCAAiC,EACjC,2BAA2B,EAC3B,yBAAyB,EACzB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,6BAA6B,GAC9B,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,uBAAuB,EACvB,aAAa,EACb,qBAAqB,GACtB,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,wBAAwB,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AACpG,YAAY,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAGjG,YAAY,EAEV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EAEvB,KAAK,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAEhB,WAAW,EACX,wBAAwB,EACxB,gBAAgB,EAChB,cAAc,EACd,sBAAsB,EAEtB,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EAEvB,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EAErB,cAAc,EACd,2BAA2B,EAC3B,4BAA4B,EAE5B,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,oBAAoB,EACpB,iCAAiC,EAEjC,gBAAgB,EAChB,sBAAsB,EAEtB,WAAW,EACX,wBAAwB,EACxB,yBAAyB,EACzB,0BAA0B,EAC1B,sBAAsB,EAEtB,MAAM,EAEN,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EAEf,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EAElB,eAAe,EACf,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,GAC3B,MAAM,sBAAsB,CAAC;AAG9B,YAAY,EACV,eAAe,EACf,oBAAoB,EACpB,aAAa,EACb,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,sBAAsB,EACtB,eAAe,EACf,2BAA2B,EAC3B,qBAAqB,EACrB,mBAAmB,EACnB,cAAc,EACd,YAAY,EACZ,eAAe,EACf,uBAAuB,GACxB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EACL,qBAAqB,EACrB,0BAA0B,EAC1B,mBAAmB,EACnB,yBAAyB,EACzB,0BAA0B,EAC1B,0BAA0B,EAC1B,4BAA4B,EAC5B,qBAAqB,EACrB,iCAAiC,EACjC,2BAA2B,EAC3B,yBAAyB,EACzB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,6BAA6B,GAC9B,MAAM,yBAAyB,CAAC;AAGjC,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,uBAAuB,EACvB,aAAa,EACb,qBAAqB,GACtB,MAAM,wBAAwB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, BlockConfig, BlockMetadata } from '@23blocks/contracts';
2
- import { type MessagesService, type DraftMessagesService, type GroupsService, type GroupInvitesService, type NotificationsService, type ConversationsService, type WebSocketTokensService, type ContextsService, type NotificationSettingsService, type AvailabilitiesService, type MessageFilesService, type SourcesService, type UsersService, type MeetingsService, type WebNotificationsService } from './services';
2
+ import { type MessagesService, type DraftMessagesService, type GroupsService, type GroupInvitesService, type NotificationsService, type ConversationsService, type WebSocketTokensService, type ContextsService, type NotificationSettingsService, type AvailabilitiesService, type MessageFilesService, type SourcesService, type UsersService, type MeetingsService, type WebNotificationsService } from './services/index.js';
3
3
  export interface ConversationsBlockConfig extends BlockConfig {
4
4
  appId: string;
5
5
  tenantId?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"conversations.block.d.ts","sourceRoot":"","sources":["../../../src/lib/conversations.block.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACjF,OAAO,EAgBL,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,aAAa,EAClB,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,KAAK,2BAA2B,EAChC,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC7B,MAAM,YAAY,CAAC;AAEpB,MAAM,WAAW,wBAAyB,SAAQ,WAAW;IAC3D,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,eAAe,CAAC;IAC1B,aAAa,EAAE,oBAAoB,CAAC;IACpC,MAAM,EAAE,aAAa,CAAC;IACtB,YAAY,EAAE,mBAAmB,CAAC;IAClC,aAAa,EAAE,oBAAoB,CAAC;IACpC,aAAa,EAAE,oBAAoB,CAAC;IACpC,eAAe,EAAE,sBAAsB,CAAC;IACxC,QAAQ,EAAE,eAAe,CAAC;IAC1B,oBAAoB,EAAE,2BAA2B,CAAC;IAClD,cAAc,EAAE,qBAAqB,CAAC;IACtC,YAAY,EAAE,mBAAmB,CAAC;IAClC,OAAO,EAAE,cAAc,CAAC;IACxB,KAAK,EAAE,YAAY,CAAC;IACpB,QAAQ,EAAE,eAAe,CAAC;IAC1B,gBAAgB,EAAE,uBAAuB,CAAC;CAC3C;AAED,wBAAgB,wBAAwB,CACtC,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,wBAAwB,GAC/B,kBAAkB,CAkBpB;AAED,eAAO,MAAM,0BAA0B,EAAE,aAkBxC,CAAC"}
1
+ {"version":3,"file":"conversations.block.d.ts","sourceRoot":"","sources":["../../../src/lib/conversations.block.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACjF,OAAO,EAgBL,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,aAAa,EAClB,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,KAAK,2BAA2B,EAChC,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC7B,MAAM,qBAAqB,CAAC;AAE7B,MAAM,WAAW,wBAAyB,SAAQ,WAAW;IAC3D,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,eAAe,CAAC;IAC1B,aAAa,EAAE,oBAAoB,CAAC;IACpC,MAAM,EAAE,aAAa,CAAC;IACtB,YAAY,EAAE,mBAAmB,CAAC;IAClC,aAAa,EAAE,oBAAoB,CAAC;IACpC,aAAa,EAAE,oBAAoB,CAAC;IACpC,eAAe,EAAE,sBAAsB,CAAC;IACxC,QAAQ,EAAE,eAAe,CAAC;IAC1B,oBAAoB,EAAE,2BAA2B,CAAC;IAClD,cAAc,EAAE,qBAAqB,CAAC;IACtC,YAAY,EAAE,mBAAmB,CAAC;IAClC,OAAO,EAAE,cAAc,CAAC;IACxB,KAAK,EAAE,YAAY,CAAC;IACpB,QAAQ,EAAE,eAAe,CAAC;IAC1B,gBAAgB,EAAE,uBAAuB,CAAC;CAC3C;AAED,wBAAgB,wBAAwB,CACtC,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,wBAAwB,GAC/B,kBAAkB,CAkBpB;AAED,eAAO,MAAM,0BAA0B,EAAE,aAkBxC,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Context } from '../types/context';
2
+ import type { Context } from '../types/context.js';
3
3
  export declare const contextMapper: ResourceMapper<Context>;
4
4
  //# sourceMappingURL=context.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"context.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/context.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAGhD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CAcjD,CAAC"}
1
+ {"version":3,"file":"context.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/context.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAGnD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CAcjD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { DraftMessage } from '../types/draft-message';
2
+ import type { DraftMessage } from '../types/draft-message.js';
3
3
  export declare const draftMessageMapper: ResourceMapper<DraftMessage>;
4
4
  //# sourceMappingURL=draft-message.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"draft-message.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/draft-message.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAG3D,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,YAAY,CAwD3D,CAAC"}
1
+ {"version":3,"file":"draft-message.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/draft-message.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAG9D,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,YAAY,CAwD3D,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { GroupInvite } from '../types/group-invite';
2
+ import type { GroupInvite } from '../types/group-invite.js';
3
3
  export declare const groupInviteMapper: ResourceMapper<GroupInvite>;
4
4
  //# sourceMappingURL=group-invite.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"group-invite.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/group-invite.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAgC,MAAM,yBAAyB,CAAC;AAC5F,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGzD,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,WAAW,CAkBzD,CAAC"}
1
+ {"version":3,"file":"group-invite.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/group-invite.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAgC,MAAM,yBAAyB,CAAC;AAC5F,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAG5D,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,WAAW,CAkBzD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Group } from '../types/group';
2
+ import type { Group } from '../types/group.js';
3
3
  export declare const groupMapper: ResourceMapper<Group>;
4
4
  //# sourceMappingURL=group.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"group.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/group.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAG5C,eAAO,MAAM,WAAW,EAAE,cAAc,CAAC,KAAK,CA8B7C,CAAC"}
1
+ {"version":3,"file":"group.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/group.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG/C,eAAO,MAAM,WAAW,EAAE,cAAc,CAAC,KAAK,CA8B7C,CAAC"}
@@ -1,13 +1,13 @@
1
- export * from './message.mapper';
2
- export * from './draft-message.mapper';
3
- export * from './group.mapper';
4
- export * from './group-invite.mapper';
5
- export * from './notification.mapper';
6
- export * from './context.mapper';
7
- export * from './message-file.mapper';
8
- export * from './source.mapper';
9
- export * from './user.mapper';
10
- export * from './meeting.mapper';
11
- export * from './web-notification.mapper';
12
- export * from './utils';
1
+ export * from './message.mapper.js';
2
+ export * from './draft-message.mapper.js';
3
+ export * from './group.mapper.js';
4
+ export * from './group-invite.mapper.js';
5
+ export * from './notification.mapper.js';
6
+ export * from './context.mapper.js';
7
+ export * from './message-file.mapper.js';
8
+ export * from './source.mapper.js';
9
+ export * from './user.mapper.js';
10
+ export * from './meeting.mapper.js';
11
+ export * from './web-notification.mapper.js';
12
+ export * from './utils.js';
13
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,YAAY,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Meeting } from '../types/meeting';
2
+ import type { Meeting } from '../types/meeting.js';
3
3
  export declare const meetingMapper: ResourceMapper<Meeting>;
4
4
  //# sourceMappingURL=meeting.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"meeting.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/meeting.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAGhD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CA4BjD,CAAC"}
1
+ {"version":3,"file":"meeting.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/meeting.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAGnD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CA4BjD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { MessageFile } from '../types/message-file';
2
+ import type { MessageFile } from '../types/message-file.js';
3
3
  export declare const messageFileMapper: ResourceMapper<MessageFile>;
4
4
  //# sourceMappingURL=message-file.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"message-file.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/message-file.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGzD,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,WAAW,CAkBzD,CAAC"}
1
+ {"version":3,"file":"message-file.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/message-file.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAG5D,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,WAAW,CAkBzD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Message } from '../types/message';
2
+ import type { Message } from '../types/message.js';
3
3
  export declare const messageMapper: ResourceMapper<Message>;
4
4
  //# sourceMappingURL=message.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"message.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/message.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAGhD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CA4DjD,CAAC"}
1
+ {"version":3,"file":"message.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/message.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAGnD,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,OAAO,CA4DjD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Notification } from '../types/notification';
2
+ import type { Notification } from '../types/notification.js';
3
3
  export declare const notificationMapper: ResourceMapper<Notification>;
4
4
  //# sourceMappingURL=notification.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"notification.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/notification.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAG1D,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,YAAY,CA4C3D,CAAC"}
1
+ {"version":3,"file":"notification.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/notification.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAG7D,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,YAAY,CA4C3D,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { Source } from '../types/source';
2
+ import type { Source } from '../types/source.js';
3
3
  export declare const sourceMapper: ResourceMapper<Source>;
4
4
  //# sourceMappingURL=source.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"source.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/source.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAG9C,eAAO,MAAM,YAAY,EAAE,cAAc,CAAC,MAAM,CAc/C,CAAC"}
1
+ {"version":3,"file":"source.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/source.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAGjD,eAAO,MAAM,YAAY,EAAE,cAAc,CAAC,MAAM,CAc/C,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { ConversationsUser } from '../types/user';
2
+ import type { ConversationsUser } from '../types/user.js';
3
3
  export declare const conversationsUserMapper: ResourceMapper<ConversationsUser>;
4
4
  //# sourceMappingURL=user.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"user.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/user.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAGvD,eAAO,MAAM,uBAAuB,EAAE,cAAc,CAAC,iBAAiB,CAerE,CAAC"}
1
+ {"version":3,"file":"user.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/user.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAG1D,eAAO,MAAM,uBAAuB,EAAE,cAAc,CAAC,iBAAiB,CAerE,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import type { ResourceMapper } from '@23blocks/jsonapi-codec';
2
- import type { WebNotification } from '../types/web-notification';
2
+ import type { WebNotification } from '../types/web-notification.js';
3
3
  export declare const webNotificationMapper: ResourceMapper<WebNotification>;
4
4
  //# sourceMappingURL=web-notification.mapper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"web-notification.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/web-notification.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAWjE,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,eAAe,CAwBjE,CAAC"}
1
+ {"version":3,"file":"web-notification.mapper.d.ts","sourceRoot":"","sources":["../../../../src/lib/mappers/web-notification.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAWpE,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,eAAe,CAwBjE,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { UserAvailability, SetAvailabilityRequest } from '../types/availability';
2
+ import type { UserAvailability, SetAvailabilityRequest } from '../types/availability.js';
3
3
  export interface AvailabilitiesService {
4
4
  get(userUniqueId: string): Promise<UserAvailability>;
5
5
  goOnline(data?: SetAvailabilityRequest): Promise<UserAvailability>;
@@ -1 +1 @@
1
- {"version":3,"file":"availabilities.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/availabilities.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,gBAAgB,EAChB,sBAAsB,EACvB,MAAM,uBAAuB,CAAC;AAE/B,MAAM,WAAW,qBAAqB;IACpC,GAAG,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IACrD,QAAQ,CAAC,IAAI,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IACnE,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5B;AAED,wBAAgB,2BAA2B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,qBAAqB,CAuCnH"}
1
+ {"version":3,"file":"availabilities.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/availabilities.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,gBAAgB,EAChB,sBAAsB,EACvB,MAAM,0BAA0B,CAAC;AAElC,MAAM,WAAW,qBAAqB;IACpC,GAAG,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IACrD,QAAQ,CAAC,IAAI,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IACnE,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5B;AAED,wBAAgB,2BAA2B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,qBAAqB,CAuCnH"}
@@ -1,6 +1,6 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { Context, CreateContextRequest, UpdateContextRequest, ListContextsParams } from '../types/context';
3
- import type { Group } from '../types/group';
2
+ import type { Context, CreateContextRequest, UpdateContextRequest, ListContextsParams } from '../types/context.js';
3
+ import type { Group } from '../types/group.js';
4
4
  export interface ContextsService {
5
5
  list(params?: ListContextsParams): Promise<PageResult<Context>>;
6
6
  get(uniqueId: string): Promise<Context>;
@@ -1 +1 @@
1
- {"version":3,"file":"contexts.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/contexts.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAI5C,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,UAAU,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;CACjE;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CAoDvG"}
1
+ {"version":3,"file":"contexts.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/contexts.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAI/C,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,UAAU,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;CACjE;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CAoDvG"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { Conversation, GetConversationParams } from '../types/conversation';
2
+ import type { Conversation, GetConversationParams } from '../types/conversation.js';
3
3
  export interface ConversationsService {
4
4
  get(params: GetConversationParams): Promise<Conversation>;
5
5
  listContexts(): Promise<string[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"conversations.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/conversations.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACtB,MAAM,uBAAuB,CAAC;AAG/B,MAAM,WAAW,oBAAoB;IACnC,GAAG,CAAC,MAAM,EAAE,qBAAqB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC1D,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAClC,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC/C;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CAoCjH"}
1
+ {"version":3,"file":"conversations.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/conversations.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACtB,MAAM,0BAA0B,CAAC;AAGlC,MAAM,WAAW,oBAAoB;IACnC,GAAG,CAAC,MAAM,EAAE,qBAAqB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC1D,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAClC,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC/C;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CAoCjH"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { DraftMessage, CreateDraftMessageRequest, UpdateDraftMessageRequest, ListDraftMessagesParams } from '../types/draft-message';
2
+ import type { DraftMessage, CreateDraftMessageRequest, UpdateDraftMessageRequest, ListDraftMessagesParams } from '../types/draft-message.js';
3
3
  export interface DraftMessagesService {
4
4
  list(params?: ListDraftMessagesParams): Promise<PageResult<DraftMessage>>;
5
5
  get(uniqueId: string): Promise<DraftMessage>;
@@ -1 +1 @@
1
- {"version":3,"file":"draft-messages.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/draft-messages.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EACxB,MAAM,wBAAwB,CAAC;AAGhC,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1E,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC7C,MAAM,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC/D,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACjF,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACtG,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CAClD;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CAuFjH"}
1
+ {"version":3,"file":"draft-messages.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/draft-messages.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EACxB,MAAM,2BAA2B,CAAC;AAGnC,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1E,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC7C,MAAM,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC/D,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACjF,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACtG,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CAClD;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CAuFjH"}
@@ -1,6 +1,6 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { GroupInvite, CreateGroupInviteRequest, JoinGroupRequest, QRCodeResponse, ListGroupInvitesParams } from '../types/group-invite';
3
- import type { Group } from '../types/group';
2
+ import type { GroupInvite, CreateGroupInviteRequest, JoinGroupRequest, QRCodeResponse, ListGroupInvitesParams } from '../types/group-invite.js';
3
+ import type { Group } from '../types/group.js';
4
4
  /**
5
5
  * Group Invites Service - manages group invitation links
6
6
  */
@@ -1 +1 @@
1
- {"version":3,"file":"group-invites.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/group-invites.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,WAAW,EACX,wBAAwB,EACxB,gBAAgB,EAChB,cAAc,EACd,sBAAsB,EACvB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAI5C;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IAE/F;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAErF;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE3D;;OAEG;IACH,SAAS,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAExE;;OAEG;IACH,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;CAC7D;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,mBAAmB,CA8C/G"}
1
+ {"version":3,"file":"group-invites.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/group-invites.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,WAAW,EACX,wBAAwB,EACxB,gBAAgB,EAChB,cAAc,EACd,sBAAsB,EACvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAI/C;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IAE/F;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAErF;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE3D;;OAEG;IACH,SAAS,CAAC,aAAa,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAExE;;OAEG;IACH,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;CAC7D;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,mBAAmB,CA8C/G"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { Group, CreateGroupRequest, UpdateGroupRequest, ListGroupsParams } from '../types/group';
2
+ import type { Group, CreateGroupRequest, UpdateGroupRequest, ListGroupsParams } from '../types/group.js';
3
3
  export interface GroupsService {
4
4
  list(params?: ListGroupsParams): Promise<PageResult<Group>>;
5
5
  get(uniqueId: string): Promise<Group>;
@@ -1 +1 @@
1
- {"version":3,"file":"groups.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/groups.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,KAAK,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AAGxB,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAC5D,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACtC,MAAM,CAAC,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACjD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACnE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC1C,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAC7E,WAAW,CAAC,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IACnE,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC9D,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;CAClE;AAED,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,aAAa,CAiGnG"}
1
+ {"version":3,"file":"groups.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/groups.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,KAAK,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EACjB,MAAM,mBAAmB,CAAC;AAG3B,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAC5D,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACtC,MAAM,CAAC,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACjD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IACnE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC1C,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAC7E,WAAW,CAAC,MAAM,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IACnE,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;IAC9D,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;CAClE;AAED,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,aAAa,CAiGnG"}
@@ -1,16 +1,16 @@
1
- export * from './messages.service';
2
- export * from './draft-messages.service';
3
- export * from './groups.service';
4
- export * from './group-invites.service';
5
- export * from './notifications.service';
6
- export * from './conversations.service';
7
- export * from './websocket-tokens.service';
8
- export * from './contexts.service';
9
- export * from './notification-settings.service';
10
- export * from './availabilities.service';
11
- export * from './message-files.service';
12
- export * from './sources.service';
13
- export * from './users.service';
14
- export * from './meetings.service';
15
- export * from './web-notifications.service';
1
+ export * from './messages.service.js';
2
+ export * from './draft-messages.service.js';
3
+ export * from './groups.service.js';
4
+ export * from './group-invites.service.js';
5
+ export * from './notifications.service.js';
6
+ export * from './conversations.service.js';
7
+ export * from './websocket-tokens.service.js';
8
+ export * from './contexts.service.js';
9
+ export * from './notification-settings.service.js';
10
+ export * from './availabilities.service.js';
11
+ export * from './message-files.service.js';
12
+ export * from './sources.service.js';
13
+ export * from './users.service.js';
14
+ export * from './meetings.service.js';
15
+ export * from './web-notifications.service.js';
16
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { Meeting, MeetingSession, CreateMeetingRequest, UpdateMeetingRequest, ListMeetingsParams } from '../types/meeting';
2
+ import type { Meeting, MeetingSession, CreateMeetingRequest, UpdateMeetingRequest, ListMeetingsParams } from '../types/meeting.js';
3
3
  export interface MeetingsService {
4
4
  list(params?: ListMeetingsParams): Promise<PageResult<Meeting>>;
5
5
  get(uniqueId: string): Promise<Meeting>;
@@ -1 +1 @@
1
- {"version":3,"file":"meetings.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/meetings.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,kBAAkB,CAAC;AAG1B,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC;;OAEG;IACH,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAEzD;;OAEG;IACH,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE1C;;OAEG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACzC;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CAkFvG"}
1
+ {"version":3,"file":"meetings.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/meetings.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAG7B,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC;;OAEG;IACH,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAEzD;;OAEG;IACH,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE1C;;OAEG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACzC;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CAkFvG"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { MessageFile, CreateMessageFileRequest, PresignMessageFileRequest, PresignMessageFileResponse } from '../types/message-file';
2
+ import type { MessageFile, CreateMessageFileRequest, PresignMessageFileRequest, PresignMessageFileResponse } from '../types/message-file.js';
3
3
  export interface MessageFilesService {
4
4
  get(conversationUniqueId: string, fileUniqueId: string): Promise<MessageFile>;
5
5
  create(conversationUniqueId: string, data: CreateMessageFileRequest): Promise<MessageFile>;
@@ -1 +1 @@
1
- {"version":3,"file":"message-files.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/message-files.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,WAAW,EACX,wBAAwB,EACxB,yBAAyB,EACzB,0BAA0B,EAC3B,MAAM,uBAAuB,CAAC;AAG/B,MAAM,WAAW,mBAAmB;IAClC,GAAG,CAAC,oBAAoB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAC9E,MAAM,CAAC,oBAAoB,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAC3F,MAAM,CAAC,oBAAoB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1E,OAAO,CAAC,oBAAoB,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAAC;CAC7G;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,mBAAmB,CA2C/G"}
1
+ {"version":3,"file":"message-files.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/message-files.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,WAAW,EACX,wBAAwB,EACxB,yBAAyB,EACzB,0BAA0B,EAC3B,MAAM,0BAA0B,CAAC;AAGlC,MAAM,WAAW,mBAAmB;IAClC,GAAG,CAAC,oBAAoB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAC9E,MAAM,CAAC,oBAAoB,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAC3F,MAAM,CAAC,oBAAoB,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1E,OAAO,CAAC,oBAAoB,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAAC;CAC7G;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,mBAAmB,CA2C/G"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { Message, CreateMessageRequest, UpdateMessageRequest, ListMessagesParams } from '../types/message';
2
+ import type { Message, CreateMessageRequest, UpdateMessageRequest, ListMessagesParams } from '../types/message.js';
3
3
  export interface MessagesService {
4
4
  list(params?: ListMessagesParams): Promise<PageResult<Message>>;
5
5
  get(uniqueId: string): Promise<Message>;
@@ -1 +1 @@
1
- {"version":3,"file":"messages.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/messages.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,kBAAkB,CAAC;AAG1B,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAC5C,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAC5F,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1F,WAAW,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;CACxE;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CA6GvG"}
1
+ {"version":3,"file":"messages.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/messages.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,OAAO,EACP,oBAAoB,EACpB,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAG7B,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAChE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACrD,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAC5C,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAC5F,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1F,WAAW,CAAC,MAAM,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC;CACxE;AAED,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,eAAe,CA6GvG"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { NotificationSettings, UpdateNotificationSettingsRequest } from '../types/notification-settings';
2
+ import type { NotificationSettings, UpdateNotificationSettingsRequest } from '../types/notification-settings.js';
3
3
  export interface NotificationSettingsService {
4
4
  get(userUniqueId: string): Promise<NotificationSettings>;
5
5
  update(userUniqueId: string, data: UpdateNotificationSettingsRequest): Promise<NotificationSettings>;
@@ -1 +1 @@
1
- {"version":3,"file":"notification-settings.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/notification-settings.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,oBAAoB,EACpB,iCAAiC,EAClC,MAAM,gCAAgC,CAAC;AAExC,MAAM,WAAW,2BAA2B;IAC1C,GAAG,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACzD,MAAM,CAAC,YAAY,EAAE,MAAM,EAAE,IAAI,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;CACtG;AAED,wBAAgB,iCAAiC,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,2BAA2B,CAmD/H"}
1
+ {"version":3,"file":"notification-settings.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/notification-settings.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,oBAAoB,EACpB,iCAAiC,EAClC,MAAM,mCAAmC,CAAC;AAE3C,MAAM,WAAW,2BAA2B;IAC1C,GAAG,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACzD,MAAM,CAAC,YAAY,EAAE,MAAM,EAAE,IAAI,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;CACtG;AAED,wBAAgB,iCAAiC,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,2BAA2B,CAmD/H"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { Notification, CreateNotificationRequest, UpdateNotificationRequest, ListNotificationsParams } from '../types/notification';
2
+ import type { Notification, CreateNotificationRequest, UpdateNotificationRequest, ListNotificationsParams } from '../types/notification.js';
3
3
  export interface NotificationsService {
4
4
  list(params?: ListNotificationsParams): Promise<PageResult<Notification>>;
5
5
  get(uniqueId: string): Promise<Notification>;
@@ -1 +1 @@
1
- {"version":3,"file":"notifications.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/notifications.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EACxB,MAAM,uBAAuB,CAAC;AAG/B,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1E,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC7C,MAAM,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC/D,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACjF,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACpD,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACpG,UAAU,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;CACjF;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CA4FjH"}
1
+ {"version":3,"file":"notifications.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/notifications.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,YAAY,EACZ,yBAAyB,EACzB,yBAAyB,EACzB,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAGlC,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1E,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC7C,MAAM,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC/D,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACjF,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxC,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACpD,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACtD,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACpG,UAAU,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;CACjF;AAED,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,oBAAoB,CA4FjH"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { Source } from '../types/source';
2
+ import type { Source } from '../types/source.js';
3
3
  export interface SourcesService {
4
4
  get(uniqueId: string): Promise<Source>;
5
5
  }
@@ -1 +1 @@
1
- {"version":3,"file":"sources.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/sources.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAG9C,MAAM,WAAW,cAAc;IAC7B,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACxC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,cAAc,CAOrG"}
1
+ {"version":3,"file":"sources.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/sources.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAGjD,MAAM,WAAW,cAAc;IAC7B,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACxC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,cAAc,CAOrG"}
@@ -1,7 +1,7 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { ConversationsUser, RegisterUserRequest, UpdateUserRequest, ListUsersParams } from '../types/user';
3
- import type { Group } from '../types/group';
4
- import type { Conversation } from '../types/conversation';
2
+ import type { ConversationsUser, RegisterUserRequest, UpdateUserRequest, ListUsersParams } from '../types/user.js';
3
+ import type { Group } from '../types/group.js';
4
+ import type { Conversation } from '../types/conversation.js';
5
5
  export interface UsersService {
6
6
  list(params?: ListUsersParams): Promise<PageResult<ConversationsUser>>;
7
7
  get(uniqueId: string): Promise<ConversationsUser>;
@@ -1 +1 @@
1
- {"version":3,"file":"users.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/users.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EAChB,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAK1D,MAAM,WAAW,YAAY;IAC3B,IAAI,CAAC,MAAM,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC,CAAC;IACvE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAClD,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IACnF,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAC9E,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IACzD,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACrH,sBAAsB,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1H,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1F;AAED,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,YAAY,CA8GjG"}
1
+ {"version":3,"file":"users.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/users.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EAChB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAK7D,MAAM,WAAW,YAAY;IAC3B,IAAI,CAAC,MAAM,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC,CAAC;IACvE,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAClD,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IACnF,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAC9E,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IACzD,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACrH,sBAAsB,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1H,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1F;AAED,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,YAAY,CA8GjG"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport, PageResult } from '@23blocks/contracts';
2
- import type { WebNotification, CreateWebNotificationRequest, BulkWebNotificationRequest, ListWebNotificationsParams } from '../types/web-notification';
2
+ import type { WebNotification, CreateWebNotificationRequest, BulkWebNotificationRequest, ListWebNotificationsParams } from '../types/web-notification.js';
3
3
  export interface WebNotificationsService {
4
4
  list(params?: ListWebNotificationsParams): Promise<PageResult<WebNotification>>;
5
5
  get(uniqueId: string): Promise<WebNotification>;
@@ -1 +1 @@
1
- {"version":3,"file":"web-notifications.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/web-notifications.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,eAAe,EACf,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,EAC3B,MAAM,2BAA2B,CAAC;AAGnC,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,MAAM,CAAC,EAAE,0BAA0B,GAAG,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC;IAChF,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IAChD,IAAI,CAAC,IAAI,EAAE,4BAA4B,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IACnE,QAAQ,CAAC,IAAI,EAAE,0BAA0B,GAAG,OAAO,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACtF,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IACvD,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IAC1D,aAAa,CAAC,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACzC;AAED,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,uBAAuB,CAoFvH"}
1
+ {"version":3,"file":"web-notifications.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/web-notifications.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,KAAK,EACV,eAAe,EACf,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,EAC3B,MAAM,8BAA8B,CAAC;AAGtC,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,MAAM,CAAC,EAAE,0BAA0B,GAAG,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC;IAChF,GAAG,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IAChD,IAAI,CAAC,IAAI,EAAE,4BAA4B,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IACnE,QAAQ,CAAC,IAAI,EAAE,0BAA0B,GAAG,OAAO,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACtF,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IACvD,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;IAC1D,aAAa,CAAC,iBAAiB,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACzC;AAED,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,uBAAuB,CAoFvH"}
@@ -1,5 +1,5 @@
1
1
  import type { Transport } from '@23blocks/contracts';
2
- import type { CreateWebSocketTokenRequest, CreateWebSocketTokenResponse } from '../types/websocket-token';
2
+ import type { CreateWebSocketTokenRequest, CreateWebSocketTokenResponse } from '../types/websocket-token.js';
3
3
  export interface WebSocketTokensService {
4
4
  create(data?: CreateWebSocketTokenRequest): Promise<CreateWebSocketTokenResponse>;
5
5
  }
@@ -1 +1 @@
1
- {"version":3,"file":"websocket-tokens.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/websocket-tokens.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,2BAA2B,EAC3B,4BAA4B,EAC7B,MAAM,0BAA0B,CAAC;AAElC,MAAM,WAAW,sBAAsB;IACrC,MAAM,CAAC,IAAI,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC;CACnF;AAED,wBAAgB,4BAA4B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,sBAAsB,CAmBrH"}
1
+ {"version":3,"file":"websocket-tokens.service.d.ts","sourceRoot":"","sources":["../../../../src/lib/services/websocket-tokens.service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EACV,2BAA2B,EAC3B,4BAA4B,EAC7B,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,sBAAsB;IACrC,MAAM,CAAC,IAAI,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC;CACnF;AAED,wBAAgB,4BAA4B,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,sBAAsB,CAmBrH"}
@@ -1,4 +1,4 @@
1
- import type { Message } from './message';
1
+ import type { Message } from './message.js';
2
2
  export interface ConversationFile {
3
3
  uniqueId: string;
4
4
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/conversation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,gBAAgB;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC3B,IAAI,CAAC,EAAE,gBAAgB,CAAC;CACzB;AAGD,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB"}
1
+ {"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/conversation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE5C,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,gBAAgB;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC3B,IAAI,CAAC,EAAE,gBAAgB,CAAC;CACzB;AAGD,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB"}
@@ -1,16 +1,16 @@
1
- export * from './message';
2
- export * from './draft-message';
3
- export * from './group';
4
- export * from './group-invite';
5
- export * from './notification';
6
- export * from './conversation';
7
- export * from './websocket-token';
8
- export * from './context';
9
- export * from './notification-settings';
10
- export * from './availability';
11
- export * from './message-file';
12
- export * from './source';
13
- export * from './user';
14
- export * from './meeting';
15
- export * from './web-notification';
1
+ export * from './message.js';
2
+ export * from './draft-message.js';
3
+ export * from './group.js';
4
+ export * from './group-invite.js';
5
+ export * from './notification.js';
6
+ export * from './conversation.js';
7
+ export * from './websocket-token.js';
8
+ export * from './context.js';
9
+ export * from './notification-settings.js';
10
+ export * from './availability.js';
11
+ export * from './message-file.js';
12
+ export * from './source.js';
13
+ export * from './user.js';
14
+ export * from './meeting.js';
15
+ export * from './web-notification.js';
16
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,yBAAyB,CAAC;AACxC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@23blocks/block-conversations",
3
- "version": "3.3.1",
3
+ "version": "3.3.3",
4
4
  "description": "Conversations block for 23blocks SDK - messaging, groups, notifications, and conversations management",
5
5
  "license": "MIT",
6
6
  "author": "23blocks <hello@23blocks.com>",