@jrojaspin/security-map-api-cli 6.0.0 → 6.2.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 (57) hide show
  1. package/dist/apis/ItemTypeApi.d.ts +12 -1
  2. package/dist/apis/ItemTypeApi.js +46 -1
  3. package/dist/apis/ItemTypeApi.js.map +1 -1
  4. package/dist/apis/MapApi.d.ts +14 -0
  5. package/dist/apis/MapApi.js +64 -0
  6. package/dist/apis/MapApi.js.map +1 -1
  7. package/dist/apis/MultimediaApi.d.ts +9 -4
  8. package/dist/apis/MultimediaApi.js +45 -7
  9. package/dist/apis/MultimediaApi.js.map +1 -1
  10. package/dist/index.d.ts +141 -66
  11. package/dist/index.mjs +477 -186
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/models/CalculateTourInput.d.ts +11 -0
  14. package/dist/models/CalculateTourInput.js +37 -0
  15. package/dist/models/CalculateTourInput.js.map +1 -0
  16. package/dist/models/CalculateTourOutput.d.ts +9 -0
  17. package/dist/models/CalculateTourOutput.js +29 -0
  18. package/dist/models/CalculateTourOutput.js.map +1 -0
  19. package/dist/models/Def155.d.ts +8 -0
  20. package/dist/models/Def155.js +16 -0
  21. package/dist/models/Def155.js.map +1 -0
  22. package/dist/models/Def157.d.ts +8 -0
  23. package/dist/models/Def157.js +16 -0
  24. package/dist/models/Def157.js.map +1 -0
  25. package/dist/models/ItemTypeInitialValueInputDto.d.ts +8 -0
  26. package/dist/models/ItemTypeInitialValueInputDto.js +28 -0
  27. package/dist/models/ItemTypeInitialValueInputDto.js.map +1 -0
  28. package/dist/models/ItemTypeInitialValueOutput.d.ts +9 -0
  29. package/dist/models/ItemTypeInitialValueOutput.js +29 -0
  30. package/dist/models/ItemTypeInitialValueOutput.js.map +1 -0
  31. package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.d.ts +2 -1
  32. package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.js +3 -2
  33. package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.js.map +1 -1
  34. package/dist/models/MapItemTypeInitialValueORM.d.ts +10 -0
  35. package/dist/models/MapItemTypeInitialValueORM.js +34 -0
  36. package/dist/models/MapItemTypeInitialValueORM.js.map +1 -0
  37. package/dist/models/MapItemTypeORM.d.ts +2 -0
  38. package/dist/models/MapItemTypeORM.js +8 -0
  39. package/dist/models/MapItemTypeORM.js.map +1 -1
  40. package/dist/models/MapLayerContourCoordORM.d.ts +1 -0
  41. package/dist/models/MapLayerContourCoordORM.js +4 -0
  42. package/dist/models/MapLayerContourCoordORM.js.map +1 -1
  43. package/dist/models/MapLayerInput.d.ts +2 -0
  44. package/dist/models/MapLayerInput.js +5 -0
  45. package/dist/models/MapLayerInput.js.map +1 -1
  46. package/dist/models/MapLayerOutputDto.d.ts +1 -0
  47. package/dist/models/MapLayerOutputDto.js +2 -0
  48. package/dist/models/MapLayerOutputDto.js.map +1 -1
  49. package/dist/models/MultipleMultimediaOutput.d.ts +9 -0
  50. package/dist/models/MultipleMultimediaOutput.js +29 -0
  51. package/dist/models/MultipleMultimediaOutput.js.map +1 -0
  52. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  53. package/dist/models/ReportAllItemsListOutput.js +3 -3
  54. package/dist/models/index.d.ts +7 -3
  55. package/dist/models/index.js +7 -3
  56. package/dist/models/index.js.map +1 -1
  57. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -743,6 +743,102 @@ function AxisTitleToJSONTyped(value, ignoreDiscriminator = false) {
743
743
  };
744
744
  }
745
745
 
746
+ function instanceOfCoordDto(value) {
747
+ if (!('lat' in value) || value['lat'] === undefined)
748
+ return false;
749
+ if (!('lon' in value) || value['lon'] === undefined)
750
+ return false;
751
+ return true;
752
+ }
753
+ function CoordDtoFromJSON(json) {
754
+ return CoordDtoFromJSONTyped(json);
755
+ }
756
+ function CoordDtoFromJSONTyped(json, ignoreDiscriminator) {
757
+ if (json == null) {
758
+ return json;
759
+ }
760
+ return {
761
+ 'lat': json['lat'],
762
+ 'lon': json['lon'],
763
+ };
764
+ }
765
+ function CoordDtoToJSON(json) {
766
+ return CoordDtoToJSONTyped(json, false);
767
+ }
768
+ function CoordDtoToJSONTyped(value, ignoreDiscriminator = false) {
769
+ if (value == null) {
770
+ return value;
771
+ }
772
+ return {
773
+ 'lat': value['lat'],
774
+ 'lon': value['lon'],
775
+ };
776
+ }
777
+
778
+ function instanceOfCalculateTourInput(value) {
779
+ if (!('origin' in value) || value['origin'] === undefined)
780
+ return false;
781
+ if (!('destination' in value) || value['destination'] === undefined)
782
+ return false;
783
+ if (!('waypoints' in value) || value['waypoints'] === undefined)
784
+ return false;
785
+ return true;
786
+ }
787
+ function CalculateTourInputFromJSON(json) {
788
+ return CalculateTourInputFromJSONTyped(json);
789
+ }
790
+ function CalculateTourInputFromJSONTyped(json, ignoreDiscriminator) {
791
+ if (json == null) {
792
+ return json;
793
+ }
794
+ return {
795
+ 'origin': CoordDtoFromJSON(json['origin']),
796
+ 'destination': CoordDtoFromJSON(json['destination']),
797
+ 'waypoints': (json['waypoints'].map(CoordDtoFromJSON)),
798
+ };
799
+ }
800
+ function CalculateTourInputToJSON(json) {
801
+ return CalculateTourInputToJSONTyped(json, false);
802
+ }
803
+ function CalculateTourInputToJSONTyped(value, ignoreDiscriminator = false) {
804
+ if (value == null) {
805
+ return value;
806
+ }
807
+ return {
808
+ 'origin': CoordDtoToJSON(value['origin']),
809
+ 'destination': CoordDtoToJSON(value['destination']),
810
+ 'waypoints': (value['waypoints'].map(CoordDtoToJSON)),
811
+ };
812
+ }
813
+
814
+ function instanceOfCalculateTourOutput(value) {
815
+ if (!('data' in value) || value['data'] === undefined)
816
+ return false;
817
+ return true;
818
+ }
819
+ function CalculateTourOutputFromJSON(json) {
820
+ return CalculateTourOutputFromJSONTyped(json);
821
+ }
822
+ function CalculateTourOutputFromJSONTyped(json, ignoreDiscriminator) {
823
+ if (json == null) {
824
+ return json;
825
+ }
826
+ return {
827
+ 'data': (json['data'].map(CoordDtoFromJSON)),
828
+ };
829
+ }
830
+ function CalculateTourOutputToJSON(json) {
831
+ return CalculateTourOutputToJSONTyped(json, false);
832
+ }
833
+ function CalculateTourOutputToJSONTyped(value, ignoreDiscriminator = false) {
834
+ if (value == null) {
835
+ return value;
836
+ }
837
+ return {
838
+ 'data': (value['data'].map(CoordDtoToJSON)),
839
+ };
840
+ }
841
+
746
842
  function instanceOfDataPoint(value) {
747
843
  if (!('x' in value) || value['x'] === undefined)
748
844
  return false;
@@ -1115,51 +1211,19 @@ function ChartConfigurationToJSONTyped(value, ignoreDiscriminator = false) {
1115
1211
  };
1116
1212
  }
1117
1213
 
1118
- function instanceOfCoordDto(value) {
1119
- if (!('lat' in value) || value['lat'] === undefined)
1120
- return false;
1121
- if (!('lon' in value) || value['lon'] === undefined)
1122
- return false;
1123
- return true;
1124
- }
1125
- function CoordDtoFromJSON(json) {
1126
- return CoordDtoFromJSONTyped(json);
1127
- }
1128
- function CoordDtoFromJSONTyped(json, ignoreDiscriminator) {
1129
- if (json == null) {
1130
- return json;
1131
- }
1132
- return {
1133
- 'lat': json['lat'],
1134
- 'lon': json['lon'],
1135
- };
1136
- }
1137
- function CoordDtoToJSON(json) {
1138
- return CoordDtoToJSONTyped(json, false);
1139
- }
1140
- function CoordDtoToJSONTyped(value, ignoreDiscriminator = false) {
1141
- if (value == null) {
1142
- return value;
1143
- }
1144
- return {
1145
- 'lat': value['lat'],
1146
- 'lon': value['lon'],
1147
- };
1148
- }
1149
-
1150
- function instanceOfDef153(value) {
1214
+ function instanceOfDef157(value) {
1151
1215
  return true;
1152
1216
  }
1153
- function Def153FromJSON(json) {
1154
- return Def153FromJSONTyped(json);
1217
+ function Def157FromJSON(json) {
1218
+ return Def157FromJSONTyped(json);
1155
1219
  }
1156
- function Def153FromJSONTyped(json, ignoreDiscriminator) {
1220
+ function Def157FromJSONTyped(json, ignoreDiscriminator) {
1157
1221
  return json;
1158
1222
  }
1159
- function Def153ToJSON(json) {
1160
- return Def153ToJSONTyped(json, false);
1223
+ function Def157ToJSON(json) {
1224
+ return Def157ToJSONTyped(json, false);
1161
1225
  }
1162
- function Def153ToJSONTyped(value, ignoreDiscriminator = false) {
1226
+ function Def157ToJSONTyped(value, ignoreDiscriminator = false) {
1163
1227
  return value;
1164
1228
  }
1165
1229
 
@@ -1677,6 +1741,96 @@ function ItemTypeFormOutputToJSONTyped(value, ignoreDiscriminator = false) {
1677
1741
  };
1678
1742
  }
1679
1743
 
1744
+ function instanceOfItemTypeInitialValueInputDto(value) {
1745
+ if (!('value' in value) || value['value'] === undefined)
1746
+ return false;
1747
+ return true;
1748
+ }
1749
+ function ItemTypeInitialValueInputDtoFromJSON(json) {
1750
+ return ItemTypeInitialValueInputDtoFromJSONTyped(json);
1751
+ }
1752
+ function ItemTypeInitialValueInputDtoFromJSONTyped(json, ignoreDiscriminator) {
1753
+ if (json == null) {
1754
+ return json;
1755
+ }
1756
+ return {
1757
+ 'value': json['value'],
1758
+ };
1759
+ }
1760
+ function ItemTypeInitialValueInputDtoToJSON(json) {
1761
+ return ItemTypeInitialValueInputDtoToJSONTyped(json, false);
1762
+ }
1763
+ function ItemTypeInitialValueInputDtoToJSONTyped(value, ignoreDiscriminator = false) {
1764
+ if (value == null) {
1765
+ return value;
1766
+ }
1767
+ return {
1768
+ 'value': value['value'],
1769
+ };
1770
+ }
1771
+
1772
+ function instanceOfMapItemTypeInitialValueORM(value) {
1773
+ if (!('fieldDefinitionId' in value) || value['fieldDefinitionId'] === undefined)
1774
+ return false;
1775
+ if (!('value' in value) || value['value'] === undefined)
1776
+ return false;
1777
+ return true;
1778
+ }
1779
+ function MapItemTypeInitialValueORMFromJSON(json) {
1780
+ return MapItemTypeInitialValueORMFromJSONTyped(json);
1781
+ }
1782
+ function MapItemTypeInitialValueORMFromJSONTyped(json, ignoreDiscriminator) {
1783
+ if (json == null) {
1784
+ return json;
1785
+ }
1786
+ return {
1787
+ 'id': json['id'] == null ? undefined : json['id'],
1788
+ 'fieldDefinitionId': json['fieldDefinitionId'],
1789
+ 'value': json['value'],
1790
+ };
1791
+ }
1792
+ function MapItemTypeInitialValueORMToJSON(json) {
1793
+ return MapItemTypeInitialValueORMToJSONTyped(json, false);
1794
+ }
1795
+ function MapItemTypeInitialValueORMToJSONTyped(value, ignoreDiscriminator = false) {
1796
+ if (value == null) {
1797
+ return value;
1798
+ }
1799
+ return {
1800
+ 'id': value['id'],
1801
+ 'fieldDefinitionId': value['fieldDefinitionId'],
1802
+ 'value': value['value'],
1803
+ };
1804
+ }
1805
+
1806
+ function instanceOfItemTypeInitialValueOutput(value) {
1807
+ if (!('data' in value) || value['data'] === undefined)
1808
+ return false;
1809
+ return true;
1810
+ }
1811
+ function ItemTypeInitialValueOutputFromJSON(json) {
1812
+ return ItemTypeInitialValueOutputFromJSONTyped(json);
1813
+ }
1814
+ function ItemTypeInitialValueOutputFromJSONTyped(json, ignoreDiscriminator) {
1815
+ if (json == null) {
1816
+ return json;
1817
+ }
1818
+ return {
1819
+ 'data': MapItemTypeInitialValueORMFromJSON(json['data']),
1820
+ };
1821
+ }
1822
+ function ItemTypeInitialValueOutputToJSON(json) {
1823
+ return ItemTypeInitialValueOutputToJSONTyped(json, false);
1824
+ }
1825
+ function ItemTypeInitialValueOutputToJSONTyped(value, ignoreDiscriminator = false) {
1826
+ if (value == null) {
1827
+ return value;
1828
+ }
1829
+ return {
1830
+ 'data': MapItemTypeInitialValueORMToJSON(value['data']),
1831
+ };
1832
+ }
1833
+
1680
1834
  function instanceOfMapItemTypeORM(value) {
1681
1835
  if (!('title' in value) || value['title'] === undefined)
1682
1836
  return false;
@@ -1690,6 +1844,10 @@ function instanceOfMapItemTypeORM(value) {
1690
1844
  return false;
1691
1845
  if (!('allowArticles' in value) || value['allowArticles'] === undefined)
1692
1846
  return false;
1847
+ if (!('allowJournals' in value) || value['allowJournals'] === undefined)
1848
+ return false;
1849
+ if (!('allowStateSelection' in value) || value['allowStateSelection'] === undefined)
1850
+ return false;
1693
1851
  if (!('iconName' in value) || value['iconName'] === undefined)
1694
1852
  return false;
1695
1853
  return true;
@@ -1712,6 +1870,8 @@ function MapItemTypeORMFromJSONTyped(json, ignoreDiscriminator) {
1712
1870
  'allowMultimedias': json['allowMultimedias'],
1713
1871
  'allowLinkedItems': json['allowLinkedItems'],
1714
1872
  'allowArticles': json['allowArticles'],
1873
+ 'allowJournals': json['allowJournals'],
1874
+ 'allowStateSelection': json['allowStateSelection'],
1715
1875
  'iconName': json['iconName'],
1716
1876
  };
1717
1877
  }
@@ -1733,6 +1893,8 @@ function MapItemTypeORMToJSONTyped(value, ignoreDiscriminator = false) {
1733
1893
  'allowMultimedias': value['allowMultimedias'],
1734
1894
  'allowLinkedItems': value['allowLinkedItems'],
1735
1895
  'allowArticles': value['allowArticles'],
1896
+ 'allowJournals': value['allowJournals'],
1897
+ 'allowStateSelection': value['allowStateSelection'],
1736
1898
  'iconName': value['iconName'],
1737
1899
  };
1738
1900
  }
@@ -3589,6 +3751,86 @@ function MapItemTypeDynamicFieldDefinitionOutputToJSONTyped(value, ignoreDiscrim
3589
3751
  };
3590
3752
  }
3591
3753
 
3754
+ function instanceOfSearchResultSectionItem(value) {
3755
+ if (!('title' in value) || value['title'] === undefined)
3756
+ return false;
3757
+ if (!('parentId' in value) || value['parentId'] === undefined)
3758
+ return false;
3759
+ if (!('parentType' in value) || value['parentType'] === undefined)
3760
+ return false;
3761
+ return true;
3762
+ }
3763
+ function SearchResultSectionItemFromJSON(json) {
3764
+ return SearchResultSectionItemFromJSONTyped(json);
3765
+ }
3766
+ function SearchResultSectionItemFromJSONTyped(json, ignoreDiscriminator) {
3767
+ if (json == null) {
3768
+ return json;
3769
+ }
3770
+ return {
3771
+ 'title': json['title'],
3772
+ 'parentId': json['parentId'],
3773
+ 'parentType': json['parentType'],
3774
+ 'zone': json['zone'] == null ? undefined : MapZoneOutputDtoFromJSON(json['zone']),
3775
+ 'anchorId': json['anchorId'] == null ? undefined : json['anchorId'],
3776
+ };
3777
+ }
3778
+ function SearchResultSectionItemToJSON(json) {
3779
+ return SearchResultSectionItemToJSONTyped(json, false);
3780
+ }
3781
+ function SearchResultSectionItemToJSONTyped(value, ignoreDiscriminator = false) {
3782
+ if (value == null) {
3783
+ return value;
3784
+ }
3785
+ return {
3786
+ 'title': value['title'],
3787
+ 'parentId': value['parentId'],
3788
+ 'parentType': value['parentType'],
3789
+ 'zone': MapZoneOutputDtoToJSON(value['zone']),
3790
+ 'anchorId': value['anchorId'],
3791
+ };
3792
+ }
3793
+
3794
+ function instanceOfSearchResultSectionDto(value) {
3795
+ if (!('title' in value) || value['title'] === undefined)
3796
+ return false;
3797
+ if (!('priority' in value) || value['priority'] === undefined)
3798
+ return false;
3799
+ if (!('items' in value) || value['items'] === undefined)
3800
+ return false;
3801
+ if (!('fromCache' in value) || value['fromCache'] === undefined)
3802
+ return false;
3803
+ return true;
3804
+ }
3805
+ function SearchResultSectionDtoFromJSON(json) {
3806
+ return SearchResultSectionDtoFromJSONTyped(json);
3807
+ }
3808
+ function SearchResultSectionDtoFromJSONTyped(json, ignoreDiscriminator) {
3809
+ if (json == null) {
3810
+ return json;
3811
+ }
3812
+ return {
3813
+ 'title': json['title'],
3814
+ 'priority': json['priority'],
3815
+ 'items': (json['items'].map(SearchResultSectionItemFromJSON)),
3816
+ 'fromCache': json['fromCache'],
3817
+ };
3818
+ }
3819
+ function SearchResultSectionDtoToJSON(json) {
3820
+ return SearchResultSectionDtoToJSONTyped(json, false);
3821
+ }
3822
+ function SearchResultSectionDtoToJSONTyped(value, ignoreDiscriminator = false) {
3823
+ if (value == null) {
3824
+ return value;
3825
+ }
3826
+ return {
3827
+ 'title': value['title'],
3828
+ 'priority': value['priority'],
3829
+ 'items': (value['items'].map(SearchResultSectionItemToJSON)),
3830
+ 'fromCache': value['fromCache'],
3831
+ };
3832
+ }
3833
+
3592
3834
  function instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput(value) {
3593
3835
  if (!('data' in value) || value['data'] === undefined)
3594
3836
  return false;
@@ -3602,7 +3844,7 @@ function MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped(json, ignore
3602
3844
  return json;
3603
3845
  }
3604
3846
  return {
3605
- 'data': json['data'],
3847
+ 'data': SearchResultSectionDtoFromJSON(json['data']),
3606
3848
  };
3607
3849
  }
3608
3850
  function MapItemTypeDynamicFieldDefinitionValuesOutputToJSON(json) {
@@ -3613,7 +3855,7 @@ function MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped(value, ignoreD
3613
3855
  return value;
3614
3856
  }
3615
3857
  return {
3616
- 'data': value['data'],
3858
+ 'data': SearchResultSectionDtoToJSON(value['data']),
3617
3859
  };
3618
3860
  }
3619
3861
 
@@ -3743,6 +3985,8 @@ function instanceOfMapLayerContourCoordORM(value) {
3743
3985
  return false;
3744
3986
  if (!('lon' in value) || value['lon'] === undefined)
3745
3987
  return false;
3988
+ if (!('orderKey' in value) || value['orderKey'] === undefined)
3989
+ return false;
3746
3990
  return true;
3747
3991
  }
3748
3992
  function MapLayerContourCoordORMFromJSON(json) {
@@ -3757,6 +4001,7 @@ function MapLayerContourCoordORMFromJSONTyped(json, ignoreDiscriminator) {
3757
4001
  'layerId': json['layerId'],
3758
4002
  'lat': json['lat'],
3759
4003
  'lon': json['lon'],
4004
+ 'orderKey': json['orderKey'],
3760
4005
  };
3761
4006
  }
3762
4007
  function MapLayerContourCoordORMToJSON(json) {
@@ -3771,6 +4016,7 @@ function MapLayerContourCoordORMToJSONTyped(value, ignoreDiscriminator = false)
3771
4016
  'layerId': value['layerId'],
3772
4017
  'lat': value['lat'],
3773
4018
  'lon': value['lon'],
4019
+ 'orderKey': value['orderKey'],
3774
4020
  };
3775
4021
  }
3776
4022
 
@@ -3789,6 +4035,8 @@ function instanceOfMapLayerInput(value) {
3789
4035
  return false;
3790
4036
  if (!('fillContour' in value) || value['fillContour'] === undefined)
3791
4037
  return false;
4038
+ if (!('contour' in value) || value['contour'] === undefined)
4039
+ return false;
3792
4040
  return true;
3793
4041
  }
3794
4042
  function MapLayerInputFromJSON(json) {
@@ -3806,6 +4054,7 @@ function MapLayerInputFromJSONTyped(json, ignoreDiscriminator) {
3806
4054
  'code': json['code'],
3807
4055
  'drawContour': json['drawContour'],
3808
4056
  'fillContour': json['fillContour'],
4057
+ 'contour': (json['contour'].map(CoordDtoFromJSON)),
3809
4058
  };
3810
4059
  }
3811
4060
  function MapLayerInputToJSON(json) {
@@ -3823,6 +4072,7 @@ function MapLayerInputToJSONTyped(value, ignoreDiscriminator = false) {
3823
4072
  'code': value['code'],
3824
4073
  'drawContour': value['drawContour'],
3825
4074
  'fillContour': value['fillContour'],
4075
+ 'contour': (value['contour'].map(CoordDtoToJSON)),
3826
4076
  };
3827
4077
  }
3828
4078
 
@@ -3906,62 +4156,6 @@ function MapLayerItemORMToJSONTyped(value, ignoreDiscriminator = false) {
3906
4156
  };
3907
4157
  }
3908
4158
 
3909
- function instanceOfMapLayerItemListOutput(value) {
3910
- if (!('data' in value) || value['data'] === undefined)
3911
- return false;
3912
- return true;
3913
- }
3914
- function MapLayerItemListOutputFromJSON(json) {
3915
- return MapLayerItemListOutputFromJSONTyped(json);
3916
- }
3917
- function MapLayerItemListOutputFromJSONTyped(json, ignoreDiscriminator) {
3918
- if (json == null) {
3919
- return json;
3920
- }
3921
- return {
3922
- 'data': (json['data'].map(MapLayerItemORMFromJSON)),
3923
- };
3924
- }
3925
- function MapLayerItemListOutputToJSON(json) {
3926
- return MapLayerItemListOutputToJSONTyped(json, false);
3927
- }
3928
- function MapLayerItemListOutputToJSONTyped(value, ignoreDiscriminator = false) {
3929
- if (value == null) {
3930
- return value;
3931
- }
3932
- return {
3933
- 'data': (value['data'].map(MapLayerItemORMToJSON)),
3934
- };
3935
- }
3936
-
3937
- function instanceOfMapLayerItemOutput(value) {
3938
- if (!('data' in value) || value['data'] === undefined)
3939
- return false;
3940
- return true;
3941
- }
3942
- function MapLayerItemOutputFromJSON(json) {
3943
- return MapLayerItemOutputFromJSONTyped(json);
3944
- }
3945
- function MapLayerItemOutputFromJSONTyped(json, ignoreDiscriminator) {
3946
- if (json == null) {
3947
- return json;
3948
- }
3949
- return {
3950
- 'data': MapLayerItemORMFromJSON(json['data']),
3951
- };
3952
- }
3953
- function MapLayerItemOutputToJSON(json) {
3954
- return MapLayerItemOutputToJSONTyped(json, false);
3955
- }
3956
- function MapLayerItemOutputToJSONTyped(value, ignoreDiscriminator = false) {
3957
- if (value == null) {
3958
- return value;
3959
- }
3960
- return {
3961
- 'data': MapLayerItemORMToJSON(value['data']),
3962
- };
3963
- }
3964
-
3965
4159
  function instanceOfMapORM(value) {
3966
4160
  if (!('title' in value) || value['title'] === undefined)
3967
4161
  return false;
@@ -4050,6 +4244,7 @@ function MapLayerOutputDtoFromJSONTyped(json, ignoreDiscriminator) {
4050
4244
  'itemDecorations': (json['itemDecorations'].map(ItemDecorationDtoFromJSON)),
4051
4245
  'createDate': json['createDate'],
4052
4246
  'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
4247
+ 'code': json['code'] == null ? undefined : json['code'],
4053
4248
  };
4054
4249
  }
4055
4250
  function MapLayerOutputDtoToJSON(json) {
@@ -4071,6 +4266,7 @@ function MapLayerOutputDtoToJSONTyped(value, ignoreDiscriminator = false) {
4071
4266
  'itemDecorations': (value['itemDecorations'].map(ItemDecorationDtoToJSON)),
4072
4267
  'createDate': value['createDate'],
4073
4268
  'deleteDate': value['deleteDate'],
4269
+ 'code': value['code'],
4074
4270
  };
4075
4271
  }
4076
4272
 
@@ -4436,6 +4632,34 @@ function MultimediaOutputToJSONTyped(value, ignoreDiscriminator = false) {
4436
4632
  };
4437
4633
  }
4438
4634
 
4635
+ function instanceOfMultipleMultimediaOutput(value) {
4636
+ if (!('data' in value) || value['data'] === undefined)
4637
+ return false;
4638
+ return true;
4639
+ }
4640
+ function MultipleMultimediaOutputFromJSON(json) {
4641
+ return MultipleMultimediaOutputFromJSONTyped(json);
4642
+ }
4643
+ function MultipleMultimediaOutputFromJSONTyped(json, ignoreDiscriminator) {
4644
+ if (json == null) {
4645
+ return json;
4646
+ }
4647
+ return {
4648
+ 'data': (json['data'].map(MultimediaORMFromJSON)),
4649
+ };
4650
+ }
4651
+ function MultipleMultimediaOutputToJSON(json) {
4652
+ return MultipleMultimediaOutputToJSONTyped(json, false);
4653
+ }
4654
+ function MultipleMultimediaOutputToJSONTyped(value, ignoreDiscriminator = false) {
4655
+ if (value == null) {
4656
+ return value;
4657
+ }
4658
+ return {
4659
+ 'data': (value['data'].map(MultimediaORMToJSON)),
4660
+ };
4661
+ }
4662
+
4439
4663
  function instanceOfNominatimAddressORM(value) {
4440
4664
  if (!('iso031662lvl4' in value) || value['iso031662lvl4'] === undefined)
4441
4665
  return false;
@@ -4631,7 +4855,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
4631
4855
  return json;
4632
4856
  }
4633
4857
  return {
4634
- 'data': (json['data'].map(Def153FromJSON)),
4858
+ 'data': (json['data'].map(Def157FromJSON)),
4635
4859
  };
4636
4860
  }
4637
4861
  function ReportAllItemsListOutputToJSON(json) {
@@ -4642,7 +4866,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
4642
4866
  return value;
4643
4867
  }
4644
4868
  return {
4645
- 'data': (value['data'].map(Def153ToJSON)),
4869
+ 'data': (value['data'].map(Def157ToJSON)),
4646
4870
  };
4647
4871
  }
4648
4872
 
@@ -5233,86 +5457,6 @@ function SearchORMToJSONTyped(value, ignoreDiscriminator = false) {
5233
5457
  };
5234
5458
  }
5235
5459
 
5236
- function instanceOfSearchResultSectionItem(value) {
5237
- if (!('title' in value) || value['title'] === undefined)
5238
- return false;
5239
- if (!('parentId' in value) || value['parentId'] === undefined)
5240
- return false;
5241
- if (!('parentType' in value) || value['parentType'] === undefined)
5242
- return false;
5243
- return true;
5244
- }
5245
- function SearchResultSectionItemFromJSON(json) {
5246
- return SearchResultSectionItemFromJSONTyped(json);
5247
- }
5248
- function SearchResultSectionItemFromJSONTyped(json, ignoreDiscriminator) {
5249
- if (json == null) {
5250
- return json;
5251
- }
5252
- return {
5253
- 'title': json['title'],
5254
- 'parentId': json['parentId'],
5255
- 'parentType': json['parentType'],
5256
- 'zone': json['zone'] == null ? undefined : MapZoneOutputDtoFromJSON(json['zone']),
5257
- 'anchorId': json['anchorId'] == null ? undefined : json['anchorId'],
5258
- };
5259
- }
5260
- function SearchResultSectionItemToJSON(json) {
5261
- return SearchResultSectionItemToJSONTyped(json, false);
5262
- }
5263
- function SearchResultSectionItemToJSONTyped(value, ignoreDiscriminator = false) {
5264
- if (value == null) {
5265
- return value;
5266
- }
5267
- return {
5268
- 'title': value['title'],
5269
- 'parentId': value['parentId'],
5270
- 'parentType': value['parentType'],
5271
- 'zone': MapZoneOutputDtoToJSON(value['zone']),
5272
- 'anchorId': value['anchorId'],
5273
- };
5274
- }
5275
-
5276
- function instanceOfSearchResultSectionDto(value) {
5277
- if (!('title' in value) || value['title'] === undefined)
5278
- return false;
5279
- if (!('priority' in value) || value['priority'] === undefined)
5280
- return false;
5281
- if (!('items' in value) || value['items'] === undefined)
5282
- return false;
5283
- if (!('fromCache' in value) || value['fromCache'] === undefined)
5284
- return false;
5285
- return true;
5286
- }
5287
- function SearchResultSectionDtoFromJSON(json) {
5288
- return SearchResultSectionDtoFromJSONTyped(json);
5289
- }
5290
- function SearchResultSectionDtoFromJSONTyped(json, ignoreDiscriminator) {
5291
- if (json == null) {
5292
- return json;
5293
- }
5294
- return {
5295
- 'title': json['title'],
5296
- 'priority': json['priority'],
5297
- 'items': (json['items'].map(SearchResultSectionItemFromJSON)),
5298
- 'fromCache': json['fromCache'],
5299
- };
5300
- }
5301
- function SearchResultSectionDtoToJSON(json) {
5302
- return SearchResultSectionDtoToJSONTyped(json, false);
5303
- }
5304
- function SearchResultSectionDtoToJSONTyped(value, ignoreDiscriminator = false) {
5305
- if (value == null) {
5306
- return value;
5307
- }
5308
- return {
5309
- 'title': value['title'],
5310
- 'priority': value['priority'],
5311
- 'items': (value['items'].map(SearchResultSectionItemToJSON)),
5312
- 'fromCache': value['fromCache'],
5313
- };
5314
- }
5315
-
5316
5460
  function instanceOfSearchResultDto(value) {
5317
5461
  if (!('sections' in value) || value['sections'] === undefined)
5318
5462
  return false;
@@ -6256,6 +6400,51 @@ class ItemTypeApi extends BaseAPI {
6256
6400
  const response = await this.apiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRaw(requestParameters, initOverrides);
6257
6401
  return await response.value();
6258
6402
  }
6403
+ async apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRaw(requestParameters, initOverrides) {
6404
+ if (requestParameters['fieldDefinitionId'] == null) {
6405
+ throw new RequiredError('fieldDefinitionId', 'Required parameter "fieldDefinitionId" was null or undefined when calling apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDelete().');
6406
+ }
6407
+ if (requestParameters['initialValueId'] == null) {
6408
+ throw new RequiredError('initialValueId', 'Required parameter "initialValueId" was null or undefined when calling apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDelete().');
6409
+ }
6410
+ const queryParameters = {};
6411
+ const headerParameters = {};
6412
+ if (this.configuration && this.configuration.apiKey) {
6413
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6414
+ }
6415
+ const response = await this.request({
6416
+ path: `/api/v1/item/type/dynamicfield/{fieldDefinitionId}/initial-value/{initialValueId}`.replace(`{${"fieldDefinitionId"}}`, encodeURIComponent(String(requestParameters['fieldDefinitionId']))).replace(`{${"initialValueId"}}`, encodeURIComponent(String(requestParameters['initialValueId']))),
6417
+ method: 'DELETE',
6418
+ headers: headerParameters,
6419
+ query: queryParameters,
6420
+ }, initOverrides);
6421
+ return new JSONApiResponse(response, (jsonValue) => ItemTypeInitialValueOutputFromJSON(jsonValue));
6422
+ }
6423
+ async apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDelete(requestParameters, initOverrides) {
6424
+ const response = await this.apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRaw(requestParameters, initOverrides);
6425
+ return await response.value();
6426
+ }
6427
+ async apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRaw(requestParameters, initOverrides) {
6428
+ if (requestParameters['fieldDefinitionId'] == null) {
6429
+ throw new RequiredError('fieldDefinitionId', 'Required parameter "fieldDefinitionId" was null or undefined when calling apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePost().');
6430
+ }
6431
+ const queryParameters = {};
6432
+ const headerParameters = {};
6433
+ if (this.configuration && this.configuration.apiKey) {
6434
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6435
+ }
6436
+ const response = await this.request({
6437
+ path: `/api/v1/item/type/dynamicfield/{fieldDefinitionId}/initial-value`.replace(`{${"fieldDefinitionId"}}`, encodeURIComponent(String(requestParameters['fieldDefinitionId']))),
6438
+ method: 'POST',
6439
+ headers: headerParameters,
6440
+ query: queryParameters,
6441
+ }, initOverrides);
6442
+ return new JSONApiResponse(response, (jsonValue) => ItemTypeInitialValueOutputFromJSON(jsonValue));
6443
+ }
6444
+ async apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePost(requestParameters, initOverrides) {
6445
+ const response = await this.apiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRaw(requestParameters, initOverrides);
6446
+ return await response.value();
6447
+ }
6259
6448
  async apiV1ItemTypeDynamicfieldGetRaw(initOverrides) {
6260
6449
  const queryParameters = {};
6261
6450
  const headerParameters = {};
@@ -6757,6 +6946,27 @@ class LoginApi extends BaseAPI {
6757
6946
  }
6758
6947
 
6759
6948
  class MapApi extends BaseAPI {
6949
+ async apiV1MapCodeMapCodeGetRaw(requestParameters, initOverrides) {
6950
+ if (requestParameters['mapCode'] == null) {
6951
+ throw new RequiredError('mapCode', 'Required parameter "mapCode" was null or undefined when calling apiV1MapCodeMapCodeGet().');
6952
+ }
6953
+ const queryParameters = {};
6954
+ const headerParameters = {};
6955
+ if (this.configuration && this.configuration.apiKey) {
6956
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6957
+ }
6958
+ const response = await this.request({
6959
+ path: `/api/v1/map/code/{mapCode}`.replace(`{${"mapCode"}}`, encodeURIComponent(String(requestParameters['mapCode']))),
6960
+ method: 'GET',
6961
+ headers: headerParameters,
6962
+ query: queryParameters,
6963
+ }, initOverrides);
6964
+ return new JSONApiResponse(response, (jsonValue) => MapOutputFromJSON(jsonValue));
6965
+ }
6966
+ async apiV1MapCodeMapCodeGet(requestParameters, initOverrides) {
6967
+ const response = await this.apiV1MapCodeMapCodeGetRaw(requestParameters, initOverrides);
6968
+ return await response.value();
6969
+ }
6760
6970
  async apiV1MapGetRaw(initOverrides) {
6761
6971
  const queryParameters = {};
6762
6972
  const headerParameters = {};
@@ -6900,6 +7110,32 @@ class MapApi extends BaseAPI {
6900
7110
  async apiV1MapMapIdLayerLayerIdItemItemIdPost(requestParameters, initOverrides) {
6901
7111
  await this.apiV1MapMapIdLayerLayerIdItemItemIdPostRaw(requestParameters, initOverrides);
6902
7112
  }
7113
+ async apiV1MapMapIdLayerLayerIdPutRaw(requestParameters, initOverrides) {
7114
+ if (requestParameters['mapId'] == null) {
7115
+ throw new RequiredError('mapId', 'Required parameter "mapId" was null or undefined when calling apiV1MapMapIdLayerLayerIdPut().');
7116
+ }
7117
+ if (requestParameters['layerId'] == null) {
7118
+ throw new RequiredError('layerId', 'Required parameter "layerId" was null or undefined when calling apiV1MapMapIdLayerLayerIdPut().');
7119
+ }
7120
+ const queryParameters = {};
7121
+ const headerParameters = {};
7122
+ headerParameters['Content-Type'] = 'application/json';
7123
+ if (this.configuration && this.configuration.apiKey) {
7124
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7125
+ }
7126
+ const response = await this.request({
7127
+ path: `/api/v1/map/{mapId}/layer/{layerId}`.replace(`{${"mapId"}}`, encodeURIComponent(String(requestParameters['mapId']))).replace(`{${"layerId"}}`, encodeURIComponent(String(requestParameters['layerId']))),
7128
+ method: 'PUT',
7129
+ headers: headerParameters,
7130
+ query: queryParameters,
7131
+ body: MapLayerInputToJSON(requestParameters['mapLayerInput']),
7132
+ }, initOverrides);
7133
+ return new JSONApiResponse(response, (jsonValue) => MapLayerOutputFromJSON(jsonValue));
7134
+ }
7135
+ async apiV1MapMapIdLayerLayerIdPut(requestParameters, initOverrides) {
7136
+ const response = await this.apiV1MapMapIdLayerLayerIdPutRaw(requestParameters, initOverrides);
7137
+ return await response.value();
7138
+ }
6903
7139
  async apiV1MapMapIdLayerPostRaw(requestParameters, initOverrides) {
6904
7140
  if (requestParameters['mapId'] == null) {
6905
7141
  throw new RequiredError('mapId', 'Required parameter "mapId" was null or undefined when calling apiV1MapMapIdLayerPost().');
@@ -6943,15 +7179,32 @@ class MapApi extends BaseAPI {
6943
7179
  const response = await this.apiV1MapPostRaw(requestParameters, initOverrides);
6944
7180
  return await response.value();
6945
7181
  }
7182
+ async apiV1MapTourPostRaw(initOverrides) {
7183
+ const queryParameters = {};
7184
+ const headerParameters = {};
7185
+ if (this.configuration && this.configuration.apiKey) {
7186
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7187
+ }
7188
+ const response = await this.request({
7189
+ path: `/api/v1/map/tour`,
7190
+ method: 'POST',
7191
+ headers: headerParameters,
7192
+ query: queryParameters,
7193
+ }, initOverrides);
7194
+ return new VoidApiResponse(response);
7195
+ }
7196
+ async apiV1MapTourPost(initOverrides) {
7197
+ await this.apiV1MapTourPostRaw(initOverrides);
7198
+ }
6946
7199
  }
6947
7200
 
6948
7201
  class MultimediaApi extends BaseAPI {
6949
- async apiV1MultimediaContentTypeRelativeUrlGetRaw(requestParameters, initOverrides) {
7202
+ async apiV1MultimediaHumanRelativeUrlGetRaw(requestParameters, initOverrides) {
6950
7203
  if (requestParameters['contentType'] == null) {
6951
- throw new RequiredError('contentType', 'Required parameter "contentType" was null or undefined when calling apiV1MultimediaContentTypeRelativeUrlGet().');
7204
+ throw new RequiredError('contentType', 'Required parameter "contentType" was null or undefined when calling apiV1MultimediaHumanRelativeUrlGet().');
6952
7205
  }
6953
7206
  if (requestParameters['relativeUrl'] == null) {
6954
- throw new RequiredError('relativeUrl', 'Required parameter "relativeUrl" was null or undefined when calling apiV1MultimediaContentTypeRelativeUrlGet().');
7207
+ throw new RequiredError('relativeUrl', 'Required parameter "relativeUrl" was null or undefined when calling apiV1MultimediaHumanRelativeUrlGet().');
6955
7208
  }
6956
7209
  const queryParameters = {};
6957
7210
  const headerParameters = {};
@@ -6959,15 +7212,15 @@ class MultimediaApi extends BaseAPI {
6959
7212
  headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
6960
7213
  }
6961
7214
  const response = await this.request({
6962
- path: `/api/v1/multimedia/{contentType}/{relativeUrl}`.replace(`{${"contentType"}}`, encodeURIComponent(String(requestParameters['contentType']))).replace(`{${"relativeUrl"}}`, encodeURIComponent(String(requestParameters['relativeUrl']))),
7215
+ path: `/api/v1/multimedia/human/{relativeUrl}`.replace(`{${"contentType"}}`, encodeURIComponent(String(requestParameters['contentType']))).replace(`{${"relativeUrl"}}`, encodeURIComponent(String(requestParameters['relativeUrl']))),
6963
7216
  method: 'GET',
6964
7217
  headers: headerParameters,
6965
7218
  query: queryParameters,
6966
7219
  }, initOverrides);
6967
7220
  return new BlobApiResponse(response);
6968
7221
  }
6969
- async apiV1MultimediaContentTypeRelativeUrlGet(requestParameters, initOverrides) {
6970
- const response = await this.apiV1MultimediaContentTypeRelativeUrlGetRaw(requestParameters, initOverrides);
7222
+ async apiV1MultimediaHumanRelativeUrlGet(requestParameters, initOverrides) {
7223
+ const response = await this.apiV1MultimediaHumanRelativeUrlGetRaw(requestParameters, initOverrides);
6971
7224
  return await response.value();
6972
7225
  }
6973
7226
  async apiV1MultimediaMultimediaIdGetRaw(requestParameters, initOverrides) {
@@ -7029,6 +7282,44 @@ class MultimediaApi extends BaseAPI {
7029
7282
  const response = await this.apiV1MultimediaPostRaw(requestParameters, initOverrides);
7030
7283
  return await response.value();
7031
7284
  }
7285
+ async apiV1MultimediaPptxPostRaw(requestParameters, initOverrides) {
7286
+ if (requestParameters['file'] == null) {
7287
+ throw new RequiredError('file', 'Required parameter "file" was null or undefined when calling apiV1MultimediaPptxPost().');
7288
+ }
7289
+ const queryParameters = {};
7290
+ const headerParameters = {};
7291
+ if (this.configuration && this.configuration.apiKey) {
7292
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
7293
+ }
7294
+ const consumes = [
7295
+ { contentType: 'multipart/form-data' },
7296
+ ];
7297
+ const canConsumeForm$1 = canConsumeForm(consumes);
7298
+ let formParams;
7299
+ let useForm = false;
7300
+ useForm = canConsumeForm$1;
7301
+ if (useForm) {
7302
+ formParams = new FormData();
7303
+ }
7304
+ else {
7305
+ formParams = new URLSearchParams();
7306
+ }
7307
+ if (requestParameters['file'] != null) {
7308
+ formParams.append('file', requestParameters['file']);
7309
+ }
7310
+ const response = await this.request({
7311
+ path: `/api/v1/multimedia/pptx`,
7312
+ method: 'POST',
7313
+ headers: headerParameters,
7314
+ query: queryParameters,
7315
+ body: formParams,
7316
+ }, initOverrides);
7317
+ return new JSONApiResponse(response, (jsonValue) => MultipleMultimediaOutputFromJSON(jsonValue));
7318
+ }
7319
+ async apiV1MultimediaPptxPost(requestParameters, initOverrides) {
7320
+ const response = await this.apiV1MultimediaPptxPostRaw(requestParameters, initOverrides);
7321
+ return await response.value();
7322
+ }
7032
7323
  }
7033
7324
 
7034
7325
  class OrganizationApi extends BaseAPI {
@@ -7434,5 +7725,5 @@ class StateMachineApi extends BaseAPI {
7434
7725
  }
7435
7726
  }
7436
7727
 
7437
- export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, 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, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def153FromJSON, Def153FromJSONTyped, Def153ToJSON, Def153ToJSONTyped, 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, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, 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, 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, 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, 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, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemListOutputFromJSON, MapLayerItemListOutputFromJSONTyped, MapLayerItemListOutputToJSON, MapLayerItemListOutputToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemOutputFromJSON, MapLayerItemOutputFromJSONTyped, MapLayerItemOutputToJSON, MapLayerItemOutputToJSONTyped, 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, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, 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, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, 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, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, 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, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef153, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemListOutput, instanceOfMapLayerItemORM, instanceOfMapLayerItemOutput, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnORM, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReverseGeoCodingOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineORM, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
7728
+ export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def157FromJSON, Def157FromJSONTyped, Def157ToJSON, Def157ToJSONTyped, 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, 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, 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, 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, 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, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, 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, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, 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, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, 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, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, 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, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef157, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnORM, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReverseGeoCodingOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineORM, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
7438
7729
  //# sourceMappingURL=index.mjs.map