@next-bricks/ai-portal 0.58.12 → 0.58.14

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
  {
@@ -194,6 +181,19 @@
194
181
  }
195
182
  ]
196
183
  },
184
+ "ai-portal.home-container": {
185
+ "properties": [
186
+ {
187
+ "name": "sticky",
188
+ "annotation": {
189
+ "type": "keyword",
190
+ "value": "boolean"
191
+ }
192
+ }
193
+ ],
194
+ "events": [],
195
+ "methods": []
196
+ },
197
197
  "ai-portal.call-tool": {
198
198
  "type": "provider",
199
199
  "params": [
@@ -3040,6 +3040,232 @@
3040
3040
  }
3041
3041
  ]
3042
3042
  },
3043
+ "ai-portal.project-conversations": {
3044
+ "properties": [
3045
+ {
3046
+ "name": "list",
3047
+ "annotation": {
3048
+ "type": "array",
3049
+ "elementType": {
3050
+ "type": "reference",
3051
+ "typeName": {
3052
+ "type": "identifier",
3053
+ "name": "Conversation"
3054
+ }
3055
+ }
3056
+ }
3057
+ },
3058
+ {
3059
+ "name": "urlTemplate",
3060
+ "annotation": {
3061
+ "type": "keyword",
3062
+ "value": "string"
3063
+ }
3064
+ },
3065
+ {
3066
+ "name": "actions",
3067
+ "annotation": {
3068
+ "type": "array",
3069
+ "elementType": {
3070
+ "type": "reference",
3071
+ "typeName": {
3072
+ "type": "identifier",
3073
+ "name": "ActionType"
3074
+ }
3075
+ }
3076
+ }
3077
+ },
3078
+ {
3079
+ "name": "goals",
3080
+ "annotation": {
3081
+ "type": "array",
3082
+ "elementType": {
3083
+ "type": "reference",
3084
+ "typeName": {
3085
+ "type": "identifier",
3086
+ "name": "Goal"
3087
+ }
3088
+ }
3089
+ }
3090
+ }
3091
+ ],
3092
+ "events": [
3093
+ {
3094
+ "name": "goal.click",
3095
+ "detail": {
3096
+ "annotation": {
3097
+ "type": "reference",
3098
+ "typeName": {
3099
+ "type": "identifier",
3100
+ "name": "Conversation"
3101
+ }
3102
+ }
3103
+ }
3104
+ },
3105
+ {
3106
+ "name": "action.click",
3107
+ "detail": {
3108
+ "annotation": {
3109
+ "type": "reference",
3110
+ "typeName": {
3111
+ "type": "identifier",
3112
+ "name": "ActionClickDetail"
3113
+ }
3114
+ }
3115
+ }
3116
+ }
3117
+ ],
3118
+ "methods": [],
3119
+ "types": [
3120
+ {
3121
+ "type": "interface",
3122
+ "name": "Conversation",
3123
+ "body": [
3124
+ {
3125
+ "type": "propertySignature",
3126
+ "key": {
3127
+ "type": "identifier",
3128
+ "name": "conversationId"
3129
+ },
3130
+ "annotation": {
3131
+ "type": "keyword",
3132
+ "value": "string"
3133
+ },
3134
+ "computed": false
3135
+ },
3136
+ {
3137
+ "type": "propertySignature",
3138
+ "key": {
3139
+ "type": "identifier",
3140
+ "name": "title"
3141
+ },
3142
+ "annotation": {
3143
+ "type": "keyword",
3144
+ "value": "string"
3145
+ },
3146
+ "computed": false
3147
+ },
3148
+ {
3149
+ "type": "propertySignature",
3150
+ "key": {
3151
+ "type": "identifier",
3152
+ "name": "startTime"
3153
+ },
3154
+ "annotation": {
3155
+ "type": "keyword",
3156
+ "value": "number"
3157
+ },
3158
+ "computed": false
3159
+ },
3160
+ {
3161
+ "type": "propertySignature",
3162
+ "key": {
3163
+ "type": "identifier",
3164
+ "name": "description"
3165
+ },
3166
+ "annotation": {
3167
+ "type": "keyword",
3168
+ "value": "string"
3169
+ },
3170
+ "optional": true,
3171
+ "computed": false
3172
+ },
3173
+ {
3174
+ "type": "propertySignature",
3175
+ "key": {
3176
+ "type": "identifier",
3177
+ "name": "goalInstanceId"
3178
+ },
3179
+ "annotation": {
3180
+ "type": "keyword",
3181
+ "value": "string"
3182
+ },
3183
+ "optional": true,
3184
+ "computed": false
3185
+ },
3186
+ {
3187
+ "type": "propertySignature",
3188
+ "key": {
3189
+ "type": "identifier",
3190
+ "name": "username"
3191
+ },
3192
+ "annotation": {
3193
+ "type": "keyword",
3194
+ "value": "string"
3195
+ },
3196
+ "optional": true,
3197
+ "computed": false
3198
+ }
3199
+ ]
3200
+ },
3201
+ {
3202
+ "type": "interface",
3203
+ "name": "Goal",
3204
+ "body": [
3205
+ {
3206
+ "type": "propertySignature",
3207
+ "key": {
3208
+ "type": "identifier",
3209
+ "name": "instanceId"
3210
+ },
3211
+ "annotation": {
3212
+ "type": "keyword",
3213
+ "value": "string"
3214
+ },
3215
+ "computed": false
3216
+ },
3217
+ {
3218
+ "type": "propertySignature",
3219
+ "key": {
3220
+ "type": "identifier",
3221
+ "name": "title"
3222
+ },
3223
+ "annotation": {
3224
+ "type": "keyword",
3225
+ "value": "string"
3226
+ },
3227
+ "computed": false
3228
+ }
3229
+ ]
3230
+ },
3231
+ {
3232
+ "type": "interface",
3233
+ "name": "ActionClickDetail",
3234
+ "body": [
3235
+ {
3236
+ "type": "propertySignature",
3237
+ "key": {
3238
+ "type": "identifier",
3239
+ "name": "action"
3240
+ },
3241
+ "annotation": {
3242
+ "type": "reference",
3243
+ "typeName": {
3244
+ "type": "identifier",
3245
+ "name": "SimpleActionType"
3246
+ }
3247
+ },
3248
+ "computed": false
3249
+ },
3250
+ {
3251
+ "type": "propertySignature",
3252
+ "key": {
3253
+ "type": "identifier",
3254
+ "name": "item"
3255
+ },
3256
+ "annotation": {
3257
+ "type": "reference",
3258
+ "typeName": {
3259
+ "type": "identifier",
3260
+ "name": "Conversation"
3261
+ }
3262
+ },
3263
+ "computed": false
3264
+ }
3265
+ ]
3266
+ }
3267
+ ]
3268
+ },
3043
3269
  "ai-portal.chat-input": {
3044
3270
  "properties": [
3045
3271
  {
@@ -3445,232 +3671,6 @@
3445
3671
  }
3446
3672
  ]
3447
3673
  },
3448
- "ai-portal.project-conversations": {
3449
- "properties": [
3450
- {
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
3674
  "ai-portal.show-case": {
3675
3675
  "properties": [
3676
3676
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-bricks/ai-portal",
3
- "version": "0.58.12",
3
+ "version": "0.58.14",
4
4
  "homepage": "https://github.com/easyops-cn/next-advanced-bricks/tree/master/bricks/ai-portal",
5
5
  "repository": {
6
6
  "type": "git",
@@ -47,5 +47,5 @@
47
47
  "@next-bricks/presentational": "*",
48
48
  "@next-bricks/vs": "*"
49
49
  },
50
- "gitHead": "e05336ee0987f629d84f6b7496237161751be482"
50
+ "gitHead": "9d46effdad9162be53322f3e843b25e2edaada85"
51
51
  }