@gooddata/api-client-tiger 11.40.0-alpha.2 → 11.40.0-alpha.4
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 +945 -1698
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.js +0 -2
- package/esm/generated/afm-rest-api/api.d.ts +4 -355
- package/esm/generated/afm-rest-api/api.js +0 -347
- package/esm/generated/ai-json-api/api.d.ts +5 -0
- package/esm/generated/ai-json-api/api.js +2 -1
- package/esm/generated/auth-json-api/api.d.ts +511 -0
- package/esm/generated/auth-json-api/api.js +650 -0
- package/esm/generated/automation-json-api/api.d.ts +27 -0
- package/esm/generated/export-json-api/api.d.ts +9 -9
- package/esm/generated/metadata-json-api/api.d.ts +1293 -1265
- package/esm/generated/metadata-json-api/api.js +1450 -1200
- package/esm/index.d.ts +3 -3
- package/esm/index.js +1 -1
- package/package.json +8 -8
|
@@ -629,6 +629,23 @@ export interface AutomationDashboardMeasureValueFilterDashboardMeasureValueFilte
|
|
|
629
629
|
'title'?: string;
|
|
630
630
|
'localIdentifier'?: string;
|
|
631
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
634
|
+
*/
|
|
635
|
+
export interface AutomationDashboardParameterValue {
|
|
636
|
+
/**
|
|
637
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
638
|
+
*/
|
|
639
|
+
'id': string;
|
|
640
|
+
/**
|
|
641
|
+
* Value to use for this parameter when executing the export.
|
|
642
|
+
*/
|
|
643
|
+
'value': string;
|
|
644
|
+
/**
|
|
645
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
646
|
+
*/
|
|
647
|
+
'title': string;
|
|
648
|
+
}
|
|
632
649
|
/**
|
|
633
650
|
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
634
651
|
*/
|
|
@@ -660,6 +677,16 @@ export interface AutomationDashboardTabularExportRequestV2 {
|
|
|
660
677
|
*/
|
|
661
678
|
'widgetIds'?: Array<string>;
|
|
662
679
|
'settings'?: AutomationDashboardExportSettings;
|
|
680
|
+
/**
|
|
681
|
+
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
682
|
+
*/
|
|
683
|
+
'dashboardParametersOverride'?: Array<AutomationDashboardParameterValue>;
|
|
684
|
+
/**
|
|
685
|
+
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
686
|
+
*/
|
|
687
|
+
'dashboardTabsParametersOverrides'?: {
|
|
688
|
+
[key: string]: Array<AutomationDashboardParameterValue>;
|
|
689
|
+
};
|
|
663
690
|
}
|
|
664
691
|
export type AutomationDashboardTabularExportRequestV2FormatEnum = 'XLSX' | 'PDF';
|
|
665
692
|
/**
|
|
@@ -489,27 +489,27 @@ export interface ExportDashboardTabularExportRequest {
|
|
|
489
489
|
* List of filters that will be used instead of the default dashboard filters.
|
|
490
490
|
*/
|
|
491
491
|
'dashboardFiltersOverride'?: Array<ExportDashboardFilter>;
|
|
492
|
-
/**
|
|
493
|
-
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
494
|
-
*/
|
|
495
|
-
'dashboardParametersOverride'?: Array<ExportDashboardParameterValue>;
|
|
496
492
|
/**
|
|
497
493
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
498
494
|
*/
|
|
499
495
|
'dashboardTabsFiltersOverrides'?: {
|
|
500
496
|
[key: string]: Array<ExportDashboardFilter>;
|
|
501
497
|
};
|
|
498
|
+
/**
|
|
499
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
500
|
+
*/
|
|
501
|
+
'widgetIds'?: Array<string>;
|
|
502
|
+
'settings'?: ExportDashboardExportSettings;
|
|
503
|
+
/**
|
|
504
|
+
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
505
|
+
*/
|
|
506
|
+
'dashboardParametersOverride'?: Array<ExportDashboardParameterValue>;
|
|
502
507
|
/**
|
|
503
508
|
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
504
509
|
*/
|
|
505
510
|
'dashboardTabsParametersOverrides'?: {
|
|
506
511
|
[key: string]: Array<ExportDashboardParameterValue>;
|
|
507
512
|
};
|
|
508
|
-
/**
|
|
509
|
-
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
510
|
-
*/
|
|
511
|
-
'widgetIds'?: Array<string>;
|
|
512
|
-
'settings'?: ExportDashboardExportSettings;
|
|
513
513
|
}
|
|
514
514
|
export type ExportDashboardTabularExportRequestFormatEnum = 'XLSX' | 'PDF';
|
|
515
515
|
/**
|