@gooddata/sdk-model 11.40.0-alpha.0 → 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.
@@ -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.
@@ -58,6 +58,10 @@ export interface IUser {
58
58
  * In which deployment the user was requested
59
59
  */
60
60
  deployment?: string;
61
+ /**
62
+ * When true, the user is marked as a system account.
63
+ */
64
+ systemAccount?: boolean;
61
65
  }
62
66
  /**
63
67
  * Represents platform user group.
package/esm/user/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // (C) 2021-2025 GoodData Corporation
1
+ // (C) 2021-2026 GoodData Corporation
2
2
  import { isEmpty } from "lodash-es";
3
3
  import { invariant } from "ts-invariant";
4
4
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-model",
3
- "version": "11.40.0-alpha.0",
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.0",
61
- "@gooddata/oxlint-config": "11.40.0-alpha.0"
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",