@acorex/components 20.7.5 → 20.7.7

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.
@@ -506,27 +506,6 @@ interface AXConversationStatus {
506
506
  /** Last seen timestamp (for private chats when offline) */
507
507
  lastSeen?: Date;
508
508
  }
509
- /**
510
- * Conversation permissions
511
- */
512
- interface AXConversationPermissions {
513
- /** Can send messages */
514
- canSendMessages: boolean;
515
- /** Can send media */
516
- canSendMedia: boolean;
517
- /** Can add members (groups) */
518
- canAddMembers: boolean;
519
- /** Can remove members (groups) */
520
- canRemoveMembers: boolean;
521
- /** Can change conversation info */
522
- canEditInfo: boolean;
523
- /** Can pin messages */
524
- canPinMessages: boolean;
525
- /** Can delete messages */
526
- canDeleteMessages: boolean;
527
- /** Custom permissions */
528
- custom?: Record<string, boolean>;
529
- }
530
509
  /**
531
510
  * Conversation settings
532
511
  */
@@ -587,8 +566,6 @@ interface AXConversation {
587
566
  unreadMentions?: number;
588
567
  /** Current status (typing, presence, etc.) */
589
568
  status: AXConversationStatus;
590
- /** User permissions in this conversation */
591
- permissions: AXConversationPermissions;
592
569
  /** User-specific settings */
593
570
  settings: AXConversationSettings;
594
571
  /** Pinned messages IDs */
@@ -1410,6 +1387,9 @@ declare class AXComposerService {
1410
1387
  readonly attachments: _angular_core.WritableSignal<File[]>;
1411
1388
  /** Show typing indicator */
1412
1389
  readonly showTypingIndicator: _angular_core.WritableSignal<boolean>;
1390
+ /** Incremented to request focus on the composer text area (handled by AXComposerComponent). */
1391
+ private readonly _focusRequest;
1392
+ readonly focusRequest: _angular_core.Signal<number>;
1413
1393
  /** Input placeholder */
1414
1394
  readonly placeholder: _angular_core.Signal<string>;
1415
1395
  /** Number of input rows */
@@ -1432,6 +1412,8 @@ declare class AXComposerService {
1432
1412
  readonly rightMenuActions: _angular_core.Signal<AXComposerAction[]>;
1433
1413
  startReply(message: AXMessage): void;
1434
1414
  startEdit(message: AXMessage): void;
1415
+ /** Focus the composer text area when the composer component is mounted. */
1416
+ focusComposer(): void;
1435
1417
  clear(): void;
1436
1418
  sendTypingIndicator(conversationId: string): Promise<void>;
1437
1419
  sendMessage(command: AXSendMessageCommand): Promise<void>;
@@ -1482,8 +1464,8 @@ declare class AXComposerComponent implements OnDestroy {
1482
1464
  private readonly translation;
1483
1465
  /** Access registry through conversation service */
1484
1466
  private get registry();
1485
- /** Input element reference */
1486
- private readonly inputElementRef;
1467
+ /** Composer text area reference */
1468
+ private readonly textAreaRef;
1487
1469
  /** Draft text - use service */
1488
1470
  readonly draftText: _angular_core.WritableSignal<string>;
1489
1471
  /** Attachments - use service */
@@ -1577,6 +1559,8 @@ declare class AXComposerComponent implements OnDestroy {
1577
1559
  startEdit(message: any): void;
1578
1560
  /** Start replying to a message */
1579
1561
  startReply(message: AXMessage): void;
1562
+ /** Focus the native textarea inside ax-text-area */
1563
+ private focusTextArea;
1580
1564
  /** Handle action click */
1581
1565
  onActionClick(actionId: string, event?: MouseEvent): Promise<void>;
1582
1566
  /** Check if action is enabled */
@@ -1837,8 +1821,6 @@ interface AXParticipantUpdate {
1837
1821
  userId: string;
1838
1822
  /** New role */
1839
1823
  role?: AXUserRole;
1840
- /** Custom permissions */
1841
- permissions?: Record<string, boolean>;
1842
1824
  }
1843
1825
  /**
1844
1826
  * Abstract Conversation Management API
@@ -1997,7 +1979,7 @@ declare abstract class AXConversationApi {
1997
1979
  */
1998
1980
  abstract leaveConversation(conversationId: string): Promise<void>;
1999
1981
  /**
2000
- * Update participant role/permissions
1982
+ * Update participant role
2001
1983
  *
2002
1984
  * @param conversationId - Conversation ID
2003
1985
  * @param update - Participant update data
@@ -2078,22 +2060,6 @@ declare abstract class AXConversationApi {
2078
2060
  * @throws {AXApiError} If request fails
2079
2061
  */
2080
2062
  abstract getConversationTags(conversationId: string): Promise<string[]>;
2081
- /**
2082
- * Get conversation permissions for current user
2083
- *
2084
- * @param conversationId - Conversation ID
2085
- * @returns User permissions
2086
- * @throws {AXApiError} If request fails
2087
- */
2088
- abstract getConversationPermissions(conversationId: string): Promise<Record<string, boolean>>;
2089
- /**
2090
- * Update conversation permissions
2091
- *
2092
- * @param conversationId - Conversation ID
2093
- * @param permissions - Permissions to update
2094
- * @throws {AXApiError} If update fails
2095
- */
2096
- abstract updateConversationPermissions(conversationId: string, permissions: Record<string, boolean>): Promise<void>;
2097
2063
  /**
2098
2064
  * Save draft message for conversation
2099
2065
  *
@@ -4437,8 +4403,6 @@ declare class AXConversationIndexedDbConversationApi extends AXConversationApi {
4437
4403
  addConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4438
4404
  removeConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4439
4405
  getConversationTags(_conversationId: string): Promise<string[]>;
4440
- getConversationPermissions(_conversationId: string): Promise<Record<string, boolean>>;
4441
- updateConversationPermissions(_conversationId: string, _permissions: Record<string, boolean>): Promise<void>;
4442
4406
  saveDraft(_conversationId: string, _draft: string): Promise<void>;
4443
4407
  getDraft(_conversationId: string): Promise<string | null>;
4444
4408
  clearDraft(_conversationId: string): Promise<void>;
@@ -5993,35 +5957,6 @@ declare const URL_ERRORS: {
5993
5957
  readonly message: "Invalid URL format";
5994
5958
  };
5995
5959
  };
5996
- /**
5997
- * Permission errors
5998
- */
5999
- declare const PERMISSION_ERRORS: {
6000
- readonly CANNOT_SEND_MESSAGES: {
6001
- readonly code: "PERMISSION.CANNOT_SEND_MESSAGES";
6002
- readonly message: "You do not have permission to send messages";
6003
- };
6004
- readonly CANNOT_SEND_MEDIA: {
6005
- readonly code: "PERMISSION.CANNOT_SEND_MEDIA";
6006
- readonly message: "You do not have permission to send media";
6007
- };
6008
- readonly CANNOT_ADD_MEMBERS: {
6009
- readonly code: "PERMISSION.CANNOT_ADD_MEMBERS";
6010
- readonly message: "You do not have permission to add members";
6011
- };
6012
- readonly CANNOT_REMOVE_MEMBERS: {
6013
- readonly code: "PERMISSION.CANNOT_REMOVE_MEMBERS";
6014
- readonly message: "You do not have permission to remove members";
6015
- };
6016
- readonly CANNOT_EDIT_INFO: {
6017
- readonly code: "PERMISSION.CANNOT_EDIT_INFO";
6018
- readonly message: "You do not have permission to edit conversation info";
6019
- };
6020
- readonly CANNOT_DELETE_MESSAGES: {
6021
- readonly code: "PERMISSION.CANNOT_DELETE_MESSAGES";
6022
- readonly message: "You do not have permission to delete messages";
6023
- };
6024
- };
6025
5960
  /**
6026
5961
  * All error messages combined
6027
5962
  */
@@ -6186,32 +6121,6 @@ declare const ERROR_MESSAGES: {
6186
6121
  readonly message: "Invalid URL format";
6187
6122
  };
6188
6123
  };
6189
- readonly PERMISSION: {
6190
- readonly CANNOT_SEND_MESSAGES: {
6191
- readonly code: "PERMISSION.CANNOT_SEND_MESSAGES";
6192
- readonly message: "You do not have permission to send messages";
6193
- };
6194
- readonly CANNOT_SEND_MEDIA: {
6195
- readonly code: "PERMISSION.CANNOT_SEND_MEDIA";
6196
- readonly message: "You do not have permission to send media";
6197
- };
6198
- readonly CANNOT_ADD_MEMBERS: {
6199
- readonly code: "PERMISSION.CANNOT_ADD_MEMBERS";
6200
- readonly message: "You do not have permission to add members";
6201
- };
6202
- readonly CANNOT_REMOVE_MEMBERS: {
6203
- readonly code: "PERMISSION.CANNOT_REMOVE_MEMBERS";
6204
- readonly message: "You do not have permission to remove members";
6205
- };
6206
- readonly CANNOT_EDIT_INFO: {
6207
- readonly code: "PERMISSION.CANNOT_EDIT_INFO";
6208
- readonly message: "You do not have permission to edit conversation info";
6209
- };
6210
- readonly CANNOT_DELETE_MESSAGES: {
6211
- readonly code: "PERMISSION.CANNOT_DELETE_MESSAGES";
6212
- readonly message: "You do not have permission to delete messages";
6213
- };
6214
- };
6215
6124
  };
6216
6125
  /**
6217
6126
  * Helper function to format error message with parameters
@@ -6238,7 +6147,7 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
6238
6147
  * Type for error codes
6239
6148
  * Useful for type-safe error handling
6240
6149
  */
6241
- type AXErrorCode = typeof MESSAGE_ERRORS[keyof typeof MESSAGE_ERRORS]['code'] | typeof FILE_ERRORS[keyof typeof FILE_ERRORS]['code'] | typeof USER_ERRORS[keyof typeof USER_ERRORS]['code'] | typeof CONVERSATION_ERRORS[keyof typeof CONVERSATION_ERRORS]['code'] | typeof CONNECTION_ERRORS[keyof typeof CONNECTION_ERRORS]['code'] | typeof LOCATION_ERRORS[keyof typeof LOCATION_ERRORS]['code'] | typeof URL_ERRORS[keyof typeof URL_ERRORS]['code'] | typeof PERMISSION_ERRORS[keyof typeof PERMISSION_ERRORS]['code'];
6150
+ type AXErrorCode = typeof MESSAGE_ERRORS[keyof typeof MESSAGE_ERRORS]['code'] | typeof FILE_ERRORS[keyof typeof FILE_ERRORS]['code'] | typeof USER_ERRORS[keyof typeof USER_ERRORS]['code'] | typeof CONVERSATION_ERRORS[keyof typeof CONVERSATION_ERRORS]['code'] | typeof CONNECTION_ERRORS[keyof typeof CONNECTION_ERRORS]['code'] | typeof LOCATION_ERRORS[keyof typeof LOCATION_ERRORS]['code'] | typeof URL_ERRORS[keyof typeof URL_ERRORS]['code'];
6242
6151
 
6243
- export { AXAudioInfoBarBannerComponent, AXAudioPickerComponent, AXAudioRendererComponent, AXBaseRegistry, AXComposerActionRegistry, AXComposerComponent, AXComposerPopupComponent, AXComposerService, AXComposerTabRegistry, AXConversation2Module, AXConversationAiApiKey, AXConversationAiResponderService, AXConversationApi, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationService, AXConversationSharedStorage, AXConversationTabRegistry, AXEmojiTabComponent, AXErrorHandlerService, AXFallbackRendererComponent, AXFilePickerComponent, AXFileRendererComponent, AXFileUploadService, AXForwardMessageDialogComponent, AXImagePickerComponent, AXImageRendererComponent, AXInfiniteScrollDirective, AXInfoBarActionRegistry, AXInfoBarComponent, AXInfoBarSearchComponent, AXInfoBarService, AXLocationPickerComponent, AXLocationRendererComponent, AXMessageActionRegistry, AXMessageApi, AXMessageListComponent, AXMessageListNoActiveDefaultComponent, AXMessageListService, AXMessageRendererRegistry, AXNewConversationDialogComponent, AXPickerFooterComponent, AXPickerHeaderComponent, AXRealtimeApi, AXRegistryService, AXSidebarComponent, AXSidebarService, AXStickerRendererComponent, AXStickerTabComponent, AXSystemRendererComponent, AXTextRendererComponent, AXUserApi, AXVideoInfoBarBannerComponent, AXVideoPickerComponent, AXVideoRendererComponent, AXVoiceInfoBarBannerComponent, AXVoiceRecorderComponent, AXVoiceRendererComponent, AX_CONVERSATION_AUDIO_RENDERER, AX_CONVERSATION_COMPOSER_AUDIO_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_TAB, AX_CONVERSATION_COMPOSER_FILE_ACTION, AX_CONVERSATION_COMPOSER_IMAGE_ACTION, AX_CONVERSATION_COMPOSER_LOCATION_ACTION, AX_CONVERSATION_COMPOSER_STICKER_TAB, AX_CONVERSATION_COMPOSER_VIDEO_ACTION, AX_CONVERSATION_COMPOSER_VOICE_RECORDING_ACTION, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_IMAGE_RENDERER, AX_CONVERSATION_INFO_BAR_ARCHIVE_ACTION, AX_CONVERSATION_INFO_BAR_BLOCK_ACTION, AX_CONVERSATION_INFO_BAR_DELETE_ACTION, AX_CONVERSATION_INFO_BAR_DIVIDER, AX_CONVERSATION_INFO_BAR_INFO_ACTION, AX_CONVERSATION_INFO_BAR_MUTE_ACTION, AX_CONVERSATION_INFO_BAR_SEARCH_ACTION, AX_CONVERSATION_ITEM_BLOCK_ACTION, AX_CONVERSATION_ITEM_DELETE_ACTION, AX_CONVERSATION_ITEM_DIVIDER, AX_CONVERSATION_ITEM_MARK_READ_ACTION, AX_CONVERSATION_ITEM_MUTE_ACTION, AX_CONVERSATION_ITEM_PIN_ACTION, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_COPY_ACTION, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_STICKER_RENDERER, AX_CONVERSATION_SYSTEM_RENDERER, AX_CONVERSATION_TAB_ALL, AX_CONVERSATION_TAB_ARCHIVED, AX_CONVERSATION_TAB_BOT, AX_CONVERSATION_TAB_CHANNELS, AX_CONVERSATION_TAB_GROUPS, AX_CONVERSATION_TAB_PRIVATE, AX_CONVERSATION_TAB_UNREAD, AX_CONVERSATION_TEXT_RENDERER, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_STICKER_API_KEY, CONNECTION_ERRORS, CONVERSATION_CONFIG, CONVERSATION_ERRORS, DEFAULT_COMPOSER_ACTIONS, DEFAULT_COMPOSER_TABS, DEFAULT_CONVERSATION_ITEM_ACTIONS, DEFAULT_CONVERSATION_TABS, DEFAULT_INFO_BAR_ACTIONS, DEFAULT_MESSAGE_ACTIONS, DEFAULT_MESSAGE_RENDERERS, ERROR_HANDLER_CONFIG, ERROR_MESSAGES, FILE_ERRORS, LOCATION_ERRORS, MESSAGE_ERRORS, PERMISSION_ERRORS, REGISTRY_CONFIG, URL_ERRORS, USER_ERRORS, axConversationIndexedDbStorage, conversationSharedStorage, formatErrorMessage, getDefaultConversationItemActions, getErrorMessage, mergeWithDefaults, provideConversation, sanitizeInput, validateConversationId, validateEmail, validateFile, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds };
6244
- export type { AXApiError, AXAudioPayload, AXBlockReportReason, AXCallEvent, AXComposerAction, AXComposerActionComponent, AXComposerActionContext, AXComposerActiveComponent, AXComposerTab, AXConnectionEvent, AXConnectionOptions, AXConnectionStatus, AXConversation, AXConversationAiResponderConfig, AXConversationConfig, AXConversationCreateData, AXConversationError, AXConversationFilter, AXConversationFilters, AXConversationItemAction, AXConversationItemActionContext, AXConversationMetadata, AXConversationOptions, AXConversationPermissions, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationTab, AXConversationType, AXConversationUpdateData, AXDeleteMessageCommand, AXEditMessageCommand, AXErrorCode, AXErrorHandlerConfig, AXErrorMessage, AXErrorSeverity, AXFilePayload, AXFileValidationResult, AXGroupedReaction, AXImagePayload, AXInfoBarAction, AXInfoBarActionComponent, AXInfoBarActionContext, AXInfoBarActiveBanner, AXInfoBarActiveComponent, AXLink, AXLinkPreview, AXLocationPayload, AXMention, AXMessage, AXMessageAction, AXMessageActionContext, AXMessageAvatarTemplateContext, AXMessageForwardData, AXMessageInfoBarBannerComponent, AXMessageListEmptyComponent, AXMessagePayload, AXMessageRenderer, AXMessageRendererCapabilities, AXMessageRendererComponent, AXMessageRendererContentState, AXMessageRendererState, AXMessageSearchFilters, AXMessageStatus, AXMessageType, AXNotificationEvent, AXPaginatedResult, AXPagination, AXParticipant, AXParticipantRole, AXParticipantStatus, AXParticipantUpdate, AXPinnedMessage, AXPollOption, AXPollPayload, AXPresenceStatus, AXPresenceUpdate, AXReaction, AXReadReceipt, AXRegistryConfiguration, AXRegistryItem, AXSendMessageCommand, AXStickerPayload, AXSystemPayload, AXTextFormat, AXTextPayload, AXTypingIndicator, AXUserProfileUpdate, AXUserRole, AXUserSearchFilters, AXValidationResult, AXVideoPayload, AXVoicePayload, DropdownMenuItem, FilePreview };
6152
+ export { AXAudioInfoBarBannerComponent, AXAudioPickerComponent, AXAudioRendererComponent, AXBaseRegistry, AXComposerActionRegistry, AXComposerComponent, AXComposerPopupComponent, AXComposerService, AXComposerTabRegistry, AXConversation2Module, AXConversationAiApiKey, AXConversationAiResponderService, AXConversationApi, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationService, AXConversationSharedStorage, AXConversationTabRegistry, AXEmojiTabComponent, AXErrorHandlerService, AXFallbackRendererComponent, AXFilePickerComponent, AXFileRendererComponent, AXFileUploadService, AXForwardMessageDialogComponent, AXImagePickerComponent, AXImageRendererComponent, AXInfiniteScrollDirective, AXInfoBarActionRegistry, AXInfoBarComponent, AXInfoBarSearchComponent, AXInfoBarService, AXLocationPickerComponent, AXLocationRendererComponent, AXMessageActionRegistry, AXMessageApi, AXMessageListComponent, AXMessageListNoActiveDefaultComponent, AXMessageListService, AXMessageRendererRegistry, AXNewConversationDialogComponent, AXPickerFooterComponent, AXPickerHeaderComponent, AXRealtimeApi, AXRegistryService, AXSidebarComponent, AXSidebarService, AXStickerRendererComponent, AXStickerTabComponent, AXSystemRendererComponent, AXTextRendererComponent, AXUserApi, AXVideoInfoBarBannerComponent, AXVideoPickerComponent, AXVideoRendererComponent, AXVoiceInfoBarBannerComponent, AXVoiceRecorderComponent, AXVoiceRendererComponent, AX_CONVERSATION_AUDIO_RENDERER, AX_CONVERSATION_COMPOSER_AUDIO_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_ACTION, AX_CONVERSATION_COMPOSER_EMOJI_TAB, AX_CONVERSATION_COMPOSER_FILE_ACTION, AX_CONVERSATION_COMPOSER_IMAGE_ACTION, AX_CONVERSATION_COMPOSER_LOCATION_ACTION, AX_CONVERSATION_COMPOSER_STICKER_TAB, AX_CONVERSATION_COMPOSER_VIDEO_ACTION, AX_CONVERSATION_COMPOSER_VOICE_RECORDING_ACTION, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_IMAGE_RENDERER, AX_CONVERSATION_INFO_BAR_ARCHIVE_ACTION, AX_CONVERSATION_INFO_BAR_BLOCK_ACTION, AX_CONVERSATION_INFO_BAR_DELETE_ACTION, AX_CONVERSATION_INFO_BAR_DIVIDER, AX_CONVERSATION_INFO_BAR_INFO_ACTION, AX_CONVERSATION_INFO_BAR_MUTE_ACTION, AX_CONVERSATION_INFO_BAR_SEARCH_ACTION, AX_CONVERSATION_ITEM_BLOCK_ACTION, AX_CONVERSATION_ITEM_DELETE_ACTION, AX_CONVERSATION_ITEM_DIVIDER, AX_CONVERSATION_ITEM_MARK_READ_ACTION, AX_CONVERSATION_ITEM_MUTE_ACTION, AX_CONVERSATION_ITEM_PIN_ACTION, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_COPY_ACTION, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_STICKER_RENDERER, AX_CONVERSATION_SYSTEM_RENDERER, AX_CONVERSATION_TAB_ALL, AX_CONVERSATION_TAB_ARCHIVED, AX_CONVERSATION_TAB_BOT, AX_CONVERSATION_TAB_CHANNELS, AX_CONVERSATION_TAB_GROUPS, AX_CONVERSATION_TAB_PRIVATE, AX_CONVERSATION_TAB_UNREAD, AX_CONVERSATION_TEXT_RENDERER, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_STICKER_API_KEY, CONNECTION_ERRORS, CONVERSATION_CONFIG, CONVERSATION_ERRORS, DEFAULT_COMPOSER_ACTIONS, DEFAULT_COMPOSER_TABS, DEFAULT_CONVERSATION_ITEM_ACTIONS, DEFAULT_CONVERSATION_TABS, DEFAULT_INFO_BAR_ACTIONS, DEFAULT_MESSAGE_ACTIONS, DEFAULT_MESSAGE_RENDERERS, ERROR_HANDLER_CONFIG, ERROR_MESSAGES, FILE_ERRORS, LOCATION_ERRORS, MESSAGE_ERRORS, REGISTRY_CONFIG, URL_ERRORS, USER_ERRORS, axConversationIndexedDbStorage, conversationSharedStorage, formatErrorMessage, getDefaultConversationItemActions, getErrorMessage, mergeWithDefaults, provideConversation, sanitizeInput, validateConversationId, validateEmail, validateFile, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds };
6153
+ export type { AXApiError, AXAudioPayload, AXBlockReportReason, AXCallEvent, AXComposerAction, AXComposerActionComponent, AXComposerActionContext, AXComposerActiveComponent, AXComposerTab, AXConnectionEvent, AXConnectionOptions, AXConnectionStatus, AXConversation, AXConversationAiResponderConfig, AXConversationConfig, AXConversationCreateData, AXConversationError, AXConversationFilter, AXConversationFilters, AXConversationItemAction, AXConversationItemActionContext, AXConversationMetadata, AXConversationOptions, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationTab, AXConversationType, AXConversationUpdateData, AXDeleteMessageCommand, AXEditMessageCommand, AXErrorCode, AXErrorHandlerConfig, AXErrorMessage, AXErrorSeverity, AXFilePayload, AXFileValidationResult, AXGroupedReaction, AXImagePayload, AXInfoBarAction, AXInfoBarActionComponent, AXInfoBarActionContext, AXInfoBarActiveBanner, AXInfoBarActiveComponent, AXLink, AXLinkPreview, AXLocationPayload, AXMention, AXMessage, AXMessageAction, AXMessageActionContext, AXMessageAvatarTemplateContext, AXMessageForwardData, AXMessageInfoBarBannerComponent, AXMessageListEmptyComponent, AXMessagePayload, AXMessageRenderer, AXMessageRendererCapabilities, AXMessageRendererComponent, AXMessageRendererContentState, AXMessageRendererState, AXMessageSearchFilters, AXMessageStatus, AXMessageType, AXNotificationEvent, AXPaginatedResult, AXPagination, AXParticipant, AXParticipantRole, AXParticipantStatus, AXParticipantUpdate, AXPinnedMessage, AXPollOption, AXPollPayload, AXPresenceStatus, AXPresenceUpdate, AXReaction, AXReadReceipt, AXRegistryConfiguration, AXRegistryItem, AXSendMessageCommand, AXStickerPayload, AXSystemPayload, AXTextFormat, AXTextPayload, AXTypingIndicator, AXUserProfileUpdate, AXUserRole, AXUserSearchFilters, AXValidationResult, AXVideoPayload, AXVoicePayload, DropdownMenuItem, FilePreview };