@next-bricks/ai-portal 0.64.2 → 0.64.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/bricks.json +21 -21
- package/dist/chunks/3840.6080d56e.js +3 -0
- package/dist/chunks/3840.6080d56e.js.map +1 -0
- package/dist/chunks/4208.90f96600.js +2 -0
- package/dist/chunks/4208.90f96600.js.map +1 -0
- package/dist/chunks/{main.70cff0e5.js → main.0d63781a.js} +2 -2
- package/dist/chunks/{main.70cff0e5.js.map → main.0d63781a.js.map} +1 -1
- package/dist/examples.json +14 -14
- package/dist/index.682d62ca.js +2 -0
- package/dist/{index.aadd5601.js.map → index.682d62ca.js.map} +1 -1
- package/dist/manifest.json +126 -126
- package/dist/types.json +856 -856
- package/dist-types/cruise-canvas/reducers/interfaces.d.ts +4 -1
- package/package.json +2 -2
- package/dist/chunks/2028.81962baa.js +0 -3
- package/dist/chunks/2028.81962baa.js.map +0 -1
- package/dist/chunks/4208.9bc0e6c6.js +0 -2
- package/dist/chunks/4208.9bc0e6c6.js.map +0 -1
- package/dist/index.aadd5601.js +0 -2
- /package/dist/chunks/{2028.81962baa.js.LICENSE.txt → 3840.6080d56e.js.LICENSE.txt} +0 -0
|
@@ -5,7 +5,7 @@ export interface CruiseCanvasState {
|
|
|
5
5
|
serviceFlows: ServiceFlowRun[];
|
|
6
6
|
errors: ConversationError[];
|
|
7
7
|
}
|
|
8
|
-
export type CruiseCanvasAction = ConversationSSEAction | ConversationResetAction | ConversationFinishedAction;
|
|
8
|
+
export type CruiseCanvasAction = ConversationSSEAction | ConversationResetAction | ConversationStartedAction | ConversationFinishedAction;
|
|
9
9
|
export interface ConversationSSEAction {
|
|
10
10
|
type: "sse";
|
|
11
11
|
payload: ConversationPatch;
|
|
@@ -14,6 +14,9 @@ export interface ConversationSSEAction {
|
|
|
14
14
|
export interface ConversationResetAction {
|
|
15
15
|
type: "reset";
|
|
16
16
|
}
|
|
17
|
+
export interface ConversationStartedAction {
|
|
18
|
+
type: "started";
|
|
19
|
+
}
|
|
17
20
|
export interface ConversationFinishedAction {
|
|
18
21
|
type: "finished";
|
|
19
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-bricks/ai-portal",
|
|
3
|
-
"version": "0.64.
|
|
3
|
+
"version": "0.64.4",
|
|
4
4
|
"homepage": "https://github.com/easyops-cn/next-advanced-bricks/tree/master/bricks/ai-portal",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"@next-bricks/presentational": "*",
|
|
50
50
|
"@next-bricks/vs": "*"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "710a29b9fe5a6299d65145ef445a21a90f90834f"
|
|
53
53
|
}
|