@gooddata/sdk-backend-spi 11.40.0-alpha.0 → 11.40.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
@@ -34,7 +34,7 @@ export type { IWorkspacePermissionsService } from "./workspace/permissions/index
34
34
  export type { IWorkspaceAttributesService, IAttributeWithReferences, IAttributesQuery, IAttributesQueryFilterOptions, IAttributesQueryResult, } from "./workspace/attributes/index.js";
35
35
  export type { IWorkspaceMeasuresService, IGetMeasureOptions, IMeasureReferencing, IMeasureKeyDrivers, IMeasuresQueryResult, IMeasuresQuery, } from "./workspace/measures/index.js";
36
36
  export type { IWorkspaceFactsService, IFactsQuery, IFactsQueryResult } from "./workspace/facts/index.js";
37
- export type { IWorkspaceDashboardsService, IGetDashboardOptions, IGetDashboardPluginOptions, IGetScheduledMailOptions, IWidgetAlertCount, SupportedDashboardReferenceTypes, IWidgetReferences, SupportedWidgetReferenceTypes, IDashboardReferences, IDashboardWithReferences, IDashboardsQuery, IDashboardsQueryResult, IRawExportCustomOverride, IRawExportCustomOverrides, IDashboardExportPdfOptions, IDashboardExportRawOptions, IDashboardExportTabularOptions, IDashboardExportImageOptions, IDashboardExportPresentationOptions, FiltersByTab, DashboardSummaryWorkflowStatus, IDashboardSummaryWorkflowStartResult, IDashboardSummaryWorkflowStatusResult, } from "./workspace/dashboards/index.js";
37
+ export type { IWorkspaceDashboardsService, IGetDashboardOptions, IGetDashboardPluginOptions, IGetScheduledMailOptions, IWidgetAlertCount, SupportedDashboardReferenceTypes, IWidgetReferences, SupportedWidgetReferenceTypes, IDashboardReferences, IDashboardWithReferences, IDashboardsQuery, IDashboardsQueryResult, IRawExportCustomOverride, IRawExportCustomOverrides, IDashboardExportPdfOptions, IDashboardExportRawOptions, IDashboardExportTabularOptions, IDashboardParameterValueOverride, IDashboardExportImageOptions, IDashboardExportPresentationOptions, FiltersByTab, DashboardSummaryWorkflowStatus, IDashboardSummaryWorkflowStartResult, IDashboardSummaryWorkflowStatusResult, } from "./workspace/dashboards/index.js";
38
38
  export { type IWidgetWithLayoutPath, type LayoutPath, isDashboardLayoutEmpty, layoutWidgets, layoutWidgetsWithPaths, walkLayout, } from "./workspace/dashboards/utils.js";
39
39
  export type { IWorkspaceUsersQuery, IWorkspaceUsersQueryOptions, IWorkspaceUsersQueryResult, } from "./workspace/users/index.js";
40
40
  export type { IDateFilterConfigsQuery, IDateFilterConfigsQueryResult, } from "./workspace/dateFilterConfigs/index.js";
@@ -2316,6 +2316,11 @@ export declare interface IDashboardExportTabularOptions {
2316
2316
  * Override stored dashboard filters per tab with custom filters
2317
2317
  */
2318
2318
  dashboardTabsFiltersOverrides?: FiltersByTab;
2319
+ /**
2320
+ * Per-tab parameter overrides. Key is tabId; values drive AFM execution and info-sheet rendering
2321
+ * for that tab's sub-export. Mirrors `dashboardTabsFiltersOverrides`.
2322
+ */
2323
+ dashboardTabsParametersOverrides?: Record<string, IDashboardParameterValueOverride[]>;
2319
2324
  /**
2320
2325
  * PDF-specific configuration options. Only applicable when format is "PDF".
2321
2326
  */
@@ -2335,6 +2340,28 @@ export declare interface IDashboardExportTabularOptions {
2335
2340
  timeout?: number;
2336
2341
  }
2337
2342
 
2343
+ /**
2344
+ * Backend-neutral parameter value override sent on dashboard tabular export.
2345
+ *
2346
+ * @alpha
2347
+ */
2348
+ export declare interface IDashboardParameterValueOverride {
2349
+ /**
2350
+ * Parameter identifier; drives AFM execution. Matches the workspace catalog parameter's id.
2351
+ */
2352
+ id: string;
2353
+ /**
2354
+ * Value to apply for the parameter, encoded as a string (numeric values are stringified).
2355
+ * Drives AFM execution.
2356
+ */
2357
+ value: string;
2358
+ /**
2359
+ * Display title rendered into the export's info sheet. Presentation-only; not consumed by
2360
+ * execution.
2361
+ */
2362
+ title: string;
2363
+ }
2364
+
2338
2365
  /**
2339
2366
  * Dashboard referenced objects
2340
2367
  * @alpha
@@ -165,6 +165,27 @@ export interface IRawExportCustomOverrides {
165
165
  */
166
166
  displayForms?: Record<string, IRawExportCustomOverride>;
167
167
  }
168
+ /**
169
+ * Backend-neutral parameter value override sent on dashboard tabular export.
170
+ *
171
+ * @alpha
172
+ */
173
+ export interface IDashboardParameterValueOverride {
174
+ /**
175
+ * Parameter identifier; drives AFM execution. Matches the workspace catalog parameter's id.
176
+ */
177
+ id: string;
178
+ /**
179
+ * Value to apply for the parameter, encoded as a string (numeric values are stringified).
180
+ * Drives AFM execution.
181
+ */
182
+ value: string;
183
+ /**
184
+ * Display title rendered into the export's info sheet. Presentation-only; not consumed by
185
+ * execution.
186
+ */
187
+ title: string;
188
+ }
168
189
  /**
169
190
  * Options for exporting dashboard to tabular format.
170
191
  *
@@ -199,6 +220,11 @@ export interface IDashboardExportTabularOptions {
199
220
  * Override stored dashboard filters per tab with custom filters
200
221
  */
201
222
  dashboardTabsFiltersOverrides?: FiltersByTab;
223
+ /**
224
+ * Per-tab parameter overrides. Key is tabId; values drive AFM execution and info-sheet rendering
225
+ * for that tab's sub-export. Mirrors `dashboardTabsFiltersOverrides`.
226
+ */
227
+ dashboardTabsParametersOverrides?: Record<string, IDashboardParameterValueOverride[]>;
202
228
  /**
203
229
  * PDF-specific configuration options. Only applicable when format is "PDF".
204
230
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-backend-spi",
3
- "version": "11.40.0-alpha.0",
3
+ "version": "11.40.0-alpha.1",
4
4
  "description": "GoodData Backend SPI abstraction interfaces",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -24,7 +24,7 @@
24
24
  "lodash-es": "^4.17.23",
25
25
  "ts-invariant": "0.10.3",
26
26
  "tslib": "2.8.1",
27
- "@gooddata/sdk-model": "11.40.0-alpha.0"
27
+ "@gooddata/sdk-model": "11.40.0-alpha.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@microsoft/api-documenter": "^7.17.0",
@@ -48,8 +48,8 @@
48
48
  "oxlint-tsgolint": "0.11.4",
49
49
  "typescript": "5.9.3",
50
50
  "vitest": "4.1.0",
51
- "@gooddata/oxlint-config": "11.40.0-alpha.0",
52
- "@gooddata/eslint-config": "11.40.0-alpha.0"
51
+ "@gooddata/eslint-config": "11.40.0-alpha.1",
52
+ "@gooddata/oxlint-config": "11.40.0-alpha.1"
53
53
  },
54
54
  "scripts": {
55
55
  "_phase:build": "npm run build",