@gooddata/api-client-tiger 11.39.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/__version.d.ts
CHANGED
package/esm/__version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "11.
|
|
3
|
+
export const LIB_VERSION = "11.40.0-alpha.1";
|
|
4
4
|
export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
@@ -24638,6 +24638,24 @@ export declare interface DashboardMeasureValueFilterDashboardMeasureValueFilter
|
|
|
24638
24638
|
'localIdentifier'?: string;
|
|
24639
24639
|
}
|
|
24640
24640
|
|
|
24641
|
+
/**
|
|
24642
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
24643
|
+
*/
|
|
24644
|
+
export declare interface DashboardParameterValue {
|
|
24645
|
+
/**
|
|
24646
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
24647
|
+
*/
|
|
24648
|
+
'id': string;
|
|
24649
|
+
/**
|
|
24650
|
+
* Value to use for this parameter when executing the export.
|
|
24651
|
+
*/
|
|
24652
|
+
'value': string;
|
|
24653
|
+
/**
|
|
24654
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
24655
|
+
*/
|
|
24656
|
+
'title': string;
|
|
24657
|
+
}
|
|
24658
|
+
|
|
24641
24659
|
export declare interface DashboardPermissions {
|
|
24642
24660
|
/**
|
|
24643
24661
|
* List of rules
|
|
@@ -25894,12 +25912,22 @@ export declare interface DashboardTabularExportRequestV2 {
|
|
|
25894
25912
|
* List of filters that will be used instead of the default dashboard filters.
|
|
25895
25913
|
*/
|
|
25896
25914
|
'dashboardFiltersOverride'?: Array<DashboardFilter>;
|
|
25915
|
+
/**
|
|
25916
|
+
* 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.
|
|
25917
|
+
*/
|
|
25918
|
+
'dashboardParametersOverride'?: Array<DashboardParameterValue>;
|
|
25897
25919
|
/**
|
|
25898
25920
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
25899
25921
|
*/
|
|
25900
25922
|
'dashboardTabsFiltersOverrides'?: {
|
|
25901
25923
|
[key: string]: Array<DashboardFilter>;
|
|
25902
25924
|
};
|
|
25925
|
+
/**
|
|
25926
|
+
* 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.
|
|
25927
|
+
*/
|
|
25928
|
+
'dashboardTabsParametersOverrides'?: {
|
|
25929
|
+
[key: string]: Array<DashboardParameterValue>;
|
|
25930
|
+
};
|
|
25903
25931
|
/**
|
|
25904
25932
|
* Dashboard identifier
|
|
25905
25933
|
*/
|
|
@@ -53861,6 +53889,24 @@ export declare interface ExportDashboardMeasureValueFilterDashboardMeasureValueF
|
|
|
53861
53889
|
'localIdentifier'?: string;
|
|
53862
53890
|
}
|
|
53863
53891
|
|
|
53892
|
+
/**
|
|
53893
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
53894
|
+
*/
|
|
53895
|
+
export declare interface ExportDashboardParameterValue {
|
|
53896
|
+
/**
|
|
53897
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
53898
|
+
*/
|
|
53899
|
+
'id': string;
|
|
53900
|
+
/**
|
|
53901
|
+
* Value to use for this parameter when executing the export.
|
|
53902
|
+
*/
|
|
53903
|
+
'value': string;
|
|
53904
|
+
/**
|
|
53905
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
53906
|
+
*/
|
|
53907
|
+
'title': string;
|
|
53908
|
+
}
|
|
53909
|
+
|
|
53864
53910
|
/**
|
|
53865
53911
|
* Export request object describing the export properties for dashboard tabular exports.
|
|
53866
53912
|
*/
|
|
@@ -53877,12 +53923,22 @@ export declare interface ExportDashboardTabularExportRequest {
|
|
|
53877
53923
|
* List of filters that will be used instead of the default dashboard filters.
|
|
53878
53924
|
*/
|
|
53879
53925
|
'dashboardFiltersOverride'?: Array<ExportDashboardFilter>;
|
|
53926
|
+
/**
|
|
53927
|
+
* 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.
|
|
53928
|
+
*/
|
|
53929
|
+
'dashboardParametersOverride'?: Array<ExportDashboardParameterValue>;
|
|
53880
53930
|
/**
|
|
53881
53931
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
53882
53932
|
*/
|
|
53883
53933
|
'dashboardTabsFiltersOverrides'?: {
|
|
53884
53934
|
[key: string]: Array<ExportDashboardFilter>;
|
|
53885
53935
|
};
|
|
53936
|
+
/**
|
|
53937
|
+
* 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.
|
|
53938
|
+
*/
|
|
53939
|
+
'dashboardTabsParametersOverrides'?: {
|
|
53940
|
+
[key: string]: Array<ExportDashboardParameterValue>;
|
|
53941
|
+
};
|
|
53886
53942
|
/**
|
|
53887
53943
|
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
53888
53944
|
*/
|
|
@@ -456,6 +456,23 @@ export interface ExportDashboardMeasureValueFilterDashboardMeasureValueFilter {
|
|
|
456
456
|
'title'?: string;
|
|
457
457
|
'localIdentifier'?: string;
|
|
458
458
|
}
|
|
459
|
+
/**
|
|
460
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
461
|
+
*/
|
|
462
|
+
export interface ExportDashboardParameterValue {
|
|
463
|
+
/**
|
|
464
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
465
|
+
*/
|
|
466
|
+
'id': string;
|
|
467
|
+
/**
|
|
468
|
+
* Value to use for this parameter when executing the export.
|
|
469
|
+
*/
|
|
470
|
+
'value': string;
|
|
471
|
+
/**
|
|
472
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
473
|
+
*/
|
|
474
|
+
'title': string;
|
|
475
|
+
}
|
|
459
476
|
/**
|
|
460
477
|
* Export request object describing the export properties for dashboard tabular exports.
|
|
461
478
|
*/
|
|
@@ -472,12 +489,22 @@ export interface ExportDashboardTabularExportRequest {
|
|
|
472
489
|
* List of filters that will be used instead of the default dashboard filters.
|
|
473
490
|
*/
|
|
474
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>;
|
|
475
496
|
/**
|
|
476
497
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
477
498
|
*/
|
|
478
499
|
'dashboardTabsFiltersOverrides'?: {
|
|
479
500
|
[key: string]: Array<ExportDashboardFilter>;
|
|
480
501
|
};
|
|
502
|
+
/**
|
|
503
|
+
* 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
|
+
*/
|
|
505
|
+
'dashboardTabsParametersOverrides'?: {
|
|
506
|
+
[key: string]: Array<ExportDashboardParameterValue>;
|
|
507
|
+
};
|
|
481
508
|
/**
|
|
482
509
|
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
483
510
|
*/
|
|
@@ -791,6 +791,23 @@ export interface DashboardMeasureValueFilterDashboardMeasureValueFilter {
|
|
|
791
791
|
'title'?: string;
|
|
792
792
|
'localIdentifier'?: string;
|
|
793
793
|
}
|
|
794
|
+
/**
|
|
795
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
796
|
+
*/
|
|
797
|
+
export interface DashboardParameterValue {
|
|
798
|
+
/**
|
|
799
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
800
|
+
*/
|
|
801
|
+
'id': string;
|
|
802
|
+
/**
|
|
803
|
+
* Value to use for this parameter when executing the export.
|
|
804
|
+
*/
|
|
805
|
+
'value': string;
|
|
806
|
+
/**
|
|
807
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
808
|
+
*/
|
|
809
|
+
'title': string;
|
|
810
|
+
}
|
|
794
811
|
export interface DashboardPermissions {
|
|
795
812
|
/**
|
|
796
813
|
* List of rules
|
|
@@ -842,12 +859,22 @@ export interface DashboardTabularExportRequestV2 {
|
|
|
842
859
|
* List of filters that will be used instead of the default dashboard filters.
|
|
843
860
|
*/
|
|
844
861
|
'dashboardFiltersOverride'?: Array<DashboardFilter>;
|
|
862
|
+
/**
|
|
863
|
+
* 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.
|
|
864
|
+
*/
|
|
865
|
+
'dashboardParametersOverride'?: Array<DashboardParameterValue>;
|
|
845
866
|
/**
|
|
846
867
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
847
868
|
*/
|
|
848
869
|
'dashboardTabsFiltersOverrides'?: {
|
|
849
870
|
[key: string]: Array<DashboardFilter>;
|
|
850
871
|
};
|
|
872
|
+
/**
|
|
873
|
+
* 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.
|
|
874
|
+
*/
|
|
875
|
+
'dashboardTabsParametersOverrides'?: {
|
|
876
|
+
[key: string]: Array<DashboardParameterValue>;
|
|
877
|
+
};
|
|
851
878
|
/**
|
|
852
879
|
* Dashboard identifier
|
|
853
880
|
*/
|