@mobilon-dev/chotto 0.3.26 → 0.3.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.
Files changed (35) hide show
  1. package/dist/{CreateChat-B9CfoSZb.js → CreateChat-BwBQCc_I.js} +1 -1
  2. package/dist/{CreateChat2-ks_IikUi.js → CreateChat2-CyF5uUuO.js} +1 -1
  3. package/dist/{CreateDialog-DqXOFpdc.js → CreateDialog-BXoypGLs.js} +1 -1
  4. package/dist/{ModalVideoRecorder-DnncYgrj.js → ModalVideoRecorder-D5_csjI8.js} +1 -1
  5. package/dist/{SelectUser2-twrrtDkw.js → SelectUser2-D06UxtTo.js} +1 -1
  6. package/dist/chotto.css +1 -1
  7. package/dist/{index-CECDc5wp.js → index-BCeTdBth.js} +3512 -3056
  8. package/dist/themes/dark.css +1 -1
  9. package/dist/themes/default.css +1 -1
  10. package/dist/themes/green.css +1 -1
  11. package/dist/themes/mobilon1.css +1 -1
  12. package/dist/types/apps/data/chats.d.ts +63 -0
  13. package/dist/types/apps/data/messages.d.ts +741 -154
  14. package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationChannels.d.ts +1 -1
  15. package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +1 -0
  16. package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
  17. package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +0 -2
  18. package/dist/types/components/2_feed_elements/CallMessage/CallMessage.vue.d.ts +8 -2
  19. package/dist/types/components/2_feed_elements/CallMessage/icons/IncomingCallIcon.vue.d.ts +7 -0
  20. package/dist/types/components/2_feed_elements/CallMessage/icons/OutgoingCallIcon.vue.d.ts +7 -0
  21. package/dist/types/components/2_feed_elements/CallMessage/stories/CallMessage.stories.d.ts +0 -15
  22. package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +226 -0
  23. package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +0 -2
  24. package/dist/types/components/2_feed_elements/types/messages.d.ts +15 -1
  25. package/dist/types/components/3_compounds/ChatInput/ChatInput.vue.d.ts +22 -0
  26. package/dist/types/components/3_compounds/ChatInput/icons/SendIcon.vue.d.ts +7 -0
  27. package/dist/types/components/3_compounds/ChatInput/icons/index.d.ts +1 -0
  28. package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +2 -0
  29. package/dist/types/functions/getChannelAccentColor.d.ts +1 -0
  30. package/dist/types/functions/index.d.ts +1 -0
  31. package/dist/types/hooks/messages/index.d.ts +1 -0
  32. package/dist/types/hooks/messages/useChannelAccentColor.d.ts +35 -0
  33. package/dist/vuessages.es.js +62 -60
  34. package/dist/vuessages.umd.js +30 -30
  35. package/package.json +1 -1
@@ -3,34 +3,40 @@ export declare const messages: ({
3
3
  dialogId: string;
4
4
  type: string;
5
5
  direction: string;
6
+ position: string;
7
+ status: string;
8
+ time: string;
6
9
  messageId: string;
10
+ url: string;
7
11
  callDuration: string;
8
12
  isMissedCall: boolean;
9
13
  timestamp: string;
10
14
  header: string;
15
+ callParticipant: string;
11
16
  avatar: string;
12
17
  subText: string;
13
- transcript: {
14
- dialog: {
15
- time: string;
16
- text: string;
17
- position: string;
18
- }[];
19
- text?: undefined;
20
- };
18
+ actions: ({
19
+ action: string;
20
+ title: string;
21
+ disabled?: undefined;
22
+ } | {
23
+ action: string;
24
+ title: string;
25
+ disabled: boolean;
26
+ })[];
21
27
  text?: undefined;
22
- status?: undefined;
23
28
  embed?: undefined;
24
- actions?: undefined;
25
29
  views?: undefined;
26
- url?: undefined;
27
30
  alt?: undefined;
28
31
  reply?: undefined;
29
32
  filename?: undefined;
33
+ transcript?: undefined;
30
34
  linkPreview?: undefined;
31
35
  keyboard?: undefined;
32
36
  reactions?: undefined;
33
37
  statusMsg?: undefined;
38
+ callAttemptDuration?: undefined;
39
+ backgroundColor?: undefined;
34
40
  } | {
35
41
  chatId: number;
36
42
  dialogId: string;
@@ -46,20 +52,25 @@ export declare const messages: ({
46
52
  type: string;
47
53
  url: string;
48
54
  };
55
+ position?: undefined;
56
+ time?: undefined;
57
+ url?: undefined;
49
58
  callDuration?: undefined;
50
59
  isMissedCall?: undefined;
60
+ callParticipant?: undefined;
51
61
  avatar?: undefined;
52
- transcript?: undefined;
53
62
  actions?: undefined;
54
63
  views?: undefined;
55
- url?: undefined;
56
64
  alt?: undefined;
57
65
  reply?: undefined;
58
66
  filename?: undefined;
67
+ transcript?: undefined;
59
68
  linkPreview?: undefined;
60
69
  keyboard?: undefined;
61
70
  reactions?: undefined;
62
71
  statusMsg?: undefined;
72
+ callAttemptDuration?: undefined;
73
+ backgroundColor?: undefined;
63
74
  } | {
64
75
  chatId: number;
65
76
  dialogId: string;
@@ -80,20 +91,25 @@ export declare const messages: ({
80
91
  title: string;
81
92
  icon?: undefined;
82
93
  })[];
94
+ position?: undefined;
95
+ time?: undefined;
96
+ url?: undefined;
83
97
  callDuration?: undefined;
84
98
  isMissedCall?: undefined;
99
+ callParticipant?: undefined;
85
100
  avatar?: undefined;
86
- transcript?: undefined;
87
101
  embed?: undefined;
88
102
  views?: undefined;
89
- url?: undefined;
90
103
  alt?: undefined;
91
104
  reply?: undefined;
92
105
  filename?: undefined;
106
+ transcript?: undefined;
93
107
  linkPreview?: undefined;
94
108
  keyboard?: undefined;
95
109
  reactions?: undefined;
96
110
  statusMsg?: undefined;
111
+ callAttemptDuration?: undefined;
112
+ backgroundColor?: undefined;
97
113
  } | {
98
114
  chatId: number;
99
115
  dialogId: string;
@@ -101,25 +117,30 @@ export declare const messages: ({
101
117
  subText: string;
102
118
  avatar: string;
103
119
  direction?: undefined;
120
+ position?: undefined;
121
+ status?: undefined;
122
+ time?: undefined;
104
123
  messageId?: undefined;
124
+ url?: undefined;
105
125
  callDuration?: undefined;
106
126
  isMissedCall?: undefined;
107
127
  timestamp?: undefined;
108
128
  header?: undefined;
109
- transcript?: undefined;
129
+ callParticipant?: undefined;
130
+ actions?: undefined;
110
131
  text?: undefined;
111
- status?: undefined;
112
132
  embed?: undefined;
113
- actions?: undefined;
114
133
  views?: undefined;
115
- url?: undefined;
116
134
  alt?: undefined;
117
135
  reply?: undefined;
118
136
  filename?: undefined;
137
+ transcript?: undefined;
119
138
  linkPreview?: undefined;
120
139
  keyboard?: undefined;
121
140
  reactions?: undefined;
122
141
  statusMsg?: undefined;
142
+ callAttemptDuration?: undefined;
143
+ backgroundColor?: undefined;
123
144
  } | {
124
145
  chatId: number;
125
146
  dialogId: string;
@@ -140,20 +161,25 @@ export declare const messages: ({
140
161
  title: string;
141
162
  icon?: undefined;
142
163
  })[];
164
+ position?: undefined;
165
+ time?: undefined;
166
+ url?: undefined;
143
167
  callDuration?: undefined;
144
168
  isMissedCall?: undefined;
169
+ callParticipant?: undefined;
145
170
  avatar?: undefined;
146
171
  subText?: undefined;
147
- transcript?: undefined;
148
172
  embed?: undefined;
149
- url?: undefined;
150
173
  alt?: undefined;
151
174
  reply?: undefined;
152
175
  filename?: undefined;
176
+ transcript?: undefined;
153
177
  linkPreview?: undefined;
154
178
  keyboard?: undefined;
155
179
  reactions?: undefined;
156
180
  statusMsg?: undefined;
181
+ callAttemptDuration?: undefined;
182
+ backgroundColor?: undefined;
157
183
  } | {
158
184
  chatId: number;
159
185
  dialogId: string;
@@ -175,45 +201,24 @@ export declare const messages: ({
175
201
  title: string;
176
202
  icon?: undefined;
177
203
  })[];
204
+ position?: undefined;
205
+ time?: undefined;
178
206
  callDuration?: undefined;
179
207
  isMissedCall?: undefined;
208
+ callParticipant?: undefined;
180
209
  avatar?: undefined;
181
210
  subText?: undefined;
182
- transcript?: undefined;
183
211
  text?: undefined;
184
212
  embed?: undefined;
185
213
  reply?: undefined;
186
214
  filename?: undefined;
187
- linkPreview?: undefined;
188
- keyboard?: undefined;
189
- reactions?: undefined;
190
- statusMsg?: undefined;
191
- } | {
192
- chatId: number;
193
- dialogId: string;
194
- messageId: number;
195
- timestamp: number;
196
- type: string;
197
- text: string;
198
- direction?: undefined;
199
- callDuration?: undefined;
200
- isMissedCall?: undefined;
201
- header?: undefined;
202
- avatar?: undefined;
203
- subText?: undefined;
204
215
  transcript?: undefined;
205
- status?: undefined;
206
- embed?: undefined;
207
- actions?: undefined;
208
- views?: undefined;
209
- url?: undefined;
210
- alt?: undefined;
211
- reply?: undefined;
212
- filename?: undefined;
213
216
  linkPreview?: undefined;
214
217
  keyboard?: undefined;
215
218
  reactions?: undefined;
216
219
  statusMsg?: undefined;
220
+ callAttemptDuration?: undefined;
221
+ backgroundColor?: undefined;
217
222
  } | {
218
223
  chatId: number;
219
224
  dialogId: string;
@@ -239,21 +244,26 @@ export declare const messages: ({
239
244
  filename?: undefined;
240
245
  url?: undefined;
241
246
  };
247
+ position?: undefined;
248
+ time?: undefined;
249
+ url?: undefined;
242
250
  callDuration?: undefined;
243
251
  isMissedCall?: undefined;
244
252
  header?: undefined;
253
+ callParticipant?: undefined;
245
254
  avatar?: undefined;
246
255
  subText?: undefined;
247
- transcript?: undefined;
248
256
  embed?: undefined;
249
257
  views?: undefined;
250
- url?: undefined;
251
258
  alt?: undefined;
252
259
  filename?: undefined;
260
+ transcript?: undefined;
253
261
  linkPreview?: undefined;
254
262
  keyboard?: undefined;
255
263
  reactions?: undefined;
256
264
  statusMsg?: undefined;
265
+ callAttemptDuration?: undefined;
266
+ backgroundColor?: undefined;
257
267
  } | {
258
268
  chatId: number;
259
269
  dialogId: string;
@@ -270,22 +280,27 @@ export declare const messages: ({
270
280
  filename: string;
271
281
  url: string;
272
282
  };
283
+ position?: undefined;
284
+ time?: undefined;
285
+ url?: undefined;
273
286
  callDuration?: undefined;
274
287
  isMissedCall?: undefined;
275
288
  header?: undefined;
289
+ callParticipant?: undefined;
276
290
  avatar?: undefined;
277
291
  subText?: undefined;
278
- transcript?: undefined;
279
- embed?: undefined;
280
292
  actions?: undefined;
293
+ embed?: undefined;
281
294
  views?: undefined;
282
- url?: undefined;
283
295
  alt?: undefined;
284
296
  filename?: undefined;
297
+ transcript?: undefined;
285
298
  linkPreview?: undefined;
286
299
  keyboard?: undefined;
287
300
  reactions?: undefined;
288
301
  statusMsg?: undefined;
302
+ callAttemptDuration?: undefined;
303
+ backgroundColor?: undefined;
289
304
  } | {
290
305
  chatId: number;
291
306
  dialogId: string;
@@ -303,21 +318,26 @@ export declare const messages: ({
303
318
  url: string;
304
319
  filename?: undefined;
305
320
  };
321
+ position?: undefined;
322
+ time?: undefined;
306
323
  callDuration?: undefined;
307
324
  isMissedCall?: undefined;
308
325
  header?: undefined;
326
+ callParticipant?: undefined;
309
327
  avatar?: undefined;
310
328
  subText?: undefined;
311
- transcript?: undefined;
312
- embed?: undefined;
313
329
  actions?: undefined;
330
+ embed?: undefined;
314
331
  views?: undefined;
315
332
  alt?: undefined;
316
333
  filename?: undefined;
334
+ transcript?: undefined;
317
335
  linkPreview?: undefined;
318
336
  keyboard?: undefined;
319
337
  reactions?: undefined;
320
338
  statusMsg?: undefined;
339
+ callAttemptDuration?: undefined;
340
+ backgroundColor?: undefined;
321
341
  } | {
322
342
  chatId: number;
323
343
  dialogId: string;
@@ -328,22 +348,27 @@ export declare const messages: ({
328
348
  status: string;
329
349
  timestamp: string;
330
350
  text: string;
351
+ position?: undefined;
352
+ time?: undefined;
331
353
  callDuration?: undefined;
332
354
  isMissedCall?: undefined;
333
355
  header?: undefined;
356
+ callParticipant?: undefined;
334
357
  avatar?: undefined;
335
358
  subText?: undefined;
336
- transcript?: undefined;
337
- embed?: undefined;
338
359
  actions?: undefined;
360
+ embed?: undefined;
339
361
  views?: undefined;
340
362
  alt?: undefined;
341
363
  reply?: undefined;
342
364
  filename?: undefined;
365
+ transcript?: undefined;
343
366
  linkPreview?: undefined;
344
367
  keyboard?: undefined;
345
368
  reactions?: undefined;
346
369
  statusMsg?: undefined;
370
+ callAttemptDuration?: undefined;
371
+ backgroundColor?: undefined;
347
372
  } | {
348
373
  chatId: number;
349
374
  dialogId: string;
@@ -362,22 +387,27 @@ export declare const messages: ({
362
387
  })[];
363
388
  messageId: string;
364
389
  text: string;
390
+ position?: undefined;
391
+ time?: undefined;
392
+ url?: undefined;
365
393
  callDuration?: undefined;
366
394
  isMissedCall?: undefined;
367
395
  header?: undefined;
396
+ callParticipant?: undefined;
368
397
  avatar?: undefined;
369
398
  subText?: undefined;
370
- transcript?: undefined;
371
399
  embed?: undefined;
372
400
  views?: undefined;
373
- url?: undefined;
374
401
  alt?: undefined;
375
402
  reply?: undefined;
376
403
  filename?: undefined;
404
+ transcript?: undefined;
377
405
  linkPreview?: undefined;
378
406
  keyboard?: undefined;
379
407
  reactions?: undefined;
380
408
  statusMsg?: undefined;
409
+ callAttemptDuration?: undefined;
410
+ backgroundColor?: undefined;
381
411
  } | {
382
412
  chatId: number;
383
413
  dialogId: string;
@@ -394,22 +424,27 @@ export declare const messages: ({
394
424
  url: string;
395
425
  filename?: undefined;
396
426
  };
427
+ position?: undefined;
428
+ time?: undefined;
429
+ url?: undefined;
397
430
  callDuration?: undefined;
398
431
  isMissedCall?: undefined;
399
432
  header?: undefined;
433
+ callParticipant?: undefined;
400
434
  avatar?: undefined;
401
435
  subText?: undefined;
402
- transcript?: undefined;
403
- embed?: undefined;
404
436
  actions?: undefined;
437
+ embed?: undefined;
405
438
  views?: undefined;
406
- url?: undefined;
407
439
  alt?: undefined;
408
440
  filename?: undefined;
441
+ transcript?: undefined;
409
442
  linkPreview?: undefined;
410
443
  keyboard?: undefined;
411
444
  reactions?: undefined;
412
445
  statusMsg?: undefined;
446
+ callAttemptDuration?: undefined;
447
+ backgroundColor?: undefined;
413
448
  } | {
414
449
  chatId: number;
415
450
  dialogId: string;
@@ -428,20 +463,25 @@ export declare const messages: ({
428
463
  url: string;
429
464
  filename?: undefined;
430
465
  };
466
+ position?: undefined;
467
+ time?: undefined;
431
468
  callDuration?: undefined;
432
469
  isMissedCall?: undefined;
433
470
  header?: undefined;
471
+ callParticipant?: undefined;
434
472
  avatar?: undefined;
435
473
  subText?: undefined;
436
- transcript?: undefined;
437
- embed?: undefined;
438
474
  actions?: undefined;
475
+ embed?: undefined;
439
476
  views?: undefined;
440
477
  alt?: undefined;
478
+ transcript?: undefined;
441
479
  linkPreview?: undefined;
442
480
  keyboard?: undefined;
443
481
  reactions?: undefined;
444
482
  statusMsg?: undefined;
483
+ callAttemptDuration?: undefined;
484
+ backgroundColor?: undefined;
445
485
  } | {
446
486
  chatId: number;
447
487
  dialogId: string;
@@ -454,7 +494,6 @@ export declare const messages: ({
454
494
  timestamp: string;
455
495
  transcript: {
456
496
  text: string;
457
- dialog?: undefined;
458
497
  };
459
498
  messageId: string;
460
499
  actions: {
@@ -468,9 +507,12 @@ export declare const messages: ({
468
507
  url: string;
469
508
  filename?: undefined;
470
509
  };
510
+ position?: undefined;
511
+ time?: undefined;
471
512
  callDuration?: undefined;
472
513
  isMissedCall?: undefined;
473
514
  header?: undefined;
515
+ callParticipant?: undefined;
474
516
  avatar?: undefined;
475
517
  embed?: undefined;
476
518
  views?: undefined;
@@ -480,6 +522,8 @@ export declare const messages: ({
480
522
  keyboard?: undefined;
481
523
  reactions?: undefined;
482
524
  statusMsg?: undefined;
525
+ callAttemptDuration?: undefined;
526
+ backgroundColor?: undefined;
483
527
  } | {
484
528
  chatId: number;
485
529
  dialogId: string;
@@ -495,22 +539,27 @@ export declare const messages: ({
495
539
  url: string;
496
540
  description: string;
497
541
  };
542
+ position?: undefined;
543
+ time?: undefined;
544
+ url?: undefined;
498
545
  callDuration?: undefined;
499
546
  isMissedCall?: undefined;
500
547
  header?: undefined;
548
+ callParticipant?: undefined;
501
549
  avatar?: undefined;
502
550
  subText?: undefined;
503
- transcript?: undefined;
504
- embed?: undefined;
505
551
  actions?: undefined;
552
+ embed?: undefined;
506
553
  views?: undefined;
507
- url?: undefined;
508
554
  alt?: undefined;
509
555
  reply?: undefined;
510
556
  filename?: undefined;
557
+ transcript?: undefined;
511
558
  keyboard?: undefined;
512
559
  reactions?: undefined;
513
560
  statusMsg?: undefined;
561
+ callAttemptDuration?: undefined;
562
+ backgroundColor?: undefined;
514
563
  } | {
515
564
  chatId: number;
516
565
  dialogId: string;
@@ -533,22 +582,27 @@ export declare const messages: ({
533
582
  color: string;
534
583
  order: number;
535
584
  })[];
585
+ position?: undefined;
586
+ time?: undefined;
587
+ url?: undefined;
536
588
  callDuration?: undefined;
537
589
  isMissedCall?: undefined;
538
590
  header?: undefined;
591
+ callParticipant?: undefined;
539
592
  avatar?: undefined;
540
593
  subText?: undefined;
541
- transcript?: undefined;
542
- embed?: undefined;
543
594
  actions?: undefined;
595
+ embed?: undefined;
544
596
  views?: undefined;
545
- url?: undefined;
546
597
  alt?: undefined;
547
598
  reply?: undefined;
548
599
  filename?: undefined;
600
+ transcript?: undefined;
549
601
  linkPreview?: undefined;
550
602
  reactions?: undefined;
551
603
  statusMsg?: undefined;
604
+ callAttemptDuration?: undefined;
605
+ backgroundColor?: undefined;
552
606
  } | {
553
607
  chatId: number;
554
608
  type: string;
@@ -570,19 +624,24 @@ export declare const messages: ({
570
624
  icon?: undefined;
571
625
  })[];
572
626
  dialogId?: undefined;
627
+ position?: undefined;
628
+ time?: undefined;
573
629
  callDuration?: undefined;
574
630
  isMissedCall?: undefined;
631
+ callParticipant?: undefined;
575
632
  avatar?: undefined;
576
633
  subText?: undefined;
577
- transcript?: undefined;
578
634
  text?: undefined;
579
635
  embed?: undefined;
580
636
  reply?: undefined;
581
637
  filename?: undefined;
638
+ transcript?: undefined;
582
639
  linkPreview?: undefined;
583
640
  keyboard?: undefined;
584
641
  reactions?: undefined;
585
642
  statusMsg?: undefined;
643
+ callAttemptDuration?: undefined;
644
+ backgroundColor?: undefined;
586
645
  } | {
587
646
  chatId: number;
588
647
  type: string;
@@ -602,21 +661,26 @@ export declare const messages: ({
602
661
  icon?: undefined;
603
662
  })[];
604
663
  dialogId?: undefined;
664
+ position?: undefined;
665
+ time?: undefined;
605
666
  messageId?: undefined;
606
667
  callDuration?: undefined;
607
668
  isMissedCall?: undefined;
669
+ callParticipant?: undefined;
608
670
  avatar?: undefined;
609
671
  subText?: undefined;
610
- transcript?: undefined;
611
672
  embed?: undefined;
612
673
  views?: undefined;
613
674
  alt?: undefined;
614
675
  reply?: undefined;
615
676
  filename?: undefined;
677
+ transcript?: undefined;
616
678
  linkPreview?: undefined;
617
679
  keyboard?: undefined;
618
680
  reactions?: undefined;
619
681
  statusMsg?: undefined;
682
+ callAttemptDuration?: undefined;
683
+ backgroundColor?: undefined;
620
684
  } | {
621
685
  chatId: number;
622
686
  type: string;
@@ -626,23 +690,28 @@ export declare const messages: ({
626
690
  timestamp: string;
627
691
  header: string;
628
692
  dialogId?: undefined;
693
+ position?: undefined;
694
+ time?: undefined;
629
695
  messageId?: undefined;
630
696
  callDuration?: undefined;
631
697
  isMissedCall?: undefined;
698
+ callParticipant?: undefined;
632
699
  avatar?: undefined;
633
700
  subText?: undefined;
634
- transcript?: undefined;
701
+ actions?: undefined;
635
702
  text?: undefined;
636
703
  embed?: undefined;
637
- actions?: undefined;
638
704
  views?: undefined;
639
705
  alt?: undefined;
640
706
  reply?: undefined;
641
707
  filename?: undefined;
708
+ transcript?: undefined;
642
709
  linkPreview?: undefined;
643
710
  keyboard?: undefined;
644
711
  reactions?: undefined;
645
712
  statusMsg?: undefined;
713
+ callAttemptDuration?: undefined;
714
+ backgroundColor?: undefined;
646
715
  } | {
647
716
  chatId: number;
648
717
  messageId: number;
@@ -651,24 +720,29 @@ export declare const messages: ({
651
720
  text: string;
652
721
  dialogId?: undefined;
653
722
  direction?: undefined;
723
+ position?: undefined;
724
+ status?: undefined;
725
+ time?: undefined;
726
+ url?: undefined;
654
727
  callDuration?: undefined;
655
728
  isMissedCall?: undefined;
656
729
  header?: undefined;
730
+ callParticipant?: undefined;
657
731
  avatar?: undefined;
658
732
  subText?: undefined;
659
- transcript?: undefined;
660
- status?: undefined;
661
- embed?: undefined;
662
733
  actions?: undefined;
734
+ embed?: undefined;
663
735
  views?: undefined;
664
- url?: undefined;
665
736
  alt?: undefined;
666
737
  reply?: undefined;
667
738
  filename?: undefined;
739
+ transcript?: undefined;
668
740
  linkPreview?: undefined;
669
741
  keyboard?: undefined;
670
742
  reactions?: undefined;
671
743
  statusMsg?: undefined;
744
+ callAttemptDuration?: undefined;
745
+ backgroundColor?: undefined;
672
746
  } | {
673
747
  chatId: number;
674
748
  type: string;
@@ -684,20 +758,25 @@ export declare const messages: ({
684
758
  header: string;
685
759
  text: string;
686
760
  dialogId?: undefined;
761
+ position?: undefined;
762
+ time?: undefined;
687
763
  messageId?: undefined;
688
764
  callDuration?: undefined;
689
765
  isMissedCall?: undefined;
766
+ callParticipant?: undefined;
690
767
  avatar?: undefined;
691
768
  subText?: undefined;
692
- transcript?: undefined;
693
769
  embed?: undefined;
694
770
  views?: undefined;
695
771
  alt?: undefined;
696
772
  reply?: undefined;
773
+ transcript?: undefined;
697
774
  linkPreview?: undefined;
698
775
  keyboard?: undefined;
699
776
  reactions?: undefined;
700
777
  statusMsg?: undefined;
778
+ callAttemptDuration?: undefined;
779
+ backgroundColor?: undefined;
701
780
  } | {
702
781
  chatId: number;
703
782
  header: string;
@@ -707,23 +786,28 @@ export declare const messages: ({
707
786
  status: string;
708
787
  timestamp: string;
709
788
  dialogId?: undefined;
789
+ position?: undefined;
790
+ time?: undefined;
710
791
  messageId?: undefined;
792
+ url?: undefined;
711
793
  callDuration?: undefined;
712
794
  isMissedCall?: undefined;
795
+ callParticipant?: undefined;
713
796
  avatar?: undefined;
714
797
  subText?: undefined;
715
- transcript?: undefined;
716
- embed?: undefined;
717
798
  actions?: undefined;
799
+ embed?: undefined;
718
800
  views?: undefined;
719
- url?: undefined;
720
801
  alt?: undefined;
721
802
  reply?: undefined;
722
803
  filename?: undefined;
804
+ transcript?: undefined;
723
805
  linkPreview?: undefined;
724
806
  keyboard?: undefined;
725
807
  reactions?: undefined;
726
808
  statusMsg?: undefined;
809
+ callAttemptDuration?: undefined;
810
+ backgroundColor?: undefined;
727
811
  } | {
728
812
  chatId: number;
729
813
  type: string;
@@ -735,7 +819,6 @@ export declare const messages: ({
735
819
  timestamp: string;
736
820
  transcript: {
737
821
  text: string;
738
- dialog?: undefined;
739
822
  };
740
823
  header: string;
741
824
  actions: {
@@ -743,9 +826,12 @@ export declare const messages: ({
743
826
  title: string;
744
827
  }[];
745
828
  dialogId?: undefined;
829
+ position?: undefined;
830
+ time?: undefined;
746
831
  messageId?: undefined;
747
832
  callDuration?: undefined;
748
833
  isMissedCall?: undefined;
834
+ callParticipant?: undefined;
749
835
  avatar?: undefined;
750
836
  embed?: undefined;
751
837
  views?: undefined;
@@ -756,6 +842,8 @@ export declare const messages: ({
756
842
  keyboard?: undefined;
757
843
  reactions?: undefined;
758
844
  statusMsg?: undefined;
845
+ callAttemptDuration?: undefined;
846
+ backgroundColor?: undefined;
759
847
  } | {
760
848
  chatId: number;
761
849
  type: string;
@@ -771,20 +859,25 @@ export declare const messages: ({
771
859
  title: string;
772
860
  }[];
773
861
  dialogId?: undefined;
862
+ position?: undefined;
863
+ time?: undefined;
774
864
  messageId?: undefined;
775
865
  callDuration?: undefined;
776
866
  isMissedCall?: undefined;
867
+ callParticipant?: undefined;
777
868
  avatar?: undefined;
778
- transcript?: undefined;
779
869
  embed?: undefined;
780
870
  views?: undefined;
781
871
  alt?: undefined;
782
872
  reply?: undefined;
783
873
  filename?: undefined;
874
+ transcript?: undefined;
784
875
  linkPreview?: undefined;
785
876
  keyboard?: undefined;
786
877
  reactions?: undefined;
787
878
  statusMsg?: undefined;
879
+ callAttemptDuration?: undefined;
880
+ backgroundColor?: undefined;
788
881
  } | {
789
882
  chatId: number;
790
883
  type: string;
@@ -796,21 +889,26 @@ export declare const messages: ({
796
889
  subText: string;
797
890
  timestamp: string;
798
891
  dialogId?: undefined;
892
+ position?: undefined;
893
+ status?: undefined;
894
+ time?: undefined;
799
895
  messageId?: undefined;
800
896
  callDuration?: undefined;
801
897
  isMissedCall?: undefined;
898
+ callParticipant?: undefined;
802
899
  avatar?: undefined;
803
- transcript?: undefined;
804
- status?: undefined;
805
- embed?: undefined;
806
900
  actions?: undefined;
901
+ embed?: undefined;
807
902
  views?: undefined;
808
903
  reply?: undefined;
809
904
  filename?: undefined;
905
+ transcript?: undefined;
810
906
  linkPreview?: undefined;
811
907
  keyboard?: undefined;
812
908
  reactions?: undefined;
813
909
  statusMsg?: undefined;
910
+ callAttemptDuration?: undefined;
911
+ backgroundColor?: undefined;
814
912
  } | {
815
913
  chatId: number;
816
914
  type: string;
@@ -820,23 +918,28 @@ export declare const messages: ({
820
918
  status: string;
821
919
  timestamp: string;
822
920
  dialogId?: undefined;
921
+ position?: undefined;
922
+ time?: undefined;
823
923
  messageId?: undefined;
824
924
  callDuration?: undefined;
825
925
  isMissedCall?: undefined;
826
926
  header?: undefined;
927
+ callParticipant?: undefined;
827
928
  avatar?: undefined;
828
929
  subText?: undefined;
829
- transcript?: undefined;
830
- embed?: undefined;
831
930
  actions?: undefined;
931
+ embed?: undefined;
832
932
  views?: undefined;
833
933
  alt?: undefined;
834
934
  reply?: undefined;
835
935
  filename?: undefined;
936
+ transcript?: undefined;
836
937
  linkPreview?: undefined;
837
938
  keyboard?: undefined;
838
939
  reactions?: undefined;
839
940
  statusMsg?: undefined;
941
+ callAttemptDuration?: undefined;
942
+ backgroundColor?: undefined;
840
943
  } | {
841
944
  chatId: number;
842
945
  type: string;
@@ -845,24 +948,29 @@ export declare const messages: ({
845
948
  direction: string;
846
949
  timestamp: string;
847
950
  dialogId?: undefined;
951
+ position?: undefined;
952
+ status?: undefined;
953
+ time?: undefined;
848
954
  messageId?: undefined;
849
955
  callDuration?: undefined;
850
956
  isMissedCall?: undefined;
851
957
  header?: undefined;
958
+ callParticipant?: undefined;
852
959
  avatar?: undefined;
853
960
  subText?: undefined;
854
- transcript?: undefined;
961
+ actions?: undefined;
855
962
  text?: undefined;
856
- status?: undefined;
857
963
  embed?: undefined;
858
- actions?: undefined;
859
964
  views?: undefined;
860
965
  reply?: undefined;
861
966
  filename?: undefined;
967
+ transcript?: undefined;
862
968
  linkPreview?: undefined;
863
969
  keyboard?: undefined;
864
970
  reactions?: undefined;
865
971
  statusMsg?: undefined;
972
+ callAttemptDuration?: undefined;
973
+ backgroundColor?: undefined;
866
974
  } | {
867
975
  chatId: number;
868
976
  type: string;
@@ -873,17 +981,19 @@ export declare const messages: ({
873
981
  text: string;
874
982
  transcript: {
875
983
  text: string;
876
- dialog?: undefined;
877
984
  };
878
985
  dialogId?: undefined;
986
+ position?: undefined;
987
+ time?: undefined;
879
988
  messageId?: undefined;
880
989
  callDuration?: undefined;
881
990
  isMissedCall?: undefined;
882
991
  header?: undefined;
992
+ callParticipant?: undefined;
883
993
  avatar?: undefined;
884
994
  subText?: undefined;
885
- embed?: undefined;
886
995
  actions?: undefined;
996
+ embed?: undefined;
887
997
  views?: undefined;
888
998
  alt?: undefined;
889
999
  reply?: undefined;
@@ -892,6 +1002,8 @@ export declare const messages: ({
892
1002
  keyboard?: undefined;
893
1003
  reactions?: undefined;
894
1004
  statusMsg?: undefined;
1005
+ callAttemptDuration?: undefined;
1006
+ backgroundColor?: undefined;
895
1007
  } | {
896
1008
  chatId: number;
897
1009
  type: string;
@@ -900,24 +1012,29 @@ export declare const messages: ({
900
1012
  status: string;
901
1013
  timestamp: string;
902
1014
  dialogId?: undefined;
1015
+ position?: undefined;
1016
+ time?: undefined;
903
1017
  messageId?: undefined;
1018
+ url?: undefined;
904
1019
  callDuration?: undefined;
905
1020
  isMissedCall?: undefined;
906
1021
  header?: undefined;
1022
+ callParticipant?: undefined;
907
1023
  avatar?: undefined;
908
1024
  subText?: undefined;
909
- transcript?: undefined;
910
- embed?: undefined;
911
1025
  actions?: undefined;
1026
+ embed?: undefined;
912
1027
  views?: undefined;
913
- url?: undefined;
914
1028
  alt?: undefined;
915
1029
  reply?: undefined;
916
1030
  filename?: undefined;
1031
+ transcript?: undefined;
917
1032
  linkPreview?: undefined;
918
1033
  keyboard?: undefined;
919
1034
  reactions?: undefined;
920
1035
  statusMsg?: undefined;
1036
+ callAttemptDuration?: undefined;
1037
+ backgroundColor?: undefined;
921
1038
  } | {
922
1039
  chatId: number;
923
1040
  type: string;
@@ -927,23 +1044,28 @@ export declare const messages: ({
927
1044
  timestamp: string;
928
1045
  text: string;
929
1046
  dialogId?: undefined;
1047
+ position?: undefined;
1048
+ status?: undefined;
1049
+ time?: undefined;
930
1050
  messageId?: undefined;
931
1051
  callDuration?: undefined;
932
1052
  isMissedCall?: undefined;
933
1053
  header?: undefined;
1054
+ callParticipant?: undefined;
934
1055
  avatar?: undefined;
935
1056
  subText?: undefined;
936
- transcript?: undefined;
937
- status?: undefined;
938
- embed?: undefined;
939
1057
  actions?: undefined;
1058
+ embed?: undefined;
940
1059
  views?: undefined;
941
1060
  reply?: undefined;
942
1061
  filename?: undefined;
1062
+ transcript?: undefined;
943
1063
  linkPreview?: undefined;
944
1064
  keyboard?: undefined;
945
1065
  reactions?: undefined;
946
1066
  statusMsg?: undefined;
1067
+ callAttemptDuration?: undefined;
1068
+ backgroundColor?: undefined;
947
1069
  } | {
948
1070
  chatId: number;
949
1071
  type: string;
@@ -958,21 +1080,26 @@ export declare const messages: ({
958
1080
  }[];
959
1081
  text: string;
960
1082
  dialogId?: undefined;
1083
+ position?: undefined;
1084
+ time?: undefined;
961
1085
  messageId?: undefined;
962
1086
  callDuration?: undefined;
963
1087
  isMissedCall?: undefined;
964
1088
  header?: undefined;
1089
+ callParticipant?: undefined;
965
1090
  avatar?: undefined;
966
1091
  subText?: undefined;
967
- transcript?: undefined;
968
1092
  embed?: undefined;
969
1093
  views?: undefined;
970
1094
  alt?: undefined;
971
1095
  reply?: undefined;
1096
+ transcript?: undefined;
972
1097
  linkPreview?: undefined;
973
1098
  keyboard?: undefined;
974
1099
  reactions?: undefined;
975
1100
  statusMsg?: undefined;
1101
+ callAttemptDuration?: undefined;
1102
+ backgroundColor?: undefined;
976
1103
  } | {
977
1104
  chatId: number;
978
1105
  type: string;
@@ -992,20 +1119,25 @@ export declare const messages: ({
992
1119
  order: number;
993
1120
  }[];
994
1121
  dialogId?: undefined;
1122
+ position?: undefined;
1123
+ time?: undefined;
995
1124
  messageId?: undefined;
996
1125
  callDuration?: undefined;
997
1126
  isMissedCall?: undefined;
998
1127
  header?: undefined;
1128
+ callParticipant?: undefined;
999
1129
  avatar?: undefined;
1000
1130
  subText?: undefined;
1001
- transcript?: undefined;
1002
1131
  embed?: undefined;
1003
1132
  views?: undefined;
1004
1133
  alt?: undefined;
1005
1134
  reply?: undefined;
1135
+ transcript?: undefined;
1006
1136
  linkPreview?: undefined;
1007
1137
  reactions?: undefined;
1008
1138
  statusMsg?: undefined;
1139
+ callAttemptDuration?: undefined;
1140
+ backgroundColor?: undefined;
1009
1141
  } | {
1010
1142
  chatId: number;
1011
1143
  dialogId: string;
@@ -1027,19 +1159,24 @@ export declare const messages: ({
1027
1159
  title: string;
1028
1160
  icon?: undefined;
1029
1161
  })[];
1162
+ position?: undefined;
1163
+ time?: undefined;
1164
+ url?: undefined;
1030
1165
  callDuration?: undefined;
1031
1166
  isMissedCall?: undefined;
1032
- transcript?: undefined;
1167
+ callParticipant?: undefined;
1033
1168
  embed?: undefined;
1034
1169
  views?: undefined;
1035
- url?: undefined;
1036
1170
  alt?: undefined;
1037
1171
  reply?: undefined;
1038
1172
  filename?: undefined;
1173
+ transcript?: undefined;
1039
1174
  linkPreview?: undefined;
1040
1175
  keyboard?: undefined;
1041
1176
  reactions?: undefined;
1042
1177
  statusMsg?: undefined;
1178
+ callAttemptDuration?: undefined;
1179
+ backgroundColor?: undefined;
1043
1180
  } | {
1044
1181
  chatId: number;
1045
1182
  dialogId: string;
@@ -1052,20 +1189,25 @@ export declare const messages: ({
1052
1189
  avatar: string;
1053
1190
  timestamp: string;
1054
1191
  header: string;
1192
+ position?: undefined;
1193
+ time?: undefined;
1194
+ url?: undefined;
1055
1195
  callDuration?: undefined;
1056
1196
  isMissedCall?: undefined;
1057
- transcript?: undefined;
1058
- embed?: undefined;
1197
+ callParticipant?: undefined;
1059
1198
  actions?: undefined;
1199
+ embed?: undefined;
1060
1200
  views?: undefined;
1061
- url?: undefined;
1062
1201
  alt?: undefined;
1063
1202
  reply?: undefined;
1064
1203
  filename?: undefined;
1204
+ transcript?: undefined;
1065
1205
  linkPreview?: undefined;
1066
1206
  keyboard?: undefined;
1067
1207
  reactions?: undefined;
1068
1208
  statusMsg?: undefined;
1209
+ callAttemptDuration?: undefined;
1210
+ backgroundColor?: undefined;
1069
1211
  } | {
1070
1212
  chatId: number;
1071
1213
  dialogId: string;
@@ -1080,18 +1222,23 @@ export declare const messages: ({
1080
1222
  timestamp: string;
1081
1223
  header: string;
1082
1224
  text: string;
1225
+ position?: undefined;
1226
+ time?: undefined;
1083
1227
  callDuration?: undefined;
1084
1228
  isMissedCall?: undefined;
1085
- transcript?: undefined;
1086
- embed?: undefined;
1229
+ callParticipant?: undefined;
1087
1230
  actions?: undefined;
1231
+ embed?: undefined;
1088
1232
  views?: undefined;
1089
1233
  alt?: undefined;
1090
1234
  reply?: undefined;
1235
+ transcript?: undefined;
1091
1236
  linkPreview?: undefined;
1092
1237
  keyboard?: undefined;
1093
1238
  reactions?: undefined;
1094
1239
  statusMsg?: undefined;
1240
+ callAttemptDuration?: undefined;
1241
+ backgroundColor?: undefined;
1095
1242
  } | {
1096
1243
  chatId: number;
1097
1244
  dialogId: string;
@@ -1119,18 +1266,23 @@ export declare const messages: ({
1119
1266
  }[];
1120
1267
  meta?: undefined;
1121
1268
  };
1269
+ position?: undefined;
1270
+ time?: undefined;
1271
+ url?: undefined;
1122
1272
  callDuration?: undefined;
1123
1273
  isMissedCall?: undefined;
1124
- transcript?: undefined;
1125
- embed?: undefined;
1274
+ callParticipant?: undefined;
1126
1275
  actions?: undefined;
1276
+ embed?: undefined;
1127
1277
  views?: undefined;
1128
- url?: undefined;
1129
1278
  alt?: undefined;
1130
1279
  filename?: undefined;
1280
+ transcript?: undefined;
1131
1281
  linkPreview?: undefined;
1132
1282
  keyboard?: undefined;
1133
1283
  statusMsg?: undefined;
1284
+ callAttemptDuration?: undefined;
1285
+ backgroundColor?: undefined;
1134
1286
  } | {
1135
1287
  chatId: number;
1136
1288
  dialogId: string;
@@ -1155,17 +1307,22 @@ export declare const messages: ({
1155
1307
  mode: string;
1156
1308
  };
1157
1309
  };
1310
+ position?: undefined;
1311
+ time?: undefined;
1158
1312
  callDuration?: undefined;
1159
1313
  isMissedCall?: undefined;
1160
- transcript?: undefined;
1161
- embed?: undefined;
1314
+ callParticipant?: undefined;
1162
1315
  actions?: undefined;
1316
+ embed?: undefined;
1163
1317
  views?: undefined;
1164
1318
  alt?: undefined;
1165
1319
  reply?: undefined;
1320
+ transcript?: undefined;
1166
1321
  linkPreview?: undefined;
1167
1322
  keyboard?: undefined;
1168
1323
  statusMsg?: undefined;
1324
+ callAttemptDuration?: undefined;
1325
+ backgroundColor?: undefined;
1169
1326
  } | {
1170
1327
  chatId: number;
1171
1328
  dialogId: string;
@@ -1182,19 +1339,24 @@ export declare const messages: ({
1182
1339
  type: string;
1183
1340
  url: string;
1184
1341
  };
1342
+ position?: undefined;
1343
+ time?: undefined;
1344
+ url?: undefined;
1185
1345
  callDuration?: undefined;
1186
1346
  isMissedCall?: undefined;
1187
- transcript?: undefined;
1347
+ callParticipant?: undefined;
1188
1348
  actions?: undefined;
1189
1349
  views?: undefined;
1190
- url?: undefined;
1191
1350
  alt?: undefined;
1192
1351
  reply?: undefined;
1193
1352
  filename?: undefined;
1353
+ transcript?: undefined;
1194
1354
  linkPreview?: undefined;
1195
1355
  keyboard?: undefined;
1196
1356
  reactions?: undefined;
1197
1357
  statusMsg?: undefined;
1358
+ callAttemptDuration?: undefined;
1359
+ backgroundColor?: undefined;
1198
1360
  } | {
1199
1361
  chatId: number;
1200
1362
  dialogId: string;
@@ -1221,18 +1383,23 @@ export declare const messages: ({
1221
1383
  mode: string;
1222
1384
  };
1223
1385
  };
1386
+ position?: undefined;
1387
+ time?: undefined;
1388
+ url?: undefined;
1224
1389
  callDuration?: undefined;
1225
1390
  isMissedCall?: undefined;
1226
- transcript?: undefined;
1391
+ callParticipant?: undefined;
1227
1392
  actions?: undefined;
1228
1393
  views?: undefined;
1229
- url?: undefined;
1230
1394
  alt?: undefined;
1231
1395
  reply?: undefined;
1232
1396
  filename?: undefined;
1397
+ transcript?: undefined;
1233
1398
  linkPreview?: undefined;
1234
1399
  keyboard?: undefined;
1235
1400
  statusMsg?: undefined;
1401
+ callAttemptDuration?: undefined;
1402
+ backgroundColor?: undefined;
1236
1403
  } | {
1237
1404
  chatId: number;
1238
1405
  dialogId: string;
@@ -1246,19 +1413,24 @@ export declare const messages: ({
1246
1413
  header: string;
1247
1414
  subText: string;
1248
1415
  avatar: string;
1416
+ position?: undefined;
1417
+ time?: undefined;
1418
+ url?: undefined;
1249
1419
  callDuration?: undefined;
1250
1420
  isMissedCall?: undefined;
1251
- transcript?: undefined;
1252
- embed?: undefined;
1421
+ callParticipant?: undefined;
1253
1422
  actions?: undefined;
1423
+ embed?: undefined;
1254
1424
  views?: undefined;
1255
- url?: undefined;
1256
1425
  alt?: undefined;
1257
1426
  reply?: undefined;
1258
1427
  filename?: undefined;
1428
+ transcript?: undefined;
1259
1429
  linkPreview?: undefined;
1260
1430
  keyboard?: undefined;
1261
1431
  reactions?: undefined;
1432
+ callAttemptDuration?: undefined;
1433
+ backgroundColor?: undefined;
1262
1434
  } | {
1263
1435
  chatId: number;
1264
1436
  dialogId: string;
@@ -1272,19 +1444,24 @@ export declare const messages: ({
1272
1444
  header: string;
1273
1445
  subText: string;
1274
1446
  avatar: string;
1447
+ position?: undefined;
1448
+ time?: undefined;
1275
1449
  callDuration?: undefined;
1276
1450
  isMissedCall?: undefined;
1277
- transcript?: undefined;
1451
+ callParticipant?: undefined;
1452
+ actions?: undefined;
1278
1453
  text?: undefined;
1279
1454
  embed?: undefined;
1280
- actions?: undefined;
1281
1455
  views?: undefined;
1282
1456
  alt?: undefined;
1283
1457
  reply?: undefined;
1458
+ transcript?: undefined;
1284
1459
  linkPreview?: undefined;
1285
1460
  keyboard?: undefined;
1286
1461
  reactions?: undefined;
1287
1462
  statusMsg?: undefined;
1463
+ callAttemptDuration?: undefined;
1464
+ backgroundColor?: undefined;
1288
1465
  } | {
1289
1466
  chatId: number;
1290
1467
  dialogId: string;
@@ -1305,18 +1482,23 @@ export declare const messages: ({
1305
1482
  filename: string;
1306
1483
  url?: undefined;
1307
1484
  };
1485
+ position?: undefined;
1486
+ time?: undefined;
1487
+ url?: undefined;
1308
1488
  callDuration?: undefined;
1309
1489
  isMissedCall?: undefined;
1310
- transcript?: undefined;
1311
- embed?: undefined;
1490
+ callParticipant?: undefined;
1312
1491
  actions?: undefined;
1492
+ embed?: undefined;
1313
1493
  views?: undefined;
1314
- url?: undefined;
1315
1494
  alt?: undefined;
1316
1495
  filename?: undefined;
1496
+ transcript?: undefined;
1317
1497
  linkPreview?: undefined;
1318
1498
  keyboard?: undefined;
1319
1499
  reactions?: undefined;
1500
+ callAttemptDuration?: undefined;
1501
+ backgroundColor?: undefined;
1320
1502
  } | {
1321
1503
  chatId: number;
1322
1504
  type: string;
@@ -1331,18 +1513,23 @@ export declare const messages: ({
1331
1513
  status: string;
1332
1514
  avatar: string;
1333
1515
  dialogId?: undefined;
1516
+ position?: undefined;
1517
+ time?: undefined;
1334
1518
  callDuration?: undefined;
1335
1519
  isMissedCall?: undefined;
1336
- transcript?: undefined;
1337
- embed?: undefined;
1520
+ callParticipant?: undefined;
1338
1521
  actions?: undefined;
1522
+ embed?: undefined;
1339
1523
  views?: undefined;
1340
1524
  reply?: undefined;
1341
1525
  filename?: undefined;
1526
+ transcript?: undefined;
1342
1527
  linkPreview?: undefined;
1343
1528
  keyboard?: undefined;
1344
1529
  reactions?: undefined;
1345
1530
  statusMsg?: undefined;
1531
+ callAttemptDuration?: undefined;
1532
+ backgroundColor?: undefined;
1346
1533
  } | {
1347
1534
  chatId: number;
1348
1535
  dialogId: string;
@@ -1365,19 +1552,24 @@ export declare const messages: ({
1365
1552
  mode: string;
1366
1553
  };
1367
1554
  };
1555
+ position?: undefined;
1556
+ time?: undefined;
1557
+ url?: undefined;
1368
1558
  callDuration?: undefined;
1369
1559
  isMissedCall?: undefined;
1370
- transcript?: undefined;
1371
- embed?: undefined;
1560
+ callParticipant?: undefined;
1372
1561
  actions?: undefined;
1562
+ embed?: undefined;
1373
1563
  views?: undefined;
1374
- url?: undefined;
1375
1564
  alt?: undefined;
1376
1565
  reply?: undefined;
1377
1566
  filename?: undefined;
1567
+ transcript?: undefined;
1378
1568
  linkPreview?: undefined;
1379
1569
  keyboard?: undefined;
1380
1570
  statusMsg?: undefined;
1571
+ callAttemptDuration?: undefined;
1572
+ backgroundColor?: undefined;
1381
1573
  } | {
1382
1574
  chatId: number;
1383
1575
  dialogId: string;
@@ -1391,19 +1583,24 @@ export declare const messages: ({
1391
1583
  header: string;
1392
1584
  subText: string;
1393
1585
  avatar: string;
1586
+ position?: undefined;
1587
+ time?: undefined;
1394
1588
  callDuration?: undefined;
1395
1589
  isMissedCall?: undefined;
1396
- transcript?: undefined;
1590
+ callParticipant?: undefined;
1591
+ actions?: undefined;
1397
1592
  text?: undefined;
1398
1593
  embed?: undefined;
1399
- actions?: undefined;
1400
1594
  views?: undefined;
1401
1595
  reply?: undefined;
1402
1596
  filename?: undefined;
1597
+ transcript?: undefined;
1403
1598
  linkPreview?: undefined;
1404
1599
  keyboard?: undefined;
1405
1600
  reactions?: undefined;
1406
1601
  statusMsg?: undefined;
1602
+ callAttemptDuration?: undefined;
1603
+ backgroundColor?: undefined;
1407
1604
  } | {
1408
1605
  chatId: number;
1409
1606
  dialogId: string;
@@ -1432,17 +1629,22 @@ export declare const messages: ({
1432
1629
  mode: string;
1433
1630
  };
1434
1631
  };
1632
+ position?: undefined;
1633
+ time?: undefined;
1435
1634
  callDuration?: undefined;
1436
1635
  isMissedCall?: undefined;
1437
- transcript?: undefined;
1636
+ callParticipant?: undefined;
1637
+ actions?: undefined;
1438
1638
  text?: undefined;
1439
1639
  embed?: undefined;
1440
- actions?: undefined;
1441
1640
  views?: undefined;
1442
1641
  reply?: undefined;
1443
1642
  filename?: undefined;
1643
+ transcript?: undefined;
1444
1644
  linkPreview?: undefined;
1445
1645
  keyboard?: undefined;
1646
+ callAttemptDuration?: undefined;
1647
+ backgroundColor?: undefined;
1446
1648
  } | {
1447
1649
  chatId: number;
1448
1650
  dialogId: string;
@@ -1464,19 +1666,24 @@ export declare const messages: ({
1464
1666
  disabled: boolean;
1465
1667
  action: string;
1466
1668
  })[];
1669
+ position?: undefined;
1670
+ time?: undefined;
1467
1671
  callDuration?: undefined;
1468
1672
  isMissedCall?: undefined;
1469
- transcript?: undefined;
1673
+ callParticipant?: undefined;
1470
1674
  text?: undefined;
1471
1675
  embed?: undefined;
1472
1676
  views?: undefined;
1473
1677
  alt?: undefined;
1474
1678
  reply?: undefined;
1475
1679
  filename?: undefined;
1680
+ transcript?: undefined;
1476
1681
  linkPreview?: undefined;
1477
1682
  keyboard?: undefined;
1478
1683
  reactions?: undefined;
1479
1684
  statusMsg?: undefined;
1685
+ callAttemptDuration?: undefined;
1686
+ backgroundColor?: undefined;
1480
1687
  } | {
1481
1688
  chatId: number;
1482
1689
  dialogId: string;
@@ -1508,44 +1715,419 @@ export declare const messages: ({
1508
1715
  disabled: boolean;
1509
1716
  action: string;
1510
1717
  })[];
1718
+ position?: undefined;
1719
+ time?: undefined;
1511
1720
  callDuration?: undefined;
1512
1721
  isMissedCall?: undefined;
1513
- transcript?: undefined;
1722
+ callParticipant?: undefined;
1514
1723
  text?: undefined;
1515
1724
  embed?: undefined;
1516
1725
  views?: undefined;
1517
1726
  alt?: undefined;
1518
1727
  reply?: undefined;
1519
1728
  filename?: undefined;
1729
+ transcript?: undefined;
1520
1730
  linkPreview?: undefined;
1521
1731
  keyboard?: undefined;
1522
1732
  statusMsg?: undefined;
1733
+ callAttemptDuration?: undefined;
1734
+ backgroundColor?: undefined;
1523
1735
  } | {
1524
- messageId: number;
1525
1736
  chatId: number;
1737
+ dialogId: string;
1526
1738
  type: string;
1527
- text: string;
1528
1739
  direction: string;
1529
1740
  status: string;
1741
+ messageId: string;
1742
+ url: string;
1743
+ callDuration: string;
1744
+ isMissedCall: boolean;
1530
1745
  timestamp: string;
1531
- dialogId?: undefined;
1532
- callDuration?: undefined;
1533
- isMissedCall?: undefined;
1534
- header?: undefined;
1535
- avatar?: undefined;
1536
- subText?: undefined;
1537
- transcript?: undefined;
1538
- embed?: undefined;
1539
- actions?: undefined;
1540
- views?: undefined;
1541
- url?: undefined;
1542
- alt?: undefined;
1746
+ header: string;
1747
+ subText: string;
1748
+ callParticipant: string;
1749
+ actions: ({
1750
+ action: string;
1751
+ title: string;
1752
+ disabled?: undefined;
1753
+ } | {
1754
+ action: string;
1755
+ title: string;
1756
+ disabled: boolean;
1757
+ })[];
1758
+ position?: undefined;
1759
+ time?: undefined;
1760
+ avatar?: undefined;
1761
+ text?: undefined;
1762
+ embed?: undefined;
1763
+ views?: undefined;
1764
+ alt?: undefined;
1765
+ reply?: undefined;
1766
+ filename?: undefined;
1767
+ transcript?: undefined;
1768
+ linkPreview?: undefined;
1769
+ keyboard?: undefined;
1770
+ reactions?: undefined;
1771
+ statusMsg?: undefined;
1772
+ callAttemptDuration?: undefined;
1773
+ backgroundColor?: undefined;
1774
+ } | {
1775
+ chatId: number;
1776
+ dialogId: string;
1777
+ type: string;
1778
+ direction: string;
1779
+ status: string;
1780
+ time: string;
1781
+ messageId: string;
1782
+ isMissedCall: boolean;
1783
+ timestamp: string;
1784
+ header: string;
1785
+ subText: string;
1786
+ callParticipant: string;
1787
+ callAttemptDuration: string;
1788
+ position?: undefined;
1789
+ url?: undefined;
1790
+ callDuration?: undefined;
1791
+ avatar?: undefined;
1792
+ actions?: undefined;
1793
+ text?: undefined;
1794
+ embed?: undefined;
1795
+ views?: undefined;
1796
+ alt?: undefined;
1543
1797
  reply?: undefined;
1544
1798
  filename?: undefined;
1799
+ transcript?: undefined;
1800
+ linkPreview?: undefined;
1801
+ keyboard?: undefined;
1802
+ reactions?: undefined;
1803
+ statusMsg?: undefined;
1804
+ backgroundColor?: undefined;
1805
+ } | {
1806
+ chatId: number;
1807
+ dialogId: string;
1808
+ type: string;
1809
+ url: string;
1810
+ filename: string;
1811
+ direction: string;
1812
+ status: string;
1813
+ timestamp: string;
1814
+ header: string;
1815
+ subText: string;
1816
+ messageId: string;
1817
+ text: string;
1818
+ position?: undefined;
1819
+ time?: undefined;
1820
+ callDuration?: undefined;
1821
+ isMissedCall?: undefined;
1822
+ callParticipant?: undefined;
1823
+ avatar?: undefined;
1824
+ actions?: undefined;
1825
+ embed?: undefined;
1826
+ views?: undefined;
1827
+ alt?: undefined;
1828
+ reply?: undefined;
1829
+ transcript?: undefined;
1830
+ linkPreview?: undefined;
1831
+ keyboard?: undefined;
1832
+ reactions?: undefined;
1833
+ statusMsg?: undefined;
1834
+ callAttemptDuration?: undefined;
1835
+ backgroundColor?: undefined;
1836
+ } | {
1837
+ chatId: number;
1838
+ dialogId: string;
1839
+ type: string;
1840
+ direction: string;
1841
+ status: string;
1842
+ time: string;
1843
+ messageId: string;
1844
+ url: string;
1845
+ isMissedCall: boolean;
1846
+ timestamp: string;
1847
+ header: string;
1848
+ subText: string;
1849
+ callParticipant: string;
1850
+ actions: ({
1851
+ action: string;
1852
+ title: string;
1853
+ disabled?: undefined;
1854
+ } | {
1855
+ action: string;
1856
+ title: string;
1857
+ disabled: boolean;
1858
+ })[];
1859
+ position?: undefined;
1860
+ callDuration?: undefined;
1861
+ avatar?: undefined;
1862
+ text?: undefined;
1863
+ embed?: undefined;
1864
+ views?: undefined;
1865
+ alt?: undefined;
1866
+ reply?: undefined;
1867
+ filename?: undefined;
1868
+ transcript?: undefined;
1869
+ linkPreview?: undefined;
1870
+ keyboard?: undefined;
1871
+ reactions?: undefined;
1872
+ statusMsg?: undefined;
1873
+ callAttemptDuration?: undefined;
1874
+ backgroundColor?: undefined;
1875
+ } | {
1876
+ chatId: number;
1877
+ dialogId: string;
1878
+ type: string;
1879
+ text: string;
1880
+ direction: string;
1881
+ status: string;
1882
+ timestamp: string;
1883
+ header: string;
1884
+ subText: string;
1885
+ messageId: string;
1886
+ position?: undefined;
1887
+ time?: undefined;
1888
+ url?: undefined;
1889
+ callDuration?: undefined;
1890
+ isMissedCall?: undefined;
1891
+ callParticipant?: undefined;
1892
+ avatar?: undefined;
1893
+ actions?: undefined;
1894
+ embed?: undefined;
1895
+ views?: undefined;
1896
+ alt?: undefined;
1897
+ reply?: undefined;
1898
+ filename?: undefined;
1899
+ transcript?: undefined;
1900
+ linkPreview?: undefined;
1901
+ keyboard?: undefined;
1902
+ reactions?: undefined;
1903
+ statusMsg?: undefined;
1904
+ callAttemptDuration?: undefined;
1905
+ backgroundColor?: undefined;
1906
+ } | {
1907
+ chatId: number;
1908
+ dialogId: string;
1909
+ type: string;
1910
+ direction: string;
1911
+ status: string;
1912
+ time: string;
1913
+ messageId: string;
1914
+ url: string;
1915
+ isMissedCall: boolean;
1916
+ timestamp: string;
1917
+ header: string;
1918
+ subText: string;
1919
+ callParticipant: string;
1920
+ callDuration: string;
1921
+ actions: ({
1922
+ action: string;
1923
+ title: string;
1924
+ disabled?: undefined;
1925
+ } | {
1926
+ action: string;
1927
+ title: string;
1928
+ disabled: boolean;
1929
+ })[];
1930
+ position?: undefined;
1931
+ avatar?: undefined;
1932
+ text?: undefined;
1933
+ embed?: undefined;
1934
+ views?: undefined;
1935
+ alt?: undefined;
1936
+ reply?: undefined;
1937
+ filename?: undefined;
1938
+ transcript?: undefined;
1545
1939
  linkPreview?: undefined;
1546
1940
  keyboard?: undefined;
1547
1941
  reactions?: undefined;
1548
1942
  statusMsg?: undefined;
1943
+ callAttemptDuration?: undefined;
1944
+ backgroundColor?: undefined;
1945
+ } | {
1946
+ chatId: number;
1947
+ dialogId: string;
1948
+ type: string;
1949
+ direction: string;
1950
+ status: string;
1951
+ timestamp: string;
1952
+ header: string;
1953
+ subText: string;
1954
+ messageId: string;
1955
+ position?: undefined;
1956
+ time?: undefined;
1957
+ url?: undefined;
1958
+ callDuration?: undefined;
1959
+ isMissedCall?: undefined;
1960
+ callParticipant?: undefined;
1961
+ avatar?: undefined;
1962
+ actions?: undefined;
1963
+ text?: undefined;
1964
+ embed?: undefined;
1965
+ views?: undefined;
1966
+ alt?: undefined;
1967
+ reply?: undefined;
1968
+ filename?: undefined;
1969
+ transcript?: undefined;
1970
+ linkPreview?: undefined;
1971
+ keyboard?: undefined;
1972
+ reactions?: undefined;
1973
+ statusMsg?: undefined;
1974
+ callAttemptDuration?: undefined;
1975
+ backgroundColor?: undefined;
1976
+ } | {
1977
+ chatId: number;
1978
+ dialogId: string;
1979
+ type: string;
1980
+ url: string;
1981
+ direction: string;
1982
+ status: string;
1983
+ timestamp: string;
1984
+ header: string;
1985
+ subText: string;
1986
+ messageId: string;
1987
+ text: string;
1988
+ position?: undefined;
1989
+ time?: undefined;
1990
+ callDuration?: undefined;
1991
+ isMissedCall?: undefined;
1992
+ callParticipant?: undefined;
1993
+ avatar?: undefined;
1994
+ actions?: undefined;
1995
+ embed?: undefined;
1996
+ views?: undefined;
1997
+ alt?: undefined;
1998
+ reply?: undefined;
1999
+ filename?: undefined;
2000
+ transcript?: undefined;
2001
+ linkPreview?: undefined;
2002
+ keyboard?: undefined;
2003
+ reactions?: undefined;
2004
+ statusMsg?: undefined;
2005
+ callAttemptDuration?: undefined;
2006
+ backgroundColor?: undefined;
2007
+ } | {
2008
+ chatId: number;
2009
+ dialogId: string;
2010
+ type: string;
2011
+ url: string;
2012
+ alt: string;
2013
+ direction: string;
2014
+ status: string;
2015
+ timestamp: string;
2016
+ header: string;
2017
+ subText: string;
2018
+ messageId: string;
2019
+ backgroundColor: string;
2020
+ text: string;
2021
+ position?: undefined;
2022
+ time?: undefined;
2023
+ callDuration?: undefined;
2024
+ isMissedCall?: undefined;
2025
+ callParticipant?: undefined;
2026
+ avatar?: undefined;
2027
+ actions?: undefined;
2028
+ embed?: undefined;
2029
+ views?: undefined;
2030
+ reply?: undefined;
2031
+ filename?: undefined;
2032
+ transcript?: undefined;
2033
+ linkPreview?: undefined;
2034
+ keyboard?: undefined;
2035
+ reactions?: undefined;
2036
+ statusMsg?: undefined;
2037
+ callAttemptDuration?: undefined;
2038
+ } | {
2039
+ chatId: number;
2040
+ dialogId: string;
2041
+ type: string;
2042
+ url: string;
2043
+ filename: string;
2044
+ direction: string;
2045
+ status: string;
2046
+ timestamp: string;
2047
+ header: string;
2048
+ subText: string;
2049
+ messageId: string;
2050
+ backgroundColor: string;
2051
+ text: string;
2052
+ position?: undefined;
2053
+ time?: undefined;
2054
+ callDuration?: undefined;
2055
+ isMissedCall?: undefined;
2056
+ callParticipant?: undefined;
2057
+ avatar?: undefined;
2058
+ actions?: undefined;
2059
+ embed?: undefined;
2060
+ views?: undefined;
2061
+ alt?: undefined;
2062
+ reply?: undefined;
2063
+ transcript?: undefined;
2064
+ linkPreview?: undefined;
2065
+ keyboard?: undefined;
2066
+ reactions?: undefined;
2067
+ statusMsg?: undefined;
2068
+ callAttemptDuration?: undefined;
2069
+ } | {
2070
+ chatId: number;
2071
+ dialogId: string;
2072
+ type: string;
2073
+ text: string;
2074
+ direction: string;
2075
+ status: string;
2076
+ timestamp: string;
2077
+ header: string;
2078
+ subText: string;
2079
+ messageId: string;
2080
+ backgroundColor: string;
2081
+ position?: undefined;
2082
+ time?: undefined;
2083
+ url?: undefined;
2084
+ callDuration?: undefined;
2085
+ isMissedCall?: undefined;
2086
+ callParticipant?: undefined;
2087
+ avatar?: undefined;
2088
+ actions?: undefined;
2089
+ embed?: undefined;
2090
+ views?: undefined;
2091
+ alt?: undefined;
2092
+ reply?: undefined;
2093
+ filename?: undefined;
2094
+ transcript?: undefined;
2095
+ linkPreview?: undefined;
2096
+ keyboard?: undefined;
2097
+ reactions?: undefined;
2098
+ statusMsg?: undefined;
2099
+ callAttemptDuration?: undefined;
2100
+ } | {
2101
+ messageId: number;
2102
+ chatId: number;
2103
+ type: string;
2104
+ text: string;
2105
+ direction: string;
2106
+ status: string;
2107
+ timestamp: string;
2108
+ dialogId?: undefined;
2109
+ position?: undefined;
2110
+ time?: undefined;
2111
+ url?: undefined;
2112
+ callDuration?: undefined;
2113
+ isMissedCall?: undefined;
2114
+ header?: undefined;
2115
+ callParticipant?: undefined;
2116
+ avatar?: undefined;
2117
+ subText?: undefined;
2118
+ actions?: undefined;
2119
+ embed?: undefined;
2120
+ views?: undefined;
2121
+ alt?: undefined;
2122
+ reply?: undefined;
2123
+ filename?: undefined;
2124
+ transcript?: undefined;
2125
+ linkPreview?: undefined;
2126
+ keyboard?: undefined;
2127
+ reactions?: undefined;
2128
+ statusMsg?: undefined;
2129
+ callAttemptDuration?: undefined;
2130
+ backgroundColor?: undefined;
1549
2131
  } | {
1550
2132
  messageId: number;
1551
2133
  chatId: number;
@@ -1562,20 +2144,25 @@ export declare const messages: ({
1562
2144
  url?: undefined;
1563
2145
  };
1564
2146
  dialogId?: undefined;
2147
+ position?: undefined;
2148
+ time?: undefined;
2149
+ url?: undefined;
1565
2150
  callDuration?: undefined;
1566
2151
  isMissedCall?: undefined;
1567
2152
  header?: undefined;
2153
+ callParticipant?: undefined;
1568
2154
  avatar?: undefined;
1569
2155
  subText?: undefined;
1570
- transcript?: undefined;
1571
- embed?: undefined;
1572
2156
  actions?: undefined;
2157
+ embed?: undefined;
1573
2158
  views?: undefined;
1574
- url?: undefined;
1575
2159
  alt?: undefined;
1576
2160
  filename?: undefined;
2161
+ transcript?: undefined;
1577
2162
  linkPreview?: undefined;
1578
2163
  keyboard?: undefined;
1579
2164
  reactions?: undefined;
1580
2165
  statusMsg?: undefined;
2166
+ callAttemptDuration?: undefined;
2167
+ backgroundColor?: undefined;
1581
2168
  })[];