@jrojaspin/security-map-api-cli 9.7.0 → 9.8.0
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/dist/index.cjs +206 -32
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +85 -14
- package/dist/index.mjs +177 -28
- package/dist/index.mjs.map +1 -1
- package/dist/models/AxisGrid.d.ts +8 -0
- package/dist/models/AxisGrid.js +28 -0
- package/dist/models/AxisGrid.js.map +1 -0
- package/dist/models/ChartDataset.d.ts +1 -0
- package/dist/models/ChartDataset.js +2 -0
- package/dist/models/ChartDataset.js.map +1 -1
- package/dist/models/ChartScales.d.ts +1 -0
- package/dist/models/ChartScales.js +2 -0
- package/dist/models/ChartScales.js.map +1 -1
- package/dist/models/Def227.d.ts +8 -0
- package/dist/models/Def227.js +16 -0
- package/dist/models/{Def223.js.map → Def227.js.map} +1 -1
- package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
- package/dist/models/ReportAllItemsListOutput.js +3 -3
- package/dist/models/ReportQueryAxis.d.ts +10 -0
- package/dist/models/ReportQueryAxis.js +27 -0
- package/dist/models/ReportQueryAxis.js.map +1 -0
- package/dist/models/ReportQueryDefinition.d.ts +9 -5
- package/dist/models/ReportQueryDefinition.js +15 -18
- package/dist/models/ReportQueryDefinition.js.map +1 -1
- package/dist/models/ReportQuerySeries.d.ts +35 -0
- package/dist/models/ReportQuerySeries.js +66 -0
- package/dist/models/ReportQuerySeries.js.map +1 -0
- package/dist/models/ReportQuerySeriesChart.d.ts +10 -0
- package/dist/models/ReportQuerySeriesChart.js +27 -0
- package/dist/models/ReportQuerySeriesChart.js.map +1 -0
- package/dist/models/YAxisOptions.d.ts +3 -0
- package/dist/models/YAxisOptions.js +5 -0
- package/dist/models/YAxisOptions.js.map +1 -1
- package/dist/models/index.d.ts +5 -1
- package/dist/models/index.js +5 -1
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/models/Def223.d.ts +0 -8
- package/dist/models/Def223.js +0 -16
package/dist/index.cjs
CHANGED
|
@@ -713,6 +713,34 @@ function AvailableArticlesOutputToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
713
713
|
};
|
|
714
714
|
}
|
|
715
715
|
|
|
716
|
+
function instanceOfAxisGrid(value) {
|
|
717
|
+
if (!('drawOnChartArea' in value) || value['drawOnChartArea'] === undefined)
|
|
718
|
+
return false;
|
|
719
|
+
return true;
|
|
720
|
+
}
|
|
721
|
+
function AxisGridFromJSON(json) {
|
|
722
|
+
return AxisGridFromJSONTyped(json);
|
|
723
|
+
}
|
|
724
|
+
function AxisGridFromJSONTyped(json, ignoreDiscriminator) {
|
|
725
|
+
if (json == null) {
|
|
726
|
+
return json;
|
|
727
|
+
}
|
|
728
|
+
return {
|
|
729
|
+
'drawOnChartArea': json['drawOnChartArea'],
|
|
730
|
+
};
|
|
731
|
+
}
|
|
732
|
+
function AxisGridToJSON(json) {
|
|
733
|
+
return AxisGridToJSONTyped(json, false);
|
|
734
|
+
}
|
|
735
|
+
function AxisGridToJSONTyped(value, ignoreDiscriminator = false) {
|
|
736
|
+
if (value == null) {
|
|
737
|
+
return value;
|
|
738
|
+
}
|
|
739
|
+
return {
|
|
740
|
+
'drawOnChartArea': value['drawOnChartArea'],
|
|
741
|
+
};
|
|
742
|
+
}
|
|
743
|
+
|
|
716
744
|
function instanceOfAxisTime(value) {
|
|
717
745
|
if (!('unit' in value) || value['unit'] === undefined)
|
|
718
746
|
return false;
|
|
@@ -924,6 +952,7 @@ function ChartDatasetFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
924
952
|
'fill': json['fill'] == null ? undefined : json['fill'],
|
|
925
953
|
'tension': json['tension'] == null ? undefined : json['tension'],
|
|
926
954
|
'label': json['label'],
|
|
955
|
+
'yAxisID': json['yAxisID'] == null ? undefined : json['yAxisID'],
|
|
927
956
|
};
|
|
928
957
|
}
|
|
929
958
|
function ChartDatasetToJSON(json) {
|
|
@@ -942,6 +971,7 @@ function ChartDatasetToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
942
971
|
'fill': value['fill'],
|
|
943
972
|
'tension': value['tension'],
|
|
944
973
|
'label': value['label'],
|
|
974
|
+
'yAxisID': value['yAxisID'],
|
|
945
975
|
};
|
|
946
976
|
}
|
|
947
977
|
|
|
@@ -1122,6 +1152,8 @@ function YAxisOptionsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
1122
1152
|
return {
|
|
1123
1153
|
'beginAtZero': json['beginAtZero'],
|
|
1124
1154
|
'title': AxisTitleFromJSON(json['title']),
|
|
1155
|
+
'position': json['position'] == null ? undefined : json['position'],
|
|
1156
|
+
'grid': json['grid'] == null ? undefined : AxisGridFromJSON(json['grid']),
|
|
1125
1157
|
};
|
|
1126
1158
|
}
|
|
1127
1159
|
function YAxisOptionsToJSON(json) {
|
|
@@ -1134,6 +1166,8 @@ function YAxisOptionsToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
1134
1166
|
return {
|
|
1135
1167
|
'beginAtZero': value['beginAtZero'],
|
|
1136
1168
|
'title': AxisTitleToJSON(value['title']),
|
|
1169
|
+
'position': value['position'],
|
|
1170
|
+
'grid': AxisGridToJSON(value['grid']),
|
|
1137
1171
|
};
|
|
1138
1172
|
}
|
|
1139
1173
|
|
|
@@ -1154,6 +1188,7 @@ function ChartScalesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
1154
1188
|
return {
|
|
1155
1189
|
'y': YAxisOptionsFromJSON(json['y']),
|
|
1156
1190
|
'x': XAxisOptionsFromJSON(json['x']),
|
|
1191
|
+
'y2': json['y2'] == null ? undefined : YAxisOptionsFromJSON(json['y2']),
|
|
1157
1192
|
};
|
|
1158
1193
|
}
|
|
1159
1194
|
function ChartScalesToJSON(json) {
|
|
@@ -1166,6 +1201,7 @@ function ChartScalesToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
1166
1201
|
return {
|
|
1167
1202
|
'y': YAxisOptionsToJSON(value['y']),
|
|
1168
1203
|
'x': XAxisOptionsToJSON(value['x']),
|
|
1204
|
+
'y2': YAxisOptionsToJSON(value['y2']),
|
|
1169
1205
|
};
|
|
1170
1206
|
}
|
|
1171
1207
|
|
|
@@ -1283,19 +1319,19 @@ function ComputeRouteInputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
1283
1319
|
};
|
|
1284
1320
|
}
|
|
1285
1321
|
|
|
1286
|
-
function
|
|
1322
|
+
function instanceOfDef227(value) {
|
|
1287
1323
|
return true;
|
|
1288
1324
|
}
|
|
1289
|
-
function
|
|
1290
|
-
return
|
|
1325
|
+
function Def227FromJSON(json) {
|
|
1326
|
+
return Def227FromJSONTyped(json);
|
|
1291
1327
|
}
|
|
1292
|
-
function
|
|
1328
|
+
function Def227FromJSONTyped(json, ignoreDiscriminator) {
|
|
1293
1329
|
return json;
|
|
1294
1330
|
}
|
|
1295
|
-
function
|
|
1296
|
-
return
|
|
1331
|
+
function Def227ToJSON(json) {
|
|
1332
|
+
return Def227ToJSONTyped(json, false);
|
|
1297
1333
|
}
|
|
1298
|
-
function
|
|
1334
|
+
function Def227ToJSONTyped(value, ignoreDiscriminator = false) {
|
|
1299
1335
|
return value;
|
|
1300
1336
|
}
|
|
1301
1337
|
|
|
@@ -5931,7 +5967,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
5931
5967
|
return json;
|
|
5932
5968
|
}
|
|
5933
5969
|
return {
|
|
5934
|
-
'data': (json['data'].map(
|
|
5970
|
+
'data': (json['data'].map(Def227FromJSON)),
|
|
5935
5971
|
'pageInfo': PageInfoFromJSON(json['pageInfo']),
|
|
5936
5972
|
};
|
|
5937
5973
|
}
|
|
@@ -5943,7 +5979,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
5943
5979
|
return value;
|
|
5944
5980
|
}
|
|
5945
5981
|
return {
|
|
5946
|
-
'data': (value['data'].map(
|
|
5982
|
+
'data': (value['data'].map(Def227ToJSON)),
|
|
5947
5983
|
'pageInfo': PageInfoToJSON(value['pageInfo']),
|
|
5948
5984
|
};
|
|
5949
5985
|
}
|
|
@@ -6576,6 +6612,33 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
6576
6612
|
};
|
|
6577
6613
|
}
|
|
6578
6614
|
|
|
6615
|
+
const ReportQueryAxis = {
|
|
6616
|
+
Y: 'y',
|
|
6617
|
+
Y2: 'y2'
|
|
6618
|
+
};
|
|
6619
|
+
function instanceOfReportQueryAxis(value) {
|
|
6620
|
+
for (const key in ReportQueryAxis) {
|
|
6621
|
+
if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
|
|
6622
|
+
if (ReportQueryAxis[key] === value) {
|
|
6623
|
+
return true;
|
|
6624
|
+
}
|
|
6625
|
+
}
|
|
6626
|
+
}
|
|
6627
|
+
return false;
|
|
6628
|
+
}
|
|
6629
|
+
function ReportQueryAxisFromJSON(json) {
|
|
6630
|
+
return ReportQueryAxisFromJSONTyped(json);
|
|
6631
|
+
}
|
|
6632
|
+
function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
|
|
6633
|
+
return json;
|
|
6634
|
+
}
|
|
6635
|
+
function ReportQueryAxisToJSON(value) {
|
|
6636
|
+
return value;
|
|
6637
|
+
}
|
|
6638
|
+
function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
|
|
6639
|
+
return value;
|
|
6640
|
+
}
|
|
6641
|
+
|
|
6579
6642
|
const ReportQueryCatalogFieldTypeEnum = {
|
|
6580
6643
|
Number: 'number',
|
|
6581
6644
|
Boolean: 'boolean',
|
|
@@ -7068,6 +7131,69 @@ function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
7068
7131
|
};
|
|
7069
7132
|
}
|
|
7070
7133
|
|
|
7134
|
+
const ReportQuerySeriesSourceEnum = {
|
|
7135
|
+
Items: 'items',
|
|
7136
|
+
Articles: 'articles',
|
|
7137
|
+
StateHistory: 'state_history'
|
|
7138
|
+
};
|
|
7139
|
+
const ReportQuerySeriesChartEnum = {
|
|
7140
|
+
Bar: 'bar',
|
|
7141
|
+
Line: 'line'
|
|
7142
|
+
};
|
|
7143
|
+
const ReportQuerySeriesAxisEnum = {
|
|
7144
|
+
Y: 'y',
|
|
7145
|
+
Y2: 'y2'
|
|
7146
|
+
};
|
|
7147
|
+
function instanceOfReportQuerySeries(value) {
|
|
7148
|
+
if (!('source' in value) || value['source'] === undefined)
|
|
7149
|
+
return false;
|
|
7150
|
+
if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
|
|
7151
|
+
return false;
|
|
7152
|
+
if (!('filters' in value) || value['filters'] === undefined)
|
|
7153
|
+
return false;
|
|
7154
|
+
if (!('metric' in value) || value['metric'] === undefined)
|
|
7155
|
+
return false;
|
|
7156
|
+
return true;
|
|
7157
|
+
}
|
|
7158
|
+
function ReportQuerySeriesFromJSON(json) {
|
|
7159
|
+
return ReportQuerySeriesFromJSONTyped(json);
|
|
7160
|
+
}
|
|
7161
|
+
function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
|
|
7162
|
+
if (json == null) {
|
|
7163
|
+
return json;
|
|
7164
|
+
}
|
|
7165
|
+
return {
|
|
7166
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
7167
|
+
'source': json['source'],
|
|
7168
|
+
'itemTypeIds': json['itemTypeIds'],
|
|
7169
|
+
'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
|
|
7170
|
+
'metric': ReportQueryMetricFromJSON(json['metric']),
|
|
7171
|
+
'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
|
|
7172
|
+
'chart': json['chart'] == null ? undefined : json['chart'],
|
|
7173
|
+
'color': json['color'] == null ? undefined : json['color'],
|
|
7174
|
+
'axis': json['axis'] == null ? undefined : json['axis'],
|
|
7175
|
+
};
|
|
7176
|
+
}
|
|
7177
|
+
function ReportQuerySeriesToJSON(json) {
|
|
7178
|
+
return ReportQuerySeriesToJSONTyped(json, false);
|
|
7179
|
+
}
|
|
7180
|
+
function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
|
|
7181
|
+
if (value == null) {
|
|
7182
|
+
return value;
|
|
7183
|
+
}
|
|
7184
|
+
return {
|
|
7185
|
+
'label': value['label'],
|
|
7186
|
+
'source': value['source'],
|
|
7187
|
+
'itemTypeIds': value['itemTypeIds'],
|
|
7188
|
+
'filters': (value['filters'].map(ReportQueryFilterToJSON)),
|
|
7189
|
+
'metric': ReportQueryMetricToJSON(value['metric']),
|
|
7190
|
+
'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
|
|
7191
|
+
'chart': value['chart'],
|
|
7192
|
+
'color': value['color'],
|
|
7193
|
+
'axis': value['axis'],
|
|
7194
|
+
};
|
|
7195
|
+
}
|
|
7196
|
+
|
|
7071
7197
|
const ReportQueryDefinitionSourceEnum = {
|
|
7072
7198
|
Items: 'items',
|
|
7073
7199
|
Articles: 'articles',
|
|
@@ -7081,16 +7207,6 @@ const ReportQueryDefinitionChartEnum = {
|
|
|
7081
7207
|
Table: 'table'
|
|
7082
7208
|
};
|
|
7083
7209
|
function instanceOfReportQueryDefinition(value) {
|
|
7084
|
-
if (!('source' in value) || value['source'] === undefined)
|
|
7085
|
-
return false;
|
|
7086
|
-
if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
|
|
7087
|
-
return false;
|
|
7088
|
-
if (!('dimensions' in value) || value['dimensions'] === undefined)
|
|
7089
|
-
return false;
|
|
7090
|
-
if (!('metrics' in value) || value['metrics'] === undefined)
|
|
7091
|
-
return false;
|
|
7092
|
-
if (!('filters' in value) || value['filters'] === undefined)
|
|
7093
|
-
return false;
|
|
7094
7210
|
return true;
|
|
7095
7211
|
}
|
|
7096
7212
|
function ReportQueryDefinitionFromJSON(json) {
|
|
@@ -7102,14 +7218,17 @@ function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
7102
7218
|
}
|
|
7103
7219
|
return {
|
|
7104
7220
|
'version': json['version'] == null ? undefined : json['version'],
|
|
7105
|
-
'source': json['source'],
|
|
7106
|
-
'itemTypeIds': json['itemTypeIds'],
|
|
7107
|
-
'dimensions': (json['dimensions'].map(ReportQueryDimensionFromJSON)),
|
|
7108
|
-
'metrics': (json['metrics'].map(ReportQueryMetricFromJSON)),
|
|
7109
|
-
'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
|
|
7221
|
+
'source': json['source'] == null ? undefined : json['source'],
|
|
7222
|
+
'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
|
|
7223
|
+
'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
|
|
7224
|
+
'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
|
|
7225
|
+
'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
|
|
7226
|
+
'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
|
|
7227
|
+
'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
|
|
7110
7228
|
'chart': json['chart'] == null ? undefined : json['chart'],
|
|
7111
7229
|
'labelX': json['labelX'] == null ? undefined : json['labelX'],
|
|
7112
7230
|
'labelY': json['labelY'] == null ? undefined : json['labelY'],
|
|
7231
|
+
'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
|
|
7113
7232
|
};
|
|
7114
7233
|
}
|
|
7115
7234
|
function ReportQueryDefinitionToJSON(json) {
|
|
@@ -7123,12 +7242,15 @@ function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
7123
7242
|
'version': value['version'],
|
|
7124
7243
|
'source': value['source'],
|
|
7125
7244
|
'itemTypeIds': value['itemTypeIds'],
|
|
7126
|
-
'dimensions': (value['dimensions'].map(ReportQueryDimensionToJSON)),
|
|
7127
|
-
'metrics': (value['metrics'].map(ReportQueryMetricToJSON)),
|
|
7128
|
-
'filters': (value['filters'].map(ReportQueryFilterToJSON)),
|
|
7245
|
+
'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
|
|
7246
|
+
'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
|
|
7247
|
+
'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
|
|
7248
|
+
'x': ReportQueryDimensionToJSON(value['x']),
|
|
7249
|
+
'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
|
|
7129
7250
|
'chart': value['chart'],
|
|
7130
7251
|
'labelX': value['labelX'],
|
|
7131
7252
|
'labelY': value['labelY'],
|
|
7253
|
+
'labelY2': value['labelY2'],
|
|
7132
7254
|
};
|
|
7133
7255
|
}
|
|
7134
7256
|
|
|
@@ -7416,6 +7538,33 @@ function ReportQueryPreviewInputToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
7416
7538
|
};
|
|
7417
7539
|
}
|
|
7418
7540
|
|
|
7541
|
+
const ReportQuerySeriesChart = {
|
|
7542
|
+
Bar: 'bar',
|
|
7543
|
+
Line: 'line'
|
|
7544
|
+
};
|
|
7545
|
+
function instanceOfReportQuerySeriesChart(value) {
|
|
7546
|
+
for (const key in ReportQuerySeriesChart) {
|
|
7547
|
+
if (Object.prototype.hasOwnProperty.call(ReportQuerySeriesChart, key)) {
|
|
7548
|
+
if (ReportQuerySeriesChart[key] === value) {
|
|
7549
|
+
return true;
|
|
7550
|
+
}
|
|
7551
|
+
}
|
|
7552
|
+
}
|
|
7553
|
+
return false;
|
|
7554
|
+
}
|
|
7555
|
+
function ReportQuerySeriesChartFromJSON(json) {
|
|
7556
|
+
return ReportQuerySeriesChartFromJSONTyped(json);
|
|
7557
|
+
}
|
|
7558
|
+
function ReportQuerySeriesChartFromJSONTyped(json, ignoreDiscriminator) {
|
|
7559
|
+
return json;
|
|
7560
|
+
}
|
|
7561
|
+
function ReportQuerySeriesChartToJSON(value) {
|
|
7562
|
+
return value;
|
|
7563
|
+
}
|
|
7564
|
+
function ReportQuerySeriesChartToJSONTyped(value, ignoreDiscriminator) {
|
|
7565
|
+
return value;
|
|
7566
|
+
}
|
|
7567
|
+
|
|
7419
7568
|
const ReportQuerySource = {
|
|
7420
7569
|
Items: 'items',
|
|
7421
7570
|
Articles: 'articles',
|
|
@@ -11448,6 +11597,10 @@ exports.AvailableArticlesOutputFromJSON = AvailableArticlesOutputFromJSON;
|
|
|
11448
11597
|
exports.AvailableArticlesOutputFromJSONTyped = AvailableArticlesOutputFromJSONTyped;
|
|
11449
11598
|
exports.AvailableArticlesOutputToJSON = AvailableArticlesOutputToJSON;
|
|
11450
11599
|
exports.AvailableArticlesOutputToJSONTyped = AvailableArticlesOutputToJSONTyped;
|
|
11600
|
+
exports.AxisGridFromJSON = AxisGridFromJSON;
|
|
11601
|
+
exports.AxisGridFromJSONTyped = AxisGridFromJSONTyped;
|
|
11602
|
+
exports.AxisGridToJSON = AxisGridToJSON;
|
|
11603
|
+
exports.AxisGridToJSONTyped = AxisGridToJSONTyped;
|
|
11451
11604
|
exports.AxisTimeFromJSON = AxisTimeFromJSON;
|
|
11452
11605
|
exports.AxisTimeFromJSONTyped = AxisTimeFromJSONTyped;
|
|
11453
11606
|
exports.AxisTimeToJSON = AxisTimeToJSON;
|
|
@@ -11516,10 +11669,10 @@ exports.DataPointFromJSON = DataPointFromJSON;
|
|
|
11516
11669
|
exports.DataPointFromJSONTyped = DataPointFromJSONTyped;
|
|
11517
11670
|
exports.DataPointToJSON = DataPointToJSON;
|
|
11518
11671
|
exports.DataPointToJSONTyped = DataPointToJSONTyped;
|
|
11519
|
-
exports.
|
|
11520
|
-
exports.
|
|
11521
|
-
exports.
|
|
11522
|
-
exports.
|
|
11672
|
+
exports.Def227FromJSON = Def227FromJSON;
|
|
11673
|
+
exports.Def227FromJSONTyped = Def227FromJSONTyped;
|
|
11674
|
+
exports.Def227ToJSON = Def227ToJSON;
|
|
11675
|
+
exports.Def227ToJSONTyped = Def227ToJSONTyped;
|
|
11523
11676
|
exports.DefaultApi = DefaultApi;
|
|
11524
11677
|
exports.DefaultConfig = DefaultConfig;
|
|
11525
11678
|
exports.FetchError = FetchError;
|
|
@@ -12104,6 +12257,11 @@ exports.ReportOutputFromJSON = ReportOutputFromJSON;
|
|
|
12104
12257
|
exports.ReportOutputFromJSONTyped = ReportOutputFromJSONTyped;
|
|
12105
12258
|
exports.ReportOutputToJSON = ReportOutputToJSON;
|
|
12106
12259
|
exports.ReportOutputToJSONTyped = ReportOutputToJSONTyped;
|
|
12260
|
+
exports.ReportQueryAxis = ReportQueryAxis;
|
|
12261
|
+
exports.ReportQueryAxisFromJSON = ReportQueryAxisFromJSON;
|
|
12262
|
+
exports.ReportQueryAxisFromJSONTyped = ReportQueryAxisFromJSONTyped;
|
|
12263
|
+
exports.ReportQueryAxisToJSON = ReportQueryAxisToJSON;
|
|
12264
|
+
exports.ReportQueryAxisToJSONTyped = ReportQueryAxisToJSONTyped;
|
|
12107
12265
|
exports.ReportQueryCatalogFieldBucketsEnum = ReportQueryCatalogFieldBucketsEnum;
|
|
12108
12266
|
exports.ReportQueryCatalogFieldFilterOperatorsEnum = ReportQueryCatalogFieldFilterOperatorsEnum;
|
|
12109
12267
|
exports.ReportQueryCatalogFieldFromJSON = ReportQueryCatalogFieldFromJSON;
|
|
@@ -12210,6 +12368,18 @@ exports.ReportQueryResultRowToJSON = ReportQueryResultRowToJSON;
|
|
|
12210
12368
|
exports.ReportQueryResultRowToJSONTyped = ReportQueryResultRowToJSONTyped;
|
|
12211
12369
|
exports.ReportQueryResultToJSON = ReportQueryResultToJSON;
|
|
12212
12370
|
exports.ReportQueryResultToJSONTyped = ReportQueryResultToJSONTyped;
|
|
12371
|
+
exports.ReportQuerySeriesAxisEnum = ReportQuerySeriesAxisEnum;
|
|
12372
|
+
exports.ReportQuerySeriesChart = ReportQuerySeriesChart;
|
|
12373
|
+
exports.ReportQuerySeriesChartEnum = ReportQuerySeriesChartEnum;
|
|
12374
|
+
exports.ReportQuerySeriesChartFromJSON = ReportQuerySeriesChartFromJSON;
|
|
12375
|
+
exports.ReportQuerySeriesChartFromJSONTyped = ReportQuerySeriesChartFromJSONTyped;
|
|
12376
|
+
exports.ReportQuerySeriesChartToJSON = ReportQuerySeriesChartToJSON;
|
|
12377
|
+
exports.ReportQuerySeriesChartToJSONTyped = ReportQuerySeriesChartToJSONTyped;
|
|
12378
|
+
exports.ReportQuerySeriesFromJSON = ReportQuerySeriesFromJSON;
|
|
12379
|
+
exports.ReportQuerySeriesFromJSONTyped = ReportQuerySeriesFromJSONTyped;
|
|
12380
|
+
exports.ReportQuerySeriesSourceEnum = ReportQuerySeriesSourceEnum;
|
|
12381
|
+
exports.ReportQuerySeriesToJSON = ReportQuerySeriesToJSON;
|
|
12382
|
+
exports.ReportQuerySeriesToJSONTyped = ReportQuerySeriesToJSONTyped;
|
|
12213
12383
|
exports.ReportQuerySource = ReportQuerySource;
|
|
12214
12384
|
exports.ReportQuerySourceFromJSON = ReportQuerySourceFromJSON;
|
|
12215
12385
|
exports.ReportQuerySourceFromJSONTyped = ReportQuerySourceFromJSONTyped;
|
|
@@ -12393,6 +12563,7 @@ exports.instanceOfArticleTypeORM = instanceOfArticleTypeORM;
|
|
|
12393
12563
|
exports.instanceOfAutoCompleteORM = instanceOfAutoCompleteORM;
|
|
12394
12564
|
exports.instanceOfAvailableArticlesDto = instanceOfAvailableArticlesDto;
|
|
12395
12565
|
exports.instanceOfAvailableArticlesOutput = instanceOfAvailableArticlesOutput;
|
|
12566
|
+
exports.instanceOfAxisGrid = instanceOfAxisGrid;
|
|
12396
12567
|
exports.instanceOfAxisTime = instanceOfAxisTime;
|
|
12397
12568
|
exports.instanceOfAxisTitle = instanceOfAxisTitle;
|
|
12398
12569
|
exports.instanceOfCalculateTourInput = instanceOfCalculateTourInput;
|
|
@@ -12408,7 +12579,7 @@ exports.instanceOfChartTitle = instanceOfChartTitle;
|
|
|
12408
12579
|
exports.instanceOfComputeRouteInput = instanceOfComputeRouteInput;
|
|
12409
12580
|
exports.instanceOfCoordDto = instanceOfCoordDto;
|
|
12410
12581
|
exports.instanceOfDataPoint = instanceOfDataPoint;
|
|
12411
|
-
exports.
|
|
12582
|
+
exports.instanceOfDef227 = instanceOfDef227;
|
|
12412
12583
|
exports.instanceOfHealthcheckStatusValue = instanceOfHealthcheckStatusValue;
|
|
12413
12584
|
exports.instanceOfInternalMapItemSearchResultORM = instanceOfInternalMapItemSearchResultORM;
|
|
12414
12585
|
exports.instanceOfItemDecorationDto = instanceOfItemDecorationDto;
|
|
@@ -12546,6 +12717,7 @@ exports.instanceOfReportDto = instanceOfReportDto;
|
|
|
12546
12717
|
exports.instanceOfReportListOutput = instanceOfReportListOutput;
|
|
12547
12718
|
exports.instanceOfReportORM = instanceOfReportORM;
|
|
12548
12719
|
exports.instanceOfReportOutput = instanceOfReportOutput;
|
|
12720
|
+
exports.instanceOfReportQueryAxis = instanceOfReportQueryAxis;
|
|
12549
12721
|
exports.instanceOfReportQueryCatalogField = instanceOfReportQueryCatalogField;
|
|
12550
12722
|
exports.instanceOfReportQueryCatalogOutput = instanceOfReportQueryCatalogOutput;
|
|
12551
12723
|
exports.instanceOfReportQueryChart = instanceOfReportQueryChart;
|
|
@@ -12568,6 +12740,8 @@ exports.instanceOfReportQueryPreviewInput = instanceOfReportQueryPreviewInput;
|
|
|
12568
12740
|
exports.instanceOfReportQueryResult = instanceOfReportQueryResult;
|
|
12569
12741
|
exports.instanceOfReportQueryResultColumn = instanceOfReportQueryResultColumn;
|
|
12570
12742
|
exports.instanceOfReportQueryResultRow = instanceOfReportQueryResultRow;
|
|
12743
|
+
exports.instanceOfReportQuerySeries = instanceOfReportQuerySeries;
|
|
12744
|
+
exports.instanceOfReportQuerySeriesChart = instanceOfReportQuerySeriesChart;
|
|
12571
12745
|
exports.instanceOfReportQuerySource = instanceOfReportQuerySource;
|
|
12572
12746
|
exports.instanceOfReverseGeoCodingOutput = instanceOfReverseGeoCodingOutput;
|
|
12573
12747
|
exports.instanceOfRouteDto = instanceOfRouteDto;
|