@blueking/chat-x 0.0.49-beta.7 → 0.0.49-beta.9

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 (38) hide show
  1. package/dist/ag-ui/types/file.d.ts +1 -11
  2. package/dist/ag-ui/types/messages.d.ts +2 -0
  3. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/artifact-preview-host.vue.d.ts +5 -1
  4. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/preview-strategy.d.ts +4 -5
  5. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/code-preview.vue.d.ts +8 -0
  6. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/image-preview.vue.d.ts +7 -0
  7. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/use-artifact-preview-loader.d.ts +1 -0
  8. package/dist/components/chat-message/assistant-message/message-artifacts/file-artifact-panel.vue.d.ts +1 -0
  9. package/dist/components/chat-message/user-message/user-message.vue.d.ts +1 -0
  10. package/dist/components/file-icon/file-icon.vue.d.ts +7 -0
  11. package/dist/components/index.d.ts +3 -1
  12. package/dist/components/message-tools/message-time/format-message-time.d.ts +8 -0
  13. package/dist/components/message-tools/message-time/message-time.vue.d.ts +8 -0
  14. package/dist/components/message-tools/message-tools.vue.d.ts +11 -1
  15. package/dist/composables/use-global-config.d.ts +3 -0
  16. package/dist/composables/use-message-group.d.ts +144 -72
  17. package/dist/icons/file-icons.d.ts +4 -0
  18. package/dist/icons/file.d.ts +0 -18
  19. package/dist/icons/index.d.ts +1 -0
  20. package/dist/index.css +1 -1
  21. package/dist/index.js +2239 -1982
  22. package/dist/index.js.map +1 -1
  23. package/dist/lang/lang.d.ts +2 -1
  24. package/dist/mcp/generated/docs/assistant-message.md +12 -8
  25. package/dist/mcp/generated/docs/chat-container.md +3 -1
  26. package/dist/mcp/generated/docs/file-artifact-panel.md +27 -11
  27. package/dist/mcp/generated/docs/file-icon.md +111 -0
  28. package/dist/mcp/generated/docs/message-container.md +2 -0
  29. package/dist/mcp/generated/docs/message-time.md +180 -0
  30. package/dist/mcp/generated/docs/message-tools.md +47 -12
  31. package/dist/mcp/generated/docs/messages.md +4 -0
  32. package/dist/mcp/generated/docs/use-global-config.md +15 -5
  33. package/dist/mcp/generated/docs/user-message.md +6 -0
  34. package/dist/mcp/generated/index.json +61 -5
  35. package/dist/utils/file-type.d.ts +14 -0
  36. package/dist/utils/index.d.ts +1 -0
  37. package/package.json +2 -2
  38. package/dist/components/chat-message/assistant-message/message-artifacts/file-icon.d.ts +0 -29
@@ -50,6 +50,7 @@ export declare const useMessageGroup: (options: {
50
50
  originFile: string;
51
51
  url: string;
52
52
  }[];
53
+ createdAt?: number | string | undefined;
53
54
  id: number | string;
54
55
  messageId: number | string;
55
56
  name?: string | undefined;
@@ -61,7 +62,7 @@ export declare const useMessageGroup: (options: {
61
62
  name: string;
62
63
  outputId: string;
63
64
  size: number;
64
- type: import("..").AIFileType;
65
+ type: string;
65
66
  }[] | undefined;
66
67
  extra?: {
67
68
  cite: string | {
@@ -603,6 +604,7 @@ export declare const useMessageGroup: (options: {
603
604
  error?: boolean | string | undefined;
604
605
  toolCallId?: string | undefined;
605
606
  content?: string | undefined;
607
+ createdAt?: number | string | undefined;
606
608
  id?: string | number | undefined;
607
609
  messageId?: string | number | undefined;
608
610
  name?: string | undefined;
@@ -614,7 +616,7 @@ export declare const useMessageGroup: (options: {
614
616
  name: string;
615
617
  outputId: string;
616
618
  size: number;
617
- type: import("..").AIFileType;
619
+ type: string;
618
620
  }[] | undefined;
619
621
  extra?: {
620
622
  cite: string | {
@@ -1146,6 +1148,7 @@ export declare const useMessageGroup: (options: {
1146
1148
  type: MessageContentType.Function;
1147
1149
  }[] | undefined;
1148
1150
  content: string;
1151
+ createdAt?: number | string | undefined;
1149
1152
  id: number | string;
1150
1153
  messageId: number | string;
1151
1154
  name?: string | undefined;
@@ -1157,7 +1160,7 @@ export declare const useMessageGroup: (options: {
1157
1160
  name: string;
1158
1161
  outputId: string;
1159
1162
  size: number;
1160
- type: import("..").AIFileType;
1163
+ type: string;
1161
1164
  }[] | undefined;
1162
1165
  extra?: {
1163
1166
  cite: string | {
@@ -1687,6 +1690,7 @@ export declare const useMessageGroup: (options: {
1687
1690
  } | undefined;
1688
1691
  } | {
1689
1692
  content: string;
1693
+ createdAt?: number | string | undefined;
1690
1694
  id: number | string;
1691
1695
  messageId: number | string;
1692
1696
  name?: string | undefined;
@@ -1698,7 +1702,7 @@ export declare const useMessageGroup: (options: {
1698
1702
  name: string;
1699
1703
  outputId: string;
1700
1704
  size: number;
1701
- type: import("..").AIFileType;
1705
+ type: string;
1702
1706
  }[] | undefined;
1703
1707
  extra?: {
1704
1708
  cite: string | {
@@ -2228,6 +2232,7 @@ export declare const useMessageGroup: (options: {
2228
2232
  } | undefined;
2229
2233
  } | {
2230
2234
  content: string;
2235
+ createdAt?: number | string | undefined;
2231
2236
  id: number | string;
2232
2237
  messageId: number | string;
2233
2238
  name?: string | undefined;
@@ -2239,7 +2244,7 @@ export declare const useMessageGroup: (options: {
2239
2244
  name: string;
2240
2245
  outputId: string;
2241
2246
  size: number;
2242
- type: import("..").AIFileType;
2247
+ type: string;
2243
2248
  }[] | undefined;
2244
2249
  extra?: {
2245
2250
  cite: string | {
@@ -2769,6 +2774,7 @@ export declare const useMessageGroup: (options: {
2769
2774
  } | undefined;
2770
2775
  } | {
2771
2776
  content: string;
2777
+ createdAt?: number | string | undefined;
2772
2778
  id: number | string;
2773
2779
  messageId: number | string;
2774
2780
  name?: string | undefined;
@@ -2780,7 +2786,7 @@ export declare const useMessageGroup: (options: {
2780
2786
  name: string;
2781
2787
  outputId: string;
2782
2788
  size: number;
2783
- type: import("..").AIFileType;
2789
+ type: string;
2784
2790
  }[] | undefined;
2785
2791
  extra?: {
2786
2792
  cite: string | {
@@ -3310,6 +3316,7 @@ export declare const useMessageGroup: (options: {
3310
3316
  } | undefined;
3311
3317
  } | {
3312
3318
  content: string;
3319
+ createdAt?: number | string | undefined;
3313
3320
  id: number | string;
3314
3321
  messageId: number | string;
3315
3322
  name?: string | undefined;
@@ -3321,7 +3328,7 @@ export declare const useMessageGroup: (options: {
3321
3328
  name: string;
3322
3329
  outputId: string;
3323
3330
  size: number;
3324
- type: import("..").AIFileType;
3331
+ type: string;
3325
3332
  }[] | undefined;
3326
3333
  extra?: {
3327
3334
  cite: string | {
@@ -3851,6 +3858,7 @@ export declare const useMessageGroup: (options: {
3851
3858
  } | undefined;
3852
3859
  } | {
3853
3860
  content: string;
3861
+ createdAt?: number | string | undefined;
3854
3862
  id: number | string;
3855
3863
  messageId: number | string;
3856
3864
  name?: string | undefined;
@@ -3862,7 +3870,7 @@ export declare const useMessageGroup: (options: {
3862
3870
  name: string;
3863
3871
  outputId: string;
3864
3872
  size: number;
3865
- type: import("..").AIFileType;
3873
+ type: string;
3866
3874
  }[] | undefined;
3867
3875
  extra?: {
3868
3876
  cite: string | {
@@ -4392,6 +4400,7 @@ export declare const useMessageGroup: (options: {
4392
4400
  } | undefined;
4393
4401
  } | {
4394
4402
  content: string;
4403
+ createdAt?: number | string | undefined;
4395
4404
  id: number | string;
4396
4405
  messageId: number | string;
4397
4406
  name?: string | undefined;
@@ -4403,7 +4412,7 @@ export declare const useMessageGroup: (options: {
4403
4412
  name: string;
4404
4413
  outputId: string;
4405
4414
  size: number;
4406
- type: import("..").AIFileType;
4415
+ type: string;
4407
4416
  }[] | undefined;
4408
4417
  extra?: {
4409
4418
  cite: string | {
@@ -4933,6 +4942,7 @@ export declare const useMessageGroup: (options: {
4933
4942
  } | undefined;
4934
4943
  } | {
4935
4944
  content: string;
4945
+ createdAt?: number | string | undefined;
4936
4946
  id: number | string;
4937
4947
  messageId: number | string;
4938
4948
  name?: string | undefined;
@@ -4944,7 +4954,7 @@ export declare const useMessageGroup: (options: {
4944
4954
  name: string;
4945
4955
  outputId: string;
4946
4956
  size: number;
4947
- type: import("..").AIFileType;
4957
+ type: string;
4948
4958
  }[] | undefined;
4949
4959
  extra?: {
4950
4960
  cite: string | {
@@ -5474,6 +5484,7 @@ export declare const useMessageGroup: (options: {
5474
5484
  } | undefined;
5475
5485
  } | {
5476
5486
  content: string;
5487
+ createdAt?: number | string | undefined;
5477
5488
  id: number | string;
5478
5489
  messageId: number | string;
5479
5490
  name?: string | undefined;
@@ -5485,7 +5496,7 @@ export declare const useMessageGroup: (options: {
5485
5496
  name: string;
5486
5497
  outputId: string;
5487
5498
  size: number;
5488
- type: import("..").AIFileType;
5499
+ type: string;
5489
5500
  }[] | undefined;
5490
5501
  extra?: {
5491
5502
  cite: string | {
@@ -6015,6 +6026,7 @@ export declare const useMessageGroup: (options: {
6015
6026
  } | undefined;
6016
6027
  } | {
6017
6028
  content: string;
6029
+ createdAt?: number | string | undefined;
6018
6030
  id: number | string;
6019
6031
  messageId: number | string;
6020
6032
  name?: string | undefined;
@@ -6026,7 +6038,7 @@ export declare const useMessageGroup: (options: {
6026
6038
  name: string;
6027
6039
  outputId: string;
6028
6040
  size: number;
6029
- type: import("..").AIFileType;
6041
+ type: string;
6030
6042
  }[] | undefined;
6031
6043
  extra?: {
6032
6044
  cite: string | {
@@ -6642,6 +6654,7 @@ export declare const useMessageGroup: (options: {
6642
6654
  runId?: string | undefined;
6643
6655
  threadId?: string | undefined;
6644
6656
  };
6657
+ createdAt?: number | string | undefined;
6645
6658
  id: number | string;
6646
6659
  messageId: number | string;
6647
6660
  name?: string | undefined;
@@ -6653,7 +6666,7 @@ export declare const useMessageGroup: (options: {
6653
6666
  name: string;
6654
6667
  outputId: string;
6655
6668
  size: number;
6656
- type: import("..").AIFileType;
6669
+ type: string;
6657
6670
  }[] | undefined;
6658
6671
  extra?: {
6659
6672
  cite: string | {
@@ -7183,6 +7196,7 @@ export declare const useMessageGroup: (options: {
7183
7196
  } | undefined;
7184
7197
  } | {
7185
7198
  content: string;
7199
+ createdAt?: number | string | undefined;
7186
7200
  id: number | string;
7187
7201
  messageId: number | string;
7188
7202
  name?: string | undefined;
@@ -7194,7 +7208,7 @@ export declare const useMessageGroup: (options: {
7194
7208
  name: string;
7195
7209
  outputId: string;
7196
7210
  size: number;
7197
- type: import("..").AIFileType;
7211
+ type: string;
7198
7212
  }[] | undefined;
7199
7213
  extra?: {
7200
7214
  cite: string | {
@@ -7724,6 +7738,7 @@ export declare const useMessageGroup: (options: {
7724
7738
  } | undefined;
7725
7739
  } | {
7726
7740
  content: string;
7741
+ createdAt?: number | string | undefined;
7727
7742
  id: number | string;
7728
7743
  messageId: number | string;
7729
7744
  name?: string | undefined;
@@ -7735,7 +7750,7 @@ export declare const useMessageGroup: (options: {
7735
7750
  name: string;
7736
7751
  outputId: string;
7737
7752
  size: number;
7738
- type: import("..").AIFileType;
7753
+ type: string;
7739
7754
  }[] | undefined;
7740
7755
  extra?: {
7741
7756
  cite: string | {
@@ -8266,6 +8281,7 @@ export declare const useMessageGroup: (options: {
8266
8281
  } | {
8267
8282
  duration?: number | undefined;
8268
8283
  content: string[];
8284
+ createdAt?: number | string | undefined;
8269
8285
  id: number | string;
8270
8286
  messageId: number | string;
8271
8287
  name?: string | undefined;
@@ -8277,7 +8293,7 @@ export declare const useMessageGroup: (options: {
8277
8293
  name: string;
8278
8294
  outputId: string;
8279
8295
  size: number;
8280
- type: import("..").AIFileType;
8296
+ type: string;
8281
8297
  }[] | undefined;
8282
8298
  extra?: {
8283
8299
  cite: string | {
@@ -8807,6 +8823,7 @@ export declare const useMessageGroup: (options: {
8807
8823
  } | undefined;
8808
8824
  } | {
8809
8825
  content: string;
8826
+ createdAt?: number | string | undefined;
8810
8827
  id: number | string;
8811
8828
  messageId: number | string;
8812
8829
  name?: string | undefined;
@@ -8818,7 +8835,7 @@ export declare const useMessageGroup: (options: {
8818
8835
  name: string;
8819
8836
  outputId: string;
8820
8837
  size: number;
8821
- type: import("..").AIFileType;
8838
+ type: string;
8822
8839
  }[] | undefined;
8823
8840
  extra?: {
8824
8841
  cite: string | {
@@ -9348,6 +9365,7 @@ export declare const useMessageGroup: (options: {
9348
9365
  } | undefined;
9349
9366
  } | {
9350
9367
  content: string;
9368
+ createdAt?: number | string | undefined;
9351
9369
  id: number | string;
9352
9370
  messageId: number | string;
9353
9371
  name?: string | undefined;
@@ -9359,7 +9377,7 @@ export declare const useMessageGroup: (options: {
9359
9377
  name: string;
9360
9378
  outputId: string;
9361
9379
  size: number;
9362
- type: import("..").AIFileType;
9380
+ type: string;
9363
9381
  }[] | undefined;
9364
9382
  extra?: {
9365
9383
  cite: string | {
@@ -9889,6 +9907,7 @@ export declare const useMessageGroup: (options: {
9889
9907
  } | undefined;
9890
9908
  } | {
9891
9909
  content: string;
9910
+ createdAt?: number | string | undefined;
9892
9911
  id: number | string;
9893
9912
  messageId: number | string;
9894
9913
  name?: string | undefined;
@@ -9900,7 +9919,7 @@ export declare const useMessageGroup: (options: {
9900
9919
  name: string;
9901
9920
  outputId: string;
9902
9921
  size: number;
9903
- type: import("..").AIFileType;
9922
+ type: string;
9904
9923
  }[] | undefined;
9905
9924
  extra?: {
9906
9925
  cite: string | {
@@ -10430,6 +10449,7 @@ export declare const useMessageGroup: (options: {
10430
10449
  } | undefined;
10431
10450
  } | {
10432
10451
  content: string;
10452
+ createdAt?: number | string | undefined;
10433
10453
  id: number | string;
10434
10454
  messageId: number | string;
10435
10455
  name?: string | undefined;
@@ -10441,7 +10461,7 @@ export declare const useMessageGroup: (options: {
10441
10461
  name: string;
10442
10462
  outputId: string;
10443
10463
  size: number;
10444
- type: import("..").AIFileType;
10464
+ type: string;
10445
10465
  }[] | undefined;
10446
10466
  extra?: {
10447
10467
  cite: string | {
@@ -10971,6 +10991,7 @@ export declare const useMessageGroup: (options: {
10971
10991
  } | undefined;
10972
10992
  } | {
10973
10993
  content: string;
10994
+ createdAt?: number | string | undefined;
10974
10995
  id: number | string;
10975
10996
  messageId: number | string;
10976
10997
  name?: string | undefined;
@@ -10982,7 +11003,7 @@ export declare const useMessageGroup: (options: {
10982
11003
  name: string;
10983
11004
  outputId: string;
10984
11005
  size: number;
10985
- type: import("..").AIFileType;
11006
+ type: string;
10986
11007
  }[] | undefined;
10987
11008
  extra?: {
10988
11009
  cite: string | {
@@ -11512,6 +11533,7 @@ export declare const useMessageGroup: (options: {
11512
11533
  } | undefined;
11513
11534
  } | {
11514
11535
  content: string;
11536
+ createdAt?: number | string | undefined;
11515
11537
  id: number | string;
11516
11538
  messageId: number | string;
11517
11539
  name?: string | undefined;
@@ -11523,7 +11545,7 @@ export declare const useMessageGroup: (options: {
11523
11545
  name: string;
11524
11546
  outputId: string;
11525
11547
  size: number;
11526
- type: import("..").AIFileType;
11548
+ type: string;
11527
11549
  }[] | undefined;
11528
11550
  extra?: {
11529
11551
  cite: string | {
@@ -12056,6 +12078,7 @@ export declare const useMessageGroup: (options: {
12056
12078
  error?: boolean | string | undefined;
12057
12079
  toolCallId: string;
12058
12080
  content: string;
12081
+ createdAt?: number | string | undefined;
12059
12082
  id: number | string;
12060
12083
  messageId: number | string;
12061
12084
  name?: string | undefined;
@@ -12067,7 +12090,7 @@ export declare const useMessageGroup: (options: {
12067
12090
  name: string;
12068
12091
  outputId: string;
12069
12092
  size: number;
12070
- type: import("..").AIFileType;
12093
+ type: string;
12071
12094
  }[] | undefined;
12072
12095
  extra?: {
12073
12096
  cite: string | {
@@ -12607,6 +12630,7 @@ export declare const useMessageGroup: (options: {
12607
12630
  text: string;
12608
12631
  type: MessageContentType.Text;
12609
12632
  })[];
12633
+ createdAt?: number | string | undefined;
12610
12634
  id: number | string;
12611
12635
  messageId: number | string;
12612
12636
  name?: string | undefined;
@@ -12618,7 +12642,7 @@ export declare const useMessageGroup: (options: {
12618
12642
  name: string;
12619
12643
  outputId: string;
12620
12644
  size: number;
12621
- type: import("..").AIFileType;
12645
+ type: string;
12622
12646
  }[] | undefined;
12623
12647
  extra?: {
12624
12648
  cite: string | {
@@ -13184,6 +13208,7 @@ export declare const useMessageGroup: (options: {
13184
13208
  originFile: string;
13185
13209
  url: string;
13186
13210
  }[];
13211
+ createdAt?: number | string | undefined;
13187
13212
  id: number | string;
13188
13213
  messageId: number | string;
13189
13214
  name?: string | undefined;
@@ -13195,7 +13220,7 @@ export declare const useMessageGroup: (options: {
13195
13220
  name: string;
13196
13221
  outputId: string;
13197
13222
  size: number;
13198
- type: import("..").AIFileType;
13223
+ type: string;
13199
13224
  }[] | undefined;
13200
13225
  extra?: {
13201
13226
  cite: string | {
@@ -13737,6 +13762,7 @@ export declare const useMessageGroup: (options: {
13737
13762
  error?: boolean | string | undefined;
13738
13763
  toolCallId?: string | undefined;
13739
13764
  content?: string | undefined;
13765
+ createdAt?: number | string | undefined;
13740
13766
  id?: string | number | undefined;
13741
13767
  messageId?: string | number | undefined;
13742
13768
  name?: string | undefined;
@@ -13748,7 +13774,7 @@ export declare const useMessageGroup: (options: {
13748
13774
  name: string;
13749
13775
  outputId: string;
13750
13776
  size: number;
13751
- type: import("..").AIFileType;
13777
+ type: string;
13752
13778
  }[] | undefined;
13753
13779
  extra?: {
13754
13780
  cite: string | {
@@ -14280,6 +14306,7 @@ export declare const useMessageGroup: (options: {
14280
14306
  type: MessageContentType.Function;
14281
14307
  }[] | undefined;
14282
14308
  content: string;
14309
+ createdAt?: number | string | undefined;
14283
14310
  id: number | string;
14284
14311
  messageId: number | string;
14285
14312
  name?: string | undefined;
@@ -14291,7 +14318,7 @@ export declare const useMessageGroup: (options: {
14291
14318
  name: string;
14292
14319
  outputId: string;
14293
14320
  size: number;
14294
- type: import("..").AIFileType;
14321
+ type: string;
14295
14322
  }[] | undefined;
14296
14323
  extra?: {
14297
14324
  cite: string | {
@@ -14821,6 +14848,7 @@ export declare const useMessageGroup: (options: {
14821
14848
  } | undefined;
14822
14849
  } | {
14823
14850
  content: string;
14851
+ createdAt?: number | string | undefined;
14824
14852
  id: number | string;
14825
14853
  messageId: number | string;
14826
14854
  name?: string | undefined;
@@ -14832,7 +14860,7 @@ export declare const useMessageGroup: (options: {
14832
14860
  name: string;
14833
14861
  outputId: string;
14834
14862
  size: number;
14835
- type: import("..").AIFileType;
14863
+ type: string;
14836
14864
  }[] | undefined;
14837
14865
  extra?: {
14838
14866
  cite: string | {
@@ -15362,6 +15390,7 @@ export declare const useMessageGroup: (options: {
15362
15390
  } | undefined;
15363
15391
  } | {
15364
15392
  content: string;
15393
+ createdAt?: number | string | undefined;
15365
15394
  id: number | string;
15366
15395
  messageId: number | string;
15367
15396
  name?: string | undefined;
@@ -15373,7 +15402,7 @@ export declare const useMessageGroup: (options: {
15373
15402
  name: string;
15374
15403
  outputId: string;
15375
15404
  size: number;
15376
- type: import("..").AIFileType;
15405
+ type: string;
15377
15406
  }[] | undefined;
15378
15407
  extra?: {
15379
15408
  cite: string | {
@@ -15903,6 +15932,7 @@ export declare const useMessageGroup: (options: {
15903
15932
  } | undefined;
15904
15933
  } | {
15905
15934
  content: string;
15935
+ createdAt?: number | string | undefined;
15906
15936
  id: number | string;
15907
15937
  messageId: number | string;
15908
15938
  name?: string | undefined;
@@ -15914,7 +15944,7 @@ export declare const useMessageGroup: (options: {
15914
15944
  name: string;
15915
15945
  outputId: string;
15916
15946
  size: number;
15917
- type: import("..").AIFileType;
15947
+ type: string;
15918
15948
  }[] | undefined;
15919
15949
  extra?: {
15920
15950
  cite: string | {
@@ -16444,6 +16474,7 @@ export declare const useMessageGroup: (options: {
16444
16474
  } | undefined;
16445
16475
  } | {
16446
16476
  content: string;
16477
+ createdAt?: number | string | undefined;
16447
16478
  id: number | string;
16448
16479
  messageId: number | string;
16449
16480
  name?: string | undefined;
@@ -16455,7 +16486,7 @@ export declare const useMessageGroup: (options: {
16455
16486
  name: string;
16456
16487
  outputId: string;
16457
16488
  size: number;
16458
- type: import("..").AIFileType;
16489
+ type: string;
16459
16490
  }[] | undefined;
16460
16491
  extra?: {
16461
16492
  cite: string | {
@@ -16985,6 +17016,7 @@ export declare const useMessageGroup: (options: {
16985
17016
  } | undefined;
16986
17017
  } | {
16987
17018
  content: string;
17019
+ createdAt?: number | string | undefined;
16988
17020
  id: number | string;
16989
17021
  messageId: number | string;
16990
17022
  name?: string | undefined;
@@ -16996,7 +17028,7 @@ export declare const useMessageGroup: (options: {
16996
17028
  name: string;
16997
17029
  outputId: string;
16998
17030
  size: number;
16999
- type: import("..").AIFileType;
17031
+ type: string;
17000
17032
  }[] | undefined;
17001
17033
  extra?: {
17002
17034
  cite: string | {
@@ -17526,6 +17558,7 @@ export declare const useMessageGroup: (options: {
17526
17558
  } | undefined;
17527
17559
  } | {
17528
17560
  content: string;
17561
+ createdAt?: number | string | undefined;
17529
17562
  id: number | string;
17530
17563
  messageId: number | string;
17531
17564
  name?: string | undefined;
@@ -17537,7 +17570,7 @@ export declare const useMessageGroup: (options: {
17537
17570
  name: string;
17538
17571
  outputId: string;
17539
17572
  size: number;
17540
- type: import("..").AIFileType;
17573
+ type: string;
17541
17574
  }[] | undefined;
17542
17575
  extra?: {
17543
17576
  cite: string | {
@@ -18067,6 +18100,7 @@ export declare const useMessageGroup: (options: {
18067
18100
  } | undefined;
18068
18101
  } | {
18069
18102
  content: string;
18103
+ createdAt?: number | string | undefined;
18070
18104
  id: number | string;
18071
18105
  messageId: number | string;
18072
18106
  name?: string | undefined;
@@ -18078,7 +18112,7 @@ export declare const useMessageGroup: (options: {
18078
18112
  name: string;
18079
18113
  outputId: string;
18080
18114
  size: number;
18081
- type: import("..").AIFileType;
18115
+ type: string;
18082
18116
  }[] | undefined;
18083
18117
  extra?: {
18084
18118
  cite: string | {
@@ -18608,6 +18642,7 @@ export declare const useMessageGroup: (options: {
18608
18642
  } | undefined;
18609
18643
  } | {
18610
18644
  content: string;
18645
+ createdAt?: number | string | undefined;
18611
18646
  id: number | string;
18612
18647
  messageId: number | string;
18613
18648
  name?: string | undefined;
@@ -18619,7 +18654,7 @@ export declare const useMessageGroup: (options: {
18619
18654
  name: string;
18620
18655
  outputId: string;
18621
18656
  size: number;
18622
- type: import("..").AIFileType;
18657
+ type: string;
18623
18658
  }[] | undefined;
18624
18659
  extra?: {
18625
18660
  cite: string | {
@@ -19149,6 +19184,7 @@ export declare const useMessageGroup: (options: {
19149
19184
  } | undefined;
19150
19185
  } | {
19151
19186
  content: string;
19187
+ createdAt?: number | string | undefined;
19152
19188
  id: number | string;
19153
19189
  messageId: number | string;
19154
19190
  name?: string | undefined;
@@ -19160,7 +19196,7 @@ export declare const useMessageGroup: (options: {
19160
19196
  name: string;
19161
19197
  outputId: string;
19162
19198
  size: number;
19163
- type: import("..").AIFileType;
19199
+ type: string;
19164
19200
  }[] | undefined;
19165
19201
  extra?: {
19166
19202
  cite: string | {
@@ -19776,6 +19812,7 @@ export declare const useMessageGroup: (options: {
19776
19812
  runId?: string | undefined;
19777
19813
  threadId?: string | undefined;
19778
19814
  };
19815
+ createdAt?: number | string | undefined;
19779
19816
  id: number | string;
19780
19817
  messageId: number | string;
19781
19818
  name?: string | undefined;
@@ -19787,7 +19824,7 @@ export declare const useMessageGroup: (options: {
19787
19824
  name: string;
19788
19825
  outputId: string;
19789
19826
  size: number;
19790
- type: import("..").AIFileType;
19827
+ type: string;
19791
19828
  }[] | undefined;
19792
19829
  extra?: {
19793
19830
  cite: string | {
@@ -20317,6 +20354,7 @@ export declare const useMessageGroup: (options: {
20317
20354
  } | undefined;
20318
20355
  } | {
20319
20356
  content: string;
20357
+ createdAt?: number | string | undefined;
20320
20358
  id: number | string;
20321
20359
  messageId: number | string;
20322
20360
  name?: string | undefined;
@@ -20328,7 +20366,7 @@ export declare const useMessageGroup: (options: {
20328
20366
  name: string;
20329
20367
  outputId: string;
20330
20368
  size: number;
20331
- type: import("..").AIFileType;
20369
+ type: string;
20332
20370
  }[] | undefined;
20333
20371
  extra?: {
20334
20372
  cite: string | {
@@ -20858,6 +20896,7 @@ export declare const useMessageGroup: (options: {
20858
20896
  } | undefined;
20859
20897
  } | {
20860
20898
  content: string;
20899
+ createdAt?: number | string | undefined;
20861
20900
  id: number | string;
20862
20901
  messageId: number | string;
20863
20902
  name?: string | undefined;
@@ -20869,7 +20908,7 @@ export declare const useMessageGroup: (options: {
20869
20908
  name: string;
20870
20909
  outputId: string;
20871
20910
  size: number;
20872
- type: import("..").AIFileType;
20911
+ type: string;
20873
20912
  }[] | undefined;
20874
20913
  extra?: {
20875
20914
  cite: string | {
@@ -21400,6 +21439,7 @@ export declare const useMessageGroup: (options: {
21400
21439
  } | {
21401
21440
  duration?: number | undefined;
21402
21441
  content: string[];
21442
+ createdAt?: number | string | undefined;
21403
21443
  id: number | string;
21404
21444
  messageId: number | string;
21405
21445
  name?: string | undefined;
@@ -21411,7 +21451,7 @@ export declare const useMessageGroup: (options: {
21411
21451
  name: string;
21412
21452
  outputId: string;
21413
21453
  size: number;
21414
- type: import("..").AIFileType;
21454
+ type: string;
21415
21455
  }[] | undefined;
21416
21456
  extra?: {
21417
21457
  cite: string | {
@@ -21941,6 +21981,7 @@ export declare const useMessageGroup: (options: {
21941
21981
  } | undefined;
21942
21982
  } | {
21943
21983
  content: string;
21984
+ createdAt?: number | string | undefined;
21944
21985
  id: number | string;
21945
21986
  messageId: number | string;
21946
21987
  name?: string | undefined;
@@ -21952,7 +21993,7 @@ export declare const useMessageGroup: (options: {
21952
21993
  name: string;
21953
21994
  outputId: string;
21954
21995
  size: number;
21955
- type: import("..").AIFileType;
21996
+ type: string;
21956
21997
  }[] | undefined;
21957
21998
  extra?: {
21958
21999
  cite: string | {
@@ -22482,6 +22523,7 @@ export declare const useMessageGroup: (options: {
22482
22523
  } | undefined;
22483
22524
  } | {
22484
22525
  content: string;
22526
+ createdAt?: number | string | undefined;
22485
22527
  id: number | string;
22486
22528
  messageId: number | string;
22487
22529
  name?: string | undefined;
@@ -22493,7 +22535,7 @@ export declare const useMessageGroup: (options: {
22493
22535
  name: string;
22494
22536
  outputId: string;
22495
22537
  size: number;
22496
- type: import("..").AIFileType;
22538
+ type: string;
22497
22539
  }[] | undefined;
22498
22540
  extra?: {
22499
22541
  cite: string | {
@@ -23023,6 +23065,7 @@ export declare const useMessageGroup: (options: {
23023
23065
  } | undefined;
23024
23066
  } | {
23025
23067
  content: string;
23068
+ createdAt?: number | string | undefined;
23026
23069
  id: number | string;
23027
23070
  messageId: number | string;
23028
23071
  name?: string | undefined;
@@ -23034,7 +23077,7 @@ export declare const useMessageGroup: (options: {
23034
23077
  name: string;
23035
23078
  outputId: string;
23036
23079
  size: number;
23037
- type: import("..").AIFileType;
23080
+ type: string;
23038
23081
  }[] | undefined;
23039
23082
  extra?: {
23040
23083
  cite: string | {
@@ -23564,6 +23607,7 @@ export declare const useMessageGroup: (options: {
23564
23607
  } | undefined;
23565
23608
  } | {
23566
23609
  content: string;
23610
+ createdAt?: number | string | undefined;
23567
23611
  id: number | string;
23568
23612
  messageId: number | string;
23569
23613
  name?: string | undefined;
@@ -23575,7 +23619,7 @@ export declare const useMessageGroup: (options: {
23575
23619
  name: string;
23576
23620
  outputId: string;
23577
23621
  size: number;
23578
- type: import("..").AIFileType;
23622
+ type: string;
23579
23623
  }[] | undefined;
23580
23624
  extra?: {
23581
23625
  cite: string | {
@@ -24105,6 +24149,7 @@ export declare const useMessageGroup: (options: {
24105
24149
  } | undefined;
24106
24150
  } | {
24107
24151
  content: string;
24152
+ createdAt?: number | string | undefined;
24108
24153
  id: number | string;
24109
24154
  messageId: number | string;
24110
24155
  name?: string | undefined;
@@ -24116,7 +24161,7 @@ export declare const useMessageGroup: (options: {
24116
24161
  name: string;
24117
24162
  outputId: string;
24118
24163
  size: number;
24119
- type: import("..").AIFileType;
24164
+ type: string;
24120
24165
  }[] | undefined;
24121
24166
  extra?: {
24122
24167
  cite: string | {
@@ -24646,6 +24691,7 @@ export declare const useMessageGroup: (options: {
24646
24691
  } | undefined;
24647
24692
  } | {
24648
24693
  content: string;
24694
+ createdAt?: number | string | undefined;
24649
24695
  id: number | string;
24650
24696
  messageId: number | string;
24651
24697
  name?: string | undefined;
@@ -24657,7 +24703,7 @@ export declare const useMessageGroup: (options: {
24657
24703
  name: string;
24658
24704
  outputId: string;
24659
24705
  size: number;
24660
- type: import("..").AIFileType;
24706
+ type: string;
24661
24707
  }[] | undefined;
24662
24708
  extra?: {
24663
24709
  cite: string | {
@@ -25190,6 +25236,7 @@ export declare const useMessageGroup: (options: {
25190
25236
  error?: boolean | string | undefined;
25191
25237
  toolCallId: string;
25192
25238
  content: string;
25239
+ createdAt?: number | string | undefined;
25193
25240
  id: number | string;
25194
25241
  messageId: number | string;
25195
25242
  name?: string | undefined;
@@ -25201,7 +25248,7 @@ export declare const useMessageGroup: (options: {
25201
25248
  name: string;
25202
25249
  outputId: string;
25203
25250
  size: number;
25204
- type: import("..").AIFileType;
25251
+ type: string;
25205
25252
  }[] | undefined;
25206
25253
  extra?: {
25207
25254
  cite: string | {
@@ -25741,6 +25788,7 @@ export declare const useMessageGroup: (options: {
25741
25788
  text: string;
25742
25789
  type: MessageContentType.Text;
25743
25790
  })[];
25791
+ createdAt?: number | string | undefined;
25744
25792
  id: number | string;
25745
25793
  messageId: number | string;
25746
25794
  name?: string | undefined;
@@ -25752,7 +25800,7 @@ export declare const useMessageGroup: (options: {
25752
25800
  name: string;
25753
25801
  outputId: string;
25754
25802
  size: number;
25755
- type: import("..").AIFileType;
25803
+ type: string;
25756
25804
  }[] | undefined;
25757
25805
  extra?: {
25758
25806
  cite: string | {
@@ -26325,6 +26373,7 @@ export declare const useMessageGroup: (options: {
26325
26373
  originFile: string;
26326
26374
  url: string;
26327
26375
  }[];
26376
+ createdAt?: number | string | undefined;
26328
26377
  id: number | string;
26329
26378
  messageId: number | string;
26330
26379
  name?: string | undefined;
@@ -26336,7 +26385,7 @@ export declare const useMessageGroup: (options: {
26336
26385
  name: string;
26337
26386
  outputId: string;
26338
26387
  size: number;
26339
- type: import("..").AIFileType;
26388
+ type: string;
26340
26389
  }[] | undefined;
26341
26390
  extra?: {
26342
26391
  cite: string | {
@@ -26878,6 +26927,7 @@ export declare const useMessageGroup: (options: {
26878
26927
  error?: boolean | string | undefined;
26879
26928
  toolCallId?: string | undefined;
26880
26929
  content?: string | undefined;
26930
+ createdAt?: number | string | undefined;
26881
26931
  id?: string | number | undefined;
26882
26932
  messageId?: string | number | undefined;
26883
26933
  name?: string | undefined;
@@ -26889,7 +26939,7 @@ export declare const useMessageGroup: (options: {
26889
26939
  name: string;
26890
26940
  outputId: string;
26891
26941
  size: number;
26892
- type: import("..").AIFileType;
26942
+ type: string;
26893
26943
  }[] | undefined;
26894
26944
  extra?: {
26895
26945
  cite: string | {
@@ -27421,6 +27471,7 @@ export declare const useMessageGroup: (options: {
27421
27471
  type: MessageContentType.Function;
27422
27472
  }[] | undefined;
27423
27473
  content: string;
27474
+ createdAt?: number | string | undefined;
27424
27475
  id: number | string;
27425
27476
  messageId: number | string;
27426
27477
  name?: string | undefined;
@@ -27432,7 +27483,7 @@ export declare const useMessageGroup: (options: {
27432
27483
  name: string;
27433
27484
  outputId: string;
27434
27485
  size: number;
27435
- type: import("..").AIFileType;
27486
+ type: string;
27436
27487
  }[] | undefined;
27437
27488
  extra?: {
27438
27489
  cite: string | {
@@ -27962,6 +28013,7 @@ export declare const useMessageGroup: (options: {
27962
28013
  } | undefined;
27963
28014
  } | {
27964
28015
  content: string;
28016
+ createdAt?: number | string | undefined;
27965
28017
  id: number | string;
27966
28018
  messageId: number | string;
27967
28019
  name?: string | undefined;
@@ -27973,7 +28025,7 @@ export declare const useMessageGroup: (options: {
27973
28025
  name: string;
27974
28026
  outputId: string;
27975
28027
  size: number;
27976
- type: import("..").AIFileType;
28028
+ type: string;
27977
28029
  }[] | undefined;
27978
28030
  extra?: {
27979
28031
  cite: string | {
@@ -28503,6 +28555,7 @@ export declare const useMessageGroup: (options: {
28503
28555
  } | undefined;
28504
28556
  } | {
28505
28557
  content: string;
28558
+ createdAt?: number | string | undefined;
28506
28559
  id: number | string;
28507
28560
  messageId: number | string;
28508
28561
  name?: string | undefined;
@@ -28514,7 +28567,7 @@ export declare const useMessageGroup: (options: {
28514
28567
  name: string;
28515
28568
  outputId: string;
28516
28569
  size: number;
28517
- type: import("..").AIFileType;
28570
+ type: string;
28518
28571
  }[] | undefined;
28519
28572
  extra?: {
28520
28573
  cite: string | {
@@ -29044,6 +29097,7 @@ export declare const useMessageGroup: (options: {
29044
29097
  } | undefined;
29045
29098
  } | {
29046
29099
  content: string;
29100
+ createdAt?: number | string | undefined;
29047
29101
  id: number | string;
29048
29102
  messageId: number | string;
29049
29103
  name?: string | undefined;
@@ -29055,7 +29109,7 @@ export declare const useMessageGroup: (options: {
29055
29109
  name: string;
29056
29110
  outputId: string;
29057
29111
  size: number;
29058
- type: import("..").AIFileType;
29112
+ type: string;
29059
29113
  }[] | undefined;
29060
29114
  extra?: {
29061
29115
  cite: string | {
@@ -29585,6 +29639,7 @@ export declare const useMessageGroup: (options: {
29585
29639
  } | undefined;
29586
29640
  } | {
29587
29641
  content: string;
29642
+ createdAt?: number | string | undefined;
29588
29643
  id: number | string;
29589
29644
  messageId: number | string;
29590
29645
  name?: string | undefined;
@@ -29596,7 +29651,7 @@ export declare const useMessageGroup: (options: {
29596
29651
  name: string;
29597
29652
  outputId: string;
29598
29653
  size: number;
29599
- type: import("..").AIFileType;
29654
+ type: string;
29600
29655
  }[] | undefined;
29601
29656
  extra?: {
29602
29657
  cite: string | {
@@ -30126,6 +30181,7 @@ export declare const useMessageGroup: (options: {
30126
30181
  } | undefined;
30127
30182
  } | {
30128
30183
  content: string;
30184
+ createdAt?: number | string | undefined;
30129
30185
  id: number | string;
30130
30186
  messageId: number | string;
30131
30187
  name?: string | undefined;
@@ -30137,7 +30193,7 @@ export declare const useMessageGroup: (options: {
30137
30193
  name: string;
30138
30194
  outputId: string;
30139
30195
  size: number;
30140
- type: import("..").AIFileType;
30196
+ type: string;
30141
30197
  }[] | undefined;
30142
30198
  extra?: {
30143
30199
  cite: string | {
@@ -30667,6 +30723,7 @@ export declare const useMessageGroup: (options: {
30667
30723
  } | undefined;
30668
30724
  } | {
30669
30725
  content: string;
30726
+ createdAt?: number | string | undefined;
30670
30727
  id: number | string;
30671
30728
  messageId: number | string;
30672
30729
  name?: string | undefined;
@@ -30678,7 +30735,7 @@ export declare const useMessageGroup: (options: {
30678
30735
  name: string;
30679
30736
  outputId: string;
30680
30737
  size: number;
30681
- type: import("..").AIFileType;
30738
+ type: string;
30682
30739
  }[] | undefined;
30683
30740
  extra?: {
30684
30741
  cite: string | {
@@ -31208,6 +31265,7 @@ export declare const useMessageGroup: (options: {
31208
31265
  } | undefined;
31209
31266
  } | {
31210
31267
  content: string;
31268
+ createdAt?: number | string | undefined;
31211
31269
  id: number | string;
31212
31270
  messageId: number | string;
31213
31271
  name?: string | undefined;
@@ -31219,7 +31277,7 @@ export declare const useMessageGroup: (options: {
31219
31277
  name: string;
31220
31278
  outputId: string;
31221
31279
  size: number;
31222
- type: import("..").AIFileType;
31280
+ type: string;
31223
31281
  }[] | undefined;
31224
31282
  extra?: {
31225
31283
  cite: string | {
@@ -31749,6 +31807,7 @@ export declare const useMessageGroup: (options: {
31749
31807
  } | undefined;
31750
31808
  } | {
31751
31809
  content: string;
31810
+ createdAt?: number | string | undefined;
31752
31811
  id: number | string;
31753
31812
  messageId: number | string;
31754
31813
  name?: string | undefined;
@@ -31760,7 +31819,7 @@ export declare const useMessageGroup: (options: {
31760
31819
  name: string;
31761
31820
  outputId: string;
31762
31821
  size: number;
31763
- type: import("..").AIFileType;
31822
+ type: string;
31764
31823
  }[] | undefined;
31765
31824
  extra?: {
31766
31825
  cite: string | {
@@ -32290,6 +32349,7 @@ export declare const useMessageGroup: (options: {
32290
32349
  } | undefined;
32291
32350
  } | {
32292
32351
  content: string;
32352
+ createdAt?: number | string | undefined;
32293
32353
  id: number | string;
32294
32354
  messageId: number | string;
32295
32355
  name?: string | undefined;
@@ -32301,7 +32361,7 @@ export declare const useMessageGroup: (options: {
32301
32361
  name: string;
32302
32362
  outputId: string;
32303
32363
  size: number;
32304
- type: import("..").AIFileType;
32364
+ type: string;
32305
32365
  }[] | undefined;
32306
32366
  extra?: {
32307
32367
  cite: string | {
@@ -32917,6 +32977,7 @@ export declare const useMessageGroup: (options: {
32917
32977
  runId?: string | undefined;
32918
32978
  threadId?: string | undefined;
32919
32979
  };
32980
+ createdAt?: number | string | undefined;
32920
32981
  id: number | string;
32921
32982
  messageId: number | string;
32922
32983
  name?: string | undefined;
@@ -32928,7 +32989,7 @@ export declare const useMessageGroup: (options: {
32928
32989
  name: string;
32929
32990
  outputId: string;
32930
32991
  size: number;
32931
- type: import("..").AIFileType;
32992
+ type: string;
32932
32993
  }[] | undefined;
32933
32994
  extra?: {
32934
32995
  cite: string | {
@@ -33458,6 +33519,7 @@ export declare const useMessageGroup: (options: {
33458
33519
  } | undefined;
33459
33520
  } | {
33460
33521
  content: string;
33522
+ createdAt?: number | string | undefined;
33461
33523
  id: number | string;
33462
33524
  messageId: number | string;
33463
33525
  name?: string | undefined;
@@ -33469,7 +33531,7 @@ export declare const useMessageGroup: (options: {
33469
33531
  name: string;
33470
33532
  outputId: string;
33471
33533
  size: number;
33472
- type: import("..").AIFileType;
33534
+ type: string;
33473
33535
  }[] | undefined;
33474
33536
  extra?: {
33475
33537
  cite: string | {
@@ -33999,6 +34061,7 @@ export declare const useMessageGroup: (options: {
33999
34061
  } | undefined;
34000
34062
  } | {
34001
34063
  content: string;
34064
+ createdAt?: number | string | undefined;
34002
34065
  id: number | string;
34003
34066
  messageId: number | string;
34004
34067
  name?: string | undefined;
@@ -34010,7 +34073,7 @@ export declare const useMessageGroup: (options: {
34010
34073
  name: string;
34011
34074
  outputId: string;
34012
34075
  size: number;
34013
- type: import("..").AIFileType;
34076
+ type: string;
34014
34077
  }[] | undefined;
34015
34078
  extra?: {
34016
34079
  cite: string | {
@@ -34541,6 +34604,7 @@ export declare const useMessageGroup: (options: {
34541
34604
  } | {
34542
34605
  duration?: number | undefined;
34543
34606
  content: string[];
34607
+ createdAt?: number | string | undefined;
34544
34608
  id: number | string;
34545
34609
  messageId: number | string;
34546
34610
  name?: string | undefined;
@@ -34552,7 +34616,7 @@ export declare const useMessageGroup: (options: {
34552
34616
  name: string;
34553
34617
  outputId: string;
34554
34618
  size: number;
34555
- type: import("..").AIFileType;
34619
+ type: string;
34556
34620
  }[] | undefined;
34557
34621
  extra?: {
34558
34622
  cite: string | {
@@ -35082,6 +35146,7 @@ export declare const useMessageGroup: (options: {
35082
35146
  } | undefined;
35083
35147
  } | {
35084
35148
  content: string;
35149
+ createdAt?: number | string | undefined;
35085
35150
  id: number | string;
35086
35151
  messageId: number | string;
35087
35152
  name?: string | undefined;
@@ -35093,7 +35158,7 @@ export declare const useMessageGroup: (options: {
35093
35158
  name: string;
35094
35159
  outputId: string;
35095
35160
  size: number;
35096
- type: import("..").AIFileType;
35161
+ type: string;
35097
35162
  }[] | undefined;
35098
35163
  extra?: {
35099
35164
  cite: string | {
@@ -35623,6 +35688,7 @@ export declare const useMessageGroup: (options: {
35623
35688
  } | undefined;
35624
35689
  } | {
35625
35690
  content: string;
35691
+ createdAt?: number | string | undefined;
35626
35692
  id: number | string;
35627
35693
  messageId: number | string;
35628
35694
  name?: string | undefined;
@@ -35634,7 +35700,7 @@ export declare const useMessageGroup: (options: {
35634
35700
  name: string;
35635
35701
  outputId: string;
35636
35702
  size: number;
35637
- type: import("..").AIFileType;
35703
+ type: string;
35638
35704
  }[] | undefined;
35639
35705
  extra?: {
35640
35706
  cite: string | {
@@ -36164,6 +36230,7 @@ export declare const useMessageGroup: (options: {
36164
36230
  } | undefined;
36165
36231
  } | {
36166
36232
  content: string;
36233
+ createdAt?: number | string | undefined;
36167
36234
  id: number | string;
36168
36235
  messageId: number | string;
36169
36236
  name?: string | undefined;
@@ -36175,7 +36242,7 @@ export declare const useMessageGroup: (options: {
36175
36242
  name: string;
36176
36243
  outputId: string;
36177
36244
  size: number;
36178
- type: import("..").AIFileType;
36245
+ type: string;
36179
36246
  }[] | undefined;
36180
36247
  extra?: {
36181
36248
  cite: string | {
@@ -36705,6 +36772,7 @@ export declare const useMessageGroup: (options: {
36705
36772
  } | undefined;
36706
36773
  } | {
36707
36774
  content: string;
36775
+ createdAt?: number | string | undefined;
36708
36776
  id: number | string;
36709
36777
  messageId: number | string;
36710
36778
  name?: string | undefined;
@@ -36716,7 +36784,7 @@ export declare const useMessageGroup: (options: {
36716
36784
  name: string;
36717
36785
  outputId: string;
36718
36786
  size: number;
36719
- type: import("..").AIFileType;
36787
+ type: string;
36720
36788
  }[] | undefined;
36721
36789
  extra?: {
36722
36790
  cite: string | {
@@ -37246,6 +37314,7 @@ export declare const useMessageGroup: (options: {
37246
37314
  } | undefined;
37247
37315
  } | {
37248
37316
  content: string;
37317
+ createdAt?: number | string | undefined;
37249
37318
  id: number | string;
37250
37319
  messageId: number | string;
37251
37320
  name?: string | undefined;
@@ -37257,7 +37326,7 @@ export declare const useMessageGroup: (options: {
37257
37326
  name: string;
37258
37327
  outputId: string;
37259
37328
  size: number;
37260
- type: import("..").AIFileType;
37329
+ type: string;
37261
37330
  }[] | undefined;
37262
37331
  extra?: {
37263
37332
  cite: string | {
@@ -37787,6 +37856,7 @@ export declare const useMessageGroup: (options: {
37787
37856
  } | undefined;
37788
37857
  } | {
37789
37858
  content: string;
37859
+ createdAt?: number | string | undefined;
37790
37860
  id: number | string;
37791
37861
  messageId: number | string;
37792
37862
  name?: string | undefined;
@@ -37798,7 +37868,7 @@ export declare const useMessageGroup: (options: {
37798
37868
  name: string;
37799
37869
  outputId: string;
37800
37870
  size: number;
37801
- type: import("..").AIFileType;
37871
+ type: string;
37802
37872
  }[] | undefined;
37803
37873
  extra?: {
37804
37874
  cite: string | {
@@ -38331,6 +38401,7 @@ export declare const useMessageGroup: (options: {
38331
38401
  error?: boolean | string | undefined;
38332
38402
  toolCallId: string;
38333
38403
  content: string;
38404
+ createdAt?: number | string | undefined;
38334
38405
  id: number | string;
38335
38406
  messageId: number | string;
38336
38407
  name?: string | undefined;
@@ -38342,7 +38413,7 @@ export declare const useMessageGroup: (options: {
38342
38413
  name: string;
38343
38414
  outputId: string;
38344
38415
  size: number;
38345
- type: import("..").AIFileType;
38416
+ type: string;
38346
38417
  }[] | undefined;
38347
38418
  extra?: {
38348
38419
  cite: string | {
@@ -38882,6 +38953,7 @@ export declare const useMessageGroup: (options: {
38882
38953
  text: string;
38883
38954
  type: MessageContentType.Text;
38884
38955
  })[];
38956
+ createdAt?: number | string | undefined;
38885
38957
  id: number | string;
38886
38958
  messageId: number | string;
38887
38959
  name?: string | undefined;
@@ -38893,7 +38965,7 @@ export declare const useMessageGroup: (options: {
38893
38965
  name: string;
38894
38966
  outputId: string;
38895
38967
  size: number;
38896
- type: import("..").AIFileType;
38968
+ type: string;
38897
38969
  }[] | undefined;
38898
38970
  extra?: {
38899
38971
  cite: string | {