@next-bricks/ai-portal 0.58.4 → 0.58.5

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
@@ -77,6 +77,123 @@
77
77
  }
78
78
  ]
79
79
  },
80
+ "ai-portal.home-container": {
81
+ "properties": [
82
+ {
83
+ "name": "sticky",
84
+ "annotation": {
85
+ "type": "keyword",
86
+ "value": "boolean"
87
+ }
88
+ }
89
+ ],
90
+ "events": [],
91
+ "methods": []
92
+ },
93
+ "ai-portal.stat-with-mini-chart": {
94
+ "properties": [
95
+ {
96
+ "name": "label",
97
+ "annotation": {
98
+ "type": "keyword",
99
+ "value": "string"
100
+ }
101
+ },
102
+ {
103
+ "name": "value",
104
+ "annotation": {
105
+ "type": "keyword",
106
+ "value": "string"
107
+ }
108
+ },
109
+ {
110
+ "name": "size",
111
+ "annotation": {
112
+ "type": "union",
113
+ "types": [
114
+ {
115
+ "type": "jsLiteral",
116
+ "value": "medium"
117
+ },
118
+ {
119
+ "type": "jsLiteral",
120
+ "value": "small"
121
+ }
122
+ ]
123
+ }
124
+ },
125
+ {
126
+ "name": "lineColor",
127
+ "annotation": {
128
+ "type": "keyword",
129
+ "value": "string"
130
+ }
131
+ },
132
+ {
133
+ "name": "showArea",
134
+ "annotation": {
135
+ "type": "keyword",
136
+ "value": "boolean"
137
+ }
138
+ },
139
+ {
140
+ "name": "min",
141
+ "annotation": {
142
+ "type": "keyword",
143
+ "value": "number"
144
+ }
145
+ },
146
+ {
147
+ "name": "max",
148
+ "annotation": {
149
+ "type": "keyword",
150
+ "value": "number"
151
+ }
152
+ },
153
+ {
154
+ "name": "xField",
155
+ "annotation": {
156
+ "type": "keyword",
157
+ "value": "string"
158
+ }
159
+ },
160
+ {
161
+ "name": "yField",
162
+ "annotation": {
163
+ "type": "keyword",
164
+ "value": "string"
165
+ }
166
+ },
167
+ {
168
+ "name": "data",
169
+ "annotation": {
170
+ "type": "array",
171
+ "elementType": {
172
+ "type": "reference",
173
+ "typeName": {
174
+ "type": "identifier",
175
+ "name": "Record"
176
+ },
177
+ "typeParameters": {
178
+ "type": "typeParameterInstantiation",
179
+ "params": [
180
+ {
181
+ "type": "keyword",
182
+ "value": "string"
183
+ },
184
+ {
185
+ "type": "keyword",
186
+ "value": "number"
187
+ }
188
+ ]
189
+ }
190
+ }
191
+ }
192
+ }
193
+ ],
194
+ "events": [],
195
+ "methods": []
196
+ },
80
197
  "ai-portal.call-tool": {
81
198
  "type": "provider",
82
199
  "params": [
@@ -133,71 +250,6 @@
133
250
  }
134
251
  }
135
252
  },
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
- },
201
253
  "ai-portal.save-request-store": {
202
254
  "type": "provider",
203
255
  "params": [
@@ -699,54 +751,45 @@
699
751
  }
700
752
  }
701
753
  },
702
- "ai-portal.tab-list": {
703
- "properties": [
754
+ "ai-portal.set-chat-command": {
755
+ "type": "provider",
756
+ "params": [
704
757
  {
705
- "name": "tabs",
758
+ "name": "command",
706
759
  "annotation": {
707
- "type": "array",
708
- "elementType": {
709
- "type": "reference",
710
- "typeName": {
711
- "type": "identifier",
712
- "name": "Tab"
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"
713
772
  }
714
- }
715
- }
716
- },
717
- {
718
- "name": "activeTab",
719
- "annotation": {
720
- "type": "keyword",
721
- "value": "string"
773
+ ]
722
774
  }
723
775
  }
724
776
  ],
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
- }
777
+ "returns": {
778
+ "annotation": {
779
+ "type": "keyword",
780
+ "value": "void"
737
781
  }
738
- ],
739
- "methods": [],
782
+ },
740
783
  "types": [
741
784
  {
742
785
  "type": "interface",
743
- "name": "Tab",
786
+ "name": "ChatCommand",
744
787
  "body": [
745
788
  {
746
789
  "type": "propertySignature",
747
790
  "key": {
748
791
  "type": "identifier",
749
- "name": "id"
792
+ "name": "command"
750
793
  },
751
794
  "annotation": {
752
795
  "type": "keyword",
@@ -758,11 +801,14 @@
758
801
  "type": "propertySignature",
759
802
  "key": {
760
803
  "type": "identifier",
761
- "name": "label"
804
+ "name": "payload"
762
805
  },
763
806
  "annotation": {
764
- "type": "keyword",
765
- "value": "string"
807
+ "type": "reference",
808
+ "typeName": {
809
+ "type": "identifier",
810
+ "name": "CommandPayload"
811
+ }
766
812
  },
767
813
  "computed": false
768
814
  }
@@ -878,142 +924,96 @@
878
924
  }
879
925
  ]
880
926
  },
881
- "ai-portal.home-container": {
927
+ "ai-portal.tab-list": {
882
928
  "properties": [
883
929
  {
884
- "name": "sticky",
930
+ "name": "tabs",
885
931
  "annotation": {
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"
932
+ "type": "array",
933
+ "elementType": {
934
+ "type": "reference",
935
+ "typeName": {
936
+ "type": "identifier",
937
+ "name": "Tab"
922
938
  }
923
- ]
924
- }
925
- },
926
- {
927
- "name": "lineColor",
928
- "annotation": {
929
- "type": "keyword",
930
- "value": "string"
931
- }
932
- },
933
- {
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"
939
+ }
959
940
  }
960
941
  },
961
942
  {
962
- "name": "yField",
943
+ "name": "activeTab",
963
944
  "annotation": {
964
945
  "type": "keyword",
965
946
  "value": "string"
966
947
  }
967
- },
948
+ }
949
+ ],
950
+ "events": [
968
951
  {
969
- "name": "data",
970
- "annotation": {
971
- "type": "array",
972
- "elementType": {
952
+ "name": "tab.click",
953
+ "detail": {
954
+ "annotation": {
973
955
  "type": "reference",
974
956
  "typeName": {
975
957
  "type": "identifier",
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
- ]
958
+ "name": "Tab"
990
959
  }
991
960
  }
992
961
  }
993
962
  }
994
963
  ],
995
- "events": [],
996
- "methods": []
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
+ ]
997
997
  },
998
998
  "ai-portal.elevo-logo": {
999
999
  "properties": [],
1000
1000
  "events": [],
1001
1001
  "methods": []
1002
1002
  },
1003
- "ai-portal.sticky-container": {
1003
+ "ai-portal.blank-state": {
1004
1004
  "properties": [
1005
1005
  {
1006
- "name": "variant",
1006
+ "name": "illustration",
1007
1007
  "annotation": {
1008
1008
  "type": "reference",
1009
1009
  "typeName": {
1010
1010
  "type": "identifier",
1011
- "name": "StickyContainerVariant"
1011
+ "name": "BlankStateIllustration"
1012
1012
  }
1013
1013
  }
1014
1014
  },
1015
1015
  {
1016
- "name": "textContent",
1016
+ "name": "description",
1017
1017
  "annotation": {
1018
1018
  "type": "keyword",
1019
1019
  "value": "string"
@@ -1025,37 +1025,45 @@
1025
1025
  "types": [
1026
1026
  {
1027
1027
  "type": "typeAlias",
1028
- "name": "StickyContainerVariant",
1028
+ "name": "BlankStateIllustration",
1029
1029
  "annotation": {
1030
1030
  "type": "union",
1031
1031
  "types": [
1032
1032
  {
1033
1033
  "type": "jsLiteral",
1034
- "value": "default"
1034
+ "value": "goals"
1035
1035
  },
1036
1036
  {
1037
1037
  "type": "jsLiteral",
1038
- "value": "home"
1038
+ "value": "activities"
1039
+ },
1040
+ {
1041
+ "type": "jsLiteral",
1042
+ "value": "collaboration-spaces"
1043
+ },
1044
+ {
1045
+ "type": "jsLiteral",
1046
+ "value": "serviceflows"
1039
1047
  }
1040
1048
  ]
1041
1049
  }
1042
1050
  }
1043
1051
  ]
1044
1052
  },
1045
- "ai-portal.blank-state": {
1053
+ "ai-portal.sticky-container": {
1046
1054
  "properties": [
1047
1055
  {
1048
- "name": "illustration",
1056
+ "name": "variant",
1049
1057
  "annotation": {
1050
1058
  "type": "reference",
1051
1059
  "typeName": {
1052
1060
  "type": "identifier",
1053
- "name": "BlankStateIllustration"
1061
+ "name": "StickyContainerVariant"
1054
1062
  }
1055
1063
  }
1056
1064
  },
1057
1065
  {
1058
- "name": "description",
1066
+ "name": "textContent",
1059
1067
  "annotation": {
1060
1068
  "type": "keyword",
1061
1069
  "value": "string"
@@ -1067,25 +1075,17 @@
1067
1075
  "types": [
1068
1076
  {
1069
1077
  "type": "typeAlias",
1070
- "name": "BlankStateIllustration",
1078
+ "name": "StickyContainerVariant",
1071
1079
  "annotation": {
1072
1080
  "type": "union",
1073
1081
  "types": [
1074
1082
  {
1075
1083
  "type": "jsLiteral",
1076
- "value": "goals"
1077
- },
1078
- {
1079
- "type": "jsLiteral",
1080
- "value": "activities"
1081
- },
1082
- {
1083
- "type": "jsLiteral",
1084
- "value": "collaboration-spaces"
1084
+ "value": "default"
1085
1085
  },
1086
1086
  {
1087
1087
  "type": "jsLiteral",
1088
- "value": "serviceflows"
1088
+ "value": "home"
1089
1089
  }
1090
1090
  ]
1091
1091
  }
@@ -2292,282 +2292,308 @@
2292
2292
  }
2293
2293
  ]
2294
2294
  },
2295
- "ai-portal.activity-timeline": {
2295
+ "ai-portal.chat-input": {
2296
2296
  "properties": [
2297
2297
  {
2298
- "name": "list",
2298
+ "name": "placeholder",
2299
2299
  "annotation": {
2300
- "type": "array",
2301
- "elementType": {
2302
- "type": "reference",
2303
- "typeName": {
2304
- "type": "identifier",
2305
- "name": "Activity"
2306
- }
2307
- }
2300
+ "type": "keyword",
2301
+ "value": "string"
2308
2302
  }
2309
2303
  },
2310
2304
  {
2311
- "name": "chatUrlTemplate",
2305
+ "name": "autoFocus",
2312
2306
  "annotation": {
2313
2307
  "type": "keyword",
2314
- "value": "string"
2308
+ "value": "boolean"
2309
+ }
2310
+ },
2311
+ {
2312
+ "name": "submitDisabled",
2313
+ "annotation": {
2314
+ "type": "keyword",
2315
+ "value": "boolean"
2316
+ }
2317
+ },
2318
+ {
2319
+ "name": "supportsTerminate",
2320
+ "annotation": {
2321
+ "type": "keyword",
2322
+ "value": "boolean"
2323
+ }
2324
+ },
2325
+ {
2326
+ "name": "terminating",
2327
+ "annotation": {
2328
+ "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
+ }
2315
2340
  }
2316
2341
  }
2317
2342
  ],
2318
- "events": [],
2319
- "methods": [],
2320
- "types": [
2343
+ "events": [
2321
2344
  {
2322
- "type": "typeAlias",
2323
- "name": "Activity",
2324
- "annotation": {
2325
- "type": "union",
2326
- "types": [
2327
- {
2328
- "type": "reference",
2329
- "typeName": {
2330
- "type": "identifier",
2331
- "name": "ActivityOfCreateGoal"
2332
- }
2333
- },
2334
- {
2335
- "type": "reference",
2336
- "typeName": {
2337
- "type": "identifier",
2338
- "name": "ActivityOfEditGoal"
2339
- }
2340
- },
2341
- {
2342
- "type": "reference",
2343
- "typeName": {
2344
- "type": "identifier",
2345
- "name": "ActivityOfDeleteGoal"
2346
- }
2347
- },
2348
- {
2349
- "type": "reference",
2350
- "typeName": {
2351
- "type": "identifier",
2352
- "name": "ActivityOfDecomposeGoals"
2353
- }
2354
- },
2355
- {
2356
- "type": "reference",
2357
- "typeName": {
2358
- "type": "identifier",
2359
- "name": "ActivityOfAlterOwner"
2360
- }
2361
- },
2362
- {
2363
- "type": "reference",
2364
- "typeName": {
2365
- "type": "identifier",
2366
- "name": "ActivityOfAlterUser"
2367
- }
2368
- },
2369
- {
2370
- "type": "reference",
2371
- "typeName": {
2372
- "type": "identifier",
2373
- "name": "ActivityOfAddComment"
2374
- }
2375
- },
2376
- {
2377
- "type": "reference",
2378
- "typeName": {
2379
- "type": "identifier",
2380
- "name": "ActivityOfStartConversation"
2381
- }
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"
2382
2361
  }
2383
- ]
2362
+ }
2384
2363
  }
2385
2364
  },
2365
+ {
2366
+ "name": "terminate",
2367
+ "detail": {
2368
+ "annotation": {
2369
+ "type": "keyword",
2370
+ "value": "void"
2371
+ }
2372
+ }
2373
+ }
2374
+ ],
2375
+ "methods": [],
2376
+ "types": [
2386
2377
  {
2387
2378
  "type": "interface",
2388
- "name": "ActivityOfCreateGoal",
2379
+ "name": "UploadOptions",
2389
2380
  "body": [
2390
2381
  {
2391
2382
  "type": "propertySignature",
2392
2383
  "key": {
2393
2384
  "type": "identifier",
2394
- "name": "action_type"
2385
+ "name": "enabled"
2395
2386
  },
2396
2387
  "annotation": {
2397
- "type": "jsLiteral",
2398
- "value": "create_goal"
2388
+ "type": "keyword",
2389
+ "value": "boolean"
2399
2390
  },
2391
+ "optional": true,
2400
2392
  "computed": false
2401
2393
  },
2402
2394
  {
2403
2395
  "type": "propertySignature",
2404
2396
  "key": {
2405
2397
  "type": "identifier",
2406
- "name": "metadata"
2398
+ "name": "dragDisabled"
2407
2399
  },
2408
2400
  "annotation": {
2409
- "type": "typeLiteral",
2410
- "members": [
2411
- {
2412
- "type": "propertySignature",
2413
- "key": {
2414
- "type": "identifier",
2415
- "name": "goal_title"
2416
- },
2417
- "annotation": {
2418
- "type": "keyword",
2419
- "value": "string"
2420
- },
2421
- "computed": false
2422
- },
2423
- {
2424
- "type": "propertySignature",
2425
- "key": {
2426
- "type": "identifier",
2427
- "name": "goal_description"
2428
- },
2429
- "annotation": {
2430
- "type": "keyword",
2431
- "value": "string"
2432
- },
2433
- "optional": true,
2434
- "computed": false
2435
- }
2436
- ]
2401
+ "type": "keyword",
2402
+ "value": "boolean"
2437
2403
  },
2404
+ "optional": true,
2438
2405
  "computed": false
2439
- }
2440
- ],
2441
- "extends": [
2442
- {
2443
- "type": "expressionWithTypeArguments",
2444
- "expression": {
2445
- "type": "identifier",
2446
- "name": "ActivityBase"
2447
- }
2448
- }
2449
- ]
2450
- },
2451
- {
2452
- "type": "interface",
2453
- "name": "ActivityBase",
2454
- "body": [
2406
+ },
2455
2407
  {
2456
2408
  "type": "propertySignature",
2457
2409
  "key": {
2458
2410
  "type": "identifier",
2459
- "name": "user_id"
2411
+ "name": "dragTips"
2460
2412
  },
2461
2413
  "annotation": {
2462
2414
  "type": "keyword",
2463
2415
  "value": "string"
2464
2416
  },
2417
+ "optional": true,
2465
2418
  "computed": false
2466
2419
  },
2467
2420
  {
2468
2421
  "type": "propertySignature",
2469
2422
  "key": {
2470
2423
  "type": "identifier",
2471
- "name": "user_name"
2424
+ "name": "accept"
2472
2425
  },
2473
2426
  "annotation": {
2474
2427
  "type": "keyword",
2475
2428
  "value": "string"
2476
2429
  },
2430
+ "optional": true,
2477
2431
  "computed": false
2478
2432
  },
2479
2433
  {
2480
2434
  "type": "propertySignature",
2481
2435
  "key": {
2482
2436
  "type": "identifier",
2483
- "name": "time"
2437
+ "name": "maxFiles"
2484
2438
  },
2485
2439
  "annotation": {
2486
2440
  "type": "keyword",
2487
2441
  "value": "number"
2488
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,
2489
2496
  "computed": false
2490
2497
  },
2491
2498
  {
2492
2499
  "type": "propertySignature",
2493
2500
  "key": {
2494
2501
  "type": "identifier",
2495
- "name": "action_type"
2502
+ "name": "cmd"
2496
2503
  },
2497
2504
  "annotation": {
2498
2505
  "type": "union",
2499
2506
  "types": [
2500
2507
  {
2501
- "type": "jsLiteral",
2502
- "value": "create_goal"
2503
- },
2504
- {
2505
- "type": "jsLiteral",
2506
- "value": "edit_goal"
2507
- },
2508
- {
2509
- "type": "jsLiteral",
2510
- "value": "delete_goal"
2511
- },
2512
- {
2513
- "type": "jsLiteral",
2514
- "value": "decompose_goals"
2515
- },
2516
- {
2517
- "type": "jsLiteral",
2518
- "value": "alter_owner"
2519
- },
2520
- {
2521
- "type": "jsLiteral",
2522
- "value": "alter_user"
2523
- },
2524
- {
2525
- "type": "jsLiteral",
2526
- "value": "add_comment"
2508
+ "type": "reference",
2509
+ "typeName": {
2510
+ "type": "identifier",
2511
+ "name": "CommandPayload"
2512
+ }
2527
2513
  },
2528
2514
  {
2529
- "type": "jsLiteral",
2530
- "value": "start_conversation"
2515
+ "type": "keyword",
2516
+ "value": "null"
2531
2517
  }
2532
2518
  ]
2533
2519
  },
2520
+ "optional": true,
2534
2521
  "computed": false
2535
2522
  },
2536
2523
  {
2537
2524
  "type": "propertySignature",
2538
2525
  "key": {
2539
2526
  "type": "identifier",
2540
- "name": "metadata"
2527
+ "name": "aiEmployeeId"
2541
2528
  },
2542
2529
  "annotation": {
2543
- "type": "keyword",
2544
- "value": "unknown"
2530
+ "type": "union",
2531
+ "types": [
2532
+ {
2533
+ "type": "keyword",
2534
+ "value": "string"
2535
+ },
2536
+ {
2537
+ "type": "keyword",
2538
+ "value": "null"
2539
+ }
2540
+ ]
2545
2541
  },
2542
+ "optional": true,
2546
2543
  "computed": false
2547
2544
  }
2548
2545
  ]
2549
2546
  },
2550
2547
  {
2551
2548
  "type": "interface",
2552
- "name": "ActivityOfEditGoal",
2549
+ "name": "UploadFileInfo",
2553
2550
  "body": [
2554
2551
  {
2555
2552
  "type": "propertySignature",
2556
2553
  "key": {
2557
2554
  "type": "identifier",
2558
- "name": "action_type"
2555
+ "name": "fileId"
2559
2556
  },
2560
2557
  "annotation": {
2561
- "type": "jsLiteral",
2562
- "value": "edit_goal"
2558
+ "type": "keyword",
2559
+ "value": "string"
2563
2560
  },
2564
2561
  "computed": false
2565
- },
2566
- {
2567
- "type": "propertySignature",
2568
- "key": {
2569
- "type": "identifier",
2570
- "name": "metadata"
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"
2571
2597
  },
2572
2598
  "annotation": {
2573
2599
  "type": "typeLiteral",
@@ -2576,38 +2602,11 @@
2576
2602
  "type": "propertySignature",
2577
2603
  "key": {
2578
2604
  "type": "identifier",
2579
- "name": "before"
2605
+ "name": "spaceInstanceId"
2580
2606
  },
2581
2607
  "annotation": {
2582
- "type": "typeLiteral",
2583
- "members": [
2584
- {
2585
- "type": "propertySignature",
2586
- "key": {
2587
- "type": "identifier",
2588
- "name": "title"
2589
- },
2590
- "annotation": {
2591
- "type": "keyword",
2592
- "value": "string"
2593
- },
2594
- "optional": true,
2595
- "computed": false
2596
- },
2597
- {
2598
- "type": "propertySignature",
2599
- "key": {
2600
- "type": "identifier",
2601
- "name": "description"
2602
- },
2603
- "annotation": {
2604
- "type": "keyword",
2605
- "value": "string"
2606
- },
2607
- "optional": true,
2608
- "computed": false
2609
- }
2610
- ]
2608
+ "type": "keyword",
2609
+ "value": "string"
2611
2610
  },
2612
2611
  "computed": false
2613
2612
  },
@@ -2615,59 +2614,143 @@
2615
2614
  "type": "propertySignature",
2616
2615
  "key": {
2617
2616
  "type": "identifier",
2618
- "name": "after"
2617
+ "name": "spaceName"
2619
2618
  },
2620
2619
  "annotation": {
2621
- "type": "typeLiteral",
2622
- "members": [
2623
- {
2624
- "type": "propertySignature",
2625
- "key": {
2626
- "type": "identifier",
2627
- "name": "title"
2628
- },
2629
- "annotation": {
2630
- "type": "keyword",
2631
- "value": "string"
2632
- },
2633
- "optional": true,
2634
- "computed": false
2635
- },
2636
- {
2637
- "type": "propertySignature",
2638
- "key": {
2639
- "type": "identifier",
2640
- "name": "description"
2641
- },
2642
- "annotation": {
2643
- "type": "keyword",
2644
- "value": "string"
2645
- },
2646
- "optional": true,
2647
- "computed": false
2648
- }
2649
- ]
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"
2650
2648
  },
2649
+ "optional": true,
2651
2650
  "computed": false
2652
2651
  }
2653
2652
  ]
2654
2653
  },
2655
2654
  "computed": false
2656
2655
  }
2657
- ],
2658
- "extends": [
2659
- {
2660
- "type": "expressionWithTypeArguments",
2661
- "expression": {
2656
+ ]
2657
+ }
2658
+ ]
2659
+ },
2660
+ "ai-portal.activity-timeline": {
2661
+ "properties": [
2662
+ {
2663
+ "name": "list",
2664
+ "annotation": {
2665
+ "type": "array",
2666
+ "elementType": {
2667
+ "type": "reference",
2668
+ "typeName": {
2662
2669
  "type": "identifier",
2663
- "name": "ActivityBase"
2670
+ "name": "Activity"
2664
2671
  }
2665
2672
  }
2666
- ]
2673
+ }
2674
+ },
2675
+ {
2676
+ "name": "chatUrlTemplate",
2677
+ "annotation": {
2678
+ "type": "keyword",
2679
+ "value": "string"
2680
+ }
2681
+ }
2682
+ ],
2683
+ "events": [],
2684
+ "methods": [],
2685
+ "types": [
2686
+ {
2687
+ "type": "typeAlias",
2688
+ "name": "Activity",
2689
+ "annotation": {
2690
+ "type": "union",
2691
+ "types": [
2692
+ {
2693
+ "type": "reference",
2694
+ "typeName": {
2695
+ "type": "identifier",
2696
+ "name": "ActivityOfCreateGoal"
2697
+ }
2698
+ },
2699
+ {
2700
+ "type": "reference",
2701
+ "typeName": {
2702
+ "type": "identifier",
2703
+ "name": "ActivityOfEditGoal"
2704
+ }
2705
+ },
2706
+ {
2707
+ "type": "reference",
2708
+ "typeName": {
2709
+ "type": "identifier",
2710
+ "name": "ActivityOfDeleteGoal"
2711
+ }
2712
+ },
2713
+ {
2714
+ "type": "reference",
2715
+ "typeName": {
2716
+ "type": "identifier",
2717
+ "name": "ActivityOfDecomposeGoals"
2718
+ }
2719
+ },
2720
+ {
2721
+ "type": "reference",
2722
+ "typeName": {
2723
+ "type": "identifier",
2724
+ "name": "ActivityOfAlterOwner"
2725
+ }
2726
+ },
2727
+ {
2728
+ "type": "reference",
2729
+ "typeName": {
2730
+ "type": "identifier",
2731
+ "name": "ActivityOfAlterUser"
2732
+ }
2733
+ },
2734
+ {
2735
+ "type": "reference",
2736
+ "typeName": {
2737
+ "type": "identifier",
2738
+ "name": "ActivityOfAddComment"
2739
+ }
2740
+ },
2741
+ {
2742
+ "type": "reference",
2743
+ "typeName": {
2744
+ "type": "identifier",
2745
+ "name": "ActivityOfStartConversation"
2746
+ }
2747
+ }
2748
+ ]
2749
+ }
2667
2750
  },
2668
2751
  {
2669
2752
  "type": "interface",
2670
- "name": "ActivityOfDeleteGoal",
2753
+ "name": "ActivityOfCreateGoal",
2671
2754
  "body": [
2672
2755
  {
2673
2756
  "type": "propertySignature",
@@ -2677,7 +2760,7 @@
2677
2760
  },
2678
2761
  "annotation": {
2679
2762
  "type": "jsLiteral",
2680
- "value": "delete_goal"
2763
+ "value": "create_goal"
2681
2764
  },
2682
2765
  "computed": false
2683
2766
  },
@@ -2732,17 +2815,17 @@
2732
2815
  },
2733
2816
  {
2734
2817
  "type": "interface",
2735
- "name": "ActivityOfDecomposeGoals",
2818
+ "name": "ActivityBase",
2736
2819
  "body": [
2737
2820
  {
2738
2821
  "type": "propertySignature",
2739
2822
  "key": {
2740
2823
  "type": "identifier",
2741
- "name": "action_type"
2824
+ "name": "user_id"
2742
2825
  },
2743
2826
  "annotation": {
2744
- "type": "jsLiteral",
2745
- "value": "decompose_goals"
2827
+ "type": "keyword",
2828
+ "value": "string"
2746
2829
  },
2747
2830
  "computed": false
2748
2831
  },
@@ -2750,90 +2833,88 @@
2750
2833
  "type": "propertySignature",
2751
2834
  "key": {
2752
2835
  "type": "identifier",
2753
- "name": "metadata"
2836
+ "name": "user_name"
2754
2837
  },
2755
2838
  "annotation": {
2756
- "type": "typeLiteral",
2757
- "members": [
2758
- {
2759
- "type": "propertySignature",
2760
- "key": {
2761
- "type": "identifier",
2762
- "name": "sub_goals_count"
2763
- },
2764
- "annotation": {
2765
- "type": "keyword",
2766
- "value": "number"
2767
- },
2768
- "computed": false
2769
- },
2770
- {
2771
- "type": "propertySignature",
2772
- "key": {
2773
- "type": "identifier",
2774
- "name": "sub_goals"
2775
- },
2776
- "annotation": {
2777
- "type": "reference",
2778
- "typeName": {
2779
- "type": "identifier",
2780
- "name": "Array"
2781
- },
2782
- "typeParameters": {
2783
- "type": "typeParameterInstantiation",
2784
- "params": [
2785
- {
2786
- "type": "typeLiteral",
2787
- "members": [
2788
- {
2789
- "type": "propertySignature",
2790
- "key": {
2791
- "type": "identifier",
2792
- "name": "sub_goal_id"
2793
- },
2794
- "annotation": {
2795
- "type": "keyword",
2796
- "value": "string"
2797
- },
2798
- "computed": false
2799
- },
2800
- {
2801
- "type": "propertySignature",
2802
- "key": {
2803
- "type": "identifier",
2804
- "name": "title"
2805
- },
2806
- "annotation": {
2807
- "type": "keyword",
2808
- "value": "string"
2809
- },
2810
- "computed": false
2811
- }
2812
- ]
2813
- }
2814
- ]
2815
- }
2816
- },
2817
- "computed": false
2839
+ "type": "keyword",
2840
+ "value": "string"
2841
+ },
2842
+ "computed": false
2843
+ },
2844
+ {
2845
+ "type": "propertySignature",
2846
+ "key": {
2847
+ "type": "identifier",
2848
+ "name": "time"
2849
+ },
2850
+ "annotation": {
2851
+ "type": "keyword",
2852
+ "value": "number"
2853
+ },
2854
+ "computed": false
2855
+ },
2856
+ {
2857
+ "type": "propertySignature",
2858
+ "key": {
2859
+ "type": "identifier",
2860
+ "name": "action_type"
2861
+ },
2862
+ "annotation": {
2863
+ "type": "union",
2864
+ "types": [
2865
+ {
2866
+ "type": "jsLiteral",
2867
+ "value": "create_goal"
2868
+ },
2869
+ {
2870
+ "type": "jsLiteral",
2871
+ "value": "edit_goal"
2872
+ },
2873
+ {
2874
+ "type": "jsLiteral",
2875
+ "value": "delete_goal"
2876
+ },
2877
+ {
2878
+ "type": "jsLiteral",
2879
+ "value": "decompose_goals"
2880
+ },
2881
+ {
2882
+ "type": "jsLiteral",
2883
+ "value": "alter_owner"
2884
+ },
2885
+ {
2886
+ "type": "jsLiteral",
2887
+ "value": "alter_user"
2888
+ },
2889
+ {
2890
+ "type": "jsLiteral",
2891
+ "value": "add_comment"
2892
+ },
2893
+ {
2894
+ "type": "jsLiteral",
2895
+ "value": "start_conversation"
2818
2896
  }
2819
2897
  ]
2820
2898
  },
2821
2899
  "computed": false
2822
- }
2823
- ],
2824
- "extends": [
2900
+ },
2825
2901
  {
2826
- "type": "expressionWithTypeArguments",
2827
- "expression": {
2902
+ "type": "propertySignature",
2903
+ "key": {
2828
2904
  "type": "identifier",
2829
- "name": "ActivityBase"
2830
- }
2905
+ "name": "metadata"
2906
+ },
2907
+ "annotation": {
2908
+ "type": "keyword",
2909
+ "value": "unknown"
2910
+ },
2911
+ "computed": false
2831
2912
  }
2832
2913
  ]
2833
2914
  },
2834
2915
  {
2835
2916
  "type": "interface",
2836
- "name": "ActivityOfAlterOwner",
2917
+ "name": "ActivityOfEditGoal",
2837
2918
  "body": [
2838
2919
  {
2839
2920
  "type": "propertySignature",
@@ -2843,7 +2924,7 @@
2843
2924
  },
2844
2925
  "annotation": {
2845
2926
  "type": "jsLiteral",
2846
- "value": "alter_owner"
2927
+ "value": "edit_goal"
2847
2928
  },
2848
2929
  "computed": false
2849
2930
  },
@@ -2869,37 +2950,26 @@
2869
2950
  "type": "propertySignature",
2870
2951
  "key": {
2871
2952
  "type": "identifier",
2872
- "name": "owner"
2953
+ "name": "title"
2873
2954
  },
2874
2955
  "annotation": {
2875
- "type": "typeLiteral",
2876
- "members": [
2877
- {
2878
- "type": "propertySignature",
2879
- "key": {
2880
- "type": "identifier",
2881
- "name": "user_id"
2882
- },
2883
- "annotation": {
2884
- "type": "keyword",
2885
- "value": "string"
2886
- },
2887
- "computed": false
2888
- },
2889
- {
2890
- "type": "propertySignature",
2891
- "key": {
2892
- "type": "identifier",
2893
- "name": "user_name"
2894
- },
2895
- "annotation": {
2896
- "type": "keyword",
2897
- "value": "string"
2898
- },
2899
- "computed": false
2900
- }
2901
- ]
2956
+ "type": "keyword",
2957
+ "value": "string"
2958
+ },
2959
+ "optional": true,
2960
+ "computed": false
2961
+ },
2962
+ {
2963
+ "type": "propertySignature",
2964
+ "key": {
2965
+ "type": "identifier",
2966
+ "name": "description"
2967
+ },
2968
+ "annotation": {
2969
+ "type": "keyword",
2970
+ "value": "string"
2902
2971
  },
2972
+ "optional": true,
2903
2973
  "computed": false
2904
2974
  }
2905
2975
  ]
@@ -2919,37 +2989,26 @@
2919
2989
  "type": "propertySignature",
2920
2990
  "key": {
2921
2991
  "type": "identifier",
2922
- "name": "owner"
2992
+ "name": "title"
2923
2993
  },
2924
2994
  "annotation": {
2925
- "type": "typeLiteral",
2926
- "members": [
2927
- {
2928
- "type": "propertySignature",
2929
- "key": {
2930
- "type": "identifier",
2931
- "name": "user_id"
2932
- },
2933
- "annotation": {
2934
- "type": "keyword",
2935
- "value": "string"
2936
- },
2937
- "computed": false
2938
- },
2939
- {
2940
- "type": "propertySignature",
2941
- "key": {
2942
- "type": "identifier",
2943
- "name": "user_name"
2944
- },
2945
- "annotation": {
2946
- "type": "keyword",
2947
- "value": "string"
2948
- },
2949
- "computed": false
2950
- }
2951
- ]
2995
+ "type": "keyword",
2996
+ "value": "string"
2997
+ },
2998
+ "optional": true,
2999
+ "computed": false
3000
+ },
3001
+ {
3002
+ "type": "propertySignature",
3003
+ "key": {
3004
+ "type": "identifier",
3005
+ "name": "description"
3006
+ },
3007
+ "annotation": {
3008
+ "type": "keyword",
3009
+ "value": "string"
2952
3010
  },
3011
+ "optional": true,
2953
3012
  "computed": false
2954
3013
  }
2955
3014
  ]
@@ -2973,7 +3032,7 @@
2973
3032
  },
2974
3033
  {
2975
3034
  "type": "interface",
2976
- "name": "ActivityOfAlterUser",
3035
+ "name": "ActivityOfDeleteGoal",
2977
3036
  "body": [
2978
3037
  {
2979
3038
  "type": "propertySignature",
@@ -2983,7 +3042,7 @@
2983
3042
  },
2984
3043
  "annotation": {
2985
3044
  "type": "jsLiteral",
2986
- "value": "alter_user"
3045
+ "value": "delete_goal"
2987
3046
  },
2988
3047
  "computed": false
2989
3048
  },
@@ -3000,61 +3059,11 @@
3000
3059
  "type": "propertySignature",
3001
3060
  "key": {
3002
3061
  "type": "identifier",
3003
- "name": "before"
3062
+ "name": "goal_title"
3004
3063
  },
3005
3064
  "annotation": {
3006
- "type": "typeLiteral",
3007
- "members": [
3008
- {
3009
- "type": "propertySignature",
3010
- "key": {
3011
- "type": "identifier",
3012
- "name": "users"
3013
- },
3014
- "annotation": {
3015
- "type": "reference",
3016
- "typeName": {
3017
- "type": "identifier",
3018
- "name": "Array"
3019
- },
3020
- "typeParameters": {
3021
- "type": "typeParameterInstantiation",
3022
- "params": [
3023
- {
3024
- "type": "typeLiteral",
3025
- "members": [
3026
- {
3027
- "type": "propertySignature",
3028
- "key": {
3029
- "type": "identifier",
3030
- "name": "user_id"
3031
- },
3032
- "annotation": {
3033
- "type": "keyword",
3034
- "value": "string"
3035
- },
3036
- "computed": false
3037
- },
3038
- {
3039
- "type": "propertySignature",
3040
- "key": {
3041
- "type": "identifier",
3042
- "name": "user_name"
3043
- },
3044
- "annotation": {
3045
- "type": "keyword",
3046
- "value": "string"
3047
- },
3048
- "computed": false
3049
- }
3050
- ]
3051
- }
3052
- ]
3053
- }
3054
- },
3055
- "computed": false
3056
- }
3057
- ]
3065
+ "type": "keyword",
3066
+ "value": "string"
3058
3067
  },
3059
3068
  "computed": false
3060
3069
  },
@@ -3062,62 +3071,13 @@
3062
3071
  "type": "propertySignature",
3063
3072
  "key": {
3064
3073
  "type": "identifier",
3065
- "name": "after"
3074
+ "name": "goal_description"
3066
3075
  },
3067
3076
  "annotation": {
3068
- "type": "typeLiteral",
3069
- "members": [
3070
- {
3071
- "type": "propertySignature",
3072
- "key": {
3073
- "type": "identifier",
3074
- "name": "users"
3075
- },
3076
- "annotation": {
3077
- "type": "reference",
3078
- "typeName": {
3079
- "type": "identifier",
3080
- "name": "Array"
3081
- },
3082
- "typeParameters": {
3083
- "type": "typeParameterInstantiation",
3084
- "params": [
3085
- {
3086
- "type": "typeLiteral",
3087
- "members": [
3088
- {
3089
- "type": "propertySignature",
3090
- "key": {
3091
- "type": "identifier",
3092
- "name": "user_id"
3093
- },
3094
- "annotation": {
3095
- "type": "keyword",
3096
- "value": "string"
3097
- },
3098
- "computed": false
3099
- },
3100
- {
3101
- "type": "propertySignature",
3102
- "key": {
3103
- "type": "identifier",
3104
- "name": "user_name"
3105
- },
3106
- "annotation": {
3107
- "type": "keyword",
3108
- "value": "string"
3109
- },
3110
- "computed": false
3111
- }
3112
- ]
3113
- }
3114
- ]
3115
- }
3116
- },
3117
- "computed": false
3118
- }
3119
- ]
3077
+ "type": "keyword",
3078
+ "value": "string"
3120
3079
  },
3080
+ "optional": true,
3121
3081
  "computed": false
3122
3082
  }
3123
3083
  ]
@@ -3137,7 +3097,7 @@
3137
3097
  },
3138
3098
  {
3139
3099
  "type": "interface",
3140
- "name": "ActivityOfAddComment",
3100
+ "name": "ActivityOfDecomposeGoals",
3141
3101
  "body": [
3142
3102
  {
3143
3103
  "type": "propertySignature",
@@ -3147,7 +3107,7 @@
3147
3107
  },
3148
3108
  "annotation": {
3149
3109
  "type": "jsLiteral",
3150
- "value": "add_comment"
3110
+ "value": "decompose_goals"
3151
3111
  },
3152
3112
  "computed": false
3153
3113
  },
@@ -3164,11 +3124,60 @@
3164
3124
  "type": "propertySignature",
3165
3125
  "key": {
3166
3126
  "type": "identifier",
3167
- "name": "comment_content"
3127
+ "name": "sub_goals_count"
3168
3128
  },
3169
3129
  "annotation": {
3170
3130
  "type": "keyword",
3171
- "value": "string"
3131
+ "value": "number"
3132
+ },
3133
+ "computed": false
3134
+ },
3135
+ {
3136
+ "type": "propertySignature",
3137
+ "key": {
3138
+ "type": "identifier",
3139
+ "name": "sub_goals"
3140
+ },
3141
+ "annotation": {
3142
+ "type": "reference",
3143
+ "typeName": {
3144
+ "type": "identifier",
3145
+ "name": "Array"
3146
+ },
3147
+ "typeParameters": {
3148
+ "type": "typeParameterInstantiation",
3149
+ "params": [
3150
+ {
3151
+ "type": "typeLiteral",
3152
+ "members": [
3153
+ {
3154
+ "type": "propertySignature",
3155
+ "key": {
3156
+ "type": "identifier",
3157
+ "name": "sub_goal_id"
3158
+ },
3159
+ "annotation": {
3160
+ "type": "keyword",
3161
+ "value": "string"
3162
+ },
3163
+ "computed": false
3164
+ },
3165
+ {
3166
+ "type": "propertySignature",
3167
+ "key": {
3168
+ "type": "identifier",
3169
+ "name": "title"
3170
+ },
3171
+ "annotation": {
3172
+ "type": "keyword",
3173
+ "value": "string"
3174
+ },
3175
+ "computed": false
3176
+ }
3177
+ ]
3178
+ }
3179
+ ]
3180
+ }
3172
3181
  },
3173
3182
  "computed": false
3174
3183
  }
@@ -3189,7 +3198,7 @@
3189
3198
  },
3190
3199
  {
3191
3200
  "type": "interface",
3192
- "name": "ActivityOfStartConversation",
3201
+ "name": "ActivityOfAlterOwner",
3193
3202
  "body": [
3194
3203
  {
3195
3204
  "type": "propertySignature",
@@ -3199,7 +3208,7 @@
3199
3208
  },
3200
3209
  "annotation": {
3201
3210
  "type": "jsLiteral",
3202
- "value": "start_conversation"
3211
+ "value": "alter_owner"
3203
3212
  },
3204
3213
  "computed": false
3205
3214
  },
@@ -3216,23 +3225,49 @@
3216
3225
  "type": "propertySignature",
3217
3226
  "key": {
3218
3227
  "type": "identifier",
3219
- "name": "conversation_id"
3220
- },
3221
- "annotation": {
3222
- "type": "keyword",
3223
- "value": "string"
3224
- },
3225
- "computed": false
3226
- },
3227
- {
3228
- "type": "propertySignature",
3229
- "key": {
3230
- "type": "identifier",
3231
- "name": "conversation_title"
3228
+ "name": "before"
3232
3229
  },
3233
3230
  "annotation": {
3234
- "type": "keyword",
3235
- "value": "string"
3231
+ "type": "typeLiteral",
3232
+ "members": [
3233
+ {
3234
+ "type": "propertySignature",
3235
+ "key": {
3236
+ "type": "identifier",
3237
+ "name": "owner"
3238
+ },
3239
+ "annotation": {
3240
+ "type": "typeLiteral",
3241
+ "members": [
3242
+ {
3243
+ "type": "propertySignature",
3244
+ "key": {
3245
+ "type": "identifier",
3246
+ "name": "user_id"
3247
+ },
3248
+ "annotation": {
3249
+ "type": "keyword",
3250
+ "value": "string"
3251
+ },
3252
+ "computed": false
3253
+ },
3254
+ {
3255
+ "type": "propertySignature",
3256
+ "key": {
3257
+ "type": "identifier",
3258
+ "name": "user_name"
3259
+ },
3260
+ "annotation": {
3261
+ "type": "keyword",
3262
+ "value": "string"
3263
+ },
3264
+ "computed": false
3265
+ }
3266
+ ]
3267
+ },
3268
+ "computed": false
3269
+ }
3270
+ ]
3236
3271
  },
3237
3272
  "computed": false
3238
3273
  },
@@ -3240,13 +3275,50 @@
3240
3275
  "type": "propertySignature",
3241
3276
  "key": {
3242
3277
  "type": "identifier",
3243
- "name": "conversation_description"
3278
+ "name": "after"
3244
3279
  },
3245
3280
  "annotation": {
3246
- "type": "keyword",
3247
- "value": "string"
3281
+ "type": "typeLiteral",
3282
+ "members": [
3283
+ {
3284
+ "type": "propertySignature",
3285
+ "key": {
3286
+ "type": "identifier",
3287
+ "name": "owner"
3288
+ },
3289
+ "annotation": {
3290
+ "type": "typeLiteral",
3291
+ "members": [
3292
+ {
3293
+ "type": "propertySignature",
3294
+ "key": {
3295
+ "type": "identifier",
3296
+ "name": "user_id"
3297
+ },
3298
+ "annotation": {
3299
+ "type": "keyword",
3300
+ "value": "string"
3301
+ },
3302
+ "computed": false
3303
+ },
3304
+ {
3305
+ "type": "propertySignature",
3306
+ "key": {
3307
+ "type": "identifier",
3308
+ "name": "user_name"
3309
+ },
3310
+ "annotation": {
3311
+ "type": "keyword",
3312
+ "value": "string"
3313
+ },
3314
+ "computed": false
3315
+ }
3316
+ ]
3317
+ },
3318
+ "computed": false
3319
+ }
3320
+ ]
3248
3321
  },
3249
- "optional": true,
3250
3322
  "computed": false
3251
3323
  }
3252
3324
  ]
@@ -3263,175 +3335,157 @@
3263
3335
  }
3264
3336
  }
3265
3337
  ]
3266
- }
3267
- ]
3268
- },
3269
- "ai-portal.chat-input": {
3270
- "properties": [
3271
- {
3272
- "name": "placeholder",
3273
- "annotation": {
3274
- "type": "keyword",
3275
- "value": "string"
3276
- }
3277
- },
3278
- {
3279
- "name": "autoFocus",
3280
- "annotation": {
3281
- "type": "keyword",
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
- }
3314
- }
3315
- }
3316
- ],
3317
- "events": [
3318
- {
3319
- "name": "message.submit",
3320
- "detail": {
3321
- "annotation": {
3322
- "type": "keyword",
3323
- "value": "string"
3324
- }
3325
- }
3326
- },
3327
- {
3328
- "name": "chat.submit",
3329
- "detail": {
3330
- "annotation": {
3331
- "type": "reference",
3332
- "typeName": {
3333
- "type": "identifier",
3334
- "name": "ChatPayload"
3335
- }
3336
- }
3337
- }
3338
3338
  },
3339
- {
3340
- "name": "terminate",
3341
- "detail": {
3342
- "annotation": {
3343
- "type": "keyword",
3344
- "value": "void"
3345
- }
3346
- }
3347
- }
3348
- ],
3349
- "methods": [],
3350
- "types": [
3351
3339
  {
3352
3340
  "type": "interface",
3353
- "name": "UploadOptions",
3341
+ "name": "ActivityOfAlterUser",
3354
3342
  "body": [
3355
3343
  {
3356
3344
  "type": "propertySignature",
3357
3345
  "key": {
3358
3346
  "type": "identifier",
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"
3386
- },
3387
- "annotation": {
3388
- "type": "keyword",
3389
- "value": "string"
3390
- },
3391
- "optional": true,
3392
- "computed": false
3393
- },
3394
- {
3395
- "type": "propertySignature",
3396
- "key": {
3397
- "type": "identifier",
3398
- "name": "accept"
3347
+ "name": "action_type"
3399
3348
  },
3400
3349
  "annotation": {
3401
- "type": "keyword",
3402
- "value": "string"
3350
+ "type": "jsLiteral",
3351
+ "value": "alter_user"
3403
3352
  },
3404
- "optional": true,
3405
3353
  "computed": false
3406
3354
  },
3407
3355
  {
3408
3356
  "type": "propertySignature",
3409
3357
  "key": {
3410
3358
  "type": "identifier",
3411
- "name": "maxFiles"
3412
- },
3413
- "annotation": {
3414
- "type": "keyword",
3415
- "value": "number"
3416
- },
3417
- "optional": true,
3418
- "computed": false
3419
- }
3420
- ]
3421
- },
3422
- {
3423
- "type": "interface",
3424
- "name": "ChatPayload",
3425
- "body": [
3426
- {
3427
- "type": "propertySignature",
3428
- "key": {
3429
- "type": "identifier",
3430
- "name": "content"
3359
+ "name": "metadata"
3431
3360
  },
3432
3361
  "annotation": {
3433
- "type": "keyword",
3434
- "value": "string"
3362
+ "type": "typeLiteral",
3363
+ "members": [
3364
+ {
3365
+ "type": "propertySignature",
3366
+ "key": {
3367
+ "type": "identifier",
3368
+ "name": "before"
3369
+ },
3370
+ "annotation": {
3371
+ "type": "typeLiteral",
3372
+ "members": [
3373
+ {
3374
+ "type": "propertySignature",
3375
+ "key": {
3376
+ "type": "identifier",
3377
+ "name": "users"
3378
+ },
3379
+ "annotation": {
3380
+ "type": "reference",
3381
+ "typeName": {
3382
+ "type": "identifier",
3383
+ "name": "Array"
3384
+ },
3385
+ "typeParameters": {
3386
+ "type": "typeParameterInstantiation",
3387
+ "params": [
3388
+ {
3389
+ "type": "typeLiteral",
3390
+ "members": [
3391
+ {
3392
+ "type": "propertySignature",
3393
+ "key": {
3394
+ "type": "identifier",
3395
+ "name": "user_id"
3396
+ },
3397
+ "annotation": {
3398
+ "type": "keyword",
3399
+ "value": "string"
3400
+ },
3401
+ "computed": false
3402
+ },
3403
+ {
3404
+ "type": "propertySignature",
3405
+ "key": {
3406
+ "type": "identifier",
3407
+ "name": "user_name"
3408
+ },
3409
+ "annotation": {
3410
+ "type": "keyword",
3411
+ "value": "string"
3412
+ },
3413
+ "computed": false
3414
+ }
3415
+ ]
3416
+ }
3417
+ ]
3418
+ }
3419
+ },
3420
+ "computed": false
3421
+ }
3422
+ ]
3423
+ },
3424
+ "computed": false
3425
+ },
3426
+ {
3427
+ "type": "propertySignature",
3428
+ "key": {
3429
+ "type": "identifier",
3430
+ "name": "after"
3431
+ },
3432
+ "annotation": {
3433
+ "type": "typeLiteral",
3434
+ "members": [
3435
+ {
3436
+ "type": "propertySignature",
3437
+ "key": {
3438
+ "type": "identifier",
3439
+ "name": "users"
3440
+ },
3441
+ "annotation": {
3442
+ "type": "reference",
3443
+ "typeName": {
3444
+ "type": "identifier",
3445
+ "name": "Array"
3446
+ },
3447
+ "typeParameters": {
3448
+ "type": "typeParameterInstantiation",
3449
+ "params": [
3450
+ {
3451
+ "type": "typeLiteral",
3452
+ "members": [
3453
+ {
3454
+ "type": "propertySignature",
3455
+ "key": {
3456
+ "type": "identifier",
3457
+ "name": "user_id"
3458
+ },
3459
+ "annotation": {
3460
+ "type": "keyword",
3461
+ "value": "string"
3462
+ },
3463
+ "computed": false
3464
+ },
3465
+ {
3466
+ "type": "propertySignature",
3467
+ "key": {
3468
+ "type": "identifier",
3469
+ "name": "user_name"
3470
+ },
3471
+ "annotation": {
3472
+ "type": "keyword",
3473
+ "value": "string"
3474
+ },
3475
+ "computed": false
3476
+ }
3477
+ ]
3478
+ }
3479
+ ]
3480
+ }
3481
+ },
3482
+ "computed": false
3483
+ }
3484
+ ]
3485
+ },
3486
+ "computed": false
3487
+ }
3488
+ ]
3435
3489
  },
3436
3490
  "computed": false
3437
3491
  }
@@ -3441,125 +3495,76 @@
3441
3495
  "type": "expressionWithTypeArguments",
3442
3496
  "expression": {
3443
3497
  "type": "identifier",
3444
- "name": "ExtraChatPayload"
3498
+ "name": "ActivityBase"
3445
3499
  }
3446
3500
  }
3447
3501
  ]
3448
3502
  },
3449
3503
  {
3450
3504
  "type": "interface",
3451
- "name": "ExtraChatPayload",
3505
+ "name": "ActivityOfAddComment",
3452
3506
  "body": [
3453
3507
  {
3454
3508
  "type": "propertySignature",
3455
3509
  "key": {
3456
3510
  "type": "identifier",
3457
- "name": "files"
3511
+ "name": "action_type"
3458
3512
  },
3459
3513
  "annotation": {
3460
- "type": "array",
3461
- "elementType": {
3462
- "type": "reference",
3463
- "typeName": {
3464
- "type": "identifier",
3465
- "name": "UploadFileInfo"
3466
- }
3467
- }
3514
+ "type": "jsLiteral",
3515
+ "value": "add_comment"
3468
3516
  },
3469
- "optional": true,
3470
3517
  "computed": false
3471
3518
  },
3472
3519
  {
3473
3520
  "type": "propertySignature",
3474
3521
  "key": {
3475
3522
  "type": "identifier",
3476
- "name": "cmd"
3523
+ "name": "metadata"
3477
3524
  },
3478
3525
  "annotation": {
3479
- "type": "union",
3480
- "types": [
3526
+ "type": "typeLiteral",
3527
+ "members": [
3481
3528
  {
3482
- "type": "reference",
3483
- "typeName": {
3529
+ "type": "propertySignature",
3530
+ "key": {
3484
3531
  "type": "identifier",
3485
- "name": "CommandPayload"
3486
- }
3487
- },
3488
- {
3489
- "type": "keyword",
3490
- "value": "null"
3491
- }
3492
- ]
3493
- },
3494
- "optional": true,
3495
- "computed": false
3496
- },
3497
- {
3498
- "type": "propertySignature",
3499
- "key": {
3500
- "type": "identifier",
3501
- "name": "aiEmployeeId"
3502
- },
3503
- "annotation": {
3504
- "type": "union",
3505
- "types": [
3506
- {
3507
- "type": "keyword",
3508
- "value": "string"
3509
- },
3510
- {
3511
- "type": "keyword",
3512
- "value": "null"
3532
+ "name": "comment_content"
3533
+ },
3534
+ "annotation": {
3535
+ "type": "keyword",
3536
+ "value": "string"
3537
+ },
3538
+ "computed": false
3513
3539
  }
3514
3540
  ]
3515
3541
  },
3516
- "optional": true,
3517
3542
  "computed": false
3518
3543
  }
3519
- ]
3520
- },
3521
- {
3522
- "type": "interface",
3523
- "name": "UploadFileInfo",
3524
- "body": [
3544
+ ],
3545
+ "extends": [
3525
3546
  {
3526
- "type": "propertySignature",
3527
- "key": {
3547
+ "type": "expressionWithTypeArguments",
3548
+ "expression": {
3528
3549
  "type": "identifier",
3529
- "name": "fileId"
3530
- },
3531
- "annotation": {
3532
- "type": "keyword",
3533
- "value": "string"
3534
- },
3535
- "computed": false
3550
+ "name": "ActivityBase"
3551
+ }
3536
3552
  }
3537
3553
  ]
3538
3554
  },
3539
- {
3540
- "type": "typeAlias",
3541
- "name": "CommandPayload",
3542
- "annotation": {
3543
- "type": "reference",
3544
- "typeName": {
3545
- "type": "identifier",
3546
- "name": "CommandPayloadServiceFlowStarting"
3547
- }
3548
- }
3549
- },
3550
3555
  {
3551
3556
  "type": "interface",
3552
- "name": "CommandPayloadServiceFlowStarting",
3557
+ "name": "ActivityOfStartConversation",
3553
3558
  "body": [
3554
3559
  {
3555
3560
  "type": "propertySignature",
3556
3561
  "key": {
3557
3562
  "type": "identifier",
3558
- "name": "type"
3563
+ "name": "action_type"
3559
3564
  },
3560
3565
  "annotation": {
3561
3566
  "type": "jsLiteral",
3562
- "value": "serviceFlowStarting"
3567
+ "value": "start_conversation"
3563
3568
  },
3564
3569
  "computed": false
3565
3570
  },
@@ -3567,7 +3572,7 @@
3567
3572
  "type": "propertySignature",
3568
3573
  "key": {
3569
3574
  "type": "identifier",
3570
- "name": "serviceFlowStarting"
3575
+ "name": "metadata"
3571
3576
  },
3572
3577
  "annotation": {
3573
3578
  "type": "typeLiteral",
@@ -3576,45 +3581,31 @@
3576
3581
  "type": "propertySignature",
3577
3582
  "key": {
3578
3583
  "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"
3584
+ "name": "conversation_id"
3592
3585
  },
3593
3586
  "annotation": {
3594
3587
  "type": "keyword",
3595
3588
  "value": "string"
3596
3589
  },
3597
- "optional": true,
3598
3590
  "computed": false
3599
3591
  },
3600
3592
  {
3601
3593
  "type": "propertySignature",
3602
3594
  "key": {
3603
3595
  "type": "identifier",
3604
- "name": "flowInstanceId"
3596
+ "name": "conversation_title"
3605
3597
  },
3606
3598
  "annotation": {
3607
3599
  "type": "keyword",
3608
3600
  "value": "string"
3609
3601
  },
3610
- "optional": true,
3611
3602
  "computed": false
3612
3603
  },
3613
3604
  {
3614
3605
  "type": "propertySignature",
3615
3606
  "key": {
3616
3607
  "type": "identifier",
3617
- "name": "flowName"
3608
+ "name": "conversation_description"
3618
3609
  },
3619
3610
  "annotation": {
3620
3611
  "type": "keyword",
@@ -3627,6 +3618,15 @@
3627
3618
  },
3628
3619
  "computed": false
3629
3620
  }
3621
+ ],
3622
+ "extends": [
3623
+ {
3624
+ "type": "expressionWithTypeArguments",
3625
+ "expression": {
3626
+ "type": "identifier",
3627
+ "name": "ActivityBase"
3628
+ }
3629
+ }
3630
3630
  ]
3631
3631
  }
3632
3632
  ]