@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.
Files changed (52) hide show
  1. package/dist/apis/ReportApi.d.ts +6 -1
  2. package/dist/apis/ReportApi.js +24 -1
  3. package/dist/apis/ReportApi.js.map +1 -1
  4. package/dist/index.cjs +626 -316
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.ts +219 -112
  7. package/dist/index.mjs +582 -312
  8. package/dist/index.mjs.map +1 -1
  9. package/dist/models/AxisGrid.d.ts +8 -0
  10. package/dist/models/AxisGrid.js +28 -0
  11. package/dist/models/AxisGrid.js.map +1 -0
  12. package/dist/models/ChartDataset.d.ts +1 -0
  13. package/dist/models/ChartDataset.js +2 -0
  14. package/dist/models/ChartDataset.js.map +1 -1
  15. package/dist/models/ChartScales.d.ts +1 -0
  16. package/dist/models/ChartScales.js +2 -0
  17. package/dist/models/ChartScales.js.map +1 -1
  18. package/dist/models/Def230.d.ts +8 -0
  19. package/dist/models/Def230.js +16 -0
  20. package/dist/models/{Def223.js.map → Def230.js.map} +1 -1
  21. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  22. package/dist/models/ReportAllItemsListOutput.js +3 -3
  23. package/dist/models/ReportQueryAssistantDto.d.ts +12 -0
  24. package/dist/models/ReportQueryAssistantDto.js +41 -0
  25. package/dist/models/ReportQueryAssistantDto.js.map +1 -0
  26. package/dist/models/ReportQueryAssistantInput.d.ts +10 -0
  27. package/dist/models/ReportQueryAssistantInput.js +31 -0
  28. package/dist/models/ReportQueryAssistantInput.js.map +1 -0
  29. package/dist/models/ReportQueryAssistantOutput.d.ts +9 -0
  30. package/dist/models/ReportQueryAssistantOutput.js +29 -0
  31. package/dist/models/ReportQueryAssistantOutput.js.map +1 -0
  32. package/dist/models/ReportQueryAxis.d.ts +10 -0
  33. package/dist/models/ReportQueryAxis.js +27 -0
  34. package/dist/models/ReportQueryAxis.js.map +1 -0
  35. package/dist/models/ReportQueryDefinition.d.ts +9 -5
  36. package/dist/models/ReportQueryDefinition.js +15 -18
  37. package/dist/models/ReportQueryDefinition.js.map +1 -1
  38. package/dist/models/ReportQuerySeries.d.ts +35 -0
  39. package/dist/models/ReportQuerySeries.js +66 -0
  40. package/dist/models/ReportQuerySeries.js.map +1 -0
  41. package/dist/models/ReportQuerySeriesChart.d.ts +10 -0
  42. package/dist/models/ReportQuerySeriesChart.js +27 -0
  43. package/dist/models/ReportQuerySeriesChart.js.map +1 -0
  44. package/dist/models/YAxisOptions.d.ts +3 -0
  45. package/dist/models/YAxisOptions.js +5 -0
  46. package/dist/models/YAxisOptions.js.map +1 -1
  47. package/dist/models/index.d.ts +8 -1
  48. package/dist/models/index.js +8 -1
  49. package/dist/models/index.js.map +1 -1
  50. package/package.json +1 -1
  51. package/dist/models/Def223.d.ts +0 -8
  52. package/dist/models/Def223.js +0 -16
package/dist/index.mjs CHANGED
@@ -711,6 +711,34 @@ function AvailableArticlesOutputToJSONTyped(value, ignoreDiscriminator = false)
711
711
  };
712
712
  }
713
713
 
714
+ function instanceOfAxisGrid(value) {
715
+ if (!('drawOnChartArea' in value) || value['drawOnChartArea'] === undefined)
716
+ return false;
717
+ return true;
718
+ }
719
+ function AxisGridFromJSON(json) {
720
+ return AxisGridFromJSONTyped(json);
721
+ }
722
+ function AxisGridFromJSONTyped(json, ignoreDiscriminator) {
723
+ if (json == null) {
724
+ return json;
725
+ }
726
+ return {
727
+ 'drawOnChartArea': json['drawOnChartArea'],
728
+ };
729
+ }
730
+ function AxisGridToJSON(json) {
731
+ return AxisGridToJSONTyped(json, false);
732
+ }
733
+ function AxisGridToJSONTyped(value, ignoreDiscriminator = false) {
734
+ if (value == null) {
735
+ return value;
736
+ }
737
+ return {
738
+ 'drawOnChartArea': value['drawOnChartArea'],
739
+ };
740
+ }
741
+
714
742
  function instanceOfAxisTime(value) {
715
743
  if (!('unit' in value) || value['unit'] === undefined)
716
744
  return false;
@@ -922,6 +950,7 @@ function ChartDatasetFromJSONTyped(json, ignoreDiscriminator) {
922
950
  'fill': json['fill'] == null ? undefined : json['fill'],
923
951
  'tension': json['tension'] == null ? undefined : json['tension'],
924
952
  'label': json['label'],
953
+ 'yAxisID': json['yAxisID'] == null ? undefined : json['yAxisID'],
925
954
  };
926
955
  }
927
956
  function ChartDatasetToJSON(json) {
@@ -940,6 +969,7 @@ function ChartDatasetToJSONTyped(value, ignoreDiscriminator = false) {
940
969
  'fill': value['fill'],
941
970
  'tension': value['tension'],
942
971
  'label': value['label'],
972
+ 'yAxisID': value['yAxisID'],
943
973
  };
944
974
  }
945
975
 
@@ -1120,6 +1150,8 @@ function YAxisOptionsFromJSONTyped(json, ignoreDiscriminator) {
1120
1150
  return {
1121
1151
  'beginAtZero': json['beginAtZero'],
1122
1152
  'title': AxisTitleFromJSON(json['title']),
1153
+ 'position': json['position'] == null ? undefined : json['position'],
1154
+ 'grid': json['grid'] == null ? undefined : AxisGridFromJSON(json['grid']),
1123
1155
  };
1124
1156
  }
1125
1157
  function YAxisOptionsToJSON(json) {
@@ -1132,6 +1164,8 @@ function YAxisOptionsToJSONTyped(value, ignoreDiscriminator = false) {
1132
1164
  return {
1133
1165
  'beginAtZero': value['beginAtZero'],
1134
1166
  'title': AxisTitleToJSON(value['title']),
1167
+ 'position': value['position'],
1168
+ 'grid': AxisGridToJSON(value['grid']),
1135
1169
  };
1136
1170
  }
1137
1171
 
@@ -1152,6 +1186,7 @@ function ChartScalesFromJSONTyped(json, ignoreDiscriminator) {
1152
1186
  return {
1153
1187
  'y': YAxisOptionsFromJSON(json['y']),
1154
1188
  'x': XAxisOptionsFromJSON(json['x']),
1189
+ 'y2': json['y2'] == null ? undefined : YAxisOptionsFromJSON(json['y2']),
1155
1190
  };
1156
1191
  }
1157
1192
  function ChartScalesToJSON(json) {
@@ -1164,6 +1199,7 @@ function ChartScalesToJSONTyped(value, ignoreDiscriminator = false) {
1164
1199
  return {
1165
1200
  'y': YAxisOptionsToJSON(value['y']),
1166
1201
  'x': XAxisOptionsToJSON(value['x']),
1202
+ 'y2': YAxisOptionsToJSON(value['y2']),
1167
1203
  };
1168
1204
  }
1169
1205
 
@@ -1281,19 +1317,19 @@ function ComputeRouteInputToJSONTyped(value, ignoreDiscriminator = false) {
1281
1317
  };
1282
1318
  }
1283
1319
 
1284
- function instanceOfDef223(value) {
1320
+ function instanceOfDef230(value) {
1285
1321
  return true;
1286
1322
  }
1287
- function Def223FromJSON(json) {
1288
- return Def223FromJSONTyped(json);
1323
+ function Def230FromJSON(json) {
1324
+ return Def230FromJSONTyped(json);
1289
1325
  }
1290
- function Def223FromJSONTyped(json, ignoreDiscriminator) {
1326
+ function Def230FromJSONTyped(json, ignoreDiscriminator) {
1291
1327
  return json;
1292
1328
  }
1293
- function Def223ToJSON(json) {
1294
- return Def223ToJSONTyped(json, false);
1329
+ function Def230ToJSON(json) {
1330
+ return Def230ToJSONTyped(json, false);
1295
1331
  }
1296
- function Def223ToJSONTyped(value, ignoreDiscriminator = false) {
1332
+ function Def230ToJSONTyped(value, ignoreDiscriminator = false) {
1297
1333
  return value;
1298
1334
  }
1299
1335
 
@@ -5929,7 +5965,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
5929
5965
  return json;
5930
5966
  }
5931
5967
  return {
5932
- 'data': (json['data'].map(Def223FromJSON)),
5968
+ 'data': (json['data'].map(Def230FromJSON)),
5933
5969
  'pageInfo': PageInfoFromJSON(json['pageInfo']),
5934
5970
  };
5935
5971
  }
@@ -5941,7 +5977,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
5941
5977
  return value;
5942
5978
  }
5943
5979
  return {
5944
- 'data': (value['data'].map(Def223ToJSON)),
5980
+ 'data': (value['data'].map(Def230ToJSON)),
5945
5981
  'pageInfo': PageInfoToJSON(value['pageInfo']),
5946
5982
  };
5947
5983
  }
@@ -6574,19 +6610,7 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
6574
6610
  };
6575
6611
  }
6576
6612
 
6577
- const ReportQueryCatalogFieldTypeEnum = {
6578
- Number: 'number',
6579
- Boolean: 'boolean',
6580
- Category: 'category',
6581
- Text: 'text',
6582
- Date: 'date'
6583
- };
6584
- const ReportQueryCatalogFieldSourcesEnum = {
6585
- Items: 'items',
6586
- Articles: 'articles',
6587
- StateHistory: 'state_history'
6588
- };
6589
- const ReportQueryCatalogFieldMetricOperationsEnum = {
6613
+ const ReportQueryMetricOpEnum = {
6590
6614
  Count: 'count',
6591
6615
  CountDistinct: 'count_distinct',
6592
6616
  Sum: 'sum',
@@ -6594,7 +6618,39 @@ const ReportQueryCatalogFieldMetricOperationsEnum = {
6594
6618
  Min: 'min',
6595
6619
  Max: 'max'
6596
6620
  };
6597
- const ReportQueryCatalogFieldFilterOperatorsEnum = {
6621
+ function instanceOfReportQueryMetric(value) {
6622
+ if (!('op' in value) || value['op'] === undefined)
6623
+ return false;
6624
+ return true;
6625
+ }
6626
+ function ReportQueryMetricFromJSON(json) {
6627
+ return ReportQueryMetricFromJSONTyped(json);
6628
+ }
6629
+ function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
6630
+ if (json == null) {
6631
+ return json;
6632
+ }
6633
+ return {
6634
+ 'op': json['op'],
6635
+ 'field': json['field'] == null ? undefined : json['field'],
6636
+ 'label': json['label'] == null ? undefined : json['label'],
6637
+ };
6638
+ }
6639
+ function ReportQueryMetricToJSON(json) {
6640
+ return ReportQueryMetricToJSONTyped(json, false);
6641
+ }
6642
+ function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
6643
+ if (value == null) {
6644
+ return value;
6645
+ }
6646
+ return {
6647
+ 'op': value['op'],
6648
+ 'field': value['field'],
6649
+ 'label': value['label'],
6650
+ };
6651
+ }
6652
+
6653
+ const ReportQueryFilterOpEnum = {
6598
6654
  Contains: 'contains',
6599
6655
  NotContains: 'not_contains',
6600
6656
  Eq: 'eq',
@@ -6608,528 +6664,692 @@ const ReportQueryCatalogFieldFilterOperatorsEnum = {
6608
6664
  IsEmpty: 'is_empty',
6609
6665
  IsNotEmpty: 'is_not_empty'
6610
6666
  };
6611
- const ReportQueryCatalogFieldBucketsEnum = {
6667
+ function instanceOfReportQueryFilter(value) {
6668
+ if (!('field' in value) || value['field'] === undefined)
6669
+ return false;
6670
+ if (!('op' in value) || value['op'] === undefined)
6671
+ return false;
6672
+ if (!('values' in value) || value['values'] === undefined)
6673
+ return false;
6674
+ return true;
6675
+ }
6676
+ function ReportQueryFilterFromJSON(json) {
6677
+ return ReportQueryFilterFromJSONTyped(json);
6678
+ }
6679
+ function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
6680
+ if (json == null) {
6681
+ return json;
6682
+ }
6683
+ return {
6684
+ 'field': json['field'],
6685
+ 'op': json['op'],
6686
+ 'values': json['values'],
6687
+ };
6688
+ }
6689
+ function ReportQueryFilterToJSON(json) {
6690
+ return ReportQueryFilterToJSONTyped(json, false);
6691
+ }
6692
+ function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
6693
+ if (value == null) {
6694
+ return value;
6695
+ }
6696
+ return {
6697
+ 'field': value['field'],
6698
+ 'op': value['op'],
6699
+ 'values': value['values'],
6700
+ };
6701
+ }
6702
+
6703
+ const ReportQueryDimensionBucketEnum = {
6612
6704
  Day: 'day',
6613
6705
  Week: 'week',
6614
6706
  Month: 'month',
6615
6707
  Quarter: 'quarter',
6616
6708
  Year: 'year'
6617
6709
  };
6618
- const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
6710
+ const ReportQueryDimensionNormalizeEnum = {
6619
6711
  None: 'none',
6620
6712
  TrimCase: 'trim_case',
6621
6713
  Ipp: 'ipp'
6622
6714
  };
6623
- function instanceOfReportQueryCatalogField(value) {
6624
- if (!('id' in value) || value['id'] === undefined)
6625
- return false;
6626
- if (!('label' in value) || value['label'] === undefined)
6627
- return false;
6628
- if (!('type' in value) || value['type'] === undefined)
6629
- return false;
6630
- if (!('group' in value) || value['group'] === undefined)
6631
- return false;
6632
- if (!('sources' in value) || value['sources'] === undefined)
6633
- return false;
6634
- if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
6635
- return false;
6636
- if (!('metricOperations' in value) || value['metricOperations'] === undefined)
6637
- return false;
6638
- if (!('filterOperators' in value) || value['filterOperators'] === undefined)
6715
+ function instanceOfReportQueryDimension(value) {
6716
+ if (!('field' in value) || value['field'] === undefined)
6639
6717
  return false;
6640
6718
  return true;
6641
6719
  }
6642
- function ReportQueryCatalogFieldFromJSON(json) {
6643
- return ReportQueryCatalogFieldFromJSONTyped(json);
6720
+ function ReportQueryDimensionFromJSON(json) {
6721
+ return ReportQueryDimensionFromJSONTyped(json);
6644
6722
  }
6645
- function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
6723
+ function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
6646
6724
  if (json == null) {
6647
6725
  return json;
6648
6726
  }
6649
6727
  return {
6650
- 'id': json['id'],
6651
- 'label': json['label'],
6652
- 'type': json['type'],
6653
- 'group': json['group'],
6654
- 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
6655
- 'sources': json['sources'],
6656
- 'canBeDimension': json['canBeDimension'],
6657
- 'metricOperations': json['metricOperations'],
6658
- 'filterOperators': json['filterOperators'],
6659
- 'buckets': json['buckets'] == null ? undefined : json['buckets'],
6660
- 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
6728
+ 'field': json['field'],
6729
+ 'bucket': json['bucket'] == null ? undefined : json['bucket'],
6730
+ 'normalize': json['normalize'] == null ? undefined : json['normalize'],
6731
+ 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
6661
6732
  };
6662
6733
  }
6663
- function ReportQueryCatalogFieldToJSON(json) {
6664
- return ReportQueryCatalogFieldToJSONTyped(json, false);
6734
+ function ReportQueryDimensionToJSON(json) {
6735
+ return ReportQueryDimensionToJSONTyped(json, false);
6665
6736
  }
6666
- function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
6737
+ function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
6667
6738
  if (value == null) {
6668
6739
  return value;
6669
6740
  }
6670
6741
  return {
6671
- 'id': value['id'],
6672
- 'label': value['label'],
6673
- 'type': value['type'],
6674
- 'group': value['group'],
6675
- 'itemTypeId': value['itemTypeId'],
6676
- 'sources': value['sources'],
6677
- 'canBeDimension': value['canBeDimension'],
6678
- 'metricOperations': value['metricOperations'],
6679
- 'filterOperators': value['filterOperators'],
6680
- 'buckets': value['buckets'],
6681
- 'suggestedNormalize': value['suggestedNormalize'],
6742
+ 'field': value['field'],
6743
+ 'bucket': value['bucket'],
6744
+ 'normalize': value['normalize'],
6745
+ 'includeEmpty': value['includeEmpty'],
6682
6746
  };
6683
6747
  }
6684
6748
 
6685
- function instanceOfReportQueryCatalogOutput(value) {
6686
- if (!('data' in value) || value['data'] === undefined)
6749
+ const ReportQuerySeriesSourceEnum = {
6750
+ Items: 'items',
6751
+ Articles: 'articles',
6752
+ StateHistory: 'state_history'
6753
+ };
6754
+ const ReportQuerySeriesChartEnum = {
6755
+ Bar: 'bar',
6756
+ Line: 'line'
6757
+ };
6758
+ const ReportQuerySeriesAxisEnum = {
6759
+ Y: 'y',
6760
+ Y2: 'y2'
6761
+ };
6762
+ function instanceOfReportQuerySeries(value) {
6763
+ if (!('source' in value) || value['source'] === undefined)
6764
+ return false;
6765
+ if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
6766
+ return false;
6767
+ if (!('filters' in value) || value['filters'] === undefined)
6768
+ return false;
6769
+ if (!('metric' in value) || value['metric'] === undefined)
6687
6770
  return false;
6688
6771
  return true;
6689
6772
  }
6690
- function ReportQueryCatalogOutputFromJSON(json) {
6691
- return ReportQueryCatalogOutputFromJSONTyped(json);
6773
+ function ReportQuerySeriesFromJSON(json) {
6774
+ return ReportQuerySeriesFromJSONTyped(json);
6692
6775
  }
6693
- function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
6776
+ function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
6694
6777
  if (json == null) {
6695
6778
  return json;
6696
6779
  }
6697
6780
  return {
6698
- 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
6781
+ 'label': json['label'] == null ? undefined : json['label'],
6782
+ 'source': json['source'],
6783
+ 'itemTypeIds': json['itemTypeIds'],
6784
+ 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
6785
+ 'metric': ReportQueryMetricFromJSON(json['metric']),
6786
+ 'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
6787
+ 'chart': json['chart'] == null ? undefined : json['chart'],
6788
+ 'color': json['color'] == null ? undefined : json['color'],
6789
+ 'axis': json['axis'] == null ? undefined : json['axis'],
6699
6790
  };
6700
6791
  }
6701
- function ReportQueryCatalogOutputToJSON(json) {
6702
- return ReportQueryCatalogOutputToJSONTyped(json, false);
6792
+ function ReportQuerySeriesToJSON(json) {
6793
+ return ReportQuerySeriesToJSONTyped(json, false);
6703
6794
  }
6704
- function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
6795
+ function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
6705
6796
  if (value == null) {
6706
6797
  return value;
6707
6798
  }
6708
6799
  return {
6709
- 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
6800
+ 'label': value['label'],
6801
+ 'source': value['source'],
6802
+ 'itemTypeIds': value['itemTypeIds'],
6803
+ 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
6804
+ 'metric': ReportQueryMetricToJSON(value['metric']),
6805
+ 'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
6806
+ 'chart': value['chart'],
6807
+ 'color': value['color'],
6808
+ 'axis': value['axis'],
6710
6809
  };
6711
6810
  }
6712
6811
 
6713
- const ReportQueryChart = {
6812
+ const ReportQueryDefinitionSourceEnum = {
6813
+ Items: 'items',
6814
+ Articles: 'articles',
6815
+ StateHistory: 'state_history'
6816
+ };
6817
+ const ReportQueryDefinitionChartEnum = {
6714
6818
  Bar: 'bar',
6715
6819
  Line: 'line',
6716
6820
  Pie: 'pie',
6717
6821
  StackedBar: 'stacked_bar',
6718
6822
  Table: 'table'
6719
6823
  };
6720
- function instanceOfReportQueryChart(value) {
6721
- for (const key in ReportQueryChart) {
6722
- if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
6723
- if (ReportQueryChart[key] === value) {
6724
- return true;
6725
- }
6726
- }
6727
- }
6728
- return false;
6729
- }
6730
- function ReportQueryChartFromJSON(json) {
6731
- return ReportQueryChartFromJSONTyped(json);
6732
- }
6733
- function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
6734
- return json;
6735
- }
6736
- function ReportQueryChartToJSON(value) {
6737
- return value;
6738
- }
6739
- function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
6740
- return value;
6741
- }
6742
-
6743
- function instanceOfReportQueryResultRow(value) {
6744
- if (!('keys' in value) || value['keys'] === undefined)
6745
- return false;
6746
- if (!('labels' in value) || value['labels'] === undefined)
6747
- return false;
6748
- if (!('values' in value) || value['values'] === undefined)
6749
- return false;
6824
+ function instanceOfReportQueryDefinition(value) {
6750
6825
  return true;
6751
6826
  }
6752
- function ReportQueryResultRowFromJSON(json) {
6753
- return ReportQueryResultRowFromJSONTyped(json);
6827
+ function ReportQueryDefinitionFromJSON(json) {
6828
+ return ReportQueryDefinitionFromJSONTyped(json);
6754
6829
  }
6755
- function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
6830
+ function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
6756
6831
  if (json == null) {
6757
6832
  return json;
6758
6833
  }
6759
6834
  return {
6760
- 'keys': json['keys'],
6761
- 'labels': json['labels'],
6762
- 'values': json['values'],
6835
+ 'version': json['version'] == null ? undefined : json['version'],
6836
+ 'source': json['source'] == null ? undefined : json['source'],
6837
+ 'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
6838
+ 'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
6839
+ 'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
6840
+ 'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
6841
+ 'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
6842
+ 'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
6843
+ 'chart': json['chart'] == null ? undefined : json['chart'],
6844
+ 'labelX': json['labelX'] == null ? undefined : json['labelX'],
6845
+ 'labelY': json['labelY'] == null ? undefined : json['labelY'],
6846
+ 'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
6763
6847
  };
6764
6848
  }
6765
- function ReportQueryResultRowToJSON(json) {
6766
- return ReportQueryResultRowToJSONTyped(json, false);
6767
- }
6768
- function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
6849
+ function ReportQueryDefinitionToJSON(json) {
6850
+ return ReportQueryDefinitionToJSONTyped(json, false);
6851
+ }
6852
+ function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
6769
6853
  if (value == null) {
6770
6854
  return value;
6771
6855
  }
6772
6856
  return {
6773
- 'keys': value['keys'],
6774
- 'labels': value['labels'],
6775
- 'values': value['values'],
6857
+ 'version': value['version'],
6858
+ 'source': value['source'],
6859
+ 'itemTypeIds': value['itemTypeIds'],
6860
+ 'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
6861
+ 'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
6862
+ 'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
6863
+ 'x': ReportQueryDimensionToJSON(value['x']),
6864
+ 'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
6865
+ 'chart': value['chart'],
6866
+ 'labelX': value['labelX'],
6867
+ 'labelY': value['labelY'],
6868
+ 'labelY2': value['labelY2'],
6776
6869
  };
6777
6870
  }
6778
6871
 
6779
- function instanceOfReportQueryResultColumn(value) {
6780
- if (!('label' in value) || value['label'] === undefined)
6872
+ function instanceOfReportQueryAssistantDto(value) {
6873
+ if (!('title' in value) || value['title'] === undefined)
6781
6874
  return false;
6782
- if (!('kind' in value) || value['kind'] === undefined)
6875
+ if (!('explanation' in value) || value['explanation'] === undefined)
6876
+ return false;
6877
+ if (!('definition' in value) || value['definition'] === undefined)
6878
+ return false;
6879
+ if (!('remainingToday' in value) || value['remainingToday'] === undefined)
6783
6880
  return false;
6784
6881
  return true;
6785
6882
  }
6786
- function ReportQueryResultColumnFromJSON(json) {
6787
- return ReportQueryResultColumnFromJSONTyped(json);
6883
+ function ReportQueryAssistantDtoFromJSON(json) {
6884
+ return ReportQueryAssistantDtoFromJSONTyped(json);
6788
6885
  }
6789
- function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
6886
+ function ReportQueryAssistantDtoFromJSONTyped(json, ignoreDiscriminator) {
6790
6887
  if (json == null) {
6791
6888
  return json;
6792
6889
  }
6793
6890
  return {
6794
- 'label': json['label'],
6795
- 'kind': json['kind'],
6891
+ 'title': json['title'],
6892
+ 'explanation': json['explanation'],
6893
+ 'definition': ReportQueryDefinitionFromJSON(json['definition']),
6894
+ 'remainingToday': json['remainingToday'],
6796
6895
  };
6797
6896
  }
6798
- function ReportQueryResultColumnToJSON(json) {
6799
- return ReportQueryResultColumnToJSONTyped(json, false);
6897
+ function ReportQueryAssistantDtoToJSON(json) {
6898
+ return ReportQueryAssistantDtoToJSONTyped(json, false);
6800
6899
  }
6801
- function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
6900
+ function ReportQueryAssistantDtoToJSONTyped(value, ignoreDiscriminator = false) {
6802
6901
  if (value == null) {
6803
6902
  return value;
6804
6903
  }
6805
6904
  return {
6806
- 'label': value['label'],
6807
- 'kind': value['kind'],
6905
+ 'title': value['title'],
6906
+ 'explanation': value['explanation'],
6907
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
6908
+ 'remainingToday': value['remainingToday'],
6808
6909
  };
6809
6910
  }
6810
6911
 
6811
- function instanceOfReportQueryResult(value) {
6812
- if (!('columns' in value) || value['columns'] === undefined)
6912
+ function instanceOfReportQueryAssistantInput(value) {
6913
+ if (!('prompt' in value) || value['prompt'] === undefined)
6813
6914
  return false;
6814
- if (!('rows' in value) || value['rows'] === undefined)
6915
+ return true;
6916
+ }
6917
+ function ReportQueryAssistantInputFromJSON(json) {
6918
+ return ReportQueryAssistantInputFromJSONTyped(json);
6919
+ }
6920
+ function ReportQueryAssistantInputFromJSONTyped(json, ignoreDiscriminator) {
6921
+ if (json == null) {
6922
+ return json;
6923
+ }
6924
+ return {
6925
+ 'prompt': json['prompt'],
6926
+ 'definition': json['definition'] == null ? undefined : ReportQueryDefinitionFromJSON(json['definition']),
6927
+ };
6928
+ }
6929
+ function ReportQueryAssistantInputToJSON(json) {
6930
+ return ReportQueryAssistantInputToJSONTyped(json, false);
6931
+ }
6932
+ function ReportQueryAssistantInputToJSONTyped(value, ignoreDiscriminator = false) {
6933
+ if (value == null) {
6934
+ return value;
6935
+ }
6936
+ return {
6937
+ 'prompt': value['prompt'],
6938
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
6939
+ };
6940
+ }
6941
+
6942
+ function instanceOfReportQueryAssistantOutput(value) {
6943
+ if (!('data' in value) || value['data'] === undefined)
6815
6944
  return false;
6816
6945
  return true;
6817
6946
  }
6818
- function ReportQueryResultFromJSON(json) {
6819
- return ReportQueryResultFromJSONTyped(json);
6947
+ function ReportQueryAssistantOutputFromJSON(json) {
6948
+ return ReportQueryAssistantOutputFromJSONTyped(json);
6820
6949
  }
6821
- function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
6950
+ function ReportQueryAssistantOutputFromJSONTyped(json, ignoreDiscriminator) {
6822
6951
  if (json == null) {
6823
6952
  return json;
6824
6953
  }
6825
6954
  return {
6826
- 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
6827
- 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
6955
+ 'data': ReportQueryAssistantDtoFromJSON(json['data']),
6828
6956
  };
6829
6957
  }
6830
- function ReportQueryResultToJSON(json) {
6831
- return ReportQueryResultToJSONTyped(json, false);
6958
+ function ReportQueryAssistantOutputToJSON(json) {
6959
+ return ReportQueryAssistantOutputToJSONTyped(json, false);
6832
6960
  }
6833
- function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
6961
+ function ReportQueryAssistantOutputToJSONTyped(value, ignoreDiscriminator = false) {
6834
6962
  if (value == null) {
6835
6963
  return value;
6836
6964
  }
6837
6965
  return {
6838
- 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
6839
- 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
6966
+ 'data': ReportQueryAssistantDtoToJSON(value['data']),
6840
6967
  };
6841
6968
  }
6842
6969
 
6843
- function instanceOfReportQueryDataDto(value) {
6844
- if (!('table' in value) || value['table'] === undefined)
6970
+ const ReportQueryAxis = {
6971
+ Y: 'y',
6972
+ Y2: 'y2'
6973
+ };
6974
+ function instanceOfReportQueryAxis(value) {
6975
+ for (const key in ReportQueryAxis) {
6976
+ if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
6977
+ if (ReportQueryAxis[key] === value) {
6978
+ return true;
6979
+ }
6980
+ }
6981
+ }
6982
+ return false;
6983
+ }
6984
+ function ReportQueryAxisFromJSON(json) {
6985
+ return ReportQueryAxisFromJSONTyped(json);
6986
+ }
6987
+ function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
6988
+ return json;
6989
+ }
6990
+ function ReportQueryAxisToJSON(value) {
6991
+ return value;
6992
+ }
6993
+ function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
6994
+ return value;
6995
+ }
6996
+
6997
+ const ReportQueryCatalogFieldTypeEnum = {
6998
+ Number: 'number',
6999
+ Boolean: 'boolean',
7000
+ Category: 'category',
7001
+ Text: 'text',
7002
+ Date: 'date'
7003
+ };
7004
+ const ReportQueryCatalogFieldSourcesEnum = {
7005
+ Items: 'items',
7006
+ Articles: 'articles',
7007
+ StateHistory: 'state_history'
7008
+ };
7009
+ const ReportQueryCatalogFieldMetricOperationsEnum = {
7010
+ Count: 'count',
7011
+ CountDistinct: 'count_distinct',
7012
+ Sum: 'sum',
7013
+ Avg: 'avg',
7014
+ Min: 'min',
7015
+ Max: 'max'
7016
+ };
7017
+ const ReportQueryCatalogFieldFilterOperatorsEnum = {
7018
+ Contains: 'contains',
7019
+ NotContains: 'not_contains',
7020
+ Eq: 'eq',
7021
+ Neq: 'neq',
7022
+ In: 'in',
7023
+ NotIn: 'not_in',
7024
+ Gt: 'gt',
7025
+ Gte: 'gte',
7026
+ Lt: 'lt',
7027
+ Lte: 'lte',
7028
+ IsEmpty: 'is_empty',
7029
+ IsNotEmpty: 'is_not_empty'
7030
+ };
7031
+ const ReportQueryCatalogFieldBucketsEnum = {
7032
+ Day: 'day',
7033
+ Week: 'week',
7034
+ Month: 'month',
7035
+ Quarter: 'quarter',
7036
+ Year: 'year'
7037
+ };
7038
+ const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
7039
+ None: 'none',
7040
+ TrimCase: 'trim_case',
7041
+ Ipp: 'ipp'
7042
+ };
7043
+ function instanceOfReportQueryCatalogField(value) {
7044
+ if (!('id' in value) || value['id'] === undefined)
6845
7045
  return false;
6846
- if (!('chart' in value) || value['chart'] === undefined)
7046
+ if (!('label' in value) || value['label'] === undefined)
7047
+ return false;
7048
+ if (!('type' in value) || value['type'] === undefined)
7049
+ return false;
7050
+ if (!('group' in value) || value['group'] === undefined)
7051
+ return false;
7052
+ if (!('sources' in value) || value['sources'] === undefined)
7053
+ return false;
7054
+ if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
7055
+ return false;
7056
+ if (!('metricOperations' in value) || value['metricOperations'] === undefined)
7057
+ return false;
7058
+ if (!('filterOperators' in value) || value['filterOperators'] === undefined)
6847
7059
  return false;
6848
7060
  return true;
6849
7061
  }
6850
- function ReportQueryDataDtoFromJSON(json) {
6851
- return ReportQueryDataDtoFromJSONTyped(json);
7062
+ function ReportQueryCatalogFieldFromJSON(json) {
7063
+ return ReportQueryCatalogFieldFromJSONTyped(json);
6852
7064
  }
6853
- function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7065
+ function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
6854
7066
  if (json == null) {
6855
7067
  return json;
6856
7068
  }
6857
7069
  return {
6858
- 'table': ReportQueryResultFromJSON(json['table']),
6859
- 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7070
+ 'id': json['id'],
7071
+ 'label': json['label'],
7072
+ 'type': json['type'],
7073
+ 'group': json['group'],
7074
+ 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
7075
+ 'sources': json['sources'],
7076
+ 'canBeDimension': json['canBeDimension'],
7077
+ 'metricOperations': json['metricOperations'],
7078
+ 'filterOperators': json['filterOperators'],
7079
+ 'buckets': json['buckets'] == null ? undefined : json['buckets'],
7080
+ 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
6860
7081
  };
6861
7082
  }
6862
- function ReportQueryDataDtoToJSON(json) {
6863
- return ReportQueryDataDtoToJSONTyped(json, false);
7083
+ function ReportQueryCatalogFieldToJSON(json) {
7084
+ return ReportQueryCatalogFieldToJSONTyped(json, false);
6864
7085
  }
6865
- function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7086
+ function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
6866
7087
  if (value == null) {
6867
7088
  return value;
6868
7089
  }
6869
7090
  return {
6870
- 'table': ReportQueryResultToJSON(value['table']),
6871
- 'chart': ReportDataJSONDtoToJSON(value['chart']),
7091
+ 'id': value['id'],
7092
+ 'label': value['label'],
7093
+ 'type': value['type'],
7094
+ 'group': value['group'],
7095
+ 'itemTypeId': value['itemTypeId'],
7096
+ 'sources': value['sources'],
7097
+ 'canBeDimension': value['canBeDimension'],
7098
+ 'metricOperations': value['metricOperations'],
7099
+ 'filterOperators': value['filterOperators'],
7100
+ 'buckets': value['buckets'],
7101
+ 'suggestedNormalize': value['suggestedNormalize'],
6872
7102
  };
6873
7103
  }
6874
7104
 
6875
- function instanceOfReportQueryDataOutput(value) {
7105
+ function instanceOfReportQueryCatalogOutput(value) {
6876
7106
  if (!('data' in value) || value['data'] === undefined)
6877
7107
  return false;
6878
7108
  return true;
6879
7109
  }
6880
- function ReportQueryDataOutputFromJSON(json) {
6881
- return ReportQueryDataOutputFromJSONTyped(json);
7110
+ function ReportQueryCatalogOutputFromJSON(json) {
7111
+ return ReportQueryCatalogOutputFromJSONTyped(json);
6882
7112
  }
6883
- function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7113
+ function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
6884
7114
  if (json == null) {
6885
7115
  return json;
6886
7116
  }
6887
7117
  return {
6888
- 'data': ReportQueryDataDtoFromJSON(json['data']),
7118
+ 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
6889
7119
  };
6890
7120
  }
6891
- function ReportQueryDataOutputToJSON(json) {
6892
- return ReportQueryDataOutputToJSONTyped(json, false);
7121
+ function ReportQueryCatalogOutputToJSON(json) {
7122
+ return ReportQueryCatalogOutputToJSONTyped(json, false);
6893
7123
  }
6894
- function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7124
+ function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
6895
7125
  if (value == null) {
6896
7126
  return value;
6897
7127
  }
6898
7128
  return {
6899
- 'data': ReportQueryDataDtoToJSON(value['data']),
7129
+ 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
6900
7130
  };
6901
7131
  }
6902
7132
 
6903
- const ReportQueryDateBucket = {
6904
- Day: 'day',
6905
- Week: 'week',
6906
- Month: 'month',
6907
- Quarter: 'quarter',
6908
- Year: 'year'
7133
+ const ReportQueryChart = {
7134
+ Bar: 'bar',
7135
+ Line: 'line',
7136
+ Pie: 'pie',
7137
+ StackedBar: 'stacked_bar',
7138
+ Table: 'table'
6909
7139
  };
6910
- function instanceOfReportQueryDateBucket(value) {
6911
- for (const key in ReportQueryDateBucket) {
6912
- if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
6913
- if (ReportQueryDateBucket[key] === value) {
7140
+ function instanceOfReportQueryChart(value) {
7141
+ for (const key in ReportQueryChart) {
7142
+ if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
7143
+ if (ReportQueryChart[key] === value) {
6914
7144
  return true;
6915
7145
  }
6916
7146
  }
6917
7147
  }
6918
7148
  return false;
6919
7149
  }
6920
- function ReportQueryDateBucketFromJSON(json) {
6921
- return ReportQueryDateBucketFromJSONTyped(json);
7150
+ function ReportQueryChartFromJSON(json) {
7151
+ return ReportQueryChartFromJSONTyped(json);
6922
7152
  }
6923
- function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7153
+ function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
6924
7154
  return json;
6925
7155
  }
6926
- function ReportQueryDateBucketToJSON(value) {
7156
+ function ReportQueryChartToJSON(value) {
6927
7157
  return value;
6928
7158
  }
6929
- function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7159
+ function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
6930
7160
  return value;
6931
7161
  }
6932
7162
 
6933
- const ReportQueryMetricOpEnum = {
6934
- Count: 'count',
6935
- CountDistinct: 'count_distinct',
6936
- Sum: 'sum',
6937
- Avg: 'avg',
6938
- Min: 'min',
6939
- Max: 'max'
6940
- };
6941
- function instanceOfReportQueryMetric(value) {
6942
- if (!('op' in value) || value['op'] === undefined)
7163
+ function instanceOfReportQueryResultRow(value) {
7164
+ if (!('keys' in value) || value['keys'] === undefined)
7165
+ return false;
7166
+ if (!('labels' in value) || value['labels'] === undefined)
7167
+ return false;
7168
+ if (!('values' in value) || value['values'] === undefined)
6943
7169
  return false;
6944
7170
  return true;
6945
7171
  }
6946
- function ReportQueryMetricFromJSON(json) {
6947
- return ReportQueryMetricFromJSONTyped(json);
7172
+ function ReportQueryResultRowFromJSON(json) {
7173
+ return ReportQueryResultRowFromJSONTyped(json);
6948
7174
  }
6949
- function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
7175
+ function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
6950
7176
  if (json == null) {
6951
7177
  return json;
6952
7178
  }
6953
7179
  return {
6954
- 'op': json['op'],
6955
- 'field': json['field'] == null ? undefined : json['field'],
6956
- 'label': json['label'] == null ? undefined : json['label'],
7180
+ 'keys': json['keys'],
7181
+ 'labels': json['labels'],
7182
+ 'values': json['values'],
6957
7183
  };
6958
7184
  }
6959
- function ReportQueryMetricToJSON(json) {
6960
- return ReportQueryMetricToJSONTyped(json, false);
7185
+ function ReportQueryResultRowToJSON(json) {
7186
+ return ReportQueryResultRowToJSONTyped(json, false);
6961
7187
  }
6962
- function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
7188
+ function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
6963
7189
  if (value == null) {
6964
7190
  return value;
6965
7191
  }
6966
7192
  return {
6967
- 'op': value['op'],
6968
- 'field': value['field'],
6969
- 'label': value['label'],
7193
+ 'keys': value['keys'],
7194
+ 'labels': value['labels'],
7195
+ 'values': value['values'],
6970
7196
  };
6971
7197
  }
6972
7198
 
6973
- const ReportQueryFilterOpEnum = {
6974
- Contains: 'contains',
6975
- NotContains: 'not_contains',
6976
- Eq: 'eq',
6977
- Neq: 'neq',
6978
- In: 'in',
6979
- NotIn: 'not_in',
6980
- Gt: 'gt',
6981
- Gte: 'gte',
6982
- Lt: 'lt',
6983
- Lte: 'lte',
6984
- IsEmpty: 'is_empty',
6985
- IsNotEmpty: 'is_not_empty'
6986
- };
6987
- function instanceOfReportQueryFilter(value) {
6988
- if (!('field' in value) || value['field'] === undefined)
6989
- return false;
6990
- if (!('op' in value) || value['op'] === undefined)
7199
+ function instanceOfReportQueryResultColumn(value) {
7200
+ if (!('label' in value) || value['label'] === undefined)
6991
7201
  return false;
6992
- if (!('values' in value) || value['values'] === undefined)
7202
+ if (!('kind' in value) || value['kind'] === undefined)
6993
7203
  return false;
6994
7204
  return true;
6995
7205
  }
6996
- function ReportQueryFilterFromJSON(json) {
6997
- return ReportQueryFilterFromJSONTyped(json);
7206
+ function ReportQueryResultColumnFromJSON(json) {
7207
+ return ReportQueryResultColumnFromJSONTyped(json);
6998
7208
  }
6999
- function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
7209
+ function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7000
7210
  if (json == null) {
7001
7211
  return json;
7002
7212
  }
7003
7213
  return {
7004
- 'field': json['field'],
7005
- 'op': json['op'],
7006
- 'values': json['values'],
7214
+ 'label': json['label'],
7215
+ 'kind': json['kind'],
7007
7216
  };
7008
7217
  }
7009
- function ReportQueryFilterToJSON(json) {
7010
- return ReportQueryFilterToJSONTyped(json, false);
7218
+ function ReportQueryResultColumnToJSON(json) {
7219
+ return ReportQueryResultColumnToJSONTyped(json, false);
7011
7220
  }
7012
- function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
7221
+ function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7013
7222
  if (value == null) {
7014
7223
  return value;
7015
7224
  }
7016
7225
  return {
7017
- 'field': value['field'],
7018
- 'op': value['op'],
7019
- 'values': value['values'],
7226
+ 'label': value['label'],
7227
+ 'kind': value['kind'],
7020
7228
  };
7021
7229
  }
7022
7230
 
7023
- const ReportQueryDimensionBucketEnum = {
7024
- Day: 'day',
7025
- Week: 'week',
7026
- Month: 'month',
7027
- Quarter: 'quarter',
7028
- Year: 'year'
7029
- };
7030
- const ReportQueryDimensionNormalizeEnum = {
7031
- None: 'none',
7032
- TrimCase: 'trim_case',
7033
- Ipp: 'ipp'
7034
- };
7035
- function instanceOfReportQueryDimension(value) {
7036
- if (!('field' in value) || value['field'] === undefined)
7231
+ function instanceOfReportQueryResult(value) {
7232
+ if (!('columns' in value) || value['columns'] === undefined)
7233
+ return false;
7234
+ if (!('rows' in value) || value['rows'] === undefined)
7037
7235
  return false;
7038
7236
  return true;
7039
7237
  }
7040
- function ReportQueryDimensionFromJSON(json) {
7041
- return ReportQueryDimensionFromJSONTyped(json);
7238
+ function ReportQueryResultFromJSON(json) {
7239
+ return ReportQueryResultFromJSONTyped(json);
7042
7240
  }
7043
- function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
7241
+ function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7044
7242
  if (json == null) {
7045
7243
  return json;
7046
7244
  }
7047
7245
  return {
7048
- 'field': json['field'],
7049
- 'bucket': json['bucket'] == null ? undefined : json['bucket'],
7050
- 'normalize': json['normalize'] == null ? undefined : json['normalize'],
7051
- 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
7246
+ 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
7247
+ 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7052
7248
  };
7053
7249
  }
7054
- function ReportQueryDimensionToJSON(json) {
7055
- return ReportQueryDimensionToJSONTyped(json, false);
7250
+ function ReportQueryResultToJSON(json) {
7251
+ return ReportQueryResultToJSONTyped(json, false);
7056
7252
  }
7057
- function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
7253
+ function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7058
7254
  if (value == null) {
7059
7255
  return value;
7060
7256
  }
7061
7257
  return {
7062
- 'field': value['field'],
7063
- 'bucket': value['bucket'],
7064
- 'normalize': value['normalize'],
7065
- 'includeEmpty': value['includeEmpty'],
7258
+ 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
7259
+ 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7066
7260
  };
7067
7261
  }
7068
7262
 
7069
- const ReportQueryDefinitionSourceEnum = {
7070
- Items: 'items',
7071
- Articles: 'articles',
7072
- StateHistory: 'state_history'
7073
- };
7074
- const ReportQueryDefinitionChartEnum = {
7075
- Bar: 'bar',
7076
- Line: 'line',
7077
- Pie: 'pie',
7078
- StackedBar: 'stacked_bar',
7079
- Table: 'table'
7080
- };
7081
- function instanceOfReportQueryDefinition(value) {
7082
- if (!('source' in value) || value['source'] === undefined)
7083
- return false;
7084
- if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
7085
- return false;
7086
- if (!('dimensions' in value) || value['dimensions'] === undefined)
7263
+ function instanceOfReportQueryDataDto(value) {
7264
+ if (!('table' in value) || value['table'] === undefined)
7087
7265
  return false;
7088
- if (!('metrics' in value) || value['metrics'] === undefined)
7266
+ if (!('chart' in value) || value['chart'] === undefined)
7089
7267
  return false;
7090
- if (!('filters' in value) || value['filters'] === undefined)
7268
+ return true;
7269
+ }
7270
+ function ReportQueryDataDtoFromJSON(json) {
7271
+ return ReportQueryDataDtoFromJSONTyped(json);
7272
+ }
7273
+ function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7274
+ if (json == null) {
7275
+ return json;
7276
+ }
7277
+ return {
7278
+ 'table': ReportQueryResultFromJSON(json['table']),
7279
+ 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7280
+ };
7281
+ }
7282
+ function ReportQueryDataDtoToJSON(json) {
7283
+ return ReportQueryDataDtoToJSONTyped(json, false);
7284
+ }
7285
+ function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7286
+ if (value == null) {
7287
+ return value;
7288
+ }
7289
+ return {
7290
+ 'table': ReportQueryResultToJSON(value['table']),
7291
+ 'chart': ReportDataJSONDtoToJSON(value['chart']),
7292
+ };
7293
+ }
7294
+
7295
+ function instanceOfReportQueryDataOutput(value) {
7296
+ if (!('data' in value) || value['data'] === undefined)
7091
7297
  return false;
7092
7298
  return true;
7093
7299
  }
7094
- function ReportQueryDefinitionFromJSON(json) {
7095
- return ReportQueryDefinitionFromJSONTyped(json);
7300
+ function ReportQueryDataOutputFromJSON(json) {
7301
+ return ReportQueryDataOutputFromJSONTyped(json);
7096
7302
  }
7097
- function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
7303
+ function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7098
7304
  if (json == null) {
7099
7305
  return json;
7100
7306
  }
7101
7307
  return {
7102
- 'version': json['version'] == null ? undefined : json['version'],
7103
- 'source': json['source'],
7104
- 'itemTypeIds': json['itemTypeIds'],
7105
- 'dimensions': (json['dimensions'].map(ReportQueryDimensionFromJSON)),
7106
- 'metrics': (json['metrics'].map(ReportQueryMetricFromJSON)),
7107
- 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
7108
- 'chart': json['chart'] == null ? undefined : json['chart'],
7109
- 'labelX': json['labelX'] == null ? undefined : json['labelX'],
7110
- 'labelY': json['labelY'] == null ? undefined : json['labelY'],
7308
+ 'data': ReportQueryDataDtoFromJSON(json['data']),
7111
7309
  };
7112
7310
  }
7113
- function ReportQueryDefinitionToJSON(json) {
7114
- return ReportQueryDefinitionToJSONTyped(json, false);
7311
+ function ReportQueryDataOutputToJSON(json) {
7312
+ return ReportQueryDataOutputToJSONTyped(json, false);
7115
7313
  }
7116
- function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
7314
+ function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7117
7315
  if (value == null) {
7118
7316
  return value;
7119
7317
  }
7120
7318
  return {
7121
- 'version': value['version'],
7122
- 'source': value['source'],
7123
- 'itemTypeIds': value['itemTypeIds'],
7124
- 'dimensions': (value['dimensions'].map(ReportQueryDimensionToJSON)),
7125
- 'metrics': (value['metrics'].map(ReportQueryMetricToJSON)),
7126
- 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
7127
- 'chart': value['chart'],
7128
- 'labelX': value['labelX'],
7129
- 'labelY': value['labelY'],
7319
+ 'data': ReportQueryDataDtoToJSON(value['data']),
7130
7320
  };
7131
7321
  }
7132
7322
 
7323
+ const ReportQueryDateBucket = {
7324
+ Day: 'day',
7325
+ Week: 'week',
7326
+ Month: 'month',
7327
+ Quarter: 'quarter',
7328
+ Year: 'year'
7329
+ };
7330
+ function instanceOfReportQueryDateBucket(value) {
7331
+ for (const key in ReportQueryDateBucket) {
7332
+ if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
7333
+ if (ReportQueryDateBucket[key] === value) {
7334
+ return true;
7335
+ }
7336
+ }
7337
+ }
7338
+ return false;
7339
+ }
7340
+ function ReportQueryDateBucketFromJSON(json) {
7341
+ return ReportQueryDateBucketFromJSONTyped(json);
7342
+ }
7343
+ function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7344
+ return json;
7345
+ }
7346
+ function ReportQueryDateBucketToJSON(value) {
7347
+ return value;
7348
+ }
7349
+ function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7350
+ return value;
7351
+ }
7352
+
7133
7353
  function instanceOfReportQueryDto(value) {
7134
7354
  if (!('id' in value) || value['id'] === undefined)
7135
7355
  return false;
@@ -7414,6 +7634,33 @@ function ReportQueryPreviewInputToJSONTyped(value, ignoreDiscriminator = false)
7414
7634
  };
7415
7635
  }
7416
7636
 
7637
+ const ReportQuerySeriesChart = {
7638
+ Bar: 'bar',
7639
+ Line: 'line'
7640
+ };
7641
+ function instanceOfReportQuerySeriesChart(value) {
7642
+ for (const key in ReportQuerySeriesChart) {
7643
+ if (Object.prototype.hasOwnProperty.call(ReportQuerySeriesChart, key)) {
7644
+ if (ReportQuerySeriesChart[key] === value) {
7645
+ return true;
7646
+ }
7647
+ }
7648
+ }
7649
+ return false;
7650
+ }
7651
+ function ReportQuerySeriesChartFromJSON(json) {
7652
+ return ReportQuerySeriesChartFromJSONTyped(json);
7653
+ }
7654
+ function ReportQuerySeriesChartFromJSONTyped(json, ignoreDiscriminator) {
7655
+ return json;
7656
+ }
7657
+ function ReportQuerySeriesChartToJSON(value) {
7658
+ return value;
7659
+ }
7660
+ function ReportQuerySeriesChartToJSONTyped(value, ignoreDiscriminator) {
7661
+ return value;
7662
+ }
7663
+
7417
7664
  const ReportQuerySource = {
7418
7665
  Items: 'items',
7419
7666
  Articles: 'articles',
@@ -10973,6 +11220,29 @@ class ReportApi extends BaseAPI {
10973
11220
  const response = await this.apiV1ReportReportIdGetRaw(requestParameters, initOverrides);
10974
11221
  return await response.value();
10975
11222
  }
11223
+ async apiV2ReportAssistantPostRaw(requestParameters, initOverrides) {
11224
+ if (requestParameters['reportQueryAssistantInput'] == null) {
11225
+ throw new RequiredError('reportQueryAssistantInput', 'Required parameter "reportQueryAssistantInput" was null or undefined when calling apiV2ReportAssistantPost().');
11226
+ }
11227
+ const queryParameters = {};
11228
+ const headerParameters = {};
11229
+ headerParameters['Content-Type'] = 'application/json';
11230
+ if (this.configuration && this.configuration.apiKey) {
11231
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
11232
+ }
11233
+ const response = await this.request({
11234
+ path: `/api/v2/report/assistant`,
11235
+ method: 'POST',
11236
+ headers: headerParameters,
11237
+ query: queryParameters,
11238
+ body: ReportQueryAssistantInputToJSON(requestParameters['reportQueryAssistantInput']),
11239
+ }, initOverrides);
11240
+ return new JSONApiResponse(response, (jsonValue) => ReportQueryAssistantOutputFromJSON(jsonValue));
11241
+ }
11242
+ async apiV2ReportAssistantPost(requestParameters, initOverrides) {
11243
+ const response = await this.apiV2ReportAssistantPostRaw(requestParameters, initOverrides);
11244
+ return await response.value();
11245
+ }
10976
11246
  async apiV2ReportCatalogGetRaw(initOverrides) {
10977
11247
  const queryParameters = {};
10978
11248
  const headerParameters = {};
@@ -11401,5 +11671,5 @@ class StateMachineApi extends BaseAPI {
11401
11671
  }
11402
11672
  }
11403
11673
 
11404
- export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1MapPost402ResponseFromJSON, ApiV1MapPost402ResponseFromJSONTyped, ApiV1MapPost402ResponseToJSON, ApiV1MapPost402ResponseToJSONTyped, ApiV1ReportItemGetOrderDirectionEnum, ApiV1ReportItemGetQOperatorEnum, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, ComputeRouteInputFromJSON, ComputeRouteInputFromJSONTyped, ComputeRouteInputToJSON, ComputeRouteInputToJSONTyped, ComputeRouteInputTravelModeEnum, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def223FromJSON, Def223FromJSONTyped, Def223ToJSON, Def223ToJSONTyped, DefaultApi, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemRenderOptionsInputFillTypeEnum, ItemRenderOptionsInputFromJSON, ItemRenderOptionsInputFromJSONTyped, ItemRenderOptionsInputToJSON, ItemRenderOptionsInputToJSONTyped, ItemRenderOptionsOutputFromJSON, ItemRenderOptionsOutputFromJSONTyped, ItemRenderOptionsOutputToJSON, ItemRenderOptionsOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LayerFieldFilterOperator, LayerFieldFilterOperatorFromJSON, LayerFieldFilterOperatorFromJSONTyped, LayerFieldFilterOperatorToJSON, LayerFieldFilterOperatorToJSONTyped, LayerInputDtoFromJSON, LayerInputDtoFromJSONTyped, LayerInputDtoToJSON, LayerInputDtoToJSONTyped, LayerItemTypeFieldFilterDtoFromJSON, LayerItemTypeFieldFilterDtoFromJSONTyped, LayerItemTypeFieldFilterDtoOperatorEnum, LayerItemTypeFieldFilterDtoToJSON, LayerItemTypeFieldFilterDtoToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemRenderFillOption, MapItemRenderFillOptionFromJSON, MapItemRenderFillOptionFromJSONTyped, MapItemRenderFillOptionToJSON, MapItemRenderFillOptionToJSONTyped, MapItemRenderOptionsORMFillTypeEnum, MapItemRenderOptionsORMFromJSON, MapItemRenderOptionsORMFromJSONTyped, MapItemRenderOptionsORMToJSON, MapItemRenderOptionsORMToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionFieldOutputFromJSON, MapItemTypeFormSectionFieldOutputFromJSONTyped, MapItemTypeFormSectionFieldOutputToJSON, MapItemTypeFormSectionFieldOutputToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeFormSectionOutputFromJSON, MapItemTypeFormSectionOutputFromJSONTyped, MapItemTypeFormSectionOutputToJSON, MapItemTypeFormSectionOutputToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapItemWithPointsInputFromJSON, MapItemWithPointsInputFromJSONTyped, MapItemWithPointsInputToJSON, MapItemWithPointsInputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemTypeFieldFilterORMFromJSON, MapLayerItemTypeFieldFilterORMFromJSONTyped, MapLayerItemTypeFieldFilterORMOperatorEnum, MapLayerItemTypeFieldFilterORMToJSON, MapLayerItemTypeFieldFilterORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointInputFromJSON, MapZonePointInputFromJSONTyped, MapZonePointInputToJSON, MapZonePointInputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MapZoneWithPointsInputFromJSON, MapZoneWithPointsInputFromJSONTyped, MapZoneWithPointsInputToJSON, MapZoneWithPointsInputToJSONTyped, McpApi, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NearbyPlaceDtoFromJSON, NearbyPlaceDtoFromJSONTyped, NearbyPlaceDtoToJSON, NearbyPlaceDtoToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OAuthApi, OAuthClientORMFromJSON, OAuthClientORMFromJSONTyped, OAuthClientORMToJSON, OAuthClientORMToJSONTyped, OAuthRefreshTokenORMFromJSON, OAuthRefreshTokenORMFromJSONTyped, OAuthRefreshTokenORMToJSON, OAuthRefreshTokenORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, PlaceAddressDtoFromJSON, PlaceAddressDtoFromJSONTyped, PlaceAddressDtoToJSON, PlaceAddressDtoToJSONTyped, PlaceApi, PlaceDetailsDtoFromJSON, PlaceDetailsDtoFromJSONTyped, PlaceDetailsDtoToJSON, PlaceDetailsDtoToJSONTyped, PlaceDetailsOutputFromJSON, PlaceDetailsOutputFromJSONTyped, PlaceDetailsOutputToJSON, PlaceDetailsOutputToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, ReportQueryCatalogFieldBucketsEnum, ReportQueryCatalogFieldFilterOperatorsEnum, ReportQueryCatalogFieldFromJSON, ReportQueryCatalogFieldFromJSONTyped, ReportQueryCatalogFieldMetricOperationsEnum, ReportQueryCatalogFieldSourcesEnum, ReportQueryCatalogFieldSuggestedNormalizeEnum, ReportQueryCatalogFieldToJSON, ReportQueryCatalogFieldToJSONTyped, ReportQueryCatalogFieldTypeEnum, ReportQueryCatalogOutputFromJSON, ReportQueryCatalogOutputFromJSONTyped, ReportQueryCatalogOutputToJSON, ReportQueryCatalogOutputToJSONTyped, ReportQueryChart, ReportQueryChartFromJSON, ReportQueryChartFromJSONTyped, ReportQueryChartToJSON, ReportQueryChartToJSONTyped, ReportQueryDataDtoFromJSON, ReportQueryDataDtoFromJSONTyped, ReportQueryDataDtoToJSON, ReportQueryDataDtoToJSONTyped, ReportQueryDataOutputFromJSON, ReportQueryDataOutputFromJSONTyped, ReportQueryDataOutputToJSON, ReportQueryDataOutputToJSONTyped, ReportQueryDateBucket, ReportQueryDateBucketFromJSON, ReportQueryDateBucketFromJSONTyped, ReportQueryDateBucketToJSON, ReportQueryDateBucketToJSONTyped, ReportQueryDefinitionChartEnum, ReportQueryDefinitionFromJSON, ReportQueryDefinitionFromJSONTyped, ReportQueryDefinitionSourceEnum, ReportQueryDefinitionToJSON, ReportQueryDefinitionToJSONTyped, ReportQueryDimensionBucketEnum, ReportQueryDimensionFromJSON, ReportQueryDimensionFromJSONTyped, ReportQueryDimensionNormalizeEnum, ReportQueryDimensionToJSON, ReportQueryDimensionToJSONTyped, ReportQueryDtoFromJSON, ReportQueryDtoFromJSONTyped, ReportQueryDtoToJSON, ReportQueryDtoToJSONTyped, ReportQueryFieldType, ReportQueryFieldTypeFromJSON, ReportQueryFieldTypeFromJSONTyped, ReportQueryFieldTypeToJSON, ReportQueryFieldTypeToJSONTyped, ReportQueryFilterFromJSON, ReportQueryFilterFromJSONTyped, ReportQueryFilterOpEnum, ReportQueryFilterOperator, ReportQueryFilterOperatorFromJSON, ReportQueryFilterOperatorFromJSONTyped, ReportQueryFilterOperatorToJSON, ReportQueryFilterOperatorToJSONTyped, ReportQueryFilterToJSON, ReportQueryFilterToJSONTyped, ReportQueryInputFromJSON, ReportQueryInputFromJSONTyped, ReportQueryInputToJSON, ReportQueryInputToJSONTyped, ReportQueryListOutputFromJSON, ReportQueryListOutputFromJSONTyped, ReportQueryListOutputToJSON, ReportQueryListOutputToJSONTyped, ReportQueryMetricFromJSON, ReportQueryMetricFromJSONTyped, ReportQueryMetricOpEnum, ReportQueryMetricOperation, ReportQueryMetricOperationFromJSON, ReportQueryMetricOperationFromJSONTyped, ReportQueryMetricOperationToJSON, ReportQueryMetricOperationToJSONTyped, ReportQueryMetricToJSON, ReportQueryMetricToJSONTyped, ReportQueryNormalize, ReportQueryNormalizeFromJSON, ReportQueryNormalizeFromJSONTyped, ReportQueryNormalizeToJSON, ReportQueryNormalizeToJSONTyped, ReportQueryOutputFromJSON, ReportQueryOutputFromJSONTyped, ReportQueryOutputToJSON, ReportQueryOutputToJSONTyped, ReportQueryPreviewInputFromJSON, ReportQueryPreviewInputFromJSONTyped, ReportQueryPreviewInputToJSON, ReportQueryPreviewInputToJSONTyped, ReportQueryResultColumnFromJSON, ReportQueryResultColumnFromJSONTyped, ReportQueryResultColumnToJSON, ReportQueryResultColumnToJSONTyped, ReportQueryResultFromJSON, ReportQueryResultFromJSONTyped, ReportQueryResultRowFromJSON, ReportQueryResultRowFromJSONTyped, ReportQueryResultRowToJSON, ReportQueryResultRowToJSONTyped, ReportQueryResultToJSON, ReportQueryResultToJSONTyped, ReportQuerySource, ReportQuerySourceFromJSON, ReportQuerySourceFromJSONTyped, ReportQuerySourceToJSON, ReportQuerySourceToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, RouteApi, RouteDtoFromJSON, RouteDtoFromJSONTyped, RouteDtoToJSON, RouteDtoToJSONTyped, RouteLegDtoFromJSON, RouteLegDtoFromJSONTyped, RouteLegDtoToJSON, RouteLegDtoToJSONTyped, RouteOutputFromJSON, RouteOutputFromJSONTyped, RouteOutputToJSON, RouteOutputToJSONTyped, RouteStepDtoFromJSON, RouteStepDtoFromJSONTyped, RouteStepDtoToJSON, RouteStepDtoToJSONTyped, RouteTravelMode, RouteTravelModeFromJSON, RouteTravelModeFromJSONTyped, RouteTravelModeToJSON, RouteTravelModeToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, UserPaymentControlDtoFromJSON, UserPaymentControlDtoFromJSONTyped, UserPaymentControlDtoToJSON, UserPaymentControlDtoToJSONTyped, UserPaymentControlOutputFromJSON, UserPaymentControlOutputFromJSONTyped, UserPaymentControlOutputToJSON, UserPaymentControlOutputToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfApiV1MapPost402Response, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfComputeRouteInput, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef223, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLayerFieldFilterOperator, instanceOfLayerInputDto, instanceOfLayerItemTypeFieldFilterDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemRenderFillOption, instanceOfMapItemRenderOptionsORM, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionFieldOutput, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeFormSectionOutput, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapItemWithPointsInput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerItemTypeFieldFilterORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointInput, instanceOfMapZonePointORM, instanceOfMapZoneWithPointsInput, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNearbyPlaceDto, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOAuthClientORM, instanceOfOAuthRefreshTokenORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfPlaceAddressDto, instanceOfPlaceDetailsDto, instanceOfPlaceDetailsOutput, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReportQueryCatalogField, instanceOfReportQueryCatalogOutput, instanceOfReportQueryChart, instanceOfReportQueryDataDto, instanceOfReportQueryDataOutput, instanceOfReportQueryDateBucket, instanceOfReportQueryDefinition, instanceOfReportQueryDimension, instanceOfReportQueryDto, instanceOfReportQueryFieldType, instanceOfReportQueryFilter, instanceOfReportQueryFilterOperator, instanceOfReportQueryInput, instanceOfReportQueryListOutput, instanceOfReportQueryMetric, instanceOfReportQueryMetricOperation, instanceOfReportQueryNormalize, instanceOfReportQueryOutput, instanceOfReportQueryPreviewInput, instanceOfReportQueryResult, instanceOfReportQueryResultColumn, instanceOfReportQueryResultRow, instanceOfReportQuerySource, instanceOfReverseGeoCodingOutput, instanceOfRouteDto, instanceOfRouteLegDto, instanceOfRouteOutput, instanceOfRouteStepDto, instanceOfRouteTravelMode, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfUserPaymentControlDto, instanceOfUserPaymentControlOutput, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
11674
+ export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1MapPost402ResponseFromJSON, ApiV1MapPost402ResponseFromJSONTyped, ApiV1MapPost402ResponseToJSON, ApiV1MapPost402ResponseToJSONTyped, ApiV1ReportItemGetOrderDirectionEnum, ApiV1ReportItemGetQOperatorEnum, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisGridFromJSON, AxisGridFromJSONTyped, AxisGridToJSON, AxisGridToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, ComputeRouteInputFromJSON, ComputeRouteInputFromJSONTyped, ComputeRouteInputToJSON, ComputeRouteInputToJSONTyped, ComputeRouteInputTravelModeEnum, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def230FromJSON, Def230FromJSONTyped, Def230ToJSON, Def230ToJSONTyped, DefaultApi, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemRenderOptionsInputFillTypeEnum, ItemRenderOptionsInputFromJSON, ItemRenderOptionsInputFromJSONTyped, ItemRenderOptionsInputToJSON, ItemRenderOptionsInputToJSONTyped, ItemRenderOptionsOutputFromJSON, ItemRenderOptionsOutputFromJSONTyped, ItemRenderOptionsOutputToJSON, ItemRenderOptionsOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LayerFieldFilterOperator, LayerFieldFilterOperatorFromJSON, LayerFieldFilterOperatorFromJSONTyped, LayerFieldFilterOperatorToJSON, LayerFieldFilterOperatorToJSONTyped, LayerInputDtoFromJSON, LayerInputDtoFromJSONTyped, LayerInputDtoToJSON, LayerInputDtoToJSONTyped, LayerItemTypeFieldFilterDtoFromJSON, LayerItemTypeFieldFilterDtoFromJSONTyped, LayerItemTypeFieldFilterDtoOperatorEnum, LayerItemTypeFieldFilterDtoToJSON, LayerItemTypeFieldFilterDtoToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemRenderFillOption, MapItemRenderFillOptionFromJSON, MapItemRenderFillOptionFromJSONTyped, MapItemRenderFillOptionToJSON, MapItemRenderFillOptionToJSONTyped, MapItemRenderOptionsORMFillTypeEnum, MapItemRenderOptionsORMFromJSON, MapItemRenderOptionsORMFromJSONTyped, MapItemRenderOptionsORMToJSON, MapItemRenderOptionsORMToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionFieldOutputFromJSON, MapItemTypeFormSectionFieldOutputFromJSONTyped, MapItemTypeFormSectionFieldOutputToJSON, MapItemTypeFormSectionFieldOutputToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeFormSectionOutputFromJSON, MapItemTypeFormSectionOutputFromJSONTyped, MapItemTypeFormSectionOutputToJSON, MapItemTypeFormSectionOutputToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapItemWithPointsInputFromJSON, MapItemWithPointsInputFromJSONTyped, MapItemWithPointsInputToJSON, MapItemWithPointsInputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemTypeFieldFilterORMFromJSON, MapLayerItemTypeFieldFilterORMFromJSONTyped, MapLayerItemTypeFieldFilterORMOperatorEnum, MapLayerItemTypeFieldFilterORMToJSON, MapLayerItemTypeFieldFilterORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointInputFromJSON, MapZonePointInputFromJSONTyped, MapZonePointInputToJSON, MapZonePointInputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MapZoneWithPointsInputFromJSON, MapZoneWithPointsInputFromJSONTyped, MapZoneWithPointsInputToJSON, MapZoneWithPointsInputToJSONTyped, McpApi, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NearbyPlaceDtoFromJSON, NearbyPlaceDtoFromJSONTyped, NearbyPlaceDtoToJSON, NearbyPlaceDtoToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OAuthApi, OAuthClientORMFromJSON, OAuthClientORMFromJSONTyped, OAuthClientORMToJSON, OAuthClientORMToJSONTyped, OAuthRefreshTokenORMFromJSON, OAuthRefreshTokenORMFromJSONTyped, OAuthRefreshTokenORMToJSON, OAuthRefreshTokenORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, PlaceAddressDtoFromJSON, PlaceAddressDtoFromJSONTyped, PlaceAddressDtoToJSON, PlaceAddressDtoToJSONTyped, PlaceApi, PlaceDetailsDtoFromJSON, PlaceDetailsDtoFromJSONTyped, PlaceDetailsDtoToJSON, PlaceDetailsDtoToJSONTyped, PlaceDetailsOutputFromJSON, PlaceDetailsOutputFromJSONTyped, PlaceDetailsOutputToJSON, PlaceDetailsOutputToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, ReportQueryAssistantDtoFromJSON, ReportQueryAssistantDtoFromJSONTyped, ReportQueryAssistantDtoToJSON, ReportQueryAssistantDtoToJSONTyped, ReportQueryAssistantInputFromJSON, ReportQueryAssistantInputFromJSONTyped, ReportQueryAssistantInputToJSON, ReportQueryAssistantInputToJSONTyped, ReportQueryAssistantOutputFromJSON, ReportQueryAssistantOutputFromJSONTyped, ReportQueryAssistantOutputToJSON, ReportQueryAssistantOutputToJSONTyped, ReportQueryAxis, ReportQueryAxisFromJSON, ReportQueryAxisFromJSONTyped, ReportQueryAxisToJSON, ReportQueryAxisToJSONTyped, ReportQueryCatalogFieldBucketsEnum, ReportQueryCatalogFieldFilterOperatorsEnum, ReportQueryCatalogFieldFromJSON, ReportQueryCatalogFieldFromJSONTyped, ReportQueryCatalogFieldMetricOperationsEnum, ReportQueryCatalogFieldSourcesEnum, ReportQueryCatalogFieldSuggestedNormalizeEnum, ReportQueryCatalogFieldToJSON, ReportQueryCatalogFieldToJSONTyped, ReportQueryCatalogFieldTypeEnum, ReportQueryCatalogOutputFromJSON, ReportQueryCatalogOutputFromJSONTyped, ReportQueryCatalogOutputToJSON, ReportQueryCatalogOutputToJSONTyped, ReportQueryChart, ReportQueryChartFromJSON, ReportQueryChartFromJSONTyped, ReportQueryChartToJSON, ReportQueryChartToJSONTyped, ReportQueryDataDtoFromJSON, ReportQueryDataDtoFromJSONTyped, ReportQueryDataDtoToJSON, ReportQueryDataDtoToJSONTyped, ReportQueryDataOutputFromJSON, ReportQueryDataOutputFromJSONTyped, ReportQueryDataOutputToJSON, ReportQueryDataOutputToJSONTyped, ReportQueryDateBucket, ReportQueryDateBucketFromJSON, ReportQueryDateBucketFromJSONTyped, ReportQueryDateBucketToJSON, ReportQueryDateBucketToJSONTyped, ReportQueryDefinitionChartEnum, ReportQueryDefinitionFromJSON, ReportQueryDefinitionFromJSONTyped, ReportQueryDefinitionSourceEnum, ReportQueryDefinitionToJSON, ReportQueryDefinitionToJSONTyped, ReportQueryDimensionBucketEnum, ReportQueryDimensionFromJSON, ReportQueryDimensionFromJSONTyped, ReportQueryDimensionNormalizeEnum, ReportQueryDimensionToJSON, ReportQueryDimensionToJSONTyped, ReportQueryDtoFromJSON, ReportQueryDtoFromJSONTyped, ReportQueryDtoToJSON, ReportQueryDtoToJSONTyped, ReportQueryFieldType, ReportQueryFieldTypeFromJSON, ReportQueryFieldTypeFromJSONTyped, ReportQueryFieldTypeToJSON, ReportQueryFieldTypeToJSONTyped, ReportQueryFilterFromJSON, ReportQueryFilterFromJSONTyped, ReportQueryFilterOpEnum, ReportQueryFilterOperator, ReportQueryFilterOperatorFromJSON, ReportQueryFilterOperatorFromJSONTyped, ReportQueryFilterOperatorToJSON, ReportQueryFilterOperatorToJSONTyped, ReportQueryFilterToJSON, ReportQueryFilterToJSONTyped, ReportQueryInputFromJSON, ReportQueryInputFromJSONTyped, ReportQueryInputToJSON, ReportQueryInputToJSONTyped, ReportQueryListOutputFromJSON, ReportQueryListOutputFromJSONTyped, ReportQueryListOutputToJSON, ReportQueryListOutputToJSONTyped, ReportQueryMetricFromJSON, ReportQueryMetricFromJSONTyped, ReportQueryMetricOpEnum, ReportQueryMetricOperation, ReportQueryMetricOperationFromJSON, ReportQueryMetricOperationFromJSONTyped, ReportQueryMetricOperationToJSON, ReportQueryMetricOperationToJSONTyped, ReportQueryMetricToJSON, ReportQueryMetricToJSONTyped, ReportQueryNormalize, ReportQueryNormalizeFromJSON, ReportQueryNormalizeFromJSONTyped, ReportQueryNormalizeToJSON, ReportQueryNormalizeToJSONTyped, ReportQueryOutputFromJSON, ReportQueryOutputFromJSONTyped, ReportQueryOutputToJSON, ReportQueryOutputToJSONTyped, ReportQueryPreviewInputFromJSON, ReportQueryPreviewInputFromJSONTyped, ReportQueryPreviewInputToJSON, ReportQueryPreviewInputToJSONTyped, ReportQueryResultColumnFromJSON, ReportQueryResultColumnFromJSONTyped, ReportQueryResultColumnToJSON, ReportQueryResultColumnToJSONTyped, ReportQueryResultFromJSON, ReportQueryResultFromJSONTyped, ReportQueryResultRowFromJSON, ReportQueryResultRowFromJSONTyped, ReportQueryResultRowToJSON, ReportQueryResultRowToJSONTyped, ReportQueryResultToJSON, ReportQueryResultToJSONTyped, ReportQuerySeriesAxisEnum, ReportQuerySeriesChart, ReportQuerySeriesChartEnum, ReportQuerySeriesChartFromJSON, ReportQuerySeriesChartFromJSONTyped, ReportQuerySeriesChartToJSON, ReportQuerySeriesChartToJSONTyped, ReportQuerySeriesFromJSON, ReportQuerySeriesFromJSONTyped, ReportQuerySeriesSourceEnum, ReportQuerySeriesToJSON, ReportQuerySeriesToJSONTyped, ReportQuerySource, ReportQuerySourceFromJSON, ReportQuerySourceFromJSONTyped, ReportQuerySourceToJSON, ReportQuerySourceToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, RouteApi, RouteDtoFromJSON, RouteDtoFromJSONTyped, RouteDtoToJSON, RouteDtoToJSONTyped, RouteLegDtoFromJSON, RouteLegDtoFromJSONTyped, RouteLegDtoToJSON, RouteLegDtoToJSONTyped, RouteOutputFromJSON, RouteOutputFromJSONTyped, RouteOutputToJSON, RouteOutputToJSONTyped, RouteStepDtoFromJSON, RouteStepDtoFromJSONTyped, RouteStepDtoToJSON, RouteStepDtoToJSONTyped, RouteTravelMode, RouteTravelModeFromJSON, RouteTravelModeFromJSONTyped, RouteTravelModeToJSON, RouteTravelModeToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, UserPaymentControlDtoFromJSON, UserPaymentControlDtoFromJSONTyped, UserPaymentControlDtoToJSON, UserPaymentControlDtoToJSONTyped, UserPaymentControlOutputFromJSON, UserPaymentControlOutputFromJSONTyped, UserPaymentControlOutputToJSON, UserPaymentControlOutputToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfApiV1MapPost402Response, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisGrid, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfComputeRouteInput, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef230, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLayerFieldFilterOperator, instanceOfLayerInputDto, instanceOfLayerItemTypeFieldFilterDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemRenderFillOption, instanceOfMapItemRenderOptionsORM, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionFieldOutput, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeFormSectionOutput, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapItemWithPointsInput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerItemTypeFieldFilterORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointInput, instanceOfMapZonePointORM, instanceOfMapZoneWithPointsInput, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNearbyPlaceDto, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOAuthClientORM, instanceOfOAuthRefreshTokenORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfPlaceAddressDto, instanceOfPlaceDetailsDto, instanceOfPlaceDetailsOutput, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReportQueryAssistantDto, instanceOfReportQueryAssistantInput, instanceOfReportQueryAssistantOutput, instanceOfReportQueryAxis, instanceOfReportQueryCatalogField, instanceOfReportQueryCatalogOutput, instanceOfReportQueryChart, instanceOfReportQueryDataDto, instanceOfReportQueryDataOutput, instanceOfReportQueryDateBucket, instanceOfReportQueryDefinition, instanceOfReportQueryDimension, instanceOfReportQueryDto, instanceOfReportQueryFieldType, instanceOfReportQueryFilter, instanceOfReportQueryFilterOperator, instanceOfReportQueryInput, instanceOfReportQueryListOutput, instanceOfReportQueryMetric, instanceOfReportQueryMetricOperation, instanceOfReportQueryNormalize, instanceOfReportQueryOutput, instanceOfReportQueryPreviewInput, instanceOfReportQueryResult, instanceOfReportQueryResultColumn, instanceOfReportQueryResultRow, instanceOfReportQuerySeries, instanceOfReportQuerySeriesChart, instanceOfReportQuerySource, instanceOfReverseGeoCodingOutput, instanceOfRouteDto, instanceOfRouteLegDto, instanceOfRouteOutput, instanceOfRouteStepDto, instanceOfRouteTravelMode, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfUserPaymentControlDto, instanceOfUserPaymentControlOutput, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
11405
11675
  //# sourceMappingURL=index.mjs.map