@gooddata/api-client-tiger 10.33.0-alpha.8 → 10.33.0-alpha.81

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.
Files changed (38) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.d.ts.map +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/__version.js.map +1 -1
  5. package/esm/api-client-tiger.d.ts +12630 -9311
  6. package/esm/client.d.ts +3 -3
  7. package/esm/client.d.ts.map +1 -1
  8. package/esm/client.js +2 -2
  9. package/esm/client.js.map +1 -1
  10. package/esm/export.d.ts +2 -4
  11. package/esm/export.d.ts.map +1 -1
  12. package/esm/export.js +2 -3
  13. package/esm/export.js.map +1 -1
  14. package/esm/generated/afm-rest-api/api.d.ts +376 -13
  15. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  16. package/esm/generated/afm-rest-api/api.js +305 -4
  17. package/esm/generated/afm-rest-api/api.js.map +1 -1
  18. package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
  19. package/esm/generated/automation-json-api/api.d.ts +473 -1
  20. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  21. package/esm/generated/automation-json-api/api.js +74 -0
  22. package/esm/generated/automation-json-api/api.js.map +1 -1
  23. package/esm/generated/automation-json-api/openapi-spec.json +391 -2
  24. package/esm/generated/export-json-api/api.d.ts +1129 -1074
  25. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  26. package/esm/generated/export-json-api/api.js +363 -342
  27. package/esm/generated/export-json-api/api.js.map +1 -1
  28. package/esm/generated/export-json-api/openapi-spec.json +50 -1
  29. package/esm/generated/metadata-json-api/api.d.ts +1874 -1222
  30. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  31. package/esm/generated/metadata-json-api/api.js +307 -46
  32. package/esm/generated/metadata-json-api/api.js.map +1 -1
  33. package/esm/generated/metadata-json-api/openapi-spec.json +8012 -7558
  34. package/esm/index.d.ts +5 -3
  35. package/esm/index.d.ts.map +1 -1
  36. package/esm/index.js +2 -1
  37. package/esm/index.js.map +1 -1
  38. package/package.json +3 -3
@@ -172,6 +172,12 @@ 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>;
175
181
  /**
176
182
  * External recipients of the automation action results.
177
183
  * @type {Array<AutomationAutomationExternalRecipient>}
@@ -656,12 +662,62 @@ export declare const AutomationArithmeticMeasureDefinitionArithmeticMeasureOpera
656
662
  readonly CHANGE: "CHANGE";
657
663
  };
658
664
  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
+ }
659
696
  /**
660
697
  * @type AutomationAttributeFilter
661
698
  * Abstract filter definition type attributes
662
699
  * @export
663
700
  */
664
701
  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
+ }
665
721
  /**
666
722
  * Filter on specific set of label values.
667
723
  * @export
@@ -675,6 +731,25 @@ export interface AutomationAttributeFilterElements {
675
731
  */
676
732
  values: Array<string>;
677
733
  }
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
+ }
678
753
  /**
679
754
  *
680
755
  * @export
@@ -730,6 +805,19 @@ export declare const AutomationAutomationAlertTriggerEnum: {
730
805
  readonly ONCE: "ONCE";
731
806
  };
732
807
  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
+ }
733
821
  /**
734
822
  *
735
823
  * @export
@@ -853,6 +941,55 @@ export interface AutomationAutomationVisualExport {
853
941
  */
854
942
  requestPayload: AutomationVisualExportRequest;
855
943
  }
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];
856
993
  /**
857
994
  *
858
995
  * @export
@@ -1026,12 +1163,268 @@ export interface AutomationCustomOverride {
1026
1163
  [key: string]: AutomationCustomMetric;
1027
1164
  };
1028
1165
  }
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];
1029
1409
  /**
1030
1410
  * @type AutomationDateFilter
1031
1411
  * Abstract filter definition type for dates.
1032
1412
  * @export
1033
1413
  */
1034
1414
  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
+ }
1035
1428
  /**
1036
1429
  * An analytical dashboard identifier.
1037
1430
  * @export
@@ -1229,6 +1622,60 @@ export type AutomationFilterDefinition = AutomationAbsoluteDateFilter | Automati
1229
1622
  * @export
1230
1623
  */
1231
1624
  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];
1232
1679
  /**
1233
1680
  * Export request object describing the export properties and metadata for image exports.
1234
1681
  * @export
@@ -1601,6 +2048,19 @@ export interface AutomationNotificationsMetaTotal {
1601
2048
  */
1602
2049
  all: number;
1603
2050
  }
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
+ }
1604
2064
  /**
1605
2065
  * Custom CSS styles for the table. (PDF, HTML)
1606
2066
  * @export
@@ -2097,7 +2557,7 @@ export declare const AutomationRelativeOperatorEnum: {
2097
2557
  };
2098
2558
  export type AutomationRelativeOperatorEnum = typeof AutomationRelativeOperatorEnum[keyof typeof AutomationRelativeOperatorEnum];
2099
2559
  /**
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.
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. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
2101
2561
  * @export
2102
2562
  * @interface AutomationRelativeDateFilter
2103
2563
  */
@@ -2145,6 +2605,12 @@ export interface AutomationRelativeDateFilterRelativeDateFilter {
2145
2605
  * @memberof AutomationRelativeDateFilterRelativeDateFilter
2146
2606
  */
2147
2607
  applyOnResult?: boolean;
2608
+ /**
2609
+ *
2610
+ * @type {AutomationBoundedFilter}
2611
+ * @memberof AutomationRelativeDateFilterRelativeDateFilter
2612
+ */
2613
+ boundedFilter?: AutomationBoundedFilter;
2148
2614
  /**
2149
2615
  *
2150
2616
  * @type {AutomationAfmObjectIdentifierDataset}
@@ -2773,6 +3239,12 @@ export interface AutomationWebhookMessageData {
2773
3239
  * @memberof AutomationWebhookMessageData
2774
3240
  */
2775
3241
  slidesExports?: Array<AutomationExportResult>;
3242
+ /**
3243
+ *
3244
+ * @type {Array<AutomationExportResult>}
3245
+ * @memberof AutomationWebhookMessageData
3246
+ */
3247
+ dashboardTabularExports?: Array<AutomationExportResult>;
2776
3248
  /**
2777
3249
  *
2778
3250
  * @type {AutomationAlertDescription}