@next-bricks/ai-portal 0.58.3 → 0.58.4

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/types.json CHANGED
@@ -1,121 +1,4 @@
1
1
  {
2
- "ai-portal.home-container": {
3
- "properties": [
4
- {
5
- "name": "sticky",
6
- "annotation": {
7
- "type": "keyword",
8
- "value": "boolean"
9
- }
10
- }
11
- ],
12
- "events": [],
13
- "methods": []
14
- },
15
- "ai-portal.stat-with-mini-chart": {
16
- "properties": [
17
- {
18
- "name": "label",
19
- "annotation": {
20
- "type": "keyword",
21
- "value": "string"
22
- }
23
- },
24
- {
25
- "name": "value",
26
- "annotation": {
27
- "type": "keyword",
28
- "value": "string"
29
- }
30
- },
31
- {
32
- "name": "size",
33
- "annotation": {
34
- "type": "union",
35
- "types": [
36
- {
37
- "type": "jsLiteral",
38
- "value": "medium"
39
- },
40
- {
41
- "type": "jsLiteral",
42
- "value": "small"
43
- }
44
- ]
45
- }
46
- },
47
- {
48
- "name": "lineColor",
49
- "annotation": {
50
- "type": "keyword",
51
- "value": "string"
52
- }
53
- },
54
- {
55
- "name": "showArea",
56
- "annotation": {
57
- "type": "keyword",
58
- "value": "boolean"
59
- }
60
- },
61
- {
62
- "name": "min",
63
- "annotation": {
64
- "type": "keyword",
65
- "value": "number"
66
- }
67
- },
68
- {
69
- "name": "max",
70
- "annotation": {
71
- "type": "keyword",
72
- "value": "number"
73
- }
74
- },
75
- {
76
- "name": "xField",
77
- "annotation": {
78
- "type": "keyword",
79
- "value": "string"
80
- }
81
- },
82
- {
83
- "name": "yField",
84
- "annotation": {
85
- "type": "keyword",
86
- "value": "string"
87
- }
88
- },
89
- {
90
- "name": "data",
91
- "annotation": {
92
- "type": "array",
93
- "elementType": {
94
- "type": "reference",
95
- "typeName": {
96
- "type": "identifier",
97
- "name": "Record"
98
- },
99
- "typeParameters": {
100
- "type": "typeParameterInstantiation",
101
- "params": [
102
- {
103
- "type": "keyword",
104
- "value": "string"
105
- },
106
- {
107
- "type": "keyword",
108
- "value": "number"
109
- }
110
- ]
111
- }
112
- }
113
- }
114
- }
115
- ],
116
- "events": [],
117
- "methods": []
118
- },
119
2
  "ai-portal.icon-button": {
120
3
  "properties": [
121
4
  {
@@ -250,6 +133,71 @@
250
133
  }
251
134
  }
252
135
  },
136
+ "ai-portal.set-chat-command": {
137
+ "type": "provider",
138
+ "params": [
139
+ {
140
+ "name": "command",
141
+ "annotation": {
142
+ "type": "union",
143
+ "types": [
144
+ {
145
+ "type": "reference",
146
+ "typeName": {
147
+ "type": "identifier",
148
+ "name": "ChatCommand"
149
+ }
150
+ },
151
+ {
152
+ "type": "keyword",
153
+ "value": "null"
154
+ }
155
+ ]
156
+ }
157
+ }
158
+ ],
159
+ "returns": {
160
+ "annotation": {
161
+ "type": "keyword",
162
+ "value": "void"
163
+ }
164
+ },
165
+ "types": [
166
+ {
167
+ "type": "interface",
168
+ "name": "ChatCommand",
169
+ "body": [
170
+ {
171
+ "type": "propertySignature",
172
+ "key": {
173
+ "type": "identifier",
174
+ "name": "command"
175
+ },
176
+ "annotation": {
177
+ "type": "keyword",
178
+ "value": "string"
179
+ },
180
+ "computed": false
181
+ },
182
+ {
183
+ "type": "propertySignature",
184
+ "key": {
185
+ "type": "identifier",
186
+ "name": "payload"
187
+ },
188
+ "annotation": {
189
+ "type": "reference",
190
+ "typeName": {
191
+ "type": "identifier",
192
+ "name": "CommandPayload"
193
+ }
194
+ },
195
+ "computed": false
196
+ }
197
+ ]
198
+ }
199
+ ]
200
+ },
253
201
  "ai-portal.save-request-store": {
254
202
  "type": "provider",
255
203
  "params": [
@@ -751,45 +699,54 @@
751
699
  }
752
700
  }
753
701
  },
754
- "ai-portal.set-chat-command": {
755
- "type": "provider",
756
- "params": [
702
+ "ai-portal.tab-list": {
703
+ "properties": [
757
704
  {
758
- "name": "command",
705
+ "name": "tabs",
759
706
  "annotation": {
760
- "type": "union",
761
- "types": [
762
- {
763
- "type": "reference",
764
- "typeName": {
765
- "type": "identifier",
766
- "name": "ChatCommand"
767
- }
768
- },
769
- {
770
- "type": "keyword",
771
- "value": "null"
707
+ "type": "array",
708
+ "elementType": {
709
+ "type": "reference",
710
+ "typeName": {
711
+ "type": "identifier",
712
+ "name": "Tab"
772
713
  }
773
- ]
714
+ }
715
+ }
716
+ },
717
+ {
718
+ "name": "activeTab",
719
+ "annotation": {
720
+ "type": "keyword",
721
+ "value": "string"
774
722
  }
775
723
  }
776
724
  ],
777
- "returns": {
778
- "annotation": {
779
- "type": "keyword",
780
- "value": "void"
725
+ "events": [
726
+ {
727
+ "name": "tab.click",
728
+ "detail": {
729
+ "annotation": {
730
+ "type": "reference",
731
+ "typeName": {
732
+ "type": "identifier",
733
+ "name": "Tab"
734
+ }
735
+ }
736
+ }
781
737
  }
782
- },
738
+ ],
739
+ "methods": [],
783
740
  "types": [
784
741
  {
785
742
  "type": "interface",
786
- "name": "ChatCommand",
743
+ "name": "Tab",
787
744
  "body": [
788
745
  {
789
746
  "type": "propertySignature",
790
747
  "key": {
791
748
  "type": "identifier",
792
- "name": "command"
749
+ "name": "id"
793
750
  },
794
751
  "annotation": {
795
752
  "type": "keyword",
@@ -801,14 +758,11 @@
801
758
  "type": "propertySignature",
802
759
  "key": {
803
760
  "type": "identifier",
804
- "name": "payload"
761
+ "name": "label"
805
762
  },
806
763
  "annotation": {
807
- "type": "reference",
808
- "typeName": {
809
- "type": "identifier",
810
- "name": "CommandPayload"
811
- }
764
+ "type": "keyword",
765
+ "value": "string"
812
766
  },
813
767
  "computed": false
814
768
  }
@@ -924,96 +878,142 @@
924
878
  }
925
879
  ]
926
880
  },
927
- "ai-portal.tab-list": {
881
+ "ai-portal.home-container": {
928
882
  "properties": [
929
883
  {
930
- "name": "tabs",
884
+ "name": "sticky",
931
885
  "annotation": {
932
- "type": "array",
933
- "elementType": {
934
- "type": "reference",
935
- "typeName": {
936
- "type": "identifier",
937
- "name": "Tab"
886
+ "type": "keyword",
887
+ "value": "boolean"
888
+ }
889
+ }
890
+ ],
891
+ "events": [],
892
+ "methods": []
893
+ },
894
+ "ai-portal.stat-with-mini-chart": {
895
+ "properties": [
896
+ {
897
+ "name": "label",
898
+ "annotation": {
899
+ "type": "keyword",
900
+ "value": "string"
901
+ }
902
+ },
903
+ {
904
+ "name": "value",
905
+ "annotation": {
906
+ "type": "keyword",
907
+ "value": "string"
908
+ }
909
+ },
910
+ {
911
+ "name": "size",
912
+ "annotation": {
913
+ "type": "union",
914
+ "types": [
915
+ {
916
+ "type": "jsLiteral",
917
+ "value": "medium"
918
+ },
919
+ {
920
+ "type": "jsLiteral",
921
+ "value": "small"
938
922
  }
939
- }
923
+ ]
940
924
  }
941
925
  },
942
926
  {
943
- "name": "activeTab",
927
+ "name": "lineColor",
944
928
  "annotation": {
945
929
  "type": "keyword",
946
930
  "value": "string"
947
931
  }
948
- }
949
- ],
950
- "events": [
932
+ },
951
933
  {
952
- "name": "tab.click",
953
- "detail": {
954
- "annotation": {
934
+ "name": "showArea",
935
+ "annotation": {
936
+ "type": "keyword",
937
+ "value": "boolean"
938
+ }
939
+ },
940
+ {
941
+ "name": "min",
942
+ "annotation": {
943
+ "type": "keyword",
944
+ "value": "number"
945
+ }
946
+ },
947
+ {
948
+ "name": "max",
949
+ "annotation": {
950
+ "type": "keyword",
951
+ "value": "number"
952
+ }
953
+ },
954
+ {
955
+ "name": "xField",
956
+ "annotation": {
957
+ "type": "keyword",
958
+ "value": "string"
959
+ }
960
+ },
961
+ {
962
+ "name": "yField",
963
+ "annotation": {
964
+ "type": "keyword",
965
+ "value": "string"
966
+ }
967
+ },
968
+ {
969
+ "name": "data",
970
+ "annotation": {
971
+ "type": "array",
972
+ "elementType": {
955
973
  "type": "reference",
956
974
  "typeName": {
957
975
  "type": "identifier",
958
- "name": "Tab"
976
+ "name": "Record"
977
+ },
978
+ "typeParameters": {
979
+ "type": "typeParameterInstantiation",
980
+ "params": [
981
+ {
982
+ "type": "keyword",
983
+ "value": "string"
984
+ },
985
+ {
986
+ "type": "keyword",
987
+ "value": "number"
988
+ }
989
+ ]
959
990
  }
960
991
  }
961
992
  }
962
993
  }
963
994
  ],
964
- "methods": [],
965
- "types": [
966
- {
967
- "type": "interface",
968
- "name": "Tab",
969
- "body": [
970
- {
971
- "type": "propertySignature",
972
- "key": {
973
- "type": "identifier",
974
- "name": "id"
975
- },
976
- "annotation": {
977
- "type": "keyword",
978
- "value": "string"
979
- },
980
- "computed": false
981
- },
982
- {
983
- "type": "propertySignature",
984
- "key": {
985
- "type": "identifier",
986
- "name": "label"
987
- },
988
- "annotation": {
989
- "type": "keyword",
990
- "value": "string"
991
- },
992
- "computed": false
993
- }
994
- ]
995
- }
996
- ]
995
+ "events": [],
996
+ "methods": []
997
997
  },
998
998
  "ai-portal.elevo-logo": {
999
999
  "properties": [],
1000
1000
  "events": [],
1001
1001
  "methods": []
1002
1002
  },
1003
- "ai-portal.blank-state": {
1003
+ "ai-portal.sticky-container": {
1004
1004
  "properties": [
1005
1005
  {
1006
- "name": "illustration",
1006
+ "name": "variant",
1007
1007
  "annotation": {
1008
1008
  "type": "reference",
1009
1009
  "typeName": {
1010
1010
  "type": "identifier",
1011
- "name": "BlankStateIllustration"
1011
+ "name": "StickyContainerVariant"
1012
1012
  }
1013
1013
  }
1014
1014
  },
1015
1015
  {
1016
- "name": "description",
1016
+ "name": "textContent",
1017
1017
  "annotation": {
1018
1018
  "type": "keyword",
1019
1019
  "value": "string"
@@ -1025,45 +1025,37 @@
1025
1025
  "types": [
1026
1026
  {
1027
1027
  "type": "typeAlias",
1028
- "name": "BlankStateIllustration",
1028
+ "name": "StickyContainerVariant",
1029
1029
  "annotation": {
1030
1030
  "type": "union",
1031
1031
  "types": [
1032
1032
  {
1033
1033
  "type": "jsLiteral",
1034
- "value": "goals"
1035
- },
1036
- {
1037
- "type": "jsLiteral",
1038
- "value": "activities"
1039
- },
1040
- {
1041
- "type": "jsLiteral",
1042
- "value": "collaboration-spaces"
1034
+ "value": "default"
1043
1035
  },
1044
1036
  {
1045
1037
  "type": "jsLiteral",
1046
- "value": "serviceflows"
1038
+ "value": "home"
1047
1039
  }
1048
1040
  ]
1049
1041
  }
1050
1042
  }
1051
1043
  ]
1052
1044
  },
1053
- "ai-portal.sticky-container": {
1045
+ "ai-portal.blank-state": {
1054
1046
  "properties": [
1055
1047
  {
1056
- "name": "variant",
1048
+ "name": "illustration",
1057
1049
  "annotation": {
1058
1050
  "type": "reference",
1059
1051
  "typeName": {
1060
1052
  "type": "identifier",
1061
- "name": "StickyContainerVariant"
1053
+ "name": "BlankStateIllustration"
1062
1054
  }
1063
1055
  }
1064
1056
  },
1065
1057
  {
1066
- "name": "textContent",
1058
+ "name": "description",
1067
1059
  "annotation": {
1068
1060
  "type": "keyword",
1069
1061
  "value": "string"
@@ -1075,17 +1067,25 @@
1075
1067
  "types": [
1076
1068
  {
1077
1069
  "type": "typeAlias",
1078
- "name": "StickyContainerVariant",
1070
+ "name": "BlankStateIllustration",
1079
1071
  "annotation": {
1080
1072
  "type": "union",
1081
1073
  "types": [
1082
1074
  {
1083
1075
  "type": "jsLiteral",
1084
- "value": "default"
1076
+ "value": "goals"
1085
1077
  },
1086
1078
  {
1087
1079
  "type": "jsLiteral",
1088
- "value": "home"
1080
+ "value": "activities"
1081
+ },
1082
+ {
1083
+ "type": "jsLiteral",
1084
+ "value": "collaboration-spaces"
1085
+ },
1086
+ {
1087
+ "type": "jsLiteral",
1088
+ "value": "serviceflows"
1089
1089
  }
1090
1090
  ]
1091
1091
  }
@@ -2292,424 +2292,32 @@
2292
2292
  }
2293
2293
  ]
2294
2294
  },
2295
- "ai-portal.chat-input": {
2295
+ "ai-portal.activity-timeline": {
2296
2296
  "properties": [
2297
2297
  {
2298
- "name": "placeholder",
2299
- "annotation": {
2300
- "type": "keyword",
2301
- "value": "string"
2302
- }
2303
- },
2304
- {
2305
- "name": "autoFocus",
2306
- "annotation": {
2307
- "type": "keyword",
2308
- "value": "boolean"
2309
- }
2310
- },
2311
- {
2312
- "name": "submitDisabled",
2313
- "annotation": {
2314
- "type": "keyword",
2315
- "value": "boolean"
2316
- }
2317
- },
2318
- {
2319
- "name": "supportsTerminate",
2298
+ "name": "list",
2320
2299
  "annotation": {
2321
- "type": "keyword",
2322
- "value": "boolean"
2300
+ "type": "array",
2301
+ "elementType": {
2302
+ "type": "reference",
2303
+ "typeName": {
2304
+ "type": "identifier",
2305
+ "name": "Activity"
2306
+ }
2307
+ }
2323
2308
  }
2324
2309
  },
2325
2310
  {
2326
- "name": "terminating",
2311
+ "name": "chatUrlTemplate",
2327
2312
  "annotation": {
2328
2313
  "type": "keyword",
2329
- "value": "boolean"
2330
- }
2331
- },
2332
- {
2333
- "name": "uploadOptions",
2334
- "annotation": {
2335
- "type": "reference",
2336
- "typeName": {
2337
- "type": "identifier",
2338
- "name": "UploadOptions"
2339
- }
2314
+ "value": "string"
2340
2315
  }
2341
2316
  }
2342
2317
  ],
2343
- "events": [
2344
- {
2345
- "name": "message.submit",
2346
- "detail": {
2347
- "annotation": {
2348
- "type": "keyword",
2349
- "value": "string"
2350
- }
2351
- }
2352
- },
2353
- {
2354
- "name": "chat.submit",
2355
- "detail": {
2356
- "annotation": {
2357
- "type": "reference",
2358
- "typeName": {
2359
- "type": "identifier",
2360
- "name": "ChatPayload"
2361
- }
2362
- }
2363
- }
2364
- },
2365
- {
2366
- "name": "terminate",
2367
- "detail": {
2368
- "annotation": {
2369
- "type": "keyword",
2370
- "value": "void"
2371
- }
2372
- }
2373
- }
2374
- ],
2375
- "methods": [],
2376
- "types": [
2377
- {
2378
- "type": "interface",
2379
- "name": "UploadOptions",
2380
- "body": [
2381
- {
2382
- "type": "propertySignature",
2383
- "key": {
2384
- "type": "identifier",
2385
- "name": "enabled"
2386
- },
2387
- "annotation": {
2388
- "type": "keyword",
2389
- "value": "boolean"
2390
- },
2391
- "optional": true,
2392
- "computed": false
2393
- },
2394
- {
2395
- "type": "propertySignature",
2396
- "key": {
2397
- "type": "identifier",
2398
- "name": "dragDisabled"
2399
- },
2400
- "annotation": {
2401
- "type": "keyword",
2402
- "value": "boolean"
2403
- },
2404
- "optional": true,
2405
- "computed": false
2406
- },
2407
- {
2408
- "type": "propertySignature",
2409
- "key": {
2410
- "type": "identifier",
2411
- "name": "dragTips"
2412
- },
2413
- "annotation": {
2414
- "type": "keyword",
2415
- "value": "string"
2416
- },
2417
- "optional": true,
2418
- "computed": false
2419
- },
2420
- {
2421
- "type": "propertySignature",
2422
- "key": {
2423
- "type": "identifier",
2424
- "name": "accept"
2425
- },
2426
- "annotation": {
2427
- "type": "keyword",
2428
- "value": "string"
2429
- },
2430
- "optional": true,
2431
- "computed": false
2432
- },
2433
- {
2434
- "type": "propertySignature",
2435
- "key": {
2436
- "type": "identifier",
2437
- "name": "maxFiles"
2438
- },
2439
- "annotation": {
2440
- "type": "keyword",
2441
- "value": "number"
2442
- },
2443
- "optional": true,
2444
- "computed": false
2445
- }
2446
- ]
2447
- },
2448
- {
2449
- "type": "interface",
2450
- "name": "ChatPayload",
2451
- "body": [
2452
- {
2453
- "type": "propertySignature",
2454
- "key": {
2455
- "type": "identifier",
2456
- "name": "content"
2457
- },
2458
- "annotation": {
2459
- "type": "keyword",
2460
- "value": "string"
2461
- },
2462
- "computed": false
2463
- }
2464
- ],
2465
- "extends": [
2466
- {
2467
- "type": "expressionWithTypeArguments",
2468
- "expression": {
2469
- "type": "identifier",
2470
- "name": "ExtraChatPayload"
2471
- }
2472
- }
2473
- ]
2474
- },
2475
- {
2476
- "type": "interface",
2477
- "name": "ExtraChatPayload",
2478
- "body": [
2479
- {
2480
- "type": "propertySignature",
2481
- "key": {
2482
- "type": "identifier",
2483
- "name": "files"
2484
- },
2485
- "annotation": {
2486
- "type": "array",
2487
- "elementType": {
2488
- "type": "reference",
2489
- "typeName": {
2490
- "type": "identifier",
2491
- "name": "UploadFileInfo"
2492
- }
2493
- }
2494
- },
2495
- "optional": true,
2496
- "computed": false
2497
- },
2498
- {
2499
- "type": "propertySignature",
2500
- "key": {
2501
- "type": "identifier",
2502
- "name": "cmd"
2503
- },
2504
- "annotation": {
2505
- "type": "union",
2506
- "types": [
2507
- {
2508
- "type": "reference",
2509
- "typeName": {
2510
- "type": "identifier",
2511
- "name": "CommandPayload"
2512
- }
2513
- },
2514
- {
2515
- "type": "keyword",
2516
- "value": "null"
2517
- }
2518
- ]
2519
- },
2520
- "optional": true,
2521
- "computed": false
2522
- },
2523
- {
2524
- "type": "propertySignature",
2525
- "key": {
2526
- "type": "identifier",
2527
- "name": "aiEmployeeId"
2528
- },
2529
- "annotation": {
2530
- "type": "union",
2531
- "types": [
2532
- {
2533
- "type": "keyword",
2534
- "value": "string"
2535
- },
2536
- {
2537
- "type": "keyword",
2538
- "value": "null"
2539
- }
2540
- ]
2541
- },
2542
- "optional": true,
2543
- "computed": false
2544
- }
2545
- ]
2546
- },
2547
- {
2548
- "type": "interface",
2549
- "name": "UploadFileInfo",
2550
- "body": [
2551
- {
2552
- "type": "propertySignature",
2553
- "key": {
2554
- "type": "identifier",
2555
- "name": "fileId"
2556
- },
2557
- "annotation": {
2558
- "type": "keyword",
2559
- "value": "string"
2560
- },
2561
- "computed": false
2562
- }
2563
- ]
2564
- },
2565
- {
2566
- "type": "typeAlias",
2567
- "name": "CommandPayload",
2568
- "annotation": {
2569
- "type": "reference",
2570
- "typeName": {
2571
- "type": "identifier",
2572
- "name": "CommandPayloadServiceFlowStarting"
2573
- }
2574
- }
2575
- },
2576
- {
2577
- "type": "interface",
2578
- "name": "CommandPayloadServiceFlowStarting",
2579
- "body": [
2580
- {
2581
- "type": "propertySignature",
2582
- "key": {
2583
- "type": "identifier",
2584
- "name": "type"
2585
- },
2586
- "annotation": {
2587
- "type": "jsLiteral",
2588
- "value": "serviceFlowStarting"
2589
- },
2590
- "computed": false
2591
- },
2592
- {
2593
- "type": "propertySignature",
2594
- "key": {
2595
- "type": "identifier",
2596
- "name": "serviceFlowStarting"
2597
- },
2598
- "annotation": {
2599
- "type": "typeLiteral",
2600
- "members": [
2601
- {
2602
- "type": "propertySignature",
2603
- "key": {
2604
- "type": "identifier",
2605
- "name": "spaceInstanceId"
2606
- },
2607
- "annotation": {
2608
- "type": "keyword",
2609
- "value": "string"
2610
- },
2611
- "computed": false
2612
- },
2613
- {
2614
- "type": "propertySignature",
2615
- "key": {
2616
- "type": "identifier",
2617
- "name": "spaceName"
2618
- },
2619
- "annotation": {
2620
- "type": "keyword",
2621
- "value": "string"
2622
- },
2623
- "optional": true,
2624
- "computed": false
2625
- },
2626
- {
2627
- "type": "propertySignature",
2628
- "key": {
2629
- "type": "identifier",
2630
- "name": "flowInstanceId"
2631
- },
2632
- "annotation": {
2633
- "type": "keyword",
2634
- "value": "string"
2635
- },
2636
- "optional": true,
2637
- "computed": false
2638
- },
2639
- {
2640
- "type": "propertySignature",
2641
- "key": {
2642
- "type": "identifier",
2643
- "name": "flowName"
2644
- },
2645
- "annotation": {
2646
- "type": "keyword",
2647
- "value": "string"
2648
- },
2649
- "optional": true,
2650
- "computed": false
2651
- }
2652
- ]
2653
- },
2654
- "computed": false
2655
- }
2656
- ]
2657
- }
2658
- ]
2659
- },
2660
- "ai-portal.show-case": {
2661
- "properties": [
2662
- {
2663
- "name": "caseTitle",
2664
- "annotation": {
2665
- "type": "keyword",
2666
- "value": "string"
2667
- }
2668
- },
2669
- {
2670
- "name": "summary",
2671
- "annotation": {
2672
- "type": "keyword",
2673
- "value": "string"
2674
- }
2675
- },
2676
- {
2677
- "name": "url",
2678
- "annotation": {
2679
- "type": "keyword",
2680
- "value": "string"
2681
- }
2682
- }
2683
- ],
2684
- "events": [],
2685
- "methods": []
2686
- },
2687
- "ai-portal.activity-timeline": {
2688
- "properties": [
2689
- {
2690
- "name": "list",
2691
- "annotation": {
2692
- "type": "array",
2693
- "elementType": {
2694
- "type": "reference",
2695
- "typeName": {
2696
- "type": "identifier",
2697
- "name": "Activity"
2698
- }
2699
- }
2700
- }
2701
- },
2702
- {
2703
- "name": "chatUrlTemplate",
2704
- "annotation": {
2705
- "type": "keyword",
2706
- "value": "string"
2707
- }
2708
- }
2709
- ],
2710
- "events": [],
2711
- "methods": [],
2712
- "types": [
2318
+ "events": [],
2319
+ "methods": [],
2320
+ "types": [
2713
2321
  {
2714
2322
  "type": "typeAlias",
2715
2323
  "name": "Activity",
@@ -3658,125 +3266,82 @@
3658
3266
  }
3659
3267
  ]
3660
3268
  },
3661
- "ai-portal.flow-tabs": {
3269
+ "ai-portal.chat-input": {
3662
3270
  "properties": [
3663
3271
  {
3664
- "name": "tabs",
3272
+ "name": "placeholder",
3665
3273
  "annotation": {
3666
- "type": "array",
3667
- "elementType": {
3668
- "type": "reference",
3669
- "typeName": {
3670
- "type": "identifier",
3671
- "name": "Tab"
3672
- }
3673
- }
3274
+ "type": "keyword",
3275
+ "value": "string"
3674
3276
  }
3675
3277
  },
3676
3278
  {
3677
- "name": "activeTab",
3279
+ "name": "autoFocus",
3678
3280
  "annotation": {
3679
3281
  "type": "keyword",
3680
- "value": "string"
3282
+ "value": "boolean"
3283
+ }
3284
+ },
3285
+ {
3286
+ "name": "submitDisabled",
3287
+ "annotation": {
3288
+ "type": "keyword",
3289
+ "value": "boolean"
3290
+ }
3291
+ },
3292
+ {
3293
+ "name": "supportsTerminate",
3294
+ "annotation": {
3295
+ "type": "keyword",
3296
+ "value": "boolean"
3297
+ }
3298
+ },
3299
+ {
3300
+ "name": "terminating",
3301
+ "annotation": {
3302
+ "type": "keyword",
3303
+ "value": "boolean"
3304
+ }
3305
+ },
3306
+ {
3307
+ "name": "uploadOptions",
3308
+ "annotation": {
3309
+ "type": "reference",
3310
+ "typeName": {
3311
+ "type": "identifier",
3312
+ "name": "UploadOptions"
3313
+ }
3681
3314
  }
3682
3315
  }
3683
3316
  ],
3684
3317
  "events": [
3685
3318
  {
3686
- "name": "tab.click",
3319
+ "name": "message.submit",
3687
3320
  "detail": {
3688
3321
  "annotation": {
3689
- "type": "reference",
3690
- "typeName": {
3691
- "type": "identifier",
3692
- "name": "Tab"
3693
- }
3322
+ "type": "keyword",
3323
+ "value": "string"
3694
3324
  }
3695
3325
  }
3696
- }
3697
- ],
3698
- "methods": [],
3699
- "types": [
3700
- {
3701
- "type": "interface",
3702
- "name": "Tab",
3703
- "body": [
3704
- {
3705
- "type": "propertySignature",
3706
- "key": {
3707
- "type": "identifier",
3708
- "name": "id"
3709
- },
3710
- "annotation": {
3711
- "type": "keyword",
3712
- "value": "string"
3713
- },
3714
- "computed": false
3715
- },
3716
- {
3717
- "type": "propertySignature",
3718
- "key": {
3719
- "type": "identifier",
3720
- "name": "label"
3721
- },
3722
- "annotation": {
3723
- "type": "keyword",
3724
- "value": "string"
3725
- },
3726
- "computed": false
3727
- }
3728
- ]
3729
- }
3730
- ]
3731
- },
3732
- "ai-portal.running-flow": {
3733
- "properties": [
3326
+ },
3734
3327
  {
3735
- "name": "spec",
3736
- "annotation": {
3737
- "type": "array",
3738
- "elementType": {
3328
+ "name": "chat.submit",
3329
+ "detail": {
3330
+ "annotation": {
3739
3331
  "type": "reference",
3740
3332
  "typeName": {
3741
3333
  "type": "identifier",
3742
- "name": "FlowStage"
3334
+ "name": "ChatPayload"
3743
3335
  }
3744
3336
  }
3745
3337
  }
3746
3338
  },
3747
3339
  {
3748
- "name": "activeActivityId",
3749
- "annotation": {
3750
- "type": "union",
3751
- "types": [
3752
- {
3753
- "type": "keyword",
3754
- "value": "string"
3755
- },
3756
- {
3757
- "type": "keyword",
3758
- "value": "null"
3759
- }
3760
- ]
3761
- }
3762
- }
3763
- ],
3764
- "events": [
3765
- {
3766
- "name": "active.change",
3340
+ "name": "terminate",
3767
3341
  "detail": {
3768
3342
  "annotation": {
3769
- "type": "union",
3770
- "types": [
3771
- {
3772
- "type": "keyword",
3773
- "value": "string"
3774
- },
3775
- {
3776
- "type": "keyword",
3777
- "value": "null"
3778
- }
3779
- ]
3343
+ "type": "keyword",
3344
+ "value": "void"
3780
3345
  }
3781
3346
  }
3782
3347
  }
@@ -3785,35 +3350,69 @@
3785
3350
  "types": [
3786
3351
  {
3787
3352
  "type": "interface",
3788
- "name": "FlowStage",
3353
+ "name": "UploadOptions",
3789
3354
  "body": [
3790
3355
  {
3791
3356
  "type": "propertySignature",
3792
3357
  "key": {
3793
3358
  "type": "identifier",
3794
- "name": "name"
3359
+ "name": "enabled"
3360
+ },
3361
+ "annotation": {
3362
+ "type": "keyword",
3363
+ "value": "boolean"
3364
+ },
3365
+ "optional": true,
3366
+ "computed": false
3367
+ },
3368
+ {
3369
+ "type": "propertySignature",
3370
+ "key": {
3371
+ "type": "identifier",
3372
+ "name": "dragDisabled"
3373
+ },
3374
+ "annotation": {
3375
+ "type": "keyword",
3376
+ "value": "boolean"
3377
+ },
3378
+ "optional": true,
3379
+ "computed": false
3380
+ },
3381
+ {
3382
+ "type": "propertySignature",
3383
+ "key": {
3384
+ "type": "identifier",
3385
+ "name": "dragTips"
3795
3386
  },
3796
3387
  "annotation": {
3797
3388
  "type": "keyword",
3798
3389
  "value": "string"
3799
3390
  },
3391
+ "optional": true,
3800
3392
  "computed": false
3801
3393
  },
3802
3394
  {
3803
3395
  "type": "propertySignature",
3804
3396
  "key": {
3805
3397
  "type": "identifier",
3806
- "name": "serviceFlowActivities"
3398
+ "name": "accept"
3807
3399
  },
3808
3400
  "annotation": {
3809
- "type": "array",
3810
- "elementType": {
3811
- "type": "reference",
3812
- "typeName": {
3813
- "type": "identifier",
3814
- "name": "FlowActivity"
3815
- }
3816
- }
3401
+ "type": "keyword",
3402
+ "value": "string"
3403
+ },
3404
+ "optional": true,
3405
+ "computed": false
3406
+ },
3407
+ {
3408
+ "type": "propertySignature",
3409
+ "key": {
3410
+ "type": "identifier",
3411
+ "name": "maxFiles"
3412
+ },
3413
+ "annotation": {
3414
+ "type": "keyword",
3415
+ "value": "number"
3817
3416
  },
3818
3417
  "optional": true,
3819
3418
  "computed": false
@@ -3822,29 +3421,50 @@
3822
3421
  },
3823
3422
  {
3824
3423
  "type": "interface",
3825
- "name": "FlowActivity",
3424
+ "name": "ChatPayload",
3826
3425
  "body": [
3827
3426
  {
3828
3427
  "type": "propertySignature",
3829
3428
  "key": {
3830
3429
  "type": "identifier",
3831
- "name": "name"
3430
+ "name": "content"
3832
3431
  },
3833
3432
  "annotation": {
3834
3433
  "type": "keyword",
3835
3434
  "value": "string"
3836
3435
  },
3837
3436
  "computed": false
3838
- },
3437
+ }
3438
+ ],
3439
+ "extends": [
3440
+ {
3441
+ "type": "expressionWithTypeArguments",
3442
+ "expression": {
3443
+ "type": "identifier",
3444
+ "name": "ExtraChatPayload"
3445
+ }
3446
+ }
3447
+ ]
3448
+ },
3449
+ {
3450
+ "type": "interface",
3451
+ "name": "ExtraChatPayload",
3452
+ "body": [
3839
3453
  {
3840
3454
  "type": "propertySignature",
3841
3455
  "key": {
3842
3456
  "type": "identifier",
3843
- "name": "taskId"
3457
+ "name": "files"
3844
3458
  },
3845
3459
  "annotation": {
3846
- "type": "keyword",
3847
- "value": "string"
3460
+ "type": "array",
3461
+ "elementType": {
3462
+ "type": "reference",
3463
+ "typeName": {
3464
+ "type": "identifier",
3465
+ "name": "UploadFileInfo"
3466
+ }
3467
+ }
3848
3468
  },
3849
3469
  "optional": true,
3850
3470
  "computed": false
@@ -3853,7 +3473,7 @@
3853
3473
  "type": "propertySignature",
3854
3474
  "key": {
3855
3475
  "type": "identifier",
3856
- "name": "state"
3476
+ "name": "cmd"
3857
3477
  },
3858
3478
  "annotation": {
3859
3479
  "type": "union",
@@ -3862,15 +3482,12 @@
3862
3482
  "type": "reference",
3863
3483
  "typeName": {
3864
3484
  "type": "identifier",
3865
- "name": "TaskState"
3485
+ "name": "CommandPayload"
3866
3486
  }
3867
3487
  },
3868
3488
  {
3869
- "type": "reference",
3870
- "typeName": {
3871
- "type": "identifier",
3872
- "name": "JobState"
3873
- }
3489
+ "type": "keyword",
3490
+ "value": "null"
3874
3491
  }
3875
3492
  ]
3876
3493
  },
@@ -3881,135 +3498,199 @@
3881
3498
  "type": "propertySignature",
3882
3499
  "key": {
3883
3500
  "type": "identifier",
3884
- "name": "startTime"
3501
+ "name": "aiEmployeeId"
3885
3502
  },
3886
3503
  "annotation": {
3887
- "type": "keyword",
3888
- "value": "number"
3504
+ "type": "union",
3505
+ "types": [
3506
+ {
3507
+ "type": "keyword",
3508
+ "value": "string"
3509
+ },
3510
+ {
3511
+ "type": "keyword",
3512
+ "value": "null"
3513
+ }
3514
+ ]
3889
3515
  },
3890
3516
  "optional": true,
3891
3517
  "computed": false
3892
- },
3518
+ }
3519
+ ]
3520
+ },
3521
+ {
3522
+ "type": "interface",
3523
+ "name": "UploadFileInfo",
3524
+ "body": [
3893
3525
  {
3894
3526
  "type": "propertySignature",
3895
3527
  "key": {
3896
3528
  "type": "identifier",
3897
- "name": "endTime"
3529
+ "name": "fileId"
3898
3530
  },
3899
3531
  "annotation": {
3900
3532
  "type": "keyword",
3901
- "value": "number"
3533
+ "value": "string"
3902
3534
  },
3903
- "optional": true,
3904
3535
  "computed": false
3905
3536
  }
3906
3537
  ]
3907
- }
3908
- ]
3909
- },
3910
- "ai-portal.notice-dropdown": {
3911
- "properties": [
3912
- {
3913
- "name": "dataSource",
3914
- "annotation": {
3915
- "type": "array",
3916
- "elementType": {
3917
- "type": "reference",
3918
- "typeName": {
3919
- "type": "identifier",
3920
- "name": "NoticeItem"
3921
- }
3922
- }
3923
- }
3924
3538
  },
3925
3539
  {
3926
- "name": "popoverPlacement",
3540
+ "type": "typeAlias",
3541
+ "name": "CommandPayload",
3927
3542
  "annotation": {
3928
3543
  "type": "reference",
3929
3544
  "typeName": {
3930
3545
  "type": "identifier",
3931
- "name": "Placement"
3546
+ "name": "CommandPayloadServiceFlowStarting"
3932
3547
  }
3933
3548
  }
3934
3549
  },
3935
3550
  {
3936
- "name": "emptyText",
3551
+ "type": "interface",
3552
+ "name": "CommandPayloadServiceFlowStarting",
3553
+ "body": [
3554
+ {
3555
+ "type": "propertySignature",
3556
+ "key": {
3557
+ "type": "identifier",
3558
+ "name": "type"
3559
+ },
3560
+ "annotation": {
3561
+ "type": "jsLiteral",
3562
+ "value": "serviceFlowStarting"
3563
+ },
3564
+ "computed": false
3565
+ },
3566
+ {
3567
+ "type": "propertySignature",
3568
+ "key": {
3569
+ "type": "identifier",
3570
+ "name": "serviceFlowStarting"
3571
+ },
3572
+ "annotation": {
3573
+ "type": "typeLiteral",
3574
+ "members": [
3575
+ {
3576
+ "type": "propertySignature",
3577
+ "key": {
3578
+ "type": "identifier",
3579
+ "name": "spaceInstanceId"
3580
+ },
3581
+ "annotation": {
3582
+ "type": "keyword",
3583
+ "value": "string"
3584
+ },
3585
+ "computed": false
3586
+ },
3587
+ {
3588
+ "type": "propertySignature",
3589
+ "key": {
3590
+ "type": "identifier",
3591
+ "name": "spaceName"
3592
+ },
3593
+ "annotation": {
3594
+ "type": "keyword",
3595
+ "value": "string"
3596
+ },
3597
+ "optional": true,
3598
+ "computed": false
3599
+ },
3600
+ {
3601
+ "type": "propertySignature",
3602
+ "key": {
3603
+ "type": "identifier",
3604
+ "name": "flowInstanceId"
3605
+ },
3606
+ "annotation": {
3607
+ "type": "keyword",
3608
+ "value": "string"
3609
+ },
3610
+ "optional": true,
3611
+ "computed": false
3612
+ },
3613
+ {
3614
+ "type": "propertySignature",
3615
+ "key": {
3616
+ "type": "identifier",
3617
+ "name": "flowName"
3618
+ },
3619
+ "annotation": {
3620
+ "type": "keyword",
3621
+ "value": "string"
3622
+ },
3623
+ "optional": true,
3624
+ "computed": false
3625
+ }
3626
+ ]
3627
+ },
3628
+ "computed": false
3629
+ }
3630
+ ]
3631
+ }
3632
+ ]
3633
+ },
3634
+ "ai-portal.show-case": {
3635
+ "properties": [
3636
+ {
3637
+ "name": "caseTitle",
3937
3638
  "annotation": {
3938
3639
  "type": "keyword",
3939
3640
  "value": "string"
3940
3641
  }
3941
3642
  },
3942
3643
  {
3943
- "name": "notifyCenterUrl",
3644
+ "name": "summary",
3944
3645
  "annotation": {
3945
3646
  "type": "keyword",
3946
3647
  "value": "string"
3947
3648
  }
3948
3649
  },
3949
3650
  {
3950
- "name": "urlTemplate",
3651
+ "name": "url",
3951
3652
  "annotation": {
3952
3653
  "type": "keyword",
3953
3654
  "value": "string"
3954
3655
  }
3955
- },
3956
- {
3957
- "name": "dropdownMaxWidth",
3958
- "annotation": {
3959
- "type": "union",
3960
- "types": [
3961
- {
3962
- "type": "keyword",
3963
- "value": "string"
3964
- },
3965
- {
3966
- "type": "keyword",
3967
- "value": "number"
3968
- }
3969
- ]
3970
- }
3971
- },
3656
+ }
3657
+ ],
3658
+ "events": [],
3659
+ "methods": []
3660
+ },
3661
+ "ai-portal.flow-tabs": {
3662
+ "properties": [
3972
3663
  {
3973
- "name": "dropdownContentStyle",
3664
+ "name": "tabs",
3974
3665
  "annotation": {
3975
- "type": "reference",
3976
- "typeName": {
3977
- "type": "qualifiedName",
3978
- "left": {
3979
- "type": "identifier",
3980
- "name": "React"
3981
- },
3982
- "right": {
3666
+ "type": "array",
3667
+ "elementType": {
3668
+ "type": "reference",
3669
+ "typeName": {
3983
3670
  "type": "identifier",
3984
- "name": "CSSProperties"
3671
+ "name": "Tab"
3985
3672
  }
3986
3673
  }
3987
3674
  }
3988
3675
  },
3989
3676
  {
3990
- "name": "hideNotifyCenterButton",
3677
+ "name": "activeTab",
3991
3678
  "annotation": {
3992
3679
  "type": "keyword",
3993
- "value": "boolean"
3680
+ "value": "string"
3994
3681
  }
3995
3682
  }
3996
3683
  ],
3997
3684
  "events": [
3998
3685
  {
3999
- "name": "notice.click",
4000
- "detail": {
4001
- "annotation": {
4002
- "type": "keyword",
4003
- "value": "string"
4004
- }
4005
- }
4006
- },
4007
- {
4008
- "name": "mark.all.read",
3686
+ "name": "tab.click",
4009
3687
  "detail": {
4010
3688
  "annotation": {
4011
- "type": "keyword",
4012
- "value": "void"
3689
+ "type": "reference",
3690
+ "typeName": {
3691
+ "type": "identifier",
3692
+ "name": "Tab"
3693
+ }
4013
3694
  }
4014
3695
  }
4015
3696
  }
@@ -4018,7 +3699,7 @@
4018
3699
  "types": [
4019
3700
  {
4020
3701
  "type": "interface",
4021
- "name": "NoticeItem",
3702
+ "name": "Tab",
4022
3703
  "body": [
4023
3704
  {
4024
3705
  "type": "propertySignature",
@@ -4036,43 +3717,7 @@
4036
3717
  "type": "propertySignature",
4037
3718
  "key": {
4038
3719
  "type": "identifier",
4039
- "name": "type"
4040
- },
4041
- "annotation": {
4042
- "type": "keyword",
4043
- "value": "string"
4044
- },
4045
- "computed": false
4046
- },
4047
- {
4048
- "type": "propertySignature",
4049
- "key": {
4050
- "type": "identifier",
4051
- "name": "isUnread"
4052
- },
4053
- "annotation": {
4054
- "type": "keyword",
4055
- "value": "boolean"
4056
- },
4057
- "computed": false
4058
- },
4059
- {
4060
- "type": "propertySignature",
4061
- "key": {
4062
- "type": "identifier",
4063
- "name": "title"
4064
- },
4065
- "annotation": {
4066
- "type": "keyword",
4067
- "value": "string"
4068
- },
4069
- "computed": false
4070
- },
4071
- {
4072
- "type": "propertySignature",
4073
- "key": {
4074
- "type": "identifier",
4075
- "name": "description"
3720
+ "name": "label"
4076
3721
  },
4077
3722
  "annotation": {
4078
3723
  "type": "keyword",
@@ -4238,30 +3883,271 @@
4238
3883
  "name": "deleteActivity",
4239
3884
  "params": [
4240
3885
  {
4241
- "name": "stage",
3886
+ "name": "stage",
3887
+ "annotation": {
3888
+ "type": "reference",
3889
+ "typeName": {
3890
+ "type": "identifier",
3891
+ "name": "Stage"
3892
+ }
3893
+ }
3894
+ },
3895
+ {
3896
+ "name": "activityIndex",
3897
+ "annotation": {
3898
+ "type": "keyword",
3899
+ "value": "number"
3900
+ }
3901
+ }
3902
+ ],
3903
+ "returns": {}
3904
+ }
3905
+ ],
3906
+ "types": [
3907
+ {
3908
+ "type": "interface",
3909
+ "name": "Stage",
3910
+ "body": [
3911
+ {
3912
+ "type": "propertySignature",
3913
+ "key": {
3914
+ "type": "identifier",
3915
+ "name": "name"
3916
+ },
3917
+ "annotation": {
3918
+ "type": "keyword",
3919
+ "value": "string"
3920
+ },
3921
+ "computed": false
3922
+ },
3923
+ {
3924
+ "type": "propertySignature",
3925
+ "key": {
3926
+ "type": "identifier",
3927
+ "name": "serviceFlowActivities"
3928
+ },
3929
+ "annotation": {
3930
+ "type": "array",
3931
+ "elementType": {
3932
+ "type": "reference",
3933
+ "typeName": {
3934
+ "type": "identifier",
3935
+ "name": "FlowActivity"
3936
+ }
3937
+ }
3938
+ },
3939
+ "optional": true,
3940
+ "computed": false
3941
+ }
3942
+ ]
3943
+ },
3944
+ {
3945
+ "type": "interface",
3946
+ "name": "FlowActivity",
3947
+ "body": [
3948
+ {
3949
+ "type": "propertySignature",
3950
+ "key": {
3951
+ "type": "identifier",
3952
+ "name": "name"
3953
+ },
3954
+ "annotation": {
3955
+ "type": "keyword",
3956
+ "value": "string"
3957
+ },
3958
+ "computed": false
3959
+ },
3960
+ {
3961
+ "type": "propertySignature",
3962
+ "key": {
3963
+ "type": "identifier",
3964
+ "name": "description"
3965
+ },
3966
+ "annotation": {
3967
+ "type": "keyword",
3968
+ "value": "string"
3969
+ },
3970
+ "optional": true,
3971
+ "computed": false
3972
+ },
3973
+ {
3974
+ "type": "propertySignature",
3975
+ "key": {
3976
+ "type": "identifier",
3977
+ "name": "aiEmployeeId"
3978
+ },
3979
+ "annotation": {
3980
+ "type": "keyword",
3981
+ "value": "string"
3982
+ },
3983
+ "optional": true,
3984
+ "computed": false
3985
+ },
3986
+ {
3987
+ "type": "propertySignature",
3988
+ "key": {
3989
+ "type": "identifier",
3990
+ "name": "hilRules"
3991
+ },
3992
+ "annotation": {
3993
+ "type": "keyword",
3994
+ "value": "string"
3995
+ },
3996
+ "optional": true,
3997
+ "computed": false
3998
+ },
3999
+ {
4000
+ "type": "propertySignature",
4001
+ "key": {
4002
+ "type": "identifier",
4003
+ "name": "hilUser"
4004
+ },
4005
+ "annotation": {
4006
+ "type": "keyword",
4007
+ "value": "string"
4008
+ },
4009
+ "optional": true,
4010
+ "computed": false
4011
+ }
4012
+ ]
4013
+ },
4014
+ {
4015
+ "type": "interface",
4016
+ "name": "AIEmployee",
4017
+ "body": [
4018
+ {
4019
+ "type": "propertySignature",
4020
+ "key": {
4021
+ "type": "identifier",
4022
+ "name": "employeeId"
4023
+ },
4024
+ "annotation": {
4025
+ "type": "keyword",
4026
+ "value": "string"
4027
+ },
4028
+ "computed": false
4029
+ },
4030
+ {
4031
+ "type": "propertySignature",
4032
+ "key": {
4033
+ "type": "identifier",
4034
+ "name": "name"
4035
+ },
4036
+ "annotation": {
4037
+ "type": "keyword",
4038
+ "value": "string"
4039
+ },
4040
+ "computed": false
4041
+ }
4042
+ ]
4043
+ },
4044
+ {
4045
+ "type": "interface",
4046
+ "name": "EditActivityDetail",
4047
+ "body": [
4048
+ {
4049
+ "type": "propertySignature",
4050
+ "key": {
4051
+ "type": "identifier",
4052
+ "name": "stage"
4053
+ },
4054
+ "annotation": {
4055
+ "type": "reference",
4056
+ "typeName": {
4057
+ "type": "identifier",
4058
+ "name": "Stage"
4059
+ }
4060
+ },
4061
+ "computed": false
4062
+ },
4063
+ {
4064
+ "type": "propertySignature",
4065
+ "key": {
4066
+ "type": "identifier",
4067
+ "name": "activity"
4068
+ },
4242
4069
  "annotation": {
4243
4070
  "type": "reference",
4244
4071
  "typeName": {
4245
4072
  "type": "identifier",
4246
- "name": "Stage"
4073
+ "name": "FlowActivity"
4247
4074
  }
4248
- }
4075
+ },
4076
+ "computed": false
4249
4077
  },
4250
4078
  {
4251
- "name": "activityIndex",
4079
+ "type": "propertySignature",
4080
+ "key": {
4081
+ "type": "identifier",
4082
+ "name": "activityIndex"
4083
+ },
4252
4084
  "annotation": {
4253
4085
  "type": "keyword",
4254
4086
  "value": "number"
4087
+ },
4088
+ "computed": false
4089
+ }
4090
+ ]
4091
+ }
4092
+ ]
4093
+ },
4094
+ "ai-portal.running-flow": {
4095
+ "properties": [
4096
+ {
4097
+ "name": "spec",
4098
+ "annotation": {
4099
+ "type": "array",
4100
+ "elementType": {
4101
+ "type": "reference",
4102
+ "typeName": {
4103
+ "type": "identifier",
4104
+ "name": "FlowStage"
4255
4105
  }
4256
4106
  }
4257
- ],
4258
- "returns": {}
4107
+ }
4108
+ },
4109
+ {
4110
+ "name": "activeActivityId",
4111
+ "annotation": {
4112
+ "type": "union",
4113
+ "types": [
4114
+ {
4115
+ "type": "keyword",
4116
+ "value": "string"
4117
+ },
4118
+ {
4119
+ "type": "keyword",
4120
+ "value": "null"
4121
+ }
4122
+ ]
4123
+ }
4124
+ }
4125
+ ],
4126
+ "events": [
4127
+ {
4128
+ "name": "active.change",
4129
+ "detail": {
4130
+ "annotation": {
4131
+ "type": "union",
4132
+ "types": [
4133
+ {
4134
+ "type": "keyword",
4135
+ "value": "string"
4136
+ },
4137
+ {
4138
+ "type": "keyword",
4139
+ "value": "null"
4140
+ }
4141
+ ]
4142
+ }
4143
+ }
4259
4144
  }
4260
4145
  ],
4146
+ "methods": [],
4261
4147
  "types": [
4262
4148
  {
4263
4149
  "type": "interface",
4264
- "name": "Stage",
4150
+ "name": "FlowStage",
4265
4151
  "body": [
4266
4152
  {
4267
4153
  "type": "propertySignature",
@@ -4316,7 +4202,7 @@
4316
4202
  "type": "propertySignature",
4317
4203
  "key": {
4318
4204
  "type": "identifier",
4319
- "name": "description"
4205
+ "name": "taskId"
4320
4206
  },
4321
4207
  "annotation": {
4322
4208
  "type": "keyword",
@@ -4329,11 +4215,26 @@
4329
4215
  "type": "propertySignature",
4330
4216
  "key": {
4331
4217
  "type": "identifier",
4332
- "name": "aiEmployeeId"
4218
+ "name": "state"
4333
4219
  },
4334
4220
  "annotation": {
4335
- "type": "keyword",
4336
- "value": "string"
4221
+ "type": "union",
4222
+ "types": [
4223
+ {
4224
+ "type": "reference",
4225
+ "typeName": {
4226
+ "type": "identifier",
4227
+ "name": "TaskState"
4228
+ }
4229
+ },
4230
+ {
4231
+ "type": "reference",
4232
+ "typeName": {
4233
+ "type": "identifier",
4234
+ "name": "JobState"
4235
+ }
4236
+ }
4237
+ ]
4337
4238
  },
4338
4239
  "optional": true,
4339
4240
  "computed": false
@@ -4342,11 +4243,11 @@
4342
4243
  "type": "propertySignature",
4343
4244
  "key": {
4344
4245
  "type": "identifier",
4345
- "name": "hilRules"
4246
+ "name": "startTime"
4346
4247
  },
4347
4248
  "annotation": {
4348
4249
  "type": "keyword",
4349
- "value": "string"
4250
+ "value": "number"
4350
4251
  },
4351
4252
  "optional": true,
4352
4253
  "computed": false
@@ -4355,26 +4256,137 @@
4355
4256
  "type": "propertySignature",
4356
4257
  "key": {
4357
4258
  "type": "identifier",
4358
- "name": "hilUser"
4259
+ "name": "endTime"
4359
4260
  },
4360
4261
  "annotation": {
4361
4262
  "type": "keyword",
4362
- "value": "string"
4263
+ "value": "number"
4363
4264
  },
4364
4265
  "optional": true,
4365
4266
  "computed": false
4366
4267
  }
4367
4268
  ]
4269
+ }
4270
+ ]
4271
+ },
4272
+ "ai-portal.notice-dropdown": {
4273
+ "properties": [
4274
+ {
4275
+ "name": "dataSource",
4276
+ "annotation": {
4277
+ "type": "array",
4278
+ "elementType": {
4279
+ "type": "reference",
4280
+ "typeName": {
4281
+ "type": "identifier",
4282
+ "name": "NoticeItem"
4283
+ }
4284
+ }
4285
+ }
4286
+ },
4287
+ {
4288
+ "name": "popoverPlacement",
4289
+ "annotation": {
4290
+ "type": "reference",
4291
+ "typeName": {
4292
+ "type": "identifier",
4293
+ "name": "Placement"
4294
+ }
4295
+ }
4296
+ },
4297
+ {
4298
+ "name": "emptyText",
4299
+ "annotation": {
4300
+ "type": "keyword",
4301
+ "value": "string"
4302
+ }
4303
+ },
4304
+ {
4305
+ "name": "notifyCenterUrl",
4306
+ "annotation": {
4307
+ "type": "keyword",
4308
+ "value": "string"
4309
+ }
4310
+ },
4311
+ {
4312
+ "name": "urlTemplate",
4313
+ "annotation": {
4314
+ "type": "keyword",
4315
+ "value": "string"
4316
+ }
4317
+ },
4318
+ {
4319
+ "name": "dropdownMaxWidth",
4320
+ "annotation": {
4321
+ "type": "union",
4322
+ "types": [
4323
+ {
4324
+ "type": "keyword",
4325
+ "value": "string"
4326
+ },
4327
+ {
4328
+ "type": "keyword",
4329
+ "value": "number"
4330
+ }
4331
+ ]
4332
+ }
4333
+ },
4334
+ {
4335
+ "name": "dropdownContentStyle",
4336
+ "annotation": {
4337
+ "type": "reference",
4338
+ "typeName": {
4339
+ "type": "qualifiedName",
4340
+ "left": {
4341
+ "type": "identifier",
4342
+ "name": "React"
4343
+ },
4344
+ "right": {
4345
+ "type": "identifier",
4346
+ "name": "CSSProperties"
4347
+ }
4348
+ }
4349
+ }
4350
+ },
4351
+ {
4352
+ "name": "hideNotifyCenterButton",
4353
+ "annotation": {
4354
+ "type": "keyword",
4355
+ "value": "boolean"
4356
+ }
4357
+ }
4358
+ ],
4359
+ "events": [
4360
+ {
4361
+ "name": "notice.click",
4362
+ "detail": {
4363
+ "annotation": {
4364
+ "type": "keyword",
4365
+ "value": "string"
4366
+ }
4367
+ }
4368
4368
  },
4369
+ {
4370
+ "name": "mark.all.read",
4371
+ "detail": {
4372
+ "annotation": {
4373
+ "type": "keyword",
4374
+ "value": "void"
4375
+ }
4376
+ }
4377
+ }
4378
+ ],
4379
+ "methods": [],
4380
+ "types": [
4369
4381
  {
4370
4382
  "type": "interface",
4371
- "name": "AIEmployee",
4383
+ "name": "NoticeItem",
4372
4384
  "body": [
4373
4385
  {
4374
4386
  "type": "propertySignature",
4375
4387
  "key": {
4376
4388
  "type": "identifier",
4377
- "name": "employeeId"
4389
+ "name": "id"
4378
4390
  },
4379
4391
  "annotation": {
4380
4392
  "type": "keyword",
@@ -4386,32 +4398,23 @@
4386
4398
  "type": "propertySignature",
4387
4399
  "key": {
4388
4400
  "type": "identifier",
4389
- "name": "name"
4401
+ "name": "type"
4390
4402
  },
4391
4403
  "annotation": {
4392
4404
  "type": "keyword",
4393
4405
  "value": "string"
4394
4406
  },
4395
4407
  "computed": false
4396
- }
4397
- ]
4398
- },
4399
- {
4400
- "type": "interface",
4401
- "name": "EditActivityDetail",
4402
- "body": [
4408
+ },
4403
4409
  {
4404
4410
  "type": "propertySignature",
4405
4411
  "key": {
4406
4412
  "type": "identifier",
4407
- "name": "stage"
4413
+ "name": "isUnread"
4408
4414
  },
4409
4415
  "annotation": {
4410
- "type": "reference",
4411
- "typeName": {
4412
- "type": "identifier",
4413
- "name": "Stage"
4414
- }
4416
+ "type": "keyword",
4417
+ "value": "boolean"
4415
4418
  },
4416
4419
  "computed": false
4417
4420
  },
@@ -4419,14 +4422,11 @@
4419
4422
  "type": "propertySignature",
4420
4423
  "key": {
4421
4424
  "type": "identifier",
4422
- "name": "activity"
4425
+ "name": "title"
4423
4426
  },
4424
4427
  "annotation": {
4425
- "type": "reference",
4426
- "typeName": {
4427
- "type": "identifier",
4428
- "name": "FlowActivity"
4429
- }
4428
+ "type": "keyword",
4429
+ "value": "string"
4430
4430
  },
4431
4431
  "computed": false
4432
4432
  },
@@ -4434,11 +4434,11 @@
4434
4434
  "type": "propertySignature",
4435
4435
  "key": {
4436
4436
  "type": "identifier",
4437
- "name": "activityIndex"
4437
+ "name": "description"
4438
4438
  },
4439
4439
  "annotation": {
4440
4440
  "type": "keyword",
4441
- "value": "number"
4441
+ "value": "string"
4442
4442
  },
4443
4443
  "computed": false
4444
4444
  }