@acorex/components 20.6.33 → 20.6.34

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.
@@ -3048,16 +3048,15 @@ declare class AXErrorHandlerService {
3048
3048
  */
3049
3049
  handle(error: unknown, operation: string, context?: Record<string, unknown>): AXConversationError;
3050
3050
  /**
3051
- * Handle API error
3051
+ * Handle API error (same pipeline as {@link handle}, for typed API failures)
3052
3052
  */
3053
3053
  handleApiError(apiError: AXApiError, operation: string, context?: Record<string, unknown>): AXConversationError;
3054
+ private publish;
3054
3055
  /**
3055
- * Normalize any error to conversation error format
3056
+ * Normalize any error to conversation error format (does not publish — use {@link handle})
3056
3057
  */
3057
3058
  private normalizeError;
3058
- /**
3059
- * Check if error is API error
3060
- */
3059
+ private conversationErrorFromApi;
3061
3060
  private isApiError;
3062
3061
  /**
3063
3062
  * Determine severity based on status code
@@ -3097,10 +3096,6 @@ declare class AXErrorHandlerService {
3097
3096
  * @param ms - Milliseconds to delay
3098
3097
  */
3099
3098
  private delay;
3100
- /**
3101
- * Clear error history
3102
- */
3103
- clear(): void;
3104
3099
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXErrorHandlerService, never>;
3105
3100
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXErrorHandlerService>;
3106
3101
  }
@@ -3332,177 +3327,6 @@ declare class AXInfoBarService {
3332
3327
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXInfoBarService>;
3333
3328
  }
3334
3329
 
3335
- /**
3336
- * Conversation Store Service
3337
- * Unified signal-based store for conversations and messages
3338
- */
3339
- declare class AXConversationStoreService {
3340
- private readonly config;
3341
- private readonly errorHandler;
3342
- /** All conversations (keyed by ID) */
3343
- private readonly _conversations;
3344
- /** All messages (keyed by message ID) */
3345
- private readonly _messages;
3346
- /** Message IDs grouped by conversation */
3347
- private readonly _conversationMessages;
3348
- /** All conversations as array (unsorted - sorting is handled by consumers) */
3349
- readonly conversations: _angular_core.Signal<AXConversation[]>;
3350
- /** All messages as array */
3351
- readonly messages: _angular_core.Signal<AXMessage[]>;
3352
- /**
3353
- * Initialize the store
3354
- */
3355
- initialize(): Promise<void>;
3356
- /**
3357
- * Set all conversations (replaces existing)
3358
- * @param conversations - Array of conversations
3359
- */
3360
- setConversations(conversations: AXConversation[]): void;
3361
- /**
3362
- * Add multiple conversations (append to existing)
3363
- * Used for pagination - appends new conversations without replacing existing ones
3364
- * @param conversations - Array of conversations to add
3365
- */
3366
- addConversations(conversations: AXConversation[]): void;
3367
- /**
3368
- * Add or update a single conversation
3369
- * @param conversation - Conversation to add/update
3370
- */
3371
- setConversation(conversation: AXConversation): void;
3372
- /**
3373
- * Get a conversation by ID
3374
- * @param conversationId - Conversation ID
3375
- * @returns Conversation or undefined
3376
- */
3377
- getConversation(conversationId: string): AXConversation | undefined;
3378
- /**
3379
- * Update a conversation with partial data
3380
- * @param conversationId - Conversation ID
3381
- * @param updates - Partial conversation updates
3382
- */
3383
- updateConversation(conversationId: string, updates: Partial<AXConversation>): void;
3384
- /**
3385
- * Delete a conversation
3386
- * @param conversationId - Conversation ID
3387
- */
3388
- deleteConversation(conversationId: string): void;
3389
- /**
3390
- * Update conversation's last message
3391
- * @param message - The message to set as last message
3392
- */
3393
- updateLastMessage(message: AXMessage): void;
3394
- /**
3395
- * Increment unread count
3396
- * @param conversationId - Conversation ID
3397
- */
3398
- incrementUnreadCount(conversationId: string): void;
3399
- /**
3400
- * Reset unread count to zero
3401
- * @param conversationId - Conversation ID
3402
- */
3403
- resetUnreadCount(conversationId: string): void;
3404
- /**
3405
- * Update conversation settings
3406
- * @param conversationId - Conversation ID
3407
- * @param settings - Settings to merge
3408
- */
3409
- updateSettings(conversationId: string, settings: Partial<AXConversation['settings']>): void;
3410
- /**
3411
- * Update conversation title
3412
- * @param conversationId - Conversation ID
3413
- * @param title - New title
3414
- */
3415
- updateTitle(conversationId: string, title: string): void;
3416
- /**
3417
- * Update conversation metadata
3418
- * @param conversationId - Conversation ID
3419
- * @param metadata - Metadata to merge
3420
- */
3421
- updateMetadata(conversationId: string, metadata: Record<string, unknown>): void;
3422
- /**
3423
- * Update typing indicator
3424
- * @param conversationId - Conversation ID
3425
- * @param userId - User ID
3426
- * @param isTyping - Whether user is typing
3427
- */
3428
- updateTypingIndicator(conversationId: string, userId: string, isTyping: boolean): void;
3429
- /**
3430
- * Update participant presence across all conversations
3431
- * @param userId - User ID
3432
- * @param status - Presence status
3433
- * @param lastSeen - Last seen date
3434
- */
3435
- updateParticipantPresence(userId: string, status: AXParticipantStatus, lastSeen?: Date): void;
3436
- /**
3437
- * Add a message to the store
3438
- * @param message - Message to add
3439
- */
3440
- addMessage(message: AXMessage): void;
3441
- /**
3442
- * Add multiple messages
3443
- * @param messages - Messages to add
3444
- */
3445
- addMessages(messages: AXMessage[]): void;
3446
- /**
3447
- * Get a message by ID
3448
- * @param messageId - Message ID
3449
- * @returns Message or undefined
3450
- */
3451
- getMessage(messageId: string): AXMessage | undefined;
3452
- /**
3453
- * Get messages for a conversation
3454
- * @param conversationId - Conversation ID
3455
- * @returns Array of messages sorted by timestamp
3456
- */
3457
- getConversationMessages(conversationId: string): AXMessage[];
3458
- /**
3459
- * Get messages signal for a conversation
3460
- * @param conversationId - Conversation ID
3461
- * @returns Computed signal of messages
3462
- */
3463
- getConversationMessagesSignal(conversationId: string): _angular_core.Signal<AXMessage[]>;
3464
- /**
3465
- * Update a message
3466
- * @param messageId - Message ID
3467
- * @param updates - Partial message updates
3468
- */
3469
- updateMessage(messageId: string, updates: Partial<AXMessage>): void;
3470
- /**
3471
- * Delete a message
3472
- * @param messageId - Message ID
3473
- */
3474
- deleteMessage(messageId: string): void;
3475
- /**
3476
- * Clear messages for a conversation
3477
- * @param conversationId - Conversation ID
3478
- */
3479
- clearConversationMessages(conversationId: string): void;
3480
- /**
3481
- * Clear all data
3482
- */
3483
- clearAll(): void;
3484
- /**
3485
- * Cleanup old messages to prevent unbounded memory growth
3486
- * Keeps only the most recent messages up to MAX_TOTAL_MESSAGES
3487
- */
3488
- private cleanupOldMessages;
3489
- /**
3490
- * Cleanup messages per conversation to prevent memory leaks
3491
- * Keeps only recent messages per conversation
3492
- */
3493
- private cleanupConversationMessages;
3494
- /**
3495
- * Get store statistics
3496
- */
3497
- getStats(): {
3498
- conversationCount: number;
3499
- messageCount: number;
3500
- conversationsWithMessages: number;
3501
- };
3502
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationStoreService, never>;
3503
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationStoreService>;
3504
- }
3505
-
3506
3330
  /**
3507
3331
  * Central Registry Service
3508
3332
  * Provides unified access to all registries
@@ -3545,11 +3369,11 @@ declare class AXRegistryService {
3545
3369
  declare class AXConversationService {
3546
3370
  private static normalizeOptionalString;
3547
3371
  private readonly config;
3372
+ private readonly state;
3548
3373
  readonly userApi: AXUserApi;
3549
3374
  readonly conversationApi: AXConversationApi;
3550
3375
  readonly messageApi: AXMessageApi;
3551
3376
  readonly realtimeApi: AXRealtimeApi;
3552
- private readonly store;
3553
3377
  private readonly errorHandler;
3554
3378
  readonly dialogService: AXDialogService;
3555
3379
  readonly popupService: AXPopupService;
@@ -3929,12 +3753,6 @@ declare class AXConversationService {
3929
3753
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationService>;
3930
3754
  }
3931
3755
 
3932
- interface FileUploadProgress {
3933
- file: File;
3934
- progress: number;
3935
- status: 'pending' | 'uploading' | 'completed' | 'error';
3936
- error?: string;
3937
- }
3938
3756
  interface FilePreview {
3939
3757
  file: File;
3940
3758
  preview?: string;
@@ -3943,66 +3761,19 @@ interface FilePreview {
3943
3761
  declare class AXFileUploadService {
3944
3762
  private readonly config;
3945
3763
  private readonly platformId;
3946
- private uploadProgress$;
3947
- /**
3948
- * Get upload progress observable
3949
- */
3950
- getUploadProgress(): Observable<FileUploadProgress>;
3951
- /**
3952
- * Read file as data URL for preview
3953
- */
3954
3764
  readFileAsDataURL(file: File): Promise<string>;
3955
- /**
3956
- * Get file type category
3957
- */
3958
3765
  getFileType(file: File): 'image' | 'video' | 'audio' | 'file';
3959
- /**
3960
- * Generate file preview
3961
- */
3962
3766
  generatePreview(file: File): Promise<FilePreview>;
3963
- /**
3964
- * Generate previews for multiple files
3965
- */
3966
3767
  generatePreviews(files: File[]): Promise<FilePreview[]>;
3967
- /**
3968
- * Get video duration
3969
- */
3970
3768
  getVideoDuration(file: File): Promise<number>;
3971
- /**
3972
- * Get audio duration
3973
- */
3974
3769
  getAudioDuration(file: File): Promise<number>;
3975
- /**
3976
- * Format file size
3977
- */
3978
3770
  formatFileSize(bytes: number): string;
3979
- /**
3980
- * Format duration (seconds to mm:ss)
3981
- */
3982
3771
  formatDuration(seconds: number): string;
3983
- /**
3984
- * Validate file type
3985
- */
3986
3772
  validateFileType(file: File, allowedTypes: string[]): boolean;
3987
- /**
3988
- * Validate file size
3989
- */
3990
3773
  validateFileSize(file: File, maxSizeInMB: number): boolean;
3991
- /**
3992
- * Filter files by type
3993
- */
3994
3774
  filterFilesByType(files: File[], allowedTypes: string[]): File[];
3995
- /**
3996
- * Validate file type against conversation config
3997
- */
3998
3775
  isFileTypeAllowed(file: File): boolean;
3999
- /**
4000
- * Validate file size against conversation config
4001
- */
4002
3776
  isFileSizeAllowed(file: File): boolean;
4003
- /**
4004
- * Validate a set of files using conversation config
4005
- */
4006
3777
  validateFilesWithConfig(files: File[]): {
4007
3778
  accepted: File[];
4008
3779
  rejected: {
@@ -4086,7 +3857,12 @@ declare class AXForwardMessageDialogComponent implements OnInit {
4086
3857
  * Set by {@link AXPopupComponent} when opened via {@link AXPopupService} so the shell title can update.
4087
3858
  */
4088
3859
  readonly __popup__: _angular_core.InputSignal<AXPopupRef<any>>;
3860
+ /**
3861
+ * Assigned from `open(..., { data: { conversationService } })` — see {@link AXNewConversationDialogComponent}
3862
+ * for why this is not `inject(AXConversationService)`.
3863
+ */
4089
3864
  conversationService: AXConversationService;
3865
+ /** Assigned from `open(..., { data: { message } })`. */
4090
3866
  message: AXMessage;
4091
3867
  readonly onClosed: EventEmitter<AXComponentCloseEvent>;
4092
3868
  readonly allConversations: _angular_core.WritableSignal<AXConversation[]>;
@@ -4440,6 +4216,11 @@ declare class AXSidebarComponent implements OnDestroy {
4440
4216
 
4441
4217
  type NewConversationWizardStep = 'selectUsers' | 'groupDetails';
4442
4218
  declare class AXNewConversationDialogComponent extends AXBasePageComponent {
4219
+ /**
4220
+ * Assigned by {@link AXPopupComponent} from `open(..., { data: { conversationService } })`.
4221
+ * Not injected: popup content is created on the root view container, so route-scoped providers
4222
+ * would not see the same `AXConversationService` instance as the conversation feature.
4223
+ */
4443
4224
  conversationService: AXConversationService;
4444
4225
  private readonly toastService;
4445
4226
  private readonly translation;
@@ -6459,5 +6240,5 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
6459
6240
  */
6460
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'];
6461
6242
 
6462
- 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, AXConversationStoreService, 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 };
6463
- 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, FileUploadProgress };
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 };