@gooddata/sdk-backend-tiger 11.40.0-alpha.4 → 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 +4 -0
- package/esm/backend/uiFeatures.d.ts +12 -0
- package/esm/backend/uiFeatures.js +12 -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,8 +139,11 @@ 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),
|
|
146
|
+
...loadFeature(features, TigerFeaturesNames.EnableGenAiDashboardSummarySkill, "enableGenAiDashboardSummarySkill", "BOOLEAN", FeatureFlagsValues.enableGenAiDashboardSummarySkill),
|
|
144
147
|
...loadFeature(features, TigerFeaturesNames.EnableGenAiAgenticDataShareOptOut, "enableGenAiAgenticDataShareOptOut", "BOOLEAN", FeatureFlagsValues.enableGenAiAgenticDataShareOptOut),
|
|
145
148
|
...loadFeature(features, TigerFeaturesNames.AIChatSearchLimit, "aiChatSearchLimit", "NUMBER", FeatureFlagsValues.aiChatSearchLimit),
|
|
146
149
|
...loadFeature(features, TigerFeaturesNames.EnableKDEmptyDateValuesFilter, "enableKDEmptyDateValuesFilter", "BOOLEAN", FeatureFlagsValues.enableKDEmptyDateValuesFilter),
|
|
@@ -169,6 +172,7 @@ export function mapFeatures(features) {
|
|
|
169
172
|
...loadFeature(features, TigerFeaturesNames.EnableUserDataFiltersUi, "enableUserDataFiltersUi", "BOOLEAN", FeatureFlagsValues.enableUserDataFiltersUi),
|
|
170
173
|
...loadFeature(features, TigerFeaturesNames.EnableEnhancedInsightPicker, "enableEnhancedInsightPicker", "BOOLEAN", FeatureFlagsValues.enableEnhancedInsightPicker),
|
|
171
174
|
...loadFeature(features, TigerFeaturesNames.EnableMetricEditorRemoteModule, "enableShellApplication_metricEditor", "BOOLEAN", FeatureFlagsValues.enableShellApplication_metricEditor),
|
|
175
|
+
...loadFeature(features, TigerFeaturesNames.EnableAnalyticalDesignerRemoteModule, "enableShellApplication_analyticalDesigner", "BOOLEAN", FeatureFlagsValues.enableShellApplication_analyticalDesigner),
|
|
172
176
|
...loadFeature(features, TigerFeaturesNames.EnableDashboardSidebarResize, "enableDashboardSidebarResize", "BOOLEAN", FeatureFlagsValues.enableDashboardSidebarResize),
|
|
173
177
|
};
|
|
174
178
|
}
|
|
@@ -138,8 +138,11 @@ 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",
|
|
145
|
+
EnableGenAiDashboardSummarySkill = "enableGenAiDashboardSummarySkill",
|
|
143
146
|
AIChatSearchLimit = "aiChatSearchLimit",
|
|
144
147
|
EnableKDEmptyDateValuesFilter = "enableKDEmptyDateValuesFilter",
|
|
145
148
|
EnableRichTextWidgetFilterConfiguration = "enableRichTextWidgetFilterConfiguration",
|
|
@@ -170,6 +173,7 @@ export declare enum TigerFeaturesNames {
|
|
|
170
173
|
EnableAiLlmAnthropicProvider = "enableAiLlmAnthropicProvider",
|
|
171
174
|
EnableRadarChart = "enableRadarChart",
|
|
172
175
|
EnableMetricEditorRemoteModule = "enableShellApplication_metricEditor",
|
|
176
|
+
EnableAnalyticalDesignerRemoteModule = "enableShellApplication_analyticalDesigner",
|
|
173
177
|
EnableDashboardSidebarResize = "enableDashboardSidebarResize"
|
|
174
178
|
}
|
|
175
179
|
export type ITigerFeatureFlags = {
|
|
@@ -307,6 +311,8 @@ export type ITigerFeatureFlags = {
|
|
|
307
311
|
enableAIKnowledge: (typeof FeatureFlagsValues)["enableAIKnowledge"][number];
|
|
308
312
|
enableAiAgenticSuggestions: (typeof FeatureFlagsValues)["enableAiAgenticSuggestions"][number];
|
|
309
313
|
enableAiAgenticMultiConversations: (typeof FeatureFlagsValues)["enableAiAgenticMultiConversations"][number];
|
|
314
|
+
enableGenAiAgentSwitching: (typeof FeatureFlagsValues)["enableGenAiAgentSwitching"][number];
|
|
315
|
+
enableGenAiObservability: (typeof FeatureFlagsValues)["enableGenAiObservability"][number];
|
|
310
316
|
enableGenAIReasoningVisibility: (typeof FeatureFlagsValues)["enableGenAIReasoningVisibility"][number];
|
|
311
317
|
aiChatSearchLimit: (typeof FeatureFlagsValues)["aiChatSearchLimit"][number];
|
|
312
318
|
enableKDEmptyDateValuesFilter: (typeof FeatureFlagsValues)["enableKDEmptyDateValuesFilter"][number];
|
|
@@ -334,11 +340,13 @@ export type ITigerFeatureFlags = {
|
|
|
334
340
|
enableAiAgenticConversations: (typeof FeatureFlagsValues)["enableAiAgenticConversations"][number];
|
|
335
341
|
enableGenAiAgenticDataShareOptOut: (typeof FeatureFlagsValues)["enableGenAiAgenticDataShareOptOut"][number];
|
|
336
342
|
enableGenAiVisualizationSummarySkill: (typeof FeatureFlagsValues)["enableGenAiVisualizationSummarySkill"][number];
|
|
343
|
+
enableGenAiDashboardSummarySkill: (typeof FeatureFlagsValues)["enableGenAiDashboardSummarySkill"][number];
|
|
337
344
|
enableAutomationTrigger: (typeof FeatureFlagsValues)["enableAutomationTrigger"][number];
|
|
338
345
|
enableUserDataFiltersUi: (typeof FeatureFlagsValues)["enableUserDataFiltersUi"][number];
|
|
339
346
|
enableEnhancedInsightPicker: (typeof FeatureFlagsValues)["enableEnhancedInsightPicker"][number];
|
|
340
347
|
enableAiLlmAnthropicProvider: (typeof FeatureFlagsValues)["enableAiLlmAnthropicProvider"][number];
|
|
341
348
|
enableShellApplication_metricEditor: (typeof FeatureFlagsValues)["enableShellApplication_metricEditor"][number];
|
|
349
|
+
enableShellApplication_analyticalDesigner: (typeof FeatureFlagsValues)["enableShellApplication_analyticalDesigner"][number];
|
|
342
350
|
enableDashboardSidebarResize: (typeof FeatureFlagsValues)["enableDashboardSidebarResize"][number];
|
|
343
351
|
};
|
|
344
352
|
export declare const DefaultFeatureFlags: ITigerFeatureFlags;
|
|
@@ -478,6 +486,8 @@ export declare const FeatureFlagsValues: {
|
|
|
478
486
|
enableAIKnowledge: readonly [false, true];
|
|
479
487
|
enableAiAgenticSuggestions: readonly [true, false];
|
|
480
488
|
enableAiAgenticMultiConversations: readonly [true, false];
|
|
489
|
+
enableGenAiAgentSwitching: readonly [true, false];
|
|
490
|
+
enableGenAiObservability: readonly [true, false];
|
|
481
491
|
enableGenAIReasoningVisibility: readonly [false, true];
|
|
482
492
|
aiChatSearchLimit: readonly [undefined, number];
|
|
483
493
|
enableKDEmptyDateValuesFilter: readonly [true, false];
|
|
@@ -505,10 +515,12 @@ export declare const FeatureFlagsValues: {
|
|
|
505
515
|
enableAiAgenticConversations: readonly [true, false];
|
|
506
516
|
enableGenAiAgenticDataShareOptOut: readonly [true, false];
|
|
507
517
|
enableGenAiVisualizationSummarySkill: readonly [false, true];
|
|
518
|
+
enableGenAiDashboardSummarySkill: readonly [false, true];
|
|
508
519
|
enableAutomationTrigger: readonly [true, false];
|
|
509
520
|
enableUserDataFiltersUi: readonly [true, false];
|
|
510
521
|
enableEnhancedInsightPicker: readonly [true, false];
|
|
511
522
|
enableAiLlmAnthropicProvider: readonly [true, false];
|
|
512
523
|
enableShellApplication_metricEditor: readonly [true, false];
|
|
524
|
+
enableShellApplication_analyticalDesigner: readonly [true, false];
|
|
513
525
|
enableDashboardSidebarResize: readonly [true, false];
|
|
514
526
|
};
|
|
@@ -142,8 +142,11 @@ 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";
|
|
149
|
+
TigerFeaturesNames["EnableGenAiDashboardSummarySkill"] = "enableGenAiDashboardSummarySkill";
|
|
147
150
|
TigerFeaturesNames["AIChatSearchLimit"] = "aiChatSearchLimit";
|
|
148
151
|
TigerFeaturesNames["EnableKDEmptyDateValuesFilter"] = "enableKDEmptyDateValuesFilter";
|
|
149
152
|
TigerFeaturesNames["EnableRichTextWidgetFilterConfiguration"] = "enableRichTextWidgetFilterConfiguration";
|
|
@@ -174,6 +177,7 @@ var TigerFeaturesNames;
|
|
|
174
177
|
TigerFeaturesNames["EnableAiLlmAnthropicProvider"] = "enableAiLlmAnthropicProvider";
|
|
175
178
|
TigerFeaturesNames["EnableRadarChart"] = "enableRadarChart";
|
|
176
179
|
TigerFeaturesNames["EnableMetricEditorRemoteModule"] = "enableShellApplication_metricEditor";
|
|
180
|
+
TigerFeaturesNames["EnableAnalyticalDesignerRemoteModule"] = "enableShellApplication_analyticalDesigner";
|
|
177
181
|
TigerFeaturesNames["EnableDashboardSidebarResize"] = "enableDashboardSidebarResize";
|
|
178
182
|
})(TigerFeaturesNames || (TigerFeaturesNames = {}));
|
|
179
183
|
export const DefaultFeatureFlags = {
|
|
@@ -311,6 +315,8 @@ export const DefaultFeatureFlags = {
|
|
|
311
315
|
enableAIKnowledge: false,
|
|
312
316
|
enableAiAgenticSuggestions: false,
|
|
313
317
|
enableAiAgenticMultiConversations: false,
|
|
318
|
+
enableGenAiAgentSwitching: false,
|
|
319
|
+
enableGenAiObservability: false,
|
|
314
320
|
enableGenAIReasoningVisibility: false,
|
|
315
321
|
aiChatSearchLimit: undefined,
|
|
316
322
|
enableKDEmptyDateValuesFilter: true,
|
|
@@ -338,11 +344,13 @@ export const DefaultFeatureFlags = {
|
|
|
338
344
|
enableAiAgenticConversations: false,
|
|
339
345
|
enableGenAiAgenticDataShareOptOut: false,
|
|
340
346
|
enableGenAiVisualizationSummarySkill: false,
|
|
347
|
+
enableGenAiDashboardSummarySkill: false,
|
|
341
348
|
enableAutomationTrigger: false,
|
|
342
349
|
enableUserDataFiltersUi: false,
|
|
343
350
|
enableEnhancedInsightPicker: false,
|
|
344
351
|
enableAiLlmAnthropicProvider: false,
|
|
345
352
|
enableShellApplication_metricEditor: false,
|
|
353
|
+
enableShellApplication_analyticalDesigner: false,
|
|
346
354
|
enableDashboardSidebarResize: false,
|
|
347
355
|
};
|
|
348
356
|
export const FeatureFlagsValues = {
|
|
@@ -481,6 +489,8 @@ export const FeatureFlagsValues = {
|
|
|
481
489
|
enableAIKnowledge: [false, true],
|
|
482
490
|
enableAiAgenticSuggestions: [true, false],
|
|
483
491
|
enableAiAgenticMultiConversations: [true, false],
|
|
492
|
+
enableGenAiAgentSwitching: [true, false],
|
|
493
|
+
enableGenAiObservability: [true, false],
|
|
484
494
|
enableGenAIReasoningVisibility: [false, true],
|
|
485
495
|
aiChatSearchLimit: [undefined, {}],
|
|
486
496
|
enableKDEmptyDateValuesFilter: [true, false],
|
|
@@ -508,10 +518,12 @@ export const FeatureFlagsValues = {
|
|
|
508
518
|
enableAiAgenticConversations: [true, false],
|
|
509
519
|
enableGenAiAgenticDataShareOptOut: [true, false],
|
|
510
520
|
enableGenAiVisualizationSummarySkill: [false, true],
|
|
521
|
+
enableGenAiDashboardSummarySkill: [false, true],
|
|
511
522
|
enableAutomationTrigger: [true, false],
|
|
512
523
|
enableUserDataFiltersUi: [true, false],
|
|
513
524
|
enableEnhancedInsightPicker: [true, false],
|
|
514
525
|
enableAiLlmAnthropicProvider: [true, false],
|
|
515
526
|
enableShellApplication_metricEditor: [true, false],
|
|
527
|
+
enableShellApplication_analyticalDesigner: [true, false],
|
|
516
528
|
enableDashboardSidebarResize: [true, false],
|
|
517
529
|
};
|
|
@@ -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/
|
|
37
|
-
"@gooddata/sdk-backend-
|
|
38
|
-
"@gooddata/
|
|
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",
|