@gooddata/sdk-model 11.41.0-alpha.0 → 11.41.0-alpha.1

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/index.d.ts CHANGED
@@ -96,6 +96,7 @@ export { type IAllowedRelationshipType, type ISemanticSearchResult, type ISemant
96
96
  export type { IGenAIChatInteraction, IGenAIUserContext, IGenAIChatRouting, IGenAIChatReasoning, IGenAIChatReasoningStep, IGenAIChatReasoningThought, IGenAICreatedVisualizations, IGenAIFoundObjects, IGenAIVisualization, IGenAIVisualizationConfig, IGenAIForecastConfig, IGenAIAnomalyDetectionConfig, IGenAIClusteringConfig, IGenAIWhatIfConfig, IGenAIWhatIfScenario, IGenAIWhatIfAdjustment, IGenAIVisualizationDimension, IGenAIVisualizationMetric, IGenAIActiveObject, IGenAIUIContext, IGenAIDashboardContext, IGenAIWidgetDescriptor, GenAIObjectReferenceType, IGenAIObjectReference, IGenAIObjectReferenceGroup, IGenAISuggestion, IGenAIChangeAnalysisParams, GenAIChatRoutingUseCase, GenAIChatInteractionUserFeedback, GenAIChatInteractionUserVisualisation, GenAIChatRole, GenAIVisualizationType, GenAIMetricAggregation, GenAIMetricType, GenAIFilter, GenAIPositiveAttributeFilter, GenAINegativeAttributeFilter, GenAIAbsoluteDateFilter, GenAIRelativeDateFilter, GenAIDateGranularity, GenAIRankingFilter, } from "./genAI/chat.js";
97
97
  export type { GenAIObjectType } from "./genAI/common.js";
98
98
  export type { IGeoCollection, IGeoCollectionDefinition, IGeoCollectionFileUploadResult, } from "./geoCollections/index.js";
99
+ export type { IIpAllowlist, IIpAllowlistAssignedUser, IIpAllowlistAssignedUserGroup, IIpAllowlistDefinition, } from "./ipAllowlists/index.js";
99
100
  export type { ILlmEndpointBase, ILlmEndpointOpenAI, LlmEndpointOpenAIPatch } from "./llmEndpoints/index.js";
100
101
  export type { ILlmProvider, ILlmModel, LlmProviderConfig, IOpenAIProviderConfig, IAzureFoundryProviderConfig, IAwsBedrockProviderConfig, IAnthropicProviderConfig, LlmProviderFamily, LlmProviderPatch, LlmProviderTestResults, LlmModelsTestResults, LlmProviderListModelsResults, } from "./llmProviders/index.js";
101
102
  export type { IAgent, IAgentPatch, IAgentSkill, AgentCustomSkill, AgentSkillsMode, } from "./agentSkill/index.js";
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Definition used to create an organization IP allowlist policy.
3
+ *
4
+ * @alpha
5
+ */
6
+ export interface IIpAllowlistDefinition {
7
+ /**
8
+ * Client-assigned identifier. Must be unique within the organization.
9
+ */
10
+ id: string;
11
+ /**
12
+ * IPv4 or IPv6 addresses and/or CIDR ranges allowed by the policy.
13
+ * The `/0` prefix (matching the entire address space) is rejected by the backend.
14
+ */
15
+ allowedSources: string[];
16
+ /**
17
+ * Identifiers of users to which the policy applies.
18
+ */
19
+ userIds: string[];
20
+ /**
21
+ * Identifiers of user groups to which the policy applies.
22
+ */
23
+ userGroupIds: string[];
24
+ }
25
+ /**
26
+ * User assigned to an IP allowlist policy, enriched with display info
27
+ * resolved from the JSON:API `included` array on read endpoints.
28
+ *
29
+ * @alpha
30
+ */
31
+ export interface IIpAllowlistAssignedUser {
32
+ id: string;
33
+ /**
34
+ * Display name combined from first + last name. Empty when the user has neither.
35
+ */
36
+ fullName?: string;
37
+ email?: string;
38
+ }
39
+ /**
40
+ * User group assigned to an IP allowlist policy, enriched with display info
41
+ * resolved from the JSON:API `included` array on read endpoints.
42
+ *
43
+ * @alpha
44
+ */
45
+ export interface IIpAllowlistAssignedUserGroup {
46
+ id: string;
47
+ name?: string;
48
+ }
49
+ /**
50
+ * Represents an organization IP allowlist policy returned by the backend.
51
+ *
52
+ * @remarks
53
+ * On top of the create-shape {@link IIpAllowlistDefinition}, the read shape
54
+ * exposes resolved display info for assigned users and user groups so the UI
55
+ * can render them without an additional round-trip.
56
+ *
57
+ * @alpha
58
+ */
59
+ export interface IIpAllowlist extends IIpAllowlistDefinition {
60
+ users: IIpAllowlistAssignedUser[];
61
+ userGroups: IIpAllowlistAssignedUserGroup[];
62
+ }
@@ -0,0 +1,2 @@
1
+ // (C) 2026 GoodData Corporation
2
+ export {};
@@ -6490,6 +6490,10 @@ export declare interface IFeatureFlags {
6490
6490
  * Enables smtp settings.
6491
6491
  */
6492
6492
  enableSmtp?: boolean;
6493
+ /**
6494
+ * Enables IP allowlists management in organization settings.
6495
+ */
6496
+ enableIpAllowlistsUi?: boolean;
6493
6497
  /**
6494
6498
  * Enables storing widget identifiers.
6495
6499
  */
@@ -6997,6 +7001,10 @@ export declare interface IFeatureFlags {
6997
7001
  * Enables Resizable Dashboard sidebar in edit mode.
6998
7002
  */
6999
7003
  enableDashboardSidebarResize?: boolean;
7004
+ /**
7005
+ * Enables LDM Modeler loading as a remote module in the host application.
7006
+ */
7007
+ enableShellApplication_ldmModeler?: boolean;
7000
7008
  }
7001
7009
 
7002
7010
  /**
@@ -8118,6 +8126,72 @@ export declare interface IInsightWidgetDescriptionConfiguration {
8118
8126
  includeMetrics: boolean;
8119
8127
  }
8120
8128
 
8129
+ /**
8130
+ * Represents an organization IP allowlist policy returned by the backend.
8131
+ *
8132
+ * @remarks
8133
+ * On top of the create-shape {@link IIpAllowlistDefinition}, the read shape
8134
+ * exposes resolved display info for assigned users and user groups so the UI
8135
+ * can render them without an additional round-trip.
8136
+ *
8137
+ * @alpha
8138
+ */
8139
+ export declare interface IIpAllowlist extends IIpAllowlistDefinition {
8140
+ users: IIpAllowlistAssignedUser[];
8141
+ userGroups: IIpAllowlistAssignedUserGroup[];
8142
+ }
8143
+
8144
+ /**
8145
+ * User assigned to an IP allowlist policy, enriched with display info
8146
+ * resolved from the JSON:API `included` array on read endpoints.
8147
+ *
8148
+ * @alpha
8149
+ */
8150
+ export declare interface IIpAllowlistAssignedUser {
8151
+ id: string;
8152
+ /**
8153
+ * Display name combined from first + last name. Empty when the user has neither.
8154
+ */
8155
+ fullName?: string;
8156
+ email?: string;
8157
+ }
8158
+
8159
+ /**
8160
+ * User group assigned to an IP allowlist policy, enriched with display info
8161
+ * resolved from the JSON:API `included` array on read endpoints.
8162
+ *
8163
+ * @alpha
8164
+ */
8165
+ export declare interface IIpAllowlistAssignedUserGroup {
8166
+ id: string;
8167
+ name?: string;
8168
+ }
8169
+
8170
+ /**
8171
+ * Definition used to create an organization IP allowlist policy.
8172
+ *
8173
+ * @alpha
8174
+ */
8175
+ export declare interface IIpAllowlistDefinition {
8176
+ /**
8177
+ * Client-assigned identifier. Must be unique within the organization.
8178
+ */
8179
+ id: string;
8180
+ /**
8181
+ * IPv4 or IPv6 addresses and/or CIDR ranges allowed by the policy.
8182
+ * The `/0` prefix (matching the entire address space) is rejected by the backend.
8183
+ */
8184
+ allowedSources: string[];
8185
+ /**
8186
+ * Identifiers of users to which the policy applies.
8187
+ */
8188
+ userIds: string[];
8189
+ /**
8190
+ * Identifiers of user groups to which the policy applies.
8191
+ */
8192
+ userGroupIds: string[];
8193
+ }
8194
+
8121
8195
  /**
8122
8196
  * Key drive analysis
8123
8197
  * @public
@@ -10017,6 +10091,7 @@ export declare interface IOrganizationUser {
10017
10091
  fullName?: string;
10018
10092
  email?: string;
10019
10093
  isOrganizationAdmin: boolean;
10094
+ isSystemAccount: boolean;
10020
10095
  assignedUserGroups: IUserGroup[];
10021
10096
  assignedWorkspaces: IWorkspacePermissionAssignment[];
10022
10097
  assignedDataSources: IDataSourcePermissionAssignment[];
@@ -530,6 +530,10 @@ export interface IFeatureFlags {
530
530
  * Enables smtp settings.
531
531
  */
532
532
  enableSmtp?: boolean;
533
+ /**
534
+ * Enables IP allowlists management in organization settings.
535
+ */
536
+ enableIpAllowlistsUi?: boolean;
533
537
  /**
534
538
  * Enables storing widget identifiers.
535
539
  */
@@ -1037,4 +1041,8 @@ export interface IFeatureFlags {
1037
1041
  * Enables Resizable Dashboard sidebar in edit mode.
1038
1042
  */
1039
1043
  enableDashboardSidebarResize?: boolean;
1044
+ /**
1045
+ * Enables LDM Modeler loading as a remote module in the host application.
1046
+ */
1047
+ enableShellApplication_ldmModeler?: boolean;
1040
1048
  }
@@ -143,6 +143,7 @@ export interface IOrganizationUser {
143
143
  fullName?: string;
144
144
  email?: string;
145
145
  isOrganizationAdmin: boolean;
146
+ isSystemAccount: boolean;
146
147
  assignedUserGroups: IUserGroup[];
147
148
  assignedWorkspaces: IWorkspacePermissionAssignment[];
148
149
  assignedDataSources: IDataSourcePermissionAssignment[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-model",
3
- "version": "11.41.0-alpha.0",
3
+ "version": "11.41.0-alpha.1",
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.15.0",
58
58
  "typescript": "5.9.3",
59
59
  "vitest": "4.1.8",
60
- "@gooddata/eslint-config": "11.41.0-alpha.0",
61
- "@gooddata/oxlint-config": "11.41.0-alpha.0"
60
+ "@gooddata/eslint-config": "11.41.0-alpha.1",
61
+ "@gooddata/oxlint-config": "11.41.0-alpha.1"
62
62
  },
63
63
  "scripts": {
64
64
  "_phase:build": "npm run build",