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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/apis/ItemApi.d.ts +6 -1
  2. package/dist/apis/ItemApi.js +24 -1
  3. package/dist/apis/ItemApi.js.map +1 -1
  4. package/dist/apis/ReportApi.d.ts +6 -1
  5. package/dist/apis/ReportApi.js +24 -1
  6. package/dist/apis/ReportApi.js.map +1 -1
  7. package/dist/index.cjs +749 -387
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.ts +245 -148
  10. package/dist/index.mjs +705 -383
  11. package/dist/index.mjs.map +1 -1
  12. package/dist/models/Def235.d.ts +8 -0
  13. package/dist/models/Def235.js +16 -0
  14. package/dist/models/{Def227.js.map → Def235.js.map} +1 -1
  15. package/dist/models/ItemTextFillArticle.d.ts +12 -0
  16. package/dist/models/ItemTextFillArticle.js +42 -0
  17. package/dist/models/ItemTextFillArticle.js.map +1 -0
  18. package/dist/models/ItemTextFillDto.d.ts +15 -0
  19. package/dist/models/ItemTextFillDto.js +46 -0
  20. package/dist/models/ItemTextFillDto.js.map +1 -0
  21. package/dist/models/ItemTextFillInput.d.ts +9 -0
  22. package/dist/models/ItemTextFillInput.js +32 -0
  23. package/dist/models/ItemTextFillInput.js.map +1 -0
  24. package/dist/models/ItemTextFillOutput.d.ts +9 -0
  25. package/dist/models/ItemTextFillOutput.js +29 -0
  26. package/dist/models/ItemTextFillOutput.js.map +1 -0
  27. package/dist/models/ItemTextFillValue.d.ts +9 -0
  28. package/dist/models/ItemTextFillValue.js +32 -0
  29. package/dist/models/ItemTextFillValue.js.map +1 -0
  30. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  31. package/dist/models/ReportAllItemsListOutput.js +3 -3
  32. package/dist/models/ReportQueryAssistantDto.d.ts +12 -0
  33. package/dist/models/ReportQueryAssistantDto.js +41 -0
  34. package/dist/models/ReportQueryAssistantDto.js.map +1 -0
  35. package/dist/models/ReportQueryAssistantInput.d.ts +10 -0
  36. package/dist/models/ReportQueryAssistantInput.js +31 -0
  37. package/dist/models/ReportQueryAssistantInput.js.map +1 -0
  38. package/dist/models/ReportQueryAssistantOutput.d.ts +9 -0
  39. package/dist/models/ReportQueryAssistantOutput.js +29 -0
  40. package/dist/models/ReportQueryAssistantOutput.js.map +1 -0
  41. package/dist/models/index.d.ts +9 -1
  42. package/dist/models/index.js +9 -1
  43. package/dist/models/index.js.map +1 -1
  44. package/package.json +1 -1
  45. package/dist/models/Def227.d.ts +0 -8
  46. package/dist/models/Def227.js +0 -16
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 instanceOfDef235(value) {
1321
1321
  return true;
1322
1322
  }
1323
- function Def227FromJSON(json) {
1324
- return Def227FromJSONTyped(json);
1323
+ function Def235FromJSON(json) {
1324
+ return Def235FromJSONTyped(json);
1325
1325
  }
1326
- function Def227FromJSONTyped(json, ignoreDiscriminator) {
1326
+ function Def235FromJSONTyped(json, ignoreDiscriminator) {
1327
1327
  return json;
1328
1328
  }
1329
- function Def227ToJSON(json) {
1330
- return Def227ToJSONTyped(json, false);
1329
+ function Def235ToJSON(json) {
1330
+ return Def235ToJSONTyped(json, false);
1331
1331
  }
1332
- function Def227ToJSONTyped(value, ignoreDiscriminator = false) {
1332
+ function Def235ToJSONTyped(value, ignoreDiscriminator = false) {
1333
1333
  return value;
1334
1334
  }
1335
1335
 
@@ -1594,6 +1594,184 @@ function ItemRenderOptionsOutputToJSONTyped(value, ignoreDiscriminator = false)
1594
1594
  };
1595
1595
  }
1596
1596
 
1597
+ function instanceOfItemTextFillArticle(value) {
1598
+ if (!('articleId' in value) || value['articleId'] === undefined)
1599
+ return false;
1600
+ if (!('name' in value) || value['name'] === undefined)
1601
+ return false;
1602
+ if (!('quantity' in value) || value['quantity'] === undefined)
1603
+ return false;
1604
+ if (!('meassurementUnitId' in value) || value['meassurementUnitId'] === undefined)
1605
+ return false;
1606
+ return true;
1607
+ }
1608
+ function ItemTextFillArticleFromJSON(json) {
1609
+ return ItemTextFillArticleFromJSONTyped(json);
1610
+ }
1611
+ function ItemTextFillArticleFromJSONTyped(json, ignoreDiscriminator) {
1612
+ if (json == null) {
1613
+ return json;
1614
+ }
1615
+ return {
1616
+ 'articleId': json['articleId'],
1617
+ 'name': json['name'],
1618
+ 'quantity': json['quantity'],
1619
+ 'meassurementUnitId': json['meassurementUnitId'],
1620
+ 'presentationId': json['presentationId'] == null ? undefined : json['presentationId'],
1621
+ };
1622
+ }
1623
+ function ItemTextFillArticleToJSON(json) {
1624
+ return ItemTextFillArticleToJSONTyped(json, false);
1625
+ }
1626
+ function ItemTextFillArticleToJSONTyped(value, ignoreDiscriminator = false) {
1627
+ if (value == null) {
1628
+ return value;
1629
+ }
1630
+ return {
1631
+ 'articleId': value['articleId'],
1632
+ 'name': value['name'],
1633
+ 'quantity': value['quantity'],
1634
+ 'meassurementUnitId': value['meassurementUnitId'],
1635
+ 'presentationId': value['presentationId'],
1636
+ };
1637
+ }
1638
+
1639
+ function instanceOfItemTextFillValue(value) {
1640
+ if (!('fieldId' in value) || value['fieldId'] === undefined)
1641
+ return false;
1642
+ if (!('value' in value) || value['value'] === undefined)
1643
+ return false;
1644
+ return true;
1645
+ }
1646
+ function ItemTextFillValueFromJSON(json) {
1647
+ return ItemTextFillValueFromJSONTyped(json);
1648
+ }
1649
+ function ItemTextFillValueFromJSONTyped(json, ignoreDiscriminator) {
1650
+ if (json == null) {
1651
+ return json;
1652
+ }
1653
+ return {
1654
+ 'fieldId': json['fieldId'],
1655
+ 'value': json['value'],
1656
+ };
1657
+ }
1658
+ function ItemTextFillValueToJSON(json) {
1659
+ return ItemTextFillValueToJSONTyped(json, false);
1660
+ }
1661
+ function ItemTextFillValueToJSONTyped(value, ignoreDiscriminator = false) {
1662
+ if (value == null) {
1663
+ return value;
1664
+ }
1665
+ return {
1666
+ 'fieldId': value['fieldId'],
1667
+ 'value': value['value'],
1668
+ };
1669
+ }
1670
+
1671
+ function instanceOfItemTextFillDto(value) {
1672
+ if (!('values' in value) || value['values'] === undefined)
1673
+ return false;
1674
+ if (!('articles' in value) || value['articles'] === undefined)
1675
+ return false;
1676
+ if (!('leftOut' in value) || value['leftOut'] === undefined)
1677
+ return false;
1678
+ if (!('remainingToday' in value) || value['remainingToday'] === undefined)
1679
+ return false;
1680
+ return true;
1681
+ }
1682
+ function ItemTextFillDtoFromJSON(json) {
1683
+ return ItemTextFillDtoFromJSONTyped(json);
1684
+ }
1685
+ function ItemTextFillDtoFromJSONTyped(json, ignoreDiscriminator) {
1686
+ if (json == null) {
1687
+ return json;
1688
+ }
1689
+ return {
1690
+ 'values': (json['values'].map(ItemTextFillValueFromJSON)),
1691
+ 'address': json['address'] == null ? undefined : json['address'],
1692
+ 'stateId': json['stateId'] == null ? undefined : json['stateId'],
1693
+ 'articles': (json['articles'].map(ItemTextFillArticleFromJSON)),
1694
+ 'leftOut': json['leftOut'],
1695
+ 'remainingToday': json['remainingToday'],
1696
+ };
1697
+ }
1698
+ function ItemTextFillDtoToJSON(json) {
1699
+ return ItemTextFillDtoToJSONTyped(json, false);
1700
+ }
1701
+ function ItemTextFillDtoToJSONTyped(value, ignoreDiscriminator = false) {
1702
+ if (value == null) {
1703
+ return value;
1704
+ }
1705
+ return {
1706
+ 'values': (value['values'].map(ItemTextFillValueToJSON)),
1707
+ 'address': value['address'],
1708
+ 'stateId': value['stateId'],
1709
+ 'articles': (value['articles'].map(ItemTextFillArticleToJSON)),
1710
+ 'leftOut': value['leftOut'],
1711
+ 'remainingToday': value['remainingToday'],
1712
+ };
1713
+ }
1714
+
1715
+ function instanceOfItemTextFillInput(value) {
1716
+ if (!('itemTypeId' in value) || value['itemTypeId'] === undefined)
1717
+ return false;
1718
+ if (!('text' in value) || value['text'] === undefined)
1719
+ return false;
1720
+ return true;
1721
+ }
1722
+ function ItemTextFillInputFromJSON(json) {
1723
+ return ItemTextFillInputFromJSONTyped(json);
1724
+ }
1725
+ function ItemTextFillInputFromJSONTyped(json, ignoreDiscriminator) {
1726
+ if (json == null) {
1727
+ return json;
1728
+ }
1729
+ return {
1730
+ 'itemTypeId': json['itemTypeId'],
1731
+ 'text': json['text'],
1732
+ };
1733
+ }
1734
+ function ItemTextFillInputToJSON(json) {
1735
+ return ItemTextFillInputToJSONTyped(json, false);
1736
+ }
1737
+ function ItemTextFillInputToJSONTyped(value, ignoreDiscriminator = false) {
1738
+ if (value == null) {
1739
+ return value;
1740
+ }
1741
+ return {
1742
+ 'itemTypeId': value['itemTypeId'],
1743
+ 'text': value['text'],
1744
+ };
1745
+ }
1746
+
1747
+ function instanceOfItemTextFillOutput(value) {
1748
+ if (!('data' in value) || value['data'] === undefined)
1749
+ return false;
1750
+ return true;
1751
+ }
1752
+ function ItemTextFillOutputFromJSON(json) {
1753
+ return ItemTextFillOutputFromJSONTyped(json);
1754
+ }
1755
+ function ItemTextFillOutputFromJSONTyped(json, ignoreDiscriminator) {
1756
+ if (json == null) {
1757
+ return json;
1758
+ }
1759
+ return {
1760
+ 'data': ItemTextFillDtoFromJSON(json['data']),
1761
+ };
1762
+ }
1763
+ function ItemTextFillOutputToJSON(json) {
1764
+ return ItemTextFillOutputToJSONTyped(json, false);
1765
+ }
1766
+ function ItemTextFillOutputToJSONTyped(value, ignoreDiscriminator = false) {
1767
+ if (value == null) {
1768
+ return value;
1769
+ }
1770
+ return {
1771
+ 'data': ItemTextFillDtoToJSON(value['data']),
1772
+ };
1773
+ }
1774
+
1597
1775
  function instanceOfMapItemTypeFormSectionORM(value) {
1598
1776
  if (!('formId' in value) || value['formId'] === undefined)
1599
1777
  return false;
@@ -5965,7 +6143,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
5965
6143
  return json;
5966
6144
  }
5967
6145
  return {
5968
- 'data': (json['data'].map(Def227FromJSON)),
6146
+ 'data': (json['data'].map(Def235FromJSON)),
5969
6147
  'pageInfo': PageInfoFromJSON(json['pageInfo']),
5970
6148
  };
5971
6149
  }
@@ -5977,7 +6155,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
5977
6155
  return value;
5978
6156
  }
5979
6157
  return {
5980
- 'data': (value['data'].map(Def227ToJSON)),
6158
+ 'data': (value['data'].map(Def235ToJSON)),
5981
6159
  'pageInfo': PageInfoToJSON(value['pageInfo']),
5982
6160
  };
5983
6161
  }
@@ -6610,46 +6788,7 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
6610
6788
  };
6611
6789
  }
6612
6790
 
6613
- const ReportQueryAxis = {
6614
- Y: 'y',
6615
- Y2: 'y2'
6616
- };
6617
- function instanceOfReportQueryAxis(value) {
6618
- for (const key in ReportQueryAxis) {
6619
- if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
6620
- if (ReportQueryAxis[key] === value) {
6621
- return true;
6622
- }
6623
- }
6624
- }
6625
- return false;
6626
- }
6627
- function ReportQueryAxisFromJSON(json) {
6628
- return ReportQueryAxisFromJSONTyped(json);
6629
- }
6630
- function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
6631
- return json;
6632
- }
6633
- function ReportQueryAxisToJSON(value) {
6634
- return value;
6635
- }
6636
- function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
6637
- return value;
6638
- }
6639
-
6640
- const ReportQueryCatalogFieldTypeEnum = {
6641
- Number: 'number',
6642
- Boolean: 'boolean',
6643
- Category: 'category',
6644
- Text: 'text',
6645
- Date: 'date'
6646
- };
6647
- const ReportQueryCatalogFieldSourcesEnum = {
6648
- Items: 'items',
6649
- Articles: 'articles',
6650
- StateHistory: 'state_history'
6651
- };
6652
- const ReportQueryCatalogFieldMetricOperationsEnum = {
6791
+ const ReportQueryMetricOpEnum = {
6653
6792
  Count: 'count',
6654
6793
  CountDistinct: 'count_distinct',
6655
6794
  Sum: 'sum',
@@ -6657,7 +6796,39 @@ const ReportQueryCatalogFieldMetricOperationsEnum = {
6657
6796
  Min: 'min',
6658
6797
  Max: 'max'
6659
6798
  };
6660
- const ReportQueryCatalogFieldFilterOperatorsEnum = {
6799
+ function instanceOfReportQueryMetric(value) {
6800
+ if (!('op' in value) || value['op'] === undefined)
6801
+ return false;
6802
+ return true;
6803
+ }
6804
+ function ReportQueryMetricFromJSON(json) {
6805
+ return ReportQueryMetricFromJSONTyped(json);
6806
+ }
6807
+ function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
6808
+ if (json == null) {
6809
+ return json;
6810
+ }
6811
+ return {
6812
+ 'op': json['op'],
6813
+ 'field': json['field'] == null ? undefined : json['field'],
6814
+ 'label': json['label'] == null ? undefined : json['label'],
6815
+ };
6816
+ }
6817
+ function ReportQueryMetricToJSON(json) {
6818
+ return ReportQueryMetricToJSONTyped(json, false);
6819
+ }
6820
+ function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
6821
+ if (value == null) {
6822
+ return value;
6823
+ }
6824
+ return {
6825
+ 'op': value['op'],
6826
+ 'field': value['field'],
6827
+ 'label': value['label'],
6828
+ };
6829
+ }
6830
+
6831
+ const ReportQueryFilterOpEnum = {
6661
6832
  Contains: 'contains',
6662
6833
  NotContains: 'not_contains',
6663
6834
  Eq: 'eq',
@@ -6671,329 +6842,349 @@ const ReportQueryCatalogFieldFilterOperatorsEnum = {
6671
6842
  IsEmpty: 'is_empty',
6672
6843
  IsNotEmpty: 'is_not_empty'
6673
6844
  };
6674
- const ReportQueryCatalogFieldBucketsEnum = {
6675
- Day: 'day',
6676
- Week: 'week',
6677
- Month: 'month',
6678
- Quarter: 'quarter',
6679
- Year: 'year'
6680
- };
6681
- const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
6682
- None: 'none',
6683
- TrimCase: 'trim_case',
6684
- Ipp: 'ipp'
6685
- };
6686
- function instanceOfReportQueryCatalogField(value) {
6687
- if (!('id' in value) || value['id'] === undefined)
6688
- return false;
6689
- if (!('label' in value) || value['label'] === undefined)
6690
- return false;
6691
- if (!('type' in value) || value['type'] === undefined)
6692
- return false;
6693
- if (!('group' in value) || value['group'] === undefined)
6694
- return false;
6695
- if (!('sources' in value) || value['sources'] === undefined)
6696
- return false;
6697
- if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
6845
+ function instanceOfReportQueryFilter(value) {
6846
+ if (!('field' in value) || value['field'] === undefined)
6698
6847
  return false;
6699
- if (!('metricOperations' in value) || value['metricOperations'] === undefined)
6848
+ if (!('op' in value) || value['op'] === undefined)
6700
6849
  return false;
6701
- if (!('filterOperators' in value) || value['filterOperators'] === undefined)
6850
+ if (!('values' in value) || value['values'] === undefined)
6702
6851
  return false;
6703
6852
  return true;
6704
6853
  }
6705
- function ReportQueryCatalogFieldFromJSON(json) {
6706
- return ReportQueryCatalogFieldFromJSONTyped(json);
6854
+ function ReportQueryFilterFromJSON(json) {
6855
+ return ReportQueryFilterFromJSONTyped(json);
6707
6856
  }
6708
- function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
6857
+ function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
6709
6858
  if (json == null) {
6710
6859
  return json;
6711
6860
  }
6712
6861
  return {
6713
- 'id': json['id'],
6714
- 'label': json['label'],
6715
- 'type': json['type'],
6716
- 'group': json['group'],
6717
- 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
6718
- 'sources': json['sources'],
6719
- 'canBeDimension': json['canBeDimension'],
6720
- 'metricOperations': json['metricOperations'],
6721
- 'filterOperators': json['filterOperators'],
6722
- 'buckets': json['buckets'] == null ? undefined : json['buckets'],
6723
- 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
6862
+ 'field': json['field'],
6863
+ 'op': json['op'],
6864
+ 'values': json['values'],
6724
6865
  };
6725
6866
  }
6726
- function ReportQueryCatalogFieldToJSON(json) {
6727
- return ReportQueryCatalogFieldToJSONTyped(json, false);
6867
+ function ReportQueryFilterToJSON(json) {
6868
+ return ReportQueryFilterToJSONTyped(json, false);
6728
6869
  }
6729
- function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
6870
+ function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
6730
6871
  if (value == null) {
6731
6872
  return value;
6732
6873
  }
6733
6874
  return {
6734
- 'id': value['id'],
6735
- 'label': value['label'],
6736
- 'type': value['type'],
6737
- 'group': value['group'],
6738
- 'itemTypeId': value['itemTypeId'],
6739
- 'sources': value['sources'],
6740
- 'canBeDimension': value['canBeDimension'],
6741
- 'metricOperations': value['metricOperations'],
6742
- 'filterOperators': value['filterOperators'],
6743
- 'buckets': value['buckets'],
6744
- 'suggestedNormalize': value['suggestedNormalize'],
6875
+ 'field': value['field'],
6876
+ 'op': value['op'],
6877
+ 'values': value['values'],
6745
6878
  };
6746
6879
  }
6747
6880
 
6748
- function instanceOfReportQueryCatalogOutput(value) {
6749
- if (!('data' in value) || value['data'] === undefined)
6881
+ const ReportQueryDimensionBucketEnum = {
6882
+ Day: 'day',
6883
+ Week: 'week',
6884
+ Month: 'month',
6885
+ Quarter: 'quarter',
6886
+ Year: 'year'
6887
+ };
6888
+ const ReportQueryDimensionNormalizeEnum = {
6889
+ None: 'none',
6890
+ TrimCase: 'trim_case',
6891
+ Ipp: 'ipp'
6892
+ };
6893
+ function instanceOfReportQueryDimension(value) {
6894
+ if (!('field' in value) || value['field'] === undefined)
6750
6895
  return false;
6751
6896
  return true;
6752
6897
  }
6753
- function ReportQueryCatalogOutputFromJSON(json) {
6754
- return ReportQueryCatalogOutputFromJSONTyped(json);
6898
+ function ReportQueryDimensionFromJSON(json) {
6899
+ return ReportQueryDimensionFromJSONTyped(json);
6755
6900
  }
6756
- function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
6901
+ function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
6757
6902
  if (json == null) {
6758
6903
  return json;
6759
6904
  }
6760
6905
  return {
6761
- 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
6906
+ 'field': json['field'],
6907
+ 'bucket': json['bucket'] == null ? undefined : json['bucket'],
6908
+ 'normalize': json['normalize'] == null ? undefined : json['normalize'],
6909
+ 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
6762
6910
  };
6763
6911
  }
6764
- function ReportQueryCatalogOutputToJSON(json) {
6765
- return ReportQueryCatalogOutputToJSONTyped(json, false);
6912
+ function ReportQueryDimensionToJSON(json) {
6913
+ return ReportQueryDimensionToJSONTyped(json, false);
6766
6914
  }
6767
- function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
6915
+ function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
6768
6916
  if (value == null) {
6769
6917
  return value;
6770
6918
  }
6771
6919
  return {
6772
- 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
6920
+ 'field': value['field'],
6921
+ 'bucket': value['bucket'],
6922
+ 'normalize': value['normalize'],
6923
+ 'includeEmpty': value['includeEmpty'],
6773
6924
  };
6774
6925
  }
6775
6926
 
6776
- const ReportQueryChart = {
6927
+ const ReportQuerySeriesSourceEnum = {
6928
+ Items: 'items',
6929
+ Articles: 'articles',
6930
+ StateHistory: 'state_history'
6931
+ };
6932
+ const ReportQuerySeriesChartEnum = {
6777
6933
  Bar: 'bar',
6778
- Line: 'line',
6779
- Pie: 'pie',
6780
- StackedBar: 'stacked_bar',
6781
- Table: 'table'
6934
+ Line: 'line'
6782
6935
  };
6783
- function instanceOfReportQueryChart(value) {
6784
- for (const key in ReportQueryChart) {
6785
- if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
6786
- if (ReportQueryChart[key] === value) {
6787
- return true;
6788
- }
6789
- }
6790
- }
6791
- return false;
6792
- }
6793
- function ReportQueryChartFromJSON(json) {
6794
- return ReportQueryChartFromJSONTyped(json);
6795
- }
6796
- function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
6797
- return json;
6798
- }
6799
- function ReportQueryChartToJSON(value) {
6800
- return value;
6801
- }
6802
- function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
6803
- return value;
6804
- }
6805
-
6806
- function instanceOfReportQueryResultRow(value) {
6807
- if (!('keys' in value) || value['keys'] === undefined)
6936
+ const ReportQuerySeriesAxisEnum = {
6937
+ Y: 'y',
6938
+ Y2: 'y2'
6939
+ };
6940
+ function instanceOfReportQuerySeries(value) {
6941
+ if (!('source' in value) || value['source'] === undefined)
6808
6942
  return false;
6809
- if (!('labels' in value) || value['labels'] === undefined)
6943
+ if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
6810
6944
  return false;
6811
- if (!('values' in value) || value['values'] === undefined)
6945
+ if (!('filters' in value) || value['filters'] === undefined)
6946
+ return false;
6947
+ if (!('metric' in value) || value['metric'] === undefined)
6812
6948
  return false;
6813
6949
  return true;
6814
6950
  }
6815
- function ReportQueryResultRowFromJSON(json) {
6816
- return ReportQueryResultRowFromJSONTyped(json);
6951
+ function ReportQuerySeriesFromJSON(json) {
6952
+ return ReportQuerySeriesFromJSONTyped(json);
6817
6953
  }
6818
- function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
6954
+ function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
6819
6955
  if (json == null) {
6820
6956
  return json;
6821
6957
  }
6822
6958
  return {
6823
- 'keys': json['keys'],
6824
- 'labels': json['labels'],
6825
- 'values': json['values'],
6959
+ 'label': json['label'] == null ? undefined : json['label'],
6960
+ 'source': json['source'],
6961
+ 'itemTypeIds': json['itemTypeIds'],
6962
+ 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
6963
+ 'metric': ReportQueryMetricFromJSON(json['metric']),
6964
+ 'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
6965
+ 'chart': json['chart'] == null ? undefined : json['chart'],
6966
+ 'color': json['color'] == null ? undefined : json['color'],
6967
+ 'axis': json['axis'] == null ? undefined : json['axis'],
6826
6968
  };
6827
6969
  }
6828
- function ReportQueryResultRowToJSON(json) {
6829
- return ReportQueryResultRowToJSONTyped(json, false);
6970
+ function ReportQuerySeriesToJSON(json) {
6971
+ return ReportQuerySeriesToJSONTyped(json, false);
6830
6972
  }
6831
- function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
6973
+ function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
6832
6974
  if (value == null) {
6833
6975
  return value;
6834
6976
  }
6835
6977
  return {
6836
- 'keys': value['keys'],
6837
- 'labels': value['labels'],
6838
- 'values': value['values'],
6978
+ 'label': value['label'],
6979
+ 'source': value['source'],
6980
+ 'itemTypeIds': value['itemTypeIds'],
6981
+ 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
6982
+ 'metric': ReportQueryMetricToJSON(value['metric']),
6983
+ 'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
6984
+ 'chart': value['chart'],
6985
+ 'color': value['color'],
6986
+ 'axis': value['axis'],
6839
6987
  };
6840
6988
  }
6841
6989
 
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;
6990
+ const ReportQueryDefinitionSourceEnum = {
6991
+ Items: 'items',
6992
+ Articles: 'articles',
6993
+ StateHistory: 'state_history'
6994
+ };
6995
+ const ReportQueryDefinitionChartEnum = {
6996
+ Bar: 'bar',
6997
+ Line: 'line',
6998
+ Pie: 'pie',
6999
+ StackedBar: 'stacked_bar',
7000
+ Table: 'table'
7001
+ };
7002
+ function instanceOfReportQueryDefinition(value) {
6847
7003
  return true;
6848
7004
  }
6849
- function ReportQueryResultColumnFromJSON(json) {
6850
- return ReportQueryResultColumnFromJSONTyped(json);
7005
+ function ReportQueryDefinitionFromJSON(json) {
7006
+ return ReportQueryDefinitionFromJSONTyped(json);
6851
7007
  }
6852
- function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7008
+ function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
6853
7009
  if (json == null) {
6854
7010
  return json;
6855
7011
  }
6856
7012
  return {
6857
- 'label': json['label'],
6858
- 'kind': json['kind'],
7013
+ 'version': json['version'] == null ? undefined : json['version'],
7014
+ 'source': json['source'] == null ? undefined : json['source'],
7015
+ 'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
7016
+ 'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
7017
+ 'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
7018
+ 'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
7019
+ 'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
7020
+ 'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
7021
+ 'chart': json['chart'] == null ? undefined : json['chart'],
7022
+ 'labelX': json['labelX'] == null ? undefined : json['labelX'],
7023
+ 'labelY': json['labelY'] == null ? undefined : json['labelY'],
7024
+ 'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
6859
7025
  };
6860
7026
  }
6861
- function ReportQueryResultColumnToJSON(json) {
6862
- return ReportQueryResultColumnToJSONTyped(json, false);
7027
+ function ReportQueryDefinitionToJSON(json) {
7028
+ return ReportQueryDefinitionToJSONTyped(json, false);
6863
7029
  }
6864
- function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7030
+ function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
6865
7031
  if (value == null) {
6866
7032
  return value;
6867
7033
  }
6868
7034
  return {
6869
- 'label': value['label'],
6870
- 'kind': value['kind'],
7035
+ 'version': value['version'],
7036
+ 'source': value['source'],
7037
+ 'itemTypeIds': value['itemTypeIds'],
7038
+ 'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
7039
+ 'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
7040
+ 'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
7041
+ 'x': ReportQueryDimensionToJSON(value['x']),
7042
+ 'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
7043
+ 'chart': value['chart'],
7044
+ 'labelX': value['labelX'],
7045
+ 'labelY': value['labelY'],
7046
+ 'labelY2': value['labelY2'],
6871
7047
  };
6872
7048
  }
6873
7049
 
6874
- function instanceOfReportQueryResult(value) {
6875
- if (!('columns' in value) || value['columns'] === undefined)
7050
+ function instanceOfReportQueryAssistantDto(value) {
7051
+ if (!('title' in value) || value['title'] === undefined)
6876
7052
  return false;
6877
- if (!('rows' in value) || value['rows'] === undefined)
7053
+ if (!('explanation' in value) || value['explanation'] === undefined)
7054
+ return false;
7055
+ if (!('definition' in value) || value['definition'] === undefined)
7056
+ return false;
7057
+ if (!('remainingToday' in value) || value['remainingToday'] === undefined)
6878
7058
  return false;
6879
7059
  return true;
6880
7060
  }
6881
- function ReportQueryResultFromJSON(json) {
6882
- return ReportQueryResultFromJSONTyped(json);
7061
+ function ReportQueryAssistantDtoFromJSON(json) {
7062
+ return ReportQueryAssistantDtoFromJSONTyped(json);
6883
7063
  }
6884
- function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7064
+ function ReportQueryAssistantDtoFromJSONTyped(json, ignoreDiscriminator) {
6885
7065
  if (json == null) {
6886
7066
  return json;
6887
7067
  }
6888
7068
  return {
6889
- 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
6890
- 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7069
+ 'title': json['title'],
7070
+ 'explanation': json['explanation'],
7071
+ 'definition': ReportQueryDefinitionFromJSON(json['definition']),
7072
+ 'remainingToday': json['remainingToday'],
6891
7073
  };
6892
7074
  }
6893
- function ReportQueryResultToJSON(json) {
6894
- return ReportQueryResultToJSONTyped(json, false);
7075
+ function ReportQueryAssistantDtoToJSON(json) {
7076
+ return ReportQueryAssistantDtoToJSONTyped(json, false);
6895
7077
  }
6896
- function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7078
+ function ReportQueryAssistantDtoToJSONTyped(value, ignoreDiscriminator = false) {
6897
7079
  if (value == null) {
6898
7080
  return value;
6899
7081
  }
6900
7082
  return {
6901
- 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
6902
- 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7083
+ 'title': value['title'],
7084
+ 'explanation': value['explanation'],
7085
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
7086
+ 'remainingToday': value['remainingToday'],
6903
7087
  };
6904
7088
  }
6905
7089
 
6906
- function instanceOfReportQueryDataDto(value) {
6907
- if (!('table' in value) || value['table'] === undefined)
6908
- return false;
6909
- if (!('chart' in value) || value['chart'] === undefined)
7090
+ function instanceOfReportQueryAssistantInput(value) {
7091
+ if (!('prompt' in value) || value['prompt'] === undefined)
6910
7092
  return false;
6911
7093
  return true;
6912
7094
  }
6913
- function ReportQueryDataDtoFromJSON(json) {
6914
- return ReportQueryDataDtoFromJSONTyped(json);
7095
+ function ReportQueryAssistantInputFromJSON(json) {
7096
+ return ReportQueryAssistantInputFromJSONTyped(json);
6915
7097
  }
6916
- function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7098
+ function ReportQueryAssistantInputFromJSONTyped(json, ignoreDiscriminator) {
6917
7099
  if (json == null) {
6918
7100
  return json;
6919
7101
  }
6920
7102
  return {
6921
- 'table': ReportQueryResultFromJSON(json['table']),
6922
- 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7103
+ 'prompt': json['prompt'],
7104
+ 'definition': json['definition'] == null ? undefined : ReportQueryDefinitionFromJSON(json['definition']),
6923
7105
  };
6924
7106
  }
6925
- function ReportQueryDataDtoToJSON(json) {
6926
- return ReportQueryDataDtoToJSONTyped(json, false);
7107
+ function ReportQueryAssistantInputToJSON(json) {
7108
+ return ReportQueryAssistantInputToJSONTyped(json, false);
6927
7109
  }
6928
- function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7110
+ function ReportQueryAssistantInputToJSONTyped(value, ignoreDiscriminator = false) {
6929
7111
  if (value == null) {
6930
7112
  return value;
6931
7113
  }
6932
7114
  return {
6933
- 'table': ReportQueryResultToJSON(value['table']),
6934
- 'chart': ReportDataJSONDtoToJSON(value['chart']),
7115
+ 'prompt': value['prompt'],
7116
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
6935
7117
  };
6936
7118
  }
6937
7119
 
6938
- function instanceOfReportQueryDataOutput(value) {
7120
+ function instanceOfReportQueryAssistantOutput(value) {
6939
7121
  if (!('data' in value) || value['data'] === undefined)
6940
7122
  return false;
6941
7123
  return true;
6942
7124
  }
6943
- function ReportQueryDataOutputFromJSON(json) {
6944
- return ReportQueryDataOutputFromJSONTyped(json);
7125
+ function ReportQueryAssistantOutputFromJSON(json) {
7126
+ return ReportQueryAssistantOutputFromJSONTyped(json);
6945
7127
  }
6946
- function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7128
+ function ReportQueryAssistantOutputFromJSONTyped(json, ignoreDiscriminator) {
6947
7129
  if (json == null) {
6948
7130
  return json;
6949
7131
  }
6950
7132
  return {
6951
- 'data': ReportQueryDataDtoFromJSON(json['data']),
7133
+ 'data': ReportQueryAssistantDtoFromJSON(json['data']),
6952
7134
  };
6953
7135
  }
6954
- function ReportQueryDataOutputToJSON(json) {
6955
- return ReportQueryDataOutputToJSONTyped(json, false);
7136
+ function ReportQueryAssistantOutputToJSON(json) {
7137
+ return ReportQueryAssistantOutputToJSONTyped(json, false);
6956
7138
  }
6957
- function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7139
+ function ReportQueryAssistantOutputToJSONTyped(value, ignoreDiscriminator = false) {
6958
7140
  if (value == null) {
6959
7141
  return value;
6960
7142
  }
6961
7143
  return {
6962
- 'data': ReportQueryDataDtoToJSON(value['data']),
7144
+ 'data': ReportQueryAssistantDtoToJSON(value['data']),
6963
7145
  };
6964
7146
  }
6965
7147
 
6966
- const ReportQueryDateBucket = {
6967
- Day: 'day',
6968
- Week: 'week',
6969
- Month: 'month',
6970
- Quarter: 'quarter',
6971
- Year: 'year'
7148
+ const ReportQueryAxis = {
7149
+ Y: 'y',
7150
+ Y2: 'y2'
6972
7151
  };
6973
- function instanceOfReportQueryDateBucket(value) {
6974
- for (const key in ReportQueryDateBucket) {
6975
- if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
6976
- if (ReportQueryDateBucket[key] === value) {
7152
+ function instanceOfReportQueryAxis(value) {
7153
+ for (const key in ReportQueryAxis) {
7154
+ if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
7155
+ if (ReportQueryAxis[key] === value) {
6977
7156
  return true;
6978
7157
  }
6979
7158
  }
6980
7159
  }
6981
7160
  return false;
6982
7161
  }
6983
- function ReportQueryDateBucketFromJSON(json) {
6984
- return ReportQueryDateBucketFromJSONTyped(json);
7162
+ function ReportQueryAxisFromJSON(json) {
7163
+ return ReportQueryAxisFromJSONTyped(json);
6985
7164
  }
6986
- function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7165
+ function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
6987
7166
  return json;
6988
7167
  }
6989
- function ReportQueryDateBucketToJSON(value) {
7168
+ function ReportQueryAxisToJSON(value) {
6990
7169
  return value;
6991
7170
  }
6992
- function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7171
+ function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
6993
7172
  return value;
6994
7173
  }
6995
7174
 
6996
- const ReportQueryMetricOpEnum = {
7175
+ const ReportQueryCatalogFieldTypeEnum = {
7176
+ Number: 'number',
7177
+ Boolean: 'boolean',
7178
+ Category: 'category',
7179
+ Text: 'text',
7180
+ Date: 'date'
7181
+ };
7182
+ const ReportQueryCatalogFieldSourcesEnum = {
7183
+ Items: 'items',
7184
+ Articles: 'articles',
7185
+ StateHistory: 'state_history'
7186
+ };
7187
+ const ReportQueryCatalogFieldMetricOperationsEnum = {
6997
7188
  Count: 'count',
6998
7189
  CountDistinct: 'count_distinct',
6999
7190
  Sum: 'sum',
@@ -7001,257 +7192,342 @@ const ReportQueryMetricOpEnum = {
7001
7192
  Min: 'min',
7002
7193
  Max: 'max'
7003
7194
  };
7004
- function instanceOfReportQueryMetric(value) {
7005
- if (!('op' in value) || value['op'] === undefined)
7195
+ const ReportQueryCatalogFieldFilterOperatorsEnum = {
7196
+ Contains: 'contains',
7197
+ NotContains: 'not_contains',
7198
+ Eq: 'eq',
7199
+ Neq: 'neq',
7200
+ In: 'in',
7201
+ NotIn: 'not_in',
7202
+ Gt: 'gt',
7203
+ Gte: 'gte',
7204
+ Lt: 'lt',
7205
+ Lte: 'lte',
7206
+ IsEmpty: 'is_empty',
7207
+ IsNotEmpty: 'is_not_empty'
7208
+ };
7209
+ const ReportQueryCatalogFieldBucketsEnum = {
7210
+ Day: 'day',
7211
+ Week: 'week',
7212
+ Month: 'month',
7213
+ Quarter: 'quarter',
7214
+ Year: 'year'
7215
+ };
7216
+ const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
7217
+ None: 'none',
7218
+ TrimCase: 'trim_case',
7219
+ Ipp: 'ipp'
7220
+ };
7221
+ function instanceOfReportQueryCatalogField(value) {
7222
+ if (!('id' in value) || value['id'] === undefined)
7223
+ return false;
7224
+ if (!('label' in value) || value['label'] === undefined)
7225
+ return false;
7226
+ if (!('type' in value) || value['type'] === undefined)
7227
+ return false;
7228
+ if (!('group' in value) || value['group'] === undefined)
7229
+ return false;
7230
+ if (!('sources' in value) || value['sources'] === undefined)
7231
+ return false;
7232
+ if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
7233
+ return false;
7234
+ if (!('metricOperations' in value) || value['metricOperations'] === undefined)
7235
+ return false;
7236
+ if (!('filterOperators' in value) || value['filterOperators'] === undefined)
7006
7237
  return false;
7007
7238
  return true;
7008
7239
  }
7009
- function ReportQueryMetricFromJSON(json) {
7010
- return ReportQueryMetricFromJSONTyped(json);
7240
+ function ReportQueryCatalogFieldFromJSON(json) {
7241
+ return ReportQueryCatalogFieldFromJSONTyped(json);
7011
7242
  }
7012
- function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
7243
+ function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
7013
7244
  if (json == null) {
7014
7245
  return json;
7015
7246
  }
7016
7247
  return {
7017
- 'op': json['op'],
7018
- 'field': json['field'] == null ? undefined : json['field'],
7019
- 'label': json['label'] == null ? undefined : json['label'],
7248
+ 'id': json['id'],
7249
+ 'label': json['label'],
7250
+ 'type': json['type'],
7251
+ 'group': json['group'],
7252
+ 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
7253
+ 'sources': json['sources'],
7254
+ 'canBeDimension': json['canBeDimension'],
7255
+ 'metricOperations': json['metricOperations'],
7256
+ 'filterOperators': json['filterOperators'],
7257
+ 'buckets': json['buckets'] == null ? undefined : json['buckets'],
7258
+ 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
7020
7259
  };
7021
7260
  }
7022
- function ReportQueryMetricToJSON(json) {
7023
- return ReportQueryMetricToJSONTyped(json, false);
7261
+ function ReportQueryCatalogFieldToJSON(json) {
7262
+ return ReportQueryCatalogFieldToJSONTyped(json, false);
7024
7263
  }
7025
- function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
7264
+ function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
7026
7265
  if (value == null) {
7027
7266
  return value;
7028
7267
  }
7029
7268
  return {
7030
- 'op': value['op'],
7031
- 'field': value['field'],
7269
+ 'id': value['id'],
7032
7270
  'label': value['label'],
7271
+ 'type': value['type'],
7272
+ 'group': value['group'],
7273
+ 'itemTypeId': value['itemTypeId'],
7274
+ 'sources': value['sources'],
7275
+ 'canBeDimension': value['canBeDimension'],
7276
+ 'metricOperations': value['metricOperations'],
7277
+ 'filterOperators': value['filterOperators'],
7278
+ 'buckets': value['buckets'],
7279
+ 'suggestedNormalize': value['suggestedNormalize'],
7033
7280
  };
7034
7281
  }
7035
7282
 
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'
7283
+ function instanceOfReportQueryCatalogOutput(value) {
7284
+ if (!('data' in value) || value['data'] === undefined)
7285
+ return false;
7286
+ return true;
7287
+ }
7288
+ function ReportQueryCatalogOutputFromJSON(json) {
7289
+ return ReportQueryCatalogOutputFromJSONTyped(json);
7290
+ }
7291
+ function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
7292
+ if (json == null) {
7293
+ return json;
7294
+ }
7295
+ return {
7296
+ 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
7297
+ };
7298
+ }
7299
+ function ReportQueryCatalogOutputToJSON(json) {
7300
+ return ReportQueryCatalogOutputToJSONTyped(json, false);
7301
+ }
7302
+ function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
7303
+ if (value == null) {
7304
+ return value;
7305
+ }
7306
+ return {
7307
+ 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
7308
+ };
7309
+ }
7310
+
7311
+ const ReportQueryChart = {
7312
+ Bar: 'bar',
7313
+ Line: 'line',
7314
+ Pie: 'pie',
7315
+ StackedBar: 'stacked_bar',
7316
+ Table: 'table'
7049
7317
  };
7050
- function instanceOfReportQueryFilter(value) {
7051
- if (!('field' in value) || value['field'] === undefined)
7318
+ function instanceOfReportQueryChart(value) {
7319
+ for (const key in ReportQueryChart) {
7320
+ if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
7321
+ if (ReportQueryChart[key] === value) {
7322
+ return true;
7323
+ }
7324
+ }
7325
+ }
7326
+ return false;
7327
+ }
7328
+ function ReportQueryChartFromJSON(json) {
7329
+ return ReportQueryChartFromJSONTyped(json);
7330
+ }
7331
+ function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
7332
+ return json;
7333
+ }
7334
+ function ReportQueryChartToJSON(value) {
7335
+ return value;
7336
+ }
7337
+ function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
7338
+ return value;
7339
+ }
7340
+
7341
+ function instanceOfReportQueryResultRow(value) {
7342
+ if (!('keys' in value) || value['keys'] === undefined)
7052
7343
  return false;
7053
- if (!('op' in value) || value['op'] === undefined)
7344
+ if (!('labels' in value) || value['labels'] === undefined)
7345
+ return false;
7346
+ if (!('values' in value) || value['values'] === undefined)
7347
+ return false;
7348
+ return true;
7349
+ }
7350
+ function ReportQueryResultRowFromJSON(json) {
7351
+ return ReportQueryResultRowFromJSONTyped(json);
7352
+ }
7353
+ function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
7354
+ if (json == null) {
7355
+ return json;
7356
+ }
7357
+ return {
7358
+ 'keys': json['keys'],
7359
+ 'labels': json['labels'],
7360
+ 'values': json['values'],
7361
+ };
7362
+ }
7363
+ function ReportQueryResultRowToJSON(json) {
7364
+ return ReportQueryResultRowToJSONTyped(json, false);
7365
+ }
7366
+ function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
7367
+ if (value == null) {
7368
+ return value;
7369
+ }
7370
+ return {
7371
+ 'keys': value['keys'],
7372
+ 'labels': value['labels'],
7373
+ 'values': value['values'],
7374
+ };
7375
+ }
7376
+
7377
+ function instanceOfReportQueryResultColumn(value) {
7378
+ if (!('label' in value) || value['label'] === undefined)
7054
7379
  return false;
7055
- if (!('values' in value) || value['values'] === undefined)
7380
+ if (!('kind' in value) || value['kind'] === undefined)
7056
7381
  return false;
7057
7382
  return true;
7058
7383
  }
7059
- function ReportQueryFilterFromJSON(json) {
7060
- return ReportQueryFilterFromJSONTyped(json);
7384
+ function ReportQueryResultColumnFromJSON(json) {
7385
+ return ReportQueryResultColumnFromJSONTyped(json);
7061
7386
  }
7062
- function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
7387
+ function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7063
7388
  if (json == null) {
7064
7389
  return json;
7065
7390
  }
7066
7391
  return {
7067
- 'field': json['field'],
7068
- 'op': json['op'],
7069
- 'values': json['values'],
7392
+ 'label': json['label'],
7393
+ 'kind': json['kind'],
7070
7394
  };
7071
7395
  }
7072
- function ReportQueryFilterToJSON(json) {
7073
- return ReportQueryFilterToJSONTyped(json, false);
7396
+ function ReportQueryResultColumnToJSON(json) {
7397
+ return ReportQueryResultColumnToJSONTyped(json, false);
7074
7398
  }
7075
- function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
7399
+ function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7076
7400
  if (value == null) {
7077
7401
  return value;
7078
7402
  }
7079
7403
  return {
7080
- 'field': value['field'],
7081
- 'op': value['op'],
7082
- 'values': value['values'],
7404
+ 'label': value['label'],
7405
+ 'kind': value['kind'],
7083
7406
  };
7084
7407
  }
7085
7408
 
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)
7409
+ function instanceOfReportQueryResult(value) {
7410
+ if (!('columns' in value) || value['columns'] === undefined)
7411
+ return false;
7412
+ if (!('rows' in value) || value['rows'] === undefined)
7100
7413
  return false;
7101
7414
  return true;
7102
7415
  }
7103
- function ReportQueryDimensionFromJSON(json) {
7104
- return ReportQueryDimensionFromJSONTyped(json);
7416
+ function ReportQueryResultFromJSON(json) {
7417
+ return ReportQueryResultFromJSONTyped(json);
7105
7418
  }
7106
- function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
7419
+ function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7107
7420
  if (json == null) {
7108
7421
  return json;
7109
7422
  }
7110
7423
  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'],
7424
+ 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
7425
+ 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7115
7426
  };
7116
7427
  }
7117
- function ReportQueryDimensionToJSON(json) {
7118
- return ReportQueryDimensionToJSONTyped(json, false);
7428
+ function ReportQueryResultToJSON(json) {
7429
+ return ReportQueryResultToJSONTyped(json, false);
7119
7430
  }
7120
- function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
7431
+ function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7121
7432
  if (value == null) {
7122
7433
  return value;
7123
7434
  }
7124
7435
  return {
7125
- 'field': value['field'],
7126
- 'bucket': value['bucket'],
7127
- 'normalize': value['normalize'],
7128
- 'includeEmpty': value['includeEmpty'],
7436
+ 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
7437
+ 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7129
7438
  };
7130
7439
  }
7131
7440
 
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)
7441
+ function instanceOfReportQueryDataDto(value) {
7442
+ if (!('table' in value) || value['table'] === undefined)
7151
7443
  return false;
7152
- if (!('metric' in value) || value['metric'] === undefined)
7444
+ if (!('chart' in value) || value['chart'] === undefined)
7153
7445
  return false;
7154
7446
  return true;
7155
7447
  }
7156
- function ReportQuerySeriesFromJSON(json) {
7157
- return ReportQuerySeriesFromJSONTyped(json);
7448
+ function ReportQueryDataDtoFromJSON(json) {
7449
+ return ReportQueryDataDtoFromJSONTyped(json);
7158
7450
  }
7159
- function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
7451
+ function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7160
7452
  if (json == null) {
7161
7453
  return json;
7162
7454
  }
7163
7455
  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'],
7456
+ 'table': ReportQueryResultFromJSON(json['table']),
7457
+ 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7173
7458
  };
7174
7459
  }
7175
- function ReportQuerySeriesToJSON(json) {
7176
- return ReportQuerySeriesToJSONTyped(json, false);
7460
+ function ReportQueryDataDtoToJSON(json) {
7461
+ return ReportQueryDataDtoToJSONTyped(json, false);
7177
7462
  }
7178
- function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
7463
+ function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7179
7464
  if (value == null) {
7180
7465
  return value;
7181
7466
  }
7182
7467
  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'],
7468
+ 'table': ReportQueryResultToJSON(value['table']),
7469
+ 'chart': ReportDataJSONDtoToJSON(value['chart']),
7192
7470
  };
7193
7471
  }
7194
7472
 
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) {
7473
+ function instanceOfReportQueryDataOutput(value) {
7474
+ if (!('data' in value) || value['data'] === undefined)
7475
+ return false;
7208
7476
  return true;
7209
7477
  }
7210
- function ReportQueryDefinitionFromJSON(json) {
7211
- return ReportQueryDefinitionFromJSONTyped(json);
7478
+ function ReportQueryDataOutputFromJSON(json) {
7479
+ return ReportQueryDataOutputFromJSONTyped(json);
7212
7480
  }
7213
- function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
7481
+ function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7214
7482
  if (json == null) {
7215
7483
  return json;
7216
7484
  }
7217
7485
  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'],
7486
+ 'data': ReportQueryDataDtoFromJSON(json['data']),
7230
7487
  };
7231
7488
  }
7232
- function ReportQueryDefinitionToJSON(json) {
7233
- return ReportQueryDefinitionToJSONTyped(json, false);
7489
+ function ReportQueryDataOutputToJSON(json) {
7490
+ return ReportQueryDataOutputToJSONTyped(json, false);
7234
7491
  }
7235
- function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
7492
+ function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7236
7493
  if (value == null) {
7237
7494
  return value;
7238
7495
  }
7239
7496
  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'],
7497
+ 'data': ReportQueryDataDtoToJSON(value['data']),
7252
7498
  };
7253
7499
  }
7254
7500
 
7501
+ const ReportQueryDateBucket = {
7502
+ Day: 'day',
7503
+ Week: 'week',
7504
+ Month: 'month',
7505
+ Quarter: 'quarter',
7506
+ Year: 'year'
7507
+ };
7508
+ function instanceOfReportQueryDateBucket(value) {
7509
+ for (const key in ReportQueryDateBucket) {
7510
+ if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
7511
+ if (ReportQueryDateBucket[key] === value) {
7512
+ return true;
7513
+ }
7514
+ }
7515
+ }
7516
+ return false;
7517
+ }
7518
+ function ReportQueryDateBucketFromJSON(json) {
7519
+ return ReportQueryDateBucketFromJSONTyped(json);
7520
+ }
7521
+ function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7522
+ return json;
7523
+ }
7524
+ function ReportQueryDateBucketToJSON(value) {
7525
+ return value;
7526
+ }
7527
+ function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7528
+ return value;
7529
+ }
7530
+
7255
7531
  function instanceOfReportQueryDto(value) {
7256
7532
  if (!('id' in value) || value['id'] === undefined)
7257
7533
  return false;
@@ -9108,6 +9384,29 @@ class ItemApi extends BaseAPI {
9108
9384
  const response = await this.apiV1ItemWithinGetRaw(requestParameters, initOverrides);
9109
9385
  return await response.value();
9110
9386
  }
9387
+ async apiV2ItemFillFromTextPostRaw(requestParameters, initOverrides) {
9388
+ if (requestParameters['itemTextFillInput'] == null) {
9389
+ throw new RequiredError('itemTextFillInput', 'Required parameter "itemTextFillInput" was null or undefined when calling apiV2ItemFillFromTextPost().');
9390
+ }
9391
+ const queryParameters = {};
9392
+ const headerParameters = {};
9393
+ headerParameters['Content-Type'] = 'application/json';
9394
+ if (this.configuration && this.configuration.apiKey) {
9395
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
9396
+ }
9397
+ const response = await this.request({
9398
+ path: `/api/v2/item/fill-from-text`,
9399
+ method: 'POST',
9400
+ headers: headerParameters,
9401
+ query: queryParameters,
9402
+ body: ItemTextFillInputToJSON(requestParameters['itemTextFillInput']),
9403
+ }, initOverrides);
9404
+ return new JSONApiResponse(response, (jsonValue) => ItemTextFillOutputFromJSON(jsonValue));
9405
+ }
9406
+ async apiV2ItemFillFromTextPost(requestParameters, initOverrides) {
9407
+ const response = await this.apiV2ItemFillFromTextPostRaw(requestParameters, initOverrides);
9408
+ return await response.value();
9409
+ }
9111
9410
  async apiV2ItemPostRaw(requestParameters, initOverrides) {
9112
9411
  if (requestParameters['mapItemWithPointsInput'] == null) {
9113
9412
  throw new RequiredError('mapItemWithPointsInput', 'Required parameter "mapItemWithPointsInput" was null or undefined when calling apiV2ItemPost().');
@@ -11122,6 +11421,29 @@ class ReportApi extends BaseAPI {
11122
11421
  const response = await this.apiV1ReportReportIdGetRaw(requestParameters, initOverrides);
11123
11422
  return await response.value();
11124
11423
  }
11424
+ async apiV2ReportAssistantPostRaw(requestParameters, initOverrides) {
11425
+ if (requestParameters['reportQueryAssistantInput'] == null) {
11426
+ throw new RequiredError('reportQueryAssistantInput', 'Required parameter "reportQueryAssistantInput" was null or undefined when calling apiV2ReportAssistantPost().');
11427
+ }
11428
+ const queryParameters = {};
11429
+ const headerParameters = {};
11430
+ headerParameters['Content-Type'] = 'application/json';
11431
+ if (this.configuration && this.configuration.apiKey) {
11432
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
11433
+ }
11434
+ const response = await this.request({
11435
+ path: `/api/v2/report/assistant`,
11436
+ method: 'POST',
11437
+ headers: headerParameters,
11438
+ query: queryParameters,
11439
+ body: ReportQueryAssistantInputToJSON(requestParameters['reportQueryAssistantInput']),
11440
+ }, initOverrides);
11441
+ return new JSONApiResponse(response, (jsonValue) => ReportQueryAssistantOutputFromJSON(jsonValue));
11442
+ }
11443
+ async apiV2ReportAssistantPost(requestParameters, initOverrides) {
11444
+ const response = await this.apiV2ReportAssistantPostRaw(requestParameters, initOverrides);
11445
+ return await response.value();
11446
+ }
11125
11447
  async apiV2ReportCatalogGetRaw(initOverrides) {
11126
11448
  const queryParameters = {};
11127
11449
  const headerParameters = {};
@@ -11550,5 +11872,5 @@ class StateMachineApi extends BaseAPI {
11550
11872
  }
11551
11873
  }
11552
11874
 
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 };
11875
+ 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, Def235FromJSON, Def235FromJSONTyped, Def235ToJSON, Def235ToJSONTyped, 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, ItemTextFillArticleFromJSON, ItemTextFillArticleFromJSONTyped, ItemTextFillArticleToJSON, ItemTextFillArticleToJSONTyped, ItemTextFillDtoFromJSON, ItemTextFillDtoFromJSONTyped, ItemTextFillDtoToJSON, ItemTextFillDtoToJSONTyped, ItemTextFillInputFromJSON, ItemTextFillInputFromJSONTyped, ItemTextFillInputToJSON, ItemTextFillInputToJSONTyped, ItemTextFillOutputFromJSON, ItemTextFillOutputFromJSONTyped, ItemTextFillOutputToJSON, ItemTextFillOutputToJSONTyped, ItemTextFillValueFromJSON, ItemTextFillValueFromJSONTyped, ItemTextFillValueToJSON, ItemTextFillValueToJSONTyped, 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, instanceOfDef235, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTextFillArticle, instanceOfItemTextFillDto, instanceOfItemTextFillInput, instanceOfItemTextFillOutput, instanceOfItemTextFillValue, 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
11876
  //# sourceMappingURL=index.mjs.map