@gooddata/sdk-ui-gen-ai 11.16.0-alpha.6 → 11.16.0
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/esm/store/sideEffects/onThreadClear.d.ts +1 -1
- package/esm/store/sideEffects/onThreadLoad.d.ts +1 -1
- package/esm/store/sideEffects/onUserFeedback.d.ts +1 -1
- package/esm/store/sideEffects/onUserMessage.d.ts +1 -1
- package/esm/store/sideEffects/onVisualisationRender.d.ts +1 -1
- package/esm/store/sideEffects/onVisualizationSave.d.ts +1 -1
- package/esm/store/sideEffects/onVisualizationSuccessSave.d.ts +1 -1
- package/package.json +17 -17
|
@@ -3,7 +3,7 @@ import { type IAnalyticalBackend } from "@gooddata/sdk-backend-spi";
|
|
|
3
3
|
* Load thread history and put it to the store.
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
|
-
export declare function onThreadClear(): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").RaceEffect<import("redux-saga/effects").
|
|
6
|
+
export declare function onThreadClear(): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").RaceEffect<import("redux-saga/effects").TakeEffect | import("redux-saga/effects").CallEffect<void>> | import("redux-saga/effects").PutEffect<{
|
|
7
7
|
payload: undefined;
|
|
8
8
|
type: "messages/clearThreadSuccessAction";
|
|
9
9
|
}> | import("redux-saga/effects").PutEffect<{
|
|
@@ -3,7 +3,7 @@ import { type IAnalyticalBackend, type IChatThreadHistory, type IUserWorkspaceSe
|
|
|
3
3
|
* Load thread history and put it to the store.
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
|
-
export declare function onThreadLoad(): Generator<import("redux-saga/effects").
|
|
6
|
+
export declare function onThreadLoad(): Generator<import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").RaceEffect<import("redux-saga/effects").TakeEffect | import("redux-saga/effects").CallEffect<IChatThreadHistory>> | import("redux-saga/effects").PutEffect<{
|
|
7
7
|
payload: {
|
|
8
8
|
messages: import("../../model.js").Message[];
|
|
9
9
|
threadId: string;
|
|
@@ -11,7 +11,7 @@ export declare function onUserFeedback({ payload, }: PayloadAction<{
|
|
|
11
11
|
assistantMessageId: string;
|
|
12
12
|
feedback: GenAIChatInteractionUserFeedback;
|
|
13
13
|
userTextFeedback?: string;
|
|
14
|
-
}>): Generator<import("redux-saga/effects").
|
|
14
|
+
}>): Generator<Promise<void> | import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").PutEffect<{
|
|
15
15
|
payload: {
|
|
16
16
|
assistantMessageId: string;
|
|
17
17
|
error: string;
|
|
@@ -4,7 +4,7 @@ import { type AssistantMessage, type Message } from "../../model.js";
|
|
|
4
4
|
* Load thread history and put it to the store.
|
|
5
5
|
* @internal
|
|
6
6
|
*/
|
|
7
|
-
export declare function onUserMessage({ payload }: PayloadAction<Message>): Generator<import("redux-saga/effects").
|
|
7
|
+
export declare function onUserMessage({ payload }: PayloadAction<Message>): Generator<import("redux-saga/effects").CancelledEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").PutEffect<{
|
|
8
8
|
payload: {
|
|
9
9
|
message: AssistantMessage;
|
|
10
10
|
};
|
|
@@ -10,7 +10,7 @@ export declare function onVisualisationRender({ payload, }: PayloadAction<{
|
|
|
10
10
|
visualizationId: string;
|
|
11
11
|
assistantMessageId: string;
|
|
12
12
|
status: "SUCCESSFUL" | "UNEXPECTED_ERROR" | "TOO_MANY_DATA_POINTS" | "NO_DATA" | "NO_RESULTS";
|
|
13
|
-
}>): Generator<import("redux-saga/effects").
|
|
13
|
+
}>): Generator<import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").PutEffect<{
|
|
14
14
|
payload: {
|
|
15
15
|
visualizationId: string;
|
|
16
16
|
assistantMessageId: string;
|
|
@@ -7,7 +7,7 @@ export declare function onVisualizationSave({ payload, }: PayloadAction<{
|
|
|
7
7
|
visualizationTitle: string;
|
|
8
8
|
assistantMessageId: string;
|
|
9
9
|
explore: boolean;
|
|
10
|
-
}>): Generator<import("redux-saga/effects").
|
|
10
|
+
}>): Generator<import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<IInsight> | import("redux-saga/effects").PutEffect<{
|
|
11
11
|
payload: {
|
|
12
12
|
visualizationId: string;
|
|
13
13
|
assistantMessageId: string;
|
|
@@ -6,5 +6,5 @@ export declare function onVisualizationSuccessSave({ payload, }: PayloadAction<{
|
|
|
6
6
|
assistantMessageId: string;
|
|
7
7
|
savedVisualizationId: string;
|
|
8
8
|
explore: boolean;
|
|
9
|
-
}>): Generator<import("redux-saga/effects").
|
|
9
|
+
}>): Generator<import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void>, void, IAnalyticalBackend & string & Message[]>;
|
|
10
10
|
//# sourceMappingURL=onVisualizationSuccessSave.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-gen-ai",
|
|
3
|
-
"version": "11.16.0
|
|
3
|
+
"version": "11.16.0",
|
|
4
4
|
"description": "GoodData GenAI SDK",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"reselect": "5.1.1",
|
|
56
56
|
"tslib": "2.8.1",
|
|
57
57
|
"uuid": "^11.1.0",
|
|
58
|
-
"@gooddata/
|
|
59
|
-
"@gooddata/
|
|
60
|
-
"@gooddata/sdk-model": "11.16.0
|
|
61
|
-
"@gooddata/sdk-ui
|
|
62
|
-
"@gooddata/sdk-ui": "11.16.0
|
|
63
|
-
"@gooddata/sdk-ui-dashboard": "11.16.0
|
|
64
|
-
"@gooddata/sdk-ui-
|
|
65
|
-
"@gooddata/sdk-ui-
|
|
66
|
-
"@gooddata/sdk-ui-pivot": "11.16.0
|
|
67
|
-
"@gooddata/
|
|
68
|
-
"@gooddata/
|
|
58
|
+
"@gooddata/sdk-backend-spi": "11.16.0",
|
|
59
|
+
"@gooddata/api-client-tiger": "11.16.0",
|
|
60
|
+
"@gooddata/sdk-model": "11.16.0",
|
|
61
|
+
"@gooddata/sdk-ui": "11.16.0",
|
|
62
|
+
"@gooddata/sdk-ui-charts": "11.16.0",
|
|
63
|
+
"@gooddata/sdk-ui-dashboard": "11.16.0",
|
|
64
|
+
"@gooddata/sdk-ui-filters": "11.16.0",
|
|
65
|
+
"@gooddata/sdk-ui-kit": "11.16.0",
|
|
66
|
+
"@gooddata/sdk-ui-pivot": "11.16.0",
|
|
67
|
+
"@gooddata/sdk-ui-semantic-search": "11.16.0",
|
|
68
|
+
"@gooddata/util": "11.16.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -108,11 +108,11 @@
|
|
|
108
108
|
"typescript": "5.9.3",
|
|
109
109
|
"vitest": "4.0.8",
|
|
110
110
|
"vitest-dom": "0.1.1",
|
|
111
|
-
"@gooddata/eslint-config": "11.16.0
|
|
112
|
-
"@gooddata/
|
|
113
|
-
"@gooddata/
|
|
114
|
-
"@gooddata/sdk-backend-mockingbird": "11.16.0
|
|
115
|
-
"@gooddata/sdk-ui-theme-provider": "11.16.0
|
|
111
|
+
"@gooddata/eslint-config": "11.16.0",
|
|
112
|
+
"@gooddata/reference-workspace": "11.16.0",
|
|
113
|
+
"@gooddata/i18n-toolkit": "11.16.0",
|
|
114
|
+
"@gooddata/sdk-backend-mockingbird": "11.16.0",
|
|
115
|
+
"@gooddata/sdk-ui-theme-provider": "11.16.0"
|
|
116
116
|
},
|
|
117
117
|
"peerDependencies": {
|
|
118
118
|
"react": "^18.0.0 || ^19.0.0",
|