@jrojaspin/security-map-api-cli 9.7.0 → 9.8.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 (40) hide show
  1. package/dist/index.cjs +206 -32
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.ts +85 -14
  4. package/dist/index.mjs +177 -28
  5. package/dist/index.mjs.map +1 -1
  6. package/dist/models/AxisGrid.d.ts +8 -0
  7. package/dist/models/AxisGrid.js +28 -0
  8. package/dist/models/AxisGrid.js.map +1 -0
  9. package/dist/models/ChartDataset.d.ts +1 -0
  10. package/dist/models/ChartDataset.js +2 -0
  11. package/dist/models/ChartDataset.js.map +1 -1
  12. package/dist/models/ChartScales.d.ts +1 -0
  13. package/dist/models/ChartScales.js +2 -0
  14. package/dist/models/ChartScales.js.map +1 -1
  15. package/dist/models/Def227.d.ts +8 -0
  16. package/dist/models/Def227.js +16 -0
  17. package/dist/models/{Def223.js.map → Def227.js.map} +1 -1
  18. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  19. package/dist/models/ReportAllItemsListOutput.js +3 -3
  20. package/dist/models/ReportQueryAxis.d.ts +10 -0
  21. package/dist/models/ReportQueryAxis.js +27 -0
  22. package/dist/models/ReportQueryAxis.js.map +1 -0
  23. package/dist/models/ReportQueryDefinition.d.ts +9 -5
  24. package/dist/models/ReportQueryDefinition.js +15 -18
  25. package/dist/models/ReportQueryDefinition.js.map +1 -1
  26. package/dist/models/ReportQuerySeries.d.ts +35 -0
  27. package/dist/models/ReportQuerySeries.js +66 -0
  28. package/dist/models/ReportQuerySeries.js.map +1 -0
  29. package/dist/models/ReportQuerySeriesChart.d.ts +10 -0
  30. package/dist/models/ReportQuerySeriesChart.js +27 -0
  31. package/dist/models/ReportQuerySeriesChart.js.map +1 -0
  32. package/dist/models/YAxisOptions.d.ts +3 -0
  33. package/dist/models/YAxisOptions.js +5 -0
  34. package/dist/models/YAxisOptions.js.map +1 -1
  35. package/dist/models/index.d.ts +5 -1
  36. package/dist/models/index.js +5 -1
  37. package/dist/models/index.js.map +1 -1
  38. package/package.json +1 -1
  39. package/dist/models/Def223.d.ts +0 -8
  40. package/dist/models/Def223.js +0 -16
package/dist/index.d.ts CHANGED
@@ -293,6 +293,15 @@ declare function AvailableArticlesOutputFromJSONTyped(json: any, ignoreDiscrimin
293
293
  declare function AvailableArticlesOutputToJSON(json: any): AvailableArticlesOutput;
294
294
  declare function AvailableArticlesOutputToJSONTyped(value?: AvailableArticlesOutput | null, ignoreDiscriminator?: boolean): any;
295
295
 
296
+ interface AxisGrid {
297
+ drawOnChartArea: boolean;
298
+ }
299
+ declare function instanceOfAxisGrid(value: object): value is AxisGrid;
300
+ declare function AxisGridFromJSON(json: any): AxisGrid;
301
+ declare function AxisGridFromJSONTyped(json: any, ignoreDiscriminator: boolean): AxisGrid;
302
+ declare function AxisGridToJSON(json: any): AxisGrid;
303
+ declare function AxisGridToJSONTyped(value?: AxisGrid | null, ignoreDiscriminator?: boolean): any;
304
+
296
305
  interface AxisTime {
297
306
  unit: string;
298
307
  }
@@ -361,6 +370,7 @@ interface ChartDataset {
361
370
  fill?: boolean;
362
371
  tension?: number;
363
372
  label: string;
373
+ yAxisID?: string;
364
374
  }
365
375
  declare function instanceOfChartDataset(value: object): value is ChartDataset;
366
376
  declare function ChartDatasetFromJSON(json: any): ChartDataset;
@@ -427,6 +437,8 @@ declare function XAxisOptionsToJSONTyped(value?: XAxisOptions | null, ignoreDisc
427
437
  interface YAxisOptions {
428
438
  beginAtZero: boolean;
429
439
  title: AxisTitle;
440
+ position?: string;
441
+ grid?: AxisGrid;
430
442
  }
431
443
  declare function instanceOfYAxisOptions(value: object): value is YAxisOptions;
432
444
  declare function YAxisOptionsFromJSON(json: any): YAxisOptions;
@@ -437,6 +449,7 @@ declare function YAxisOptionsToJSONTyped(value?: YAxisOptions | null, ignoreDisc
437
449
  interface ChartScales {
438
450
  y: YAxisOptions;
439
451
  x: XAxisOptions;
452
+ y2?: YAxisOptions;
440
453
  }
441
454
  declare function instanceOfChartScales(value: object): value is ChartScales;
442
455
  declare function ChartScalesFromJSON(json: any): ChartScales;
@@ -483,14 +496,14 @@ declare function ComputeRouteInputFromJSONTyped(json: any, ignoreDiscriminator:
483
496
  declare function ComputeRouteInputToJSON(json: any): ComputeRouteInput;
484
497
  declare function ComputeRouteInputToJSONTyped(value?: ComputeRouteInput | null, ignoreDiscriminator?: boolean): any;
485
498
 
486
- interface Def223 {
499
+ interface Def227 {
487
500
  [key: string]: any;
488
501
  }
489
- declare function instanceOfDef223(value: object): value is Def223;
490
- declare function Def223FromJSON(json: any): Def223;
491
- declare function Def223FromJSONTyped(json: any, ignoreDiscriminator: boolean): Def223;
492
- declare function Def223ToJSON(json: any): Def223;
493
- declare function Def223ToJSONTyped(value?: Def223 | null, ignoreDiscriminator?: boolean): any;
502
+ declare function instanceOfDef227(value: object): value is Def227;
503
+ declare function Def227FromJSON(json: any): Def227;
504
+ declare function Def227FromJSONTyped(json: any, ignoreDiscriminator: boolean): Def227;
505
+ declare function Def227ToJSON(json: any): Def227;
506
+ declare function Def227ToJSONTyped(value?: Def227 | null, ignoreDiscriminator?: boolean): any;
494
507
 
495
508
  declare const HealthcheckStatusValue: {
496
509
  readonly Ok: "ok";
@@ -2042,7 +2055,7 @@ declare function PlaceDetailsOutputToJSON(json: any): PlaceDetailsOutput;
2042
2055
  declare function PlaceDetailsOutputToJSONTyped(value?: PlaceDetailsOutput | null, ignoreDiscriminator?: boolean): any;
2043
2056
 
2044
2057
  interface ReportAllItemsListOutput {
2045
- data: Array<Def223>;
2058
+ data: Array<Def227>;
2046
2059
  pageInfo: PageInfo;
2047
2060
  }
2048
2061
  declare function instanceOfReportAllItemsListOutput(value: object): value is ReportAllItemsListOutput;
@@ -2262,6 +2275,17 @@ declare function ReportOutputFromJSONTyped(json: any, ignoreDiscriminator: boole
2262
2275
  declare function ReportOutputToJSON(json: any): ReportOutput;
2263
2276
  declare function ReportOutputToJSONTyped(value?: ReportOutput | null, ignoreDiscriminator?: boolean): any;
2264
2277
 
2278
+ declare const ReportQueryAxis: {
2279
+ readonly Y: "y";
2280
+ readonly Y2: "y2";
2281
+ };
2282
+ type ReportQueryAxis = typeof ReportQueryAxis[keyof typeof ReportQueryAxis];
2283
+ declare function instanceOfReportQueryAxis(value: any): boolean;
2284
+ declare function ReportQueryAxisFromJSON(json: any): ReportQueryAxis;
2285
+ declare function ReportQueryAxisFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryAxis;
2286
+ declare function ReportQueryAxisToJSON(value?: ReportQueryAxis | null): any;
2287
+ declare function ReportQueryAxisToJSONTyped(value: any, ignoreDiscriminator: boolean): ReportQueryAxis;
2288
+
2265
2289
  interface ReportQueryCatalogField {
2266
2290
  id: string;
2267
2291
  label: string;
@@ -2492,16 +2516,52 @@ declare function ReportQueryDimensionFromJSONTyped(json: any, ignoreDiscriminato
2492
2516
  declare function ReportQueryDimensionToJSON(json: any): ReportQueryDimension;
2493
2517
  declare function ReportQueryDimensionToJSONTyped(value?: ReportQueryDimension | null, ignoreDiscriminator?: boolean): any;
2494
2518
 
2495
- interface ReportQueryDefinition {
2496
- version?: number;
2497
- source: ReportQueryDefinitionSourceEnum;
2519
+ interface ReportQuerySeries {
2520
+ label?: string;
2521
+ source: ReportQuerySeriesSourceEnum;
2498
2522
  itemTypeIds: Array<number>;
2499
- dimensions: Array<ReportQueryDimension>;
2500
- metrics: Array<ReportQueryMetric>;
2501
2523
  filters: Array<ReportQueryFilter>;
2524
+ metric: ReportQueryMetric;
2525
+ splitBy?: ReportQueryDimension;
2526
+ chart?: ReportQuerySeriesChartEnum;
2527
+ color?: string;
2528
+ axis?: ReportQuerySeriesAxisEnum;
2529
+ }
2530
+ declare const ReportQuerySeriesSourceEnum: {
2531
+ readonly Items: "items";
2532
+ readonly Articles: "articles";
2533
+ readonly StateHistory: "state_history";
2534
+ };
2535
+ type ReportQuerySeriesSourceEnum = typeof ReportQuerySeriesSourceEnum[keyof typeof ReportQuerySeriesSourceEnum];
2536
+ declare const ReportQuerySeriesChartEnum: {
2537
+ readonly Bar: "bar";
2538
+ readonly Line: "line";
2539
+ };
2540
+ type ReportQuerySeriesChartEnum = typeof ReportQuerySeriesChartEnum[keyof typeof ReportQuerySeriesChartEnum];
2541
+ declare const ReportQuerySeriesAxisEnum: {
2542
+ readonly Y: "y";
2543
+ readonly Y2: "y2";
2544
+ };
2545
+ type ReportQuerySeriesAxisEnum = typeof ReportQuerySeriesAxisEnum[keyof typeof ReportQuerySeriesAxisEnum];
2546
+ declare function instanceOfReportQuerySeries(value: object): value is ReportQuerySeries;
2547
+ declare function ReportQuerySeriesFromJSON(json: any): ReportQuerySeries;
2548
+ declare function ReportQuerySeriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQuerySeries;
2549
+ declare function ReportQuerySeriesToJSON(json: any): ReportQuerySeries;
2550
+ declare function ReportQuerySeriesToJSONTyped(value?: ReportQuerySeries | null, ignoreDiscriminator?: boolean): any;
2551
+
2552
+ interface ReportQueryDefinition {
2553
+ version?: number;
2554
+ source?: ReportQueryDefinitionSourceEnum;
2555
+ itemTypeIds?: Array<number>;
2556
+ dimensions?: Array<ReportQueryDimension>;
2557
+ metrics?: Array<ReportQueryMetric>;
2558
+ filters?: Array<ReportQueryFilter>;
2559
+ x?: ReportQueryDimension;
2560
+ series?: Array<ReportQuerySeries>;
2502
2561
  chart?: ReportQueryDefinitionChartEnum;
2503
2562
  labelX?: string;
2504
2563
  labelY?: string;
2564
+ labelY2?: string;
2505
2565
  }
2506
2566
  declare const ReportQueryDefinitionSourceEnum: {
2507
2567
  readonly Items: "items";
@@ -2635,6 +2695,17 @@ declare function ReportQueryPreviewInputFromJSONTyped(json: any, ignoreDiscrimin
2635
2695
  declare function ReportQueryPreviewInputToJSON(json: any): ReportQueryPreviewInput;
2636
2696
  declare function ReportQueryPreviewInputToJSONTyped(value?: ReportQueryPreviewInput | null, ignoreDiscriminator?: boolean): any;
2637
2697
 
2698
+ declare const ReportQuerySeriesChart: {
2699
+ readonly Bar: "bar";
2700
+ readonly Line: "line";
2701
+ };
2702
+ type ReportQuerySeriesChart = typeof ReportQuerySeriesChart[keyof typeof ReportQuerySeriesChart];
2703
+ declare function instanceOfReportQuerySeriesChart(value: any): boolean;
2704
+ declare function ReportQuerySeriesChartFromJSON(json: any): ReportQuerySeriesChart;
2705
+ declare function ReportQuerySeriesChartFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQuerySeriesChart;
2706
+ declare function ReportQuerySeriesChartToJSON(value?: ReportQuerySeriesChart | null): any;
2707
+ declare function ReportQuerySeriesChartToJSONTyped(value: any, ignoreDiscriminator: boolean): ReportQuerySeriesChart;
2708
+
2638
2709
  declare const ReportQuerySource: {
2639
2710
  readonly Items: "items";
2640
2711
  readonly Articles: "articles";
@@ -3621,5 +3692,5 @@ declare class StateMachineApi extends BaseAPI {
3621
3692
  apiV1StatemachineStateMachineIdTransitionPost(requestParameters: ApiV1StatemachineStateMachineIdTransitionPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<StateMachineDefinitionOutput>;
3622
3693
  }
3623
3694
 
3624
- export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1MapPost402ResponseFromJSON, ApiV1MapPost402ResponseFromJSONTyped, ApiV1MapPost402ResponseToJSON, ApiV1MapPost402ResponseToJSONTyped, ApiV1ReportItemGetOrderDirectionEnum, ApiV1ReportItemGetQOperatorEnum, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, ComputeRouteInputFromJSON, ComputeRouteInputFromJSONTyped, ComputeRouteInputToJSON, ComputeRouteInputToJSONTyped, ComputeRouteInputTravelModeEnum, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def223FromJSON, Def223FromJSONTyped, Def223ToJSON, Def223ToJSONTyped, DefaultApi, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemRenderOptionsInputFillTypeEnum, ItemRenderOptionsInputFromJSON, ItemRenderOptionsInputFromJSONTyped, ItemRenderOptionsInputToJSON, ItemRenderOptionsInputToJSONTyped, ItemRenderOptionsOutputFromJSON, ItemRenderOptionsOutputFromJSONTyped, ItemRenderOptionsOutputToJSON, ItemRenderOptionsOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LayerFieldFilterOperator, LayerFieldFilterOperatorFromJSON, LayerFieldFilterOperatorFromJSONTyped, LayerFieldFilterOperatorToJSON, LayerFieldFilterOperatorToJSONTyped, LayerInputDtoFromJSON, LayerInputDtoFromJSONTyped, LayerInputDtoToJSON, LayerInputDtoToJSONTyped, LayerItemTypeFieldFilterDtoFromJSON, LayerItemTypeFieldFilterDtoFromJSONTyped, LayerItemTypeFieldFilterDtoOperatorEnum, LayerItemTypeFieldFilterDtoToJSON, LayerItemTypeFieldFilterDtoToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemRenderFillOption, MapItemRenderFillOptionFromJSON, MapItemRenderFillOptionFromJSONTyped, MapItemRenderFillOptionToJSON, MapItemRenderFillOptionToJSONTyped, MapItemRenderOptionsORMFillTypeEnum, MapItemRenderOptionsORMFromJSON, MapItemRenderOptionsORMFromJSONTyped, MapItemRenderOptionsORMToJSON, MapItemRenderOptionsORMToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionFieldOutputFromJSON, MapItemTypeFormSectionFieldOutputFromJSONTyped, MapItemTypeFormSectionFieldOutputToJSON, MapItemTypeFormSectionFieldOutputToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeFormSectionOutputFromJSON, MapItemTypeFormSectionOutputFromJSONTyped, MapItemTypeFormSectionOutputToJSON, MapItemTypeFormSectionOutputToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapItemWithPointsInputFromJSON, MapItemWithPointsInputFromJSONTyped, MapItemWithPointsInputToJSON, MapItemWithPointsInputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemTypeFieldFilterORMFromJSON, MapLayerItemTypeFieldFilterORMFromJSONTyped, MapLayerItemTypeFieldFilterORMOperatorEnum, MapLayerItemTypeFieldFilterORMToJSON, MapLayerItemTypeFieldFilterORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointInputFromJSON, MapZonePointInputFromJSONTyped, MapZonePointInputToJSON, MapZonePointInputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MapZoneWithPointsInputFromJSON, MapZoneWithPointsInputFromJSONTyped, MapZoneWithPointsInputToJSON, MapZoneWithPointsInputToJSONTyped, McpApi, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NearbyPlaceDtoFromJSON, NearbyPlaceDtoFromJSONTyped, NearbyPlaceDtoToJSON, NearbyPlaceDtoToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OAuthApi, OAuthClientORMFromJSON, OAuthClientORMFromJSONTyped, OAuthClientORMToJSON, OAuthClientORMToJSONTyped, OAuthRefreshTokenORMFromJSON, OAuthRefreshTokenORMFromJSONTyped, OAuthRefreshTokenORMToJSON, OAuthRefreshTokenORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, PlaceAddressDtoFromJSON, PlaceAddressDtoFromJSONTyped, PlaceAddressDtoToJSON, PlaceAddressDtoToJSONTyped, PlaceApi, PlaceDetailsDtoFromJSON, PlaceDetailsDtoFromJSONTyped, PlaceDetailsDtoToJSON, PlaceDetailsDtoToJSONTyped, PlaceDetailsOutputFromJSON, PlaceDetailsOutputFromJSONTyped, PlaceDetailsOutputToJSON, PlaceDetailsOutputToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, ReportQueryCatalogFieldBucketsEnum, ReportQueryCatalogFieldFilterOperatorsEnum, ReportQueryCatalogFieldFromJSON, ReportQueryCatalogFieldFromJSONTyped, ReportQueryCatalogFieldMetricOperationsEnum, ReportQueryCatalogFieldSourcesEnum, ReportQueryCatalogFieldSuggestedNormalizeEnum, ReportQueryCatalogFieldToJSON, ReportQueryCatalogFieldToJSONTyped, ReportQueryCatalogFieldTypeEnum, ReportQueryCatalogOutputFromJSON, ReportQueryCatalogOutputFromJSONTyped, ReportQueryCatalogOutputToJSON, ReportQueryCatalogOutputToJSONTyped, ReportQueryChart, ReportQueryChartFromJSON, ReportQueryChartFromJSONTyped, ReportQueryChartToJSON, ReportQueryChartToJSONTyped, ReportQueryDataDtoFromJSON, ReportQueryDataDtoFromJSONTyped, ReportQueryDataDtoToJSON, ReportQueryDataDtoToJSONTyped, ReportQueryDataOutputFromJSON, ReportQueryDataOutputFromJSONTyped, ReportQueryDataOutputToJSON, ReportQueryDataOutputToJSONTyped, ReportQueryDateBucket, ReportQueryDateBucketFromJSON, ReportQueryDateBucketFromJSONTyped, ReportQueryDateBucketToJSON, ReportQueryDateBucketToJSONTyped, ReportQueryDefinitionChartEnum, ReportQueryDefinitionFromJSON, ReportQueryDefinitionFromJSONTyped, ReportQueryDefinitionSourceEnum, ReportQueryDefinitionToJSON, ReportQueryDefinitionToJSONTyped, ReportQueryDimensionBucketEnum, ReportQueryDimensionFromJSON, ReportQueryDimensionFromJSONTyped, ReportQueryDimensionNormalizeEnum, ReportQueryDimensionToJSON, ReportQueryDimensionToJSONTyped, ReportQueryDtoFromJSON, ReportQueryDtoFromJSONTyped, ReportQueryDtoToJSON, ReportQueryDtoToJSONTyped, ReportQueryFieldType, ReportQueryFieldTypeFromJSON, ReportQueryFieldTypeFromJSONTyped, ReportQueryFieldTypeToJSON, ReportQueryFieldTypeToJSONTyped, ReportQueryFilterFromJSON, ReportQueryFilterFromJSONTyped, ReportQueryFilterOpEnum, ReportQueryFilterOperator, ReportQueryFilterOperatorFromJSON, ReportQueryFilterOperatorFromJSONTyped, ReportQueryFilterOperatorToJSON, ReportQueryFilterOperatorToJSONTyped, ReportQueryFilterToJSON, ReportQueryFilterToJSONTyped, ReportQueryInputFromJSON, ReportQueryInputFromJSONTyped, ReportQueryInputToJSON, ReportQueryInputToJSONTyped, ReportQueryListOutputFromJSON, ReportQueryListOutputFromJSONTyped, ReportQueryListOutputToJSON, ReportQueryListOutputToJSONTyped, ReportQueryMetricFromJSON, ReportQueryMetricFromJSONTyped, ReportQueryMetricOpEnum, ReportQueryMetricOperation, ReportQueryMetricOperationFromJSON, ReportQueryMetricOperationFromJSONTyped, ReportQueryMetricOperationToJSON, ReportQueryMetricOperationToJSONTyped, ReportQueryMetricToJSON, ReportQueryMetricToJSONTyped, ReportQueryNormalize, ReportQueryNormalizeFromJSON, ReportQueryNormalizeFromJSONTyped, ReportQueryNormalizeToJSON, ReportQueryNormalizeToJSONTyped, ReportQueryOutputFromJSON, ReportQueryOutputFromJSONTyped, ReportQueryOutputToJSON, ReportQueryOutputToJSONTyped, ReportQueryPreviewInputFromJSON, ReportQueryPreviewInputFromJSONTyped, ReportQueryPreviewInputToJSON, ReportQueryPreviewInputToJSONTyped, ReportQueryResultColumnFromJSON, ReportQueryResultColumnFromJSONTyped, ReportQueryResultColumnToJSON, ReportQueryResultColumnToJSONTyped, ReportQueryResultFromJSON, ReportQueryResultFromJSONTyped, ReportQueryResultRowFromJSON, ReportQueryResultRowFromJSONTyped, ReportQueryResultRowToJSON, ReportQueryResultRowToJSONTyped, ReportQueryResultToJSON, ReportQueryResultToJSONTyped, ReportQuerySource, ReportQuerySourceFromJSON, ReportQuerySourceFromJSONTyped, ReportQuerySourceToJSON, ReportQuerySourceToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, RouteApi, RouteDtoFromJSON, RouteDtoFromJSONTyped, RouteDtoToJSON, RouteDtoToJSONTyped, RouteLegDtoFromJSON, RouteLegDtoFromJSONTyped, RouteLegDtoToJSON, RouteLegDtoToJSONTyped, RouteOutputFromJSON, RouteOutputFromJSONTyped, RouteOutputToJSON, RouteOutputToJSONTyped, RouteStepDtoFromJSON, RouteStepDtoFromJSONTyped, RouteStepDtoToJSON, RouteStepDtoToJSONTyped, RouteTravelMode, RouteTravelModeFromJSON, RouteTravelModeFromJSONTyped, RouteTravelModeToJSON, RouteTravelModeToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, UserPaymentControlDtoFromJSON, UserPaymentControlDtoFromJSONTyped, UserPaymentControlDtoToJSON, UserPaymentControlDtoToJSONTyped, UserPaymentControlOutputFromJSON, UserPaymentControlOutputFromJSONTyped, UserPaymentControlOutputToJSON, UserPaymentControlOutputToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfApiV1MapPost402Response, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfComputeRouteInput, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef223, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLayerFieldFilterOperator, instanceOfLayerInputDto, instanceOfLayerItemTypeFieldFilterDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemRenderFillOption, instanceOfMapItemRenderOptionsORM, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionFieldOutput, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeFormSectionOutput, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapItemWithPointsInput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerItemTypeFieldFilterORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointInput, instanceOfMapZonePointORM, instanceOfMapZoneWithPointsInput, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNearbyPlaceDto, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOAuthClientORM, instanceOfOAuthRefreshTokenORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfPlaceAddressDto, instanceOfPlaceDetailsDto, instanceOfPlaceDetailsOutput, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReportQueryCatalogField, instanceOfReportQueryCatalogOutput, instanceOfReportQueryChart, instanceOfReportQueryDataDto, instanceOfReportQueryDataOutput, instanceOfReportQueryDateBucket, instanceOfReportQueryDefinition, instanceOfReportQueryDimension, instanceOfReportQueryDto, instanceOfReportQueryFieldType, instanceOfReportQueryFilter, instanceOfReportQueryFilterOperator, instanceOfReportQueryInput, instanceOfReportQueryListOutput, instanceOfReportQueryMetric, instanceOfReportQueryMetricOperation, instanceOfReportQueryNormalize, instanceOfReportQueryOutput, instanceOfReportQueryPreviewInput, instanceOfReportQueryResult, instanceOfReportQueryResultColumn, instanceOfReportQueryResultRow, instanceOfReportQuerySource, instanceOfReverseGeoCodingOutput, instanceOfRouteDto, instanceOfRouteLegDto, instanceOfRouteOutput, instanceOfRouteStepDto, instanceOfRouteTravelMode, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfUserPaymentControlDto, instanceOfUserPaymentControlOutput, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
3625
- export type { AccountORM, AccountOutput, AddUserToOrganizationDto, ApiResponse, ApiV1AccountPostRequest, ApiV1AccountSearchHistoryDeleteRequest, ApiV1AuthManualLoginPostRequest, ApiV1AuthManualPasswordPutRequest, ApiV1AuthManualRegisterPostRequest, ApiV1BackofficeSearchCacheDeleteRequest, ApiV1ItemGetRequest, ApiV1ItemItemIdDeleteRequest, ApiV1ItemItemIdGetRequest, ApiV1ItemItemIdLayerGetRequest, ApiV1ItemItemIdLinkPostRequest, ApiV1ItemItemIdMultimediaPostRequest, ApiV1ItemItemIdRenderPostRequest, ApiV1ItemNearbyGetRequest, ApiV1ItemPostRequest, ApiV1ItemPutRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRequest, ApiV1ItemTypeFormSectionFieldFieldIdDeleteRequest, ApiV1ItemTypeItemTypeIdDeleteRequest, ApiV1ItemTypeItemTypeIdFormGetRequest, ApiV1ItemWithinGetRequest, ApiV1JobJobIdGetRequest, ApiV1JobJobIdPutRequest, ApiV1JobPostRequest, ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, ApiV1JournalParentIdGetRequest, ApiV1JournalParentIdPostRequest, ApiV1JournalParentIdPutRequest, ApiV1LayerLayerIdDeleteRequest, ApiV1LayerLayerIdGetRequest, ApiV1LayerLayerIdItemGetRequest, ApiV1LayerLayerIdItemItemIdPostRequest, ApiV1LayerLayerIdPutRequest, ApiV1LayerLayerIdTourPostRequest, ApiV1LayerLayerIdViewportItemPostRequest, ApiV1LayerPostRequest, ApiV1LayerViewportTileMapZoomLevelTileXTileYGetRequest, ApiV1LocationPointPostRequest, ApiV1LocationZonePostRequest, ApiV1MapCodeMapCodeGetRequest, ApiV1MapMapIdGetRequest, ApiV1MapMapIdLayerGetRequest, ApiV1MapPost402Response, ApiV1MapPostRequest, ApiV1MultimediaHumanRelativeUrlGetRequest, ApiV1MultimediaMultimediaIdGetRequest, ApiV1MultimediaPostRequest, ApiV1MultimediaPptxPostRequest, ApiV1OrganizationPostRequest, ApiV1OrganizationPutRequest, ApiV1OrganizationUserPostRequest, ApiV1OrganizationUserUserIdDeleteRequest, ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1PlaceDetailsGetRequest, ApiV1ReportItemGetRequest, ApiV1ReportReportIdColumnColumnIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterGetRequest, ApiV1ReportReportIdColumnColumnIdFilterPostRequest, ApiV1ReportReportIdColumnColumnIdFilterPutRequest, ApiV1ReportReportIdColumnGetRequest, ApiV1ReportReportIdColumnPostRequest, ApiV1ReportReportIdColumnPutRequest, ApiV1ReportReportIdDataPostRequest, ApiV1ReportReportIdDeleteRequest, ApiV1ReportReportIdGetRequest, ApiV1RouteComputePostRequest, ApiV1SearchAutocompletePostRequest, ApiV1SearchPostRequest, ApiV1SearchReverseGetRequest, ApiV1SourcePostRequest, ApiV1StatemachineStateMachineIdStatePostRequest, ApiV1StatemachineStateMachineIdTransitionPostRequest, ApiV2ItemPostRequest, ApiV2ReportPostRequest, ApiV2ReportPreviewPostRequest, ApiV2ReportReportIdDataPostRequest, ApiV2ReportReportIdGetRequest, ApiV2ReportReportIdPutRequest, ArticleORM, ArticlePresentationORM, ArticleTypeORM, AutoCompleteORM, AvailableArticlesDto, AvailableArticlesOutput, AxisTime, AxisTitle, CalculateTourInput, CalculateTourOutput, ChartConfiguration, ChartData, ChartDataset, ChartLegend, ChartOptions, ChartPlugins, ChartScales, ChartTitle, ComputeRouteInput, ConfigurationParameters, Consume, CoordDto, DataPoint, Def223, ErrorContext, FetchAPI, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, InitOverrideFunction, InternalMapItemSearchResultORM, ItemDecorationDto, ItemLayerLinkInputDto, ItemLinkToLayerOutput, ItemRenderOptionsInput, ItemRenderOptionsOutput, ItemTypeFormDto, ItemTypeFormOutput, ItemTypeInitialValueInputDto, ItemTypeInitialValueOutput, ItemTypeOutput, ItemsOutput, JobCatalogOutput, JobDefinitionORM, JobInstanceListOutput, JobInstanceORM, JobInstanceOutput, JobRequestInput, JobResultUpdateInput, JournalBookORM, JournalEntryArticleORM, JournalEntryInput, JournalEntryListOutput, JournalEntryMultimediaInput, JournalEntryMultimediaORM, JournalEntryMultimediaOutput, JournalEntryORM, JournalEntryOutput, JournalEntryOutputDto, Json, LayerInputDto, LayerItemTypeFieldFilterDto, LocationForReportORM, LocationORM, LocationOutput, MagnitudeORM, ManualLoginInput, ManualLoginPasswordUpdateInput, ManualRegisterInput, MapClusterListOutputPaginated, MapClusterORM, MapItemArticleInputDto, MapItemArticleORM, MapItemCustomFieldDefinitionORM, MapItemDynamicFieldInputDto, MapItemDynamicFieldORM, MapItemDynamicFieldWithDefinitionORM, MapItemInput, MapItemLinkORM, MapItemLinkOutput, MapItemListOutput, MapItemListOutputPaginated, MapItemMultimediaORM, MapItemMultimediaOutput, MapItemNearByORM, MapItemORM, MapItemOutput, MapItemOutputDto, MapItemOutputDtoProps, MapItemRenderOptionsORM, MapItemStateTransitionLogDto, MapItemTypeDynamicFieldDefinitionOutput, MapItemTypeDynamicFieldDefinitionSingleOutput, MapItemTypeDynamicFieldDefinitionValuesOutput, MapItemTypeFormORM, MapItemTypeFormOutput, MapItemTypeFormSectionDto, MapItemTypeFormSectionFieldORM, MapItemTypeFormSectionFieldOutput, MapItemTypeFormSectionORM, MapItemTypeFormSectionOutput, MapItemTypeInitialValueORM, MapItemTypeORM, MapItemTypeOutput, MapItemTypeSingleOutput, MapItemWithPointsInput, MapLayerContourCoordORM, MapLayerInput, MapLayerItemDecorationORM, MapLayerItemORM, MapLayerItemTypeFieldFilterORM, MapLayerListOutput, MapLayerORM, MapLayerOutput, MapLayerOutputDto, MapListOutput, MapORM, MapOutput, MapZoneInput, MapZoneORM, MapZoneOutput, MapZoneOutputDto, MapZonePointInput, MapZonePointORM, MapZoneWithPointsInput, MeasureUnitORM, Middleware, ModelPropertyNaming, ModelRequestContext, MultimediaORM, MultimediaOutput, MultipleMultimediaOutput, NearbyPlaceDto, NominatimAddressORM, NominatimORM, OAuthClientORM, OAuthRefreshTokenORM, OrganizationORM, PageInfo, PlaceAddressDto, PlaceDetailsDto, PlaceDetailsOutput, ReportAllItemsListOutput, ReportAvailableColumnDto, ReportAvailableColumnsListOutput, ReportColumnFilterListOutput, ReportColumnFilterORM, ReportColumnFilterOutput, ReportColumnListOutput, ReportColumnORM, ReportColumnOutput, ReportConfigurationDto, ReportDataCSVDto, ReportDataDto, ReportDataJSONDto, ReportDataORM, ReportDataOutput, ReportDataRowORM, ReportDto, ReportListOutput, ReportORM, ReportOutput, ReportQueryCatalogField, ReportQueryCatalogOutput, ReportQueryDataDto, ReportQueryDataOutput, ReportQueryDefinition, ReportQueryDimension, ReportQueryDto, ReportQueryFilter, ReportQueryInput, ReportQueryListOutput, ReportQueryMetric, ReportQueryOutput, ReportQueryPreviewInput, ReportQueryResult, ReportQueryResultColumn, ReportQueryResultRow, RequestContext, RequestOpts, ResponseContext, ResponseTransformer, ReverseGeoCodingOutput, RouteDto, RouteLegDto, RouteOutput, RouteStepDto, SearchORM, SearchOutput, SearchResultDto, SearchResultSectionDto, SearchResultSectionItem, SourceDto, SourceListOutput, SourceOutput, StateMachineDefinitionListOutput, StateMachineDefinitionOutput, StateMachineDefinitionOutputDto, StateMachineInput, StateMachineORM, StateMachineOutput, StateMachineStateInput, StateMachineStateORM, StateMachineStateOutputDto, StateMachineTransitionInput, StateMachineTransitionLogORM, StateMachineTransitionORM, StateMachineTransitionOutputDto, UpdateUserInOrganizationPasswordDto, UploadDto, UploadOutput, UserDto, UserInOrganizationDto, UserInOrganizationOutput, UserORM, UserPaymentControlDto, UserPaymentControlOutput, XAxisOptions, YAxisOptions };
3695
+ 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 };
3696
+ export type { AccountORM, AccountOutput, AddUserToOrganizationDto, ApiResponse, ApiV1AccountPostRequest, ApiV1AccountSearchHistoryDeleteRequest, ApiV1AuthManualLoginPostRequest, ApiV1AuthManualPasswordPutRequest, ApiV1AuthManualRegisterPostRequest, ApiV1BackofficeSearchCacheDeleteRequest, ApiV1ItemGetRequest, ApiV1ItemItemIdDeleteRequest, ApiV1ItemItemIdGetRequest, ApiV1ItemItemIdLayerGetRequest, ApiV1ItemItemIdLinkPostRequest, ApiV1ItemItemIdMultimediaPostRequest, ApiV1ItemItemIdRenderPostRequest, ApiV1ItemNearbyGetRequest, ApiV1ItemPostRequest, ApiV1ItemPutRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRequest, ApiV1ItemTypeFormSectionFieldFieldIdDeleteRequest, ApiV1ItemTypeItemTypeIdDeleteRequest, ApiV1ItemTypeItemTypeIdFormGetRequest, ApiV1ItemWithinGetRequest, ApiV1JobJobIdGetRequest, ApiV1JobJobIdPutRequest, ApiV1JobPostRequest, ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, ApiV1JournalParentIdGetRequest, ApiV1JournalParentIdPostRequest, ApiV1JournalParentIdPutRequest, ApiV1LayerLayerIdDeleteRequest, ApiV1LayerLayerIdGetRequest, ApiV1LayerLayerIdItemGetRequest, ApiV1LayerLayerIdItemItemIdPostRequest, ApiV1LayerLayerIdPutRequest, ApiV1LayerLayerIdTourPostRequest, ApiV1LayerLayerIdViewportItemPostRequest, ApiV1LayerPostRequest, ApiV1LayerViewportTileMapZoomLevelTileXTileYGetRequest, ApiV1LocationPointPostRequest, ApiV1LocationZonePostRequest, ApiV1MapCodeMapCodeGetRequest, ApiV1MapMapIdGetRequest, ApiV1MapMapIdLayerGetRequest, ApiV1MapPost402Response, ApiV1MapPostRequest, ApiV1MultimediaHumanRelativeUrlGetRequest, ApiV1MultimediaMultimediaIdGetRequest, ApiV1MultimediaPostRequest, ApiV1MultimediaPptxPostRequest, ApiV1OrganizationPostRequest, ApiV1OrganizationPutRequest, ApiV1OrganizationUserPostRequest, ApiV1OrganizationUserUserIdDeleteRequest, ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1PlaceDetailsGetRequest, ApiV1ReportItemGetRequest, ApiV1ReportReportIdColumnColumnIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterGetRequest, ApiV1ReportReportIdColumnColumnIdFilterPostRequest, ApiV1ReportReportIdColumnColumnIdFilterPutRequest, ApiV1ReportReportIdColumnGetRequest, ApiV1ReportReportIdColumnPostRequest, ApiV1ReportReportIdColumnPutRequest, ApiV1ReportReportIdDataPostRequest, ApiV1ReportReportIdDeleteRequest, ApiV1ReportReportIdGetRequest, ApiV1RouteComputePostRequest, ApiV1SearchAutocompletePostRequest, ApiV1SearchPostRequest, ApiV1SearchReverseGetRequest, ApiV1SourcePostRequest, ApiV1StatemachineStateMachineIdStatePostRequest, ApiV1StatemachineStateMachineIdTransitionPostRequest, ApiV2ItemPostRequest, ApiV2ReportPostRequest, ApiV2ReportPreviewPostRequest, ApiV2ReportReportIdDataPostRequest, ApiV2ReportReportIdGetRequest, ApiV2ReportReportIdPutRequest, ArticleORM, ArticlePresentationORM, ArticleTypeORM, AutoCompleteORM, AvailableArticlesDto, AvailableArticlesOutput, AxisGrid, AxisTime, AxisTitle, CalculateTourInput, CalculateTourOutput, ChartConfiguration, ChartData, ChartDataset, ChartLegend, ChartOptions, ChartPlugins, ChartScales, ChartTitle, ComputeRouteInput, ConfigurationParameters, Consume, CoordDto, DataPoint, Def227, ErrorContext, FetchAPI, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, InitOverrideFunction, InternalMapItemSearchResultORM, ItemDecorationDto, ItemLayerLinkInputDto, ItemLinkToLayerOutput, ItemRenderOptionsInput, ItemRenderOptionsOutput, ItemTypeFormDto, ItemTypeFormOutput, ItemTypeInitialValueInputDto, ItemTypeInitialValueOutput, ItemTypeOutput, ItemsOutput, JobCatalogOutput, JobDefinitionORM, JobInstanceListOutput, JobInstanceORM, JobInstanceOutput, JobRequestInput, JobResultUpdateInput, JournalBookORM, JournalEntryArticleORM, JournalEntryInput, JournalEntryListOutput, JournalEntryMultimediaInput, JournalEntryMultimediaORM, JournalEntryMultimediaOutput, JournalEntryORM, JournalEntryOutput, JournalEntryOutputDto, Json, LayerInputDto, LayerItemTypeFieldFilterDto, LocationForReportORM, LocationORM, LocationOutput, MagnitudeORM, ManualLoginInput, ManualLoginPasswordUpdateInput, ManualRegisterInput, MapClusterListOutputPaginated, MapClusterORM, MapItemArticleInputDto, MapItemArticleORM, MapItemCustomFieldDefinitionORM, MapItemDynamicFieldInputDto, MapItemDynamicFieldORM, MapItemDynamicFieldWithDefinitionORM, MapItemInput, MapItemLinkORM, MapItemLinkOutput, MapItemListOutput, MapItemListOutputPaginated, MapItemMultimediaORM, MapItemMultimediaOutput, MapItemNearByORM, MapItemORM, MapItemOutput, MapItemOutputDto, MapItemOutputDtoProps, MapItemRenderOptionsORM, MapItemStateTransitionLogDto, MapItemTypeDynamicFieldDefinitionOutput, MapItemTypeDynamicFieldDefinitionSingleOutput, MapItemTypeDynamicFieldDefinitionValuesOutput, MapItemTypeFormORM, MapItemTypeFormOutput, MapItemTypeFormSectionDto, MapItemTypeFormSectionFieldORM, MapItemTypeFormSectionFieldOutput, MapItemTypeFormSectionORM, MapItemTypeFormSectionOutput, MapItemTypeInitialValueORM, MapItemTypeORM, MapItemTypeOutput, MapItemTypeSingleOutput, MapItemWithPointsInput, MapLayerContourCoordORM, MapLayerInput, MapLayerItemDecorationORM, MapLayerItemORM, MapLayerItemTypeFieldFilterORM, MapLayerListOutput, MapLayerORM, MapLayerOutput, MapLayerOutputDto, MapListOutput, MapORM, MapOutput, MapZoneInput, MapZoneORM, MapZoneOutput, MapZoneOutputDto, MapZonePointInput, MapZonePointORM, MapZoneWithPointsInput, MeasureUnitORM, Middleware, ModelPropertyNaming, ModelRequestContext, MultimediaORM, MultimediaOutput, MultipleMultimediaOutput, NearbyPlaceDto, NominatimAddressORM, NominatimORM, OAuthClientORM, OAuthRefreshTokenORM, OrganizationORM, PageInfo, PlaceAddressDto, PlaceDetailsDto, PlaceDetailsOutput, ReportAllItemsListOutput, ReportAvailableColumnDto, ReportAvailableColumnsListOutput, ReportColumnFilterListOutput, ReportColumnFilterORM, ReportColumnFilterOutput, ReportColumnListOutput, ReportColumnORM, ReportColumnOutput, ReportConfigurationDto, ReportDataCSVDto, ReportDataDto, ReportDataJSONDto, ReportDataORM, ReportDataOutput, ReportDataRowORM, ReportDto, ReportListOutput, ReportORM, ReportOutput, ReportQueryCatalogField, ReportQueryCatalogOutput, ReportQueryDataDto, ReportQueryDataOutput, ReportQueryDefinition, ReportQueryDimension, ReportQueryDto, ReportQueryFilter, ReportQueryInput, ReportQueryListOutput, ReportQueryMetric, ReportQueryOutput, ReportQueryPreviewInput, ReportQueryResult, ReportQueryResultColumn, ReportQueryResultRow, ReportQuerySeries, RequestContext, RequestOpts, ResponseContext, ResponseTransformer, ReverseGeoCodingOutput, RouteDto, RouteLegDto, RouteOutput, RouteStepDto, SearchORM, SearchOutput, SearchResultDto, SearchResultSectionDto, SearchResultSectionItem, SourceDto, SourceListOutput, SourceOutput, StateMachineDefinitionListOutput, StateMachineDefinitionOutput, StateMachineDefinitionOutputDto, StateMachineInput, StateMachineORM, StateMachineOutput, StateMachineStateInput, StateMachineStateORM, StateMachineStateOutputDto, StateMachineTransitionInput, StateMachineTransitionLogORM, StateMachineTransitionORM, StateMachineTransitionOutputDto, UpdateUserInOrganizationPasswordDto, UploadDto, UploadOutput, UserDto, UserInOrganizationDto, UserInOrganizationOutput, UserORM, UserPaymentControlDto, UserPaymentControlOutput, XAxisOptions, YAxisOptions };