@gooddata/sdk-backend-tiger 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/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/backend/features/feature.js +2 -0
- package/esm/backend/uiFeatures.d.ts +6 -0
- package/esm/backend/uiFeatures.js +6 -0
- package/esm/backend/workspace/genAI/ChatConversations.js +1 -0
- package/esm/backend/workspace/genAI/ChatThread.js +1 -0
- package/esm/convertors/fromBackend/DateFilterConfigurationConverter.d.ts +1 -0
- package/esm/convertors/fromBackend/DateFilterConfigurationConverter.js +15 -2
- package/package.json +14 -14
package/esm/__version.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.40.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.40.0-alpha.6";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/sdk-backend-tiger";
|
package/esm/__version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "11.40.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.40.0-alpha.6";
|
|
4
4
|
export const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/sdk-backend-tiger";
|
|
@@ -139,6 +139,8 @@ export function mapFeatures(features) {
|
|
|
139
139
|
...loadFeature(features, TigerFeaturesNames.EnableGenAIReasoningVisibility, "enableGenAIReasoningVisibility", "BOOLEAN", FeatureFlagsValues.enableGenAIReasoningVisibility),
|
|
140
140
|
...loadFeature(features, TigerFeaturesNames.EnableAiAgenticConversations, "enableAiAgenticConversations", "BOOLEAN", FeatureFlagsValues.enableAiAgenticConversations),
|
|
141
141
|
...loadFeature(features, TigerFeaturesNames.EnableAiAgenticMultiConversations, "enableAiAgenticMultiConversations", "BOOLEAN", FeatureFlagsValues.enableAiAgenticMultiConversations),
|
|
142
|
+
...loadFeature(features, TigerFeaturesNames.EnableGenAiAgentSwitching, "enableGenAiAgentSwitching", "BOOLEAN", FeatureFlagsValues.enableGenAiAgentSwitching),
|
|
143
|
+
...loadFeature(features, TigerFeaturesNames.EnableGenAiObservability, "enableGenAiObservability", "BOOLEAN", FeatureFlagsValues.enableGenAiObservability),
|
|
142
144
|
...loadFeature(features, TigerFeaturesNames.EnableAiLlmAnthropicProvider, "enableAiLlmAnthropicProvider", "BOOLEAN", FeatureFlagsValues.enableAiLlmAnthropicProvider),
|
|
143
145
|
...loadFeature(features, TigerFeaturesNames.EnableGenAiVisualizationSummarySkill, "enableGenAiVisualizationSummarySkill", "BOOLEAN", FeatureFlagsValues.enableGenAiVisualizationSummarySkill),
|
|
144
146
|
...loadFeature(features, TigerFeaturesNames.EnableGenAiDashboardSummarySkill, "enableGenAiDashboardSummarySkill", "BOOLEAN", FeatureFlagsValues.enableGenAiDashboardSummarySkill),
|
|
@@ -138,6 +138,8 @@ export declare enum TigerFeaturesNames {
|
|
|
138
138
|
EnableAiAgenticSuggestions = "enableAiAgenticSuggestions",
|
|
139
139
|
EnableGenAIReasoningVisibility = "enableGenAIReasoningVisibility",
|
|
140
140
|
EnableAiAgenticConversations = "enableAiAgenticConversations",
|
|
141
|
+
EnableGenAiAgentSwitching = "enableGenAiAgentSwitching",
|
|
142
|
+
EnableGenAiObservability = "enableGenAiObservability",
|
|
141
143
|
EnableGenAiAgenticDataShareOptOut = "enableGenAiAgenticDataShareOptOut",
|
|
142
144
|
EnableGenAiVisualizationSummarySkill = "enableGenAiVisualizationSummarySkill",
|
|
143
145
|
EnableGenAiDashboardSummarySkill = "enableGenAiDashboardSummarySkill",
|
|
@@ -309,6 +311,8 @@ export type ITigerFeatureFlags = {
|
|
|
309
311
|
enableAIKnowledge: (typeof FeatureFlagsValues)["enableAIKnowledge"][number];
|
|
310
312
|
enableAiAgenticSuggestions: (typeof FeatureFlagsValues)["enableAiAgenticSuggestions"][number];
|
|
311
313
|
enableAiAgenticMultiConversations: (typeof FeatureFlagsValues)["enableAiAgenticMultiConversations"][number];
|
|
314
|
+
enableGenAiAgentSwitching: (typeof FeatureFlagsValues)["enableGenAiAgentSwitching"][number];
|
|
315
|
+
enableGenAiObservability: (typeof FeatureFlagsValues)["enableGenAiObservability"][number];
|
|
312
316
|
enableGenAIReasoningVisibility: (typeof FeatureFlagsValues)["enableGenAIReasoningVisibility"][number];
|
|
313
317
|
aiChatSearchLimit: (typeof FeatureFlagsValues)["aiChatSearchLimit"][number];
|
|
314
318
|
enableKDEmptyDateValuesFilter: (typeof FeatureFlagsValues)["enableKDEmptyDateValuesFilter"][number];
|
|
@@ -482,6 +486,8 @@ export declare const FeatureFlagsValues: {
|
|
|
482
486
|
enableAIKnowledge: readonly [false, true];
|
|
483
487
|
enableAiAgenticSuggestions: readonly [true, false];
|
|
484
488
|
enableAiAgenticMultiConversations: readonly [true, false];
|
|
489
|
+
enableGenAiAgentSwitching: readonly [true, false];
|
|
490
|
+
enableGenAiObservability: readonly [true, false];
|
|
485
491
|
enableGenAIReasoningVisibility: readonly [false, true];
|
|
486
492
|
aiChatSearchLimit: readonly [undefined, number];
|
|
487
493
|
enableKDEmptyDateValuesFilter: readonly [true, false];
|
|
@@ -142,6 +142,8 @@ var TigerFeaturesNames;
|
|
|
142
142
|
TigerFeaturesNames["EnableAiAgenticSuggestions"] = "enableAiAgenticSuggestions";
|
|
143
143
|
TigerFeaturesNames["EnableGenAIReasoningVisibility"] = "enableGenAIReasoningVisibility";
|
|
144
144
|
TigerFeaturesNames["EnableAiAgenticConversations"] = "enableAiAgenticConversations";
|
|
145
|
+
TigerFeaturesNames["EnableGenAiAgentSwitching"] = "enableGenAiAgentSwitching";
|
|
146
|
+
TigerFeaturesNames["EnableGenAiObservability"] = "enableGenAiObservability";
|
|
145
147
|
TigerFeaturesNames["EnableGenAiAgenticDataShareOptOut"] = "enableGenAiAgenticDataShareOptOut";
|
|
146
148
|
TigerFeaturesNames["EnableGenAiVisualizationSummarySkill"] = "enableGenAiVisualizationSummarySkill";
|
|
147
149
|
TigerFeaturesNames["EnableGenAiDashboardSummarySkill"] = "enableGenAiDashboardSummarySkill";
|
|
@@ -313,6 +315,8 @@ export const DefaultFeatureFlags = {
|
|
|
313
315
|
enableAIKnowledge: false,
|
|
314
316
|
enableAiAgenticSuggestions: false,
|
|
315
317
|
enableAiAgenticMultiConversations: false,
|
|
318
|
+
enableGenAiAgentSwitching: false,
|
|
319
|
+
enableGenAiObservability: false,
|
|
316
320
|
enableGenAIReasoningVisibility: false,
|
|
317
321
|
aiChatSearchLimit: undefined,
|
|
318
322
|
enableKDEmptyDateValuesFilter: true,
|
|
@@ -485,6 +489,8 @@ export const FeatureFlagsValues = {
|
|
|
485
489
|
enableAIKnowledge: [false, true],
|
|
486
490
|
enableAiAgenticSuggestions: [true, false],
|
|
487
491
|
enableAiAgenticMultiConversations: [true, false],
|
|
492
|
+
enableGenAiAgentSwitching: [true, false],
|
|
493
|
+
enableGenAiObservability: [true, false],
|
|
488
494
|
enableGenAIReasoningVisibility: [false, true],
|
|
489
495
|
aiChatSearchLimit: [undefined, {}],
|
|
490
496
|
enableKDEmptyDateValuesFilter: [true, false],
|
|
@@ -3,6 +3,7 @@ export declare const DefaultDateFilterConfig: IDateFilterConfig;
|
|
|
3
3
|
export interface IWrappedDateFilterConfig {
|
|
4
4
|
selectedOption: string;
|
|
5
5
|
allTime?: IDateFilterBase;
|
|
6
|
+
emptyValues?: IDateFilterBase;
|
|
6
7
|
absoluteForm?: IDateFilterBase;
|
|
7
8
|
relativeForm?: IDateFilterRelativeForm;
|
|
8
9
|
absolutePresets?: IDateFilterAbsolutePreset[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// (C) 2024-
|
|
1
|
+
// (C) 2024-2026 GoodData Corporation
|
|
2
2
|
import { idRef, isDateFilterGranularity, } from "@gooddata/sdk-model";
|
|
3
3
|
export const DefaultDateFilterConfig = {
|
|
4
4
|
ref: idRef("defaultDateFilterProjectConfig"),
|
|
@@ -9,6 +9,12 @@ export const DefaultDateFilterConfig = {
|
|
|
9
9
|
name: "",
|
|
10
10
|
visible: true,
|
|
11
11
|
},
|
|
12
|
+
emptyValues: {
|
|
13
|
+
localIdentifier: "EMPTY_VALUES",
|
|
14
|
+
type: "emptyValues",
|
|
15
|
+
name: "",
|
|
16
|
+
visible: true,
|
|
17
|
+
},
|
|
12
18
|
absoluteForm: {
|
|
13
19
|
localIdentifier: "ABSOLUTE_FORM",
|
|
14
20
|
type: "absoluteForm",
|
|
@@ -309,6 +315,12 @@ const convertAllTime = (allTime) => {
|
|
|
309
315
|
...allTime,
|
|
310
316
|
};
|
|
311
317
|
};
|
|
318
|
+
const convertEmptyValues = (emptyValues) => {
|
|
319
|
+
return {
|
|
320
|
+
type: "emptyValues",
|
|
321
|
+
...emptyValues,
|
|
322
|
+
};
|
|
323
|
+
};
|
|
312
324
|
const convertAbsoluteForm = (absoluteForm) => {
|
|
313
325
|
return {
|
|
314
326
|
type: "absoluteForm",
|
|
@@ -343,11 +355,12 @@ export const convertDateFilterConfig = (dateFilterConfig) => {
|
|
|
343
355
|
if (!dateFilterConfig) {
|
|
344
356
|
return DefaultDateFilterConfig;
|
|
345
357
|
}
|
|
346
|
-
const { selectedOption, allTime, absoluteForm, relativeForm, absolutePresets, relativePresets } = dateFilterConfig;
|
|
358
|
+
const { selectedOption, allTime, emptyValues, absoluteForm, relativeForm, absolutePresets, relativePresets, } = dateFilterConfig;
|
|
347
359
|
return {
|
|
348
360
|
ref: idRef("defaultDateFilterProjectConfig"),
|
|
349
361
|
selectedOption,
|
|
350
362
|
allTime: allTime && convertAllTime(allTime),
|
|
363
|
+
emptyValues: emptyValues && convertEmptyValues(emptyValues),
|
|
351
364
|
absoluteForm: absoluteForm && convertAbsoluteForm(absoluteForm),
|
|
352
365
|
relativeForm: relativeForm && convertRelativeForm(relativeForm),
|
|
353
366
|
absolutePresets: absolutePresets?.map(convertAbsolutePreset),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-tiger",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.6",
|
|
4
4
|
"description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"exports": "./esm/index.js",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@gooddata/emailjs-mime-codec-new": "3.0.2",
|
|
25
|
-
"axios": "1.
|
|
25
|
+
"axios": "1.16.1",
|
|
26
26
|
"date-fns": "4.1.0",
|
|
27
27
|
"date-fns-tz": "^3.2.0",
|
|
28
28
|
"eventsource-parser": "~3.0.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"ts-invariant": "0.10.3",
|
|
34
34
|
"tslib": "2.8.1",
|
|
35
35
|
"uuid": "11.1.0",
|
|
36
|
-
"@gooddata/api-client-tiger": "11.40.0-alpha.
|
|
37
|
-
"@gooddata/sdk-backend-base": "11.40.0-alpha.
|
|
38
|
-
"@gooddata/sdk-
|
|
39
|
-
"@gooddata/sdk-
|
|
40
|
-
"@gooddata/sdk-model": "11.40.0-alpha.
|
|
41
|
-
"@gooddata/util": "11.40.0-alpha.
|
|
36
|
+
"@gooddata/api-client-tiger": "11.40.0-alpha.6",
|
|
37
|
+
"@gooddata/sdk-backend-base": "11.40.0-alpha.6",
|
|
38
|
+
"@gooddata/sdk-code-convertors": "11.40.0-alpha.6",
|
|
39
|
+
"@gooddata/sdk-backend-spi": "11.40.0-alpha.6",
|
|
40
|
+
"@gooddata/sdk-model": "11.40.0-alpha.6",
|
|
41
|
+
"@gooddata/util": "11.40.0-alpha.6"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@gooddata/fixtures": "3.3.12",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"oxlint-tsgolint": "0.15.0",
|
|
66
66
|
"typescript": "5.9.3",
|
|
67
67
|
"vitest": "4.1.8",
|
|
68
|
-
"@gooddata/catalog-export": "11.40.0-alpha.
|
|
69
|
-
"@gooddata/eslint-config": "11.40.0-alpha.
|
|
70
|
-
"@gooddata/
|
|
71
|
-
"@gooddata/
|
|
68
|
+
"@gooddata/catalog-export": "11.40.0-alpha.6",
|
|
69
|
+
"@gooddata/eslint-config": "11.40.0-alpha.6",
|
|
70
|
+
"@gooddata/reference-workspace": "11.40.0-alpha.6",
|
|
71
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.6"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"_phase:build": "npm run build",
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
"isolated-test-rec": "GD_TIGER_REC=true vitest --config vitest.integrated.config.ts run",
|
|
92
92
|
"isolated-test-rec-snapshots": "GD_TIGER_REC=true vitest -u --config vitest.integrated.config.ts run",
|
|
93
93
|
"isolated-test-run": "vitest --config vitest.integrated.config.ts run",
|
|
94
|
-
"lint": "oxlint . --
|
|
95
|
-
"lint-fix": "oxlint . --
|
|
94
|
+
"lint": "oxlint . --quiet && eslint .",
|
|
95
|
+
"lint-fix": "oxlint . --quiet --fix && eslint . --fix",
|
|
96
96
|
"refresh-md": "./scripts/refresh-md.sh && npm run build",
|
|
97
97
|
"test": "vitest watch",
|
|
98
98
|
"test-isolated-ci": "./scripts/isolated-test.sh",
|