@gooddata/sdk-model 11.40.0-alpha.1 → 11.40.0-alpha.2
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/sdk-model.d.ts +8 -0
- package/esm/settings/settings.d.ts +4 -0
- package/esm/user/index.d.ts +4 -0
- package/esm/user/index.js +1 -1
- package/package.json +3 -3
package/esm/sdk-model.d.ts
CHANGED
|
@@ -6550,6 +6550,10 @@ export declare interface IFeatureFlags {
|
|
|
6550
6550
|
* Enable multiple data sources to be used in a single workspace.
|
|
6551
6551
|
*/
|
|
6552
6552
|
enableDashboardFilterViews?: boolean;
|
|
6553
|
+
/**
|
|
6554
|
+
* Enable system account filtering.
|
|
6555
|
+
*/
|
|
6556
|
+
enableSystemAccountFiltering?: boolean;
|
|
6553
6557
|
/**
|
|
6554
6558
|
* Enable customized dashboards without plugin overlay.
|
|
6555
6559
|
* When enabled, the plugin overlay will not be displayed on dashboard items.
|
|
@@ -14129,6 +14133,10 @@ export declare interface IUser {
|
|
|
14129
14133
|
* In which deployment the user was requested
|
|
14130
14134
|
*/
|
|
14131
14135
|
deployment?: string;
|
|
14136
|
+
/**
|
|
14137
|
+
* When true, the user is marked as a system account.
|
|
14138
|
+
*/
|
|
14139
|
+
systemAccount?: boolean;
|
|
14132
14140
|
}
|
|
14133
14141
|
|
|
14134
14142
|
/**
|
|
@@ -590,6 +590,10 @@ export interface IFeatureFlags {
|
|
|
590
590
|
* Enable multiple data sources to be used in a single workspace.
|
|
591
591
|
*/
|
|
592
592
|
enableDashboardFilterViews?: boolean;
|
|
593
|
+
/**
|
|
594
|
+
* Enable system account filtering.
|
|
595
|
+
*/
|
|
596
|
+
enableSystemAccountFiltering?: boolean;
|
|
593
597
|
/**
|
|
594
598
|
* Enable customized dashboards without plugin overlay.
|
|
595
599
|
* When enabled, the plugin overlay will not be displayed on dashboard items.
|
package/esm/user/index.d.ts
CHANGED
package/esm/user/index.js
CHANGED
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.2",
|
|
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.11.4",
|
|
58
58
|
"typescript": "5.9.3",
|
|
59
59
|
"vitest": "4.1.0",
|
|
60
|
-
"@gooddata/eslint-config": "11.40.0-alpha.
|
|
61
|
-
"@gooddata/oxlint-config": "11.40.0-alpha.
|
|
60
|
+
"@gooddata/eslint-config": "11.40.0-alpha.2",
|
|
61
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.2"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"_phase:build": "npm run build",
|