@gooddata/api-client-tiger 11.36.0-alpha.3 → 11.36.0-alpha.7
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/api-client-tiger.d.ts +51 -8
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +23 -8
- package/esm/gd-tiger-model/AnalyticalDashboardModelV3.d.ts +18 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV3.js +8 -0
- package/esm/gd-tiger-model/index.d.ts +5 -0
- package/esm/gd-tiger-model/index.js +6 -0
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +6 -6
package/esm/__version.d.ts
CHANGED
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.36.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.36.0-alpha.7";
|
|
4
4
|
export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
@@ -11986,6 +11986,7 @@ declare namespace AnalyticalDashboardModelV2 {
|
|
|
11986
11986
|
isDashboardTab,
|
|
11987
11987
|
IDashboardDateFilterConfigItem,
|
|
11988
11988
|
IDashboardTab,
|
|
11989
|
+
IAnalyticalDashboardCommonProps,
|
|
11989
11990
|
IAnalyticalDashboard_2 as IAnalyticalDashboard,
|
|
11990
11991
|
IFilterContext_2 as IFilterContext,
|
|
11991
11992
|
IFilterContextWithTab,
|
|
@@ -11995,6 +11996,14 @@ declare namespace AnalyticalDashboardModelV2 {
|
|
|
11995
11996
|
}
|
|
11996
11997
|
export { AnalyticalDashboardModelV2 }
|
|
11997
11998
|
|
|
11999
|
+
declare namespace AnalyticalDashboardModelV3 {
|
|
12000
|
+
export {
|
|
12001
|
+
isAnalyticalDashboard_3 as isAnalyticalDashboard,
|
|
12002
|
+
IAnalyticalDashboard_3 as IAnalyticalDashboard
|
|
12003
|
+
}
|
|
12004
|
+
}
|
|
12005
|
+
export { AnalyticalDashboardModelV3 }
|
|
12006
|
+
|
|
11998
12007
|
/**
|
|
11999
12008
|
* AnalyticsModelApi - object-oriented interface
|
|
12000
12009
|
* @export
|
|
@@ -61222,7 +61231,7 @@ declare interface IAnalyticalDashboard {
|
|
|
61222
61231
|
/**
|
|
61223
61232
|
* @public
|
|
61224
61233
|
*/
|
|
61225
|
-
declare interface IAnalyticalDashboard_2 {
|
|
61234
|
+
declare interface IAnalyticalDashboard_2 extends IAnalyticalDashboardCommonProps {
|
|
61226
61235
|
version: "2";
|
|
61227
61236
|
layout?: ITigerDashboardLayout;
|
|
61228
61237
|
filterContextRef?: ObjRef;
|
|
@@ -61236,13 +61245,6 @@ declare interface IAnalyticalDashboard_2 {
|
|
|
61236
61245
|
* @alpha
|
|
61237
61246
|
*/
|
|
61238
61247
|
parameters?: ITigerDashboardParameter[];
|
|
61239
|
-
plugins?: IDashboardPluginLink[];
|
|
61240
|
-
disableCrossFiltering?: boolean;
|
|
61241
|
-
disableUserFilterReset?: boolean;
|
|
61242
|
-
disableUserFilterSave?: boolean;
|
|
61243
|
-
disableFilterViews?: boolean;
|
|
61244
|
-
evaluationFrequency?: string;
|
|
61245
|
-
sectionHeadersDateDataSet?: ObjRef;
|
|
61246
61248
|
/**
|
|
61247
61249
|
* Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
|
|
61248
61250
|
* Each tab has its own layout, filter context and filter configs.
|
|
@@ -61252,6 +61254,36 @@ declare interface IAnalyticalDashboard_2 {
|
|
|
61252
61254
|
tabs?: ITigerDashboardTab[];
|
|
61253
61255
|
}
|
|
61254
61256
|
|
|
61257
|
+
/**
|
|
61258
|
+
* V3 analytical dashboard. Tabs are the sole source of layout, filter context and filter
|
|
61259
|
+
* configurations — root-level `layout`, `dateFilterConfig`, `dateFilterConfigs`,
|
|
61260
|
+
* `attributeFilterConfigs`, `measureValueFilterConfigs` and `parameters` are intentionally
|
|
61261
|
+
* absent. Use V2 if backward compatibility with older SDK readers is required.
|
|
61262
|
+
*
|
|
61263
|
+
* @alpha
|
|
61264
|
+
*/
|
|
61265
|
+
declare interface IAnalyticalDashboard_3 extends IAnalyticalDashboardCommonProps {
|
|
61266
|
+
version: "3";
|
|
61267
|
+
tabs: ITigerDashboardTab[];
|
|
61268
|
+
}
|
|
61269
|
+
|
|
61270
|
+
/**
|
|
61271
|
+
* Common analytical-dashboard properties shared across V2 and V3 model versions —
|
|
61272
|
+
* plugins, dashboard-level toggles, evaluation frequency, and the section-headers
|
|
61273
|
+
* date dataset. Version-specific shapes extend this interface.
|
|
61274
|
+
*
|
|
61275
|
+
* @public
|
|
61276
|
+
*/
|
|
61277
|
+
declare interface IAnalyticalDashboardCommonProps {
|
|
61278
|
+
plugins?: IDashboardPluginLink[];
|
|
61279
|
+
disableCrossFiltering?: boolean;
|
|
61280
|
+
disableUserFilterReset?: boolean;
|
|
61281
|
+
disableUserFilterSave?: boolean;
|
|
61282
|
+
disableFilterViews?: boolean;
|
|
61283
|
+
evaluationFrequency?: string;
|
|
61284
|
+
sectionHeadersDateDataSet?: ObjRef;
|
|
61285
|
+
}
|
|
61286
|
+
|
|
61255
61287
|
/**
|
|
61256
61288
|
* Attribute format used in executions
|
|
61257
61289
|
*
|
|
@@ -62314,6 +62346,12 @@ declare interface IFilterContext_2 {
|
|
|
62314
62346
|
*/
|
|
62315
62347
|
declare interface IFilterContextWithTab extends IFilterContext_2 {
|
|
62316
62348
|
tabLocalIdentifier?: string;
|
|
62349
|
+
/**
|
|
62350
|
+
* Dashboard parameter overrides captured alongside the filter context.
|
|
62351
|
+
*
|
|
62352
|
+
* @alpha
|
|
62353
|
+
*/
|
|
62354
|
+
parameters?: ITigerDashboardParameter[];
|
|
62317
62355
|
}
|
|
62318
62356
|
|
|
62319
62357
|
export declare interface ILiveFeatures {
|
|
@@ -62874,6 +62912,11 @@ declare function isAnalyticalDashboard(dashboard: unknown): dashboard is IAnalyt
|
|
|
62874
62912
|
*/
|
|
62875
62913
|
declare function isAnalyticalDashboard_2(dashboard: unknown): dashboard is IAnalyticalDashboard_2;
|
|
62876
62914
|
|
|
62915
|
+
/**
|
|
62916
|
+
* @alpha
|
|
62917
|
+
*/
|
|
62918
|
+
declare function isAnalyticalDashboard_3(dashboard: unknown): dashboard is IAnalyticalDashboard_3;
|
|
62919
|
+
|
|
62877
62920
|
/**
|
|
62878
62921
|
* @public
|
|
62879
62922
|
*/
|
|
@@ -16,10 +16,26 @@ export interface IDashboardDateFilterConfigItem {
|
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
18
|
export type IDashboardTab = ITigerDashboardTab;
|
|
19
|
+
/**
|
|
20
|
+
* Common analytical-dashboard properties shared across V2 and V3 model versions —
|
|
21
|
+
* plugins, dashboard-level toggles, evaluation frequency, and the section-headers
|
|
22
|
+
* date dataset. Version-specific shapes extend this interface.
|
|
23
|
+
*
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface IAnalyticalDashboardCommonProps {
|
|
27
|
+
plugins?: IDashboardPluginLink[];
|
|
28
|
+
disableCrossFiltering?: boolean;
|
|
29
|
+
disableUserFilterReset?: boolean;
|
|
30
|
+
disableUserFilterSave?: boolean;
|
|
31
|
+
disableFilterViews?: boolean;
|
|
32
|
+
evaluationFrequency?: string;
|
|
33
|
+
sectionHeadersDateDataSet?: ObjRef;
|
|
34
|
+
}
|
|
19
35
|
/**
|
|
20
36
|
* @public
|
|
21
37
|
*/
|
|
22
|
-
export interface IAnalyticalDashboard {
|
|
38
|
+
export interface IAnalyticalDashboard extends IAnalyticalDashboardCommonProps {
|
|
23
39
|
version: "2";
|
|
24
40
|
layout?: ITigerDashboardLayout;
|
|
25
41
|
filterContextRef?: ObjRef;
|
|
@@ -33,13 +49,6 @@ export interface IAnalyticalDashboard {
|
|
|
33
49
|
* @alpha
|
|
34
50
|
*/
|
|
35
51
|
parameters?: ITigerDashboardParameter[];
|
|
36
|
-
plugins?: IDashboardPluginLink[];
|
|
37
|
-
disableCrossFiltering?: boolean;
|
|
38
|
-
disableUserFilterReset?: boolean;
|
|
39
|
-
disableUserFilterSave?: boolean;
|
|
40
|
-
disableFilterViews?: boolean;
|
|
41
|
-
evaluationFrequency?: string;
|
|
42
|
-
sectionHeadersDateDataSet?: ObjRef;
|
|
43
52
|
/**
|
|
44
53
|
* Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
|
|
45
54
|
* Each tab has its own layout, filter context and filter configs.
|
|
@@ -60,6 +69,12 @@ export interface IFilterContext {
|
|
|
60
69
|
*/
|
|
61
70
|
export interface IFilterContextWithTab extends IFilterContext {
|
|
62
71
|
tabLocalIdentifier?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Dashboard parameter overrides captured alongside the filter context.
|
|
74
|
+
*
|
|
75
|
+
* @alpha
|
|
76
|
+
*/
|
|
77
|
+
parameters?: ITigerDashboardParameter[];
|
|
63
78
|
}
|
|
64
79
|
/**
|
|
65
80
|
* @public
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type IAnalyticalDashboardCommonProps } from "./AnalyticalDashboardModelV2.js";
|
|
2
|
+
import { type ITigerDashboardTab } from "./TigerTypes.js";
|
|
3
|
+
/**
|
|
4
|
+
* V3 analytical dashboard. Tabs are the sole source of layout, filter context and filter
|
|
5
|
+
* configurations — root-level `layout`, `dateFilterConfig`, `dateFilterConfigs`,
|
|
6
|
+
* `attributeFilterConfigs`, `measureValueFilterConfigs` and `parameters` are intentionally
|
|
7
|
+
* absent. Use V2 if backward compatibility with older SDK readers is required.
|
|
8
|
+
*
|
|
9
|
+
* @alpha
|
|
10
|
+
*/
|
|
11
|
+
export interface IAnalyticalDashboard extends IAnalyticalDashboardCommonProps {
|
|
12
|
+
version: "3";
|
|
13
|
+
tabs: ITigerDashboardTab[];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @alpha
|
|
17
|
+
*/
|
|
18
|
+
export declare function isAnalyticalDashboard(dashboard: unknown): dashboard is IAnalyticalDashboard;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as AnalyticalDashboardModelV1 from "./AnalyticalDashboardModelV1.js";
|
|
2
2
|
import * as AnalyticalDashboardModelV2 from "./AnalyticalDashboardModelV2.js";
|
|
3
|
+
import * as AnalyticalDashboardModelV3 from "./AnalyticalDashboardModelV3.js";
|
|
3
4
|
import * as VisualizationObjectModelV1 from "./VisualizationObjectModelV1.js";
|
|
4
5
|
import * as VisualizationObjectModelV2 from "./VisualizationObjectModelV2.js";
|
|
5
6
|
/**
|
|
@@ -10,6 +11,10 @@ export { AnalyticalDashboardModelV1 };
|
|
|
10
11
|
* @public
|
|
11
12
|
*/
|
|
12
13
|
export { AnalyticalDashboardModelV2 };
|
|
14
|
+
/**
|
|
15
|
+
* @alpha
|
|
16
|
+
*/
|
|
17
|
+
export { AnalyticalDashboardModelV3 };
|
|
13
18
|
/**
|
|
14
19
|
* @public
|
|
15
20
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// (C) 2007-2026 GoodData Corporation
|
|
2
2
|
import * as AnalyticalDashboardModelV1 from "./AnalyticalDashboardModelV1.js";
|
|
3
3
|
import * as AnalyticalDashboardModelV2 from "./AnalyticalDashboardModelV2.js";
|
|
4
|
+
import * as AnalyticalDashboardModelV3 from "./AnalyticalDashboardModelV3.js";
|
|
4
5
|
import * as VisualizationObjectModelV1 from "./VisualizationObjectModelV1.js";
|
|
5
6
|
import * as VisualizationObjectModelV2 from "./VisualizationObjectModelV2.js";
|
|
6
7
|
/**
|
|
@@ -13,6 +14,11 @@ export { AnalyticalDashboardModelV1 };
|
|
|
13
14
|
*/
|
|
14
15
|
// oxlint-disable-next-line no-barrel-files/no-barrel-files
|
|
15
16
|
export { AnalyticalDashboardModelV2 };
|
|
17
|
+
/**
|
|
18
|
+
* @alpha
|
|
19
|
+
*/
|
|
20
|
+
// oxlint-disable-next-line no-barrel-files/no-barrel-files
|
|
21
|
+
export { AnalyticalDashboardModelV3 };
|
|
16
22
|
/**
|
|
17
23
|
* @public
|
|
18
24
|
*/
|
package/esm/index.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export { BaseAPI as AiBaseAPI, type RequestArgs as AiRequestArgs } from "./gener
|
|
|
40
40
|
export { tigerGenAIClientFactory } from "./genAI.js";
|
|
41
41
|
export * from "./endpoints/genAI/index.js";
|
|
42
42
|
export type { Configuration as AiConfiguration, ConfigurationParameters as AiConfigurationParameters, } from "./generated/ai-json-api/configuration.js";
|
|
43
|
-
export { VisualizationObjectModelV1, VisualizationObjectModelV2, AnalyticalDashboardModelV1, AnalyticalDashboardModelV2, } from "./gd-tiger-model/index.js";
|
|
43
|
+
export { VisualizationObjectModelV1, VisualizationObjectModelV2, AnalyticalDashboardModelV1, AnalyticalDashboardModelV2, AnalyticalDashboardModelV3, } from "./gd-tiger-model/index.js";
|
|
44
44
|
export type { ITigerAttribute, ITigerAttributeFilterConfig, ITigerAttributeFilterConfigs, ITigerAttributeLocatorItem, ITigerAttributeOrMeasure, ITigerAttributeSortItem, ITigerBucket, ITigerComparisonCondition, ITigerComparisonConditionInCompound, ITigerCompoundCondition, ITigerDashboardArbitraryAttributeFilter, ITigerDashboardAttributeFilterConfig, ITigerDashboardDateFilterConfig, ITigerDashboardMatchAttributeFilter, ITigerDashboardMeasureValueFilter, ITigerDashboardMeasureValueFilterConfig, ITigerDashboardFilterGroupsConfig, ITigerDashboardLayout, ITigerDashboardParameter, ITigerDashboardTab, ITigerFilter, ITigerFilterContextItem, ITigerInsightLayerDefinition, ITigerInsightParameterValue, ITigerMeasure, ITigerSimpleMeasure, ITigerSimpleMeasureDefinition, ITigerArithmeticMeasure, ITigerArithmeticMeasureDefinition, ITigerPopMeasure, ITigerPopMeasureDefinition, ITigerPreviousPeriodMeasure, ITigerPreviousPeriodMeasureDefinition, ITigerTotal, ITigerAbsoluteDateFilter, ITigerRelativeDateFilter, ITigerPositiveAttributeFilter, ITigerNegativeAttributeFilter, ITigerRankingFilter, ITigerMeasureSortItem, ITigerWidget, ITigerDashboardLayoutSection, ITigerDashboardFilterGroup, ITigerDashboardAttributeFilterParent, ITigerDashboardAttributeFilterByDate, ITigerAttributeElements, ITigerLocatorItem, ITigerInsightWidget, ITigerKpiWidget, ITigerRichTextWidget, ITigerDashboardLayoutSectionHeader, ITigerDashboardLayoutColumn, ITigerAttributeElementsByRef, ITigerAttributeElementsByValue, ITigerMeasureLocatorItem, ITigerTotalLocatorItem, ITigerBaseWidget, ITigerDashboardLayoutSize, ITigerDashboardLayoutSizeByScreenSize, ITigerDashboardLayoutItem, ITigerMeasureValueFilter, ITigerMeasureValueFilterCondition, ITigerRangeCondition, ITigerRangeConditionInCompound, ITigerSortItem, ITigerVisualizationProperties, } from "./gd-tiger-model/TigerTypes.js";
|
|
45
45
|
export { isAttributeHeader, isAfmObjectIdentifier, isAfmObjectLocalIdentifier, isResultAttributeHeader, isResultMeasureHeader, isResultTotalHeader, isVisualizationObjectsItem, isFilterContextData, isTigerFilterContextItem, isTigerFilterContextItems, isTigerFilter, isTigerFilters, isDashboardPluginsItem, isDataSetItem, isLabelItem, isAttributeItem, isMetricItem, isFactItem, } from "./gd-tiger-model/typeGuards.js";
|
|
46
46
|
export { newAxios, setAxiosAuthorizationToken, setGlobalAuthorizationToken };
|
package/esm/index.js
CHANGED
|
@@ -55,7 +55,7 @@ export * from "./endpoints/genAI/index.js";
|
|
|
55
55
|
// -----------------------------------------------------------------------------
|
|
56
56
|
// GD Tiger Model
|
|
57
57
|
// -----------------------------------------------------------------------------
|
|
58
|
-
export { VisualizationObjectModelV1, VisualizationObjectModelV2, AnalyticalDashboardModelV1, AnalyticalDashboardModelV2, } from "./gd-tiger-model/index.js";
|
|
58
|
+
export { VisualizationObjectModelV1, VisualizationObjectModelV2, AnalyticalDashboardModelV1, AnalyticalDashboardModelV2, AnalyticalDashboardModelV3, } from "./gd-tiger-model/index.js";
|
|
59
59
|
export { isAttributeHeader, isAfmObjectIdentifier, isAfmObjectLocalIdentifier, isResultAttributeHeader, isResultMeasureHeader, isResultTotalHeader, isVisualizationObjectsItem, isFilterContextData, isTigerFilterContextItem, isTigerFilterContextItems, isTigerFilter, isTigerFilters, isDashboardPluginsItem, isDataSetItem, isLabelItem, isAttributeItem, isMetricItem, isFactItem, } from "./gd-tiger-model/typeGuards.js";
|
|
60
60
|
// -----------------------------------------------------------------------------
|
|
61
61
|
// Axios Utilities
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/api-client-tiger",
|
|
3
|
-
"version": "11.36.0-alpha.
|
|
3
|
+
"version": "11.36.0-alpha.7",
|
|
4
4
|
"description": "API Client for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"./endpoints/smartFunctions": "./esm/endpoints/smartFunctions/index.js"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"axios": "
|
|
45
|
+
"axios": "1.13.5",
|
|
46
46
|
"axios-cache-interceptor": "^1.8.0",
|
|
47
47
|
"lodash-es": "^4.17.23",
|
|
48
48
|
"tslib": "2.8.1",
|
|
49
|
-
"@gooddata/sdk-model": "11.36.0-alpha.
|
|
49
|
+
"@gooddata/sdk-model": "11.36.0-alpha.7"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
57
57
|
"@typescript-eslint/parser": "8.58.0",
|
|
58
58
|
"@typescript/native-preview": "7.0.0-dev.20260202.1",
|
|
59
|
-
"commander": "
|
|
59
|
+
"commander": "8.3.0",
|
|
60
60
|
"dependency-cruiser": "17.3.10",
|
|
61
61
|
"dotenv": "16.4.5",
|
|
62
62
|
"eslint": "^9.39.2",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"oxlint-tsgolint": "0.11.4",
|
|
76
76
|
"typescript": "5.9.3",
|
|
77
77
|
"vitest": "4.1.0",
|
|
78
|
-
"@gooddata/
|
|
79
|
-
"@gooddata/
|
|
78
|
+
"@gooddata/oxlint-config": "11.36.0-alpha.7",
|
|
79
|
+
"@gooddata/eslint-config": "11.36.0-alpha.7"
|
|
80
80
|
},
|
|
81
81
|
"scripts": {
|
|
82
82
|
"_phase:build": "npm run build",
|