@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.
- 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 +12630 -9311
- 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 +2 -4
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +2 -3
- package/esm/export.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +376 -13
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +305 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
- package/esm/generated/automation-json-api/api.d.ts +473 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +74 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +391 -2
- package/esm/generated/export-json-api/api.d.ts +1129 -1074
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +363 -342
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +50 -1
- package/esm/generated/metadata-json-api/api.d.ts +1874 -1222
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +307 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8012 -7558
- package/esm/index.d.ts +5 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -476,6 +476,13 @@
|
|
|
476
476
|
"$ref": "#/components/schemas/AutomationSlidesExport"
|
|
477
477
|
}
|
|
478
478
|
},
|
|
479
|
+
"dashboardTabularExports": {
|
|
480
|
+
"uniqueItems": true,
|
|
481
|
+
"type": "array",
|
|
482
|
+
"items": {
|
|
483
|
+
"$ref": "#/components/schemas/AutomationDashboardTabularExport"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
479
486
|
"externalRecipients": {
|
|
480
487
|
"uniqueItems": true,
|
|
481
488
|
"type": "array",
|
|
@@ -750,6 +757,45 @@
|
|
|
750
757
|
},
|
|
751
758
|
"description": "Metric representing arithmetics between other metrics."
|
|
752
759
|
},
|
|
760
|
+
"AttributeElements": {
|
|
761
|
+
"type": "object",
|
|
762
|
+
"oneOf": [
|
|
763
|
+
{
|
|
764
|
+
"$ref": "#/components/schemas/AttributeElementsByRef"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"$ref": "#/components/schemas/AttributeElementsByValue"
|
|
768
|
+
}
|
|
769
|
+
]
|
|
770
|
+
},
|
|
771
|
+
"AttributeElementsByRef": {
|
|
772
|
+
"required": ["uris"],
|
|
773
|
+
"type": "object",
|
|
774
|
+
"properties": {
|
|
775
|
+
"uris": {
|
|
776
|
+
"type": "array",
|
|
777
|
+
"description": "List of attribute elements by reference",
|
|
778
|
+
"items": {
|
|
779
|
+
"type": "string",
|
|
780
|
+
"nullable": true
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"AttributeElementsByValue": {
|
|
786
|
+
"required": ["values"],
|
|
787
|
+
"type": "object",
|
|
788
|
+
"properties": {
|
|
789
|
+
"values": {
|
|
790
|
+
"type": "array",
|
|
791
|
+
"description": "List of attribute elements by value",
|
|
792
|
+
"items": {
|
|
793
|
+
"type": "string",
|
|
794
|
+
"nullable": true
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
},
|
|
753
799
|
"AttributeFilter": {
|
|
754
800
|
"type": "object",
|
|
755
801
|
"description": "Abstract filter definition type attributes",
|
|
@@ -762,6 +808,18 @@
|
|
|
762
808
|
}
|
|
763
809
|
]
|
|
764
810
|
},
|
|
811
|
+
"AttributeFilterByDate": {
|
|
812
|
+
"required": ["filterLocalIdentifier", "isCommonDate"],
|
|
813
|
+
"type": "object",
|
|
814
|
+
"properties": {
|
|
815
|
+
"filterLocalIdentifier": {
|
|
816
|
+
"type": "string"
|
|
817
|
+
},
|
|
818
|
+
"isCommonDate": {
|
|
819
|
+
"type": "boolean"
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
},
|
|
765
823
|
"AttributeFilterElements": {
|
|
766
824
|
"required": ["values"],
|
|
767
825
|
"type": "object",
|
|
@@ -779,6 +837,18 @@
|
|
|
779
837
|
},
|
|
780
838
|
"description": "Filter on specific set of label values."
|
|
781
839
|
},
|
|
840
|
+
"AttributeFilterParent": {
|
|
841
|
+
"required": ["filterLocalIdentifier", "over"],
|
|
842
|
+
"type": "object",
|
|
843
|
+
"properties": {
|
|
844
|
+
"filterLocalIdentifier": {
|
|
845
|
+
"type": "string"
|
|
846
|
+
},
|
|
847
|
+
"over": {
|
|
848
|
+
"$ref": "#/components/schemas/Over"
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
},
|
|
782
852
|
"AttributeItem": {
|
|
783
853
|
"required": ["label", "localIdentifier"],
|
|
784
854
|
"type": "object",
|
|
@@ -827,6 +897,15 @@
|
|
|
827
897
|
}
|
|
828
898
|
}
|
|
829
899
|
},
|
|
900
|
+
"AutomationDashboardTabularExport": {
|
|
901
|
+
"required": ["requestPayload"],
|
|
902
|
+
"type": "object",
|
|
903
|
+
"properties": {
|
|
904
|
+
"requestPayload": {
|
|
905
|
+
"$ref": "#/components/schemas/DashboardTabularExportRequestV2"
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
},
|
|
830
909
|
"AutomationExternalRecipient": {
|
|
831
910
|
"required": ["email"],
|
|
832
911
|
"type": "object",
|
|
@@ -900,6 +979,52 @@
|
|
|
900
979
|
}
|
|
901
980
|
}
|
|
902
981
|
},
|
|
982
|
+
"BoundedFilter": {
|
|
983
|
+
"required": ["dataset", "granularity"],
|
|
984
|
+
"type": "object",
|
|
985
|
+
"properties": {
|
|
986
|
+
"dataset": {
|
|
987
|
+
"$ref": "#/components/schemas/AfmObjectIdentifierDataset"
|
|
988
|
+
},
|
|
989
|
+
"granularity": {
|
|
990
|
+
"type": "string",
|
|
991
|
+
"description": "Date granularity specifying particular date attribute in given dimension.",
|
|
992
|
+
"example": "DAY",
|
|
993
|
+
"enum": [
|
|
994
|
+
"MINUTE",
|
|
995
|
+
"HOUR",
|
|
996
|
+
"DAY",
|
|
997
|
+
"WEEK",
|
|
998
|
+
"MONTH",
|
|
999
|
+
"QUARTER",
|
|
1000
|
+
"YEAR",
|
|
1001
|
+
"MINUTE_OF_HOUR",
|
|
1002
|
+
"HOUR_OF_DAY",
|
|
1003
|
+
"DAY_OF_WEEK",
|
|
1004
|
+
"DAY_OF_MONTH",
|
|
1005
|
+
"DAY_OF_YEAR",
|
|
1006
|
+
"WEEK_OF_YEAR",
|
|
1007
|
+
"MONTH_OF_YEAR",
|
|
1008
|
+
"QUARTER_OF_YEAR"
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
"from": {
|
|
1012
|
+
"type": "integer",
|
|
1013
|
+
"description": "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.",
|
|
1014
|
+
"format": "int32",
|
|
1015
|
+
"nullable": true,
|
|
1016
|
+
"example": -6
|
|
1017
|
+
},
|
|
1018
|
+
"to": {
|
|
1019
|
+
"type": "integer",
|
|
1020
|
+
"description": "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.",
|
|
1021
|
+
"format": "int32",
|
|
1022
|
+
"nullable": true,
|
|
1023
|
+
"example": 0
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
"description": "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."
|
|
1027
|
+
},
|
|
903
1028
|
"Comparison": {
|
|
904
1029
|
"required": ["left", "operator", "right"],
|
|
905
1030
|
"type": "object",
|
|
@@ -1028,6 +1153,201 @@
|
|
|
1028
1153
|
},
|
|
1029
1154
|
"description": "Custom cell value overrides (IDs will be replaced with specified values)."
|
|
1030
1155
|
},
|
|
1156
|
+
"DashboardAttributeFilter": {
|
|
1157
|
+
"required": ["attributeFilter"],
|
|
1158
|
+
"type": "object",
|
|
1159
|
+
"properties": {
|
|
1160
|
+
"attributeFilter": {
|
|
1161
|
+
"required": ["attributeElements", "displayForm", "negativeSelection"],
|
|
1162
|
+
"type": "object",
|
|
1163
|
+
"properties": {
|
|
1164
|
+
"displayForm": {
|
|
1165
|
+
"$ref": "#/components/schemas/IdentifierRef"
|
|
1166
|
+
},
|
|
1167
|
+
"negativeSelection": {
|
|
1168
|
+
"type": "boolean"
|
|
1169
|
+
},
|
|
1170
|
+
"attributeElements": {
|
|
1171
|
+
"$ref": "#/components/schemas/AttributeElements"
|
|
1172
|
+
},
|
|
1173
|
+
"filterElementsBy": {
|
|
1174
|
+
"type": "array",
|
|
1175
|
+
"items": {
|
|
1176
|
+
"$ref": "#/components/schemas/AttributeFilterParent"
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
"filterElementsByDate": {
|
|
1180
|
+
"type": "array",
|
|
1181
|
+
"items": {
|
|
1182
|
+
"$ref": "#/components/schemas/AttributeFilterByDate"
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"validateElementsBy": {
|
|
1186
|
+
"type": "array",
|
|
1187
|
+
"items": {
|
|
1188
|
+
"$ref": "#/components/schemas/IdentifierRef"
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
"title": {
|
|
1192
|
+
"type": "string"
|
|
1193
|
+
},
|
|
1194
|
+
"selectionMode": {
|
|
1195
|
+
"type": "string",
|
|
1196
|
+
"enum": ["single", "multi"]
|
|
1197
|
+
},
|
|
1198
|
+
"localIdentifier": {
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
},
|
|
1205
|
+
"DashboardDateFilter": {
|
|
1206
|
+
"required": ["dateFilter"],
|
|
1207
|
+
"type": "object",
|
|
1208
|
+
"properties": {
|
|
1209
|
+
"dateFilter": {
|
|
1210
|
+
"required": ["granularity", "type"],
|
|
1211
|
+
"type": "object",
|
|
1212
|
+
"properties": {
|
|
1213
|
+
"type": {
|
|
1214
|
+
"type": "string",
|
|
1215
|
+
"enum": ["relative", "absolute"]
|
|
1216
|
+
},
|
|
1217
|
+
"granularity": {
|
|
1218
|
+
"type": "string",
|
|
1219
|
+
"enum": [
|
|
1220
|
+
"ALL_TIME_GRANULARITY",
|
|
1221
|
+
"GDC.time.year",
|
|
1222
|
+
"GDC.time.week_us",
|
|
1223
|
+
"GDC.time.week_in_year",
|
|
1224
|
+
"GDC.time.week_in_quarter",
|
|
1225
|
+
"GDC.time.week",
|
|
1226
|
+
"GDC.time.euweek_in_year",
|
|
1227
|
+
"GDC.time.euweek_in_quarter",
|
|
1228
|
+
"GDC.time.quarter",
|
|
1229
|
+
"GDC.time.quarter_in_year",
|
|
1230
|
+
"GDC.time.month",
|
|
1231
|
+
"GDC.time.month_in_quarter",
|
|
1232
|
+
"GDC.time.month_in_year",
|
|
1233
|
+
"GDC.time.day_in_year",
|
|
1234
|
+
"GDC.time.day_in_quarter",
|
|
1235
|
+
"GDC.time.day_in_month",
|
|
1236
|
+
"GDC.time.day_in_week",
|
|
1237
|
+
"GDC.time.day_in_euweek",
|
|
1238
|
+
"GDC.time.date",
|
|
1239
|
+
"GDC.time.hour",
|
|
1240
|
+
"GDC.time.hour_in_day",
|
|
1241
|
+
"GDC.time.minute",
|
|
1242
|
+
"GDC.time.minute_in_hour"
|
|
1243
|
+
]
|
|
1244
|
+
},
|
|
1245
|
+
"from": {
|
|
1246
|
+
"oneOf": [
|
|
1247
|
+
{
|
|
1248
|
+
"type": "string"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"type": "integer",
|
|
1252
|
+
"format": "int32"
|
|
1253
|
+
}
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"to": {
|
|
1257
|
+
"oneOf": [
|
|
1258
|
+
{
|
|
1259
|
+
"type": "string"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"type": "integer",
|
|
1263
|
+
"format": "int32"
|
|
1264
|
+
}
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
"dataSet": {
|
|
1268
|
+
"$ref": "#/components/schemas/IdentifierRef"
|
|
1269
|
+
},
|
|
1270
|
+
"attribute": {
|
|
1271
|
+
"$ref": "#/components/schemas/IdentifierRef"
|
|
1272
|
+
},
|
|
1273
|
+
"localIdentifier": {
|
|
1274
|
+
"type": "string"
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"DashboardExportSettings": {
|
|
1281
|
+
"type": "object",
|
|
1282
|
+
"properties": {
|
|
1283
|
+
"exportInfo": {
|
|
1284
|
+
"type": "boolean",
|
|
1285
|
+
"description": "If true, the export will contain the information about the exported date and dashboard filters.",
|
|
1286
|
+
"example": true,
|
|
1287
|
+
"default": false
|
|
1288
|
+
},
|
|
1289
|
+
"mergeHeaders": {
|
|
1290
|
+
"type": "boolean",
|
|
1291
|
+
"description": "Merge equal headers in neighbouring cells. Used for [XLSX] format only.",
|
|
1292
|
+
"example": true,
|
|
1293
|
+
"default": false
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1296
|
+
"description": "Additional settings."
|
|
1297
|
+
},
|
|
1298
|
+
"DashboardFilter": {
|
|
1299
|
+
"type": "object",
|
|
1300
|
+
"oneOf": [
|
|
1301
|
+
{
|
|
1302
|
+
"$ref": "#/components/schemas/DashboardAttributeFilter"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"$ref": "#/components/schemas/DashboardDateFilter"
|
|
1306
|
+
}
|
|
1307
|
+
]
|
|
1308
|
+
},
|
|
1309
|
+
"DashboardTabularExportRequestV2": {
|
|
1310
|
+
"required": ["dashboardId", "fileName", "format"],
|
|
1311
|
+
"type": "object",
|
|
1312
|
+
"properties": {
|
|
1313
|
+
"format": {
|
|
1314
|
+
"type": "string",
|
|
1315
|
+
"description": "Requested tabular export type.",
|
|
1316
|
+
"example": "XLSX",
|
|
1317
|
+
"enum": ["XLSX"]
|
|
1318
|
+
},
|
|
1319
|
+
"fileName": {
|
|
1320
|
+
"type": "string",
|
|
1321
|
+
"description": "Filename of downloaded file without extension.",
|
|
1322
|
+
"example": "result"
|
|
1323
|
+
},
|
|
1324
|
+
"dashboardFiltersOverride": {
|
|
1325
|
+
"type": "array",
|
|
1326
|
+
"description": "List of filters that will be used instead of the default dashboard filters.",
|
|
1327
|
+
"items": {
|
|
1328
|
+
"$ref": "#/components/schemas/DashboardFilter"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"dashboardId": {
|
|
1332
|
+
"type": "string",
|
|
1333
|
+
"description": "Dashboard identifier",
|
|
1334
|
+
"example": "761cd28b-3f57-4ac9-bbdc-1c552cc0d1d0"
|
|
1335
|
+
},
|
|
1336
|
+
"widgetIds": {
|
|
1337
|
+
"maxItems": 1,
|
|
1338
|
+
"uniqueItems": true,
|
|
1339
|
+
"type": "array",
|
|
1340
|
+
"description": "List of widget identifiers to be exported. Note that only one widget is currently supported.",
|
|
1341
|
+
"items": {
|
|
1342
|
+
"type": "string"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"settings": {
|
|
1346
|
+
"$ref": "#/components/schemas/DashboardExportSettings"
|
|
1347
|
+
}
|
|
1348
|
+
},
|
|
1349
|
+
"description": "Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId)."
|
|
1350
|
+
},
|
|
1031
1351
|
"DateFilter": {
|
|
1032
1352
|
"type": "object",
|
|
1033
1353
|
"description": "Abstract filter definition type for dates.",
|
|
@@ -1040,6 +1360,15 @@
|
|
|
1040
1360
|
}
|
|
1041
1361
|
]
|
|
1042
1362
|
},
|
|
1363
|
+
"DateValue": {
|
|
1364
|
+
"required": ["value"],
|
|
1365
|
+
"type": "object",
|
|
1366
|
+
"properties": {
|
|
1367
|
+
"value": {
|
|
1368
|
+
"type": "string"
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1043
1372
|
"DeclarativeAnalyticalDashboardIdentifier": {
|
|
1044
1373
|
"required": ["id", "type"],
|
|
1045
1374
|
"type": "object",
|
|
@@ -1159,6 +1488,44 @@
|
|
|
1159
1488
|
}
|
|
1160
1489
|
]
|
|
1161
1490
|
},
|
|
1491
|
+
"IdentifierRef": {
|
|
1492
|
+
"type": "object",
|
|
1493
|
+
"properties": {
|
|
1494
|
+
"identifier": {
|
|
1495
|
+
"required": ["id", "type"],
|
|
1496
|
+
"type": "object",
|
|
1497
|
+
"properties": {
|
|
1498
|
+
"id": {
|
|
1499
|
+
"type": "string"
|
|
1500
|
+
},
|
|
1501
|
+
"type": {
|
|
1502
|
+
"type": "string",
|
|
1503
|
+
"enum": [
|
|
1504
|
+
"analyticalDashboard",
|
|
1505
|
+
"attribute",
|
|
1506
|
+
"attributeHierarchy",
|
|
1507
|
+
"dashboardPlugin",
|
|
1508
|
+
"dataset",
|
|
1509
|
+
"fact",
|
|
1510
|
+
"label",
|
|
1511
|
+
"metric",
|
|
1512
|
+
"userDataFilter",
|
|
1513
|
+
"exportDefinition",
|
|
1514
|
+
"automation",
|
|
1515
|
+
"prompt",
|
|
1516
|
+
"visualizationObject",
|
|
1517
|
+
"filterContext",
|
|
1518
|
+
"workspaceSettings",
|
|
1519
|
+
"customApplicationSetting",
|
|
1520
|
+
"workspaceDataFilter",
|
|
1521
|
+
"workspaceDataFilterSetting",
|
|
1522
|
+
"filterView"
|
|
1523
|
+
]
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1162
1529
|
"ImageExportRequest": {
|
|
1163
1530
|
"required": ["dashboardId", "fileName", "format", "widgetIds"],
|
|
1164
1531
|
"type": "object",
|
|
@@ -1360,6 +1727,18 @@
|
|
|
1360
1727
|
},
|
|
1361
1728
|
"description": "Filter able to limit element values by label and related selected negated elements."
|
|
1362
1729
|
},
|
|
1730
|
+
"Over": {
|
|
1731
|
+
"required": ["attributes"],
|
|
1732
|
+
"type": "object",
|
|
1733
|
+
"properties": {
|
|
1734
|
+
"attributes": {
|
|
1735
|
+
"type": "array",
|
|
1736
|
+
"items": {
|
|
1737
|
+
"$ref": "#/components/schemas/IdentifierRef"
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
},
|
|
1363
1742
|
"PdfTableStyle": {
|
|
1364
1743
|
"required": ["selector"],
|
|
1365
1744
|
"type": "object",
|
|
@@ -1771,13 +2150,16 @@
|
|
|
1771
2150
|
"applyOnResult": {
|
|
1772
2151
|
"type": "boolean"
|
|
1773
2152
|
},
|
|
2153
|
+
"boundedFilter": {
|
|
2154
|
+
"$ref": "#/components/schemas/BoundedFilter"
|
|
2155
|
+
},
|
|
1774
2156
|
"dataset": {
|
|
1775
2157
|
"$ref": "#/components/schemas/AfmObjectIdentifierDataset"
|
|
1776
2158
|
}
|
|
1777
2159
|
}
|
|
1778
2160
|
}
|
|
1779
2161
|
},
|
|
1780
|
-
"description": "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."
|
|
2162
|
+
"description": "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."
|
|
1781
2163
|
},
|
|
1782
2164
|
"RelativeWrapper": {
|
|
1783
2165
|
"required": ["relative"],
|
|
@@ -2519,7 +2901,8 @@
|
|
|
2519
2901
|
"type": "object",
|
|
2520
2902
|
"properties": {
|
|
2521
2903
|
"timestamp": {
|
|
2522
|
-
"type": "string"
|
|
2904
|
+
"type": "string",
|
|
2905
|
+
"format": "date-time"
|
|
2523
2906
|
},
|
|
2524
2907
|
"data": {
|
|
2525
2908
|
"$ref": "#/components/schemas/WebhookMessageData"
|
|
@@ -2583,6 +2966,12 @@
|
|
|
2583
2966
|
"$ref": "#/components/schemas/ExportResult"
|
|
2584
2967
|
}
|
|
2585
2968
|
},
|
|
2969
|
+
"dashboardTabularExports": {
|
|
2970
|
+
"type": "array",
|
|
2971
|
+
"items": {
|
|
2972
|
+
"$ref": "#/components/schemas/ExportResult"
|
|
2973
|
+
}
|
|
2974
|
+
},
|
|
2586
2975
|
"alert": {
|
|
2587
2976
|
"$ref": "#/components/schemas/AlertDescription"
|
|
2588
2977
|
},
|