@blueking/chat-x 0.0.49-beta.1 → 0.0.49-beta.10

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