@blueking/chat-x 0.0.50 → 0.0.51-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ag-ui/types/contents.d.ts +2 -0
- package/dist/ag-ui/types/messages.d.ts +5 -0
- package/dist/common/constants.d.ts +1 -1
- package/dist/components/ai-buttons/file-upload-btn/file-upload-btn.vue.d.ts +0 -2
- package/dist/components/chat-content/file-content/file-content.vue.d.ts +5 -2
- package/dist/components/chat-content/file-content/upload-file-item.vue.d.ts +12 -0
- package/dist/components/chat-content/file-content/upload-image-item.vue.d.ts +21 -0
- package/dist/components/chat-input/ai-slash-editor/ai-slash-editor.vue.d.ts +1 -1
- package/dist/components/chat-input/build-default-placeholder.d.ts +7 -0
- package/dist/components/chat-input/chat-input.vue.d.ts +1 -1
- package/dist/components/chat-message/message-container/message-container.vue.d.ts +1 -0
- package/dist/components/chat-message/message-render/message-render.vue.d.ts +2 -0
- package/dist/components/chat-message/user-message/user-message.vue.d.ts +3 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/components/message-tools/message-time/format-message-time.d.ts +8 -0
- package/dist/components/message-tools/message-time/message-time.vue.d.ts +8 -0
- package/dist/components/message-tools/message-tools.vue.d.ts +11 -1
- package/dist/composables/use-custom-tab.d.ts +5 -3
- package/dist/composables/use-global-config.d.ts +3 -0
- package/dist/composables/use-message-group.d.ts +150 -72
- package/dist/icons/execution.d.ts +6 -0
- package/dist/icons/tools.d.ts +3 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3124 -2837
- package/dist/index.js.map +1 -1
- package/dist/lang/lang.d.ts +8 -7
- package/dist/mcp/generated/docs/ai-slash-input.md +2 -0
- package/dist/mcp/generated/docs/assistant-message.md +9 -7
- package/dist/mcp/generated/docs/chat-container.md +38 -32
- package/dist/mcp/generated/docs/chat-input.md +18 -12
- package/dist/mcp/generated/docs/cite-content.md +3 -3
- package/dist/mcp/generated/docs/desc-panel.md +32 -10
- package/dist/mcp/generated/docs/execution-summary.md +3 -3
- package/dist/mcp/generated/docs/file-artifact-panel.md +6 -4
- package/dist/mcp/generated/docs/file-content.md +89 -73
- package/dist/mcp/generated/docs/file-upload-btn.md +16 -18
- package/dist/mcp/generated/docs/message-container.md +3 -0
- package/dist/mcp/generated/docs/message-render.md +2 -1
- package/dist/mcp/generated/docs/message-time.md +180 -0
- package/dist/mcp/generated/docs/message-tools.md +47 -12
- package/dist/mcp/generated/docs/messages.md +9 -0
- package/dist/mcp/generated/docs/toolcall-render.md +82 -43
- package/dist/mcp/generated/docs/use-artifact-preview.md +19 -17
- package/dist/mcp/generated/docs/use-custom-tab.md +12 -8
- package/dist/mcp/generated/docs/use-global-config.md +15 -5
- package/dist/mcp/generated/docs/user-message.md +9 -0
- package/dist/mcp/generated/docs/user-question-card.md +2 -0
- package/dist/mcp/generated/index.json +46 -6
- package/dist/types/input.d.ts +6 -0
- package/dist/utils/file.d.ts +7 -1
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/merge-tools-by-id.d.ts +6 -0
- package/dist/utils/upload-file.d.ts +35 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -332,7 +333,7 @@ export declare const useMessageGroup: (options: {
|
|
|
332
333
|
multiple?: boolean | undefined;
|
|
333
334
|
placeholder?: string | undefined;
|
|
334
335
|
list?: any[] | undefined;
|
|
335
|
-
tagTheme?: "" | "
|
|
336
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
336
337
|
behavior?: "normal" | "simplicity" | undefined;
|
|
337
338
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
338
339
|
scrollHeight?: number | undefined;
|
|
@@ -596,6 +597,7 @@ export declare const useMessageGroup: (options: {
|
|
|
596
597
|
description?: string | undefined;
|
|
597
598
|
mcpName?: string | undefined;
|
|
598
599
|
name: string;
|
|
600
|
+
type?: import("..").FunctionCallType | undefined;
|
|
599
601
|
};
|
|
600
602
|
id: string;
|
|
601
603
|
toolMessage?: {
|
|
@@ -603,6 +605,7 @@ export declare const useMessageGroup: (options: {
|
|
|
603
605
|
error?: boolean | string | undefined;
|
|
604
606
|
toolCallId?: string | undefined;
|
|
605
607
|
content?: string | undefined;
|
|
608
|
+
createdAt?: number | string | undefined;
|
|
606
609
|
id?: string | number | undefined;
|
|
607
610
|
messageId?: string | number | undefined;
|
|
608
611
|
name?: string | undefined;
|
|
@@ -885,7 +888,7 @@ export declare const useMessageGroup: (options: {
|
|
|
885
888
|
multiple?: boolean | undefined;
|
|
886
889
|
placeholder?: string | undefined;
|
|
887
890
|
list?: any[] | undefined;
|
|
888
|
-
tagTheme?: "" | "
|
|
891
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
889
892
|
behavior?: "normal" | "simplicity" | undefined;
|
|
890
893
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
891
894
|
scrollHeight?: number | undefined;
|
|
@@ -1146,6 +1149,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1146
1149
|
type: MessageContentType.Function;
|
|
1147
1150
|
}[] | undefined;
|
|
1148
1151
|
content: string;
|
|
1152
|
+
createdAt?: number | string | undefined;
|
|
1149
1153
|
id: number | string;
|
|
1150
1154
|
messageId: number | string;
|
|
1151
1155
|
name?: string | undefined;
|
|
@@ -1428,7 +1432,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1428
1432
|
multiple?: boolean | undefined;
|
|
1429
1433
|
placeholder?: string | undefined;
|
|
1430
1434
|
list?: any[] | undefined;
|
|
1431
|
-
tagTheme?: "" | "
|
|
1435
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
1432
1436
|
behavior?: "normal" | "simplicity" | undefined;
|
|
1433
1437
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
1434
1438
|
scrollHeight?: number | undefined;
|
|
@@ -1687,6 +1691,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1687
1691
|
} | undefined;
|
|
1688
1692
|
} | {
|
|
1689
1693
|
content: string;
|
|
1694
|
+
createdAt?: number | string | undefined;
|
|
1690
1695
|
id: number | string;
|
|
1691
1696
|
messageId: number | string;
|
|
1692
1697
|
name?: string | undefined;
|
|
@@ -1969,7 +1974,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1969
1974
|
multiple?: boolean | undefined;
|
|
1970
1975
|
placeholder?: string | undefined;
|
|
1971
1976
|
list?: any[] | undefined;
|
|
1972
|
-
tagTheme?: "" | "
|
|
1977
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
1973
1978
|
behavior?: "normal" | "simplicity" | undefined;
|
|
1974
1979
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
1975
1980
|
scrollHeight?: number | undefined;
|
|
@@ -2228,6 +2233,7 @@ export declare const useMessageGroup: (options: {
|
|
|
2228
2233
|
} | undefined;
|
|
2229
2234
|
} | {
|
|
2230
2235
|
content: string;
|
|
2236
|
+
createdAt?: number | string | undefined;
|
|
2231
2237
|
id: number | string;
|
|
2232
2238
|
messageId: number | string;
|
|
2233
2239
|
name?: string | undefined;
|
|
@@ -2510,7 +2516,7 @@ export declare const useMessageGroup: (options: {
|
|
|
2510
2516
|
multiple?: boolean | undefined;
|
|
2511
2517
|
placeholder?: string | undefined;
|
|
2512
2518
|
list?: any[] | undefined;
|
|
2513
|
-
tagTheme?: "" | "
|
|
2519
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
2514
2520
|
behavior?: "normal" | "simplicity" | undefined;
|
|
2515
2521
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
2516
2522
|
scrollHeight?: number | undefined;
|
|
@@ -2769,6 +2775,7 @@ export declare const useMessageGroup: (options: {
|
|
|
2769
2775
|
} | undefined;
|
|
2770
2776
|
} | {
|
|
2771
2777
|
content: string;
|
|
2778
|
+
createdAt?: number | string | undefined;
|
|
2772
2779
|
id: number | string;
|
|
2773
2780
|
messageId: number | string;
|
|
2774
2781
|
name?: string | undefined;
|
|
@@ -3051,7 +3058,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3051
3058
|
multiple?: boolean | undefined;
|
|
3052
3059
|
placeholder?: string | undefined;
|
|
3053
3060
|
list?: any[] | undefined;
|
|
3054
|
-
tagTheme?: "" | "
|
|
3061
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
3055
3062
|
behavior?: "normal" | "simplicity" | undefined;
|
|
3056
3063
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
3057
3064
|
scrollHeight?: number | undefined;
|
|
@@ -3310,6 +3317,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3310
3317
|
} | undefined;
|
|
3311
3318
|
} | {
|
|
3312
3319
|
content: string;
|
|
3320
|
+
createdAt?: number | string | undefined;
|
|
3313
3321
|
id: number | string;
|
|
3314
3322
|
messageId: number | string;
|
|
3315
3323
|
name?: string | undefined;
|
|
@@ -3592,7 +3600,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3592
3600
|
multiple?: boolean | undefined;
|
|
3593
3601
|
placeholder?: string | undefined;
|
|
3594
3602
|
list?: any[] | undefined;
|
|
3595
|
-
tagTheme?: "" | "
|
|
3603
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
3596
3604
|
behavior?: "normal" | "simplicity" | undefined;
|
|
3597
3605
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
3598
3606
|
scrollHeight?: number | undefined;
|
|
@@ -3851,6 +3859,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3851
3859
|
} | undefined;
|
|
3852
3860
|
} | {
|
|
3853
3861
|
content: string;
|
|
3862
|
+
createdAt?: number | string | undefined;
|
|
3854
3863
|
id: number | string;
|
|
3855
3864
|
messageId: number | string;
|
|
3856
3865
|
name?: string | undefined;
|
|
@@ -4133,7 +4142,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4133
4142
|
multiple?: boolean | undefined;
|
|
4134
4143
|
placeholder?: string | undefined;
|
|
4135
4144
|
list?: any[] | undefined;
|
|
4136
|
-
tagTheme?: "" | "
|
|
4145
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
4137
4146
|
behavior?: "normal" | "simplicity" | undefined;
|
|
4138
4147
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
4139
4148
|
scrollHeight?: number | undefined;
|
|
@@ -4392,6 +4401,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4392
4401
|
} | undefined;
|
|
4393
4402
|
} | {
|
|
4394
4403
|
content: string;
|
|
4404
|
+
createdAt?: number | string | undefined;
|
|
4395
4405
|
id: number | string;
|
|
4396
4406
|
messageId: number | string;
|
|
4397
4407
|
name?: string | undefined;
|
|
@@ -4674,7 +4684,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4674
4684
|
multiple?: boolean | undefined;
|
|
4675
4685
|
placeholder?: string | undefined;
|
|
4676
4686
|
list?: any[] | undefined;
|
|
4677
|
-
tagTheme?: "" | "
|
|
4687
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
4678
4688
|
behavior?: "normal" | "simplicity" | undefined;
|
|
4679
4689
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
4680
4690
|
scrollHeight?: number | undefined;
|
|
@@ -4933,6 +4943,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4933
4943
|
} | undefined;
|
|
4934
4944
|
} | {
|
|
4935
4945
|
content: string;
|
|
4946
|
+
createdAt?: number | string | undefined;
|
|
4936
4947
|
id: number | string;
|
|
4937
4948
|
messageId: number | string;
|
|
4938
4949
|
name?: string | undefined;
|
|
@@ -5215,7 +5226,7 @@ export declare const useMessageGroup: (options: {
|
|
|
5215
5226
|
multiple?: boolean | undefined;
|
|
5216
5227
|
placeholder?: string | undefined;
|
|
5217
5228
|
list?: any[] | undefined;
|
|
5218
|
-
tagTheme?: "" | "
|
|
5229
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
5219
5230
|
behavior?: "normal" | "simplicity" | undefined;
|
|
5220
5231
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
5221
5232
|
scrollHeight?: number | undefined;
|
|
@@ -5474,6 +5485,7 @@ export declare const useMessageGroup: (options: {
|
|
|
5474
5485
|
} | undefined;
|
|
5475
5486
|
} | {
|
|
5476
5487
|
content: string;
|
|
5488
|
+
createdAt?: number | string | undefined;
|
|
5477
5489
|
id: number | string;
|
|
5478
5490
|
messageId: number | string;
|
|
5479
5491
|
name?: string | undefined;
|
|
@@ -5756,7 +5768,7 @@ export declare const useMessageGroup: (options: {
|
|
|
5756
5768
|
multiple?: boolean | undefined;
|
|
5757
5769
|
placeholder?: string | undefined;
|
|
5758
5770
|
list?: any[] | undefined;
|
|
5759
|
-
tagTheme?: "" | "
|
|
5771
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
5760
5772
|
behavior?: "normal" | "simplicity" | undefined;
|
|
5761
5773
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
5762
5774
|
scrollHeight?: number | undefined;
|
|
@@ -6015,6 +6027,7 @@ export declare const useMessageGroup: (options: {
|
|
|
6015
6027
|
} | undefined;
|
|
6016
6028
|
} | {
|
|
6017
6029
|
content: string;
|
|
6030
|
+
createdAt?: number | string | undefined;
|
|
6018
6031
|
id: number | string;
|
|
6019
6032
|
messageId: number | string;
|
|
6020
6033
|
name?: string | undefined;
|
|
@@ -6297,7 +6310,7 @@ export declare const useMessageGroup: (options: {
|
|
|
6297
6310
|
multiple?: boolean | undefined;
|
|
6298
6311
|
placeholder?: string | undefined;
|
|
6299
6312
|
list?: any[] | undefined;
|
|
6300
|
-
tagTheme?: "" | "
|
|
6313
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
6301
6314
|
behavior?: "normal" | "simplicity" | undefined;
|
|
6302
6315
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
6303
6316
|
scrollHeight?: number | undefined;
|
|
@@ -6642,6 +6655,7 @@ export declare const useMessageGroup: (options: {
|
|
|
6642
6655
|
runId?: string | undefined;
|
|
6643
6656
|
threadId?: string | undefined;
|
|
6644
6657
|
};
|
|
6658
|
+
createdAt?: number | string | undefined;
|
|
6645
6659
|
id: number | string;
|
|
6646
6660
|
messageId: number | string;
|
|
6647
6661
|
name?: string | undefined;
|
|
@@ -6924,7 +6938,7 @@ export declare const useMessageGroup: (options: {
|
|
|
6924
6938
|
multiple?: boolean | undefined;
|
|
6925
6939
|
placeholder?: string | undefined;
|
|
6926
6940
|
list?: any[] | undefined;
|
|
6927
|
-
tagTheme?: "" | "
|
|
6941
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
6928
6942
|
behavior?: "normal" | "simplicity" | undefined;
|
|
6929
6943
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
6930
6944
|
scrollHeight?: number | undefined;
|
|
@@ -7183,6 +7197,7 @@ export declare const useMessageGroup: (options: {
|
|
|
7183
7197
|
} | undefined;
|
|
7184
7198
|
} | {
|
|
7185
7199
|
content: string;
|
|
7200
|
+
createdAt?: number | string | undefined;
|
|
7186
7201
|
id: number | string;
|
|
7187
7202
|
messageId: number | string;
|
|
7188
7203
|
name?: string | undefined;
|
|
@@ -7465,7 +7480,7 @@ export declare const useMessageGroup: (options: {
|
|
|
7465
7480
|
multiple?: boolean | undefined;
|
|
7466
7481
|
placeholder?: string | undefined;
|
|
7467
7482
|
list?: any[] | undefined;
|
|
7468
|
-
tagTheme?: "" | "
|
|
7483
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
7469
7484
|
behavior?: "normal" | "simplicity" | undefined;
|
|
7470
7485
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
7471
7486
|
scrollHeight?: number | undefined;
|
|
@@ -7724,6 +7739,7 @@ export declare const useMessageGroup: (options: {
|
|
|
7724
7739
|
} | undefined;
|
|
7725
7740
|
} | {
|
|
7726
7741
|
content: string;
|
|
7742
|
+
createdAt?: number | string | undefined;
|
|
7727
7743
|
id: number | string;
|
|
7728
7744
|
messageId: number | string;
|
|
7729
7745
|
name?: string | undefined;
|
|
@@ -8006,7 +8022,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8006
8022
|
multiple?: boolean | undefined;
|
|
8007
8023
|
placeholder?: string | undefined;
|
|
8008
8024
|
list?: any[] | undefined;
|
|
8009
|
-
tagTheme?: "" | "
|
|
8025
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
8010
8026
|
behavior?: "normal" | "simplicity" | undefined;
|
|
8011
8027
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
8012
8028
|
scrollHeight?: number | undefined;
|
|
@@ -8266,6 +8282,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8266
8282
|
} | {
|
|
8267
8283
|
duration?: number | undefined;
|
|
8268
8284
|
content: string[];
|
|
8285
|
+
createdAt?: number | string | undefined;
|
|
8269
8286
|
id: number | string;
|
|
8270
8287
|
messageId: number | string;
|
|
8271
8288
|
name?: string | undefined;
|
|
@@ -8548,7 +8565,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8548
8565
|
multiple?: boolean | undefined;
|
|
8549
8566
|
placeholder?: string | undefined;
|
|
8550
8567
|
list?: any[] | undefined;
|
|
8551
|
-
tagTheme?: "" | "
|
|
8568
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
8552
8569
|
behavior?: "normal" | "simplicity" | undefined;
|
|
8553
8570
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
8554
8571
|
scrollHeight?: number | undefined;
|
|
@@ -8807,6 +8824,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8807
8824
|
} | undefined;
|
|
8808
8825
|
} | {
|
|
8809
8826
|
content: string;
|
|
8827
|
+
createdAt?: number | string | undefined;
|
|
8810
8828
|
id: number | string;
|
|
8811
8829
|
messageId: number | string;
|
|
8812
8830
|
name?: string | undefined;
|
|
@@ -9089,7 +9107,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9089
9107
|
multiple?: boolean | undefined;
|
|
9090
9108
|
placeholder?: string | undefined;
|
|
9091
9109
|
list?: any[] | undefined;
|
|
9092
|
-
tagTheme?: "" | "
|
|
9110
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
9093
9111
|
behavior?: "normal" | "simplicity" | undefined;
|
|
9094
9112
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
9095
9113
|
scrollHeight?: number | undefined;
|
|
@@ -9348,6 +9366,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9348
9366
|
} | undefined;
|
|
9349
9367
|
} | {
|
|
9350
9368
|
content: string;
|
|
9369
|
+
createdAt?: number | string | undefined;
|
|
9351
9370
|
id: number | string;
|
|
9352
9371
|
messageId: number | string;
|
|
9353
9372
|
name?: string | undefined;
|
|
@@ -9630,7 +9649,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9630
9649
|
multiple?: boolean | undefined;
|
|
9631
9650
|
placeholder?: string | undefined;
|
|
9632
9651
|
list?: any[] | undefined;
|
|
9633
|
-
tagTheme?: "" | "
|
|
9652
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
9634
9653
|
behavior?: "normal" | "simplicity" | undefined;
|
|
9635
9654
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
9636
9655
|
scrollHeight?: number | undefined;
|
|
@@ -9889,6 +9908,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9889
9908
|
} | undefined;
|
|
9890
9909
|
} | {
|
|
9891
9910
|
content: string;
|
|
9911
|
+
createdAt?: number | string | undefined;
|
|
9892
9912
|
id: number | string;
|
|
9893
9913
|
messageId: number | string;
|
|
9894
9914
|
name?: string | undefined;
|
|
@@ -10171,7 +10191,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10171
10191
|
multiple?: boolean | undefined;
|
|
10172
10192
|
placeholder?: string | undefined;
|
|
10173
10193
|
list?: any[] | undefined;
|
|
10174
|
-
tagTheme?: "" | "
|
|
10194
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
10175
10195
|
behavior?: "normal" | "simplicity" | undefined;
|
|
10176
10196
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
10177
10197
|
scrollHeight?: number | undefined;
|
|
@@ -10430,6 +10450,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10430
10450
|
} | undefined;
|
|
10431
10451
|
} | {
|
|
10432
10452
|
content: string;
|
|
10453
|
+
createdAt?: number | string | undefined;
|
|
10433
10454
|
id: number | string;
|
|
10434
10455
|
messageId: number | string;
|
|
10435
10456
|
name?: string | undefined;
|
|
@@ -10712,7 +10733,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10712
10733
|
multiple?: boolean | undefined;
|
|
10713
10734
|
placeholder?: string | undefined;
|
|
10714
10735
|
list?: any[] | undefined;
|
|
10715
|
-
tagTheme?: "" | "
|
|
10736
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
10716
10737
|
behavior?: "normal" | "simplicity" | undefined;
|
|
10717
10738
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
10718
10739
|
scrollHeight?: number | undefined;
|
|
@@ -10971,6 +10992,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10971
10992
|
} | undefined;
|
|
10972
10993
|
} | {
|
|
10973
10994
|
content: string;
|
|
10995
|
+
createdAt?: number | string | undefined;
|
|
10974
10996
|
id: number | string;
|
|
10975
10997
|
messageId: number | string;
|
|
10976
10998
|
name?: string | undefined;
|
|
@@ -11253,7 +11275,7 @@ export declare const useMessageGroup: (options: {
|
|
|
11253
11275
|
multiple?: boolean | undefined;
|
|
11254
11276
|
placeholder?: string | undefined;
|
|
11255
11277
|
list?: any[] | undefined;
|
|
11256
|
-
tagTheme?: "" | "
|
|
11278
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
11257
11279
|
behavior?: "normal" | "simplicity" | undefined;
|
|
11258
11280
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
11259
11281
|
scrollHeight?: number | undefined;
|
|
@@ -11512,6 +11534,7 @@ export declare const useMessageGroup: (options: {
|
|
|
11512
11534
|
} | undefined;
|
|
11513
11535
|
} | {
|
|
11514
11536
|
content: string;
|
|
11537
|
+
createdAt?: number | string | undefined;
|
|
11515
11538
|
id: number | string;
|
|
11516
11539
|
messageId: number | string;
|
|
11517
11540
|
name?: string | undefined;
|
|
@@ -11794,7 +11817,7 @@ export declare const useMessageGroup: (options: {
|
|
|
11794
11817
|
multiple?: boolean | undefined;
|
|
11795
11818
|
placeholder?: string | undefined;
|
|
11796
11819
|
list?: any[] | undefined;
|
|
11797
|
-
tagTheme?: "" | "
|
|
11820
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
11798
11821
|
behavior?: "normal" | "simplicity" | undefined;
|
|
11799
11822
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
11800
11823
|
scrollHeight?: number | undefined;
|
|
@@ -12056,6 +12079,7 @@ export declare const useMessageGroup: (options: {
|
|
|
12056
12079
|
error?: boolean | string | undefined;
|
|
12057
12080
|
toolCallId: string;
|
|
12058
12081
|
content: string;
|
|
12082
|
+
createdAt?: number | string | undefined;
|
|
12059
12083
|
id: number | string;
|
|
12060
12084
|
messageId: number | string;
|
|
12061
12085
|
name?: string | undefined;
|
|
@@ -12338,7 +12362,7 @@ export declare const useMessageGroup: (options: {
|
|
|
12338
12362
|
multiple?: boolean | undefined;
|
|
12339
12363
|
placeholder?: string | undefined;
|
|
12340
12364
|
list?: any[] | undefined;
|
|
12341
|
-
tagTheme?: "" | "
|
|
12365
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
12342
12366
|
behavior?: "normal" | "simplicity" | undefined;
|
|
12343
12367
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
12344
12368
|
scrollHeight?: number | undefined;
|
|
@@ -12601,12 +12625,14 @@ export declare const useMessageGroup: (options: {
|
|
|
12601
12625
|
filename?: string | undefined;
|
|
12602
12626
|
id?: string | undefined;
|
|
12603
12627
|
mimeType: string;
|
|
12628
|
+
size?: number | undefined;
|
|
12604
12629
|
type: MessageContentType.Binary;
|
|
12605
12630
|
url?: string | undefined;
|
|
12606
12631
|
} | {
|
|
12607
12632
|
text: string;
|
|
12608
12633
|
type: MessageContentType.Text;
|
|
12609
12634
|
})[];
|
|
12635
|
+
createdAt?: number | string | undefined;
|
|
12610
12636
|
id: number | string;
|
|
12611
12637
|
messageId: number | string;
|
|
12612
12638
|
name?: string | undefined;
|
|
@@ -12889,7 +12915,7 @@ export declare const useMessageGroup: (options: {
|
|
|
12889
12915
|
multiple?: boolean | undefined;
|
|
12890
12916
|
placeholder?: string | undefined;
|
|
12891
12917
|
list?: any[] | undefined;
|
|
12892
|
-
tagTheme?: "" | "
|
|
12918
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
12893
12919
|
behavior?: "normal" | "simplicity" | undefined;
|
|
12894
12920
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
12895
12921
|
scrollHeight?: number | undefined;
|
|
@@ -13184,6 +13210,7 @@ export declare const useMessageGroup: (options: {
|
|
|
13184
13210
|
originFile: string;
|
|
13185
13211
|
url: string;
|
|
13186
13212
|
}[];
|
|
13213
|
+
createdAt?: number | string | undefined;
|
|
13187
13214
|
id: number | string;
|
|
13188
13215
|
messageId: number | string;
|
|
13189
13216
|
name?: string | undefined;
|
|
@@ -13466,7 +13493,7 @@ export declare const useMessageGroup: (options: {
|
|
|
13466
13493
|
multiple?: boolean | undefined;
|
|
13467
13494
|
placeholder?: string | undefined;
|
|
13468
13495
|
list?: any[] | undefined;
|
|
13469
|
-
tagTheme?: "" | "
|
|
13496
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
13470
13497
|
behavior?: "normal" | "simplicity" | undefined;
|
|
13471
13498
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
13472
13499
|
scrollHeight?: number | undefined;
|
|
@@ -13730,6 +13757,7 @@ export declare const useMessageGroup: (options: {
|
|
|
13730
13757
|
description?: string | undefined;
|
|
13731
13758
|
mcpName?: string | undefined;
|
|
13732
13759
|
name: string;
|
|
13760
|
+
type?: import("..").FunctionCallType | undefined;
|
|
13733
13761
|
};
|
|
13734
13762
|
id: string;
|
|
13735
13763
|
toolMessage?: {
|
|
@@ -13737,6 +13765,7 @@ export declare const useMessageGroup: (options: {
|
|
|
13737
13765
|
error?: boolean | string | undefined;
|
|
13738
13766
|
toolCallId?: string | undefined;
|
|
13739
13767
|
content?: string | undefined;
|
|
13768
|
+
createdAt?: number | string | undefined;
|
|
13740
13769
|
id?: string | number | undefined;
|
|
13741
13770
|
messageId?: string | number | undefined;
|
|
13742
13771
|
name?: string | undefined;
|
|
@@ -14019,7 +14048,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14019
14048
|
multiple?: boolean | undefined;
|
|
14020
14049
|
placeholder?: string | undefined;
|
|
14021
14050
|
list?: any[] | undefined;
|
|
14022
|
-
tagTheme?: "" | "
|
|
14051
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
14023
14052
|
behavior?: "normal" | "simplicity" | undefined;
|
|
14024
14053
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
14025
14054
|
scrollHeight?: number | undefined;
|
|
@@ -14280,6 +14309,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14280
14309
|
type: MessageContentType.Function;
|
|
14281
14310
|
}[] | undefined;
|
|
14282
14311
|
content: string;
|
|
14312
|
+
createdAt?: number | string | undefined;
|
|
14283
14313
|
id: number | string;
|
|
14284
14314
|
messageId: number | string;
|
|
14285
14315
|
name?: string | undefined;
|
|
@@ -14562,7 +14592,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14562
14592
|
multiple?: boolean | undefined;
|
|
14563
14593
|
placeholder?: string | undefined;
|
|
14564
14594
|
list?: any[] | undefined;
|
|
14565
|
-
tagTheme?: "" | "
|
|
14595
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
14566
14596
|
behavior?: "normal" | "simplicity" | undefined;
|
|
14567
14597
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
14568
14598
|
scrollHeight?: number | undefined;
|
|
@@ -14821,6 +14851,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14821
14851
|
} | undefined;
|
|
14822
14852
|
} | {
|
|
14823
14853
|
content: string;
|
|
14854
|
+
createdAt?: number | string | undefined;
|
|
14824
14855
|
id: number | string;
|
|
14825
14856
|
messageId: number | string;
|
|
14826
14857
|
name?: string | undefined;
|
|
@@ -15103,7 +15134,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15103
15134
|
multiple?: boolean | undefined;
|
|
15104
15135
|
placeholder?: string | undefined;
|
|
15105
15136
|
list?: any[] | undefined;
|
|
15106
|
-
tagTheme?: "" | "
|
|
15137
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
15107
15138
|
behavior?: "normal" | "simplicity" | undefined;
|
|
15108
15139
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
15109
15140
|
scrollHeight?: number | undefined;
|
|
@@ -15362,6 +15393,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15362
15393
|
} | undefined;
|
|
15363
15394
|
} | {
|
|
15364
15395
|
content: string;
|
|
15396
|
+
createdAt?: number | string | undefined;
|
|
15365
15397
|
id: number | string;
|
|
15366
15398
|
messageId: number | string;
|
|
15367
15399
|
name?: string | undefined;
|
|
@@ -15644,7 +15676,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15644
15676
|
multiple?: boolean | undefined;
|
|
15645
15677
|
placeholder?: string | undefined;
|
|
15646
15678
|
list?: any[] | undefined;
|
|
15647
|
-
tagTheme?: "" | "
|
|
15679
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
15648
15680
|
behavior?: "normal" | "simplicity" | undefined;
|
|
15649
15681
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
15650
15682
|
scrollHeight?: number | undefined;
|
|
@@ -15903,6 +15935,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15903
15935
|
} | undefined;
|
|
15904
15936
|
} | {
|
|
15905
15937
|
content: string;
|
|
15938
|
+
createdAt?: number | string | undefined;
|
|
15906
15939
|
id: number | string;
|
|
15907
15940
|
messageId: number | string;
|
|
15908
15941
|
name?: string | undefined;
|
|
@@ -16185,7 +16218,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16185
16218
|
multiple?: boolean | undefined;
|
|
16186
16219
|
placeholder?: string | undefined;
|
|
16187
16220
|
list?: any[] | undefined;
|
|
16188
|
-
tagTheme?: "" | "
|
|
16221
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
16189
16222
|
behavior?: "normal" | "simplicity" | undefined;
|
|
16190
16223
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
16191
16224
|
scrollHeight?: number | undefined;
|
|
@@ -16444,6 +16477,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16444
16477
|
} | undefined;
|
|
16445
16478
|
} | {
|
|
16446
16479
|
content: string;
|
|
16480
|
+
createdAt?: number | string | undefined;
|
|
16447
16481
|
id: number | string;
|
|
16448
16482
|
messageId: number | string;
|
|
16449
16483
|
name?: string | undefined;
|
|
@@ -16726,7 +16760,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16726
16760
|
multiple?: boolean | undefined;
|
|
16727
16761
|
placeholder?: string | undefined;
|
|
16728
16762
|
list?: any[] | undefined;
|
|
16729
|
-
tagTheme?: "" | "
|
|
16763
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
16730
16764
|
behavior?: "normal" | "simplicity" | undefined;
|
|
16731
16765
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
16732
16766
|
scrollHeight?: number | undefined;
|
|
@@ -16985,6 +17019,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16985
17019
|
} | undefined;
|
|
16986
17020
|
} | {
|
|
16987
17021
|
content: string;
|
|
17022
|
+
createdAt?: number | string | undefined;
|
|
16988
17023
|
id: number | string;
|
|
16989
17024
|
messageId: number | string;
|
|
16990
17025
|
name?: string | undefined;
|
|
@@ -17267,7 +17302,7 @@ export declare const useMessageGroup: (options: {
|
|
|
17267
17302
|
multiple?: boolean | undefined;
|
|
17268
17303
|
placeholder?: string | undefined;
|
|
17269
17304
|
list?: any[] | undefined;
|
|
17270
|
-
tagTheme?: "" | "
|
|
17305
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
17271
17306
|
behavior?: "normal" | "simplicity" | undefined;
|
|
17272
17307
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
17273
17308
|
scrollHeight?: number | undefined;
|
|
@@ -17526,6 +17561,7 @@ export declare const useMessageGroup: (options: {
|
|
|
17526
17561
|
} | undefined;
|
|
17527
17562
|
} | {
|
|
17528
17563
|
content: string;
|
|
17564
|
+
createdAt?: number | string | undefined;
|
|
17529
17565
|
id: number | string;
|
|
17530
17566
|
messageId: number | string;
|
|
17531
17567
|
name?: string | undefined;
|
|
@@ -17808,7 +17844,7 @@ export declare const useMessageGroup: (options: {
|
|
|
17808
17844
|
multiple?: boolean | undefined;
|
|
17809
17845
|
placeholder?: string | undefined;
|
|
17810
17846
|
list?: any[] | undefined;
|
|
17811
|
-
tagTheme?: "" | "
|
|
17847
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
17812
17848
|
behavior?: "normal" | "simplicity" | undefined;
|
|
17813
17849
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
17814
17850
|
scrollHeight?: number | undefined;
|
|
@@ -18067,6 +18103,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18067
18103
|
} | undefined;
|
|
18068
18104
|
} | {
|
|
18069
18105
|
content: string;
|
|
18106
|
+
createdAt?: number | string | undefined;
|
|
18070
18107
|
id: number | string;
|
|
18071
18108
|
messageId: number | string;
|
|
18072
18109
|
name?: string | undefined;
|
|
@@ -18349,7 +18386,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18349
18386
|
multiple?: boolean | undefined;
|
|
18350
18387
|
placeholder?: string | undefined;
|
|
18351
18388
|
list?: any[] | undefined;
|
|
18352
|
-
tagTheme?: "" | "
|
|
18389
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
18353
18390
|
behavior?: "normal" | "simplicity" | undefined;
|
|
18354
18391
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
18355
18392
|
scrollHeight?: number | undefined;
|
|
@@ -18608,6 +18645,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18608
18645
|
} | undefined;
|
|
18609
18646
|
} | {
|
|
18610
18647
|
content: string;
|
|
18648
|
+
createdAt?: number | string | undefined;
|
|
18611
18649
|
id: number | string;
|
|
18612
18650
|
messageId: number | string;
|
|
18613
18651
|
name?: string | undefined;
|
|
@@ -18890,7 +18928,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18890
18928
|
multiple?: boolean | undefined;
|
|
18891
18929
|
placeholder?: string | undefined;
|
|
18892
18930
|
list?: any[] | undefined;
|
|
18893
|
-
tagTheme?: "" | "
|
|
18931
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
18894
18932
|
behavior?: "normal" | "simplicity" | undefined;
|
|
18895
18933
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
18896
18934
|
scrollHeight?: number | undefined;
|
|
@@ -19149,6 +19187,7 @@ export declare const useMessageGroup: (options: {
|
|
|
19149
19187
|
} | undefined;
|
|
19150
19188
|
} | {
|
|
19151
19189
|
content: string;
|
|
19190
|
+
createdAt?: number | string | undefined;
|
|
19152
19191
|
id: number | string;
|
|
19153
19192
|
messageId: number | string;
|
|
19154
19193
|
name?: string | undefined;
|
|
@@ -19431,7 +19470,7 @@ export declare const useMessageGroup: (options: {
|
|
|
19431
19470
|
multiple?: boolean | undefined;
|
|
19432
19471
|
placeholder?: string | undefined;
|
|
19433
19472
|
list?: any[] | undefined;
|
|
19434
|
-
tagTheme?: "" | "
|
|
19473
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
19435
19474
|
behavior?: "normal" | "simplicity" | undefined;
|
|
19436
19475
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
19437
19476
|
scrollHeight?: number | undefined;
|
|
@@ -19776,6 +19815,7 @@ export declare const useMessageGroup: (options: {
|
|
|
19776
19815
|
runId?: string | undefined;
|
|
19777
19816
|
threadId?: string | undefined;
|
|
19778
19817
|
};
|
|
19818
|
+
createdAt?: number | string | undefined;
|
|
19779
19819
|
id: number | string;
|
|
19780
19820
|
messageId: number | string;
|
|
19781
19821
|
name?: string | undefined;
|
|
@@ -20058,7 +20098,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20058
20098
|
multiple?: boolean | undefined;
|
|
20059
20099
|
placeholder?: string | undefined;
|
|
20060
20100
|
list?: any[] | undefined;
|
|
20061
|
-
tagTheme?: "" | "
|
|
20101
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
20062
20102
|
behavior?: "normal" | "simplicity" | undefined;
|
|
20063
20103
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
20064
20104
|
scrollHeight?: number | undefined;
|
|
@@ -20317,6 +20357,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20317
20357
|
} | undefined;
|
|
20318
20358
|
} | {
|
|
20319
20359
|
content: string;
|
|
20360
|
+
createdAt?: number | string | undefined;
|
|
20320
20361
|
id: number | string;
|
|
20321
20362
|
messageId: number | string;
|
|
20322
20363
|
name?: string | undefined;
|
|
@@ -20599,7 +20640,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20599
20640
|
multiple?: boolean | undefined;
|
|
20600
20641
|
placeholder?: string | undefined;
|
|
20601
20642
|
list?: any[] | undefined;
|
|
20602
|
-
tagTheme?: "" | "
|
|
20643
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
20603
20644
|
behavior?: "normal" | "simplicity" | undefined;
|
|
20604
20645
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
20605
20646
|
scrollHeight?: number | undefined;
|
|
@@ -20858,6 +20899,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20858
20899
|
} | undefined;
|
|
20859
20900
|
} | {
|
|
20860
20901
|
content: string;
|
|
20902
|
+
createdAt?: number | string | undefined;
|
|
20861
20903
|
id: number | string;
|
|
20862
20904
|
messageId: number | string;
|
|
20863
20905
|
name?: string | undefined;
|
|
@@ -21140,7 +21182,7 @@ export declare const useMessageGroup: (options: {
|
|
|
21140
21182
|
multiple?: boolean | undefined;
|
|
21141
21183
|
placeholder?: string | undefined;
|
|
21142
21184
|
list?: any[] | undefined;
|
|
21143
|
-
tagTheme?: "" | "
|
|
21185
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
21144
21186
|
behavior?: "normal" | "simplicity" | undefined;
|
|
21145
21187
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
21146
21188
|
scrollHeight?: number | undefined;
|
|
@@ -21400,6 +21442,7 @@ export declare const useMessageGroup: (options: {
|
|
|
21400
21442
|
} | {
|
|
21401
21443
|
duration?: number | undefined;
|
|
21402
21444
|
content: string[];
|
|
21445
|
+
createdAt?: number | string | undefined;
|
|
21403
21446
|
id: number | string;
|
|
21404
21447
|
messageId: number | string;
|
|
21405
21448
|
name?: string | undefined;
|
|
@@ -21682,7 +21725,7 @@ export declare const useMessageGroup: (options: {
|
|
|
21682
21725
|
multiple?: boolean | undefined;
|
|
21683
21726
|
placeholder?: string | undefined;
|
|
21684
21727
|
list?: any[] | undefined;
|
|
21685
|
-
tagTheme?: "" | "
|
|
21728
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
21686
21729
|
behavior?: "normal" | "simplicity" | undefined;
|
|
21687
21730
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
21688
21731
|
scrollHeight?: number | undefined;
|
|
@@ -21941,6 +21984,7 @@ export declare const useMessageGroup: (options: {
|
|
|
21941
21984
|
} | undefined;
|
|
21942
21985
|
} | {
|
|
21943
21986
|
content: string;
|
|
21987
|
+
createdAt?: number | string | undefined;
|
|
21944
21988
|
id: number | string;
|
|
21945
21989
|
messageId: number | string;
|
|
21946
21990
|
name?: string | undefined;
|
|
@@ -22223,7 +22267,7 @@ export declare const useMessageGroup: (options: {
|
|
|
22223
22267
|
multiple?: boolean | undefined;
|
|
22224
22268
|
placeholder?: string | undefined;
|
|
22225
22269
|
list?: any[] | undefined;
|
|
22226
|
-
tagTheme?: "" | "
|
|
22270
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
22227
22271
|
behavior?: "normal" | "simplicity" | undefined;
|
|
22228
22272
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
22229
22273
|
scrollHeight?: number | undefined;
|
|
@@ -22482,6 +22526,7 @@ export declare const useMessageGroup: (options: {
|
|
|
22482
22526
|
} | undefined;
|
|
22483
22527
|
} | {
|
|
22484
22528
|
content: string;
|
|
22529
|
+
createdAt?: number | string | undefined;
|
|
22485
22530
|
id: number | string;
|
|
22486
22531
|
messageId: number | string;
|
|
22487
22532
|
name?: string | undefined;
|
|
@@ -22764,7 +22809,7 @@ export declare const useMessageGroup: (options: {
|
|
|
22764
22809
|
multiple?: boolean | undefined;
|
|
22765
22810
|
placeholder?: string | undefined;
|
|
22766
22811
|
list?: any[] | undefined;
|
|
22767
|
-
tagTheme?: "" | "
|
|
22812
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
22768
22813
|
behavior?: "normal" | "simplicity" | undefined;
|
|
22769
22814
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
22770
22815
|
scrollHeight?: number | undefined;
|
|
@@ -23023,6 +23068,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23023
23068
|
} | undefined;
|
|
23024
23069
|
} | {
|
|
23025
23070
|
content: string;
|
|
23071
|
+
createdAt?: number | string | undefined;
|
|
23026
23072
|
id: number | string;
|
|
23027
23073
|
messageId: number | string;
|
|
23028
23074
|
name?: string | undefined;
|
|
@@ -23305,7 +23351,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23305
23351
|
multiple?: boolean | undefined;
|
|
23306
23352
|
placeholder?: string | undefined;
|
|
23307
23353
|
list?: any[] | undefined;
|
|
23308
|
-
tagTheme?: "" | "
|
|
23354
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
23309
23355
|
behavior?: "normal" | "simplicity" | undefined;
|
|
23310
23356
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
23311
23357
|
scrollHeight?: number | undefined;
|
|
@@ -23564,6 +23610,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23564
23610
|
} | undefined;
|
|
23565
23611
|
} | {
|
|
23566
23612
|
content: string;
|
|
23613
|
+
createdAt?: number | string | undefined;
|
|
23567
23614
|
id: number | string;
|
|
23568
23615
|
messageId: number | string;
|
|
23569
23616
|
name?: string | undefined;
|
|
@@ -23846,7 +23893,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23846
23893
|
multiple?: boolean | undefined;
|
|
23847
23894
|
placeholder?: string | undefined;
|
|
23848
23895
|
list?: any[] | undefined;
|
|
23849
|
-
tagTheme?: "" | "
|
|
23896
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
23850
23897
|
behavior?: "normal" | "simplicity" | undefined;
|
|
23851
23898
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
23852
23899
|
scrollHeight?: number | undefined;
|
|
@@ -24105,6 +24152,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24105
24152
|
} | undefined;
|
|
24106
24153
|
} | {
|
|
24107
24154
|
content: string;
|
|
24155
|
+
createdAt?: number | string | undefined;
|
|
24108
24156
|
id: number | string;
|
|
24109
24157
|
messageId: number | string;
|
|
24110
24158
|
name?: string | undefined;
|
|
@@ -24387,7 +24435,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24387
24435
|
multiple?: boolean | undefined;
|
|
24388
24436
|
placeholder?: string | undefined;
|
|
24389
24437
|
list?: any[] | undefined;
|
|
24390
|
-
tagTheme?: "" | "
|
|
24438
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
24391
24439
|
behavior?: "normal" | "simplicity" | undefined;
|
|
24392
24440
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
24393
24441
|
scrollHeight?: number | undefined;
|
|
@@ -24646,6 +24694,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24646
24694
|
} | undefined;
|
|
24647
24695
|
} | {
|
|
24648
24696
|
content: string;
|
|
24697
|
+
createdAt?: number | string | undefined;
|
|
24649
24698
|
id: number | string;
|
|
24650
24699
|
messageId: number | string;
|
|
24651
24700
|
name?: string | undefined;
|
|
@@ -24928,7 +24977,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24928
24977
|
multiple?: boolean | undefined;
|
|
24929
24978
|
placeholder?: string | undefined;
|
|
24930
24979
|
list?: any[] | undefined;
|
|
24931
|
-
tagTheme?: "" | "
|
|
24980
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
24932
24981
|
behavior?: "normal" | "simplicity" | undefined;
|
|
24933
24982
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
24934
24983
|
scrollHeight?: number | undefined;
|
|
@@ -25190,6 +25239,7 @@ export declare const useMessageGroup: (options: {
|
|
|
25190
25239
|
error?: boolean | string | undefined;
|
|
25191
25240
|
toolCallId: string;
|
|
25192
25241
|
content: string;
|
|
25242
|
+
createdAt?: number | string | undefined;
|
|
25193
25243
|
id: number | string;
|
|
25194
25244
|
messageId: number | string;
|
|
25195
25245
|
name?: string | undefined;
|
|
@@ -25472,7 +25522,7 @@ export declare const useMessageGroup: (options: {
|
|
|
25472
25522
|
multiple?: boolean | undefined;
|
|
25473
25523
|
placeholder?: string | undefined;
|
|
25474
25524
|
list?: any[] | undefined;
|
|
25475
|
-
tagTheme?: "" | "
|
|
25525
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
25476
25526
|
behavior?: "normal" | "simplicity" | undefined;
|
|
25477
25527
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
25478
25528
|
scrollHeight?: number | undefined;
|
|
@@ -25735,12 +25785,14 @@ export declare const useMessageGroup: (options: {
|
|
|
25735
25785
|
filename?: string | undefined;
|
|
25736
25786
|
id?: string | undefined;
|
|
25737
25787
|
mimeType: string;
|
|
25788
|
+
size?: number | undefined;
|
|
25738
25789
|
type: MessageContentType.Binary;
|
|
25739
25790
|
url?: string | undefined;
|
|
25740
25791
|
} | {
|
|
25741
25792
|
text: string;
|
|
25742
25793
|
type: MessageContentType.Text;
|
|
25743
25794
|
})[];
|
|
25795
|
+
createdAt?: number | string | undefined;
|
|
25744
25796
|
id: number | string;
|
|
25745
25797
|
messageId: number | string;
|
|
25746
25798
|
name?: string | undefined;
|
|
@@ -26023,7 +26075,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26023
26075
|
multiple?: boolean | undefined;
|
|
26024
26076
|
placeholder?: string | undefined;
|
|
26025
26077
|
list?: any[] | undefined;
|
|
26026
|
-
tagTheme?: "" | "
|
|
26078
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
26027
26079
|
behavior?: "normal" | "simplicity" | undefined;
|
|
26028
26080
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
26029
26081
|
scrollHeight?: number | undefined;
|
|
@@ -26325,6 +26377,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26325
26377
|
originFile: string;
|
|
26326
26378
|
url: string;
|
|
26327
26379
|
}[];
|
|
26380
|
+
createdAt?: number | string | undefined;
|
|
26328
26381
|
id: number | string;
|
|
26329
26382
|
messageId: number | string;
|
|
26330
26383
|
name?: string | undefined;
|
|
@@ -26607,7 +26660,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26607
26660
|
multiple?: boolean | undefined;
|
|
26608
26661
|
placeholder?: string | undefined;
|
|
26609
26662
|
list?: any[] | undefined;
|
|
26610
|
-
tagTheme?: "" | "
|
|
26663
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
26611
26664
|
behavior?: "normal" | "simplicity" | undefined;
|
|
26612
26665
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
26613
26666
|
scrollHeight?: number | undefined;
|
|
@@ -26871,6 +26924,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26871
26924
|
description?: string | undefined;
|
|
26872
26925
|
mcpName?: string | undefined;
|
|
26873
26926
|
name: string;
|
|
26927
|
+
type?: import("..").FunctionCallType | undefined;
|
|
26874
26928
|
};
|
|
26875
26929
|
id: string;
|
|
26876
26930
|
toolMessage?: {
|
|
@@ -26878,6 +26932,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26878
26932
|
error?: boolean | string | undefined;
|
|
26879
26933
|
toolCallId?: string | undefined;
|
|
26880
26934
|
content?: string | undefined;
|
|
26935
|
+
createdAt?: number | string | undefined;
|
|
26881
26936
|
id?: string | number | undefined;
|
|
26882
26937
|
messageId?: string | number | undefined;
|
|
26883
26938
|
name?: string | undefined;
|
|
@@ -27160,7 +27215,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27160
27215
|
multiple?: boolean | undefined;
|
|
27161
27216
|
placeholder?: string | undefined;
|
|
27162
27217
|
list?: any[] | undefined;
|
|
27163
|
-
tagTheme?: "" | "
|
|
27218
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
27164
27219
|
behavior?: "normal" | "simplicity" | undefined;
|
|
27165
27220
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
27166
27221
|
scrollHeight?: number | undefined;
|
|
@@ -27421,6 +27476,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27421
27476
|
type: MessageContentType.Function;
|
|
27422
27477
|
}[] | undefined;
|
|
27423
27478
|
content: string;
|
|
27479
|
+
createdAt?: number | string | undefined;
|
|
27424
27480
|
id: number | string;
|
|
27425
27481
|
messageId: number | string;
|
|
27426
27482
|
name?: string | undefined;
|
|
@@ -27703,7 +27759,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27703
27759
|
multiple?: boolean | undefined;
|
|
27704
27760
|
placeholder?: string | undefined;
|
|
27705
27761
|
list?: any[] | undefined;
|
|
27706
|
-
tagTheme?: "" | "
|
|
27762
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
27707
27763
|
behavior?: "normal" | "simplicity" | undefined;
|
|
27708
27764
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
27709
27765
|
scrollHeight?: number | undefined;
|
|
@@ -27962,6 +28018,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27962
28018
|
} | undefined;
|
|
27963
28019
|
} | {
|
|
27964
28020
|
content: string;
|
|
28021
|
+
createdAt?: number | string | undefined;
|
|
27965
28022
|
id: number | string;
|
|
27966
28023
|
messageId: number | string;
|
|
27967
28024
|
name?: string | undefined;
|
|
@@ -28244,7 +28301,7 @@ export declare const useMessageGroup: (options: {
|
|
|
28244
28301
|
multiple?: boolean | undefined;
|
|
28245
28302
|
placeholder?: string | undefined;
|
|
28246
28303
|
list?: any[] | undefined;
|
|
28247
|
-
tagTheme?: "" | "
|
|
28304
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
28248
28305
|
behavior?: "normal" | "simplicity" | undefined;
|
|
28249
28306
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
28250
28307
|
scrollHeight?: number | undefined;
|
|
@@ -28503,6 +28560,7 @@ export declare const useMessageGroup: (options: {
|
|
|
28503
28560
|
} | undefined;
|
|
28504
28561
|
} | {
|
|
28505
28562
|
content: string;
|
|
28563
|
+
createdAt?: number | string | undefined;
|
|
28506
28564
|
id: number | string;
|
|
28507
28565
|
messageId: number | string;
|
|
28508
28566
|
name?: string | undefined;
|
|
@@ -28785,7 +28843,7 @@ export declare const useMessageGroup: (options: {
|
|
|
28785
28843
|
multiple?: boolean | undefined;
|
|
28786
28844
|
placeholder?: string | undefined;
|
|
28787
28845
|
list?: any[] | undefined;
|
|
28788
|
-
tagTheme?: "" | "
|
|
28846
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
28789
28847
|
behavior?: "normal" | "simplicity" | undefined;
|
|
28790
28848
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
28791
28849
|
scrollHeight?: number | undefined;
|
|
@@ -29044,6 +29102,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29044
29102
|
} | undefined;
|
|
29045
29103
|
} | {
|
|
29046
29104
|
content: string;
|
|
29105
|
+
createdAt?: number | string | undefined;
|
|
29047
29106
|
id: number | string;
|
|
29048
29107
|
messageId: number | string;
|
|
29049
29108
|
name?: string | undefined;
|
|
@@ -29326,7 +29385,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29326
29385
|
multiple?: boolean | undefined;
|
|
29327
29386
|
placeholder?: string | undefined;
|
|
29328
29387
|
list?: any[] | undefined;
|
|
29329
|
-
tagTheme?: "" | "
|
|
29388
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
29330
29389
|
behavior?: "normal" | "simplicity" | undefined;
|
|
29331
29390
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
29332
29391
|
scrollHeight?: number | undefined;
|
|
@@ -29585,6 +29644,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29585
29644
|
} | undefined;
|
|
29586
29645
|
} | {
|
|
29587
29646
|
content: string;
|
|
29647
|
+
createdAt?: number | string | undefined;
|
|
29588
29648
|
id: number | string;
|
|
29589
29649
|
messageId: number | string;
|
|
29590
29650
|
name?: string | undefined;
|
|
@@ -29867,7 +29927,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29867
29927
|
multiple?: boolean | undefined;
|
|
29868
29928
|
placeholder?: string | undefined;
|
|
29869
29929
|
list?: any[] | undefined;
|
|
29870
|
-
tagTheme?: "" | "
|
|
29930
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
29871
29931
|
behavior?: "normal" | "simplicity" | undefined;
|
|
29872
29932
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
29873
29933
|
scrollHeight?: number | undefined;
|
|
@@ -30126,6 +30186,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30126
30186
|
} | undefined;
|
|
30127
30187
|
} | {
|
|
30128
30188
|
content: string;
|
|
30189
|
+
createdAt?: number | string | undefined;
|
|
30129
30190
|
id: number | string;
|
|
30130
30191
|
messageId: number | string;
|
|
30131
30192
|
name?: string | undefined;
|
|
@@ -30408,7 +30469,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30408
30469
|
multiple?: boolean | undefined;
|
|
30409
30470
|
placeholder?: string | undefined;
|
|
30410
30471
|
list?: any[] | undefined;
|
|
30411
|
-
tagTheme?: "" | "
|
|
30472
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
30412
30473
|
behavior?: "normal" | "simplicity" | undefined;
|
|
30413
30474
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
30414
30475
|
scrollHeight?: number | undefined;
|
|
@@ -30667,6 +30728,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30667
30728
|
} | undefined;
|
|
30668
30729
|
} | {
|
|
30669
30730
|
content: string;
|
|
30731
|
+
createdAt?: number | string | undefined;
|
|
30670
30732
|
id: number | string;
|
|
30671
30733
|
messageId: number | string;
|
|
30672
30734
|
name?: string | undefined;
|
|
@@ -30949,7 +31011,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30949
31011
|
multiple?: boolean | undefined;
|
|
30950
31012
|
placeholder?: string | undefined;
|
|
30951
31013
|
list?: any[] | undefined;
|
|
30952
|
-
tagTheme?: "" | "
|
|
31014
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
30953
31015
|
behavior?: "normal" | "simplicity" | undefined;
|
|
30954
31016
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
30955
31017
|
scrollHeight?: number | undefined;
|
|
@@ -31208,6 +31270,7 @@ export declare const useMessageGroup: (options: {
|
|
|
31208
31270
|
} | undefined;
|
|
31209
31271
|
} | {
|
|
31210
31272
|
content: string;
|
|
31273
|
+
createdAt?: number | string | undefined;
|
|
31211
31274
|
id: number | string;
|
|
31212
31275
|
messageId: number | string;
|
|
31213
31276
|
name?: string | undefined;
|
|
@@ -31490,7 +31553,7 @@ export declare const useMessageGroup: (options: {
|
|
|
31490
31553
|
multiple?: boolean | undefined;
|
|
31491
31554
|
placeholder?: string | undefined;
|
|
31492
31555
|
list?: any[] | undefined;
|
|
31493
|
-
tagTheme?: "" | "
|
|
31556
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
31494
31557
|
behavior?: "normal" | "simplicity" | undefined;
|
|
31495
31558
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
31496
31559
|
scrollHeight?: number | undefined;
|
|
@@ -31749,6 +31812,7 @@ export declare const useMessageGroup: (options: {
|
|
|
31749
31812
|
} | undefined;
|
|
31750
31813
|
} | {
|
|
31751
31814
|
content: string;
|
|
31815
|
+
createdAt?: number | string | undefined;
|
|
31752
31816
|
id: number | string;
|
|
31753
31817
|
messageId: number | string;
|
|
31754
31818
|
name?: string | undefined;
|
|
@@ -32031,7 +32095,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32031
32095
|
multiple?: boolean | undefined;
|
|
32032
32096
|
placeholder?: string | undefined;
|
|
32033
32097
|
list?: any[] | undefined;
|
|
32034
|
-
tagTheme?: "" | "
|
|
32098
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
32035
32099
|
behavior?: "normal" | "simplicity" | undefined;
|
|
32036
32100
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
32037
32101
|
scrollHeight?: number | undefined;
|
|
@@ -32290,6 +32354,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32290
32354
|
} | undefined;
|
|
32291
32355
|
} | {
|
|
32292
32356
|
content: string;
|
|
32357
|
+
createdAt?: number | string | undefined;
|
|
32293
32358
|
id: number | string;
|
|
32294
32359
|
messageId: number | string;
|
|
32295
32360
|
name?: string | undefined;
|
|
@@ -32572,7 +32637,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32572
32637
|
multiple?: boolean | undefined;
|
|
32573
32638
|
placeholder?: string | undefined;
|
|
32574
32639
|
list?: any[] | undefined;
|
|
32575
|
-
tagTheme?: "" | "
|
|
32640
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
32576
32641
|
behavior?: "normal" | "simplicity" | undefined;
|
|
32577
32642
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
32578
32643
|
scrollHeight?: number | undefined;
|
|
@@ -32917,6 +32982,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32917
32982
|
runId?: string | undefined;
|
|
32918
32983
|
threadId?: string | undefined;
|
|
32919
32984
|
};
|
|
32985
|
+
createdAt?: number | string | undefined;
|
|
32920
32986
|
id: number | string;
|
|
32921
32987
|
messageId: number | string;
|
|
32922
32988
|
name?: string | undefined;
|
|
@@ -33199,7 +33265,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33199
33265
|
multiple?: boolean | undefined;
|
|
33200
33266
|
placeholder?: string | undefined;
|
|
33201
33267
|
list?: any[] | undefined;
|
|
33202
|
-
tagTheme?: "" | "
|
|
33268
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
33203
33269
|
behavior?: "normal" | "simplicity" | undefined;
|
|
33204
33270
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
33205
33271
|
scrollHeight?: number | undefined;
|
|
@@ -33458,6 +33524,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33458
33524
|
} | undefined;
|
|
33459
33525
|
} | {
|
|
33460
33526
|
content: string;
|
|
33527
|
+
createdAt?: number | string | undefined;
|
|
33461
33528
|
id: number | string;
|
|
33462
33529
|
messageId: number | string;
|
|
33463
33530
|
name?: string | undefined;
|
|
@@ -33740,7 +33807,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33740
33807
|
multiple?: boolean | undefined;
|
|
33741
33808
|
placeholder?: string | undefined;
|
|
33742
33809
|
list?: any[] | undefined;
|
|
33743
|
-
tagTheme?: "" | "
|
|
33810
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
33744
33811
|
behavior?: "normal" | "simplicity" | undefined;
|
|
33745
33812
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
33746
33813
|
scrollHeight?: number | undefined;
|
|
@@ -33999,6 +34066,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33999
34066
|
} | undefined;
|
|
34000
34067
|
} | {
|
|
34001
34068
|
content: string;
|
|
34069
|
+
createdAt?: number | string | undefined;
|
|
34002
34070
|
id: number | string;
|
|
34003
34071
|
messageId: number | string;
|
|
34004
34072
|
name?: string | undefined;
|
|
@@ -34281,7 +34349,7 @@ export declare const useMessageGroup: (options: {
|
|
|
34281
34349
|
multiple?: boolean | undefined;
|
|
34282
34350
|
placeholder?: string | undefined;
|
|
34283
34351
|
list?: any[] | undefined;
|
|
34284
|
-
tagTheme?: "" | "
|
|
34352
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
34285
34353
|
behavior?: "normal" | "simplicity" | undefined;
|
|
34286
34354
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
34287
34355
|
scrollHeight?: number | undefined;
|
|
@@ -34541,6 +34609,7 @@ export declare const useMessageGroup: (options: {
|
|
|
34541
34609
|
} | {
|
|
34542
34610
|
duration?: number | undefined;
|
|
34543
34611
|
content: string[];
|
|
34612
|
+
createdAt?: number | string | undefined;
|
|
34544
34613
|
id: number | string;
|
|
34545
34614
|
messageId: number | string;
|
|
34546
34615
|
name?: string | undefined;
|
|
@@ -34823,7 +34892,7 @@ export declare const useMessageGroup: (options: {
|
|
|
34823
34892
|
multiple?: boolean | undefined;
|
|
34824
34893
|
placeholder?: string | undefined;
|
|
34825
34894
|
list?: any[] | undefined;
|
|
34826
|
-
tagTheme?: "" | "
|
|
34895
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
34827
34896
|
behavior?: "normal" | "simplicity" | undefined;
|
|
34828
34897
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
34829
34898
|
scrollHeight?: number | undefined;
|
|
@@ -35082,6 +35151,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35082
35151
|
} | undefined;
|
|
35083
35152
|
} | {
|
|
35084
35153
|
content: string;
|
|
35154
|
+
createdAt?: number | string | undefined;
|
|
35085
35155
|
id: number | string;
|
|
35086
35156
|
messageId: number | string;
|
|
35087
35157
|
name?: string | undefined;
|
|
@@ -35364,7 +35434,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35364
35434
|
multiple?: boolean | undefined;
|
|
35365
35435
|
placeholder?: string | undefined;
|
|
35366
35436
|
list?: any[] | undefined;
|
|
35367
|
-
tagTheme?: "" | "
|
|
35437
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
35368
35438
|
behavior?: "normal" | "simplicity" | undefined;
|
|
35369
35439
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
35370
35440
|
scrollHeight?: number | undefined;
|
|
@@ -35623,6 +35693,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35623
35693
|
} | undefined;
|
|
35624
35694
|
} | {
|
|
35625
35695
|
content: string;
|
|
35696
|
+
createdAt?: number | string | undefined;
|
|
35626
35697
|
id: number | string;
|
|
35627
35698
|
messageId: number | string;
|
|
35628
35699
|
name?: string | undefined;
|
|
@@ -35905,7 +35976,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35905
35976
|
multiple?: boolean | undefined;
|
|
35906
35977
|
placeholder?: string | undefined;
|
|
35907
35978
|
list?: any[] | undefined;
|
|
35908
|
-
tagTheme?: "" | "
|
|
35979
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
35909
35980
|
behavior?: "normal" | "simplicity" | undefined;
|
|
35910
35981
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
35911
35982
|
scrollHeight?: number | undefined;
|
|
@@ -36164,6 +36235,7 @@ export declare const useMessageGroup: (options: {
|
|
|
36164
36235
|
} | undefined;
|
|
36165
36236
|
} | {
|
|
36166
36237
|
content: string;
|
|
36238
|
+
createdAt?: number | string | undefined;
|
|
36167
36239
|
id: number | string;
|
|
36168
36240
|
messageId: number | string;
|
|
36169
36241
|
name?: string | undefined;
|
|
@@ -36446,7 +36518,7 @@ export declare const useMessageGroup: (options: {
|
|
|
36446
36518
|
multiple?: boolean | undefined;
|
|
36447
36519
|
placeholder?: string | undefined;
|
|
36448
36520
|
list?: any[] | undefined;
|
|
36449
|
-
tagTheme?: "" | "
|
|
36521
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
36450
36522
|
behavior?: "normal" | "simplicity" | undefined;
|
|
36451
36523
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
36452
36524
|
scrollHeight?: number | undefined;
|
|
@@ -36705,6 +36777,7 @@ export declare const useMessageGroup: (options: {
|
|
|
36705
36777
|
} | undefined;
|
|
36706
36778
|
} | {
|
|
36707
36779
|
content: string;
|
|
36780
|
+
createdAt?: number | string | undefined;
|
|
36708
36781
|
id: number | string;
|
|
36709
36782
|
messageId: number | string;
|
|
36710
36783
|
name?: string | undefined;
|
|
@@ -36987,7 +37060,7 @@ export declare const useMessageGroup: (options: {
|
|
|
36987
37060
|
multiple?: boolean | undefined;
|
|
36988
37061
|
placeholder?: string | undefined;
|
|
36989
37062
|
list?: any[] | undefined;
|
|
36990
|
-
tagTheme?: "" | "
|
|
37063
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
36991
37064
|
behavior?: "normal" | "simplicity" | undefined;
|
|
36992
37065
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
36993
37066
|
scrollHeight?: number | undefined;
|
|
@@ -37246,6 +37319,7 @@ export declare const useMessageGroup: (options: {
|
|
|
37246
37319
|
} | undefined;
|
|
37247
37320
|
} | {
|
|
37248
37321
|
content: string;
|
|
37322
|
+
createdAt?: number | string | undefined;
|
|
37249
37323
|
id: number | string;
|
|
37250
37324
|
messageId: number | string;
|
|
37251
37325
|
name?: string | undefined;
|
|
@@ -37528,7 +37602,7 @@ export declare const useMessageGroup: (options: {
|
|
|
37528
37602
|
multiple?: boolean | undefined;
|
|
37529
37603
|
placeholder?: string | undefined;
|
|
37530
37604
|
list?: any[] | undefined;
|
|
37531
|
-
tagTheme?: "" | "
|
|
37605
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
37532
37606
|
behavior?: "normal" | "simplicity" | undefined;
|
|
37533
37607
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
37534
37608
|
scrollHeight?: number | undefined;
|
|
@@ -37787,6 +37861,7 @@ export declare const useMessageGroup: (options: {
|
|
|
37787
37861
|
} | undefined;
|
|
37788
37862
|
} | {
|
|
37789
37863
|
content: string;
|
|
37864
|
+
createdAt?: number | string | undefined;
|
|
37790
37865
|
id: number | string;
|
|
37791
37866
|
messageId: number | string;
|
|
37792
37867
|
name?: string | undefined;
|
|
@@ -38069,7 +38144,7 @@ export declare const useMessageGroup: (options: {
|
|
|
38069
38144
|
multiple?: boolean | undefined;
|
|
38070
38145
|
placeholder?: string | undefined;
|
|
38071
38146
|
list?: any[] | undefined;
|
|
38072
|
-
tagTheme?: "" | "
|
|
38147
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
38073
38148
|
behavior?: "normal" | "simplicity" | undefined;
|
|
38074
38149
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
38075
38150
|
scrollHeight?: number | undefined;
|
|
@@ -38331,6 +38406,7 @@ export declare const useMessageGroup: (options: {
|
|
|
38331
38406
|
error?: boolean | string | undefined;
|
|
38332
38407
|
toolCallId: string;
|
|
38333
38408
|
content: string;
|
|
38409
|
+
createdAt?: number | string | undefined;
|
|
38334
38410
|
id: number | string;
|
|
38335
38411
|
messageId: number | string;
|
|
38336
38412
|
name?: string | undefined;
|
|
@@ -38613,7 +38689,7 @@ export declare const useMessageGroup: (options: {
|
|
|
38613
38689
|
multiple?: boolean | undefined;
|
|
38614
38690
|
placeholder?: string | undefined;
|
|
38615
38691
|
list?: any[] | undefined;
|
|
38616
|
-
tagTheme?: "" | "
|
|
38692
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
38617
38693
|
behavior?: "normal" | "simplicity" | undefined;
|
|
38618
38694
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
38619
38695
|
scrollHeight?: number | undefined;
|
|
@@ -38876,12 +38952,14 @@ export declare const useMessageGroup: (options: {
|
|
|
38876
38952
|
filename?: string | undefined;
|
|
38877
38953
|
id?: string | undefined;
|
|
38878
38954
|
mimeType: string;
|
|
38955
|
+
size?: number | undefined;
|
|
38879
38956
|
type: MessageContentType.Binary;
|
|
38880
38957
|
url?: string | undefined;
|
|
38881
38958
|
} | {
|
|
38882
38959
|
text: string;
|
|
38883
38960
|
type: MessageContentType.Text;
|
|
38884
38961
|
})[];
|
|
38962
|
+
createdAt?: number | string | undefined;
|
|
38885
38963
|
id: number | string;
|
|
38886
38964
|
messageId: number | string;
|
|
38887
38965
|
name?: string | undefined;
|
|
@@ -39164,7 +39242,7 @@ export declare const useMessageGroup: (options: {
|
|
|
39164
39242
|
multiple?: boolean | undefined;
|
|
39165
39243
|
placeholder?: string | undefined;
|
|
39166
39244
|
list?: any[] | undefined;
|
|
39167
|
-
tagTheme?: "" | "
|
|
39245
|
+
tagTheme?: "" | "success" | "info" | "danger" | "warning" | undefined;
|
|
39168
39246
|
behavior?: "normal" | "simplicity" | undefined;
|
|
39169
39247
|
selectedStyle?: "checkbox" | "check" | undefined;
|
|
39170
39248
|
scrollHeight?: number | undefined;
|