@jrojaspin/security-map-api-cli 4.4.0 → 4.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apis/ReportApi.d.ts +3 -1
- package/dist/apis/ReportApi.js +19 -1
- package/dist/apis/ReportApi.js.map +1 -1
- package/dist/index.d.ts +59 -1
- package/dist/index.mjs +157 -3
- package/dist/index.mjs.map +1 -1
- package/dist/models/Def139.d.ts +8 -0
- package/dist/models/Def139.js +16 -0
- package/dist/models/Def139.js.map +1 -0
- package/dist/models/LocationForReportORM.d.ts +12 -0
- package/dist/models/LocationForReportORM.js +44 -0
- package/dist/models/LocationForReportORM.js.map +1 -0
- package/dist/models/MapItemCustomFieldDefinitionORM.d.ts +2 -0
- package/dist/models/MapItemCustomFieldDefinitionORM.js +6 -1
- package/dist/models/MapItemCustomFieldDefinitionORM.js.map +1 -1
- package/dist/models/MapItemFieldType.d.ts +1 -0
- package/dist/models/MapItemFieldType.js +2 -1
- package/dist/models/MapItemFieldType.js.map +1 -1
- package/dist/models/MapItemTypeFormSectionFieldORM.d.ts +19 -0
- package/dist/models/MapItemTypeFormSectionFieldORM.js +30 -0
- package/dist/models/MapItemTypeFormSectionFieldORM.js.map +1 -1
- package/dist/models/ReportAllItemsListOutput.d.ts +9 -0
- package/dist/models/ReportAllItemsListOutput.js +29 -0
- package/dist/models/ReportAllItemsListOutput.js.map +1 -0
- package/dist/models/ReportColumnORM.d.ts +2 -0
- package/dist/models/ReportColumnORM.js +8 -0
- package/dist/models/ReportColumnORM.js.map +1 -1
- package/dist/models/SearchResultSectionDto.d.ts +1 -0
- package/dist/models/SearchResultSectionDto.js +4 -0
- package/dist/models/SearchResultSectionDto.js.map +1 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
package/dist/apis/ReportApi.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as runtime from '../runtime.js';
|
|
2
|
-
import type { ReportAvailableColumnsListOutput, ReportConfigurationDto, ReportDataOutput, ReportListOutput, ReportOutput } from '../models/index.js';
|
|
2
|
+
import type { ReportAllItemsListOutput, ReportAvailableColumnsListOutput, ReportConfigurationDto, ReportDataOutput, ReportListOutput, ReportOutput } from '../models/index.js';
|
|
3
3
|
export interface ApiV1ReportReportIdDataPostRequest {
|
|
4
4
|
reportId: string;
|
|
5
5
|
format?: ApiV1ReportReportIdDataPostFormatEnum;
|
|
@@ -13,6 +13,8 @@ export declare class ReportApi extends runtime.BaseAPI {
|
|
|
13
13
|
apiV1ReportColumnGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportAvailableColumnsListOutput>;
|
|
14
14
|
apiV1ReportGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ReportListOutput>>;
|
|
15
15
|
apiV1ReportGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportListOutput>;
|
|
16
|
+
apiV1ReportItemGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ReportAllItemsListOutput>>;
|
|
17
|
+
apiV1ReportItemGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportAllItemsListOutput>;
|
|
16
18
|
apiV1ReportReportIdDataPostRaw(requestParameters: ApiV1ReportReportIdDataPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ReportDataOutput>>;
|
|
17
19
|
apiV1ReportReportIdDataPost(requestParameters: ApiV1ReportReportIdDataPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportDataOutput>;
|
|
18
20
|
apiV1ReportReportIdGetRaw(requestParameters: ApiV1ReportReportIdGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ReportOutput>>;
|
package/dist/apis/ReportApi.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as runtime from '../runtime.js';
|
|
2
|
-
import { ReportAvailableColumnsListOutputFromJSON, ReportConfigurationDtoToJSON, ReportDataOutputFromJSON, ReportListOutputFromJSON, ReportOutputFromJSON, } from '../models/index.js';
|
|
2
|
+
import { ReportAllItemsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSON, ReportConfigurationDtoToJSON, ReportDataOutputFromJSON, ReportListOutputFromJSON, ReportOutputFromJSON, } from '../models/index.js';
|
|
3
3
|
export class ReportApi extends runtime.BaseAPI {
|
|
4
4
|
async apiV1ReportColumnGetRaw(initOverrides) {
|
|
5
5
|
const queryParameters = {};
|
|
@@ -37,6 +37,24 @@ export class ReportApi extends runtime.BaseAPI {
|
|
|
37
37
|
const response = await this.apiV1ReportGetRaw(initOverrides);
|
|
38
38
|
return await response.value();
|
|
39
39
|
}
|
|
40
|
+
async apiV1ReportItemGetRaw(initOverrides) {
|
|
41
|
+
const queryParameters = {};
|
|
42
|
+
const headerParameters = {};
|
|
43
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
44
|
+
headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
|
|
45
|
+
}
|
|
46
|
+
const response = await this.request({
|
|
47
|
+
path: `/api/v1/report/item`,
|
|
48
|
+
method: 'GET',
|
|
49
|
+
headers: headerParameters,
|
|
50
|
+
query: queryParameters,
|
|
51
|
+
}, initOverrides);
|
|
52
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ReportAllItemsListOutputFromJSON(jsonValue));
|
|
53
|
+
}
|
|
54
|
+
async apiV1ReportItemGet(initOverrides) {
|
|
55
|
+
const response = await this.apiV1ReportItemGetRaw(initOverrides);
|
|
56
|
+
return await response.value();
|
|
57
|
+
}
|
|
40
58
|
async apiV1ReportReportIdDataPostRaw(requestParameters, initOverrides) {
|
|
41
59
|
if (requestParameters['reportId'] == null) {
|
|
42
60
|
throw new runtime.RequiredError('reportId', 'Required parameter "reportId" was null or undefined when calling apiV1ReportReportIdDataPost().');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReportApi.js","sourceRoot":"","sources":["../../src/apis/ReportApi.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"ReportApi.js","sourceRoot":"","sources":["../../src/apis/ReportApi.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -417,6 +417,15 @@ declare function ChartConfigurationFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
417
417
|
declare function ChartConfigurationToJSON(json: any): ChartConfiguration;
|
|
418
418
|
declare function ChartConfigurationToJSONTyped(value?: ChartConfiguration | null, ignoreDiscriminator?: boolean): any;
|
|
419
419
|
|
|
420
|
+
interface Def139 {
|
|
421
|
+
[key: string]: any;
|
|
422
|
+
}
|
|
423
|
+
declare function instanceOfDef139(value: object): value is Def139;
|
|
424
|
+
declare function Def139FromJSON(json: any): Def139;
|
|
425
|
+
declare function Def139FromJSONTyped(json: any, ignoreDiscriminator: boolean): Def139;
|
|
426
|
+
declare function Def139ToJSON(json: any): Def139;
|
|
427
|
+
declare function Def139ToJSONTyped(value?: Def139 | null, ignoreDiscriminator?: boolean): any;
|
|
428
|
+
|
|
420
429
|
declare const HealthcheckStatusValue: {
|
|
421
430
|
readonly Ok: "ok";
|
|
422
431
|
readonly Down: "down";
|
|
@@ -472,13 +481,32 @@ interface MapItemTypeFormSectionFieldORM {
|
|
|
472
481
|
sectionId: number;
|
|
473
482
|
fieldDefinitionId: number;
|
|
474
483
|
fieldMetaType: MapItemTypeFormSectionFieldORMFieldMetaTypeEnum;
|
|
484
|
+
fieldType: MapItemTypeFormSectionFieldORMFieldTypeEnum;
|
|
485
|
+
fieldDefaultValue: string;
|
|
486
|
+
fieldValidationRegex: string;
|
|
475
487
|
priority: number;
|
|
488
|
+
isRequired: number;
|
|
476
489
|
}
|
|
477
490
|
declare const MapItemTypeFormSectionFieldORMFieldMetaTypeEnum: {
|
|
478
491
|
readonly Base: "base";
|
|
479
492
|
readonly Dynamic: "dynamic";
|
|
480
493
|
};
|
|
481
494
|
type MapItemTypeFormSectionFieldORMFieldMetaTypeEnum = typeof MapItemTypeFormSectionFieldORMFieldMetaTypeEnum[keyof typeof MapItemTypeFormSectionFieldORMFieldMetaTypeEnum];
|
|
495
|
+
declare const MapItemTypeFormSectionFieldORMFieldTypeEnum: {
|
|
496
|
+
readonly String: "STRING";
|
|
497
|
+
readonly Number: "NUMBER";
|
|
498
|
+
readonly Date: "DATE";
|
|
499
|
+
readonly DateTime: "DATE_TIME";
|
|
500
|
+
readonly Boolean: "BOOLEAN";
|
|
501
|
+
readonly Select: "SELECT";
|
|
502
|
+
readonly Multiselect: "MULTISELECT";
|
|
503
|
+
readonly Textarea: "TEXTAREA";
|
|
504
|
+
readonly Link: "LINK";
|
|
505
|
+
readonly Image: "IMAGE";
|
|
506
|
+
readonly File: "FILE";
|
|
507
|
+
readonly MapZone: "MAP_ZONE";
|
|
508
|
+
};
|
|
509
|
+
type MapItemTypeFormSectionFieldORMFieldTypeEnum = typeof MapItemTypeFormSectionFieldORMFieldTypeEnum[keyof typeof MapItemTypeFormSectionFieldORMFieldTypeEnum];
|
|
482
510
|
declare function instanceOfMapItemTypeFormSectionFieldORM(value: object): value is MapItemTypeFormSectionFieldORM;
|
|
483
511
|
declare function MapItemTypeFormSectionFieldORMFromJSON(json: any): MapItemTypeFormSectionFieldORM;
|
|
484
512
|
declare function MapItemTypeFormSectionFieldORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemTypeFormSectionFieldORM;
|
|
@@ -691,6 +719,7 @@ interface MapItemCustomFieldDefinitionORM {
|
|
|
691
719
|
fieldType: MapItemCustomFieldDefinitionORMFieldTypeEnum;
|
|
692
720
|
defaultValue?: string;
|
|
693
721
|
isRequired: number;
|
|
722
|
+
regexValidation: string;
|
|
694
723
|
}
|
|
695
724
|
declare const MapItemCustomFieldDefinitionORMFieldTypeEnum: {
|
|
696
725
|
readonly String: "STRING";
|
|
@@ -704,6 +733,7 @@ declare const MapItemCustomFieldDefinitionORMFieldTypeEnum: {
|
|
|
704
733
|
readonly Link: "LINK";
|
|
705
734
|
readonly Image: "IMAGE";
|
|
706
735
|
readonly File: "FILE";
|
|
736
|
+
readonly MapZone: "MAP_ZONE";
|
|
707
737
|
};
|
|
708
738
|
type MapItemCustomFieldDefinitionORMFieldTypeEnum = typeof MapItemCustomFieldDefinitionORMFieldTypeEnum[keyof typeof MapItemCustomFieldDefinitionORMFieldTypeEnum];
|
|
709
739
|
declare function instanceOfMapItemCustomFieldDefinitionORM(value: object): value is MapItemCustomFieldDefinitionORM;
|
|
@@ -895,6 +925,19 @@ declare function LegendPositionFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
895
925
|
declare function LegendPositionToJSON(value?: LegendPosition | null): any;
|
|
896
926
|
declare function LegendPositionToJSONTyped(value: any, ignoreDiscriminator: boolean): LegendPosition;
|
|
897
927
|
|
|
928
|
+
interface LocationForReportORM {
|
|
929
|
+
id: number;
|
|
930
|
+
lat: number;
|
|
931
|
+
lon: number;
|
|
932
|
+
displayName: string;
|
|
933
|
+
mapZoneId: number;
|
|
934
|
+
}
|
|
935
|
+
declare function instanceOfLocationForReportORM(value: object): value is LocationForReportORM;
|
|
936
|
+
declare function LocationForReportORMFromJSON(json: any): LocationForReportORM;
|
|
937
|
+
declare function LocationForReportORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationForReportORM;
|
|
938
|
+
declare function LocationForReportORMToJSON(json: any): LocationForReportORM;
|
|
939
|
+
declare function LocationForReportORMToJSONTyped(value?: LocationForReportORM | null, ignoreDiscriminator?: boolean): any;
|
|
940
|
+
|
|
898
941
|
interface LocationOutput {
|
|
899
942
|
data: LocationORM;
|
|
900
943
|
}
|
|
@@ -963,6 +1006,7 @@ declare const MapItemFieldType: {
|
|
|
963
1006
|
readonly Link: "LINK";
|
|
964
1007
|
readonly Image: "IMAGE";
|
|
965
1008
|
readonly File: "FILE";
|
|
1009
|
+
readonly MapZone: "MAP_ZONE";
|
|
966
1010
|
};
|
|
967
1011
|
type MapItemFieldType = typeof MapItemFieldType[keyof typeof MapItemFieldType];
|
|
968
1012
|
declare function instanceOfMapItemFieldType(value: any): boolean;
|
|
@@ -1394,6 +1438,15 @@ declare function OrganizationORMFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
1394
1438
|
declare function OrganizationORMToJSON(json: any): OrganizationORM;
|
|
1395
1439
|
declare function OrganizationORMToJSONTyped(value?: OrganizationORM | null, ignoreDiscriminator?: boolean): any;
|
|
1396
1440
|
|
|
1441
|
+
interface ReportAllItemsListOutput {
|
|
1442
|
+
data: Array<Def139>;
|
|
1443
|
+
}
|
|
1444
|
+
declare function instanceOfReportAllItemsListOutput(value: object): value is ReportAllItemsListOutput;
|
|
1445
|
+
declare function ReportAllItemsListOutputFromJSON(json: any): ReportAllItemsListOutput;
|
|
1446
|
+
declare function ReportAllItemsListOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportAllItemsListOutput;
|
|
1447
|
+
declare function ReportAllItemsListOutputToJSON(json: any): ReportAllItemsListOutput;
|
|
1448
|
+
declare function ReportAllItemsListOutputToJSONTyped(value?: ReportAllItemsListOutput | null, ignoreDiscriminator?: boolean): any;
|
|
1449
|
+
|
|
1397
1450
|
interface ReportAvailableColumnDto {
|
|
1398
1451
|
name: string;
|
|
1399
1452
|
columnType: MapItemFieldType;
|
|
@@ -1437,6 +1490,8 @@ interface ReportColumnORM {
|
|
|
1437
1490
|
displayType: string;
|
|
1438
1491
|
createDate?: string;
|
|
1439
1492
|
deleteDate?: string;
|
|
1493
|
+
labelX: string;
|
|
1494
|
+
labelY: string;
|
|
1440
1495
|
}
|
|
1441
1496
|
declare function instanceOfReportColumnORM(value: object): value is ReportColumnORM;
|
|
1442
1497
|
declare function ReportColumnORMFromJSON(json: any): ReportColumnORM;
|
|
@@ -1591,6 +1646,7 @@ interface SearchResultSectionDto {
|
|
|
1591
1646
|
title: string;
|
|
1592
1647
|
priority: number;
|
|
1593
1648
|
items: Array<SearchResultSectionItem>;
|
|
1649
|
+
fromCache: boolean;
|
|
1594
1650
|
}
|
|
1595
1651
|
declare function instanceOfSearchResultSectionDto(value: object): value is SearchResultSectionDto;
|
|
1596
1652
|
declare function SearchResultSectionDtoFromJSON(json: any): SearchResultSectionDto;
|
|
@@ -2039,6 +2095,8 @@ declare class ReportApi extends BaseAPI {
|
|
|
2039
2095
|
apiV1ReportColumnGet(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportAvailableColumnsListOutput>;
|
|
2040
2096
|
apiV1ReportGetRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportListOutput>>;
|
|
2041
2097
|
apiV1ReportGet(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportListOutput>;
|
|
2098
|
+
apiV1ReportItemGetRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportAllItemsListOutput>>;
|
|
2099
|
+
apiV1ReportItemGet(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportAllItemsListOutput>;
|
|
2042
2100
|
apiV1ReportReportIdDataPostRaw(requestParameters: ApiV1ReportReportIdDataPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportDataOutput>>;
|
|
2043
2101
|
apiV1ReportReportIdDataPost(requestParameters: ApiV1ReportReportIdDataPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportDataOutput>;
|
|
2044
2102
|
apiV1ReportReportIdGetRaw(requestParameters: ApiV1ReportReportIdGetRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportOutput>>;
|
|
@@ -2086,4 +2144,4 @@ declare class StateMachineApi extends BaseAPI {
|
|
|
2086
2144
|
apiV1StatemachineGet(initOverrides?: RequestInit | InitOverrideFunction): Promise<StateMachineDefinitionListOutput>;
|
|
2087
2145
|
}
|
|
2088
2146
|
|
|
2089
|
-
export { AccountApi, type AccountORM, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, type AccountOutput, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, type AddUserToOrganizationDto, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, type ApiResponse, type ApiV1AccountPostRequest, type ApiV1AccountSearchHistoryDeleteRequest, type ApiV1AuthManualLoginPostRequest, type ApiV1AuthManualPasswordPutRequest, type ApiV1AuthManualRegisterPostRequest, type ApiV1ItemGetRequest, type ApiV1ItemItemIdGetRequest, type ApiV1ItemItemIdLayerPostRequest, type ApiV1ItemItemIdLinkPostRequest, type ApiV1ItemItemIdMultimediaPostRequest, type ApiV1ItemNearbyGetRequest, type ApiV1ItemPostRequest, type ApiV1ItemPutRequest, type ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, type ApiV1ItemTypeItemTypeIdFormGetRequest, type ApiV1ItemWithinGetRequest, type ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, type ApiV1JournalParentIdGetRequest, type ApiV1JournalParentIdPostRequest, type ApiV1JournalParentIdPutRequest, type ApiV1LocationPointPostRequest, type ApiV1LocationZonePostRequest, type ApiV1MapMapIdGetRequest, type ApiV1MapMapIdLayerGetRequest, type ApiV1MapMapIdLayerLayerIdGetRequest, type ApiV1MapMapIdLayerLayerIdItemGetRequest, type ApiV1MapMapIdLayerPostRequest, type ApiV1MapPostRequest, type ApiV1MultimediaContentTypeRelativeUrlGetRequest, type ApiV1MultimediaMultimediaIdGetRequest, type ApiV1MultimediaPostRequest, type ApiV1OrganizationPostRequest, type ApiV1OrganizationPutRequest, type ApiV1OrganizationUserPostRequest, type ApiV1OrganizationUserUserIdDeleteRequest, type ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1ReportReportIdDataPostFormatEnum, type ApiV1ReportReportIdDataPostRequest, type ApiV1ReportReportIdGetRequest, type ApiV1SearchAutocompletePostRequest, type ApiV1SearchPostRequest, type ApiV1SourcePostRequest, ArticleApi, type ArticleORM, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, type ArticlePresentationORM, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, type ArticleTypeORM, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, type AutoCompleteORM, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, type AvailableArticlesDto, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, type AvailableArticlesOutput, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, type AxisTitle, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, type ChartConfiguration, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, type ChartData, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, type ChartDataset, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, type ChartLegend, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, type ChartOptions, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, type ChartPlugins, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, type ChartScales, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, type ChartTitle, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, Configuration, type ConfigurationParameters, type Consume, type DataPoint, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, type InitOverrideFunction, type InternalMapItemSearchResultORM, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, type ItemLayerLinkInputDto, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, type ItemLinkToLayerOutput, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, type ItemTypeFormDto, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, type ItemTypeFormOutput, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, type ItemTypeOutput, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, type ItemsOutput, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JournalApi, type JournalBookORM, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, type JournalEntryArticleORM, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, type JournalEntryInput, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, type JournalEntryListOutput, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, type JournalEntryMultimediaInput, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, type JournalEntryMultimediaORM, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, type JournalEntryMultimediaOutput, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, type JournalEntryORM, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, type JournalEntryOutput, type JournalEntryOutputDto, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, type Json, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, type LocationORM, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, type LocationOutput, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, type MagnitudeORM, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, type ManualLoginInput, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, type ManualLoginPasswordUpdateInput, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, type ManualRegisterInput, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, type MapItemArticleInputDto, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, type MapItemArticleORM, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, type MapItemCustomFieldDefinitionORM, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, type MapItemDynamicFieldInputDto, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, type MapItemDynamicFieldORM, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, type MapItemDynamicFieldWithDefinitionORM, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, type MapItemInput, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, type MapItemLinkORM, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, type MapItemLinkOutput, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, type MapItemListOutput, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, type MapItemMultimediaORM, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, type MapItemMultimediaOutput, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, type MapItemNearByORM, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, type MapItemORM, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, type MapItemOutput, type MapItemOutputDto, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, type MapItemOutputDtoProps, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, type MapItemTypeDynamicFieldDefinitionOutput, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, type MapItemTypeDynamicFieldDefinitionValuesOutput, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, type MapItemTypeFormORM, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, type MapItemTypeFormSectionDto, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, type MapItemTypeFormSectionFieldORM, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, type MapItemTypeFormSectionORM, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, type MapItemTypeORM, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, type MapItemTypeOutput, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, type MapLayerInput, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, type MapLayerItemListOutput, MapLayerItemListOutputFromJSON, MapLayerItemListOutputFromJSONTyped, MapLayerItemListOutputToJSON, MapLayerItemListOutputToJSONTyped, type MapLayerItemORM, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, type MapLayerItemOutput, MapLayerItemOutputFromJSON, MapLayerItemOutputFromJSONTyped, MapLayerItemOutputToJSON, MapLayerItemOutputToJSONTyped, type MapLayerListOutput, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, type MapLayerORM, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, type MapLayerOutput, type MapLayerOutputDto, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, type MapListOutput, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, type MapORM, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, type MapOutput, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, type MapZoneInput, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, type MapZoneORM, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, type MapZoneOutput, type MapZoneOutputDto, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, type MapZonePointORM, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, type MeasureUnitORM, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, type Middleware, type ModelPropertyNaming, type ModelRequestContext, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, type MultimediaORM, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, type MultimediaOutput, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, type NominatimAddressORM, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, type NominatimORM, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, type OrganizationORM, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, ReportApi, type ReportAvailableColumnDto, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, type ReportAvailableColumnsListOutput, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, type ReportColumnFilterORM, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, type ReportColumnORM, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, type ReportConfigurationDto, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, type ReportDataCSVDto, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, type ReportDataDto, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, type ReportDataJSONDto, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, type ReportDataORM, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, type ReportDataOutput, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, type ReportDataRowORM, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, type ReportDto, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, type ReportListOutput, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, type ReportORM, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, type ReportOutput, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, type SearchORM, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, type SearchOutput, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, type SearchResultDto, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, type SearchResultSectionDto, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, type SearchResultSectionItem, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, type SourceDto, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, type SourceListOutput, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, type SourceOutput, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, type StateMachineDefinitionListOutput, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, type StateMachineDefinitionOutputDto, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, type StateMachineORM, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, type StateMachineStateORM, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, type StateMachineStateOutputDto, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, type StateMachineTransitionLogORM, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, type StateMachineTransitionORM, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, type StateMachineTransitionOutputDto, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, type UpdateUserInOrganizationPasswordDto, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, type UploadDto, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, type UploadOutput, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, type UserDto, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, type UserInOrganizationDto, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, type UserInOrganizationOutput, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, type UserORM, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, VoidApiResponse, type XAxisOptions, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, type YAxisOptions, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTitle, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfDataPoint, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapLayerInput, instanceOfMapLayerItemListOutput, instanceOfMapLayerItemORM, instanceOfMapLayerItemOutput, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnORM, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineORM, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
|
|
2147
|
+
export { AccountApi, type AccountORM, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, type AccountOutput, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, type AddUserToOrganizationDto, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, type ApiResponse, type ApiV1AccountPostRequest, type ApiV1AccountSearchHistoryDeleteRequest, type ApiV1AuthManualLoginPostRequest, type ApiV1AuthManualPasswordPutRequest, type ApiV1AuthManualRegisterPostRequest, type ApiV1ItemGetRequest, type ApiV1ItemItemIdGetRequest, type ApiV1ItemItemIdLayerPostRequest, type ApiV1ItemItemIdLinkPostRequest, type ApiV1ItemItemIdMultimediaPostRequest, type ApiV1ItemNearbyGetRequest, type ApiV1ItemPostRequest, type ApiV1ItemPutRequest, type ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, type ApiV1ItemTypeItemTypeIdFormGetRequest, type ApiV1ItemWithinGetRequest, type ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, type ApiV1JournalParentIdGetRequest, type ApiV1JournalParentIdPostRequest, type ApiV1JournalParentIdPutRequest, type ApiV1LocationPointPostRequest, type ApiV1LocationZonePostRequest, type ApiV1MapMapIdGetRequest, type ApiV1MapMapIdLayerGetRequest, type ApiV1MapMapIdLayerLayerIdGetRequest, type ApiV1MapMapIdLayerLayerIdItemGetRequest, type ApiV1MapMapIdLayerPostRequest, type ApiV1MapPostRequest, type ApiV1MultimediaContentTypeRelativeUrlGetRequest, type ApiV1MultimediaMultimediaIdGetRequest, type ApiV1MultimediaPostRequest, type ApiV1OrganizationPostRequest, type ApiV1OrganizationPutRequest, type ApiV1OrganizationUserPostRequest, type ApiV1OrganizationUserUserIdDeleteRequest, type ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1ReportReportIdDataPostFormatEnum, type ApiV1ReportReportIdDataPostRequest, type ApiV1ReportReportIdGetRequest, type ApiV1SearchAutocompletePostRequest, type ApiV1SearchPostRequest, type ApiV1SourcePostRequest, ArticleApi, type ArticleORM, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, type ArticlePresentationORM, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, type ArticleTypeORM, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, type AutoCompleteORM, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, type AvailableArticlesDto, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, type AvailableArticlesOutput, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, type AxisTitle, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, type ChartConfiguration, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, type ChartData, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, type ChartDataset, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, type ChartLegend, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, type ChartOptions, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, type ChartPlugins, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, type ChartScales, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, type ChartTitle, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, Configuration, type ConfigurationParameters, type Consume, type DataPoint, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, type Def139, Def139FromJSON, Def139FromJSONTyped, Def139ToJSON, Def139ToJSONTyped, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, type InitOverrideFunction, type InternalMapItemSearchResultORM, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, type ItemLayerLinkInputDto, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, type ItemLinkToLayerOutput, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, type ItemTypeFormDto, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, type ItemTypeFormOutput, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, type ItemTypeOutput, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, type ItemsOutput, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JournalApi, type JournalBookORM, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, type JournalEntryArticleORM, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, type JournalEntryInput, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, type JournalEntryListOutput, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, type JournalEntryMultimediaInput, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, type JournalEntryMultimediaORM, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, type JournalEntryMultimediaOutput, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, type JournalEntryORM, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, type JournalEntryOutput, type JournalEntryOutputDto, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, type Json, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, type LocationForReportORM, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, type LocationORM, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, type LocationOutput, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, type MagnitudeORM, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, type ManualLoginInput, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, type ManualLoginPasswordUpdateInput, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, type ManualRegisterInput, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, type MapItemArticleInputDto, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, type MapItemArticleORM, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, type MapItemCustomFieldDefinitionORM, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, type MapItemDynamicFieldInputDto, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, type MapItemDynamicFieldORM, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, type MapItemDynamicFieldWithDefinitionORM, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, type MapItemInput, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, type MapItemLinkORM, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, type MapItemLinkOutput, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, type MapItemListOutput, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, type MapItemMultimediaORM, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, type MapItemMultimediaOutput, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, type MapItemNearByORM, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, type MapItemORM, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, type MapItemOutput, type MapItemOutputDto, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, type MapItemOutputDtoProps, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, type MapItemTypeDynamicFieldDefinitionOutput, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, type MapItemTypeDynamicFieldDefinitionValuesOutput, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, type MapItemTypeFormORM, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, type MapItemTypeFormSectionDto, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, type MapItemTypeFormSectionFieldORM, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, type MapItemTypeFormSectionORM, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, type MapItemTypeORM, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, type MapItemTypeOutput, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, type MapLayerInput, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, type MapLayerItemListOutput, MapLayerItemListOutputFromJSON, MapLayerItemListOutputFromJSONTyped, MapLayerItemListOutputToJSON, MapLayerItemListOutputToJSONTyped, type MapLayerItemORM, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, type MapLayerItemOutput, MapLayerItemOutputFromJSON, MapLayerItemOutputFromJSONTyped, MapLayerItemOutputToJSON, MapLayerItemOutputToJSONTyped, type MapLayerListOutput, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, type MapLayerORM, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, type MapLayerOutput, type MapLayerOutputDto, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, type MapListOutput, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, type MapORM, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, type MapOutput, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, type MapZoneInput, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, type MapZoneORM, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, type MapZoneOutput, type MapZoneOutputDto, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, type MapZonePointORM, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, type MeasureUnitORM, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, type Middleware, type ModelPropertyNaming, type ModelRequestContext, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, type MultimediaORM, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, type MultimediaOutput, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, type NominatimAddressORM, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, type NominatimORM, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OrganizationApi, type OrganizationORM, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, type ReportAllItemsListOutput, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, type ReportAvailableColumnDto, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, type ReportAvailableColumnsListOutput, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, type ReportColumnFilterORM, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, type ReportColumnORM, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, type ReportConfigurationDto, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, type ReportDataCSVDto, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, type ReportDataDto, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, type ReportDataJSONDto, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, type ReportDataORM, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, type ReportDataOutput, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, type ReportDataRowORM, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, type ReportDto, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, type ReportListOutput, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, type ReportORM, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, type ReportOutput, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, type SearchORM, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, type SearchOutput, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, type SearchResultDto, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, type SearchResultSectionDto, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, type SearchResultSectionItem, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, type SourceDto, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, type SourceListOutput, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, type SourceOutput, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, type StateMachineDefinitionListOutput, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, type StateMachineDefinitionOutputDto, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, type StateMachineORM, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, type StateMachineStateORM, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, type StateMachineStateOutputDto, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, type StateMachineTransitionLogORM, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, type StateMachineTransitionORM, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, type StateMachineTransitionOutputDto, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, type UpdateUserInOrganizationPasswordDto, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, type UploadDto, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, type UploadOutput, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, type UserDto, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, type UserInOrganizationDto, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, type UserInOrganizationOutput, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, type UserORM, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, VoidApiResponse, type XAxisOptions, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, type YAxisOptions, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisTitle, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfDataPoint, instanceOfDef139, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapLayerInput, instanceOfMapLayerItemListOutput, instanceOfMapLayerItemORM, instanceOfMapLayerItemOutput, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointORM, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOrganizationORM, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnORM, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineORM, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
|