@acorex/components 20.4.15 → 20.4.17

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.
@@ -1,6 +1,6 @@
1
1
  import * as _acorex_components_conversation2 from '@acorex/components/conversation2';
2
2
  import * as _angular_core from '@angular/core';
3
- import { OnDestroy, ViewContainerRef, WritableSignal, Signal, Type, InputSignal, InjectionToken, OnInit, EventEmitter, TemplateRef, ElementRef, ModuleWithProviders, Provider } from '@angular/core';
3
+ import { OnDestroy, ViewContainerRef, Type, InputSignal, WritableSignal, Signal, InjectionToken, OnInit, EventEmitter, TemplateRef, ElementRef, ModuleWithProviders, Provider } from '@angular/core';
4
4
  import { AXComponentCloseEvent, AXHtmlEvent, AXDataSource, AXClosableComponent } from '@acorex/cdk/common';
5
5
  import * as rxjs from 'rxjs';
6
6
  import { Observable, BehaviorSubject, Subject } from 'rxjs';
@@ -314,7 +314,7 @@ interface AXSystemPayload {
314
314
  /** Related user IDs */
315
315
  userIds?: string[];
316
316
  /** Additional data */
317
- data?: Record<string, any>;
317
+ data?: Record<string, unknown>;
318
318
  }
319
319
  /**
320
320
  * Union type of all message payloads
@@ -481,7 +481,7 @@ interface AXParticipant {
481
481
  * Represents a chat conversation (private, group, or channel)
482
482
  */
483
483
 
484
- type AXConversationType = 'private' | 'group' | 'channel';
484
+ type AXConversationType = 'private' | 'group' | 'channel' | 'bot';
485
485
  /**
486
486
  * Conversation status information
487
487
  */
@@ -538,6 +538,12 @@ interface AXConversationSettings {
538
538
  interface AXConversationMetadata extends Record<string, unknown> {
539
539
  /** Optional custom background CSS for message list */
540
540
  messageListBackground?: string;
541
+ /** Optional custom empty-state component for the message list. */
542
+ messageListEmptyComponent?: Type<AXMessageListEmptyComponent>;
543
+ }
544
+ /** Contract for custom empty-state components rendered by message list. */
545
+ interface AXMessageListEmptyComponent {
546
+ readonly conversation: InputSignal<AXConversation>;
541
547
  }
542
548
  /**
543
549
  * Main Conversation interface
@@ -803,7 +809,7 @@ interface AXUserProfileUpdate {
803
809
  /** Email */
804
810
  email?: string;
805
811
  /** Custom fields */
806
- custom?: Record<string, any>;
812
+ custom?: Record<string, unknown>;
807
813
  }
808
814
  /**
809
815
  * User search filters
@@ -957,14 +963,14 @@ declare abstract class AXUserApi {
957
963
  * @returns User settings
958
964
  * @throws {AXApiError} If request fails
959
965
  */
960
- abstract getUserSettings(): Promise<Record<string, any>>;
966
+ abstract getUserSettings(): Promise<Record<string, unknown>>;
961
967
  /**
962
968
  * Update user settings
963
969
  *
964
970
  * @param settings - Settings to update
965
971
  * @throws {AXApiError} If update fails
966
972
  */
967
- abstract updateUserSettings(settings: Record<string, any>): Promise<void>;
973
+ abstract updateUserSettings(settings: Record<string, unknown>): Promise<void>;
968
974
  /**
969
975
  * Create an API error
970
976
  * Helper method for consistent error creation
@@ -998,7 +1004,7 @@ interface AXConversationCreateData {
998
1004
  /** Avatar URL */
999
1005
  avatar?: string;
1000
1006
  /** Custom metadata */
1001
- metadata?: Record<string, any>;
1007
+ metadata?: Record<string, unknown>;
1002
1008
  }
1003
1009
  /**
1004
1010
  * Conversation update data
@@ -1011,7 +1017,7 @@ interface AXConversationUpdateData {
1011
1017
  /** Avatar URL */
1012
1018
  avatar?: string;
1013
1019
  /** Custom metadata */
1014
- metadata?: Record<string, any>;
1020
+ metadata?: Record<string, unknown>;
1015
1021
  }
1016
1022
  /**
1017
1023
  * Conversation filter options
@@ -1030,7 +1036,7 @@ interface AXConversationFilters {
1030
1036
  /** Filter by tags */
1031
1037
  tags?: string[];
1032
1038
  /** Custom filters */
1033
- custom?: Record<string, any>;
1039
+ custom?: Record<string, unknown>;
1034
1040
  }
1035
1041
  /**
1036
1042
  * Conversation settings update
@@ -1045,7 +1051,7 @@ interface AXConversationSettingsUpdate {
1045
1051
  /** Show message preview in notifications */
1046
1052
  showPreview?: boolean;
1047
1053
  /** Custom settings */
1048
- custom?: Record<string, any>;
1054
+ custom?: Record<string, unknown>;
1049
1055
  }
1050
1056
  /**
1051
1057
  * Participant update data
@@ -1271,7 +1277,7 @@ declare abstract class AXConversationApi {
1271
1277
  * @returns Paginated media items
1272
1278
  * @throws {AXApiError} If request fails
1273
1279
  */
1274
- abstract getConversationMedia(conversationId: string, pagination?: AXPagination): Promise<AXPaginatedResult<any>>;
1280
+ abstract getConversationMedia(conversationId: string, pagination?: AXPagination): Promise<AXPaginatedResult<unknown>>;
1275
1281
  /**
1276
1282
  * Add tags to conversation
1277
1283
  *
@@ -1625,7 +1631,7 @@ declare abstract class AXMessageApi {
1625
1631
  thumbnailUrl?: string;
1626
1632
  size: number;
1627
1633
  mimeType: string;
1628
- metadata?: Record<string, any>;
1634
+ metadata?: Record<string, unknown>;
1629
1635
  }>;
1630
1636
  /**
1631
1637
  * Update message metadata
@@ -1634,7 +1640,7 @@ declare abstract class AXMessageApi {
1634
1640
  * @param metadata - Metadata to update
1635
1641
  * @throws {AXApiError} If update fails
1636
1642
  */
1637
- abstract updateMessageMetadata(messageId: string, metadata: Record<string, any>): Promise<void>;
1643
+ abstract updateMessageMetadata(messageId: string, metadata: Record<string, unknown>): Promise<void>;
1638
1644
  /**
1639
1645
  * Get message metadata
1640
1646
  *
@@ -1642,7 +1648,7 @@ declare abstract class AXMessageApi {
1642
1648
  * @returns Message metadata
1643
1649
  * @throws {AXApiError} If request fails
1644
1650
  */
1645
- abstract getMessageMetadata(messageId: string): Promise<Record<string, any>>;
1651
+ abstract getMessageMetadata(messageId: string): Promise<Record<string, unknown>>;
1646
1652
  /**
1647
1653
  * Update message status
1648
1654
  *
@@ -1759,7 +1765,7 @@ interface AXNotificationEvent {
1759
1765
  /** Timestamp */
1760
1766
  timestamp: Date;
1761
1767
  /** Custom data */
1762
- data?: Record<string, any>;
1768
+ data?: Record<string, unknown>;
1763
1769
  }
1764
1770
  /**
1765
1771
  * Call event
@@ -1991,7 +1997,7 @@ declare abstract class AXRealtimeApi {
1991
1997
  */
1992
1998
  abstract subscribeToConversationSettingsChanges(conversationId?: string): Observable<{
1993
1999
  conversationId: string;
1994
- settings: Record<string, any>;
2000
+ settings: Record<string, unknown>;
1995
2001
  }>;
1996
2002
  /**
1997
2003
  * Subscribe to draft changes
@@ -2129,21 +2135,15 @@ declare class AXErrorHandlerService {
2129
2135
  /**
2130
2136
  * Composer tab registration
2131
2137
  */
2132
- interface AXComposerTab {
2133
- /** Unique tab identifier */
2134
- id: string;
2138
+ interface AXComposerTab extends AXRegistryItem {
2135
2139
  /** Display title */
2136
2140
  title: string;
2137
2141
  /** Icon name/class */
2138
2142
  icon?: string;
2139
- /** Display order priority (higher = earlier) */
2140
- priority?: number;
2141
2143
  /** Angular component for tab content */
2142
- component: Type<any>;
2144
+ component: Type<unknown>;
2143
2145
  /** Default data provider (optional) */
2144
- dataProvider?: () => Observable<any>;
2145
- /** Whether tab is enabled */
2146
- enabled?: boolean;
2146
+ dataProvider?: () => Observable<unknown>;
2147
2147
  /** Custom class for styling */
2148
2148
  className?: string;
2149
2149
  /** Badge text/count */
@@ -2196,7 +2196,7 @@ interface AXConversationItemActionContext {
2196
2196
  /** Conversation service for conversation operations */
2197
2197
  conversationService?: AXConversationService;
2198
2198
  /** Additional context data */
2199
- data?: Record<string, any>;
2199
+ data?: Record<string, unknown>;
2200
2200
  }
2201
2201
  /**
2202
2202
  * Conversation item action configuration
@@ -2262,21 +2262,15 @@ declare class AXConversationItemActionRegistry extends AXBaseRegistry<AXConversa
2262
2262
  /**
2263
2263
  * Conversation tab registration
2264
2264
  */
2265
- interface AXConversationTab {
2266
- /** Unique tab identifier */
2267
- id: string;
2265
+ interface AXConversationTab extends AXRegistryItem {
2268
2266
  /** Display label */
2269
2267
  label: string;
2270
2268
  /** Icon name/class */
2271
2269
  icon?: string;
2272
- /** Display order priority (higher = earlier) */
2273
- priority?: number;
2274
2270
  /** Filter function to determine which conversations to show */
2275
2271
  filter: (conversations: AXConversation[]) => AXConversation[];
2276
2272
  /** Badge function to compute badge count/text */
2277
2273
  badge?: (conversations: AXConversation[]) => number | string | undefined;
2278
- /** Whether tab is enabled */
2279
- enabled?: boolean;
2280
2274
  /** Custom class for styling */
2281
2275
  className?: string;
2282
2276
  /** Whether this is the default active tab */
@@ -2346,7 +2340,15 @@ interface AXInfoBarActionContext {
2346
2340
  /** Info bar service for UI operations */
2347
2341
  infoBarService?: AXInfoBarService;
2348
2342
  /** Additional context data */
2349
- data?: Record<string, any>;
2343
+ data?: Record<string, unknown>;
2344
+ }
2345
+ /**
2346
+ * Contract for components used as {@link AXInfoBarAction.component}.
2347
+ * Info-bar shell passes at least `{ conversation, service }`.
2348
+ */
2349
+ interface AXInfoBarActionComponent {
2350
+ readonly conversation: InputSignal<AXConversation>;
2351
+ readonly service?: InputSignal<AXInfoBarService | undefined>;
2350
2352
  }
2351
2353
  /**
2352
2354
  * Info bar action configuration
@@ -2368,11 +2370,16 @@ interface AXInfoBarAction extends AXRegistryItem {
2368
2370
  * Component to show when action is activated (for inline actions)
2369
2371
  * If provided, clicking the action will show this component in the info-bar
2370
2372
  */
2371
- component?: Type<unknown>;
2373
+ component?: Type<AXInfoBarActionComponent>;
2372
2374
  /**
2373
2375
  * Whether this action is toggleable (shows/hides component)
2374
2376
  */
2375
2377
  toggleable?: boolean;
2378
+ /**
2379
+ * Whether action component should take full width of the info-bar.
2380
+ * Defaults to `true` when omitted.
2381
+ */
2382
+ fullWidthComponent?: boolean;
2376
2383
  /**
2377
2384
  * Visibility condition
2378
2385
  * @returns true if action should be visible
@@ -2445,20 +2452,16 @@ interface AXMessageActionContext {
2445
2452
  /** Message list service for UI operations */
2446
2453
  messageListService: AXMessageListService;
2447
2454
  /** Custom context data */
2448
- custom?: Record<string, any>;
2455
+ custom?: Record<string, unknown>;
2449
2456
  }
2450
2457
  /**
2451
2458
  * Message action registration
2452
2459
  */
2453
- interface AXMessageAction {
2454
- /** Unique action identifier */
2455
- id: string;
2460
+ interface AXMessageAction extends Omit<AXRegistryItem, 'enabled'> {
2456
2461
  /** Display label */
2457
2462
  label: string;
2458
2463
  /** Icon name/class */
2459
2464
  icon?: string;
2460
- /** Display order priority (higher = earlier) */
2461
- priority?: number;
2462
2465
  /** Show as inline button */
2463
2466
  showInline?: boolean;
2464
2467
  /** Visibility condition */
@@ -2700,9 +2703,8 @@ declare class AXConversationService {
2700
2703
  private readonly _activeConversationId;
2701
2704
  private readonly _loading;
2702
2705
  private readonly _error;
2703
- private readonly activeRequests;
2704
- private readonly messageQueue;
2705
- private processingQueue;
2706
+ /** Emits when the active conversation changes, cancelling per-conversation subscriptions. */
2707
+ private readonly _conversationSwitch$;
2706
2708
  private readonly _messageReceived$;
2707
2709
  private readonly _messageUpdated$;
2708
2710
  private readonly _messageDeleted$;
@@ -3090,14 +3092,20 @@ interface AXComposerActionContext {
3090
3092
  /** Conversation service for conversation operations */
3091
3093
  conversationService?: AXConversationService;
3092
3094
  /** Custom context data */
3093
- custom?: Record<string, any>;
3095
+ custom?: Record<string, unknown>;
3096
+ }
3097
+ /**
3098
+ * Contract for components used as {@link AXComposerAction.component}.
3099
+ * Composer shell passes at least `{ conversation, service }`.
3100
+ */
3101
+ interface AXComposerActionComponent {
3102
+ readonly conversation: InputSignal<AXConversation>;
3103
+ readonly service?: InputSignal<AXComposerService | undefined>;
3094
3104
  }
3095
3105
  /**
3096
3106
  * Composer action registration
3097
3107
  */
3098
- interface AXComposerAction {
3099
- /** Unique action identifier */
3100
- id: string;
3108
+ interface AXComposerAction extends Omit<AXRegistryItem, 'enabled'> {
3101
3109
  /** Display label (for accessibility) */
3102
3110
  label: string;
3103
3111
  /** Icon name/class */
@@ -3106,8 +3114,6 @@ interface AXComposerAction {
3106
3114
  position: 'left' | 'right';
3107
3115
  /** Location: inline (show as button) or menu (show in dropdown menu) */
3108
3116
  location?: 'inline' | 'menu';
3109
- /** Display order priority (higher = earlier) */
3110
- priority?: number;
3111
3117
  /** Visibility condition */
3112
3118
  visible: (context: AXComposerActionContext) => boolean;
3113
3119
  /** Enabled condition */
@@ -3116,7 +3122,7 @@ interface AXComposerAction {
3116
3122
  * Component to show when action is activated
3117
3123
  * If provided, clicking the action will show this component in full-width mode
3118
3124
  */
3119
- component?: Type<unknown>;
3125
+ component?: Type<AXComposerActionComponent>;
3120
3126
  /**
3121
3127
  * Whether this action is toggleable (shows/hides component)
3122
3128
  */
@@ -3360,7 +3366,7 @@ declare class AXComposerComponent implements OnDestroy {
3360
3366
  /** Send sticker message */
3361
3367
  private sendSticker;
3362
3368
  /** Get inputs for emoji popup component */
3363
- getEmojiPopupInputs(): Record<string, any>;
3369
+ getEmojiPopupInputs(): Record<string, unknown>;
3364
3370
  /** Handle attach click */
3365
3371
  onAttachClick(): void;
3366
3372
  /** Handle voice click */
@@ -3406,7 +3412,7 @@ declare class AXComposerComponent implements OnDestroy {
3406
3412
  /** Handle reply preview click - scroll to original message */
3407
3413
  onReplyPreviewClick(): void;
3408
3414
  /** Get inputs for dynamic component */
3409
- getComponentInputs(): Record<string, any>;
3415
+ getComponentInputs(): Record<string, unknown>;
3410
3416
  onEnter(event: AXHtmlEvent<KeyboardEvent>): Promise<void>;
3411
3417
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXComposerComponent, never>;
3412
3418
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXComposerComponent, "ax-conversation-composer", never, {}, { "messageSent": "messageSent"; "emojiClick": "emojiClick"; "attachClick": "attachClick"; "voiceClick": "voiceClick"; }, never, never, true, never>;
@@ -3496,7 +3502,7 @@ declare function mergeWithDefaults(userConfig?: Partial<AXConversationConfig>):
3496
3502
  * Configuration token for conversation component
3497
3503
  * Uses centralized defaults from AX_DEFAULT_CONVERSATION_CONFIG
3498
3504
  */
3499
- declare const CONVERSATION_CONFIG: InjectionToken<AXConversationConfig>;
3505
+ declare const CONVERSATION_CONFIG: InjectionToken<Required<AXConversationConfig>>;
3500
3506
  /**
3501
3507
  * Token for configuring AXErrorHandlerService
3502
3508
  */
@@ -3573,7 +3579,7 @@ declare const REGISTRY_CONFIG: InjectionToken<AXRegistryConfiguration>;
3573
3579
 
3574
3580
  declare class AXConversationContainerComponent {
3575
3581
  private readonly conversationService;
3576
- protected readonly config: AXConversationConfig;
3582
+ protected readonly config: Required<AXConversationConfig>;
3577
3583
  /** Custom CSS class */
3578
3584
  readonly customClass: _angular_core.InputSignal<string>;
3579
3585
  /** Loading state */
@@ -3618,8 +3624,10 @@ interface AXInfoBarActiveBanner {
3618
3624
  message: AXMessage;
3619
3625
  /** Banner component */
3620
3626
  component: Type<AXMessageInfoBarBannerComponent>;
3621
- /** Additional component inputs */
3627
+ /** Additional component inputs (only keys that match declared `input()` on the banner) */
3622
3628
  inputs?: Record<string, unknown>;
3629
+ /** Callback invoked when the banner is dismissed (e.g. pause playback) */
3630
+ onClose?: () => void;
3623
3631
  }
3624
3632
  /**
3625
3633
  * Info Bar Service
@@ -3706,6 +3714,7 @@ declare class AXInfoBarService {
3706
3714
  * Clear search
3707
3715
  */
3708
3716
  clearSearch(): void;
3717
+ private _extractOnClose;
3709
3718
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXInfoBarService, never>;
3710
3719
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXInfoBarService>;
3711
3720
  }
@@ -3894,6 +3903,7 @@ interface FilePreview {
3894
3903
  }
3895
3904
  declare class AXFileUploadService {
3896
3905
  private readonly config;
3906
+ private readonly platformId;
3897
3907
  private uploadProgress$;
3898
3908
  /**
3899
3909
  * Get upload progress observable
@@ -4015,7 +4025,9 @@ declare class AXInfoBarComponent {
4015
4025
  /** Handle inline action click */
4016
4026
  onInlineActionClick(actionId: string): Promise<void>;
4017
4027
  /** Get inputs for dynamic component */
4018
- getComponentInputs(): Record<string, any>;
4028
+ getComponentInputs(): Record<string, unknown>;
4029
+ getInlineComponentInputs(): Record<string, unknown>;
4030
+ isActiveComponentFullWidth(): boolean;
4019
4031
  /** Handle close component */
4020
4032
  onCloseComponent(): void;
4021
4033
  getBannerInputs(): Record<string, unknown>;
@@ -4058,12 +4070,13 @@ declare class AXForwardMessageDialogComponent implements OnInit {
4058
4070
  declare class AXMessageListComponent implements OnDestroy {
4059
4071
  private readonly conversationService;
4060
4072
  private readonly messageListService;
4061
- protected readonly config: AXConversationConfig;
4073
+ protected readonly config: Required<AXConversationConfig>;
4062
4074
  /**
4063
4075
  * Background for the message list scroll area from config, or the built-in soft gradient when unset/empty.
4064
4076
  * Set `messageListBackground` to `transparent` or `none` for a flat look.
4065
4077
  */
4066
4078
  messageListBackgroundStyle(): string;
4079
+ resolvedEmptyStateComponent(): Type<AXMessageListEmptyComponent>;
4067
4080
  /** Custom avatar template for message list items */
4068
4081
  readonly avatarTemplate: _angular_core.InputSignal<TemplateRef<AXMessageAvatarTemplateContext>>;
4069
4082
  private readonly timeouts;
@@ -4130,7 +4143,7 @@ declare class AXMessageListComponent implements OnDestroy {
4130
4143
  /** Get forwarded text with sender and conversation info */
4131
4144
  getForwardedText(message: AXMessage): string;
4132
4145
  /** Resolve renderer component for message */
4133
- getRendererComponent(message: AXMessage): _angular_core.Type<_acorex_components_conversation2.AXMessageRendererComponent>;
4146
+ getRendererComponent(message: AXMessage): Type<_acorex_components_conversation2.AXMessageRendererComponent>;
4134
4147
  /** Provide inputs for the dynamic renderer */
4135
4148
  getRendererInputs(message: AXMessage): {
4136
4149
  message: AXMessage;
@@ -4228,7 +4241,7 @@ declare class AXMessageListComponent implements OnDestroy {
4228
4241
  */
4229
4242
  trackMessage(index: number, message: AXMessage): string;
4230
4243
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXMessageListComponent, never>;
4231
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMessageListComponent, "ax-conversation-message-list", never, { "avatarTemplate": { "alias": "avatarTemplate"; "required": false; "isSignal": true; }; }, { "messageAction": "messageAction"; }, never, never, true, never>;
4244
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXMessageListComponent, "ax-conversation-message-list", never, { "avatarTemplate": { "alias": "avatarTemplate"; "required": false; "isSignal": true; }; }, { "messageAction": "messageAction"; }, never, ["ax-conversation-message-list-empty, [ax-conversation-message-list-empty]"], true, never>;
4232
4245
  }
4233
4246
  interface AXMessageAvatarTemplateContext {
4234
4247
  $implicit: AXMessage;
@@ -4320,7 +4333,7 @@ declare class AXSidebarService {
4320
4333
 
4321
4334
  declare class AXSidebarComponent implements OnDestroy {
4322
4335
  readonly sidebar: AXSidebarService;
4323
- protected readonly config: AXConversationConfig;
4336
+ protected readonly config: Required<AXConversationConfig>;
4324
4337
  private readonly conversationService;
4325
4338
  private readonly popupService;
4326
4339
  /** Conversation selected event */
@@ -4468,8 +4481,8 @@ declare class AXConversationIndexedDbStorage {
4468
4481
  getMessagesByConversation(conversationId: string): Promise<AXMessage[]>;
4469
4482
  putMessage(message: AXMessage): Promise<void>;
4470
4483
  deleteMessage(id: string): Promise<void>;
4471
- getSetting(key: string): Promise<any>;
4472
- putSetting(key: string, value: any): Promise<void>;
4484
+ getSetting(key: string): Promise<unknown>;
4485
+ putSetting(key: string, value: unknown): Promise<void>;
4473
4486
  }
4474
4487
  declare const axConversationIndexedDbStorage: AXConversationIndexedDbStorage;
4475
4488
 
@@ -4537,8 +4550,8 @@ declare class AXConversationIndexedDbUserApi extends AXUserApi {
4537
4550
  unblockUser(_userId: string): Promise<void>;
4538
4551
  getBlockedUsers(): Promise<string[]>;
4539
4552
  reportUser(_userId: string, _reason: AXBlockReportReason): Promise<void>;
4540
- getUserSettings(): Promise<Record<string, any>>;
4541
- updateUserSettings(_settings: Record<string, any>): Promise<void>;
4553
+ getUserSettings(): Promise<Record<string, unknown>>;
4554
+ updateUserSettings(_settings: Record<string, unknown>): Promise<void>;
4542
4555
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationIndexedDbUserApi, never>;
4543
4556
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationIndexedDbUserApi>;
4544
4557
  }
@@ -4567,7 +4580,7 @@ declare class AXConversationIndexedDbConversationApi extends AXConversationApi {
4567
4580
  muteConversation(_conversationId: string, _duration?: number): Promise<void>;
4568
4581
  unmuteConversation(_conversationId: string): Promise<void>;
4569
4582
  uploadConversationAvatar(_conversationId: string, file: File): Promise<string>;
4570
- getConversationMedia(_conversationId: string, _pagination?: AXPagination): Promise<AXPaginatedResult<any>>;
4583
+ getConversationMedia(_conversationId: string, _pagination?: AXPagination): Promise<AXPaginatedResult<unknown>>;
4571
4584
  addConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4572
4585
  removeConversationTags(_conversationId: string, _tags: string[]): Promise<void>;
4573
4586
  getConversationTags(_conversationId: string): Promise<string[]>;
@@ -4609,10 +4622,10 @@ declare class AXConversationIndexedDbMessageApi extends AXMessageApi {
4609
4622
  thumbnailUrl?: string;
4610
4623
  size: number;
4611
4624
  mimeType: string;
4612
- metadata?: Record<string, any>;
4625
+ metadata?: Record<string, unknown>;
4613
4626
  }>;
4614
- updateMessageMetadata(_messageId: string, _metadata: Record<string, any>): Promise<void>;
4615
- getMessageMetadata(_messageId: string): Promise<Record<string, any>>;
4627
+ updateMessageMetadata(_messageId: string, _metadata: Record<string, unknown>): Promise<void>;
4628
+ getMessageMetadata(_messageId: string): Promise<Record<string, unknown>>;
4616
4629
  updateMessageStatus(_messageId: string, _status: 'sending' | 'sent' | 'delivered' | 'read' | 'failed'): Promise<void>;
4617
4630
  getMessageDeliveryStatus(_messageId: string): Promise<{
4618
4631
  delivered: number;
@@ -4670,7 +4683,7 @@ declare class AXConversationIndexedDbRealtimeApi extends AXRealtimeApi {
4670
4683
  }>;
4671
4684
  subscribeToConversationSettingsChanges(_conversationId?: string): Observable<{
4672
4685
  conversationId: string;
4673
- settings: Record<string, any>;
4686
+ settings: Record<string, unknown>;
4674
4687
  }>;
4675
4688
  subscribeToDraftChanges(_conversationId?: string): Observable<{
4676
4689
  conversationId: string;
@@ -4846,8 +4859,9 @@ declare class AXEmojiTabComponent {
4846
4859
  selectCategory(categoryId: string): void;
4847
4860
  /** Get category CSS classes */
4848
4861
  getCategoryClasses(categoryId: string): string;
4849
- /** Handle search change */
4850
- onSearchChange(event: any): void;
4862
+ onSearchChange(event: {
4863
+ value?: string;
4864
+ }): void;
4851
4865
  /** Select emoji */
4852
4866
  selectEmoji(emoji: string): void;
4853
4867
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXEmojiTabComponent, never>;
@@ -4868,10 +4882,9 @@ declare class AXFilePickerComponent {
4868
4882
  private readonly conversationService;
4869
4883
  private readonly fileUploadService;
4870
4884
  private readonly messageApi;
4885
+ private readonly composerService;
4871
4886
  readonly conversation: _angular_core.InputSignal<AXConversation>;
4872
- readonly service: _angular_core.InputSignal<AXComposerService>;
4873
4887
  readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
4874
- private get composerService();
4875
4888
  readonly files: _angular_core.WritableSignal<AttachedFile[]>;
4876
4889
  readonly isDragging: _angular_core.WritableSignal<boolean>;
4877
4890
  readonly isUploading: _angular_core.WritableSignal<boolean>;
@@ -4892,7 +4905,7 @@ declare class AXFilePickerComponent {
4892
4905
  canSend(): boolean;
4893
4906
  getSendButtonText(): string;
4894
4907
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXFilePickerComponent, never>;
4895
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXFilePickerComponent, "ax-conversation-file-picker", never, { "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; "service": { "alias": "service"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4908
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXFilePickerComponent, "ax-conversation-file-picker", never, { "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
4896
4909
  }
4897
4910
 
4898
4911
  interface ImageFile {
@@ -4927,13 +4940,12 @@ declare class AXLocationPickerComponent {
4927
4940
  private readonly composerService;
4928
4941
  private readonly conversationService;
4929
4942
  readonly conversation: _angular_core.InputSignal<AXConversation>;
4930
- readonly onClose: _angular_core.OutputEmitterRef<void>;
4931
4943
  readonly currentLocation: _angular_core.WritableSignal<AXLocationPayload>;
4932
4944
  onMarkerAdded(event: AXMapMarker): void;
4933
4945
  sendLocation(): Promise<void>;
4934
4946
  cancel(): void;
4935
4947
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLocationPickerComponent, never>;
4936
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLocationPickerComponent, "ax-conversation-location-picker", never, { "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; }, { "onClose": "onClose"; }, never, never, true, never>;
4948
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLocationPickerComponent, "ax-conversation-location-picker", never, { "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
4937
4949
  }
4938
4950
 
4939
4951
  declare class AXPickerFooterComponent {
@@ -4952,6 +4964,7 @@ declare class AXPickerHeaderComponent {
4952
4964
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPickerHeaderComponent, "ax-picker-header", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; }, { "onClose": "onClose"; }, never, never, true, never>;
4953
4965
  }
4954
4966
 
4967
+ declare const AX_STICKER_API_KEY: InjectionToken<string>;
4955
4968
  interface StickerCategory {
4956
4969
  id: string;
4957
4970
  name: string;
@@ -4960,35 +4973,27 @@ interface StickerCategory {
4960
4973
  }
4961
4974
  declare class AXStickerTabComponent {
4962
4975
  private readonly http;
4963
- /** Sticker selected event */
4976
+ private readonly destroyRef;
4977
+ private readonly apiKey;
4964
4978
  readonly itemSelected: _angular_core.OutputEmitterRef<AXStickerPayload>;
4965
- /** Search query */
4966
4979
  readonly searchQuery: _angular_core.WritableSignal<string>;
4967
- /** Active category ID */
4968
- private readonly activeCategoryId;
4969
- /** Sticker categories */
4970
- readonly stickerCategories: StickerCategory[];
4971
- /** Active stickers */
4972
4980
  readonly activeStickers: _angular_core.WritableSignal<AXStickerPayload[]>;
4973
- /** Loading state */
4974
4981
  readonly loading: _angular_core.WritableSignal<boolean>;
4975
- /** Skeleton items array */
4982
+ readonly stickerCategories: StickerCategory[];
4976
4983
  readonly skeletonItems: number[];
4977
- private readonly GIPHY_API_KEY;
4978
- /** Search debounce timeout */
4984
+ private readonly activeCategoryId;
4979
4985
  private searchTimeout?;
4980
4986
  constructor();
4981
- /** Load stickers from Giphy API */
4982
4987
  private loadStickers;
4983
4988
  /** Select category */
4984
4989
  selectPack(categoryId: string): void;
4985
- /** Search stickers using Giphy API */
4986
4990
  private searchStickers;
4987
- /** Handle search change with debouncing */
4988
- onSearchChange(event: any): void;
4991
+ onSearchChange(event: {
4992
+ value?: string;
4993
+ }): void;
4989
4994
  /** Get category CSS classes */
4990
4995
  getPackClasses(categoryId: string): string;
4991
- /** Select sticker */
4996
+ private mapGiphyStickers;
4992
4997
  selectSticker(sticker: AXStickerPayload): void;
4993
4998
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXStickerTabComponent, never>;
4994
4999
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXStickerTabComponent, "ax-sticker-tab", never, {}, { "itemSelected": "itemSelected"; }, never, never, true, never>;
@@ -5025,36 +5030,27 @@ declare class AXVideoPickerComponent {
5025
5030
  }
5026
5031
 
5027
5032
  declare class AXVoiceRecorderComponent {
5033
+ private readonly platformId;
5034
+ private readonly destroyRef;
5028
5035
  private readonly composerService;
5029
5036
  private readonly conversationService;
5030
5037
  private readonly messageApi;
5031
- /** Conversation context */
5032
5038
  readonly conversation: _angular_core.InputSignal<AXConversation>;
5033
- /** Service reference */
5034
- readonly service: _angular_core.InputSignal<AXComposerService>;
5035
- /** Recording completed event */
5036
5039
  readonly recordingComplete: _angular_core.OutputEmitterRef<Blob>;
5037
- /** Recording cancelled event */
5038
5040
  readonly recordingCancelled: _angular_core.OutputEmitterRef<void>;
5039
- /** Recording state */
5040
5041
  readonly isRecording: _angular_core.WritableSignal<boolean>;
5041
- /** Recording start time */
5042
- private recordingStartTime;
5043
- /** Recording duration in seconds */
5044
5042
  readonly recordingDuration: _angular_core.WritableSignal<number>;
5045
- /** Timer interval */
5043
+ private recordingStartTime;
5046
5044
  private timerInterval?;
5047
- /** Media recorder instance */
5048
5045
  private mediaRecorder?;
5049
- /** Recorded audio chunks */
5050
5046
  private audioChunks;
5051
- /** Formatted time display */
5047
+ private activeStream?;
5048
+ private cancelled;
5052
5049
  readonly formattedTime: _angular_core.Signal<string>;
5053
- /** Start recording */
5050
+ constructor();
5054
5051
  startRecording(): Promise<void>;
5055
5052
  /** Stop recording and send */
5056
5053
  stopRecording(): void;
5057
- /** Cancel recording */
5058
5054
  cancelRecording(): void;
5059
5055
  /** Close the voice recorder */
5060
5056
  cancel(): void;
@@ -5062,8 +5058,9 @@ declare class AXVoiceRecorderComponent {
5062
5058
  private clearTimer;
5063
5059
  /** Send voice message */
5064
5060
  private sendVoiceMessage;
5061
+ private stopAndCleanup;
5065
5062
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXVoiceRecorderComponent, never>;
5066
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXVoiceRecorderComponent, "ax-conversation-voice-recorder", never, { "conversation": { "alias": "conversation"; "required": false; "isSignal": true; }; "service": { "alias": "service"; "required": false; "isSignal": true; }; }, { "recordingComplete": "recordingComplete"; "recordingCancelled": "recordingCancelled"; }, never, never, true, never>;
5063
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXVoiceRecorderComponent, "ax-conversation-voice-recorder", never, { "conversation": { "alias": "conversation"; "required": false; "isSignal": true; }; }, { "recordingComplete": "recordingComplete"; "recordingCancelled": "recordingCancelled"; }, never, never, true, never>;
5067
5064
  }
5068
5065
 
5069
5066
  /**
@@ -5172,6 +5169,8 @@ declare class AXConversationInfoPanelComponent extends AXClosableComponent imple
5172
5169
  }
5173
5170
 
5174
5171
  declare class AXInfoBarSearchComponent {
5172
+ private readonly platformId;
5173
+ private readonly destroyRef;
5175
5174
  private readonly infoBarService;
5176
5175
  private readonly conversationService;
5177
5176
  /** Conversation input */
@@ -5186,6 +5185,7 @@ declare class AXInfoBarSearchComponent {
5186
5185
  readonly currentIndex: _angular_core.Signal<number>;
5187
5186
  /** Messages from conversation */
5188
5187
  readonly messages: _angular_core.Signal<AXMessage[]>;
5188
+ private scrollTimer?;
5189
5189
  constructor();
5190
5190
  /** Handle search input change */
5191
5191
  onSearchChange(value: string): void;
@@ -5197,7 +5197,6 @@ declare class AXInfoBarSearchComponent {
5197
5197
  onPrevious(): void;
5198
5198
  /** Scroll to current search result */
5199
5199
  private scrollToCurrentResult;
5200
- /** Scroll to a specific message */
5201
5200
  private scrollToResult;
5202
5201
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXInfoBarSearchComponent, never>;
5203
5202
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXInfoBarSearchComponent, "ax-info-bar-search", never, { "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; "service": { "alias": "service"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -5759,7 +5758,7 @@ declare class AXConversationMessageUtilsService {
5759
5758
  */
5760
5759
  static isOwnMessage(message: AXMessage, currentUserId: string): boolean;
5761
5760
  /**
5762
- * Get message status icon
5761
+ * Get message status icon class (Font Awesome)
5763
5762
  */
5764
5763
  static getStatusIcon(message: AXMessage): string;
5765
5764
  /**
@@ -6339,5 +6338,5 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
6339
6338
  */
6340
6339
  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'];
6341
6340
 
6342
- 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, 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_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, 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 };
6343
- export type { AXApiError, AXAudioPayload, AXBlockReportReason, AXCallEvent, AXComposerAction, 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, AXInfoBarActionContext, AXInfoBarActiveBanner, AXInfoBarActiveComponent, AXLink, AXLinkPreview, AXLocationPayload, AXMention, AXMessage, AXMessageAction, AXMessageActionContext, AXMessageAvatarTemplateContext, AXMessageForwardData, AXMessageInfoBarBannerComponent, 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 };
6341
+ 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, 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_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 };
6342
+ 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 };