@gooddata/sdk-model 11.40.0-alpha.5 → 11.40.0-alpha.6
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/genAI/chat.d.ts +4 -0
- package/esm/sdk-model.d.ts +12 -0
- package/esm/settings/settings.d.ts +8 -0
- package/package.json +5 -5
package/esm/genAI/chat.d.ts
CHANGED
|
@@ -153,6 +153,10 @@ export interface IGenAIWidgetDescriptor {
|
|
|
153
153
|
* Signed result ID for this widget's cached execution result.
|
|
154
154
|
*/
|
|
155
155
|
resultId?: string;
|
|
156
|
+
/**
|
|
157
|
+
* Textual content of the widget (set for richText widgets — the markdown body).
|
|
158
|
+
*/
|
|
159
|
+
content?: string;
|
|
156
160
|
}
|
|
157
161
|
/**
|
|
158
162
|
* Active object the user is interacting with.
|
package/esm/sdk-model.d.ts
CHANGED
|
@@ -6970,6 +6970,14 @@ export declare interface IFeatureFlags {
|
|
|
6970
6970
|
* Enable ai agentic multi-conversations.
|
|
6971
6971
|
*/
|
|
6972
6972
|
enableAiAgenticMultiConversations?: boolean;
|
|
6973
|
+
/**
|
|
6974
|
+
* Enable agent switching in AI Assistant.
|
|
6975
|
+
*/
|
|
6976
|
+
enableGenAiAgentSwitching?: boolean;
|
|
6977
|
+
/**
|
|
6978
|
+
* Enable observability in AI Assistant.
|
|
6979
|
+
*/
|
|
6980
|
+
enableGenAiObservability?: boolean;
|
|
6973
6981
|
/**
|
|
6974
6982
|
* Enable Anthropic provider in LLM configuration.
|
|
6975
6983
|
*/
|
|
@@ -7613,6 +7621,10 @@ export declare interface IGenAIWidgetDescriptor {
|
|
|
7613
7621
|
* Signed result ID for this widget's cached execution result.
|
|
7614
7622
|
*/
|
|
7615
7623
|
resultId?: string;
|
|
7624
|
+
/**
|
|
7625
|
+
* Textual content of the widget (set for richText widgets — the markdown body).
|
|
7626
|
+
*/
|
|
7627
|
+
content?: string;
|
|
7616
7628
|
}
|
|
7617
7629
|
|
|
7618
7630
|
/**
|
|
@@ -1010,6 +1010,14 @@ export interface IFeatureFlags {
|
|
|
1010
1010
|
* Enable ai agentic multi-conversations.
|
|
1011
1011
|
*/
|
|
1012
1012
|
enableAiAgenticMultiConversations?: boolean;
|
|
1013
|
+
/**
|
|
1014
|
+
* Enable agent switching in AI Assistant.
|
|
1015
|
+
*/
|
|
1016
|
+
enableGenAiAgentSwitching?: boolean;
|
|
1017
|
+
/**
|
|
1018
|
+
* Enable observability in AI Assistant.
|
|
1019
|
+
*/
|
|
1020
|
+
enableGenAiObservability?: boolean;
|
|
1013
1021
|
/**
|
|
1014
1022
|
* Enable Anthropic provider in LLM configuration.
|
|
1015
1023
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-model",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.6",
|
|
4
4
|
"description": "GoodData Model definitions used by UI components and Backend SPI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"oxlint-tsgolint": "0.15.0",
|
|
58
58
|
"typescript": "5.9.3",
|
|
59
59
|
"vitest": "4.1.8",
|
|
60
|
-
"@gooddata/oxlint-config": "11.40.0-alpha.
|
|
61
|
-
"@gooddata/eslint-config": "11.40.0-alpha.
|
|
60
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.6",
|
|
61
|
+
"@gooddata/eslint-config": "11.40.0-alpha.6"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"_phase:build": "npm run build",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
"dep-cruiser": "depcruise --validate .dependency-cruiser.js --output-type err-long src/",
|
|
73
73
|
"format-check": "oxfmt --check .",
|
|
74
74
|
"format-write": "oxfmt .",
|
|
75
|
-
"lint": "oxlint . --
|
|
76
|
-
"lint-fix": "oxlint . --
|
|
75
|
+
"lint": "oxlint . --quiet && eslint .",
|
|
76
|
+
"lint-fix": "oxlint . --quiet --fix && eslint . --fix",
|
|
77
77
|
"test": "vitest watch",
|
|
78
78
|
"test-once": "vitest run",
|
|
79
79
|
"validate": "npm run lint && npm run dep-cruiser && npm run format-check",
|