@gooddata/sdk-ui-gen-ai 11.18.0-alpha.7 → 11.18.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/NOTICE CHANGED
@@ -9,7 +9,7 @@ The following 3rd-party software packages may be used by or distributed with goo
9
9
 
10
10
  Date generated: 2026-1-28
11
11
 
12
- Revision ID: a61bddeb034dc2a7a6ebf9a9d3ced8af99cc690f
12
+ Revision ID: da5a4d893353305dc07f87f44ff1818b565ec48d
13
13
 
14
14
  ================================================================================
15
15
  ================================================================================
@@ -339,7 +339,7 @@ Revision ID: a61bddeb034dc2a7a6ebf9a9d3ced8af99cc690f
339
339
  - bail (2.0.2) [MIT]
340
340
  - balanced-match (1.0.2) [MIT]
341
341
  - base64-js (1.5.1) [MIT]
342
- - baseline-browser-mapping (2.8.32) [Apache-2.0]
342
+ - baseline-browser-mapping (2.9.19) [Apache-2.0]
343
343
  - batch (0.6.1) [MIT]
344
344
  - binary-extensions (2.3.0) [MIT]
345
345
  - bl (4.1.0) [MIT]
@@ -709,6 +709,7 @@ Revision ID: a61bddeb034dc2a7a6ebf9a9d3ced8af99cc690f
709
709
  - mimic-fn (2.1.0) [MIT]
710
710
  - minimalistic-assert (1.0.1) [ISC]
711
711
  - minimatch (10.0.3) [MIT]
712
+ - minimatch (10.1.1) [MIT]
712
713
  - minimatch (3.1.2) [MIT]
713
714
  - minimist (1.2.8) [MIT]
714
715
  - minipass (3.3.6) [ISC]
@@ -4817,9 +4818,9 @@ MIT
4817
4818
 
4818
4819
 
4819
4820
  --------------------------------------------------------------------------------
4820
- Package Title: baseline-browser-mapping (2.8.32)
4821
+ Package Title: baseline-browser-mapping (2.9.19)
4821
4822
 
4822
- Package Locator: npm+baseline-browser-mapping$2.8.32
4823
+ Package Locator: npm+baseline-browser-mapping$2.9.19
4823
4824
 
4824
4825
  Package Depth: Transitive
4825
4826
  --------------------------------------------------------------------------------
@@ -9276,6 +9277,18 @@ Package Depth: Transitive
9276
9277
  MIT
9277
9278
 
9278
9279
 
9280
+ --------------------------------------------------------------------------------
9281
+ Package Title: minimatch (10.1.1)
9282
+
9283
+ Package Locator: npm+minimatch$10.1.1
9284
+
9285
+ Package Depth: Transitive
9286
+ --------------------------------------------------------------------------------
9287
+
9288
+ * Declared Licenses *
9289
+ MIT
9290
+
9291
+
9279
9292
  --------------------------------------------------------------------------------
9280
9293
  Package Title: minimatch (3.1.2)
9281
9294
 
@@ -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").TakeEffect | import("redux-saga/effects").CallEffect<void>> | import("redux-saga/effects").PutEffect<{
6
+ export declare function onThreadClear(): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").RaceEffect<import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").TakeEffect> | 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").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<{
6
+ export declare function onThreadLoad(): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").SelectEffect | 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<Promise<void> | import("redux-saga/effects").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").PutEffect<{
14
+ }>): Generator<import("redux-saga/effects").GetContextEffect | Promise<void> | import("redux-saga/effects").SelectEffect | 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").SelectEffect | import("redux-saga/effects").CancelledEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").PutEffect<{
7
+ export declare function onUserMessage({ payload }: PayloadAction<Message>): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").SelectEffect | import("redux-saga/effects").CancelledEffect | 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").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").PutEffect<{
13
+ }>): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").SelectEffect | 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").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<IInsight> | import("redux-saga/effects").PutEffect<{
10
+ }>): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").SelectEffect | 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").SelectEffect | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void>, void, IAnalyticalBackend & string & Message[]>;
9
+ }>): Generator<import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").CallEffect<void> | import("redux-saga/effects").SelectEffect, 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.18.0-alpha.7",
3
+ "version": "11.18.0",
4
4
  "description": "GoodData GenAI SDK",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,18 +56,18 @@
56
56
  "reselect": "5.1.1",
57
57
  "tslib": "2.8.1",
58
58
  "uuid": "^11.1.0",
59
- "@gooddata/api-client-tiger": "11.18.0-alpha.7",
60
- "@gooddata/sdk-model": "11.18.0-alpha.7",
61
- "@gooddata/sdk-backend-spi": "11.18.0-alpha.7",
62
- "@gooddata/sdk-ui": "11.18.0-alpha.7",
63
- "@gooddata/sdk-ui-charts": "11.18.0-alpha.7",
64
- "@gooddata/sdk-ui-dashboard": "11.18.0-alpha.7",
65
- "@gooddata/sdk-ui-filters": "11.18.0-alpha.7",
66
- "@gooddata/sdk-ui-kit": "11.18.0-alpha.7",
67
- "@gooddata/sdk-ui-semantic-search": "11.18.0-alpha.7",
68
- "@gooddata/sdk-ui-theme-provider": "11.18.0-alpha.7",
69
- "@gooddata/sdk-ui-pivot": "11.18.0-alpha.7",
70
- "@gooddata/util": "11.18.0-alpha.7"
59
+ "@gooddata/api-client-tiger": "11.18.0",
60
+ "@gooddata/sdk-backend-spi": "11.18.0",
61
+ "@gooddata/sdk-ui": "11.18.0",
62
+ "@gooddata/sdk-ui-charts": "11.18.0",
63
+ "@gooddata/sdk-model": "11.18.0",
64
+ "@gooddata/sdk-ui-dashboard": "11.18.0",
65
+ "@gooddata/sdk-ui-filters": "11.18.0",
66
+ "@gooddata/sdk-ui-pivot": "11.18.0",
67
+ "@gooddata/sdk-ui-semantic-search": "11.18.0",
68
+ "@gooddata/sdk-ui-theme-provider": "11.18.0",
69
+ "@gooddata/sdk-ui-kit": "11.18.0",
70
+ "@gooddata/util": "11.18.0"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@microsoft/api-documenter": "^7.17.0",
@@ -86,7 +86,6 @@
86
86
  "dependency-cruiser": "^14.1.2",
87
87
  "eslint": "^8.57.1",
88
88
  "eslint-config-prettier": "10.1.8",
89
- "eslint-plugin-eslint-comments": "3.2.0",
90
89
  "eslint-plugin-header": "3.1.1",
91
90
  "eslint-plugin-import": "2.32.0",
92
91
  "eslint-plugin-import-esm": "1.2.1",
@@ -97,9 +96,10 @@
97
96
  "eslint-plugin-react": "7.37.5",
98
97
  "eslint-plugin-react-hooks": "4.6.0",
99
98
  "eslint-plugin-regexp": "1.15.0",
100
- "eslint-plugin-sonarjs": "0.16.0",
99
+ "eslint-plugin-sonarjs": "3.0.6",
101
100
  "eslint-plugin-tsdoc": "0.2.14",
102
101
  "happy-dom": "18.0.1",
102
+ "npm-run-all": "^4.1.5",
103
103
  "prettier": "^3.6.2",
104
104
  "raf": "^3.4.1",
105
105
  "react": "19.1.1",
@@ -112,11 +112,11 @@
112
112
  "typescript": "5.9.3",
113
113
  "vitest": "4.0.8",
114
114
  "vitest-dom": "0.1.1",
115
- "@gooddata/eslint-config": "11.18.0-alpha.7",
116
- "@gooddata/i18n-toolkit": "11.18.0-alpha.7",
117
- "@gooddata/reference-workspace": "11.18.0-alpha.7",
118
- "@gooddata/sdk-backend-mockingbird": "11.18.0-alpha.7",
119
- "@gooddata/sdk-ui-theme-provider": "11.18.0-alpha.7"
115
+ "@gooddata/eslint-config": "11.18.0",
116
+ "@gooddata/i18n-toolkit": "11.18.0",
117
+ "@gooddata/sdk-ui-theme-provider": "11.18.0",
118
+ "@gooddata/sdk-backend-mockingbird": "11.18.0",
119
+ "@gooddata/reference-workspace": "11.18.0"
120
120
  },
121
121
  "peerDependencies": {
122
122
  "react": "^18.0.0 || ^19.0.0",
@@ -129,7 +129,9 @@
129
129
  "_phase:validate": "npm run build-dynamic-files && npm run validate",
130
130
  "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l; exit 0) || (api-extractor run)",
131
131
  "build": "bash scripts/build.sh",
132
+ "build-check": "tsc",
132
133
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
134
+ "build-ts": "tsc -p tsconfig.build.json",
133
135
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log styles/css tsconfig.tsbuildinfo",
134
136
  "dep-cruiser": "depcruise --validate .dependency-cruiser.js --output-type err-long src/",
135
137
  "eslint": "eslint -c .eslintrc.cjs --ignore-path ../.eslintignore .",
@@ -142,7 +144,7 @@
142
144
  "test": "vitest watch",
143
145
  "test-once": "vitest run",
144
146
  "test-once-with-coverage": "vitest --coverage=true",
145
- "validate": "tsc && export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
147
+ "validate": "export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
146
148
  "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-gen-ai\"'",
147
149
  "validate-locales": "i18n-toolkit",
148
150
  "validate-theming": "npm run scss && node scripts/validateCss.js"