@jrojaspin/security-map-api-cli 9.8.0 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1317,19 +1317,19 @@ function ComputeRouteInputToJSONTyped(value, ignoreDiscriminator = false) {
1317
1317
  };
1318
1318
  }
1319
1319
 
1320
- function instanceOfDef227(value) {
1320
+ function instanceOfDef230(value) {
1321
1321
  return true;
1322
1322
  }
1323
- function Def227FromJSON(json) {
1324
- return Def227FromJSONTyped(json);
1323
+ function Def230FromJSON(json) {
1324
+ return Def230FromJSONTyped(json);
1325
1325
  }
1326
- function Def227FromJSONTyped(json, ignoreDiscriminator) {
1326
+ function Def230FromJSONTyped(json, ignoreDiscriminator) {
1327
1327
  return json;
1328
1328
  }
1329
- function Def227ToJSON(json) {
1330
- return Def227ToJSONTyped(json, false);
1329
+ function Def230ToJSON(json) {
1330
+ return Def230ToJSONTyped(json, false);
1331
1331
  }
1332
- function Def227ToJSONTyped(value, ignoreDiscriminator = false) {
1332
+ function Def230ToJSONTyped(value, ignoreDiscriminator = false) {
1333
1333
  return value;
1334
1334
  }
1335
1335
 
@@ -5965,7 +5965,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
5965
5965
  return json;
5966
5966
  }
5967
5967
  return {
5968
- 'data': (json['data'].map(Def227FromJSON)),
5968
+ 'data': (json['data'].map(Def230FromJSON)),
5969
5969
  'pageInfo': PageInfoFromJSON(json['pageInfo']),
5970
5970
  };
5971
5971
  }
@@ -5977,7 +5977,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
5977
5977
  return value;
5978
5978
  }
5979
5979
  return {
5980
- 'data': (value['data'].map(Def227ToJSON)),
5980
+ 'data': (value['data'].map(Def230ToJSON)),
5981
5981
  'pageInfo': PageInfoToJSON(value['pageInfo']),
5982
5982
  };
5983
5983
  }
@@ -6610,6 +6610,363 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
6610
6610
  };
6611
6611
  }
6612
6612
 
6613
+ const ReportQueryMetricOpEnum = {
6614
+ Count: 'count',
6615
+ CountDistinct: 'count_distinct',
6616
+ Sum: 'sum',
6617
+ Avg: 'avg',
6618
+ Min: 'min',
6619
+ Max: 'max'
6620
+ };
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 = {
6654
+ Contains: 'contains',
6655
+ NotContains: 'not_contains',
6656
+ Eq: 'eq',
6657
+ Neq: 'neq',
6658
+ In: 'in',
6659
+ NotIn: 'not_in',
6660
+ Gt: 'gt',
6661
+ Gte: 'gte',
6662
+ Lt: 'lt',
6663
+ Lte: 'lte',
6664
+ IsEmpty: 'is_empty',
6665
+ IsNotEmpty: 'is_not_empty'
6666
+ };
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 = {
6704
+ Day: 'day',
6705
+ Week: 'week',
6706
+ Month: 'month',
6707
+ Quarter: 'quarter',
6708
+ Year: 'year'
6709
+ };
6710
+ const ReportQueryDimensionNormalizeEnum = {
6711
+ None: 'none',
6712
+ TrimCase: 'trim_case',
6713
+ Ipp: 'ipp'
6714
+ };
6715
+ function instanceOfReportQueryDimension(value) {
6716
+ if (!('field' in value) || value['field'] === undefined)
6717
+ return false;
6718
+ return true;
6719
+ }
6720
+ function ReportQueryDimensionFromJSON(json) {
6721
+ return ReportQueryDimensionFromJSONTyped(json);
6722
+ }
6723
+ function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
6724
+ if (json == null) {
6725
+ return json;
6726
+ }
6727
+ return {
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'],
6732
+ };
6733
+ }
6734
+ function ReportQueryDimensionToJSON(json) {
6735
+ return ReportQueryDimensionToJSONTyped(json, false);
6736
+ }
6737
+ function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
6738
+ if (value == null) {
6739
+ return value;
6740
+ }
6741
+ return {
6742
+ 'field': value['field'],
6743
+ 'bucket': value['bucket'],
6744
+ 'normalize': value['normalize'],
6745
+ 'includeEmpty': value['includeEmpty'],
6746
+ };
6747
+ }
6748
+
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)
6770
+ return false;
6771
+ return true;
6772
+ }
6773
+ function ReportQuerySeriesFromJSON(json) {
6774
+ return ReportQuerySeriesFromJSONTyped(json);
6775
+ }
6776
+ function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
6777
+ if (json == null) {
6778
+ return json;
6779
+ }
6780
+ return {
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'],
6790
+ };
6791
+ }
6792
+ function ReportQuerySeriesToJSON(json) {
6793
+ return ReportQuerySeriesToJSONTyped(json, false);
6794
+ }
6795
+ function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
6796
+ if (value == null) {
6797
+ return value;
6798
+ }
6799
+ return {
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'],
6809
+ };
6810
+ }
6811
+
6812
+ const ReportQueryDefinitionSourceEnum = {
6813
+ Items: 'items',
6814
+ Articles: 'articles',
6815
+ StateHistory: 'state_history'
6816
+ };
6817
+ const ReportQueryDefinitionChartEnum = {
6818
+ Bar: 'bar',
6819
+ Line: 'line',
6820
+ Pie: 'pie',
6821
+ StackedBar: 'stacked_bar',
6822
+ Table: 'table'
6823
+ };
6824
+ function instanceOfReportQueryDefinition(value) {
6825
+ return true;
6826
+ }
6827
+ function ReportQueryDefinitionFromJSON(json) {
6828
+ return ReportQueryDefinitionFromJSONTyped(json);
6829
+ }
6830
+ function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
6831
+ if (json == null) {
6832
+ return json;
6833
+ }
6834
+ return {
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'],
6847
+ };
6848
+ }
6849
+ function ReportQueryDefinitionToJSON(json) {
6850
+ return ReportQueryDefinitionToJSONTyped(json, false);
6851
+ }
6852
+ function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
6853
+ if (value == null) {
6854
+ return value;
6855
+ }
6856
+ return {
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'],
6869
+ };
6870
+ }
6871
+
6872
+ function instanceOfReportQueryAssistantDto(value) {
6873
+ if (!('title' in value) || value['title'] === undefined)
6874
+ return false;
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)
6880
+ return false;
6881
+ return true;
6882
+ }
6883
+ function ReportQueryAssistantDtoFromJSON(json) {
6884
+ return ReportQueryAssistantDtoFromJSONTyped(json);
6885
+ }
6886
+ function ReportQueryAssistantDtoFromJSONTyped(json, ignoreDiscriminator) {
6887
+ if (json == null) {
6888
+ return json;
6889
+ }
6890
+ return {
6891
+ 'title': json['title'],
6892
+ 'explanation': json['explanation'],
6893
+ 'definition': ReportQueryDefinitionFromJSON(json['definition']),
6894
+ 'remainingToday': json['remainingToday'],
6895
+ };
6896
+ }
6897
+ function ReportQueryAssistantDtoToJSON(json) {
6898
+ return ReportQueryAssistantDtoToJSONTyped(json, false);
6899
+ }
6900
+ function ReportQueryAssistantDtoToJSONTyped(value, ignoreDiscriminator = false) {
6901
+ if (value == null) {
6902
+ return value;
6903
+ }
6904
+ return {
6905
+ 'title': value['title'],
6906
+ 'explanation': value['explanation'],
6907
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
6908
+ 'remainingToday': value['remainingToday'],
6909
+ };
6910
+ }
6911
+
6912
+ function instanceOfReportQueryAssistantInput(value) {
6913
+ if (!('prompt' in value) || value['prompt'] === undefined)
6914
+ return false;
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)
6944
+ return false;
6945
+ return true;
6946
+ }
6947
+ function ReportQueryAssistantOutputFromJSON(json) {
6948
+ return ReportQueryAssistantOutputFromJSONTyped(json);
6949
+ }
6950
+ function ReportQueryAssistantOutputFromJSONTyped(json, ignoreDiscriminator) {
6951
+ if (json == null) {
6952
+ return json;
6953
+ }
6954
+ return {
6955
+ 'data': ReportQueryAssistantDtoFromJSON(json['data']),
6956
+ };
6957
+ }
6958
+ function ReportQueryAssistantOutputToJSON(json) {
6959
+ return ReportQueryAssistantOutputToJSONTyped(json, false);
6960
+ }
6961
+ function ReportQueryAssistantOutputToJSONTyped(value, ignoreDiscriminator = false) {
6962
+ if (value == null) {
6963
+ return value;
6964
+ }
6965
+ return {
6966
+ 'data': ReportQueryAssistantDtoToJSON(value['data']),
6967
+ };
6968
+ }
6969
+
6613
6970
  const ReportQueryAxis = {
6614
6971
  Y: 'y',
6615
6972
  Y2: 'y2'
@@ -6821,437 +7178,178 @@ function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
6821
7178
  }
6822
7179
  return {
6823
7180
  'keys': json['keys'],
6824
- 'labels': json['labels'],
6825
- 'values': json['values'],
6826
- };
6827
- }
6828
- function ReportQueryResultRowToJSON(json) {
6829
- return ReportQueryResultRowToJSONTyped(json, false);
6830
- }
6831
- function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
6832
- if (value == null) {
6833
- return value;
6834
- }
6835
- return {
6836
- 'keys': value['keys'],
6837
- 'labels': value['labels'],
6838
- 'values': value['values'],
6839
- };
6840
- }
6841
-
6842
- function instanceOfReportQueryResultColumn(value) {
6843
- if (!('label' in value) || value['label'] === undefined)
6844
- return false;
6845
- if (!('kind' in value) || value['kind'] === undefined)
6846
- return false;
6847
- return true;
6848
- }
6849
- function ReportQueryResultColumnFromJSON(json) {
6850
- return ReportQueryResultColumnFromJSONTyped(json);
6851
- }
6852
- function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
6853
- if (json == null) {
6854
- return json;
6855
- }
6856
- return {
6857
- 'label': json['label'],
6858
- 'kind': json['kind'],
6859
- };
6860
- }
6861
- function ReportQueryResultColumnToJSON(json) {
6862
- return ReportQueryResultColumnToJSONTyped(json, false);
6863
- }
6864
- function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
6865
- if (value == null) {
6866
- return value;
6867
- }
6868
- return {
6869
- 'label': value['label'],
6870
- 'kind': value['kind'],
6871
- };
6872
- }
6873
-
6874
- function instanceOfReportQueryResult(value) {
6875
- if (!('columns' in value) || value['columns'] === undefined)
6876
- return false;
6877
- if (!('rows' in value) || value['rows'] === undefined)
6878
- return false;
6879
- return true;
6880
- }
6881
- function ReportQueryResultFromJSON(json) {
6882
- return ReportQueryResultFromJSONTyped(json);
6883
- }
6884
- function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
6885
- if (json == null) {
6886
- return json;
6887
- }
6888
- return {
6889
- 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
6890
- 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
6891
- };
6892
- }
6893
- function ReportQueryResultToJSON(json) {
6894
- return ReportQueryResultToJSONTyped(json, false);
6895
- }
6896
- function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
6897
- if (value == null) {
6898
- return value;
6899
- }
6900
- return {
6901
- 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
6902
- 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
6903
- };
6904
- }
6905
-
6906
- function instanceOfReportQueryDataDto(value) {
6907
- if (!('table' in value) || value['table'] === undefined)
6908
- return false;
6909
- if (!('chart' in value) || value['chart'] === undefined)
6910
- return false;
6911
- return true;
6912
- }
6913
- function ReportQueryDataDtoFromJSON(json) {
6914
- return ReportQueryDataDtoFromJSONTyped(json);
6915
- }
6916
- function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
6917
- if (json == null) {
6918
- return json;
6919
- }
6920
- return {
6921
- 'table': ReportQueryResultFromJSON(json['table']),
6922
- 'chart': ReportDataJSONDtoFromJSON(json['chart']),
6923
- };
6924
- }
6925
- function ReportQueryDataDtoToJSON(json) {
6926
- return ReportQueryDataDtoToJSONTyped(json, false);
6927
- }
6928
- function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
6929
- if (value == null) {
6930
- return value;
6931
- }
6932
- return {
6933
- 'table': ReportQueryResultToJSON(value['table']),
6934
- 'chart': ReportDataJSONDtoToJSON(value['chart']),
6935
- };
6936
- }
6937
-
6938
- function instanceOfReportQueryDataOutput(value) {
6939
- if (!('data' in value) || value['data'] === undefined)
6940
- return false;
6941
- return true;
6942
- }
6943
- function ReportQueryDataOutputFromJSON(json) {
6944
- return ReportQueryDataOutputFromJSONTyped(json);
6945
- }
6946
- function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
6947
- if (json == null) {
6948
- return json;
6949
- }
6950
- return {
6951
- 'data': ReportQueryDataDtoFromJSON(json['data']),
6952
- };
6953
- }
6954
- function ReportQueryDataOutputToJSON(json) {
6955
- return ReportQueryDataOutputToJSONTyped(json, false);
6956
- }
6957
- function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
6958
- if (value == null) {
6959
- return value;
6960
- }
6961
- return {
6962
- 'data': ReportQueryDataDtoToJSON(value['data']),
6963
- };
6964
- }
6965
-
6966
- const ReportQueryDateBucket = {
6967
- Day: 'day',
6968
- Week: 'week',
6969
- Month: 'month',
6970
- Quarter: 'quarter',
6971
- Year: 'year'
6972
- };
6973
- function instanceOfReportQueryDateBucket(value) {
6974
- for (const key in ReportQueryDateBucket) {
6975
- if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
6976
- if (ReportQueryDateBucket[key] === value) {
6977
- return true;
6978
- }
6979
- }
6980
- }
6981
- return false;
6982
- }
6983
- function ReportQueryDateBucketFromJSON(json) {
6984
- return ReportQueryDateBucketFromJSONTyped(json);
6985
- }
6986
- function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
6987
- return json;
6988
- }
6989
- function ReportQueryDateBucketToJSON(value) {
6990
- return value;
6991
- }
6992
- function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
6993
- return value;
6994
- }
6995
-
6996
- const ReportQueryMetricOpEnum = {
6997
- Count: 'count',
6998
- CountDistinct: 'count_distinct',
6999
- Sum: 'sum',
7000
- Avg: 'avg',
7001
- Min: 'min',
7002
- Max: 'max'
7003
- };
7004
- function instanceOfReportQueryMetric(value) {
7005
- if (!('op' in value) || value['op'] === undefined)
7006
- return false;
7007
- return true;
7008
- }
7009
- function ReportQueryMetricFromJSON(json) {
7010
- return ReportQueryMetricFromJSONTyped(json);
7011
- }
7012
- function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
7013
- if (json == null) {
7014
- return json;
7015
- }
7016
- return {
7017
- 'op': json['op'],
7018
- 'field': json['field'] == null ? undefined : json['field'],
7019
- 'label': json['label'] == null ? undefined : json['label'],
7181
+ 'labels': json['labels'],
7182
+ 'values': json['values'],
7020
7183
  };
7021
7184
  }
7022
- function ReportQueryMetricToJSON(json) {
7023
- return ReportQueryMetricToJSONTyped(json, false);
7185
+ function ReportQueryResultRowToJSON(json) {
7186
+ return ReportQueryResultRowToJSONTyped(json, false);
7024
7187
  }
7025
- function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
7188
+ function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
7026
7189
  if (value == null) {
7027
7190
  return value;
7028
7191
  }
7029
7192
  return {
7030
- 'op': value['op'],
7031
- 'field': value['field'],
7032
- 'label': value['label'],
7193
+ 'keys': value['keys'],
7194
+ 'labels': value['labels'],
7195
+ 'values': value['values'],
7033
7196
  };
7034
7197
  }
7035
7198
 
7036
- const ReportQueryFilterOpEnum = {
7037
- Contains: 'contains',
7038
- NotContains: 'not_contains',
7039
- Eq: 'eq',
7040
- Neq: 'neq',
7041
- In: 'in',
7042
- NotIn: 'not_in',
7043
- Gt: 'gt',
7044
- Gte: 'gte',
7045
- Lt: 'lt',
7046
- Lte: 'lte',
7047
- IsEmpty: 'is_empty',
7048
- IsNotEmpty: 'is_not_empty'
7049
- };
7050
- function instanceOfReportQueryFilter(value) {
7051
- if (!('field' in value) || value['field'] === undefined)
7052
- return false;
7053
- if (!('op' in value) || value['op'] === undefined)
7199
+ function instanceOfReportQueryResultColumn(value) {
7200
+ if (!('label' in value) || value['label'] === undefined)
7054
7201
  return false;
7055
- if (!('values' in value) || value['values'] === undefined)
7202
+ if (!('kind' in value) || value['kind'] === undefined)
7056
7203
  return false;
7057
7204
  return true;
7058
7205
  }
7059
- function ReportQueryFilterFromJSON(json) {
7060
- return ReportQueryFilterFromJSONTyped(json);
7206
+ function ReportQueryResultColumnFromJSON(json) {
7207
+ return ReportQueryResultColumnFromJSONTyped(json);
7061
7208
  }
7062
- function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
7209
+ function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7063
7210
  if (json == null) {
7064
7211
  return json;
7065
7212
  }
7066
7213
  return {
7067
- 'field': json['field'],
7068
- 'op': json['op'],
7069
- 'values': json['values'],
7214
+ 'label': json['label'],
7215
+ 'kind': json['kind'],
7070
7216
  };
7071
7217
  }
7072
- function ReportQueryFilterToJSON(json) {
7073
- return ReportQueryFilterToJSONTyped(json, false);
7218
+ function ReportQueryResultColumnToJSON(json) {
7219
+ return ReportQueryResultColumnToJSONTyped(json, false);
7074
7220
  }
7075
- function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
7221
+ function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7076
7222
  if (value == null) {
7077
7223
  return value;
7078
7224
  }
7079
7225
  return {
7080
- 'field': value['field'],
7081
- 'op': value['op'],
7082
- 'values': value['values'],
7226
+ 'label': value['label'],
7227
+ 'kind': value['kind'],
7083
7228
  };
7084
7229
  }
7085
7230
 
7086
- const ReportQueryDimensionBucketEnum = {
7087
- Day: 'day',
7088
- Week: 'week',
7089
- Month: 'month',
7090
- Quarter: 'quarter',
7091
- Year: 'year'
7092
- };
7093
- const ReportQueryDimensionNormalizeEnum = {
7094
- None: 'none',
7095
- TrimCase: 'trim_case',
7096
- Ipp: 'ipp'
7097
- };
7098
- function instanceOfReportQueryDimension(value) {
7099
- 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)
7100
7235
  return false;
7101
7236
  return true;
7102
7237
  }
7103
- function ReportQueryDimensionFromJSON(json) {
7104
- return ReportQueryDimensionFromJSONTyped(json);
7238
+ function ReportQueryResultFromJSON(json) {
7239
+ return ReportQueryResultFromJSONTyped(json);
7105
7240
  }
7106
- function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
7241
+ function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7107
7242
  if (json == null) {
7108
7243
  return json;
7109
7244
  }
7110
7245
  return {
7111
- 'field': json['field'],
7112
- 'bucket': json['bucket'] == null ? undefined : json['bucket'],
7113
- 'normalize': json['normalize'] == null ? undefined : json['normalize'],
7114
- 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
7246
+ 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
7247
+ 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7115
7248
  };
7116
7249
  }
7117
- function ReportQueryDimensionToJSON(json) {
7118
- return ReportQueryDimensionToJSONTyped(json, false);
7250
+ function ReportQueryResultToJSON(json) {
7251
+ return ReportQueryResultToJSONTyped(json, false);
7119
7252
  }
7120
- function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
7253
+ function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7121
7254
  if (value == null) {
7122
7255
  return value;
7123
7256
  }
7124
7257
  return {
7125
- 'field': value['field'],
7126
- 'bucket': value['bucket'],
7127
- 'normalize': value['normalize'],
7128
- 'includeEmpty': value['includeEmpty'],
7258
+ 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
7259
+ 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7129
7260
  };
7130
7261
  }
7131
7262
 
7132
- const ReportQuerySeriesSourceEnum = {
7133
- Items: 'items',
7134
- Articles: 'articles',
7135
- StateHistory: 'state_history'
7136
- };
7137
- const ReportQuerySeriesChartEnum = {
7138
- Bar: 'bar',
7139
- Line: 'line'
7140
- };
7141
- const ReportQuerySeriesAxisEnum = {
7142
- Y: 'y',
7143
- Y2: 'y2'
7144
- };
7145
- function instanceOfReportQuerySeries(value) {
7146
- if (!('source' in value) || value['source'] === undefined)
7147
- return false;
7148
- if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
7149
- return false;
7150
- if (!('filters' in value) || value['filters'] === undefined)
7263
+ function instanceOfReportQueryDataDto(value) {
7264
+ if (!('table' in value) || value['table'] === undefined)
7151
7265
  return false;
7152
- if (!('metric' in value) || value['metric'] === undefined)
7266
+ if (!('chart' in value) || value['chart'] === undefined)
7153
7267
  return false;
7154
7268
  return true;
7155
7269
  }
7156
- function ReportQuerySeriesFromJSON(json) {
7157
- return ReportQuerySeriesFromJSONTyped(json);
7270
+ function ReportQueryDataDtoFromJSON(json) {
7271
+ return ReportQueryDataDtoFromJSONTyped(json);
7158
7272
  }
7159
- function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
7273
+ function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7160
7274
  if (json == null) {
7161
7275
  return json;
7162
7276
  }
7163
7277
  return {
7164
- 'label': json['label'] == null ? undefined : json['label'],
7165
- 'source': json['source'],
7166
- 'itemTypeIds': json['itemTypeIds'],
7167
- 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
7168
- 'metric': ReportQueryMetricFromJSON(json['metric']),
7169
- 'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
7170
- 'chart': json['chart'] == null ? undefined : json['chart'],
7171
- 'color': json['color'] == null ? undefined : json['color'],
7172
- 'axis': json['axis'] == null ? undefined : json['axis'],
7278
+ 'table': ReportQueryResultFromJSON(json['table']),
7279
+ 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7173
7280
  };
7174
7281
  }
7175
- function ReportQuerySeriesToJSON(json) {
7176
- return ReportQuerySeriesToJSONTyped(json, false);
7282
+ function ReportQueryDataDtoToJSON(json) {
7283
+ return ReportQueryDataDtoToJSONTyped(json, false);
7177
7284
  }
7178
- function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
7285
+ function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7179
7286
  if (value == null) {
7180
7287
  return value;
7181
7288
  }
7182
7289
  return {
7183
- 'label': value['label'],
7184
- 'source': value['source'],
7185
- 'itemTypeIds': value['itemTypeIds'],
7186
- 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
7187
- 'metric': ReportQueryMetricToJSON(value['metric']),
7188
- 'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
7189
- 'chart': value['chart'],
7190
- 'color': value['color'],
7191
- 'axis': value['axis'],
7290
+ 'table': ReportQueryResultToJSON(value['table']),
7291
+ 'chart': ReportDataJSONDtoToJSON(value['chart']),
7192
7292
  };
7193
7293
  }
7194
7294
 
7195
- const ReportQueryDefinitionSourceEnum = {
7196
- Items: 'items',
7197
- Articles: 'articles',
7198
- StateHistory: 'state_history'
7199
- };
7200
- const ReportQueryDefinitionChartEnum = {
7201
- Bar: 'bar',
7202
- Line: 'line',
7203
- Pie: 'pie',
7204
- StackedBar: 'stacked_bar',
7205
- Table: 'table'
7206
- };
7207
- function instanceOfReportQueryDefinition(value) {
7295
+ function instanceOfReportQueryDataOutput(value) {
7296
+ if (!('data' in value) || value['data'] === undefined)
7297
+ return false;
7208
7298
  return true;
7209
7299
  }
7210
- function ReportQueryDefinitionFromJSON(json) {
7211
- return ReportQueryDefinitionFromJSONTyped(json);
7300
+ function ReportQueryDataOutputFromJSON(json) {
7301
+ return ReportQueryDataOutputFromJSONTyped(json);
7212
7302
  }
7213
- function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
7303
+ function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7214
7304
  if (json == null) {
7215
7305
  return json;
7216
7306
  }
7217
7307
  return {
7218
- 'version': json['version'] == null ? undefined : json['version'],
7219
- 'source': json['source'] == null ? undefined : json['source'],
7220
- 'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
7221
- 'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
7222
- 'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
7223
- 'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
7224
- 'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
7225
- 'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
7226
- 'chart': json['chart'] == null ? undefined : json['chart'],
7227
- 'labelX': json['labelX'] == null ? undefined : json['labelX'],
7228
- 'labelY': json['labelY'] == null ? undefined : json['labelY'],
7229
- 'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
7308
+ 'data': ReportQueryDataDtoFromJSON(json['data']),
7230
7309
  };
7231
7310
  }
7232
- function ReportQueryDefinitionToJSON(json) {
7233
- return ReportQueryDefinitionToJSONTyped(json, false);
7311
+ function ReportQueryDataOutputToJSON(json) {
7312
+ return ReportQueryDataOutputToJSONTyped(json, false);
7234
7313
  }
7235
- function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
7314
+ function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7236
7315
  if (value == null) {
7237
7316
  return value;
7238
7317
  }
7239
7318
  return {
7240
- 'version': value['version'],
7241
- 'source': value['source'],
7242
- 'itemTypeIds': value['itemTypeIds'],
7243
- 'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
7244
- 'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
7245
- 'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
7246
- 'x': ReportQueryDimensionToJSON(value['x']),
7247
- 'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
7248
- 'chart': value['chart'],
7249
- 'labelX': value['labelX'],
7250
- 'labelY': value['labelY'],
7251
- 'labelY2': value['labelY2'],
7319
+ 'data': ReportQueryDataDtoToJSON(value['data']),
7252
7320
  };
7253
7321
  }
7254
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
+
7255
7353
  function instanceOfReportQueryDto(value) {
7256
7354
  if (!('id' in value) || value['id'] === undefined)
7257
7355
  return false;
@@ -11122,6 +11220,29 @@ class ReportApi extends BaseAPI {
11122
11220
  const response = await this.apiV1ReportReportIdGetRaw(requestParameters, initOverrides);
11123
11221
  return await response.value();
11124
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
+ }
11125
11246
  async apiV2ReportCatalogGetRaw(initOverrides) {
11126
11247
  const queryParameters = {};
11127
11248
  const headerParameters = {};
@@ -11550,5 +11671,5 @@ class StateMachineApi extends BaseAPI {
11550
11671
  }
11551
11672
  }
11552
11673
 
11553
- 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, Def227FromJSON, Def227FromJSONTyped, Def227ToJSON, Def227ToJSONTyped, 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, 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, instanceOfDef227, 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, 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 };
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 };
11554
11675
  //# sourceMappingURL=index.mjs.map