@gooddata/api-client-tiger 11.7.0-alpha.5 → 11.7.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/api-client-tiger.d.ts +60 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts +56 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js +10 -0
- package/esm/gd-tiger-model/AnalyticalDashboardModelV2.js.map +1 -1
- package/package.json +4 -4
package/esm/__version.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.7.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.7.0-alpha.6";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/api-client-tiger";
|
|
4
4
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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.7.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.7.0-alpha.6";
|
|
4
4
|
export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
6
6
|
//# sourceMappingURL=__version.js.map
|
|
@@ -7537,7 +7537,9 @@ declare namespace AnalyticalDashboardModelV2 {
|
|
|
7537
7537
|
isFilterContext_2 as isFilterContext,
|
|
7538
7538
|
isDashboardPlugin,
|
|
7539
7539
|
isDashboardPluginLink,
|
|
7540
|
+
isDashboardTab,
|
|
7540
7541
|
IDashboardDateFilterConfigItem,
|
|
7542
|
+
IDashboardTab,
|
|
7541
7543
|
IAnalyticalDashboard_2 as IAnalyticalDashboard,
|
|
7542
7544
|
IFilterContext_3 as IFilterContext,
|
|
7543
7545
|
IDashboardPlugin,
|
|
@@ -43465,6 +43467,19 @@ declare interface IAnalyticalDashboard_2 {
|
|
|
43465
43467
|
disableUserFilterSave?: boolean;
|
|
43466
43468
|
disableFilterViews?: boolean;
|
|
43467
43469
|
evaluationFrequency?: string;
|
|
43470
|
+
/**
|
|
43471
|
+
* Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
|
|
43472
|
+
* Each tab has its own layout, filter context and filter configs.
|
|
43473
|
+
*
|
|
43474
|
+
* @alpha
|
|
43475
|
+
*/
|
|
43476
|
+
tabs?: IDashboardTab[];
|
|
43477
|
+
/**
|
|
43478
|
+
* Identifier of the active tab for persistence purposes.
|
|
43479
|
+
*
|
|
43480
|
+
* @alpha
|
|
43481
|
+
*/
|
|
43482
|
+
activeTabId?: string;
|
|
43468
43483
|
}
|
|
43469
43484
|
|
|
43470
43485
|
/**
|
|
@@ -43504,6 +43519,46 @@ declare interface IDashboardPluginLink {
|
|
|
43504
43519
|
parameters?: string;
|
|
43505
43520
|
}
|
|
43506
43521
|
|
|
43522
|
+
/**
|
|
43523
|
+
* Dashboard tab definition.
|
|
43524
|
+
*
|
|
43525
|
+
* @remarks
|
|
43526
|
+
* Each tab can have its own layout and its own filter context. Tabs are optional and
|
|
43527
|
+
* dashboards without tabs continue to work using the root layout and filter context.
|
|
43528
|
+
*
|
|
43529
|
+
* @alpha
|
|
43530
|
+
*/
|
|
43531
|
+
declare interface IDashboardTab {
|
|
43532
|
+
/**
|
|
43533
|
+
* Unique identifier of the tab (stable within dashboard).
|
|
43534
|
+
*/
|
|
43535
|
+
identifier: string;
|
|
43536
|
+
/**
|
|
43537
|
+
* Display title of the tab.
|
|
43538
|
+
*/
|
|
43539
|
+
title: string;
|
|
43540
|
+
/**
|
|
43541
|
+
* Complete layout definition for this tab.
|
|
43542
|
+
*/
|
|
43543
|
+
layout: IDashboardLayout;
|
|
43544
|
+
/**
|
|
43545
|
+
* Tab-specific filter context.
|
|
43546
|
+
*/
|
|
43547
|
+
filterContextRef: ObjRef;
|
|
43548
|
+
/**
|
|
43549
|
+
* Dashboard tab common date filter config
|
|
43550
|
+
*/
|
|
43551
|
+
dateFilterConfig?: IDashboardDateFilterConfig;
|
|
43552
|
+
/**
|
|
43553
|
+
* Dashboard tab date filters with date data set/dimension configs
|
|
43554
|
+
*/
|
|
43555
|
+
dateFilterConfigs?: IDashboardDateFilterConfigItem[];
|
|
43556
|
+
/**
|
|
43557
|
+
* Dashboard extended attribute filter configs
|
|
43558
|
+
*/
|
|
43559
|
+
attributeFilterConfigs?: IDashboardAttributeFilterConfig[];
|
|
43560
|
+
}
|
|
43561
|
+
|
|
43507
43562
|
/**
|
|
43508
43563
|
* @public
|
|
43509
43564
|
*/
|
|
@@ -44701,6 +44756,11 @@ declare function isDashboardPluginLink(pluginLink: unknown): pluginLink is IDash
|
|
|
44701
44756
|
*/
|
|
44702
44757
|
export declare function isDashboardPluginsItem(dashboardPlugin: unknown): dashboardPlugin is JsonApiDashboardPluginOutWithLinks;
|
|
44703
44758
|
|
|
44759
|
+
/**
|
|
44760
|
+
* @alpha
|
|
44761
|
+
*/
|
|
44762
|
+
declare function isDashboardTab(tab: unknown): tab is IDashboardTab;
|
|
44763
|
+
|
|
44704
44764
|
/**
|
|
44705
44765
|
* @public
|
|
44706
44766
|
*/
|
|
@@ -6,6 +6,45 @@ export interface IDashboardDateFilterConfigItem {
|
|
|
6
6
|
dateDataSet: ObjRef;
|
|
7
7
|
config: IDashboardDateFilterConfig;
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* Dashboard tab definition.
|
|
11
|
+
*
|
|
12
|
+
* @remarks
|
|
13
|
+
* Each tab can have its own layout and its own filter context. Tabs are optional and
|
|
14
|
+
* dashboards without tabs continue to work using the root layout and filter context.
|
|
15
|
+
*
|
|
16
|
+
* @alpha
|
|
17
|
+
*/
|
|
18
|
+
export interface IDashboardTab {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier of the tab (stable within dashboard).
|
|
21
|
+
*/
|
|
22
|
+
identifier: string;
|
|
23
|
+
/**
|
|
24
|
+
* Display title of the tab.
|
|
25
|
+
*/
|
|
26
|
+
title: string;
|
|
27
|
+
/**
|
|
28
|
+
* Complete layout definition for this tab.
|
|
29
|
+
*/
|
|
30
|
+
layout: IDashboardLayout;
|
|
31
|
+
/**
|
|
32
|
+
* Tab-specific filter context.
|
|
33
|
+
*/
|
|
34
|
+
filterContextRef: ObjRef;
|
|
35
|
+
/**
|
|
36
|
+
* Dashboard tab common date filter config
|
|
37
|
+
*/
|
|
38
|
+
dateFilterConfig?: IDashboardDateFilterConfig;
|
|
39
|
+
/**
|
|
40
|
+
* Dashboard tab date filters with date data set/dimension configs
|
|
41
|
+
*/
|
|
42
|
+
dateFilterConfigs?: IDashboardDateFilterConfigItem[];
|
|
43
|
+
/**
|
|
44
|
+
* Dashboard extended attribute filter configs
|
|
45
|
+
*/
|
|
46
|
+
attributeFilterConfigs?: IDashboardAttributeFilterConfig[];
|
|
47
|
+
}
|
|
9
48
|
/**
|
|
10
49
|
* @public
|
|
11
50
|
*/
|
|
@@ -22,6 +61,19 @@ export interface IAnalyticalDashboard {
|
|
|
22
61
|
disableUserFilterSave?: boolean;
|
|
23
62
|
disableFilterViews?: boolean;
|
|
24
63
|
evaluationFrequency?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Optional tabs configuration; when defined, the dashboard renders as a tabbed interface.
|
|
66
|
+
* Each tab has its own layout, filter context and filter configs.
|
|
67
|
+
*
|
|
68
|
+
* @alpha
|
|
69
|
+
*/
|
|
70
|
+
tabs?: IDashboardTab[];
|
|
71
|
+
/**
|
|
72
|
+
* Identifier of the active tab for persistence purposes.
|
|
73
|
+
*
|
|
74
|
+
* @alpha
|
|
75
|
+
*/
|
|
76
|
+
activeTabId?: string;
|
|
25
77
|
}
|
|
26
78
|
/**
|
|
27
79
|
* @public
|
|
@@ -61,4 +113,8 @@ export declare function isDashboardPlugin(plugin: unknown): plugin is IDashboard
|
|
|
61
113
|
* @public
|
|
62
114
|
*/
|
|
63
115
|
export declare function isDashboardPluginLink(pluginLink: unknown): pluginLink is IDashboardPluginLink;
|
|
116
|
+
/**
|
|
117
|
+
* @alpha
|
|
118
|
+
*/
|
|
119
|
+
export declare function isDashboardTab(tab: unknown): tab is IDashboardTab;
|
|
64
120
|
//# sourceMappingURL=AnalyticalDashboardModelV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticalDashboardModelV2.d.ts","sourceRoot":"","sources":["../../src/gd-tiger-model/AnalyticalDashboardModelV2.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AnalyticalDashboardModelV2.d.ts","sourceRoot":"","sources":["../../src/gd-tiger-model/AnalyticalDashboardModelV2.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,+BAA+B,EAC/B,0BAA0B,EAC1B,gBAAgB,EAChB,cAAc,IAAI,mBAAmB,EACrC,MAAM,EACT,MAAM,qBAAqB,CAAC;AAE7B;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,0BAA0B,CAAC;CACtC;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,aAAa;IAC1B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,MAAM,EAAE,gBAAgB,CAAC;IAEzB;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,0BAA0B,CAAC;IAE9C;;OAEG;IACH,iBAAiB,CAAC,EAAE,8BAA8B,EAAE,CAAC;IAErD;;OAEG;IACH,sBAAsB,CAAC,EAAE,+BAA+B,EAAE,CAAC;CAC9D;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,GAAG,CAAC;IACb,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,0BAA0B,CAAC;IAC9C,iBAAiB,CAAC,EAAE,8BAA8B,EAAE,CAAC;IACrD,sBAAsB,CAAC,EAAE,+BAA+B,EAAE,CAAC;IAC3D,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACjC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B;;;;;OAKG;IACH,IAAI,CAAC,EAAE,aAAa,EAAE,CAAC;IAEvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B,OAAO,EAAE,GAAG,CAAC;IACb,OAAO,EAAE,mBAAmB,CAAC,SAAS,CAAC,CAAC;CAC3C;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B,OAAO,EAAE,GAAG,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,GAAG,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,OAAO,GAAG,SAAS,IAAI,oBAAoB,CAE3F;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,aAAa,EAAE,OAAO,GAAG,aAAa,IAAI,cAAc,CAEvF;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,IAAI,gBAAgB,CAE7E;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,UAAU,EAAE,OAAO,GAAG,UAAU,IAAI,oBAAoB,CAE7F;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,aAAa,CAQjE"}
|
|
@@ -24,4 +24,14 @@ export function isDashboardPlugin(plugin) {
|
|
|
24
24
|
export function isDashboardPluginLink(pluginLink) {
|
|
25
25
|
return !isEmpty(pluginLink) && pluginLink.version === "2";
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* @alpha
|
|
29
|
+
*/
|
|
30
|
+
export function isDashboardTab(tab) {
|
|
31
|
+
return (!isEmpty(tab) &&
|
|
32
|
+
typeof tab.identifier === "string" &&
|
|
33
|
+
typeof tab.title === "string" &&
|
|
34
|
+
typeof tab.layout === "object" &&
|
|
35
|
+
typeof tab.filterContextRef === "object");
|
|
36
|
+
}
|
|
27
37
|
//# sourceMappingURL=AnalyticalDashboardModelV2.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticalDashboardModelV2.js","sourceRoot":"","sources":["../../src/gd-tiger-model/AnalyticalDashboardModelV2.ts"],"names":[],"mappings":"AAAA,qCAAqC;
|
|
1
|
+
{"version":3,"file":"AnalyticalDashboardModelV2.js","sourceRoot":"","sources":["../../src/gd-tiger-model/AnalyticalDashboardModelV2.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0HpC;;GAEG;AACH,MAAM,UAAU,qBAAqB,CAAC,SAAkB;IACpD,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,IAAK,SAAkC,CAAC,OAAO,KAAK,GAAG,CAAC;AACtF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,eAAe,CAAC,aAAsB;IAClD,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,IAAK,aAAgC,CAAC,OAAO,KAAK,GAAG,CAAC;AACxF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,MAAe;IAC7C,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAK,MAA2B,CAAC,OAAO,KAAK,GAAG,CAAC;AAC5E,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,qBAAqB,CAAC,UAAmB;IACrD,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,IAAK,UAAmC,CAAC,OAAO,KAAK,GAAG,CAAC;AACxF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,cAAc,CAAC,GAAY;IACvC,OAAO,CACH,CAAC,OAAO,CAAC,GAAG,CAAC;QACb,OAAQ,GAAqB,CAAC,UAAU,KAAK,QAAQ;QACrD,OAAQ,GAAqB,CAAC,KAAK,KAAK,QAAQ;QAChD,OAAQ,GAAqB,CAAC,MAAM,KAAK,QAAQ;QACjD,OAAQ,GAAqB,CAAC,gBAAgB,KAAK,QAAQ,CAC9D,CAAC;AACN,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/api-client-tiger",
|
|
3
|
-
"version": "11.7.0-alpha.
|
|
3
|
+
"version": "11.7.0-alpha.6",
|
|
4
4
|
"description": "API Client for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"axios-cache-interceptor": "^1.8.0",
|
|
26
26
|
"lodash-es": "^4.17.21",
|
|
27
27
|
"tslib": "2.8.1",
|
|
28
|
-
"@gooddata/sdk-model": "11.7.0-alpha.
|
|
28
|
+
"@gooddata/sdk-model": "11.7.0-alpha.6"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"prettier": "^3.6.2",
|
|
54
54
|
"typescript": "5.8.3",
|
|
55
55
|
"vitest": "3.2.4",
|
|
56
|
-
"@gooddata/eslint-config": "11.7.0-alpha.
|
|
57
|
-
"@gooddata/reference-workspace": "11.7.0-alpha.
|
|
56
|
+
"@gooddata/eslint-config": "11.7.0-alpha.6",
|
|
57
|
+
"@gooddata/reference-workspace": "11.7.0-alpha.6"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"_phase:build": "npm run build",
|