@next-bricks/ai-portal 0.58.12 → 0.58.13

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,17 +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
2
  "ai-portal.stat-with-mini-chart": {
16
3
  "properties": [
17
4
  {
@@ -116,6 +103,19 @@
116
103
  "events": [],
117
104
  "methods": []
118
105
  },
106
+ "ai-portal.home-container": {
107
+ "properties": [
108
+ {
109
+ "name": "sticky",
110
+ "annotation": {
111
+ "type": "keyword",
112
+ "value": "boolean"
113
+ }
114
+ }
115
+ ],
116
+ "events": [],
117
+ "methods": []
118
+ },
119
119
  "ai-portal.icon-button": {
120
120
  "properties": [
121
121
  {
@@ -2066,6 +2066,232 @@
2066
2066
  }
2067
2067
  ]
2068
2068
  },
2069
+ "ai-portal.project-conversations": {
2070
+ "properties": [
2071
+ {
2072
+ "name": "list",
2073
+ "annotation": {
2074
+ "type": "array",
2075
+ "elementType": {
2076
+ "type": "reference",
2077
+ "typeName": {
2078
+ "type": "identifier",
2079
+ "name": "Conversation"
2080
+ }
2081
+ }
2082
+ }
2083
+ },
2084
+ {
2085
+ "name": "urlTemplate",
2086
+ "annotation": {
2087
+ "type": "keyword",
2088
+ "value": "string"
2089
+ }
2090
+ },
2091
+ {
2092
+ "name": "actions",
2093
+ "annotation": {
2094
+ "type": "array",
2095
+ "elementType": {
2096
+ "type": "reference",
2097
+ "typeName": {
2098
+ "type": "identifier",
2099
+ "name": "ActionType"
2100
+ }
2101
+ }
2102
+ }
2103
+ },
2104
+ {
2105
+ "name": "goals",
2106
+ "annotation": {
2107
+ "type": "array",
2108
+ "elementType": {
2109
+ "type": "reference",
2110
+ "typeName": {
2111
+ "type": "identifier",
2112
+ "name": "Goal"
2113
+ }
2114
+ }
2115
+ }
2116
+ }
2117
+ ],
2118
+ "events": [
2119
+ {
2120
+ "name": "goal.click",
2121
+ "detail": {
2122
+ "annotation": {
2123
+ "type": "reference",
2124
+ "typeName": {
2125
+ "type": "identifier",
2126
+ "name": "Conversation"
2127
+ }
2128
+ }
2129
+ }
2130
+ },
2131
+ {
2132
+ "name": "action.click",
2133
+ "detail": {
2134
+ "annotation": {
2135
+ "type": "reference",
2136
+ "typeName": {
2137
+ "type": "identifier",
2138
+ "name": "ActionClickDetail"
2139
+ }
2140
+ }
2141
+ }
2142
+ }
2143
+ ],
2144
+ "methods": [],
2145
+ "types": [
2146
+ {
2147
+ "type": "interface",
2148
+ "name": "Conversation",
2149
+ "body": [
2150
+ {
2151
+ "type": "propertySignature",
2152
+ "key": {
2153
+ "type": "identifier",
2154
+ "name": "conversationId"
2155
+ },
2156
+ "annotation": {
2157
+ "type": "keyword",
2158
+ "value": "string"
2159
+ },
2160
+ "computed": false
2161
+ },
2162
+ {
2163
+ "type": "propertySignature",
2164
+ "key": {
2165
+ "type": "identifier",
2166
+ "name": "title"
2167
+ },
2168
+ "annotation": {
2169
+ "type": "keyword",
2170
+ "value": "string"
2171
+ },
2172
+ "computed": false
2173
+ },
2174
+ {
2175
+ "type": "propertySignature",
2176
+ "key": {
2177
+ "type": "identifier",
2178
+ "name": "startTime"
2179
+ },
2180
+ "annotation": {
2181
+ "type": "keyword",
2182
+ "value": "number"
2183
+ },
2184
+ "computed": false
2185
+ },
2186
+ {
2187
+ "type": "propertySignature",
2188
+ "key": {
2189
+ "type": "identifier",
2190
+ "name": "description"
2191
+ },
2192
+ "annotation": {
2193
+ "type": "keyword",
2194
+ "value": "string"
2195
+ },
2196
+ "optional": true,
2197
+ "computed": false
2198
+ },
2199
+ {
2200
+ "type": "propertySignature",
2201
+ "key": {
2202
+ "type": "identifier",
2203
+ "name": "goalInstanceId"
2204
+ },
2205
+ "annotation": {
2206
+ "type": "keyword",
2207
+ "value": "string"
2208
+ },
2209
+ "optional": true,
2210
+ "computed": false
2211
+ },
2212
+ {
2213
+ "type": "propertySignature",
2214
+ "key": {
2215
+ "type": "identifier",
2216
+ "name": "username"
2217
+ },
2218
+ "annotation": {
2219
+ "type": "keyword",
2220
+ "value": "string"
2221
+ },
2222
+ "optional": true,
2223
+ "computed": false
2224
+ }
2225
+ ]
2226
+ },
2227
+ {
2228
+ "type": "interface",
2229
+ "name": "Goal",
2230
+ "body": [
2231
+ {
2232
+ "type": "propertySignature",
2233
+ "key": {
2234
+ "type": "identifier",
2235
+ "name": "instanceId"
2236
+ },
2237
+ "annotation": {
2238
+ "type": "keyword",
2239
+ "value": "string"
2240
+ },
2241
+ "computed": false
2242
+ },
2243
+ {
2244
+ "type": "propertySignature",
2245
+ "key": {
2246
+ "type": "identifier",
2247
+ "name": "title"
2248
+ },
2249
+ "annotation": {
2250
+ "type": "keyword",
2251
+ "value": "string"
2252
+ },
2253
+ "computed": false
2254
+ }
2255
+ ]
2256
+ },
2257
+ {
2258
+ "type": "interface",
2259
+ "name": "ActionClickDetail",
2260
+ "body": [
2261
+ {
2262
+ "type": "propertySignature",
2263
+ "key": {
2264
+ "type": "identifier",
2265
+ "name": "action"
2266
+ },
2267
+ "annotation": {
2268
+ "type": "reference",
2269
+ "typeName": {
2270
+ "type": "identifier",
2271
+ "name": "SimpleActionType"
2272
+ }
2273
+ },
2274
+ "computed": false
2275
+ },
2276
+ {
2277
+ "type": "propertySignature",
2278
+ "key": {
2279
+ "type": "identifier",
2280
+ "name": "item"
2281
+ },
2282
+ "annotation": {
2283
+ "type": "reference",
2284
+ "typeName": {
2285
+ "type": "identifier",
2286
+ "name": "Conversation"
2287
+ }
2288
+ },
2289
+ "computed": false
2290
+ }
2291
+ ]
2292
+ }
2293
+ ]
2294
+ },
2069
2295
  "ai-portal.activity-timeline": {
2070
2296
  "properties": [
2071
2297
  {
@@ -3445,334 +3671,10 @@
3445
3671
  }
3446
3672
  ]
3447
3673
  },
3448
- "ai-portal.project-conversations": {
3674
+ "ai-portal.stage-flow": {
3449
3675
  "properties": [
3450
3676
  {
3451
- "name": "list",
3452
- "annotation": {
3453
- "type": "array",
3454
- "elementType": {
3455
- "type": "reference",
3456
- "typeName": {
3457
- "type": "identifier",
3458
- "name": "Conversation"
3459
- }
3460
- }
3461
- }
3462
- },
3463
- {
3464
- "name": "urlTemplate",
3465
- "annotation": {
3466
- "type": "keyword",
3467
- "value": "string"
3468
- }
3469
- },
3470
- {
3471
- "name": "actions",
3472
- "annotation": {
3473
- "type": "array",
3474
- "elementType": {
3475
- "type": "reference",
3476
- "typeName": {
3477
- "type": "identifier",
3478
- "name": "ActionType"
3479
- }
3480
- }
3481
- }
3482
- },
3483
- {
3484
- "name": "goals",
3485
- "annotation": {
3486
- "type": "array",
3487
- "elementType": {
3488
- "type": "reference",
3489
- "typeName": {
3490
- "type": "identifier",
3491
- "name": "Goal"
3492
- }
3493
- }
3494
- }
3495
- }
3496
- ],
3497
- "events": [
3498
- {
3499
- "name": "goal.click",
3500
- "detail": {
3501
- "annotation": {
3502
- "type": "reference",
3503
- "typeName": {
3504
- "type": "identifier",
3505
- "name": "Conversation"
3506
- }
3507
- }
3508
- }
3509
- },
3510
- {
3511
- "name": "action.click",
3512
- "detail": {
3513
- "annotation": {
3514
- "type": "reference",
3515
- "typeName": {
3516
- "type": "identifier",
3517
- "name": "ActionClickDetail"
3518
- }
3519
- }
3520
- }
3521
- }
3522
- ],
3523
- "methods": [],
3524
- "types": [
3525
- {
3526
- "type": "interface",
3527
- "name": "Conversation",
3528
- "body": [
3529
- {
3530
- "type": "propertySignature",
3531
- "key": {
3532
- "type": "identifier",
3533
- "name": "conversationId"
3534
- },
3535
- "annotation": {
3536
- "type": "keyword",
3537
- "value": "string"
3538
- },
3539
- "computed": false
3540
- },
3541
- {
3542
- "type": "propertySignature",
3543
- "key": {
3544
- "type": "identifier",
3545
- "name": "title"
3546
- },
3547
- "annotation": {
3548
- "type": "keyword",
3549
- "value": "string"
3550
- },
3551
- "computed": false
3552
- },
3553
- {
3554
- "type": "propertySignature",
3555
- "key": {
3556
- "type": "identifier",
3557
- "name": "startTime"
3558
- },
3559
- "annotation": {
3560
- "type": "keyword",
3561
- "value": "number"
3562
- },
3563
- "computed": false
3564
- },
3565
- {
3566
- "type": "propertySignature",
3567
- "key": {
3568
- "type": "identifier",
3569
- "name": "description"
3570
- },
3571
- "annotation": {
3572
- "type": "keyword",
3573
- "value": "string"
3574
- },
3575
- "optional": true,
3576
- "computed": false
3577
- },
3578
- {
3579
- "type": "propertySignature",
3580
- "key": {
3581
- "type": "identifier",
3582
- "name": "goalInstanceId"
3583
- },
3584
- "annotation": {
3585
- "type": "keyword",
3586
- "value": "string"
3587
- },
3588
- "optional": true,
3589
- "computed": false
3590
- },
3591
- {
3592
- "type": "propertySignature",
3593
- "key": {
3594
- "type": "identifier",
3595
- "name": "username"
3596
- },
3597
- "annotation": {
3598
- "type": "keyword",
3599
- "value": "string"
3600
- },
3601
- "optional": true,
3602
- "computed": false
3603
- }
3604
- ]
3605
- },
3606
- {
3607
- "type": "interface",
3608
- "name": "Goal",
3609
- "body": [
3610
- {
3611
- "type": "propertySignature",
3612
- "key": {
3613
- "type": "identifier",
3614
- "name": "instanceId"
3615
- },
3616
- "annotation": {
3617
- "type": "keyword",
3618
- "value": "string"
3619
- },
3620
- "computed": false
3621
- },
3622
- {
3623
- "type": "propertySignature",
3624
- "key": {
3625
- "type": "identifier",
3626
- "name": "title"
3627
- },
3628
- "annotation": {
3629
- "type": "keyword",
3630
- "value": "string"
3631
- },
3632
- "computed": false
3633
- }
3634
- ]
3635
- },
3636
- {
3637
- "type": "interface",
3638
- "name": "ActionClickDetail",
3639
- "body": [
3640
- {
3641
- "type": "propertySignature",
3642
- "key": {
3643
- "type": "identifier",
3644
- "name": "action"
3645
- },
3646
- "annotation": {
3647
- "type": "reference",
3648
- "typeName": {
3649
- "type": "identifier",
3650
- "name": "SimpleActionType"
3651
- }
3652
- },
3653
- "computed": false
3654
- },
3655
- {
3656
- "type": "propertySignature",
3657
- "key": {
3658
- "type": "identifier",
3659
- "name": "item"
3660
- },
3661
- "annotation": {
3662
- "type": "reference",
3663
- "typeName": {
3664
- "type": "identifier",
3665
- "name": "Conversation"
3666
- }
3667
- },
3668
- "computed": false
3669
- }
3670
- ]
3671
- }
3672
- ]
3673
- },
3674
- "ai-portal.show-case": {
3675
- "properties": [
3676
- {
3677
- "name": "caseTitle",
3678
- "annotation": {
3679
- "type": "keyword",
3680
- "value": "string"
3681
- }
3682
- },
3683
- {
3684
- "name": "summary",
3685
- "annotation": {
3686
- "type": "keyword",
3687
- "value": "string"
3688
- }
3689
- },
3690
- {
3691
- "name": "url",
3692
- "annotation": {
3693
- "type": "keyword",
3694
- "value": "string"
3695
- }
3696
- }
3697
- ],
3698
- "events": [],
3699
- "methods": []
3700
- },
3701
- "ai-portal.flow-tabs": {
3702
- "properties": [
3703
- {
3704
- "name": "tabs",
3705
- "annotation": {
3706
- "type": "array",
3707
- "elementType": {
3708
- "type": "reference",
3709
- "typeName": {
3710
- "type": "identifier",
3711
- "name": "Tab"
3712
- }
3713
- }
3714
- }
3715
- },
3716
- {
3717
- "name": "activeTab",
3718
- "annotation": {
3719
- "type": "keyword",
3720
- "value": "string"
3721
- }
3722
- }
3723
- ],
3724
- "events": [
3725
- {
3726
- "name": "tab.click",
3727
- "detail": {
3728
- "annotation": {
3729
- "type": "reference",
3730
- "typeName": {
3731
- "type": "identifier",
3732
- "name": "Tab"
3733
- }
3734
- }
3735
- }
3736
- }
3737
- ],
3738
- "methods": [],
3739
- "types": [
3740
- {
3741
- "type": "interface",
3742
- "name": "Tab",
3743
- "body": [
3744
- {
3745
- "type": "propertySignature",
3746
- "key": {
3747
- "type": "identifier",
3748
- "name": "id"
3749
- },
3750
- "annotation": {
3751
- "type": "keyword",
3752
- "value": "string"
3753
- },
3754
- "computed": false
3755
- },
3756
- {
3757
- "type": "propertySignature",
3758
- "key": {
3759
- "type": "identifier",
3760
- "name": "label"
3761
- },
3762
- "annotation": {
3763
- "type": "keyword",
3764
- "value": "string"
3765
- },
3766
- "computed": false
3767
- }
3768
- ]
3769
- }
3770
- ]
3771
- },
3772
- "ai-portal.stage-flow": {
3773
- "properties": [
3774
- {
3775
- "name": "spec",
3677
+ "name": "spec",
3776
3678
  "annotation": {
3777
3679
  "type": "array",
3778
3680
  "elementType": {
@@ -4131,6 +4033,104 @@
4131
4033
  }
4132
4034
  ]
4133
4035
  },
4036
+ "ai-portal.show-case": {
4037
+ "properties": [
4038
+ {
4039
+ "name": "caseTitle",
4040
+ "annotation": {
4041
+ "type": "keyword",
4042
+ "value": "string"
4043
+ }
4044
+ },
4045
+ {
4046
+ "name": "summary",
4047
+ "annotation": {
4048
+ "type": "keyword",
4049
+ "value": "string"
4050
+ }
4051
+ },
4052
+ {
4053
+ "name": "url",
4054
+ "annotation": {
4055
+ "type": "keyword",
4056
+ "value": "string"
4057
+ }
4058
+ }
4059
+ ],
4060
+ "events": [],
4061
+ "methods": []
4062
+ },
4063
+ "ai-portal.flow-tabs": {
4064
+ "properties": [
4065
+ {
4066
+ "name": "tabs",
4067
+ "annotation": {
4068
+ "type": "array",
4069
+ "elementType": {
4070
+ "type": "reference",
4071
+ "typeName": {
4072
+ "type": "identifier",
4073
+ "name": "Tab"
4074
+ }
4075
+ }
4076
+ }
4077
+ },
4078
+ {
4079
+ "name": "activeTab",
4080
+ "annotation": {
4081
+ "type": "keyword",
4082
+ "value": "string"
4083
+ }
4084
+ }
4085
+ ],
4086
+ "events": [
4087
+ {
4088
+ "name": "tab.click",
4089
+ "detail": {
4090
+ "annotation": {
4091
+ "type": "reference",
4092
+ "typeName": {
4093
+ "type": "identifier",
4094
+ "name": "Tab"
4095
+ }
4096
+ }
4097
+ }
4098
+ }
4099
+ ],
4100
+ "methods": [],
4101
+ "types": [
4102
+ {
4103
+ "type": "interface",
4104
+ "name": "Tab",
4105
+ "body": [
4106
+ {
4107
+ "type": "propertySignature",
4108
+ "key": {
4109
+ "type": "identifier",
4110
+ "name": "id"
4111
+ },
4112
+ "annotation": {
4113
+ "type": "keyword",
4114
+ "value": "string"
4115
+ },
4116
+ "computed": false
4117
+ },
4118
+ {
4119
+ "type": "propertySignature",
4120
+ "key": {
4121
+ "type": "identifier",
4122
+ "name": "label"
4123
+ },
4124
+ "annotation": {
4125
+ "type": "keyword",
4126
+ "value": "string"
4127
+ },
4128
+ "computed": false
4129
+ }
4130
+ ]
4131
+ }
4132
+ ]
4133
+ },
4134
4134
  "ai-portal.running-flow": {
4135
4135
  "properties": [
4136
4136
  {