@next-bricks/ai-portal 0.59.3 → 0.59.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,108 +1,4 @@
1
1
  {
2
- "ai-portal.stat-with-mini-chart": {
3
- "properties": [
4
- {
5
- "name": "label",
6
- "annotation": {
7
- "type": "keyword",
8
- "value": "string"
9
- }
10
- },
11
- {
12
- "name": "value",
13
- "annotation": {
14
- "type": "keyword",
15
- "value": "string"
16
- }
17
- },
18
- {
19
- "name": "size",
20
- "annotation": {
21
- "type": "union",
22
- "types": [
23
- {
24
- "type": "jsLiteral",
25
- "value": "medium"
26
- },
27
- {
28
- "type": "jsLiteral",
29
- "value": "small"
30
- }
31
- ]
32
- }
33
- },
34
- {
35
- "name": "lineColor",
36
- "annotation": {
37
- "type": "keyword",
38
- "value": "string"
39
- }
40
- },
41
- {
42
- "name": "showArea",
43
- "annotation": {
44
- "type": "keyword",
45
- "value": "boolean"
46
- }
47
- },
48
- {
49
- "name": "min",
50
- "annotation": {
51
- "type": "keyword",
52
- "value": "number"
53
- }
54
- },
55
- {
56
- "name": "max",
57
- "annotation": {
58
- "type": "keyword",
59
- "value": "number"
60
- }
61
- },
62
- {
63
- "name": "xField",
64
- "annotation": {
65
- "type": "keyword",
66
- "value": "string"
67
- }
68
- },
69
- {
70
- "name": "yField",
71
- "annotation": {
72
- "type": "keyword",
73
- "value": "string"
74
- }
75
- },
76
- {
77
- "name": "data",
78
- "annotation": {
79
- "type": "array",
80
- "elementType": {
81
- "type": "reference",
82
- "typeName": {
83
- "type": "identifier",
84
- "name": "Record"
85
- },
86
- "typeParameters": {
87
- "type": "typeParameterInstantiation",
88
- "params": [
89
- {
90
- "type": "keyword",
91
- "value": "string"
92
- },
93
- {
94
- "type": "keyword",
95
- "value": "number"
96
- }
97
- ]
98
- }
99
- }
100
- }
101
- }
102
- ],
103
- "events": [],
104
- "methods": []
105
- },
106
2
  "ai-portal.icon-button": {
107
3
  "properties": [
108
4
  {
@@ -188,6 +84,19 @@
188
84
  }
189
85
  ]
190
86
  },
87
+ "ai-portal.home-container": {
88
+ "properties": [
89
+ {
90
+ "name": "sticky",
91
+ "annotation": {
92
+ "type": "keyword",
93
+ "value": "boolean"
94
+ }
95
+ }
96
+ ],
97
+ "events": [],
98
+ "methods": []
99
+ },
191
100
  "ai-portal.call-tool": {
192
101
  "type": "provider",
193
102
  "params": [
@@ -811,6 +720,77 @@
811
720
  }
812
721
  ]
813
722
  },
723
+ "ai-portal.tab-list": {
724
+ "properties": [
725
+ {
726
+ "name": "tabs",
727
+ "annotation": {
728
+ "type": "array",
729
+ "elementType": {
730
+ "type": "reference",
731
+ "typeName": {
732
+ "type": "identifier",
733
+ "name": "Tab"
734
+ }
735
+ }
736
+ }
737
+ },
738
+ {
739
+ "name": "activeTab",
740
+ "annotation": {
741
+ "type": "keyword",
742
+ "value": "string"
743
+ }
744
+ }
745
+ ],
746
+ "events": [
747
+ {
748
+ "name": "tab.click",
749
+ "detail": {
750
+ "annotation": {
751
+ "type": "reference",
752
+ "typeName": {
753
+ "type": "identifier",
754
+ "name": "Tab"
755
+ }
756
+ }
757
+ }
758
+ }
759
+ ],
760
+ "methods": [],
761
+ "types": [
762
+ {
763
+ "type": "interface",
764
+ "name": "Tab",
765
+ "body": [
766
+ {
767
+ "type": "propertySignature",
768
+ "key": {
769
+ "type": "identifier",
770
+ "name": "id"
771
+ },
772
+ "annotation": {
773
+ "type": "keyword",
774
+ "value": "string"
775
+ },
776
+ "computed": false
777
+ },
778
+ {
779
+ "type": "propertySignature",
780
+ "key": {
781
+ "type": "identifier",
782
+ "name": "label"
783
+ },
784
+ "annotation": {
785
+ "type": "keyword",
786
+ "value": "string"
787
+ },
788
+ "computed": false
789
+ }
790
+ ]
791
+ }
792
+ ]
793
+ },
814
794
  "ai-portal.page-container": {
815
795
  "properties": [
816
796
  {
@@ -919,84 +899,104 @@
919
899
  }
920
900
  ]
921
901
  },
922
- "ai-portal.tab-list": {
902
+ "ai-portal.stat-with-mini-chart": {
923
903
  "properties": [
924
904
  {
925
- "name": "tabs",
905
+ "name": "label",
926
906
  "annotation": {
927
- "type": "array",
928
- "elementType": {
929
- "type": "reference",
930
- "typeName": {
931
- "type": "identifier",
932
- "name": "Tab"
933
- }
934
- }
907
+ "type": "keyword",
908
+ "value": "string"
935
909
  }
936
910
  },
937
911
  {
938
- "name": "activeTab",
912
+ "name": "value",
939
913
  "annotation": {
940
914
  "type": "keyword",
941
915
  "value": "string"
942
916
  }
943
- }
944
- ],
945
- "events": [
917
+ },
946
918
  {
947
- "name": "tab.click",
948
- "detail": {
949
- "annotation": {
950
- "type": "reference",
951
- "typeName": {
952
- "type": "identifier",
953
- "name": "Tab"
919
+ "name": "size",
920
+ "annotation": {
921
+ "type": "union",
922
+ "types": [
923
+ {
924
+ "type": "jsLiteral",
925
+ "value": "medium"
926
+ },
927
+ {
928
+ "type": "jsLiteral",
929
+ "value": "small"
954
930
  }
955
- }
931
+ ]
956
932
  }
957
- }
958
- ],
959
- "methods": [],
960
- "types": [
933
+ },
961
934
  {
962
- "type": "interface",
963
- "name": "Tab",
964
- "body": [
965
- {
966
- "type": "propertySignature",
967
- "key": {
968
- "type": "identifier",
969
- "name": "id"
970
- },
971
- "annotation": {
972
- "type": "keyword",
973
- "value": "string"
974
- },
975
- "computed": false
976
- },
977
- {
978
- "type": "propertySignature",
979
- "key": {
935
+ "name": "lineColor",
936
+ "annotation": {
937
+ "type": "keyword",
938
+ "value": "string"
939
+ }
940
+ },
941
+ {
942
+ "name": "showArea",
943
+ "annotation": {
944
+ "type": "keyword",
945
+ "value": "boolean"
946
+ }
947
+ },
948
+ {
949
+ "name": "min",
950
+ "annotation": {
951
+ "type": "keyword",
952
+ "value": "number"
953
+ }
954
+ },
955
+ {
956
+ "name": "max",
957
+ "annotation": {
958
+ "type": "keyword",
959
+ "value": "number"
960
+ }
961
+ },
962
+ {
963
+ "name": "xField",
964
+ "annotation": {
965
+ "type": "keyword",
966
+ "value": "string"
967
+ }
968
+ },
969
+ {
970
+ "name": "yField",
971
+ "annotation": {
972
+ "type": "keyword",
973
+ "value": "string"
974
+ }
975
+ },
976
+ {
977
+ "name": "data",
978
+ "annotation": {
979
+ "type": "array",
980
+ "elementType": {
981
+ "type": "reference",
982
+ "typeName": {
980
983
  "type": "identifier",
981
- "name": "label"
982
- },
983
- "annotation": {
984
- "type": "keyword",
985
- "value": "string"
984
+ "name": "Record"
986
985
  },
987
- "computed": false
986
+ "typeParameters": {
987
+ "type": "typeParameterInstantiation",
988
+ "params": [
989
+ {
990
+ "type": "keyword",
991
+ "value": "string"
992
+ },
993
+ {
994
+ "type": "keyword",
995
+ "value": "number"
996
+ }
997
+ ]
998
+ }
988
999
  }
989
- ]
990
- }
991
- ]
992
- },
993
- "ai-portal.home-container": {
994
- "properties": [
995
- {
996
- "name": "sticky",
997
- "annotation": {
998
- "type": "keyword",
999
- "value": "boolean"
1000
1000
  }
1001
1001
  }
1002
1002
  ],
@@ -1936,26 +1936,6 @@
1936
1936
  }
1937
1937
  ]
1938
1938
  },
1939
- "ai-portal.preview-container": {
1940
- "properties": [
1941
- {
1942
- "name": "source",
1943
- "annotation": {
1944
- "type": "keyword",
1945
- "value": "string"
1946
- }
1947
- },
1948
- {
1949
- "name": "url",
1950
- "annotation": {
1951
- "type": "keyword",
1952
- "value": "string"
1953
- }
1954
- }
1955
- ],
1956
- "events": [],
1957
- "methods": []
1958
- },
1959
1939
  "ai-portal.action-buttons": {
1960
1940
  "properties": [
1961
1941
  {
@@ -2061,245 +2041,39 @@
2061
2041
  "type": "propertySignature",
2062
2042
  "key": {
2063
2043
  "type": "identifier",
2064
- "name": "hidden"
2065
- },
2066
- "annotation": {
2067
- "type": "keyword",
2068
- "value": "boolean"
2069
- },
2070
- "optional": true,
2071
- "computed": false
2072
- }
2073
- ]
2074
- }
2075
- ]
2076
- },
2077
- "ai-portal.project-conversations": {
2078
- "properties": [
2079
- {
2080
- "name": "list",
2081
- "annotation": {
2082
- "type": "array",
2083
- "elementType": {
2084
- "type": "reference",
2085
- "typeName": {
2086
- "type": "identifier",
2087
- "name": "Conversation"
2088
- }
2089
- }
2090
- }
2091
- },
2092
- {
2093
- "name": "urlTemplate",
2094
- "annotation": {
2095
- "type": "keyword",
2096
- "value": "string"
2097
- }
2098
- },
2099
- {
2100
- "name": "actions",
2101
- "annotation": {
2102
- "type": "array",
2103
- "elementType": {
2104
- "type": "reference",
2105
- "typeName": {
2106
- "type": "identifier",
2107
- "name": "ActionType"
2108
- }
2109
- }
2110
- }
2111
- },
2112
- {
2113
- "name": "goals",
2114
- "annotation": {
2115
- "type": "array",
2116
- "elementType": {
2117
- "type": "reference",
2118
- "typeName": {
2119
- "type": "identifier",
2120
- "name": "Goal"
2121
- }
2122
- }
2123
- }
2124
- }
2125
- ],
2126
- "events": [
2127
- {
2128
- "name": "goal.click",
2129
- "detail": {
2130
- "annotation": {
2131
- "type": "reference",
2132
- "typeName": {
2133
- "type": "identifier",
2134
- "name": "Conversation"
2135
- }
2136
- }
2137
- }
2138
- },
2139
- {
2140
- "name": "action.click",
2141
- "detail": {
2142
- "annotation": {
2143
- "type": "reference",
2144
- "typeName": {
2145
- "type": "identifier",
2146
- "name": "ActionClickDetail"
2147
- }
2148
- }
2149
- }
2150
- }
2151
- ],
2152
- "methods": [],
2153
- "types": [
2154
- {
2155
- "type": "interface",
2156
- "name": "Conversation",
2157
- "body": [
2158
- {
2159
- "type": "propertySignature",
2160
- "key": {
2161
- "type": "identifier",
2162
- "name": "conversationId"
2163
- },
2164
- "annotation": {
2165
- "type": "keyword",
2166
- "value": "string"
2167
- },
2168
- "computed": false
2169
- },
2170
- {
2171
- "type": "propertySignature",
2172
- "key": {
2173
- "type": "identifier",
2174
- "name": "title"
2175
- },
2176
- "annotation": {
2177
- "type": "keyword",
2178
- "value": "string"
2179
- },
2180
- "computed": false
2181
- },
2182
- {
2183
- "type": "propertySignature",
2184
- "key": {
2185
- "type": "identifier",
2186
- "name": "startTime"
2187
- },
2188
- "annotation": {
2189
- "type": "keyword",
2190
- "value": "number"
2191
- },
2192
- "computed": false
2193
- },
2194
- {
2195
- "type": "propertySignature",
2196
- "key": {
2197
- "type": "identifier",
2198
- "name": "description"
2199
- },
2200
- "annotation": {
2201
- "type": "keyword",
2202
- "value": "string"
2203
- },
2204
- "optional": true,
2205
- "computed": false
2206
- },
2207
- {
2208
- "type": "propertySignature",
2209
- "key": {
2210
- "type": "identifier",
2211
- "name": "goalInstanceId"
2212
- },
2213
- "annotation": {
2214
- "type": "keyword",
2215
- "value": "string"
2216
- },
2217
- "optional": true,
2218
- "computed": false
2219
- },
2220
- {
2221
- "type": "propertySignature",
2222
- "key": {
2223
- "type": "identifier",
2224
- "name": "username"
2225
- },
2226
- "annotation": {
2227
- "type": "keyword",
2228
- "value": "string"
2229
- },
2230
- "optional": true,
2231
- "computed": false
2232
- }
2233
- ]
2234
- },
2235
- {
2236
- "type": "interface",
2237
- "name": "Goal",
2238
- "body": [
2239
- {
2240
- "type": "propertySignature",
2241
- "key": {
2242
- "type": "identifier",
2243
- "name": "instanceId"
2244
- },
2245
- "annotation": {
2246
- "type": "keyword",
2247
- "value": "string"
2248
- },
2249
- "computed": false
2250
- },
2251
- {
2252
- "type": "propertySignature",
2253
- "key": {
2254
- "type": "identifier",
2255
- "name": "title"
2256
- },
2257
- "annotation": {
2258
- "type": "keyword",
2259
- "value": "string"
2260
- },
2261
- "computed": false
2262
- }
2263
- ]
2264
- },
2265
- {
2266
- "type": "interface",
2267
- "name": "ActionClickDetail",
2268
- "body": [
2269
- {
2270
- "type": "propertySignature",
2271
- "key": {
2272
- "type": "identifier",
2273
- "name": "action"
2274
- },
2275
- "annotation": {
2276
- "type": "reference",
2277
- "typeName": {
2278
- "type": "identifier",
2279
- "name": "SimpleActionType"
2280
- }
2281
- },
2282
- "computed": false
2283
- },
2284
- {
2285
- "type": "propertySignature",
2286
- "key": {
2287
- "type": "identifier",
2288
- "name": "item"
2044
+ "name": "hidden"
2289
2045
  },
2290
2046
  "annotation": {
2291
- "type": "reference",
2292
- "typeName": {
2293
- "type": "identifier",
2294
- "name": "Conversation"
2295
- }
2047
+ "type": "keyword",
2048
+ "value": "boolean"
2296
2049
  },
2050
+ "optional": true,
2297
2051
  "computed": false
2298
2052
  }
2299
2053
  ]
2300
2054
  }
2301
2055
  ]
2302
2056
  },
2057
+ "ai-portal.preview-container": {
2058
+ "properties": [
2059
+ {
2060
+ "name": "source",
2061
+ "annotation": {
2062
+ "type": "keyword",
2063
+ "value": "string"
2064
+ }
2065
+ },
2066
+ {
2067
+ "name": "url",
2068
+ "annotation": {
2069
+ "type": "keyword",
2070
+ "value": "string"
2071
+ }
2072
+ }
2073
+ ],
2074
+ "events": [],
2075
+ "methods": []
2076
+ },
2303
2077
  "ai-portal.activity-timeline": {
2304
2078
  "properties": [
2305
2079
  {
@@ -3274,6 +3048,232 @@
3274
3048
  }
3275
3049
  ]
3276
3050
  },
3051
+ "ai-portal.project-conversations": {
3052
+ "properties": [
3053
+ {
3054
+ "name": "list",
3055
+ "annotation": {
3056
+ "type": "array",
3057
+ "elementType": {
3058
+ "type": "reference",
3059
+ "typeName": {
3060
+ "type": "identifier",
3061
+ "name": "Conversation"
3062
+ }
3063
+ }
3064
+ }
3065
+ },
3066
+ {
3067
+ "name": "urlTemplate",
3068
+ "annotation": {
3069
+ "type": "keyword",
3070
+ "value": "string"
3071
+ }
3072
+ },
3073
+ {
3074
+ "name": "actions",
3075
+ "annotation": {
3076
+ "type": "array",
3077
+ "elementType": {
3078
+ "type": "reference",
3079
+ "typeName": {
3080
+ "type": "identifier",
3081
+ "name": "ActionType"
3082
+ }
3083
+ }
3084
+ }
3085
+ },
3086
+ {
3087
+ "name": "goals",
3088
+ "annotation": {
3089
+ "type": "array",
3090
+ "elementType": {
3091
+ "type": "reference",
3092
+ "typeName": {
3093
+ "type": "identifier",
3094
+ "name": "Goal"
3095
+ }
3096
+ }
3097
+ }
3098
+ }
3099
+ ],
3100
+ "events": [
3101
+ {
3102
+ "name": "goal.click",
3103
+ "detail": {
3104
+ "annotation": {
3105
+ "type": "reference",
3106
+ "typeName": {
3107
+ "type": "identifier",
3108
+ "name": "Conversation"
3109
+ }
3110
+ }
3111
+ }
3112
+ },
3113
+ {
3114
+ "name": "action.click",
3115
+ "detail": {
3116
+ "annotation": {
3117
+ "type": "reference",
3118
+ "typeName": {
3119
+ "type": "identifier",
3120
+ "name": "ActionClickDetail"
3121
+ }
3122
+ }
3123
+ }
3124
+ }
3125
+ ],
3126
+ "methods": [],
3127
+ "types": [
3128
+ {
3129
+ "type": "interface",
3130
+ "name": "Conversation",
3131
+ "body": [
3132
+ {
3133
+ "type": "propertySignature",
3134
+ "key": {
3135
+ "type": "identifier",
3136
+ "name": "conversationId"
3137
+ },
3138
+ "annotation": {
3139
+ "type": "keyword",
3140
+ "value": "string"
3141
+ },
3142
+ "computed": false
3143
+ },
3144
+ {
3145
+ "type": "propertySignature",
3146
+ "key": {
3147
+ "type": "identifier",
3148
+ "name": "title"
3149
+ },
3150
+ "annotation": {
3151
+ "type": "keyword",
3152
+ "value": "string"
3153
+ },
3154
+ "computed": false
3155
+ },
3156
+ {
3157
+ "type": "propertySignature",
3158
+ "key": {
3159
+ "type": "identifier",
3160
+ "name": "startTime"
3161
+ },
3162
+ "annotation": {
3163
+ "type": "keyword",
3164
+ "value": "number"
3165
+ },
3166
+ "computed": false
3167
+ },
3168
+ {
3169
+ "type": "propertySignature",
3170
+ "key": {
3171
+ "type": "identifier",
3172
+ "name": "description"
3173
+ },
3174
+ "annotation": {
3175
+ "type": "keyword",
3176
+ "value": "string"
3177
+ },
3178
+ "optional": true,
3179
+ "computed": false
3180
+ },
3181
+ {
3182
+ "type": "propertySignature",
3183
+ "key": {
3184
+ "type": "identifier",
3185
+ "name": "goalInstanceId"
3186
+ },
3187
+ "annotation": {
3188
+ "type": "keyword",
3189
+ "value": "string"
3190
+ },
3191
+ "optional": true,
3192
+ "computed": false
3193
+ },
3194
+ {
3195
+ "type": "propertySignature",
3196
+ "key": {
3197
+ "type": "identifier",
3198
+ "name": "username"
3199
+ },
3200
+ "annotation": {
3201
+ "type": "keyword",
3202
+ "value": "string"
3203
+ },
3204
+ "optional": true,
3205
+ "computed": false
3206
+ }
3207
+ ]
3208
+ },
3209
+ {
3210
+ "type": "interface",
3211
+ "name": "Goal",
3212
+ "body": [
3213
+ {
3214
+ "type": "propertySignature",
3215
+ "key": {
3216
+ "type": "identifier",
3217
+ "name": "instanceId"
3218
+ },
3219
+ "annotation": {
3220
+ "type": "keyword",
3221
+ "value": "string"
3222
+ },
3223
+ "computed": false
3224
+ },
3225
+ {
3226
+ "type": "propertySignature",
3227
+ "key": {
3228
+ "type": "identifier",
3229
+ "name": "title"
3230
+ },
3231
+ "annotation": {
3232
+ "type": "keyword",
3233
+ "value": "string"
3234
+ },
3235
+ "computed": false
3236
+ }
3237
+ ]
3238
+ },
3239
+ {
3240
+ "type": "interface",
3241
+ "name": "ActionClickDetail",
3242
+ "body": [
3243
+ {
3244
+ "type": "propertySignature",
3245
+ "key": {
3246
+ "type": "identifier",
3247
+ "name": "action"
3248
+ },
3249
+ "annotation": {
3250
+ "type": "reference",
3251
+ "typeName": {
3252
+ "type": "identifier",
3253
+ "name": "SimpleActionType"
3254
+ }
3255
+ },
3256
+ "computed": false
3257
+ },
3258
+ {
3259
+ "type": "propertySignature",
3260
+ "key": {
3261
+ "type": "identifier",
3262
+ "name": "item"
3263
+ },
3264
+ "annotation": {
3265
+ "type": "reference",
3266
+ "typeName": {
3267
+ "type": "identifier",
3268
+ "name": "Conversation"
3269
+ }
3270
+ },
3271
+ "computed": false
3272
+ }
3273
+ ]
3274
+ }
3275
+ ]
3276
+ },
3277
3277
  "ai-portal.chat-input": {
3278
3278
  "properties": [
3279
3279
  {
@@ -4471,7 +4471,7 @@
4471
4471
  "type": "propertySignature",
4472
4472
  "key": {
4473
4473
  "type": "identifier",
4474
- "name": "isUnread"
4474
+ "name": "isRead"
4475
4475
  },
4476
4476
  "annotation": {
4477
4477
  "type": "keyword",
@@ -4642,7 +4642,7 @@
4642
4642
  "type": "propertySignature",
4643
4643
  "key": {
4644
4644
  "type": "identifier",
4645
- "name": "isUnread"
4645
+ "name": "isRead"
4646
4646
  },
4647
4647
  "annotation": {
4648
4648
  "type": "keyword",