@acorex/components 22.0.0-next.25 → 22.0.0-next.27
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.
- package/combo-box/README.md +26 -0
- package/fesm2022/acorex-components-combo-box.mjs +237 -0
- package/fesm2022/acorex-components-combo-box.mjs.map +1 -0
- package/fesm2022/acorex-components-conversation.mjs +937 -670
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +42 -36
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-dialog.mjs +3 -2
- package/fesm2022/acorex-components-dialog.mjs.map +1 -1
- package/package.json +7 -3
- package/types/acorex-components-combo-box.d.ts +114 -0
- package/types/acorex-components-conversation.d.ts +126 -32
|
@@ -284,6 +284,16 @@ interface AXConversationMessage {
|
|
|
284
284
|
};
|
|
285
285
|
/** Message reactions */
|
|
286
286
|
reactions: AXConversationReaction[];
|
|
287
|
+
/**
|
|
288
|
+
* Total reply count when provided by the message API (`getMessages` or realtime).
|
|
289
|
+
* When omitted, the UI derives a minimum from loaded messages in the active conversation.
|
|
290
|
+
*/
|
|
291
|
+
replyCount?: number;
|
|
292
|
+
/**
|
|
293
|
+
* Total forward count when provided by the message API (`getMessages` or realtime).
|
|
294
|
+
* When omitted, the UI derives a minimum from loaded messages in the active conversation.
|
|
295
|
+
*/
|
|
296
|
+
forwardCount?: number;
|
|
287
297
|
/** Whether message is pinned */
|
|
288
298
|
pinned?: boolean;
|
|
289
299
|
/** Edit timestamp (if edited) */
|
|
@@ -1703,6 +1713,7 @@ declare class AXConversationContainerComponent {
|
|
|
1703
1713
|
private readonly hostRef;
|
|
1704
1714
|
private readonly platformId;
|
|
1705
1715
|
protected readonly config: Required<_acorex_components_conversation.AXConversationConfig>;
|
|
1716
|
+
constructor();
|
|
1706
1717
|
private get registry();
|
|
1707
1718
|
/** Custom CSS class */
|
|
1708
1719
|
readonly customClass: _angular_core.InputSignal<string>;
|
|
@@ -1733,6 +1744,7 @@ declare class AXConversationContainerDirective {
|
|
|
1733
1744
|
private readonly translation;
|
|
1734
1745
|
private readonly toast;
|
|
1735
1746
|
private readonly config;
|
|
1747
|
+
constructor();
|
|
1736
1748
|
private get registry();
|
|
1737
1749
|
/** Active conversation */
|
|
1738
1750
|
readonly activeConversation: _angular_core.Signal<_acorex_components_conversation.AXConversation>;
|
|
@@ -1879,6 +1891,24 @@ type AXConversationPresenceStatus = 'online' | 'offline' | 'away' | 'busy' | 'in
|
|
|
1879
1891
|
*/
|
|
1880
1892
|
type AXConversationUserRole = 'owner' | 'admin' | 'member' | 'guest';
|
|
1881
1893
|
|
|
1894
|
+
type AXConversationApiName = 'userApi' | 'conversationApi' | 'messageApi' | 'realtimeApi';
|
|
1895
|
+
interface AXConversationApiLogEntry {
|
|
1896
|
+
/** Public method on AXConversationService that triggered the API call. */
|
|
1897
|
+
serviceMethod: string;
|
|
1898
|
+
/** Injected API instance name. */
|
|
1899
|
+
api: AXConversationApiName;
|
|
1900
|
+
/** Method invoked on the API instance. */
|
|
1901
|
+
apiMethod: string;
|
|
1902
|
+
/** Positional arguments passed to the API method. */
|
|
1903
|
+
context: unknown[];
|
|
1904
|
+
}
|
|
1905
|
+
declare class AXConversationApiLoggerService {
|
|
1906
|
+
private readonly config;
|
|
1907
|
+
log(entry: AXConversationApiLogEntry): void;
|
|
1908
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationApiLoggerService, never>;
|
|
1909
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationApiLoggerService>;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1882
1912
|
/**
|
|
1883
1913
|
* Abstract Conversation Management API
|
|
1884
1914
|
* Handle conversation CRUD operations, participants, and settings
|
|
@@ -3144,6 +3174,7 @@ declare class AXConversationService {
|
|
|
3144
3174
|
private readonly fileService;
|
|
3145
3175
|
private readonly platformId;
|
|
3146
3176
|
private readonly errorHandler;
|
|
3177
|
+
private readonly apiLogger;
|
|
3147
3178
|
readonly dialogService: AXDialogService;
|
|
3148
3179
|
readonly popupService: AXPopupService;
|
|
3149
3180
|
private readonly translation;
|
|
@@ -3191,14 +3222,28 @@ declare class AXConversationService {
|
|
|
3191
3222
|
readonly onMessageDeleted: rxjs.Observable<string>;
|
|
3192
3223
|
readonly onTypingIndicator: rxjs.Observable<AXConversationTypingIndicator>;
|
|
3193
3224
|
readonly onPresenceChange: rxjs.Observable<AXConversationPresenceUpdate>;
|
|
3194
|
-
private readonly _messageCountRefresh$;
|
|
3195
|
-
readonly onMessageCountRefresh: rxjs.Observable<{
|
|
3196
|
-
messageId: string;
|
|
3197
|
-
type: "reply" | "forward";
|
|
3198
|
-
}>;
|
|
3199
3225
|
private _currentUser;
|
|
3200
3226
|
readonly currentUser: _angular_core.Signal<_acorex_components_conversation.AXConversationParticipant>;
|
|
3227
|
+
/** One-time async initialization (connect, user, conversations, realtime). */
|
|
3228
|
+
private initPromise;
|
|
3229
|
+
/** Generation counter — stale page-0 loads are ignored after conversation switches. */
|
|
3230
|
+
private messageLoadGeneration;
|
|
3231
|
+
/** Batched read-receipt queue keyed by conversation ID. */
|
|
3232
|
+
private readonly readQueue;
|
|
3233
|
+
private readFlushHandle;
|
|
3234
|
+
/** Session cache for available reaction emojis. */
|
|
3235
|
+
private availableReactionsCache;
|
|
3236
|
+
private availableReactionsPromise;
|
|
3201
3237
|
constructor();
|
|
3238
|
+
/** Log and invoke an async API method from AXConversationService. */
|
|
3239
|
+
private callApi;
|
|
3240
|
+
/** Log a sync API invocation (e.g. realtime observable subscriptions). */
|
|
3241
|
+
private logApi;
|
|
3242
|
+
/**
|
|
3243
|
+
* Ensures the service is initialized exactly once.
|
|
3244
|
+
* Safe to call from container components or before any public API usage.
|
|
3245
|
+
*/
|
|
3246
|
+
ensureInitialized(): Promise<void>;
|
|
3202
3247
|
/**
|
|
3203
3248
|
* Initialize the service
|
|
3204
3249
|
* Connects to API and loads initial data
|
|
@@ -3220,9 +3265,7 @@ declare class AXConversationService {
|
|
|
3220
3265
|
*/
|
|
3221
3266
|
loadMoreConversations(page: number): Promise<boolean>;
|
|
3222
3267
|
/**
|
|
3223
|
-
* Select a conversation
|
|
3224
|
-
* Loads messages and subscribes to real-time updates
|
|
3225
|
-
* Note: Messages are now marked as read individually via intersection observer when viewed
|
|
3268
|
+
* Select a conversation and load page 0 of its message history.
|
|
3226
3269
|
*/
|
|
3227
3270
|
selectConversation(conversationId: string): Promise<void>;
|
|
3228
3271
|
closeActiveConversation(): void;
|
|
@@ -3274,10 +3317,20 @@ declare class AXConversationService {
|
|
|
3274
3317
|
*/
|
|
3275
3318
|
getAvailableReactions(): Promise<string[]>;
|
|
3276
3319
|
/**
|
|
3277
|
-
*
|
|
3278
|
-
|
|
3320
|
+
* Queue a message to be marked as read (batched/debounced API sync).
|
|
3321
|
+
*/
|
|
3322
|
+
queueMessageAsRead(messageId: string): void;
|
|
3323
|
+
/**
|
|
3324
|
+
* Mark a single message as read (queues for batched sync).
|
|
3279
3325
|
*/
|
|
3280
3326
|
markMessageAsRead(messageId: string): Promise<void>;
|
|
3327
|
+
private scheduleReadFlush;
|
|
3328
|
+
/**
|
|
3329
|
+
* Drop queued per-message read receipts without syncing to the API.
|
|
3330
|
+
* Used before conversation-level mark-as-read to avoid duplicate API calls.
|
|
3331
|
+
*/
|
|
3332
|
+
private discardReadQueue;
|
|
3333
|
+
private flushReadQueue;
|
|
3281
3334
|
/**
|
|
3282
3335
|
* Mark conversation as read
|
|
3283
3336
|
* Marks messages locally and syncs with server
|
|
@@ -3302,10 +3355,10 @@ declare class AXConversationService {
|
|
|
3302
3355
|
*/
|
|
3303
3356
|
private handleMessageUpdate;
|
|
3304
3357
|
/**
|
|
3305
|
-
*
|
|
3306
|
-
* Emits events when a message is a reply or forward so components can refresh counts
|
|
3358
|
+
* Bump reply/forward counts locally when realtime events arrive outside the active message list.
|
|
3307
3359
|
*/
|
|
3308
|
-
private
|
|
3360
|
+
private syncMessageCountFromRealtime;
|
|
3361
|
+
private bumpMessageCount;
|
|
3309
3362
|
/**
|
|
3310
3363
|
* Handle message deletion
|
|
3311
3364
|
*/
|
|
@@ -3723,8 +3776,6 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3723
3776
|
/** Fallback when no conversation is active and no `ax-conversation-message-list-no-active` content is projected. */
|
|
3724
3777
|
protected readonly noActiveFallbackComponent: typeof AXConversationMessageListNoActiveDefaultComponent;
|
|
3725
3778
|
private readonly timeouts;
|
|
3726
|
-
private readonly replyCounts;
|
|
3727
|
-
private readonly forwardCounts;
|
|
3728
3779
|
readonly reactionPickerTarget: _angular_core.WritableSignal<string>;
|
|
3729
3780
|
readonly reactionPickerElement: _angular_core.WritableSignal<HTMLElement>;
|
|
3730
3781
|
readonly reactionPickerPlacement: _angular_core.WritableSignal<AXPlacement>;
|
|
@@ -3736,6 +3787,7 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3736
3787
|
/** While true, older history is being prepended — do not auto-scroll to the latest message. */
|
|
3737
3788
|
private restoringScrollAfterPrepend;
|
|
3738
3789
|
readonly availableReactions: _angular_core.WritableSignal<string[]>;
|
|
3790
|
+
private reactionsLoading;
|
|
3739
3791
|
private get registry();
|
|
3740
3792
|
/** Message list element reference */
|
|
3741
3793
|
private readonly messageListRef;
|
|
@@ -3768,6 +3820,7 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3768
3820
|
}[]>;
|
|
3769
3821
|
constructor();
|
|
3770
3822
|
private intersectionObserver?;
|
|
3823
|
+
private readonly observedReadMessageIds;
|
|
3771
3824
|
/**
|
|
3772
3825
|
* Setup intersection observer to mark messages as read when visible
|
|
3773
3826
|
*/
|
|
@@ -3834,8 +3887,8 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3834
3887
|
onReactionClickById(messageId: string, emoji: string): void;
|
|
3835
3888
|
/** Get message by ID */
|
|
3836
3889
|
getMessageById(messageId: string): AXConversationMessage | undefined;
|
|
3837
|
-
/** Load available reactions
|
|
3838
|
-
private
|
|
3890
|
+
/** Load available reactions when the picker is opened (session-cached in service). */
|
|
3891
|
+
private ensureAvailableReactions;
|
|
3839
3892
|
/** Get message actions from registry */
|
|
3840
3893
|
getMessageActions(message: AXConversationMessage): _acorex_components_conversation.AXConversationMessageAction[];
|
|
3841
3894
|
/** Handle reaction click */
|
|
@@ -3874,15 +3927,8 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3874
3927
|
/** Get ARIA label for message */
|
|
3875
3928
|
getMessageAriaLabel(message: AXConversationMessage): string;
|
|
3876
3929
|
getDateSeparatorAriaLabel(dateLabel: string): string;
|
|
3877
|
-
/** Get reply count for a message (fetches from API across all conversations) */
|
|
3878
3930
|
getReplyCount(message: AXConversationMessage): number;
|
|
3879
|
-
/** Get forward count for a message (fetches from API across all conversations) */
|
|
3880
3931
|
getForwardCount(message: AXConversationMessage): number;
|
|
3881
|
-
/**
|
|
3882
|
-
* Refresh count for a specific message from API
|
|
3883
|
-
* This is called when a new reply or forward is detected globally
|
|
3884
|
-
*/
|
|
3885
|
-
private refreshCount;
|
|
3886
3932
|
onMessageListDragEnter(): void;
|
|
3887
3933
|
onMessageListDragLeave(): void;
|
|
3888
3934
|
/** Open the matching composer picker popup when files are dropped on the message list. */
|
|
@@ -3911,7 +3957,6 @@ declare class AXConversationMessageListComponent implements OnDestroy {
|
|
|
3911
3957
|
|
|
3912
3958
|
declare class AXConversationMessageListService {
|
|
3913
3959
|
private readonly conversationService;
|
|
3914
|
-
private readonly config;
|
|
3915
3960
|
private get registry();
|
|
3916
3961
|
readonly activeConversation: _angular_core.Signal<_acorex_components_conversation.AXConversation>;
|
|
3917
3962
|
readonly activeMessages: _angular_core.Signal<AXConversationMessage[]>;
|
|
@@ -3928,9 +3973,19 @@ declare class AXConversationMessageListService {
|
|
|
3928
3973
|
readonly scrollRequests: _angular_core.WritableSignal<number>;
|
|
3929
3974
|
/** Live renderer instances keyed by message id (for message actions). */
|
|
3930
3975
|
private readonly _rendererInstances;
|
|
3976
|
+
/**
|
|
3977
|
+
* Reply counts merged from API fields and loaded messages.
|
|
3978
|
+
*/
|
|
3979
|
+
readonly replyCounts: _angular_core.Signal<Map<string, number>>;
|
|
3980
|
+
/**
|
|
3981
|
+
* Forward counts merged from API fields and loaded messages.
|
|
3982
|
+
*/
|
|
3983
|
+
readonly forwardCounts: _angular_core.Signal<Map<string, number>>;
|
|
3931
3984
|
registerRendererInstance(messageId: string, instance: AXConversationMessageRendererComponent): void;
|
|
3932
3985
|
unregisterRendererInstance(messageId: string): void;
|
|
3933
3986
|
getRendererInstance(messageId: string): AXConversationMessageRendererComponent | undefined;
|
|
3987
|
+
getReplyCount(messageId: string): number;
|
|
3988
|
+
getForwardCount(messageId: string): number;
|
|
3934
3989
|
/** Message grouped by date */
|
|
3935
3990
|
readonly messageGroups: _angular_core.Signal<{
|
|
3936
3991
|
date: string;
|
|
@@ -3950,6 +4005,7 @@ declare class AXConversationMessageListService {
|
|
|
3950
4005
|
reactToMessage(messageId: string, emoji: string): Promise<void>;
|
|
3951
4006
|
/** Request message list to scroll to bottom */
|
|
3952
4007
|
requestScrollToBottom(): void;
|
|
4008
|
+
private buildCountMap;
|
|
3953
4009
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationMessageListService, never>;
|
|
3954
4010
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXConversationMessageListService>;
|
|
3955
4011
|
}
|
|
@@ -3957,6 +4013,7 @@ declare class AXConversationMessageListService {
|
|
|
3957
4013
|
declare class AXConversationSidebarService {
|
|
3958
4014
|
private readonly conversationService;
|
|
3959
4015
|
private readonly config;
|
|
4016
|
+
constructor();
|
|
3960
4017
|
private get registry();
|
|
3961
4018
|
readonly searchQuery: _angular_core.WritableSignal<string>;
|
|
3962
4019
|
readonly activeTabId: _angular_core.WritableSignal<string>;
|
|
@@ -4040,6 +4097,10 @@ declare class AXConversationNewDialogComponent extends AXBasePageComponent {
|
|
|
4040
4097
|
conversationService: AXConversationService;
|
|
4041
4098
|
private readonly toastService;
|
|
4042
4099
|
private readonly translation;
|
|
4100
|
+
private readonly config;
|
|
4101
|
+
private readonly destroyRef;
|
|
4102
|
+
private searchDebounceTimer?;
|
|
4103
|
+
constructor();
|
|
4043
4104
|
/**
|
|
4044
4105
|
* Injected by {@link AXPopupComponent} when this dialog is opened via {@link AXPopupService}.
|
|
4045
4106
|
* Required for `setTitle` / dynamic header — {@link AXBasePageComponent#setTitle} is otherwise unset.
|
|
@@ -4168,6 +4229,13 @@ interface AXConversationConfig {
|
|
|
4168
4229
|
maxFilesPerMessage?: number;
|
|
4169
4230
|
/** Threshold for marking messages as read (0.0 to 1.0, default: 0.3) */
|
|
4170
4231
|
messageReadThreshold?: number;
|
|
4232
|
+
/** Debounce window (ms) before flushing batched read-receipt API calls (default: 400) */
|
|
4233
|
+
messageReadDebounce?: number;
|
|
4234
|
+
/**
|
|
4235
|
+
* When true, marks the whole conversation as read once when it is selected (single API call).
|
|
4236
|
+
* Per-message intersection observer still handles new messages received while the chat is open.
|
|
4237
|
+
*/
|
|
4238
|
+
markConversationReadOnSelect?: boolean;
|
|
4171
4239
|
/**
|
|
4172
4240
|
* CSS `background` for the message list (`ax-conversation-message-list` area, all states: loading, empty, messages).
|
|
4173
4241
|
* Use full shorthand, or a bare `https://...` / `/path/to.png` (wrapped as `url(...)` with `center/cover`).
|
|
@@ -4176,6 +4244,8 @@ interface AXConversationConfig {
|
|
|
4176
4244
|
messageListBackground?: string;
|
|
4177
4245
|
/** Optional feature flags to reduce bundle size per app. */
|
|
4178
4246
|
features?: AXConversationFeatures;
|
|
4247
|
+
/** Log API calls made by AXConversationService to the console (default: false). */
|
|
4248
|
+
debugApiLogging?: boolean;
|
|
4179
4249
|
}
|
|
4180
4250
|
|
|
4181
4251
|
/**
|
|
@@ -4469,6 +4539,8 @@ declare function paginateChatOldestFirst<T extends {
|
|
|
4469
4539
|
/**
|
|
4470
4540
|
* Extra seed data so sidebar, message-list, and user-picker pagination can be exercised in the demo.
|
|
4471
4541
|
*/
|
|
4542
|
+
/** Dedicated chat for message-list infinite-scroll / page loading tests. */
|
|
4543
|
+
declare const AX_MESSAGE_PAGINATION_CONVERSATION_ID = "conv-pag-msgs";
|
|
4472
4544
|
/**
|
|
4473
4545
|
* Append demo chats/messages when the DB is too small for default page sizes (30 / 50).
|
|
4474
4546
|
*/
|
|
@@ -5396,7 +5468,18 @@ declare function resolveVideoThumbnailUrl(video: AXConversationVideoMediaItem):
|
|
|
5396
5468
|
declare function resolveGalleryImageUrl(image: AXConversationImageMediaItem): string | undefined;
|
|
5397
5469
|
declare function getMessageVideoItems(message: AXConversationMessage): AXConversationVideoMediaItem[];
|
|
5398
5470
|
declare function getMessageAudioItems(message: AXConversationMessage): AXConversationAudioMediaItem[];
|
|
5399
|
-
|
|
5471
|
+
interface AXConversationMediaPageResult {
|
|
5472
|
+
items: AXConversationMessage[];
|
|
5473
|
+
hasMore: boolean;
|
|
5474
|
+
nextCursor?: string;
|
|
5475
|
+
page: number;
|
|
5476
|
+
}
|
|
5477
|
+
declare function fetchConversationMediaPage(conversationApi: AXConversationApi, conversationId: string, page: number, pageSize?: number, cursor?: string): Promise<AXConversationMediaPageResult>;
|
|
5478
|
+
/** @deprecated Use {@link fetchConversationMediaPage} — loads only the first page. */
|
|
5479
|
+
declare function fetchConversationMediaMessages(conversationApi: AXConversationApi, conversationId: string, pageSize: number): Promise<AXConversationMessage[]>;
|
|
5480
|
+
/** Merge media API results with in-memory messages needed for link/sticker/voice/location tabs. */
|
|
5481
|
+
declare function mergeInfoPanelMessages(mediaMessages: AXConversationMessage[], supplemental: AXConversationMessage[]): AXConversationMessage[];
|
|
5482
|
+
declare function filterSupplementalInfoPanelMessages(messages: AXConversationMessage[]): AXConversationMessage[];
|
|
5400
5483
|
|
|
5401
5484
|
interface AXInfoPanelQuickAction {
|
|
5402
5485
|
id: string;
|
|
@@ -5418,6 +5501,10 @@ declare class AXConversationInfoPanelComponent extends AXClosableComponent imple
|
|
|
5418
5501
|
readonly mediaViewLoader: () => Promise<typeof _acorex_components_conversation.AXConversationInfoMediaViewComponent>;
|
|
5419
5502
|
readonly conversationMessages: _angular_core.WritableSignal<AXConversationMessage[]>;
|
|
5420
5503
|
readonly loadingMessages: _angular_core.WritableSignal<boolean>;
|
|
5504
|
+
readonly loadingMoreMedia: _angular_core.WritableSignal<boolean>;
|
|
5505
|
+
readonly mediaHasMore: _angular_core.WritableSignal<boolean>;
|
|
5506
|
+
private mediaNextPage;
|
|
5507
|
+
private mediaNextCursor;
|
|
5421
5508
|
readonly memberSearchQuery: _angular_core.WritableSignal<string>;
|
|
5422
5509
|
archived: boolean;
|
|
5423
5510
|
private initialNotifications;
|
|
@@ -5440,6 +5527,7 @@ declare class AXConversationInfoPanelComponent extends AXClosableComponent imple
|
|
|
5440
5527
|
readonly filteredMembers: _angular_core.Signal<AXConversationParticipant[]>;
|
|
5441
5528
|
ngOnInit(): void;
|
|
5442
5529
|
private loadConversationMessages;
|
|
5530
|
+
loadMoreMedia(): Promise<void>;
|
|
5443
5531
|
isPrivateConversation(): boolean;
|
|
5444
5532
|
isGroupConversation(): boolean;
|
|
5445
5533
|
membersSectionTitle(): string;
|
|
@@ -5477,6 +5565,9 @@ declare class AXConversationInfoMediaViewComponent {
|
|
|
5477
5565
|
readonly messages: _angular_core.InputSignal<AXConversationMessage[]>;
|
|
5478
5566
|
readonly conversation: _angular_core.InputSignal<AXConversation>;
|
|
5479
5567
|
readonly conversationServiceInput: _angular_core.InputSignal<AXConversationService>;
|
|
5568
|
+
readonly hasMoreMedia: _angular_core.InputSignal<boolean>;
|
|
5569
|
+
readonly loadingMoreMedia: _angular_core.InputSignal<boolean>;
|
|
5570
|
+
readonly onLoadMoreMedia: _angular_core.InputSignal<() => void | Promise<void>>;
|
|
5480
5571
|
/** Callback for lazy outlet wiring (alternative to the `back` output). */
|
|
5481
5572
|
readonly onBack: _angular_core.InputSignal<() => void>;
|
|
5482
5573
|
readonly back: _angular_core.OutputEmitterRef<void>;
|
|
@@ -5495,8 +5586,9 @@ declare class AXConversationInfoMediaViewComponent {
|
|
|
5495
5586
|
};
|
|
5496
5587
|
formatTimestamp(message: AXConversationMessage): string;
|
|
5497
5588
|
handleBack(): void;
|
|
5589
|
+
onScrollThreshold(edge: 'top' | 'bottom'): void;
|
|
5498
5590
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXConversationInfoMediaViewComponent, never>;
|
|
5499
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXConversationInfoMediaViewComponent, "ax-conversation-info-media-view", never, { "category": { "alias": "category"; "required": true; "isSignal": true; }; "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; "conversationServiceInput": { "alias": "conversationService"; "required": true; "isSignal": true; }; "onBack": { "alias": "onBack"; "required": false; "isSignal": true; }; }, { "back": "back"; }, never, never, true, never>;
|
|
5591
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXConversationInfoMediaViewComponent, "ax-conversation-info-media-view", never, { "category": { "alias": "category"; "required": true; "isSignal": true; }; "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "conversation": { "alias": "conversation"; "required": true; "isSignal": true; }; "conversationServiceInput": { "alias": "conversationService"; "required": true; "isSignal": true; }; "hasMoreMedia": { "alias": "hasMoreMedia"; "required": false; "isSignal": true; }; "loadingMoreMedia": { "alias": "loadingMoreMedia"; "required": false; "isSignal": true; }; "onLoadMoreMedia": { "alias": "onLoadMoreMedia"; "required": false; "isSignal": true; }; "onBack": { "alias": "onBack"; "required": false; "isSignal": true; }; }, { "back": "back"; }, never, never, true, never>;
|
|
5500
5592
|
}
|
|
5501
5593
|
|
|
5502
5594
|
declare class AXConversationInfoBarSearchComponent {
|
|
@@ -5504,6 +5596,7 @@ declare class AXConversationInfoBarSearchComponent {
|
|
|
5504
5596
|
private readonly destroyRef;
|
|
5505
5597
|
private readonly infoBarService;
|
|
5506
5598
|
private readonly conversationService;
|
|
5599
|
+
private readonly config;
|
|
5507
5600
|
/** Conversation input */
|
|
5508
5601
|
readonly conversation: _angular_core.InputSignal<AXConversation>;
|
|
5509
5602
|
/** Service input */
|
|
@@ -5514,13 +5607,14 @@ declare class AXConversationInfoBarSearchComponent {
|
|
|
5514
5607
|
readonly resultsCount: _angular_core.Signal<number>;
|
|
5515
5608
|
/** Current index from service */
|
|
5516
5609
|
readonly currentIndex: _angular_core.Signal<number>;
|
|
5517
|
-
|
|
5518
|
-
|
|
5610
|
+
private readonly searchResults;
|
|
5611
|
+
private searchDebounceTimer?;
|
|
5519
5612
|
private scrollTimer?;
|
|
5613
|
+
private searchRequestId;
|
|
5520
5614
|
constructor();
|
|
5521
5615
|
/** Handle search input change */
|
|
5522
5616
|
onSearchChange(value: string): void;
|
|
5523
|
-
/** Perform search in messages */
|
|
5617
|
+
/** Perform server-side search in messages */
|
|
5524
5618
|
private performSearch;
|
|
5525
5619
|
/** Navigate to next result */
|
|
5526
5620
|
onNext(): void;
|
|
@@ -6771,5 +6865,5 @@ declare function getErrorMessage(code: string, params?: Record<string, string |
|
|
|
6771
6865
|
*/
|
|
6772
6866
|
type AXConversationErrorCode = typeof AX_CONVERSATION_MESSAGE_ERRORS[keyof typeof AX_CONVERSATION_MESSAGE_ERRORS]['code'] | typeof AX_CONVERSATION_FILE_ERRORS[keyof typeof AX_CONVERSATION_FILE_ERRORS]['code'] | typeof AX_CONVERSATION_USER_ERRORS[keyof typeof AX_CONVERSATION_USER_ERRORS]['code'] | typeof AX_CONVERSATION_ERRORS[keyof typeof AX_CONVERSATION_ERRORS]['code'] | typeof AX_CONVERSATION_CONNECTION_ERRORS[keyof typeof AX_CONVERSATION_CONNECTION_ERRORS]['code'] | typeof AX_CONVERSATION_LOCATION_ERRORS[keyof typeof AX_CONVERSATION_LOCATION_ERRORS]['code'] | typeof AX_CONVERSATION_URL_ERRORS[keyof typeof AX_CONVERSATION_URL_ERRORS]['code'];
|
|
6773
6867
|
|
|
6774
|
-
export { AXConversationAiResponderService, AXConversationApi, AXConversationAudioAttachmentComponent, AXConversationAudioFileTypeProvider, AXConversationAudioPickerComponent, AXConversationAudioRendererComponent, AXConversationBaseRegistry, AXConversationComposerActionRegistry, AXConversationComposerComponent, AXConversationComposerFileTypesProvider, AXConversationComposerPopupComponent, AXConversationComposerService, AXConversationComposerTabRegistry, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationEmojiTabComponent, AXConversationErrorHandlerService, AXConversationFallbackRendererComponent, AXConversationFileAttachmentComponent, AXConversationFileFileTypeProvider, AXConversationFilePickerComponent, AXConversationFileRendererComponent, AXConversationForwardMessageDialogComponent, AXConversationImageAttachmentComponent, AXConversationImageFileTypeProvider, AXConversationImagePickerComponent, AXConversationImageRendererComponent, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfiniteScrollDirective, AXConversationInfoBarActionRegistry, AXConversationInfoBarComponent, AXConversationInfoBarSearchComponent, AXConversationInfoBarService, AXConversationInfoMediaViewComponent, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationLocationPickerComponent, AXConversationLocationRendererComponent, AXConversationMediaPlaybackInfoBarBannerComponent, AXConversationMessageActionRegistry, AXConversationMessageApi, AXConversationMessageListComponent, AXConversationMessageListNoActiveDefaultComponent, AXConversationMessageListService, AXConversationMessageRendererCopyHostComponent, AXConversationMessageRendererRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationModule, AXConversationNewDialogComponent, AXConversationPickerCaptionComponent, AXConversationPickerEmptyComponent, AXConversationPickerFooterComponent, AXConversationPickerHeaderComponent, AXConversationPickerShellComponent, AXConversationPickerToolbarComponent, AXConversationRealtimeApi, AXConversationRegistryService, AXConversationService, AXConversationSharedStorage, AXConversationSidebarComponent, AXConversationSidebarService, AXConversationStickerRendererComponent, AXConversationStickerTabComponent, AXConversationSystemRendererComponent, AXConversationTabRegistry, AXConversationTextRendererComponent, AXConversationUserApi, AXConversationVideoAttachmentComponent, AXConversationVideoFileTypeProvider, AXConversationVideoPickerComponent, AXConversationVideoRendererComponent, AXConversationVoiceFileTypeProvider, AXConversationVoiceRecorderComponent, AXConversationVoiceRendererComponent, AX_ALL_CONVERSATION_COMPOSER_TABS, AX_ALL_CONVERSATION_MEDIA_PICKERS, AX_CONVERSATION_AI_API_KEY, AX_CONVERSATION_AUDIO_CATALOG, AX_CONVERSATION_AUDIO_PRESENTATION, 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_CONFIG, AX_CONVERSATION_CONNECTION_ERRORS, AX_CONVERSATION_CONVERSATION_AVATAR_COMPONENT, AX_CONVERSATION_CURSOR_PREFIX, AX_CONVERSATION_DEFAULT_COMPOSER_ACTIONS, AX_CONVERSATION_DEFAULT_COMPOSER_TABS, AX_CONVERSATION_DEFAULT_CONVERSATION_ITEM_ACTIONS, AX_CONVERSATION_DEFAULT_CONVERSATION_TABS, AX_CONVERSATION_DEFAULT_INFO_BAR_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_RENDERERS, AX_CONVERSATION_ERRORS, AX_CONVERSATION_ERROR_HANDLER_CONFIG, AX_CONVERSATION_ERROR_MESSAGES, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_CATALOG, AX_CONVERSATION_FILE_ERRORS, AX_CONVERSATION_FILE_PRESENTATION, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_FILE_TYPES_READY, AX_CONVERSATION_IMAGE_CATALOG, AX_CONVERSATION_IMAGE_PRESENTATION, 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_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_ERRORS, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_CURSOR_PREFIX, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_ERRORS, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_MESSAGE_TYPE_FILE_TYPE, AX_CONVERSATION_REGISTRY_CONFIG, AX_CONVERSATION_STICKER_API_KEY, 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_URL_ERRORS, AX_CONVERSATION_USER_AVATAR_COMPONENT, AX_CONVERSATION_USER_ERRORS, AX_CONVERSATION_VIDEO_CATALOG, AX_CONVERSATION_VIDEO_PRESENTATION, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_CATALOG, AX_CONVERSATION_VOICE_PRESENTATION, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, abortPickerUploads, applyAudioLocalPreview, applyConversationFilters, applyFileLocalPreview, applyLocalPreview, applyVideoLocalPreview, applyVoiceLocalPreview, audioItemFromUpload, axConversationIndexedDbStorage, axConversationSharedStorage, bindMediaRendererContentState, buildMediaGalleryTiles, canShowRendererContentError, cleanupPickerUploads, conversationAudioUtilities, conversationFileUtilities, conversationImageUtilities, conversationVideoUtilities, conversationVoiceUtilities, copyWithFileTypeFallback, createConversationAudioFileType, createConversationFileFileType, createConversationImageFileType, createConversationVideoFileType, createConversationVoiceFileType, createLocalPreviewUrl, createObjectUrl, createPickerDragHandlers, createResolvedMediaUrlSignal, deleteUploadedPickerMedia, dismissComposerPickerHost, encodeConversationCursor, encodeMessageCursor, ensurePaginationDemoData,
|
|
6775
|
-
export type { AXConversation, AXConversationAiResponderConfig, AXConversationApiError, AXConversationAudioMediaItem, AXConversationAudioPayload, AXConversationAvatarComponents, AXConversationAvatarDisplay, AXConversationAvatarKind, AXConversationBlockReportReason, AXConversationCallEvent, AXConversationChatCursorKind, AXConversationCleanupPickerUploadsOptions, AXConversationComposerAction, AXConversationComposerActionComponent, AXConversationComposerActionContext, AXConversationComposerActiveComponent, AXConversationComposerPickerUploadItem, AXConversationComposerTab, AXConversationComposerTabFeature, AXConversationConfig, AXConversationConnectionEvent, AXConversationConnectionOptions, AXConversationConnectionStatus, AXConversationConversationAvatarComponent, AXConversationCreateData, AXConversationDeleteMessageCommand, AXConversationDropdownMenuItem, AXConversationEditMessageCommand, AXConversationError, AXConversationErrorCode, AXConversationErrorHandlerConfig, AXConversationErrorMessage, AXConversationErrorSeverity, AXConversationFeatures, AXConversationFileMediaItem, AXConversationFilePayload, AXConversationFilter, AXConversationFilters, AXConversationGroupedReaction, AXConversationImageMediaItem, AXConversationImagePayload, AXConversationIndexedDbMediaRecord, AXConversationInfoBarAction, AXConversationInfoBarActionComponent, AXConversationInfoBarActionContext, AXConversationInfoBarActiveBanner, AXConversationInfoBarActiveComponent, AXConversationInfoProfileField, AXConversationItemAction, AXConversationItemActionContext, AXConversationLink, AXConversationLinkPreview, AXConversationLoadMessagesResult, AXConversationLocationPayload, AXConversationMediaCategory, AXConversationMediaCategoryId, AXConversationMediaGalleryTile, AXConversationMediaItemFields, AXConversationMediaPickerFeature, AXConversationMention, AXConversationMessage, AXConversationMessageAction, AXConversationMessageActionContext, AXConversationMessageForwardData, AXConversationMessageInfoBarBannerComponent, AXConversationMessageListEmptyComponent, AXConversationMessagePayload, AXConversationMessageRenderer, AXConversationMessageRendererCapabilities, AXConversationMessageRendererComponent, AXConversationMessageRendererContentState, AXConversationMessageRendererState, AXConversationMessageSearchFilters, AXConversationMessageStatus, AXConversationMessageType, AXConversationMetadata, AXConversationNotificationEvent, AXConversationOptions, AXConversationPaginatedResult, AXConversationPagination, AXConversationPaginationState, AXConversationParsedChatCursor, AXConversationParticipant, AXConversationParticipantRole, AXConversationParticipantStatus, AXConversationParticipantUpdate, AXConversationPinnedMessage, AXConversationPlaybackBannerInputs, AXConversationPollOption, AXConversationPollPayload, AXConversationPresenceStatus, AXConversationPresenceUpdate, AXConversationReaction, AXConversationReadReceipt, AXConversationRegistryConfiguration, AXConversationRegistryItem, AXConversationSendMessageCommand, AXConversationSendMessageOptions, AXConversationSendMessageUploadSource, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationStickerPayload, AXConversationSystemPayload, AXConversationTab, AXConversationTextFormat, AXConversationTextPayload, AXConversationType, AXConversationTypingIndicator, AXConversationUpdateData, AXConversationUploadOptions, AXConversationUploaderFilePreview, AXConversationUploaderReference, AXConversationUploaderResult, AXConversationUserAvatarComponent, AXConversationUserProfile, AXConversationUserProfileUpdate, AXConversationUserRole, AXConversationUserSearchFilters, AXConversationValidationResult, AXConversationVideoMediaItem, AXConversationVideoPayload, AXConversationVoicePayload };
|
|
6868
|
+
export { AXConversationAiResponderService, AXConversationApi, AXConversationApiLoggerService, AXConversationAudioAttachmentComponent, AXConversationAudioFileTypeProvider, AXConversationAudioPickerComponent, AXConversationAudioRendererComponent, AXConversationBaseRegistry, AXConversationComposerActionRegistry, AXConversationComposerComponent, AXConversationComposerFileTypesProvider, AXConversationComposerPopupComponent, AXConversationComposerService, AXConversationComposerTabRegistry, AXConversationContainerComponent, AXConversationContainerDirective, AXConversationDateUtilsService, AXConversationEmojiTabComponent, AXConversationErrorHandlerService, AXConversationFallbackRendererComponent, AXConversationFileAttachmentComponent, AXConversationFileFileTypeProvider, AXConversationFilePickerComponent, AXConversationFileRendererComponent, AXConversationForwardMessageDialogComponent, AXConversationImageAttachmentComponent, AXConversationImageFileTypeProvider, AXConversationImagePickerComponent, AXConversationImageRendererComponent, AXConversationIndexedDbConversationApi, AXConversationIndexedDbMessageAiApi, AXConversationIndexedDbMessageApi, AXConversationIndexedDbRealtimeApi, AXConversationIndexedDbStorage, AXConversationIndexedDbStores, AXConversationIndexedDbUserApi, AXConversationInfiniteScrollDirective, AXConversationInfoBarActionRegistry, AXConversationInfoBarComponent, AXConversationInfoBarSearchComponent, AXConversationInfoBarService, AXConversationInfoMediaViewComponent, AXConversationInfoPanelComponent, AXConversationItemActionRegistry, AXConversationLocationPickerComponent, AXConversationLocationRendererComponent, AXConversationMediaPlaybackInfoBarBannerComponent, AXConversationMessageActionRegistry, AXConversationMessageApi, AXConversationMessageListComponent, AXConversationMessageListNoActiveDefaultComponent, AXConversationMessageListService, AXConversationMessageRendererCopyHostComponent, AXConversationMessageRendererRegistry, AXConversationMessageRendererStateComponent, AXConversationMessageUtilsService, AXConversationModule, AXConversationNewDialogComponent, AXConversationPickerCaptionComponent, AXConversationPickerEmptyComponent, AXConversationPickerFooterComponent, AXConversationPickerHeaderComponent, AXConversationPickerShellComponent, AXConversationPickerToolbarComponent, AXConversationRealtimeApi, AXConversationRegistryService, AXConversationService, AXConversationSharedStorage, AXConversationSidebarComponent, AXConversationSidebarService, AXConversationStickerRendererComponent, AXConversationStickerTabComponent, AXConversationSystemRendererComponent, AXConversationTabRegistry, AXConversationTextRendererComponent, AXConversationUserApi, AXConversationVideoAttachmentComponent, AXConversationVideoFileTypeProvider, AXConversationVideoPickerComponent, AXConversationVideoRendererComponent, AXConversationVoiceFileTypeProvider, AXConversationVoiceRecorderComponent, AXConversationVoiceRendererComponent, AX_ALL_CONVERSATION_COMPOSER_TABS, AX_ALL_CONVERSATION_MEDIA_PICKERS, AX_CONVERSATION_AI_API_KEY, AX_CONVERSATION_AUDIO_CATALOG, AX_CONVERSATION_AUDIO_PRESENTATION, 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_CONFIG, AX_CONVERSATION_CONNECTION_ERRORS, AX_CONVERSATION_CONVERSATION_AVATAR_COMPONENT, AX_CONVERSATION_CURSOR_PREFIX, AX_CONVERSATION_DEFAULT_COMPOSER_ACTIONS, AX_CONVERSATION_DEFAULT_COMPOSER_TABS, AX_CONVERSATION_DEFAULT_CONVERSATION_ITEM_ACTIONS, AX_CONVERSATION_DEFAULT_CONVERSATION_TABS, AX_CONVERSATION_DEFAULT_INFO_BAR_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_ACTIONS, AX_CONVERSATION_DEFAULT_MESSAGE_RENDERERS, AX_CONVERSATION_ERRORS, AX_CONVERSATION_ERROR_HANDLER_CONFIG, AX_CONVERSATION_ERROR_MESSAGES, AX_CONVERSATION_FALLBACK_RENDERER, AX_CONVERSATION_FILE_CATALOG, AX_CONVERSATION_FILE_ERRORS, AX_CONVERSATION_FILE_PRESENTATION, AX_CONVERSATION_FILE_RENDERER, AX_CONVERSATION_FILE_TYPES_READY, AX_CONVERSATION_IMAGE_CATALOG, AX_CONVERSATION_IMAGE_PRESENTATION, 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_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_ERRORS, AX_CONVERSATION_LOCATION_RENDERER, AX_CONVERSATION_MESSAGE_CURSOR_PREFIX, AX_CONVERSATION_MESSAGE_DELETE_ACTION, AX_CONVERSATION_MESSAGE_EDIT_ACTION, AX_CONVERSATION_MESSAGE_ERRORS, AX_CONVERSATION_MESSAGE_FORWARD_ACTION, AX_CONVERSATION_MESSAGE_REPLY_ACTION, AX_CONVERSATION_MESSAGE_TYPE_FILE_TYPE, AX_CONVERSATION_REGISTRY_CONFIG, AX_CONVERSATION_STICKER_API_KEY, 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_URL_ERRORS, AX_CONVERSATION_USER_AVATAR_COMPONENT, AX_CONVERSATION_USER_ERRORS, AX_CONVERSATION_VIDEO_CATALOG, AX_CONVERSATION_VIDEO_PRESENTATION, AX_CONVERSATION_VIDEO_RENDERER, AX_CONVERSATION_VOICE_CATALOG, AX_CONVERSATION_VOICE_PRESENTATION, AX_CONVERSATION_VOICE_RENDERER, AX_DEFAULT_CONVERSATION_CONFIG, AX_MESSAGE_PAGINATION_CONVERSATION_ID, abortPickerUploads, applyAudioLocalPreview, applyConversationFilters, applyFileLocalPreview, applyLocalPreview, applyVideoLocalPreview, applyVoiceLocalPreview, audioItemFromUpload, axConversationIndexedDbStorage, axConversationSharedStorage, bindMediaRendererContentState, buildMediaGalleryTiles, canShowRendererContentError, cleanupPickerUploads, conversationAudioUtilities, conversationFileUtilities, conversationImageUtilities, conversationVideoUtilities, conversationVoiceUtilities, copyWithFileTypeFallback, createConversationAudioFileType, createConversationFileFileType, createConversationImageFileType, createConversationVideoFileType, createConversationVoiceFileType, createLocalPreviewUrl, createObjectUrl, createPickerDragHandlers, createResolvedMediaUrlSignal, deleteUploadedPickerMedia, dismissComposerPickerHost, encodeConversationCursor, encodeMessageCursor, ensurePaginationDemoData, fetchConversationMediaMessages, fetchConversationMediaPage, fileItemFromUpload, filterMessagesByMediaCategory, filterSupplementalInfoPanelMessages, formatDuration, formatErrorMessage, formatFileByteSize, formatFileSize, formatMediaDuration, formatPickerValidationMessage, getConversationLastActivity, getConversationMediaCategories, getConversationMessagesNewestFirst, getConversationProfileFields, getErrorMessage, getMessageAudioItems, getMessageVideoItems, getPickerCancelUploadLabel, getPrivatePeerParticipant, getSortedConversationsForInbox, inferFileExtensionHintFromMessage, isAttachmentListCategory, isComposerTabEnabled, isGenericPrivateConversationTitle, isGridMediaCategory, isMediaPickerEnabled, isMessageDeliveryPending, isNonPersistableMediaUrl, isPickerItemReadyToSend, isUploadAborted, limitFilesToCapacity, mediaCopyText, mergeAudioUploadResult, mergeFileUploadResult, mergeInfoPanelMessages, mergeUploadResult, mergeVideoUploadResult, mergeVoiceUploadResult, mergeWithDefaults, messageContainsLink, normalizeAllConversationMessageIndexes, normalizeAudioPayload, normalizeFilePayload, normalizeImagePayload, normalizeMessagePayload, normalizeMessagePayloadAsync, normalizeVideoPayload, notifyMaxFilesCapacityExceeded, notifyPickerValidationErrors, openWithFileType, paginateChatNewestFirst, paginateChatOldestFirst, parseChatCursor, pickDisplayMediaUrl, pickerItemToMediaReference, pickerItemToUploadResult, provideConversation, provideConversationComposerFileTypes, provideConversationFileCatalog, registerChatMessage, reportMediaLoadError, resolveComposerMaxFiles, resolveConversationAvatarDisplay, resolveConversationComposerTabs, resolveConversationForViewer, resolveConversationMediaPickers, resolveConversationMessageFileType, resolveConversationTitleForViewer, resolveGalleryImageUrl, resolveImageDisplayUrl, resolveParticipantProfile, resolvePersistableMediaUrl, resolvePersistedThumbnailUrl, resolvePrivatePeerParticipant, resolvePrivatePeerUserId, resolveUserAvatarDisplay, resolveVideoThumbnailUrl, revokeObjectUrl, revokePickerBlobPreviews, sanitizeInput, seedPickerInitialFiles, seedSharedStorageInitialData, shouldUseUserAvatarForConversation, sortConversationMessageIds, syncPlaybackInfoBarBanner, toUploaderReference as toMediaItemUploaderReference, toUploaderReference$1 as toUploaderReference, unregisterChatMessage, uploadPickerFile, validateConversationId, validateEmail, validateLatitude, validateLongitude, validateMessagePayload, validateMessageText, validateMessageType, validateUrl, validateUserId, validateUserIds, videoItemFromUpload };
|
|
6869
|
+
export type { AXConversation, AXConversationAiResponderConfig, AXConversationApiError, AXConversationApiLogEntry, AXConversationApiName, AXConversationAudioMediaItem, AXConversationAudioPayload, AXConversationAvatarComponents, AXConversationAvatarDisplay, AXConversationAvatarKind, AXConversationBlockReportReason, AXConversationCallEvent, AXConversationChatCursorKind, AXConversationCleanupPickerUploadsOptions, AXConversationComposerAction, AXConversationComposerActionComponent, AXConversationComposerActionContext, AXConversationComposerActiveComponent, AXConversationComposerPickerUploadItem, AXConversationComposerTab, AXConversationComposerTabFeature, AXConversationConfig, AXConversationConnectionEvent, AXConversationConnectionOptions, AXConversationConnectionStatus, AXConversationConversationAvatarComponent, AXConversationCreateData, AXConversationDeleteMessageCommand, AXConversationDropdownMenuItem, AXConversationEditMessageCommand, AXConversationError, AXConversationErrorCode, AXConversationErrorHandlerConfig, AXConversationErrorMessage, AXConversationErrorSeverity, AXConversationFeatures, AXConversationFileMediaItem, AXConversationFilePayload, AXConversationFilter, AXConversationFilters, AXConversationGroupedReaction, AXConversationImageMediaItem, AXConversationImagePayload, AXConversationIndexedDbMediaRecord, AXConversationInfoBarAction, AXConversationInfoBarActionComponent, AXConversationInfoBarActionContext, AXConversationInfoBarActiveBanner, AXConversationInfoBarActiveComponent, AXConversationInfoProfileField, AXConversationItemAction, AXConversationItemActionContext, AXConversationLink, AXConversationLinkPreview, AXConversationLoadMessagesResult, AXConversationLocationPayload, AXConversationMediaCategory, AXConversationMediaCategoryId, AXConversationMediaGalleryTile, AXConversationMediaItemFields, AXConversationMediaPageResult, AXConversationMediaPickerFeature, AXConversationMention, AXConversationMessage, AXConversationMessageAction, AXConversationMessageActionContext, AXConversationMessageForwardData, AXConversationMessageInfoBarBannerComponent, AXConversationMessageListEmptyComponent, AXConversationMessagePayload, AXConversationMessageRenderer, AXConversationMessageRendererCapabilities, AXConversationMessageRendererComponent, AXConversationMessageRendererContentState, AXConversationMessageRendererState, AXConversationMessageSearchFilters, AXConversationMessageStatus, AXConversationMessageType, AXConversationMetadata, AXConversationNotificationEvent, AXConversationOptions, AXConversationPaginatedResult, AXConversationPagination, AXConversationPaginationState, AXConversationParsedChatCursor, AXConversationParticipant, AXConversationParticipantRole, AXConversationParticipantStatus, AXConversationParticipantUpdate, AXConversationPinnedMessage, AXConversationPlaybackBannerInputs, AXConversationPollOption, AXConversationPollPayload, AXConversationPresenceStatus, AXConversationPresenceUpdate, AXConversationReaction, AXConversationReadReceipt, AXConversationRegistryConfiguration, AXConversationRegistryItem, AXConversationSendMessageCommand, AXConversationSendMessageOptions, AXConversationSendMessageUploadSource, AXConversationSettings, AXConversationSettingsUpdate, AXConversationSort, AXConversationStatus, AXConversationStickerPayload, AXConversationSystemPayload, AXConversationTab, AXConversationTextFormat, AXConversationTextPayload, AXConversationType, AXConversationTypingIndicator, AXConversationUpdateData, AXConversationUploadOptions, AXConversationUploaderFilePreview, AXConversationUploaderReference, AXConversationUploaderResult, AXConversationUserAvatarComponent, AXConversationUserProfile, AXConversationUserProfileUpdate, AXConversationUserRole, AXConversationUserSearchFilters, AXConversationValidationResult, AXConversationVideoMediaItem, AXConversationVideoPayload, AXConversationVoicePayload };
|