@jrojaspin/security-map-api-cli 9.7.0 → 9.9.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/apis/ReportApi.d.ts +6 -1
- package/dist/apis/ReportApi.js +24 -1
- package/dist/apis/ReportApi.js.map +1 -1
- package/dist/index.cjs +626 -316
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +219 -112
- package/dist/index.mjs +582 -312
- 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/Def230.d.ts +8 -0
- package/dist/models/Def230.js +16 -0
- package/dist/models/{Def223.js.map → Def230.js.map} +1 -1
- package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
- package/dist/models/ReportAllItemsListOutput.js +3 -3
- package/dist/models/ReportQueryAssistantDto.d.ts +12 -0
- package/dist/models/ReportQueryAssistantDto.js +41 -0
- package/dist/models/ReportQueryAssistantDto.js.map +1 -0
- package/dist/models/ReportQueryAssistantInput.d.ts +10 -0
- package/dist/models/ReportQueryAssistantInput.js +31 -0
- package/dist/models/ReportQueryAssistantInput.js.map +1 -0
- package/dist/models/ReportQueryAssistantOutput.d.ts +9 -0
- package/dist/models/ReportQueryAssistantOutput.js +29 -0
- package/dist/models/ReportQueryAssistantOutput.js.map +1 -0
- 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 +8 -1
- package/dist/models/index.js +8 -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 instanceOfDef230(value) {
|
|
1287
1323
|
return true;
|
|
1288
1324
|
}
|
|
1289
|
-
function
|
|
1290
|
-
return
|
|
1325
|
+
function Def230FromJSON(json) {
|
|
1326
|
+
return Def230FromJSONTyped(json);
|
|
1291
1327
|
}
|
|
1292
|
-
function
|
|
1328
|
+
function Def230FromJSONTyped(json, ignoreDiscriminator) {
|
|
1293
1329
|
return json;
|
|
1294
1330
|
}
|
|
1295
|
-
function
|
|
1296
|
-
return
|
|
1331
|
+
function Def230ToJSON(json) {
|
|
1332
|
+
return Def230ToJSONTyped(json, false);
|
|
1297
1333
|
}
|
|
1298
|
-
function
|
|
1334
|
+
function Def230ToJSONTyped(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(Def230FromJSON)),
|
|
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(Def230ToJSON)),
|
|
5947
5983
|
'pageInfo': PageInfoToJSON(value['pageInfo']),
|
|
5948
5984
|
};
|
|
5949
5985
|
}
|
|
@@ -6576,19 +6612,7 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
6576
6612
|
};
|
|
6577
6613
|
}
|
|
6578
6614
|
|
|
6579
|
-
const
|
|
6580
|
-
Number: 'number',
|
|
6581
|
-
Boolean: 'boolean',
|
|
6582
|
-
Category: 'category',
|
|
6583
|
-
Text: 'text',
|
|
6584
|
-
Date: 'date'
|
|
6585
|
-
};
|
|
6586
|
-
const ReportQueryCatalogFieldSourcesEnum = {
|
|
6587
|
-
Items: 'items',
|
|
6588
|
-
Articles: 'articles',
|
|
6589
|
-
StateHistory: 'state_history'
|
|
6590
|
-
};
|
|
6591
|
-
const ReportQueryCatalogFieldMetricOperationsEnum = {
|
|
6615
|
+
const ReportQueryMetricOpEnum = {
|
|
6592
6616
|
Count: 'count',
|
|
6593
6617
|
CountDistinct: 'count_distinct',
|
|
6594
6618
|
Sum: 'sum',
|
|
@@ -6596,7 +6620,39 @@ const ReportQueryCatalogFieldMetricOperationsEnum = {
|
|
|
6596
6620
|
Min: 'min',
|
|
6597
6621
|
Max: 'max'
|
|
6598
6622
|
};
|
|
6599
|
-
|
|
6623
|
+
function instanceOfReportQueryMetric(value) {
|
|
6624
|
+
if (!('op' in value) || value['op'] === undefined)
|
|
6625
|
+
return false;
|
|
6626
|
+
return true;
|
|
6627
|
+
}
|
|
6628
|
+
function ReportQueryMetricFromJSON(json) {
|
|
6629
|
+
return ReportQueryMetricFromJSONTyped(json);
|
|
6630
|
+
}
|
|
6631
|
+
function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
|
|
6632
|
+
if (json == null) {
|
|
6633
|
+
return json;
|
|
6634
|
+
}
|
|
6635
|
+
return {
|
|
6636
|
+
'op': json['op'],
|
|
6637
|
+
'field': json['field'] == null ? undefined : json['field'],
|
|
6638
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
6639
|
+
};
|
|
6640
|
+
}
|
|
6641
|
+
function ReportQueryMetricToJSON(json) {
|
|
6642
|
+
return ReportQueryMetricToJSONTyped(json, false);
|
|
6643
|
+
}
|
|
6644
|
+
function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6645
|
+
if (value == null) {
|
|
6646
|
+
return value;
|
|
6647
|
+
}
|
|
6648
|
+
return {
|
|
6649
|
+
'op': value['op'],
|
|
6650
|
+
'field': value['field'],
|
|
6651
|
+
'label': value['label'],
|
|
6652
|
+
};
|
|
6653
|
+
}
|
|
6654
|
+
|
|
6655
|
+
const ReportQueryFilterOpEnum = {
|
|
6600
6656
|
Contains: 'contains',
|
|
6601
6657
|
NotContains: 'not_contains',
|
|
6602
6658
|
Eq: 'eq',
|
|
@@ -6610,528 +6666,692 @@ const ReportQueryCatalogFieldFilterOperatorsEnum = {
|
|
|
6610
6666
|
IsEmpty: 'is_empty',
|
|
6611
6667
|
IsNotEmpty: 'is_not_empty'
|
|
6612
6668
|
};
|
|
6613
|
-
|
|
6669
|
+
function instanceOfReportQueryFilter(value) {
|
|
6670
|
+
if (!('field' in value) || value['field'] === undefined)
|
|
6671
|
+
return false;
|
|
6672
|
+
if (!('op' in value) || value['op'] === undefined)
|
|
6673
|
+
return false;
|
|
6674
|
+
if (!('values' in value) || value['values'] === undefined)
|
|
6675
|
+
return false;
|
|
6676
|
+
return true;
|
|
6677
|
+
}
|
|
6678
|
+
function ReportQueryFilterFromJSON(json) {
|
|
6679
|
+
return ReportQueryFilterFromJSONTyped(json);
|
|
6680
|
+
}
|
|
6681
|
+
function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
|
|
6682
|
+
if (json == null) {
|
|
6683
|
+
return json;
|
|
6684
|
+
}
|
|
6685
|
+
return {
|
|
6686
|
+
'field': json['field'],
|
|
6687
|
+
'op': json['op'],
|
|
6688
|
+
'values': json['values'],
|
|
6689
|
+
};
|
|
6690
|
+
}
|
|
6691
|
+
function ReportQueryFilterToJSON(json) {
|
|
6692
|
+
return ReportQueryFilterToJSONTyped(json, false);
|
|
6693
|
+
}
|
|
6694
|
+
function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6695
|
+
if (value == null) {
|
|
6696
|
+
return value;
|
|
6697
|
+
}
|
|
6698
|
+
return {
|
|
6699
|
+
'field': value['field'],
|
|
6700
|
+
'op': value['op'],
|
|
6701
|
+
'values': value['values'],
|
|
6702
|
+
};
|
|
6703
|
+
}
|
|
6704
|
+
|
|
6705
|
+
const ReportQueryDimensionBucketEnum = {
|
|
6614
6706
|
Day: 'day',
|
|
6615
6707
|
Week: 'week',
|
|
6616
6708
|
Month: 'month',
|
|
6617
6709
|
Quarter: 'quarter',
|
|
6618
6710
|
Year: 'year'
|
|
6619
6711
|
};
|
|
6620
|
-
const
|
|
6712
|
+
const ReportQueryDimensionNormalizeEnum = {
|
|
6621
6713
|
None: 'none',
|
|
6622
6714
|
TrimCase: 'trim_case',
|
|
6623
6715
|
Ipp: 'ipp'
|
|
6624
6716
|
};
|
|
6625
|
-
function
|
|
6626
|
-
if (!('
|
|
6627
|
-
return false;
|
|
6628
|
-
if (!('label' in value) || value['label'] === undefined)
|
|
6629
|
-
return false;
|
|
6630
|
-
if (!('type' in value) || value['type'] === undefined)
|
|
6631
|
-
return false;
|
|
6632
|
-
if (!('group' in value) || value['group'] === undefined)
|
|
6633
|
-
return false;
|
|
6634
|
-
if (!('sources' in value) || value['sources'] === undefined)
|
|
6635
|
-
return false;
|
|
6636
|
-
if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
|
|
6637
|
-
return false;
|
|
6638
|
-
if (!('metricOperations' in value) || value['metricOperations'] === undefined)
|
|
6639
|
-
return false;
|
|
6640
|
-
if (!('filterOperators' in value) || value['filterOperators'] === undefined)
|
|
6717
|
+
function instanceOfReportQueryDimension(value) {
|
|
6718
|
+
if (!('field' in value) || value['field'] === undefined)
|
|
6641
6719
|
return false;
|
|
6642
6720
|
return true;
|
|
6643
6721
|
}
|
|
6644
|
-
function
|
|
6645
|
-
return
|
|
6722
|
+
function ReportQueryDimensionFromJSON(json) {
|
|
6723
|
+
return ReportQueryDimensionFromJSONTyped(json);
|
|
6646
6724
|
}
|
|
6647
|
-
function
|
|
6725
|
+
function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
|
|
6648
6726
|
if (json == null) {
|
|
6649
6727
|
return json;
|
|
6650
6728
|
}
|
|
6651
6729
|
return {
|
|
6652
|
-
'
|
|
6653
|
-
'
|
|
6654
|
-
'
|
|
6655
|
-
'
|
|
6656
|
-
'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
|
|
6657
|
-
'sources': json['sources'],
|
|
6658
|
-
'canBeDimension': json['canBeDimension'],
|
|
6659
|
-
'metricOperations': json['metricOperations'],
|
|
6660
|
-
'filterOperators': json['filterOperators'],
|
|
6661
|
-
'buckets': json['buckets'] == null ? undefined : json['buckets'],
|
|
6662
|
-
'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
|
|
6730
|
+
'field': json['field'],
|
|
6731
|
+
'bucket': json['bucket'] == null ? undefined : json['bucket'],
|
|
6732
|
+
'normalize': json['normalize'] == null ? undefined : json['normalize'],
|
|
6733
|
+
'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
|
|
6663
6734
|
};
|
|
6664
6735
|
}
|
|
6665
|
-
function
|
|
6666
|
-
return
|
|
6736
|
+
function ReportQueryDimensionToJSON(json) {
|
|
6737
|
+
return ReportQueryDimensionToJSONTyped(json, false);
|
|
6667
6738
|
}
|
|
6668
|
-
function
|
|
6739
|
+
function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6669
6740
|
if (value == null) {
|
|
6670
6741
|
return value;
|
|
6671
6742
|
}
|
|
6672
6743
|
return {
|
|
6673
|
-
'
|
|
6674
|
-
'
|
|
6675
|
-
'
|
|
6676
|
-
'
|
|
6677
|
-
'itemTypeId': value['itemTypeId'],
|
|
6678
|
-
'sources': value['sources'],
|
|
6679
|
-
'canBeDimension': value['canBeDimension'],
|
|
6680
|
-
'metricOperations': value['metricOperations'],
|
|
6681
|
-
'filterOperators': value['filterOperators'],
|
|
6682
|
-
'buckets': value['buckets'],
|
|
6683
|
-
'suggestedNormalize': value['suggestedNormalize'],
|
|
6744
|
+
'field': value['field'],
|
|
6745
|
+
'bucket': value['bucket'],
|
|
6746
|
+
'normalize': value['normalize'],
|
|
6747
|
+
'includeEmpty': value['includeEmpty'],
|
|
6684
6748
|
};
|
|
6685
6749
|
}
|
|
6686
6750
|
|
|
6687
|
-
|
|
6688
|
-
|
|
6751
|
+
const ReportQuerySeriesSourceEnum = {
|
|
6752
|
+
Items: 'items',
|
|
6753
|
+
Articles: 'articles',
|
|
6754
|
+
StateHistory: 'state_history'
|
|
6755
|
+
};
|
|
6756
|
+
const ReportQuerySeriesChartEnum = {
|
|
6757
|
+
Bar: 'bar',
|
|
6758
|
+
Line: 'line'
|
|
6759
|
+
};
|
|
6760
|
+
const ReportQuerySeriesAxisEnum = {
|
|
6761
|
+
Y: 'y',
|
|
6762
|
+
Y2: 'y2'
|
|
6763
|
+
};
|
|
6764
|
+
function instanceOfReportQuerySeries(value) {
|
|
6765
|
+
if (!('source' in value) || value['source'] === undefined)
|
|
6766
|
+
return false;
|
|
6767
|
+
if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
|
|
6768
|
+
return false;
|
|
6769
|
+
if (!('filters' in value) || value['filters'] === undefined)
|
|
6770
|
+
return false;
|
|
6771
|
+
if (!('metric' in value) || value['metric'] === undefined)
|
|
6689
6772
|
return false;
|
|
6690
6773
|
return true;
|
|
6691
6774
|
}
|
|
6692
|
-
function
|
|
6693
|
-
return
|
|
6775
|
+
function ReportQuerySeriesFromJSON(json) {
|
|
6776
|
+
return ReportQuerySeriesFromJSONTyped(json);
|
|
6694
6777
|
}
|
|
6695
|
-
function
|
|
6778
|
+
function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
|
|
6696
6779
|
if (json == null) {
|
|
6697
6780
|
return json;
|
|
6698
6781
|
}
|
|
6699
6782
|
return {
|
|
6700
|
-
'
|
|
6783
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
6784
|
+
'source': json['source'],
|
|
6785
|
+
'itemTypeIds': json['itemTypeIds'],
|
|
6786
|
+
'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
|
|
6787
|
+
'metric': ReportQueryMetricFromJSON(json['metric']),
|
|
6788
|
+
'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
|
|
6789
|
+
'chart': json['chart'] == null ? undefined : json['chart'],
|
|
6790
|
+
'color': json['color'] == null ? undefined : json['color'],
|
|
6791
|
+
'axis': json['axis'] == null ? undefined : json['axis'],
|
|
6701
6792
|
};
|
|
6702
6793
|
}
|
|
6703
|
-
function
|
|
6704
|
-
return
|
|
6794
|
+
function ReportQuerySeriesToJSON(json) {
|
|
6795
|
+
return ReportQuerySeriesToJSONTyped(json, false);
|
|
6705
6796
|
}
|
|
6706
|
-
function
|
|
6797
|
+
function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6707
6798
|
if (value == null) {
|
|
6708
6799
|
return value;
|
|
6709
6800
|
}
|
|
6710
6801
|
return {
|
|
6711
|
-
'
|
|
6802
|
+
'label': value['label'],
|
|
6803
|
+
'source': value['source'],
|
|
6804
|
+
'itemTypeIds': value['itemTypeIds'],
|
|
6805
|
+
'filters': (value['filters'].map(ReportQueryFilterToJSON)),
|
|
6806
|
+
'metric': ReportQueryMetricToJSON(value['metric']),
|
|
6807
|
+
'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
|
|
6808
|
+
'chart': value['chart'],
|
|
6809
|
+
'color': value['color'],
|
|
6810
|
+
'axis': value['axis'],
|
|
6712
6811
|
};
|
|
6713
6812
|
}
|
|
6714
6813
|
|
|
6715
|
-
const
|
|
6814
|
+
const ReportQueryDefinitionSourceEnum = {
|
|
6815
|
+
Items: 'items',
|
|
6816
|
+
Articles: 'articles',
|
|
6817
|
+
StateHistory: 'state_history'
|
|
6818
|
+
};
|
|
6819
|
+
const ReportQueryDefinitionChartEnum = {
|
|
6716
6820
|
Bar: 'bar',
|
|
6717
6821
|
Line: 'line',
|
|
6718
6822
|
Pie: 'pie',
|
|
6719
6823
|
StackedBar: 'stacked_bar',
|
|
6720
6824
|
Table: 'table'
|
|
6721
6825
|
};
|
|
6722
|
-
function
|
|
6723
|
-
for (const key in ReportQueryChart) {
|
|
6724
|
-
if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
|
|
6725
|
-
if (ReportQueryChart[key] === value) {
|
|
6726
|
-
return true;
|
|
6727
|
-
}
|
|
6728
|
-
}
|
|
6729
|
-
}
|
|
6730
|
-
return false;
|
|
6731
|
-
}
|
|
6732
|
-
function ReportQueryChartFromJSON(json) {
|
|
6733
|
-
return ReportQueryChartFromJSONTyped(json);
|
|
6734
|
-
}
|
|
6735
|
-
function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
|
|
6736
|
-
return json;
|
|
6737
|
-
}
|
|
6738
|
-
function ReportQueryChartToJSON(value) {
|
|
6739
|
-
return value;
|
|
6740
|
-
}
|
|
6741
|
-
function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
|
|
6742
|
-
return value;
|
|
6743
|
-
}
|
|
6744
|
-
|
|
6745
|
-
function instanceOfReportQueryResultRow(value) {
|
|
6746
|
-
if (!('keys' in value) || value['keys'] === undefined)
|
|
6747
|
-
return false;
|
|
6748
|
-
if (!('labels' in value) || value['labels'] === undefined)
|
|
6749
|
-
return false;
|
|
6750
|
-
if (!('values' in value) || value['values'] === undefined)
|
|
6751
|
-
return false;
|
|
6826
|
+
function instanceOfReportQueryDefinition(value) {
|
|
6752
6827
|
return true;
|
|
6753
6828
|
}
|
|
6754
|
-
function
|
|
6755
|
-
return
|
|
6829
|
+
function ReportQueryDefinitionFromJSON(json) {
|
|
6830
|
+
return ReportQueryDefinitionFromJSONTyped(json);
|
|
6756
6831
|
}
|
|
6757
|
-
function
|
|
6832
|
+
function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
|
|
6758
6833
|
if (json == null) {
|
|
6759
6834
|
return json;
|
|
6760
6835
|
}
|
|
6761
6836
|
return {
|
|
6762
|
-
'
|
|
6763
|
-
'
|
|
6764
|
-
'
|
|
6837
|
+
'version': json['version'] == null ? undefined : json['version'],
|
|
6838
|
+
'source': json['source'] == null ? undefined : json['source'],
|
|
6839
|
+
'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
|
|
6840
|
+
'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
|
|
6841
|
+
'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
|
|
6842
|
+
'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
|
|
6843
|
+
'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
|
|
6844
|
+
'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
|
|
6845
|
+
'chart': json['chart'] == null ? undefined : json['chart'],
|
|
6846
|
+
'labelX': json['labelX'] == null ? undefined : json['labelX'],
|
|
6847
|
+
'labelY': json['labelY'] == null ? undefined : json['labelY'],
|
|
6848
|
+
'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
|
|
6765
6849
|
};
|
|
6766
6850
|
}
|
|
6767
|
-
function
|
|
6768
|
-
return
|
|
6769
|
-
}
|
|
6770
|
-
function
|
|
6851
|
+
function ReportQueryDefinitionToJSON(json) {
|
|
6852
|
+
return ReportQueryDefinitionToJSONTyped(json, false);
|
|
6853
|
+
}
|
|
6854
|
+
function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6771
6855
|
if (value == null) {
|
|
6772
6856
|
return value;
|
|
6773
6857
|
}
|
|
6774
6858
|
return {
|
|
6775
|
-
'
|
|
6776
|
-
'
|
|
6777
|
-
'
|
|
6859
|
+
'version': value['version'],
|
|
6860
|
+
'source': value['source'],
|
|
6861
|
+
'itemTypeIds': value['itemTypeIds'],
|
|
6862
|
+
'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
|
|
6863
|
+
'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
|
|
6864
|
+
'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
|
|
6865
|
+
'x': ReportQueryDimensionToJSON(value['x']),
|
|
6866
|
+
'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
|
|
6867
|
+
'chart': value['chart'],
|
|
6868
|
+
'labelX': value['labelX'],
|
|
6869
|
+
'labelY': value['labelY'],
|
|
6870
|
+
'labelY2': value['labelY2'],
|
|
6778
6871
|
};
|
|
6779
6872
|
}
|
|
6780
6873
|
|
|
6781
|
-
function
|
|
6782
|
-
if (!('
|
|
6874
|
+
function instanceOfReportQueryAssistantDto(value) {
|
|
6875
|
+
if (!('title' in value) || value['title'] === undefined)
|
|
6783
6876
|
return false;
|
|
6784
|
-
if (!('
|
|
6877
|
+
if (!('explanation' in value) || value['explanation'] === undefined)
|
|
6878
|
+
return false;
|
|
6879
|
+
if (!('definition' in value) || value['definition'] === undefined)
|
|
6880
|
+
return false;
|
|
6881
|
+
if (!('remainingToday' in value) || value['remainingToday'] === undefined)
|
|
6785
6882
|
return false;
|
|
6786
6883
|
return true;
|
|
6787
6884
|
}
|
|
6788
|
-
function
|
|
6789
|
-
return
|
|
6885
|
+
function ReportQueryAssistantDtoFromJSON(json) {
|
|
6886
|
+
return ReportQueryAssistantDtoFromJSONTyped(json);
|
|
6790
6887
|
}
|
|
6791
|
-
function
|
|
6888
|
+
function ReportQueryAssistantDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
6792
6889
|
if (json == null) {
|
|
6793
6890
|
return json;
|
|
6794
6891
|
}
|
|
6795
6892
|
return {
|
|
6796
|
-
'
|
|
6797
|
-
'
|
|
6893
|
+
'title': json['title'],
|
|
6894
|
+
'explanation': json['explanation'],
|
|
6895
|
+
'definition': ReportQueryDefinitionFromJSON(json['definition']),
|
|
6896
|
+
'remainingToday': json['remainingToday'],
|
|
6798
6897
|
};
|
|
6799
6898
|
}
|
|
6800
|
-
function
|
|
6801
|
-
return
|
|
6899
|
+
function ReportQueryAssistantDtoToJSON(json) {
|
|
6900
|
+
return ReportQueryAssistantDtoToJSONTyped(json, false);
|
|
6802
6901
|
}
|
|
6803
|
-
function
|
|
6902
|
+
function ReportQueryAssistantDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6804
6903
|
if (value == null) {
|
|
6805
6904
|
return value;
|
|
6806
6905
|
}
|
|
6807
6906
|
return {
|
|
6808
|
-
'
|
|
6809
|
-
'
|
|
6907
|
+
'title': value['title'],
|
|
6908
|
+
'explanation': value['explanation'],
|
|
6909
|
+
'definition': ReportQueryDefinitionToJSON(value['definition']),
|
|
6910
|
+
'remainingToday': value['remainingToday'],
|
|
6810
6911
|
};
|
|
6811
6912
|
}
|
|
6812
6913
|
|
|
6813
|
-
function
|
|
6814
|
-
if (!('
|
|
6914
|
+
function instanceOfReportQueryAssistantInput(value) {
|
|
6915
|
+
if (!('prompt' in value) || value['prompt'] === undefined)
|
|
6815
6916
|
return false;
|
|
6816
|
-
|
|
6917
|
+
return true;
|
|
6918
|
+
}
|
|
6919
|
+
function ReportQueryAssistantInputFromJSON(json) {
|
|
6920
|
+
return ReportQueryAssistantInputFromJSONTyped(json);
|
|
6921
|
+
}
|
|
6922
|
+
function ReportQueryAssistantInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
6923
|
+
if (json == null) {
|
|
6924
|
+
return json;
|
|
6925
|
+
}
|
|
6926
|
+
return {
|
|
6927
|
+
'prompt': json['prompt'],
|
|
6928
|
+
'definition': json['definition'] == null ? undefined : ReportQueryDefinitionFromJSON(json['definition']),
|
|
6929
|
+
};
|
|
6930
|
+
}
|
|
6931
|
+
function ReportQueryAssistantInputToJSON(json) {
|
|
6932
|
+
return ReportQueryAssistantInputToJSONTyped(json, false);
|
|
6933
|
+
}
|
|
6934
|
+
function ReportQueryAssistantInputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6935
|
+
if (value == null) {
|
|
6936
|
+
return value;
|
|
6937
|
+
}
|
|
6938
|
+
return {
|
|
6939
|
+
'prompt': value['prompt'],
|
|
6940
|
+
'definition': ReportQueryDefinitionToJSON(value['definition']),
|
|
6941
|
+
};
|
|
6942
|
+
}
|
|
6943
|
+
|
|
6944
|
+
function instanceOfReportQueryAssistantOutput(value) {
|
|
6945
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
6817
6946
|
return false;
|
|
6818
6947
|
return true;
|
|
6819
6948
|
}
|
|
6820
|
-
function
|
|
6821
|
-
return
|
|
6949
|
+
function ReportQueryAssistantOutputFromJSON(json) {
|
|
6950
|
+
return ReportQueryAssistantOutputFromJSONTyped(json);
|
|
6822
6951
|
}
|
|
6823
|
-
function
|
|
6952
|
+
function ReportQueryAssistantOutputFromJSONTyped(json, ignoreDiscriminator) {
|
|
6824
6953
|
if (json == null) {
|
|
6825
6954
|
return json;
|
|
6826
6955
|
}
|
|
6827
6956
|
return {
|
|
6828
|
-
'
|
|
6829
|
-
'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
|
|
6957
|
+
'data': ReportQueryAssistantDtoFromJSON(json['data']),
|
|
6830
6958
|
};
|
|
6831
6959
|
}
|
|
6832
|
-
function
|
|
6833
|
-
return
|
|
6960
|
+
function ReportQueryAssistantOutputToJSON(json) {
|
|
6961
|
+
return ReportQueryAssistantOutputToJSONTyped(json, false);
|
|
6834
6962
|
}
|
|
6835
|
-
function
|
|
6963
|
+
function ReportQueryAssistantOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6836
6964
|
if (value == null) {
|
|
6837
6965
|
return value;
|
|
6838
6966
|
}
|
|
6839
6967
|
return {
|
|
6840
|
-
'
|
|
6841
|
-
'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
|
|
6968
|
+
'data': ReportQueryAssistantDtoToJSON(value['data']),
|
|
6842
6969
|
};
|
|
6843
6970
|
}
|
|
6844
6971
|
|
|
6845
|
-
|
|
6846
|
-
|
|
6972
|
+
const ReportQueryAxis = {
|
|
6973
|
+
Y: 'y',
|
|
6974
|
+
Y2: 'y2'
|
|
6975
|
+
};
|
|
6976
|
+
function instanceOfReportQueryAxis(value) {
|
|
6977
|
+
for (const key in ReportQueryAxis) {
|
|
6978
|
+
if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
|
|
6979
|
+
if (ReportQueryAxis[key] === value) {
|
|
6980
|
+
return true;
|
|
6981
|
+
}
|
|
6982
|
+
}
|
|
6983
|
+
}
|
|
6984
|
+
return false;
|
|
6985
|
+
}
|
|
6986
|
+
function ReportQueryAxisFromJSON(json) {
|
|
6987
|
+
return ReportQueryAxisFromJSONTyped(json);
|
|
6988
|
+
}
|
|
6989
|
+
function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
|
|
6990
|
+
return json;
|
|
6991
|
+
}
|
|
6992
|
+
function ReportQueryAxisToJSON(value) {
|
|
6993
|
+
return value;
|
|
6994
|
+
}
|
|
6995
|
+
function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
|
|
6996
|
+
return value;
|
|
6997
|
+
}
|
|
6998
|
+
|
|
6999
|
+
const ReportQueryCatalogFieldTypeEnum = {
|
|
7000
|
+
Number: 'number',
|
|
7001
|
+
Boolean: 'boolean',
|
|
7002
|
+
Category: 'category',
|
|
7003
|
+
Text: 'text',
|
|
7004
|
+
Date: 'date'
|
|
7005
|
+
};
|
|
7006
|
+
const ReportQueryCatalogFieldSourcesEnum = {
|
|
7007
|
+
Items: 'items',
|
|
7008
|
+
Articles: 'articles',
|
|
7009
|
+
StateHistory: 'state_history'
|
|
7010
|
+
};
|
|
7011
|
+
const ReportQueryCatalogFieldMetricOperationsEnum = {
|
|
7012
|
+
Count: 'count',
|
|
7013
|
+
CountDistinct: 'count_distinct',
|
|
7014
|
+
Sum: 'sum',
|
|
7015
|
+
Avg: 'avg',
|
|
7016
|
+
Min: 'min',
|
|
7017
|
+
Max: 'max'
|
|
7018
|
+
};
|
|
7019
|
+
const ReportQueryCatalogFieldFilterOperatorsEnum = {
|
|
7020
|
+
Contains: 'contains',
|
|
7021
|
+
NotContains: 'not_contains',
|
|
7022
|
+
Eq: 'eq',
|
|
7023
|
+
Neq: 'neq',
|
|
7024
|
+
In: 'in',
|
|
7025
|
+
NotIn: 'not_in',
|
|
7026
|
+
Gt: 'gt',
|
|
7027
|
+
Gte: 'gte',
|
|
7028
|
+
Lt: 'lt',
|
|
7029
|
+
Lte: 'lte',
|
|
7030
|
+
IsEmpty: 'is_empty',
|
|
7031
|
+
IsNotEmpty: 'is_not_empty'
|
|
7032
|
+
};
|
|
7033
|
+
const ReportQueryCatalogFieldBucketsEnum = {
|
|
7034
|
+
Day: 'day',
|
|
7035
|
+
Week: 'week',
|
|
7036
|
+
Month: 'month',
|
|
7037
|
+
Quarter: 'quarter',
|
|
7038
|
+
Year: 'year'
|
|
7039
|
+
};
|
|
7040
|
+
const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
|
|
7041
|
+
None: 'none',
|
|
7042
|
+
TrimCase: 'trim_case',
|
|
7043
|
+
Ipp: 'ipp'
|
|
7044
|
+
};
|
|
7045
|
+
function instanceOfReportQueryCatalogField(value) {
|
|
7046
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
6847
7047
|
return false;
|
|
6848
|
-
if (!('
|
|
7048
|
+
if (!('label' in value) || value['label'] === undefined)
|
|
7049
|
+
return false;
|
|
7050
|
+
if (!('type' in value) || value['type'] === undefined)
|
|
7051
|
+
return false;
|
|
7052
|
+
if (!('group' in value) || value['group'] === undefined)
|
|
7053
|
+
return false;
|
|
7054
|
+
if (!('sources' in value) || value['sources'] === undefined)
|
|
7055
|
+
return false;
|
|
7056
|
+
if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
|
|
7057
|
+
return false;
|
|
7058
|
+
if (!('metricOperations' in value) || value['metricOperations'] === undefined)
|
|
7059
|
+
return false;
|
|
7060
|
+
if (!('filterOperators' in value) || value['filterOperators'] === undefined)
|
|
6849
7061
|
return false;
|
|
6850
7062
|
return true;
|
|
6851
7063
|
}
|
|
6852
|
-
function
|
|
6853
|
-
return
|
|
7064
|
+
function ReportQueryCatalogFieldFromJSON(json) {
|
|
7065
|
+
return ReportQueryCatalogFieldFromJSONTyped(json);
|
|
6854
7066
|
}
|
|
6855
|
-
function
|
|
7067
|
+
function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
|
|
6856
7068
|
if (json == null) {
|
|
6857
7069
|
return json;
|
|
6858
7070
|
}
|
|
6859
7071
|
return {
|
|
6860
|
-
'
|
|
6861
|
-
'
|
|
7072
|
+
'id': json['id'],
|
|
7073
|
+
'label': json['label'],
|
|
7074
|
+
'type': json['type'],
|
|
7075
|
+
'group': json['group'],
|
|
7076
|
+
'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
|
|
7077
|
+
'sources': json['sources'],
|
|
7078
|
+
'canBeDimension': json['canBeDimension'],
|
|
7079
|
+
'metricOperations': json['metricOperations'],
|
|
7080
|
+
'filterOperators': json['filterOperators'],
|
|
7081
|
+
'buckets': json['buckets'] == null ? undefined : json['buckets'],
|
|
7082
|
+
'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
|
|
6862
7083
|
};
|
|
6863
7084
|
}
|
|
6864
|
-
function
|
|
6865
|
-
return
|
|
7085
|
+
function ReportQueryCatalogFieldToJSON(json) {
|
|
7086
|
+
return ReportQueryCatalogFieldToJSONTyped(json, false);
|
|
6866
7087
|
}
|
|
6867
|
-
function
|
|
7088
|
+
function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6868
7089
|
if (value == null) {
|
|
6869
7090
|
return value;
|
|
6870
7091
|
}
|
|
6871
7092
|
return {
|
|
6872
|
-
'
|
|
6873
|
-
'
|
|
7093
|
+
'id': value['id'],
|
|
7094
|
+
'label': value['label'],
|
|
7095
|
+
'type': value['type'],
|
|
7096
|
+
'group': value['group'],
|
|
7097
|
+
'itemTypeId': value['itemTypeId'],
|
|
7098
|
+
'sources': value['sources'],
|
|
7099
|
+
'canBeDimension': value['canBeDimension'],
|
|
7100
|
+
'metricOperations': value['metricOperations'],
|
|
7101
|
+
'filterOperators': value['filterOperators'],
|
|
7102
|
+
'buckets': value['buckets'],
|
|
7103
|
+
'suggestedNormalize': value['suggestedNormalize'],
|
|
6874
7104
|
};
|
|
6875
7105
|
}
|
|
6876
7106
|
|
|
6877
|
-
function
|
|
7107
|
+
function instanceOfReportQueryCatalogOutput(value) {
|
|
6878
7108
|
if (!('data' in value) || value['data'] === undefined)
|
|
6879
7109
|
return false;
|
|
6880
7110
|
return true;
|
|
6881
7111
|
}
|
|
6882
|
-
function
|
|
6883
|
-
return
|
|
7112
|
+
function ReportQueryCatalogOutputFromJSON(json) {
|
|
7113
|
+
return ReportQueryCatalogOutputFromJSONTyped(json);
|
|
6884
7114
|
}
|
|
6885
|
-
function
|
|
7115
|
+
function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
|
|
6886
7116
|
if (json == null) {
|
|
6887
7117
|
return json;
|
|
6888
7118
|
}
|
|
6889
7119
|
return {
|
|
6890
|
-
'data':
|
|
7120
|
+
'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
|
|
6891
7121
|
};
|
|
6892
7122
|
}
|
|
6893
|
-
function
|
|
6894
|
-
return
|
|
7123
|
+
function ReportQueryCatalogOutputToJSON(json) {
|
|
7124
|
+
return ReportQueryCatalogOutputToJSONTyped(json, false);
|
|
6895
7125
|
}
|
|
6896
|
-
function
|
|
7126
|
+
function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6897
7127
|
if (value == null) {
|
|
6898
7128
|
return value;
|
|
6899
7129
|
}
|
|
6900
7130
|
return {
|
|
6901
|
-
'data':
|
|
7131
|
+
'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
|
|
6902
7132
|
};
|
|
6903
7133
|
}
|
|
6904
7134
|
|
|
6905
|
-
const
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
7135
|
+
const ReportQueryChart = {
|
|
7136
|
+
Bar: 'bar',
|
|
7137
|
+
Line: 'line',
|
|
7138
|
+
Pie: 'pie',
|
|
7139
|
+
StackedBar: 'stacked_bar',
|
|
7140
|
+
Table: 'table'
|
|
6911
7141
|
};
|
|
6912
|
-
function
|
|
6913
|
-
for (const key in
|
|
6914
|
-
if (Object.prototype.hasOwnProperty.call(
|
|
6915
|
-
if (
|
|
7142
|
+
function instanceOfReportQueryChart(value) {
|
|
7143
|
+
for (const key in ReportQueryChart) {
|
|
7144
|
+
if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
|
|
7145
|
+
if (ReportQueryChart[key] === value) {
|
|
6916
7146
|
return true;
|
|
6917
7147
|
}
|
|
6918
7148
|
}
|
|
6919
7149
|
}
|
|
6920
7150
|
return false;
|
|
6921
7151
|
}
|
|
6922
|
-
function
|
|
6923
|
-
return
|
|
7152
|
+
function ReportQueryChartFromJSON(json) {
|
|
7153
|
+
return ReportQueryChartFromJSONTyped(json);
|
|
6924
7154
|
}
|
|
6925
|
-
function
|
|
7155
|
+
function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
|
|
6926
7156
|
return json;
|
|
6927
7157
|
}
|
|
6928
|
-
function
|
|
7158
|
+
function ReportQueryChartToJSON(value) {
|
|
6929
7159
|
return value;
|
|
6930
7160
|
}
|
|
6931
|
-
function
|
|
7161
|
+
function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
|
|
6932
7162
|
return value;
|
|
6933
7163
|
}
|
|
6934
7164
|
|
|
6935
|
-
|
|
6936
|
-
|
|
6937
|
-
|
|
6938
|
-
|
|
6939
|
-
|
|
6940
|
-
|
|
6941
|
-
Max: 'max'
|
|
6942
|
-
};
|
|
6943
|
-
function instanceOfReportQueryMetric(value) {
|
|
6944
|
-
if (!('op' in value) || value['op'] === undefined)
|
|
7165
|
+
function instanceOfReportQueryResultRow(value) {
|
|
7166
|
+
if (!('keys' in value) || value['keys'] === undefined)
|
|
7167
|
+
return false;
|
|
7168
|
+
if (!('labels' in value) || value['labels'] === undefined)
|
|
7169
|
+
return false;
|
|
7170
|
+
if (!('values' in value) || value['values'] === undefined)
|
|
6945
7171
|
return false;
|
|
6946
7172
|
return true;
|
|
6947
7173
|
}
|
|
6948
|
-
function
|
|
6949
|
-
return
|
|
7174
|
+
function ReportQueryResultRowFromJSON(json) {
|
|
7175
|
+
return ReportQueryResultRowFromJSONTyped(json);
|
|
6950
7176
|
}
|
|
6951
|
-
function
|
|
7177
|
+
function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
|
|
6952
7178
|
if (json == null) {
|
|
6953
7179
|
return json;
|
|
6954
7180
|
}
|
|
6955
7181
|
return {
|
|
6956
|
-
'
|
|
6957
|
-
'
|
|
6958
|
-
'
|
|
7182
|
+
'keys': json['keys'],
|
|
7183
|
+
'labels': json['labels'],
|
|
7184
|
+
'values': json['values'],
|
|
6959
7185
|
};
|
|
6960
7186
|
}
|
|
6961
|
-
function
|
|
6962
|
-
return
|
|
7187
|
+
function ReportQueryResultRowToJSON(json) {
|
|
7188
|
+
return ReportQueryResultRowToJSONTyped(json, false);
|
|
6963
7189
|
}
|
|
6964
|
-
function
|
|
7190
|
+
function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
|
|
6965
7191
|
if (value == null) {
|
|
6966
7192
|
return value;
|
|
6967
7193
|
}
|
|
6968
7194
|
return {
|
|
6969
|
-
'
|
|
6970
|
-
'
|
|
6971
|
-
'
|
|
7195
|
+
'keys': value['keys'],
|
|
7196
|
+
'labels': value['labels'],
|
|
7197
|
+
'values': value['values'],
|
|
6972
7198
|
};
|
|
6973
7199
|
}
|
|
6974
7200
|
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
NotContains: 'not_contains',
|
|
6978
|
-
Eq: 'eq',
|
|
6979
|
-
Neq: 'neq',
|
|
6980
|
-
In: 'in',
|
|
6981
|
-
NotIn: 'not_in',
|
|
6982
|
-
Gt: 'gt',
|
|
6983
|
-
Gte: 'gte',
|
|
6984
|
-
Lt: 'lt',
|
|
6985
|
-
Lte: 'lte',
|
|
6986
|
-
IsEmpty: 'is_empty',
|
|
6987
|
-
IsNotEmpty: 'is_not_empty'
|
|
6988
|
-
};
|
|
6989
|
-
function instanceOfReportQueryFilter(value) {
|
|
6990
|
-
if (!('field' in value) || value['field'] === undefined)
|
|
6991
|
-
return false;
|
|
6992
|
-
if (!('op' in value) || value['op'] === undefined)
|
|
7201
|
+
function instanceOfReportQueryResultColumn(value) {
|
|
7202
|
+
if (!('label' in value) || value['label'] === undefined)
|
|
6993
7203
|
return false;
|
|
6994
|
-
if (!('
|
|
7204
|
+
if (!('kind' in value) || value['kind'] === undefined)
|
|
6995
7205
|
return false;
|
|
6996
7206
|
return true;
|
|
6997
7207
|
}
|
|
6998
|
-
function
|
|
6999
|
-
return
|
|
7208
|
+
function ReportQueryResultColumnFromJSON(json) {
|
|
7209
|
+
return ReportQueryResultColumnFromJSONTyped(json);
|
|
7000
7210
|
}
|
|
7001
|
-
function
|
|
7211
|
+
function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
|
|
7002
7212
|
if (json == null) {
|
|
7003
7213
|
return json;
|
|
7004
7214
|
}
|
|
7005
7215
|
return {
|
|
7006
|
-
'
|
|
7007
|
-
'
|
|
7008
|
-
'values': json['values'],
|
|
7216
|
+
'label': json['label'],
|
|
7217
|
+
'kind': json['kind'],
|
|
7009
7218
|
};
|
|
7010
7219
|
}
|
|
7011
|
-
function
|
|
7012
|
-
return
|
|
7220
|
+
function ReportQueryResultColumnToJSON(json) {
|
|
7221
|
+
return ReportQueryResultColumnToJSONTyped(json, false);
|
|
7013
7222
|
}
|
|
7014
|
-
function
|
|
7223
|
+
function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
|
|
7015
7224
|
if (value == null) {
|
|
7016
7225
|
return value;
|
|
7017
7226
|
}
|
|
7018
7227
|
return {
|
|
7019
|
-
'
|
|
7020
|
-
'
|
|
7021
|
-
'values': value['values'],
|
|
7228
|
+
'label': value['label'],
|
|
7229
|
+
'kind': value['kind'],
|
|
7022
7230
|
};
|
|
7023
7231
|
}
|
|
7024
7232
|
|
|
7025
|
-
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
Quarter: 'quarter',
|
|
7030
|
-
Year: 'year'
|
|
7031
|
-
};
|
|
7032
|
-
const ReportQueryDimensionNormalizeEnum = {
|
|
7033
|
-
None: 'none',
|
|
7034
|
-
TrimCase: 'trim_case',
|
|
7035
|
-
Ipp: 'ipp'
|
|
7036
|
-
};
|
|
7037
|
-
function instanceOfReportQueryDimension(value) {
|
|
7038
|
-
if (!('field' in value) || value['field'] === undefined)
|
|
7233
|
+
function instanceOfReportQueryResult(value) {
|
|
7234
|
+
if (!('columns' in value) || value['columns'] === undefined)
|
|
7235
|
+
return false;
|
|
7236
|
+
if (!('rows' in value) || value['rows'] === undefined)
|
|
7039
7237
|
return false;
|
|
7040
7238
|
return true;
|
|
7041
7239
|
}
|
|
7042
|
-
function
|
|
7043
|
-
return
|
|
7240
|
+
function ReportQueryResultFromJSON(json) {
|
|
7241
|
+
return ReportQueryResultFromJSONTyped(json);
|
|
7044
7242
|
}
|
|
7045
|
-
function
|
|
7243
|
+
function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
|
|
7046
7244
|
if (json == null) {
|
|
7047
7245
|
return json;
|
|
7048
7246
|
}
|
|
7049
7247
|
return {
|
|
7050
|
-
'
|
|
7051
|
-
'
|
|
7052
|
-
'normalize': json['normalize'] == null ? undefined : json['normalize'],
|
|
7053
|
-
'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
|
|
7248
|
+
'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
|
|
7249
|
+
'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
|
|
7054
7250
|
};
|
|
7055
7251
|
}
|
|
7056
|
-
function
|
|
7057
|
-
return
|
|
7252
|
+
function ReportQueryResultToJSON(json) {
|
|
7253
|
+
return ReportQueryResultToJSONTyped(json, false);
|
|
7058
7254
|
}
|
|
7059
|
-
function
|
|
7255
|
+
function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
|
|
7060
7256
|
if (value == null) {
|
|
7061
7257
|
return value;
|
|
7062
7258
|
}
|
|
7063
7259
|
return {
|
|
7064
|
-
'
|
|
7065
|
-
'
|
|
7066
|
-
'normalize': value['normalize'],
|
|
7067
|
-
'includeEmpty': value['includeEmpty'],
|
|
7260
|
+
'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
|
|
7261
|
+
'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
|
|
7068
7262
|
};
|
|
7069
7263
|
}
|
|
7070
7264
|
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
Articles: 'articles',
|
|
7074
|
-
StateHistory: 'state_history'
|
|
7075
|
-
};
|
|
7076
|
-
const ReportQueryDefinitionChartEnum = {
|
|
7077
|
-
Bar: 'bar',
|
|
7078
|
-
Line: 'line',
|
|
7079
|
-
Pie: 'pie',
|
|
7080
|
-
StackedBar: 'stacked_bar',
|
|
7081
|
-
Table: 'table'
|
|
7082
|
-
};
|
|
7083
|
-
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)
|
|
7265
|
+
function instanceOfReportQueryDataDto(value) {
|
|
7266
|
+
if (!('table' in value) || value['table'] === undefined)
|
|
7089
7267
|
return false;
|
|
7090
|
-
if (!('
|
|
7268
|
+
if (!('chart' in value) || value['chart'] === undefined)
|
|
7091
7269
|
return false;
|
|
7092
|
-
|
|
7270
|
+
return true;
|
|
7271
|
+
}
|
|
7272
|
+
function ReportQueryDataDtoFromJSON(json) {
|
|
7273
|
+
return ReportQueryDataDtoFromJSONTyped(json);
|
|
7274
|
+
}
|
|
7275
|
+
function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
7276
|
+
if (json == null) {
|
|
7277
|
+
return json;
|
|
7278
|
+
}
|
|
7279
|
+
return {
|
|
7280
|
+
'table': ReportQueryResultFromJSON(json['table']),
|
|
7281
|
+
'chart': ReportDataJSONDtoFromJSON(json['chart']),
|
|
7282
|
+
};
|
|
7283
|
+
}
|
|
7284
|
+
function ReportQueryDataDtoToJSON(json) {
|
|
7285
|
+
return ReportQueryDataDtoToJSONTyped(json, false);
|
|
7286
|
+
}
|
|
7287
|
+
function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
7288
|
+
if (value == null) {
|
|
7289
|
+
return value;
|
|
7290
|
+
}
|
|
7291
|
+
return {
|
|
7292
|
+
'table': ReportQueryResultToJSON(value['table']),
|
|
7293
|
+
'chart': ReportDataJSONDtoToJSON(value['chart']),
|
|
7294
|
+
};
|
|
7295
|
+
}
|
|
7296
|
+
|
|
7297
|
+
function instanceOfReportQueryDataOutput(value) {
|
|
7298
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
7093
7299
|
return false;
|
|
7094
7300
|
return true;
|
|
7095
7301
|
}
|
|
7096
|
-
function
|
|
7097
|
-
return
|
|
7302
|
+
function ReportQueryDataOutputFromJSON(json) {
|
|
7303
|
+
return ReportQueryDataOutputFromJSONTyped(json);
|
|
7098
7304
|
}
|
|
7099
|
-
function
|
|
7305
|
+
function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
|
|
7100
7306
|
if (json == null) {
|
|
7101
7307
|
return json;
|
|
7102
7308
|
}
|
|
7103
7309
|
return {
|
|
7104
|
-
'
|
|
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)),
|
|
7110
|
-
'chart': json['chart'] == null ? undefined : json['chart'],
|
|
7111
|
-
'labelX': json['labelX'] == null ? undefined : json['labelX'],
|
|
7112
|
-
'labelY': json['labelY'] == null ? undefined : json['labelY'],
|
|
7310
|
+
'data': ReportQueryDataDtoFromJSON(json['data']),
|
|
7113
7311
|
};
|
|
7114
7312
|
}
|
|
7115
|
-
function
|
|
7116
|
-
return
|
|
7313
|
+
function ReportQueryDataOutputToJSON(json) {
|
|
7314
|
+
return ReportQueryDataOutputToJSONTyped(json, false);
|
|
7117
7315
|
}
|
|
7118
|
-
function
|
|
7316
|
+
function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
|
|
7119
7317
|
if (value == null) {
|
|
7120
7318
|
return value;
|
|
7121
7319
|
}
|
|
7122
7320
|
return {
|
|
7123
|
-
'
|
|
7124
|
-
'source': value['source'],
|
|
7125
|
-
'itemTypeIds': value['itemTypeIds'],
|
|
7126
|
-
'dimensions': (value['dimensions'].map(ReportQueryDimensionToJSON)),
|
|
7127
|
-
'metrics': (value['metrics'].map(ReportQueryMetricToJSON)),
|
|
7128
|
-
'filters': (value['filters'].map(ReportQueryFilterToJSON)),
|
|
7129
|
-
'chart': value['chart'],
|
|
7130
|
-
'labelX': value['labelX'],
|
|
7131
|
-
'labelY': value['labelY'],
|
|
7321
|
+
'data': ReportQueryDataDtoToJSON(value['data']),
|
|
7132
7322
|
};
|
|
7133
7323
|
}
|
|
7134
7324
|
|
|
7325
|
+
const ReportQueryDateBucket = {
|
|
7326
|
+
Day: 'day',
|
|
7327
|
+
Week: 'week',
|
|
7328
|
+
Month: 'month',
|
|
7329
|
+
Quarter: 'quarter',
|
|
7330
|
+
Year: 'year'
|
|
7331
|
+
};
|
|
7332
|
+
function instanceOfReportQueryDateBucket(value) {
|
|
7333
|
+
for (const key in ReportQueryDateBucket) {
|
|
7334
|
+
if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
|
|
7335
|
+
if (ReportQueryDateBucket[key] === value) {
|
|
7336
|
+
return true;
|
|
7337
|
+
}
|
|
7338
|
+
}
|
|
7339
|
+
}
|
|
7340
|
+
return false;
|
|
7341
|
+
}
|
|
7342
|
+
function ReportQueryDateBucketFromJSON(json) {
|
|
7343
|
+
return ReportQueryDateBucketFromJSONTyped(json);
|
|
7344
|
+
}
|
|
7345
|
+
function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
|
|
7346
|
+
return json;
|
|
7347
|
+
}
|
|
7348
|
+
function ReportQueryDateBucketToJSON(value) {
|
|
7349
|
+
return value;
|
|
7350
|
+
}
|
|
7351
|
+
function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
|
|
7352
|
+
return value;
|
|
7353
|
+
}
|
|
7354
|
+
|
|
7135
7355
|
function instanceOfReportQueryDto(value) {
|
|
7136
7356
|
if (!('id' in value) || value['id'] === undefined)
|
|
7137
7357
|
return false;
|
|
@@ -7416,6 +7636,33 @@ function ReportQueryPreviewInputToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
7416
7636
|
};
|
|
7417
7637
|
}
|
|
7418
7638
|
|
|
7639
|
+
const ReportQuerySeriesChart = {
|
|
7640
|
+
Bar: 'bar',
|
|
7641
|
+
Line: 'line'
|
|
7642
|
+
};
|
|
7643
|
+
function instanceOfReportQuerySeriesChart(value) {
|
|
7644
|
+
for (const key in ReportQuerySeriesChart) {
|
|
7645
|
+
if (Object.prototype.hasOwnProperty.call(ReportQuerySeriesChart, key)) {
|
|
7646
|
+
if (ReportQuerySeriesChart[key] === value) {
|
|
7647
|
+
return true;
|
|
7648
|
+
}
|
|
7649
|
+
}
|
|
7650
|
+
}
|
|
7651
|
+
return false;
|
|
7652
|
+
}
|
|
7653
|
+
function ReportQuerySeriesChartFromJSON(json) {
|
|
7654
|
+
return ReportQuerySeriesChartFromJSONTyped(json);
|
|
7655
|
+
}
|
|
7656
|
+
function ReportQuerySeriesChartFromJSONTyped(json, ignoreDiscriminator) {
|
|
7657
|
+
return json;
|
|
7658
|
+
}
|
|
7659
|
+
function ReportQuerySeriesChartToJSON(value) {
|
|
7660
|
+
return value;
|
|
7661
|
+
}
|
|
7662
|
+
function ReportQuerySeriesChartToJSONTyped(value, ignoreDiscriminator) {
|
|
7663
|
+
return value;
|
|
7664
|
+
}
|
|
7665
|
+
|
|
7419
7666
|
const ReportQuerySource = {
|
|
7420
7667
|
Items: 'items',
|
|
7421
7668
|
Articles: 'articles',
|
|
@@ -10975,6 +11222,29 @@ class ReportApi extends BaseAPI {
|
|
|
10975
11222
|
const response = await this.apiV1ReportReportIdGetRaw(requestParameters, initOverrides);
|
|
10976
11223
|
return await response.value();
|
|
10977
11224
|
}
|
|
11225
|
+
async apiV2ReportAssistantPostRaw(requestParameters, initOverrides) {
|
|
11226
|
+
if (requestParameters['reportQueryAssistantInput'] == null) {
|
|
11227
|
+
throw new RequiredError('reportQueryAssistantInput', 'Required parameter "reportQueryAssistantInput" was null or undefined when calling apiV2ReportAssistantPost().');
|
|
11228
|
+
}
|
|
11229
|
+
const queryParameters = {};
|
|
11230
|
+
const headerParameters = {};
|
|
11231
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
11232
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
11233
|
+
headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
|
|
11234
|
+
}
|
|
11235
|
+
const response = await this.request({
|
|
11236
|
+
path: `/api/v2/report/assistant`,
|
|
11237
|
+
method: 'POST',
|
|
11238
|
+
headers: headerParameters,
|
|
11239
|
+
query: queryParameters,
|
|
11240
|
+
body: ReportQueryAssistantInputToJSON(requestParameters['reportQueryAssistantInput']),
|
|
11241
|
+
}, initOverrides);
|
|
11242
|
+
return new JSONApiResponse(response, (jsonValue) => ReportQueryAssistantOutputFromJSON(jsonValue));
|
|
11243
|
+
}
|
|
11244
|
+
async apiV2ReportAssistantPost(requestParameters, initOverrides) {
|
|
11245
|
+
const response = await this.apiV2ReportAssistantPostRaw(requestParameters, initOverrides);
|
|
11246
|
+
return await response.value();
|
|
11247
|
+
}
|
|
10978
11248
|
async apiV2ReportCatalogGetRaw(initOverrides) {
|
|
10979
11249
|
const queryParameters = {};
|
|
10980
11250
|
const headerParameters = {};
|
|
@@ -11448,6 +11718,10 @@ exports.AvailableArticlesOutputFromJSON = AvailableArticlesOutputFromJSON;
|
|
|
11448
11718
|
exports.AvailableArticlesOutputFromJSONTyped = AvailableArticlesOutputFromJSONTyped;
|
|
11449
11719
|
exports.AvailableArticlesOutputToJSON = AvailableArticlesOutputToJSON;
|
|
11450
11720
|
exports.AvailableArticlesOutputToJSONTyped = AvailableArticlesOutputToJSONTyped;
|
|
11721
|
+
exports.AxisGridFromJSON = AxisGridFromJSON;
|
|
11722
|
+
exports.AxisGridFromJSONTyped = AxisGridFromJSONTyped;
|
|
11723
|
+
exports.AxisGridToJSON = AxisGridToJSON;
|
|
11724
|
+
exports.AxisGridToJSONTyped = AxisGridToJSONTyped;
|
|
11451
11725
|
exports.AxisTimeFromJSON = AxisTimeFromJSON;
|
|
11452
11726
|
exports.AxisTimeFromJSONTyped = AxisTimeFromJSONTyped;
|
|
11453
11727
|
exports.AxisTimeToJSON = AxisTimeToJSON;
|
|
@@ -11516,10 +11790,10 @@ exports.DataPointFromJSON = DataPointFromJSON;
|
|
|
11516
11790
|
exports.DataPointFromJSONTyped = DataPointFromJSONTyped;
|
|
11517
11791
|
exports.DataPointToJSON = DataPointToJSON;
|
|
11518
11792
|
exports.DataPointToJSONTyped = DataPointToJSONTyped;
|
|
11519
|
-
exports.
|
|
11520
|
-
exports.
|
|
11521
|
-
exports.
|
|
11522
|
-
exports.
|
|
11793
|
+
exports.Def230FromJSON = Def230FromJSON;
|
|
11794
|
+
exports.Def230FromJSONTyped = Def230FromJSONTyped;
|
|
11795
|
+
exports.Def230ToJSON = Def230ToJSON;
|
|
11796
|
+
exports.Def230ToJSONTyped = Def230ToJSONTyped;
|
|
11523
11797
|
exports.DefaultApi = DefaultApi;
|
|
11524
11798
|
exports.DefaultConfig = DefaultConfig;
|
|
11525
11799
|
exports.FetchError = FetchError;
|
|
@@ -12104,6 +12378,23 @@ exports.ReportOutputFromJSON = ReportOutputFromJSON;
|
|
|
12104
12378
|
exports.ReportOutputFromJSONTyped = ReportOutputFromJSONTyped;
|
|
12105
12379
|
exports.ReportOutputToJSON = ReportOutputToJSON;
|
|
12106
12380
|
exports.ReportOutputToJSONTyped = ReportOutputToJSONTyped;
|
|
12381
|
+
exports.ReportQueryAssistantDtoFromJSON = ReportQueryAssistantDtoFromJSON;
|
|
12382
|
+
exports.ReportQueryAssistantDtoFromJSONTyped = ReportQueryAssistantDtoFromJSONTyped;
|
|
12383
|
+
exports.ReportQueryAssistantDtoToJSON = ReportQueryAssistantDtoToJSON;
|
|
12384
|
+
exports.ReportQueryAssistantDtoToJSONTyped = ReportQueryAssistantDtoToJSONTyped;
|
|
12385
|
+
exports.ReportQueryAssistantInputFromJSON = ReportQueryAssistantInputFromJSON;
|
|
12386
|
+
exports.ReportQueryAssistantInputFromJSONTyped = ReportQueryAssistantInputFromJSONTyped;
|
|
12387
|
+
exports.ReportQueryAssistantInputToJSON = ReportQueryAssistantInputToJSON;
|
|
12388
|
+
exports.ReportQueryAssistantInputToJSONTyped = ReportQueryAssistantInputToJSONTyped;
|
|
12389
|
+
exports.ReportQueryAssistantOutputFromJSON = ReportQueryAssistantOutputFromJSON;
|
|
12390
|
+
exports.ReportQueryAssistantOutputFromJSONTyped = ReportQueryAssistantOutputFromJSONTyped;
|
|
12391
|
+
exports.ReportQueryAssistantOutputToJSON = ReportQueryAssistantOutputToJSON;
|
|
12392
|
+
exports.ReportQueryAssistantOutputToJSONTyped = ReportQueryAssistantOutputToJSONTyped;
|
|
12393
|
+
exports.ReportQueryAxis = ReportQueryAxis;
|
|
12394
|
+
exports.ReportQueryAxisFromJSON = ReportQueryAxisFromJSON;
|
|
12395
|
+
exports.ReportQueryAxisFromJSONTyped = ReportQueryAxisFromJSONTyped;
|
|
12396
|
+
exports.ReportQueryAxisToJSON = ReportQueryAxisToJSON;
|
|
12397
|
+
exports.ReportQueryAxisToJSONTyped = ReportQueryAxisToJSONTyped;
|
|
12107
12398
|
exports.ReportQueryCatalogFieldBucketsEnum = ReportQueryCatalogFieldBucketsEnum;
|
|
12108
12399
|
exports.ReportQueryCatalogFieldFilterOperatorsEnum = ReportQueryCatalogFieldFilterOperatorsEnum;
|
|
12109
12400
|
exports.ReportQueryCatalogFieldFromJSON = ReportQueryCatalogFieldFromJSON;
|
|
@@ -12210,6 +12501,18 @@ exports.ReportQueryResultRowToJSON = ReportQueryResultRowToJSON;
|
|
|
12210
12501
|
exports.ReportQueryResultRowToJSONTyped = ReportQueryResultRowToJSONTyped;
|
|
12211
12502
|
exports.ReportQueryResultToJSON = ReportQueryResultToJSON;
|
|
12212
12503
|
exports.ReportQueryResultToJSONTyped = ReportQueryResultToJSONTyped;
|
|
12504
|
+
exports.ReportQuerySeriesAxisEnum = ReportQuerySeriesAxisEnum;
|
|
12505
|
+
exports.ReportQuerySeriesChart = ReportQuerySeriesChart;
|
|
12506
|
+
exports.ReportQuerySeriesChartEnum = ReportQuerySeriesChartEnum;
|
|
12507
|
+
exports.ReportQuerySeriesChartFromJSON = ReportQuerySeriesChartFromJSON;
|
|
12508
|
+
exports.ReportQuerySeriesChartFromJSONTyped = ReportQuerySeriesChartFromJSONTyped;
|
|
12509
|
+
exports.ReportQuerySeriesChartToJSON = ReportQuerySeriesChartToJSON;
|
|
12510
|
+
exports.ReportQuerySeriesChartToJSONTyped = ReportQuerySeriesChartToJSONTyped;
|
|
12511
|
+
exports.ReportQuerySeriesFromJSON = ReportQuerySeriesFromJSON;
|
|
12512
|
+
exports.ReportQuerySeriesFromJSONTyped = ReportQuerySeriesFromJSONTyped;
|
|
12513
|
+
exports.ReportQuerySeriesSourceEnum = ReportQuerySeriesSourceEnum;
|
|
12514
|
+
exports.ReportQuerySeriesToJSON = ReportQuerySeriesToJSON;
|
|
12515
|
+
exports.ReportQuerySeriesToJSONTyped = ReportQuerySeriesToJSONTyped;
|
|
12213
12516
|
exports.ReportQuerySource = ReportQuerySource;
|
|
12214
12517
|
exports.ReportQuerySourceFromJSON = ReportQuerySourceFromJSON;
|
|
12215
12518
|
exports.ReportQuerySourceFromJSONTyped = ReportQuerySourceFromJSONTyped;
|
|
@@ -12393,6 +12696,7 @@ exports.instanceOfArticleTypeORM = instanceOfArticleTypeORM;
|
|
|
12393
12696
|
exports.instanceOfAutoCompleteORM = instanceOfAutoCompleteORM;
|
|
12394
12697
|
exports.instanceOfAvailableArticlesDto = instanceOfAvailableArticlesDto;
|
|
12395
12698
|
exports.instanceOfAvailableArticlesOutput = instanceOfAvailableArticlesOutput;
|
|
12699
|
+
exports.instanceOfAxisGrid = instanceOfAxisGrid;
|
|
12396
12700
|
exports.instanceOfAxisTime = instanceOfAxisTime;
|
|
12397
12701
|
exports.instanceOfAxisTitle = instanceOfAxisTitle;
|
|
12398
12702
|
exports.instanceOfCalculateTourInput = instanceOfCalculateTourInput;
|
|
@@ -12408,7 +12712,7 @@ exports.instanceOfChartTitle = instanceOfChartTitle;
|
|
|
12408
12712
|
exports.instanceOfComputeRouteInput = instanceOfComputeRouteInput;
|
|
12409
12713
|
exports.instanceOfCoordDto = instanceOfCoordDto;
|
|
12410
12714
|
exports.instanceOfDataPoint = instanceOfDataPoint;
|
|
12411
|
-
exports.
|
|
12715
|
+
exports.instanceOfDef230 = instanceOfDef230;
|
|
12412
12716
|
exports.instanceOfHealthcheckStatusValue = instanceOfHealthcheckStatusValue;
|
|
12413
12717
|
exports.instanceOfInternalMapItemSearchResultORM = instanceOfInternalMapItemSearchResultORM;
|
|
12414
12718
|
exports.instanceOfItemDecorationDto = instanceOfItemDecorationDto;
|
|
@@ -12546,6 +12850,10 @@ exports.instanceOfReportDto = instanceOfReportDto;
|
|
|
12546
12850
|
exports.instanceOfReportListOutput = instanceOfReportListOutput;
|
|
12547
12851
|
exports.instanceOfReportORM = instanceOfReportORM;
|
|
12548
12852
|
exports.instanceOfReportOutput = instanceOfReportOutput;
|
|
12853
|
+
exports.instanceOfReportQueryAssistantDto = instanceOfReportQueryAssistantDto;
|
|
12854
|
+
exports.instanceOfReportQueryAssistantInput = instanceOfReportQueryAssistantInput;
|
|
12855
|
+
exports.instanceOfReportQueryAssistantOutput = instanceOfReportQueryAssistantOutput;
|
|
12856
|
+
exports.instanceOfReportQueryAxis = instanceOfReportQueryAxis;
|
|
12549
12857
|
exports.instanceOfReportQueryCatalogField = instanceOfReportQueryCatalogField;
|
|
12550
12858
|
exports.instanceOfReportQueryCatalogOutput = instanceOfReportQueryCatalogOutput;
|
|
12551
12859
|
exports.instanceOfReportQueryChart = instanceOfReportQueryChart;
|
|
@@ -12568,6 +12876,8 @@ exports.instanceOfReportQueryPreviewInput = instanceOfReportQueryPreviewInput;
|
|
|
12568
12876
|
exports.instanceOfReportQueryResult = instanceOfReportQueryResult;
|
|
12569
12877
|
exports.instanceOfReportQueryResultColumn = instanceOfReportQueryResultColumn;
|
|
12570
12878
|
exports.instanceOfReportQueryResultRow = instanceOfReportQueryResultRow;
|
|
12879
|
+
exports.instanceOfReportQuerySeries = instanceOfReportQuerySeries;
|
|
12880
|
+
exports.instanceOfReportQuerySeriesChart = instanceOfReportQuerySeriesChart;
|
|
12571
12881
|
exports.instanceOfReportQuerySource = instanceOfReportQuerySource;
|
|
12572
12882
|
exports.instanceOfReverseGeoCodingOutput = instanceOfReverseGeoCodingOutput;
|
|
12573
12883
|
exports.instanceOfRouteDto = instanceOfRouteDto;
|