@gooddata/api-client-tiger 10.33.0-alpha.79 → 10.33.0-alpha.8
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +11479 -14798
- package/esm/client.d.ts +3 -3
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +2 -2
- package/esm/client.js.map +1 -1
- package/esm/export.d.ts +4 -2
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +3 -2
- package/esm/export.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +13 -376
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +4 -305
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +2 -180
- package/esm/generated/automation-json-api/api.d.ts +1 -473
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +0 -74
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +2 -391
- package/esm/generated/export-json-api/api.d.ts +1074 -1129
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +342 -363
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +1 -50
- package/esm/generated/metadata-json-api/api.d.ts +1222 -1874
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +46 -307
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8389 -8843
- package/esm/index.d.ts +3 -5
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -2
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -172,12 +172,6 @@ export interface AutomationAdHocAutomation {
|
|
|
172
172
|
* @memberof AutomationAdHocAutomation
|
|
173
173
|
*/
|
|
174
174
|
slidesExports?: Array<AutomationAutomationSlidesExport>;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @type {Array<AutomationAutomationDashboardTabularExport>}
|
|
178
|
-
* @memberof AutomationAdHocAutomation
|
|
179
|
-
*/
|
|
180
|
-
dashboardTabularExports?: Array<AutomationAutomationDashboardTabularExport>;
|
|
181
175
|
/**
|
|
182
176
|
* External recipients of the automation action results.
|
|
183
177
|
* @type {Array<AutomationAutomationExternalRecipient>}
|
|
@@ -662,62 +656,12 @@ export declare const AutomationArithmeticMeasureDefinitionArithmeticMeasureOpera
|
|
|
662
656
|
readonly CHANGE: "CHANGE";
|
|
663
657
|
};
|
|
664
658
|
export type AutomationArithmeticMeasureDefinitionArithmeticMeasureOperatorEnum = typeof AutomationArithmeticMeasureDefinitionArithmeticMeasureOperatorEnum[keyof typeof AutomationArithmeticMeasureDefinitionArithmeticMeasureOperatorEnum];
|
|
665
|
-
/**
|
|
666
|
-
* @type AutomationAttributeElements
|
|
667
|
-
* @export
|
|
668
|
-
*/
|
|
669
|
-
export type AutomationAttributeElements = AutomationAttributeElementsByRef | AutomationAttributeElementsByValue;
|
|
670
|
-
/**
|
|
671
|
-
*
|
|
672
|
-
* @export
|
|
673
|
-
* @interface AutomationAttributeElementsByRef
|
|
674
|
-
*/
|
|
675
|
-
export interface AutomationAttributeElementsByRef {
|
|
676
|
-
/**
|
|
677
|
-
* List of attribute elements by reference
|
|
678
|
-
* @type {Array<string>}
|
|
679
|
-
* @memberof AutomationAttributeElementsByRef
|
|
680
|
-
*/
|
|
681
|
-
uris: Array<string>;
|
|
682
|
-
}
|
|
683
|
-
/**
|
|
684
|
-
*
|
|
685
|
-
* @export
|
|
686
|
-
* @interface AutomationAttributeElementsByValue
|
|
687
|
-
*/
|
|
688
|
-
export interface AutomationAttributeElementsByValue {
|
|
689
|
-
/**
|
|
690
|
-
* List of attribute elements by value
|
|
691
|
-
* @type {Array<string>}
|
|
692
|
-
* @memberof AutomationAttributeElementsByValue
|
|
693
|
-
*/
|
|
694
|
-
values: Array<string>;
|
|
695
|
-
}
|
|
696
659
|
/**
|
|
697
660
|
* @type AutomationAttributeFilter
|
|
698
661
|
* Abstract filter definition type attributes
|
|
699
662
|
* @export
|
|
700
663
|
*/
|
|
701
664
|
export type AutomationAttributeFilter = AutomationNegativeAttributeFilter | AutomationPositiveAttributeFilter;
|
|
702
|
-
/**
|
|
703
|
-
*
|
|
704
|
-
* @export
|
|
705
|
-
* @interface AutomationAttributeFilterByDate
|
|
706
|
-
*/
|
|
707
|
-
export interface AutomationAttributeFilterByDate {
|
|
708
|
-
/**
|
|
709
|
-
*
|
|
710
|
-
* @type {string}
|
|
711
|
-
* @memberof AutomationAttributeFilterByDate
|
|
712
|
-
*/
|
|
713
|
-
filterLocalIdentifier: string;
|
|
714
|
-
/**
|
|
715
|
-
*
|
|
716
|
-
* @type {boolean}
|
|
717
|
-
* @memberof AutomationAttributeFilterByDate
|
|
718
|
-
*/
|
|
719
|
-
isCommonDate: boolean;
|
|
720
|
-
}
|
|
721
665
|
/**
|
|
722
666
|
* Filter on specific set of label values.
|
|
723
667
|
* @export
|
|
@@ -731,25 +675,6 @@ export interface AutomationAttributeFilterElements {
|
|
|
731
675
|
*/
|
|
732
676
|
values: Array<string>;
|
|
733
677
|
}
|
|
734
|
-
/**
|
|
735
|
-
*
|
|
736
|
-
* @export
|
|
737
|
-
* @interface AutomationAttributeFilterParent
|
|
738
|
-
*/
|
|
739
|
-
export interface AutomationAttributeFilterParent {
|
|
740
|
-
/**
|
|
741
|
-
*
|
|
742
|
-
* @type {string}
|
|
743
|
-
* @memberof AutomationAttributeFilterParent
|
|
744
|
-
*/
|
|
745
|
-
filterLocalIdentifier: string;
|
|
746
|
-
/**
|
|
747
|
-
*
|
|
748
|
-
* @type {AutomationOver}
|
|
749
|
-
* @memberof AutomationAttributeFilterParent
|
|
750
|
-
*/
|
|
751
|
-
over: AutomationOver;
|
|
752
|
-
}
|
|
753
678
|
/**
|
|
754
679
|
*
|
|
755
680
|
* @export
|
|
@@ -805,19 +730,6 @@ export declare const AutomationAutomationAlertTriggerEnum: {
|
|
|
805
730
|
readonly ONCE: "ONCE";
|
|
806
731
|
};
|
|
807
732
|
export type AutomationAutomationAlertTriggerEnum = typeof AutomationAutomationAlertTriggerEnum[keyof typeof AutomationAutomationAlertTriggerEnum];
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @export
|
|
811
|
-
* @interface AutomationAutomationDashboardTabularExport
|
|
812
|
-
*/
|
|
813
|
-
export interface AutomationAutomationDashboardTabularExport {
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {AutomationDashboardTabularExportRequestV2}
|
|
817
|
-
* @memberof AutomationAutomationDashboardTabularExport
|
|
818
|
-
*/
|
|
819
|
-
requestPayload: AutomationDashboardTabularExportRequestV2;
|
|
820
|
-
}
|
|
821
733
|
/**
|
|
822
734
|
*
|
|
823
735
|
* @export
|
|
@@ -941,55 +853,6 @@ export interface AutomationAutomationVisualExport {
|
|
|
941
853
|
*/
|
|
942
854
|
requestPayload: AutomationVisualExportRequest;
|
|
943
855
|
}
|
|
944
|
-
/**
|
|
945
|
-
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
946
|
-
* @export
|
|
947
|
-
* @interface AutomationBoundedFilter
|
|
948
|
-
*/
|
|
949
|
-
export interface AutomationBoundedFilter {
|
|
950
|
-
/**
|
|
951
|
-
*
|
|
952
|
-
* @type {AutomationAfmObjectIdentifierDataset}
|
|
953
|
-
* @memberof AutomationBoundedFilter
|
|
954
|
-
*/
|
|
955
|
-
dataset: AutomationAfmObjectIdentifierDataset;
|
|
956
|
-
/**
|
|
957
|
-
* Date granularity specifying particular date attribute in given dimension.
|
|
958
|
-
* @type {string}
|
|
959
|
-
* @memberof AutomationBoundedFilter
|
|
960
|
-
*/
|
|
961
|
-
granularity: AutomationBoundedFilterGranularityEnum;
|
|
962
|
-
/**
|
|
963
|
-
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
964
|
-
* @type {number}
|
|
965
|
-
* @memberof AutomationBoundedFilter
|
|
966
|
-
*/
|
|
967
|
-
from?: number | null;
|
|
968
|
-
/**
|
|
969
|
-
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
970
|
-
* @type {number}
|
|
971
|
-
* @memberof AutomationBoundedFilter
|
|
972
|
-
*/
|
|
973
|
-
to?: number | null;
|
|
974
|
-
}
|
|
975
|
-
export declare const AutomationBoundedFilterGranularityEnum: {
|
|
976
|
-
readonly MINUTE: "MINUTE";
|
|
977
|
-
readonly HOUR: "HOUR";
|
|
978
|
-
readonly DAY: "DAY";
|
|
979
|
-
readonly WEEK: "WEEK";
|
|
980
|
-
readonly MONTH: "MONTH";
|
|
981
|
-
readonly QUARTER: "QUARTER";
|
|
982
|
-
readonly YEAR: "YEAR";
|
|
983
|
-
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
984
|
-
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
985
|
-
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
986
|
-
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
987
|
-
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
988
|
-
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
989
|
-
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
990
|
-
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
991
|
-
};
|
|
992
|
-
export type AutomationBoundedFilterGranularityEnum = typeof AutomationBoundedFilterGranularityEnum[keyof typeof AutomationBoundedFilterGranularityEnum];
|
|
993
856
|
/**
|
|
994
857
|
*
|
|
995
858
|
* @export
|
|
@@ -1163,268 +1026,12 @@ export interface AutomationCustomOverride {
|
|
|
1163
1026
|
[key: string]: AutomationCustomMetric;
|
|
1164
1027
|
};
|
|
1165
1028
|
}
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @export
|
|
1169
|
-
* @interface AutomationDashboardAttributeFilter
|
|
1170
|
-
*/
|
|
1171
|
-
export interface AutomationDashboardAttributeFilter {
|
|
1172
|
-
/**
|
|
1173
|
-
*
|
|
1174
|
-
* @type {AutomationDashboardAttributeFilterAttributeFilter}
|
|
1175
|
-
* @memberof AutomationDashboardAttributeFilter
|
|
1176
|
-
*/
|
|
1177
|
-
attributeFilter: AutomationDashboardAttributeFilterAttributeFilter;
|
|
1178
|
-
}
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @export
|
|
1182
|
-
* @interface AutomationDashboardAttributeFilterAttributeFilter
|
|
1183
|
-
*/
|
|
1184
|
-
export interface AutomationDashboardAttributeFilterAttributeFilter {
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {AutomationIdentifierRef}
|
|
1188
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1189
|
-
*/
|
|
1190
|
-
displayForm: AutomationIdentifierRef;
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {boolean}
|
|
1194
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1195
|
-
*/
|
|
1196
|
-
negativeSelection: boolean;
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {AutomationAttributeElements}
|
|
1200
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1201
|
-
*/
|
|
1202
|
-
attributeElements: AutomationAttributeElements;
|
|
1203
|
-
/**
|
|
1204
|
-
*
|
|
1205
|
-
* @type {Array<AutomationAttributeFilterParent>}
|
|
1206
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1207
|
-
*/
|
|
1208
|
-
filterElementsBy?: Array<AutomationAttributeFilterParent>;
|
|
1209
|
-
/**
|
|
1210
|
-
*
|
|
1211
|
-
* @type {Array<AutomationAttributeFilterByDate>}
|
|
1212
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1213
|
-
*/
|
|
1214
|
-
filterElementsByDate?: Array<AutomationAttributeFilterByDate>;
|
|
1215
|
-
/**
|
|
1216
|
-
*
|
|
1217
|
-
* @type {Array<AutomationIdentifierRef>}
|
|
1218
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1219
|
-
*/
|
|
1220
|
-
validateElementsBy?: Array<AutomationIdentifierRef>;
|
|
1221
|
-
/**
|
|
1222
|
-
*
|
|
1223
|
-
* @type {string}
|
|
1224
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1225
|
-
*/
|
|
1226
|
-
title?: string;
|
|
1227
|
-
/**
|
|
1228
|
-
*
|
|
1229
|
-
* @type {string}
|
|
1230
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1231
|
-
*/
|
|
1232
|
-
selectionMode?: AutomationDashboardAttributeFilterAttributeFilterSelectionModeEnum;
|
|
1233
|
-
/**
|
|
1234
|
-
*
|
|
1235
|
-
* @type {string}
|
|
1236
|
-
* @memberof AutomationDashboardAttributeFilterAttributeFilter
|
|
1237
|
-
*/
|
|
1238
|
-
localIdentifier?: string;
|
|
1239
|
-
}
|
|
1240
|
-
export declare const AutomationDashboardAttributeFilterAttributeFilterSelectionModeEnum: {
|
|
1241
|
-
readonly SINGLE: "single";
|
|
1242
|
-
readonly MULTI: "multi";
|
|
1243
|
-
};
|
|
1244
|
-
export type AutomationDashboardAttributeFilterAttributeFilterSelectionModeEnum = typeof AutomationDashboardAttributeFilterAttributeFilterSelectionModeEnum[keyof typeof AutomationDashboardAttributeFilterAttributeFilterSelectionModeEnum];
|
|
1245
|
-
/**
|
|
1246
|
-
*
|
|
1247
|
-
* @export
|
|
1248
|
-
* @interface AutomationDashboardDateFilter
|
|
1249
|
-
*/
|
|
1250
|
-
export interface AutomationDashboardDateFilter {
|
|
1251
|
-
/**
|
|
1252
|
-
*
|
|
1253
|
-
* @type {AutomationDashboardDateFilterDateFilter}
|
|
1254
|
-
* @memberof AutomationDashboardDateFilter
|
|
1255
|
-
*/
|
|
1256
|
-
dateFilter: AutomationDashboardDateFilterDateFilter;
|
|
1257
|
-
}
|
|
1258
|
-
/**
|
|
1259
|
-
*
|
|
1260
|
-
* @export
|
|
1261
|
-
* @interface AutomationDashboardDateFilterDateFilter
|
|
1262
|
-
*/
|
|
1263
|
-
export interface AutomationDashboardDateFilterDateFilter {
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @type {string}
|
|
1267
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1268
|
-
*/
|
|
1269
|
-
type: AutomationDashboardDateFilterDateFilterTypeEnum;
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {string}
|
|
1273
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1274
|
-
*/
|
|
1275
|
-
granularity: AutomationDashboardDateFilterDateFilterGranularityEnum;
|
|
1276
|
-
/**
|
|
1277
|
-
*
|
|
1278
|
-
* @type {string | number}
|
|
1279
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1280
|
-
*/
|
|
1281
|
-
from?: string | number;
|
|
1282
|
-
/**
|
|
1283
|
-
*
|
|
1284
|
-
* @type {string | number}
|
|
1285
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1286
|
-
*/
|
|
1287
|
-
to?: string | number;
|
|
1288
|
-
/**
|
|
1289
|
-
*
|
|
1290
|
-
* @type {AutomationIdentifierRef}
|
|
1291
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1292
|
-
*/
|
|
1293
|
-
dataSet?: AutomationIdentifierRef;
|
|
1294
|
-
/**
|
|
1295
|
-
*
|
|
1296
|
-
* @type {AutomationIdentifierRef}
|
|
1297
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1298
|
-
*/
|
|
1299
|
-
attribute?: AutomationIdentifierRef;
|
|
1300
|
-
/**
|
|
1301
|
-
*
|
|
1302
|
-
* @type {string}
|
|
1303
|
-
* @memberof AutomationDashboardDateFilterDateFilter
|
|
1304
|
-
*/
|
|
1305
|
-
localIdentifier?: string;
|
|
1306
|
-
}
|
|
1307
|
-
export declare const AutomationDashboardDateFilterDateFilterTypeEnum: {
|
|
1308
|
-
readonly RELATIVE: "relative";
|
|
1309
|
-
readonly ABSOLUTE: "absolute";
|
|
1310
|
-
};
|
|
1311
|
-
export type AutomationDashboardDateFilterDateFilterTypeEnum = typeof AutomationDashboardDateFilterDateFilterTypeEnum[keyof typeof AutomationDashboardDateFilterDateFilterTypeEnum];
|
|
1312
|
-
export declare const AutomationDashboardDateFilterDateFilterGranularityEnum: {
|
|
1313
|
-
readonly ALL_TIME_GRANULARITY: "ALL_TIME_GRANULARITY";
|
|
1314
|
-
readonly GDC_TIME_YEAR: "GDC.time.year";
|
|
1315
|
-
readonly GDC_TIME_WEEK_US: "GDC.time.week_us";
|
|
1316
|
-
readonly GDC_TIME_WEEK_IN_YEAR: "GDC.time.week_in_year";
|
|
1317
|
-
readonly GDC_TIME_WEEK_IN_QUARTER: "GDC.time.week_in_quarter";
|
|
1318
|
-
readonly GDC_TIME_WEEK: "GDC.time.week";
|
|
1319
|
-
readonly GDC_TIME_EUWEEK_IN_YEAR: "GDC.time.euweek_in_year";
|
|
1320
|
-
readonly GDC_TIME_EUWEEK_IN_QUARTER: "GDC.time.euweek_in_quarter";
|
|
1321
|
-
readonly GDC_TIME_QUARTER: "GDC.time.quarter";
|
|
1322
|
-
readonly GDC_TIME_QUARTER_IN_YEAR: "GDC.time.quarter_in_year";
|
|
1323
|
-
readonly GDC_TIME_MONTH: "GDC.time.month";
|
|
1324
|
-
readonly GDC_TIME_MONTH_IN_QUARTER: "GDC.time.month_in_quarter";
|
|
1325
|
-
readonly GDC_TIME_MONTH_IN_YEAR: "GDC.time.month_in_year";
|
|
1326
|
-
readonly GDC_TIME_DAY_IN_YEAR: "GDC.time.day_in_year";
|
|
1327
|
-
readonly GDC_TIME_DAY_IN_QUARTER: "GDC.time.day_in_quarter";
|
|
1328
|
-
readonly GDC_TIME_DAY_IN_MONTH: "GDC.time.day_in_month";
|
|
1329
|
-
readonly GDC_TIME_DAY_IN_WEEK: "GDC.time.day_in_week";
|
|
1330
|
-
readonly GDC_TIME_DAY_IN_EUWEEK: "GDC.time.day_in_euweek";
|
|
1331
|
-
readonly GDC_TIME_DATE: "GDC.time.date";
|
|
1332
|
-
readonly GDC_TIME_HOUR: "GDC.time.hour";
|
|
1333
|
-
readonly GDC_TIME_HOUR_IN_DAY: "GDC.time.hour_in_day";
|
|
1334
|
-
readonly GDC_TIME_MINUTE: "GDC.time.minute";
|
|
1335
|
-
readonly GDC_TIME_MINUTE_IN_HOUR: "GDC.time.minute_in_hour";
|
|
1336
|
-
};
|
|
1337
|
-
export type AutomationDashboardDateFilterDateFilterGranularityEnum = typeof AutomationDashboardDateFilterDateFilterGranularityEnum[keyof typeof AutomationDashboardDateFilterDateFilterGranularityEnum];
|
|
1338
|
-
/**
|
|
1339
|
-
* Additional settings.
|
|
1340
|
-
* @export
|
|
1341
|
-
* @interface AutomationDashboardExportSettings
|
|
1342
|
-
*/
|
|
1343
|
-
export interface AutomationDashboardExportSettings {
|
|
1344
|
-
/**
|
|
1345
|
-
* If true, the export will contain the information about the exported date and dashboard filters.
|
|
1346
|
-
* @type {boolean}
|
|
1347
|
-
* @memberof AutomationDashboardExportSettings
|
|
1348
|
-
*/
|
|
1349
|
-
exportInfo?: boolean;
|
|
1350
|
-
/**
|
|
1351
|
-
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
1352
|
-
* @type {boolean}
|
|
1353
|
-
* @memberof AutomationDashboardExportSettings
|
|
1354
|
-
*/
|
|
1355
|
-
mergeHeaders?: boolean;
|
|
1356
|
-
}
|
|
1357
|
-
/**
|
|
1358
|
-
* @type AutomationDashboardFilter
|
|
1359
|
-
* @export
|
|
1360
|
-
*/
|
|
1361
|
-
export type AutomationDashboardFilter = AutomationDashboardAttributeFilter | AutomationDashboardDateFilter;
|
|
1362
|
-
/**
|
|
1363
|
-
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
1364
|
-
* @export
|
|
1365
|
-
* @interface AutomationDashboardTabularExportRequestV2
|
|
1366
|
-
*/
|
|
1367
|
-
export interface AutomationDashboardTabularExportRequestV2 {
|
|
1368
|
-
/**
|
|
1369
|
-
* Requested tabular export type.
|
|
1370
|
-
* @type {string}
|
|
1371
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1372
|
-
*/
|
|
1373
|
-
format: AutomationDashboardTabularExportRequestV2FormatEnum;
|
|
1374
|
-
/**
|
|
1375
|
-
* Filename of downloaded file without extension.
|
|
1376
|
-
* @type {string}
|
|
1377
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1378
|
-
*/
|
|
1379
|
-
fileName: string;
|
|
1380
|
-
/**
|
|
1381
|
-
* List of filters that will be used instead of the default dashboard filters.
|
|
1382
|
-
* @type {Array<AutomationDashboardFilter>}
|
|
1383
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1384
|
-
*/
|
|
1385
|
-
dashboardFiltersOverride?: Array<AutomationDashboardFilter>;
|
|
1386
|
-
/**
|
|
1387
|
-
* Dashboard identifier
|
|
1388
|
-
* @type {string}
|
|
1389
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1390
|
-
*/
|
|
1391
|
-
dashboardId: string;
|
|
1392
|
-
/**
|
|
1393
|
-
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
1394
|
-
* @type {Array<string>}
|
|
1395
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1396
|
-
*/
|
|
1397
|
-
widgetIds?: Array<string>;
|
|
1398
|
-
/**
|
|
1399
|
-
*
|
|
1400
|
-
* @type {AutomationDashboardExportSettings}
|
|
1401
|
-
* @memberof AutomationDashboardTabularExportRequestV2
|
|
1402
|
-
*/
|
|
1403
|
-
settings?: AutomationDashboardExportSettings;
|
|
1404
|
-
}
|
|
1405
|
-
export declare const AutomationDashboardTabularExportRequestV2FormatEnum: {
|
|
1406
|
-
readonly XLSX: "XLSX";
|
|
1407
|
-
};
|
|
1408
|
-
export type AutomationDashboardTabularExportRequestV2FormatEnum = typeof AutomationDashboardTabularExportRequestV2FormatEnum[keyof typeof AutomationDashboardTabularExportRequestV2FormatEnum];
|
|
1409
1029
|
/**
|
|
1410
1030
|
* @type AutomationDateFilter
|
|
1411
1031
|
* Abstract filter definition type for dates.
|
|
1412
1032
|
* @export
|
|
1413
1033
|
*/
|
|
1414
1034
|
export type AutomationDateFilter = AutomationAbsoluteDateFilter | AutomationRelativeDateFilter;
|
|
1415
|
-
/**
|
|
1416
|
-
*
|
|
1417
|
-
* @export
|
|
1418
|
-
* @interface AutomationDateValue
|
|
1419
|
-
*/
|
|
1420
|
-
export interface AutomationDateValue {
|
|
1421
|
-
/**
|
|
1422
|
-
*
|
|
1423
|
-
* @type {string}
|
|
1424
|
-
* @memberof AutomationDateValue
|
|
1425
|
-
*/
|
|
1426
|
-
value: string;
|
|
1427
|
-
}
|
|
1428
1035
|
/**
|
|
1429
1036
|
* An analytical dashboard identifier.
|
|
1430
1037
|
* @export
|
|
@@ -1622,60 +1229,6 @@ export type AutomationFilterDefinition = AutomationAbsoluteDateFilter | Automati
|
|
|
1622
1229
|
* @export
|
|
1623
1230
|
*/
|
|
1624
1231
|
export type AutomationFilterDefinitionForSimpleMeasure = AutomationAttributeFilter | AutomationDateFilter;
|
|
1625
|
-
/**
|
|
1626
|
-
*
|
|
1627
|
-
* @export
|
|
1628
|
-
* @interface AutomationIdentifierRef
|
|
1629
|
-
*/
|
|
1630
|
-
export interface AutomationIdentifierRef {
|
|
1631
|
-
/**
|
|
1632
|
-
*
|
|
1633
|
-
* @type {AutomationIdentifierRefIdentifier}
|
|
1634
|
-
* @memberof AutomationIdentifierRef
|
|
1635
|
-
*/
|
|
1636
|
-
identifier?: AutomationIdentifierRefIdentifier;
|
|
1637
|
-
}
|
|
1638
|
-
/**
|
|
1639
|
-
*
|
|
1640
|
-
* @export
|
|
1641
|
-
* @interface AutomationIdentifierRefIdentifier
|
|
1642
|
-
*/
|
|
1643
|
-
export interface AutomationIdentifierRefIdentifier {
|
|
1644
|
-
/**
|
|
1645
|
-
*
|
|
1646
|
-
* @type {string}
|
|
1647
|
-
* @memberof AutomationIdentifierRefIdentifier
|
|
1648
|
-
*/
|
|
1649
|
-
id: string;
|
|
1650
|
-
/**
|
|
1651
|
-
*
|
|
1652
|
-
* @type {string}
|
|
1653
|
-
* @memberof AutomationIdentifierRefIdentifier
|
|
1654
|
-
*/
|
|
1655
|
-
type: AutomationIdentifierRefIdentifierTypeEnum;
|
|
1656
|
-
}
|
|
1657
|
-
export declare const AutomationIdentifierRefIdentifierTypeEnum: {
|
|
1658
|
-
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
1659
|
-
readonly ATTRIBUTE: "attribute";
|
|
1660
|
-
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
1661
|
-
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
1662
|
-
readonly DATASET: "dataset";
|
|
1663
|
-
readonly FACT: "fact";
|
|
1664
|
-
readonly LABEL: "label";
|
|
1665
|
-
readonly METRIC: "metric";
|
|
1666
|
-
readonly USER_DATA_FILTER: "userDataFilter";
|
|
1667
|
-
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
1668
|
-
readonly AUTOMATION: "automation";
|
|
1669
|
-
readonly PROMPT: "prompt";
|
|
1670
|
-
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
1671
|
-
readonly FILTER_CONTEXT: "filterContext";
|
|
1672
|
-
readonly WORKSPACE_SETTINGS: "workspaceSettings";
|
|
1673
|
-
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
1674
|
-
readonly WORKSPACE_DATA_FILTER: "workspaceDataFilter";
|
|
1675
|
-
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
1676
|
-
readonly FILTER_VIEW: "filterView";
|
|
1677
|
-
};
|
|
1678
|
-
export type AutomationIdentifierRefIdentifierTypeEnum = typeof AutomationIdentifierRefIdentifierTypeEnum[keyof typeof AutomationIdentifierRefIdentifierTypeEnum];
|
|
1679
1232
|
/**
|
|
1680
1233
|
* Export request object describing the export properties and metadata for image exports.
|
|
1681
1234
|
* @export
|
|
@@ -2048,19 +1601,6 @@ export interface AutomationNotificationsMetaTotal {
|
|
|
2048
1601
|
*/
|
|
2049
1602
|
all: number;
|
|
2050
1603
|
}
|
|
2051
|
-
/**
|
|
2052
|
-
*
|
|
2053
|
-
* @export
|
|
2054
|
-
* @interface AutomationOver
|
|
2055
|
-
*/
|
|
2056
|
-
export interface AutomationOver {
|
|
2057
|
-
/**
|
|
2058
|
-
*
|
|
2059
|
-
* @type {Array<AutomationIdentifierRef>}
|
|
2060
|
-
* @memberof AutomationOver
|
|
2061
|
-
*/
|
|
2062
|
-
attributes: Array<AutomationIdentifierRef>;
|
|
2063
|
-
}
|
|
2064
1604
|
/**
|
|
2065
1605
|
* Custom CSS styles for the table. (PDF, HTML)
|
|
2066
1606
|
* @export
|
|
@@ -2557,7 +2097,7 @@ export declare const AutomationRelativeOperatorEnum: {
|
|
|
2557
2097
|
};
|
|
2558
2098
|
export type AutomationRelativeOperatorEnum = typeof AutomationRelativeOperatorEnum[keyof typeof AutomationRelativeOperatorEnum];
|
|
2559
2099
|
/**
|
|
2560
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
2100
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
2561
2101
|
* @export
|
|
2562
2102
|
* @interface AutomationRelativeDateFilter
|
|
2563
2103
|
*/
|
|
@@ -2605,12 +2145,6 @@ export interface AutomationRelativeDateFilterRelativeDateFilter {
|
|
|
2605
2145
|
* @memberof AutomationRelativeDateFilterRelativeDateFilter
|
|
2606
2146
|
*/
|
|
2607
2147
|
applyOnResult?: boolean;
|
|
2608
|
-
/**
|
|
2609
|
-
*
|
|
2610
|
-
* @type {AutomationBoundedFilter}
|
|
2611
|
-
* @memberof AutomationRelativeDateFilterRelativeDateFilter
|
|
2612
|
-
*/
|
|
2613
|
-
boundedFilter?: AutomationBoundedFilter;
|
|
2614
2148
|
/**
|
|
2615
2149
|
*
|
|
2616
2150
|
* @type {AutomationAfmObjectIdentifierDataset}
|
|
@@ -3239,12 +2773,6 @@ export interface AutomationWebhookMessageData {
|
|
|
3239
2773
|
* @memberof AutomationWebhookMessageData
|
|
3240
2774
|
*/
|
|
3241
2775
|
slidesExports?: Array<AutomationExportResult>;
|
|
3242
|
-
/**
|
|
3243
|
-
*
|
|
3244
|
-
* @type {Array<AutomationExportResult>}
|
|
3245
|
-
* @memberof AutomationWebhookMessageData
|
|
3246
|
-
*/
|
|
3247
|
-
dashboardTabularExports?: Array<AutomationExportResult>;
|
|
3248
2776
|
/**
|
|
3249
2777
|
*
|
|
3250
2778
|
* @type {AutomationAlertDescription}
|