@jrojaspin/security-map-api-cli 2.3.0 → 2.4.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/AccountApi.d.ts +18 -0
- package/dist/apis/AccountApi.js +82 -0
- package/dist/apis/AccountApi.js.map +1 -0
- package/dist/apis/ArticleApi.d.ts +6 -0
- package/dist/apis/ArticleApi.js +23 -0
- package/dist/apis/ArticleApi.js.map +1 -0
- package/dist/apis/HealthcheckApi.d.ts +5 -0
- package/dist/apis/HealthcheckApi.js +27 -0
- package/dist/apis/HealthcheckApi.js.map +1 -0
- package/dist/apis/ItemApi.d.ts +69 -0
- package/dist/apis/ItemApi.js +312 -0
- package/dist/apis/ItemApi.js.map +1 -0
- package/dist/apis/JournalApi.d.ts +22 -0
- package/dist/apis/JournalApi.js +75 -0
- package/dist/apis/JournalApi.js.map +1 -0
- package/dist/apis/LocationApi.d.ts +14 -0
- package/dist/apis/LocationApi.js +45 -0
- package/dist/apis/LocationApi.js.map +1 -0
- package/dist/apis/LoginApi.d.ts +29 -0
- package/dist/apis/LoginApi.js +178 -0
- package/dist/apis/LoginApi.js.map +1 -0
- package/dist/apis/MapApi.d.ts +39 -0
- package/dist/apis/MapApi.js +156 -0
- package/dist/apis/MapApi.js.map +1 -0
- package/dist/apis/MultimediaApi.d.ts +17 -0
- package/dist/apis/MultimediaApi.js +66 -0
- package/dist/apis/MultimediaApi.js.map +1 -0
- package/dist/apis/OrganizationApi.d.ts +32 -0
- package/dist/apis/OrganizationApi.js +127 -0
- package/dist/apis/OrganizationApi.js.map +1 -0
- package/dist/apis/ReportApi.d.ts +23 -0
- package/dist/apis/ReportApi.js +74 -0
- package/dist/apis/ReportApi.js.map +1 -0
- package/dist/apis/SearchApi.d.ts +12 -0
- package/dist/apis/SearchApi.js +50 -0
- package/dist/apis/SearchApi.js.map +1 -0
- package/dist/apis/SourceApi.d.ts +11 -0
- package/dist/apis/SourceApi.js +43 -0
- package/dist/apis/SourceApi.js.map +1 -0
- package/dist/apis/StateMachineApi.d.ts +6 -0
- package/dist/apis/StateMachineApi.js +23 -0
- package/dist/apis/StateMachineApi.js.map +1 -0
- package/dist/apis/index.d.ts +14 -0
- package/dist/apis/index.js +15 -0
- package/dist/apis/index.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6209 -0
- package/dist/index.mjs.map +1 -0
- package/dist/models/AccountORM.d.ts +9 -0
- package/dist/models/AccountORM.js +28 -0
- package/dist/models/AccountORM.js.map +1 -0
- package/dist/models/AccountOutput.d.ts +9 -0
- package/dist/models/AccountOutput.js +29 -0
- package/dist/models/AccountOutput.js.map +1 -0
- package/dist/models/AddUserToOrganizationDto.d.ts +9 -0
- package/dist/models/AddUserToOrganizationDto.js +29 -0
- package/dist/models/AddUserToOrganizationDto.js.map +1 -0
- package/dist/models/ArticleORM.d.ts +13 -0
- package/dist/models/ArticleORM.js +42 -0
- package/dist/models/ArticleORM.js.map +1 -0
- package/dist/models/ArticlePresentationORM.d.ts +10 -0
- package/dist/models/ArticlePresentationORM.js +34 -0
- package/dist/models/ArticlePresentationORM.js.map +1 -0
- package/dist/models/ArticleTypeORM.d.ts +9 -0
- package/dist/models/ArticleTypeORM.js +30 -0
- package/dist/models/ArticleTypeORM.js.map +1 -0
- package/dist/models/AutoCompleteORM.d.ts +12 -0
- package/dist/models/AutoCompleteORM.js +36 -0
- package/dist/models/AutoCompleteORM.js.map +1 -0
- package/dist/models/AvailableArticlesDto.d.ts +17 -0
- package/dist/models/AvailableArticlesDto.js +49 -0
- package/dist/models/AvailableArticlesDto.js.map +1 -0
- package/dist/models/AvailableArticlesOutput.d.ts +9 -0
- package/dist/models/AvailableArticlesOutput.js +29 -0
- package/dist/models/AvailableArticlesOutput.js.map +1 -0
- package/dist/models/AxisTitle.d.ts +9 -0
- package/dist/models/AxisTitle.js +32 -0
- package/dist/models/AxisTitle.js.map +1 -0
- package/dist/models/ChartConfiguration.d.ts +12 -0
- package/dist/models/ChartConfiguration.js +38 -0
- package/dist/models/ChartConfiguration.js.map +1 -0
- package/dist/models/ChartData.d.ts +9 -0
- package/dist/models/ChartData.js +29 -0
- package/dist/models/ChartData.js.map +1 -0
- package/dist/models/ChartDataset.d.ts +16 -0
- package/dist/models/ChartDataset.js +45 -0
- package/dist/models/ChartDataset.js.map +1 -0
- package/dist/models/ChartLegend.d.ts +15 -0
- package/dist/models/ChartLegend.js +34 -0
- package/dist/models/ChartLegend.js.map +1 -0
- package/dist/models/ChartOptions.d.ts +12 -0
- package/dist/models/ChartOptions.js +38 -0
- package/dist/models/ChartOptions.js.map +1 -0
- package/dist/models/ChartPlugins.d.ts +11 -0
- package/dist/models/ChartPlugins.js +34 -0
- package/dist/models/ChartPlugins.js.map +1 -0
- package/dist/models/ChartScales.d.ts +11 -0
- package/dist/models/ChartScales.js +34 -0
- package/dist/models/ChartScales.js.map +1 -0
- package/dist/models/ChartTitle.d.ts +9 -0
- package/dist/models/ChartTitle.js +32 -0
- package/dist/models/ChartTitle.js.map +1 -0
- package/dist/models/DataPoint.d.ts +9 -0
- package/dist/models/DataPoint.js +32 -0
- package/dist/models/DataPoint.js.map +1 -0
- package/dist/models/ItemLayerLinkInputDto.d.ts +8 -0
- package/dist/models/ItemLayerLinkInputDto.js +28 -0
- package/dist/models/ItemLayerLinkInputDto.js.map +1 -0
- package/dist/models/ItemLinkToLayerOutput.d.ts +8 -0
- package/dist/models/ItemLinkToLayerOutput.js +28 -0
- package/dist/models/ItemLinkToLayerOutput.js.map +1 -0
- package/dist/models/ItemTypeFormDto.d.ts +13 -0
- package/dist/models/ItemTypeFormDto.js +39 -0
- package/dist/models/ItemTypeFormDto.js.map +1 -0
- package/dist/models/ItemTypeFormOutput.d.ts +9 -0
- package/dist/models/ItemTypeFormOutput.js +29 -0
- package/dist/models/ItemTypeFormOutput.js.map +1 -0
- package/dist/models/ItemTypeORM.d.ts +13 -0
- package/dist/models/ItemTypeORM.js +42 -0
- package/dist/models/ItemTypeORM.js.map +1 -0
- package/dist/models/ItemTypeOutput.d.ts +9 -0
- package/dist/models/ItemTypeOutput.js +29 -0
- package/dist/models/ItemTypeOutput.js.map +1 -0
- package/dist/models/ItemsOutput.d.ts +9 -0
- package/dist/models/ItemsOutput.js +29 -0
- package/dist/models/ItemsOutput.js.map +1 -0
- package/dist/models/JournalBookORM.d.ts +10 -0
- package/dist/models/JournalBookORM.js +36 -0
- package/dist/models/JournalBookORM.js.map +1 -0
- package/dist/models/JournalEntryArticleORM.d.ts +13 -0
- package/dist/models/JournalEntryArticleORM.js +46 -0
- package/dist/models/JournalEntryArticleORM.js.map +1 -0
- package/dist/models/JournalEntryListOutput.d.ts +9 -0
- package/dist/models/JournalEntryListOutput.js +29 -0
- package/dist/models/JournalEntryListOutput.js.map +1 -0
- package/dist/models/JournalEntryMultimediaInput.d.ts +8 -0
- package/dist/models/JournalEntryMultimediaInput.js +28 -0
- package/dist/models/JournalEntryMultimediaInput.js.map +1 -0
- package/dist/models/JournalEntryMultimediaORM.d.ts +10 -0
- package/dist/models/JournalEntryMultimediaORM.js +34 -0
- package/dist/models/JournalEntryMultimediaORM.js.map +1 -0
- package/dist/models/JournalEntryMultimediaOutput.d.ts +8 -0
- package/dist/models/JournalEntryMultimediaOutput.js +28 -0
- package/dist/models/JournalEntryMultimediaOutput.js.map +1 -0
- package/dist/models/JournalEntryORM.d.ts +13 -0
- package/dist/models/JournalEntryORM.js +40 -0
- package/dist/models/JournalEntryORM.js.map +1 -0
- package/dist/models/JournalEntryOutput.d.ts +9 -0
- package/dist/models/JournalEntryOutput.js +29 -0
- package/dist/models/JournalEntryOutput.js.map +1 -0
- package/dist/models/JournalEntryOutputDto.d.ts +9 -0
- package/dist/models/JournalEntryOutputDto.js +32 -0
- package/dist/models/JournalEntryOutputDto.js.map +1 -0
- package/dist/models/LegendPosition.d.ts +12 -0
- package/dist/models/LegendPosition.js +29 -0
- package/dist/models/LegendPosition.js.map +1 -0
- package/dist/models/LocationORM.d.ts +25 -0
- package/dist/models/LocationORM.js +94 -0
- package/dist/models/LocationORM.js.map +1 -0
- package/dist/models/LocationOutput.d.ts +9 -0
- package/dist/models/LocationOutput.js +29 -0
- package/dist/models/LocationOutput.js.map +1 -0
- package/dist/models/MagnitudeORM.d.ts +9 -0
- package/dist/models/MagnitudeORM.js +30 -0
- package/dist/models/MagnitudeORM.js.map +1 -0
- package/dist/models/ManualLoginInput.d.ts +9 -0
- package/dist/models/ManualLoginInput.js +32 -0
- package/dist/models/ManualLoginInput.js.map +1 -0
- package/dist/models/ManualLoginPasswordUpdateInput.d.ts +9 -0
- package/dist/models/ManualLoginPasswordUpdateInput.js +32 -0
- package/dist/models/ManualLoginPasswordUpdateInput.js.map +1 -0
- package/dist/models/ManualRegisterInput.d.ts +10 -0
- package/dist/models/ManualRegisterInput.js +36 -0
- package/dist/models/ManualRegisterInput.js.map +1 -0
- package/dist/models/MapItemArticleInputDto.d.ts +13 -0
- package/dist/models/MapItemArticleInputDto.js +44 -0
- package/dist/models/MapItemArticleInputDto.js.map +1 -0
- package/dist/models/MapItemArticleORM.d.ts +13 -0
- package/dist/models/MapItemArticleORM.js +46 -0
- package/dist/models/MapItemArticleORM.js.map +1 -0
- package/dist/models/MapItemCustomFieldDefinitionORM.d.ts +11 -0
- package/dist/models/MapItemCustomFieldDefinitionORM.js +38 -0
- package/dist/models/MapItemCustomFieldDefinitionORM.js.map +1 -0
- package/dist/models/MapItemDynamicFieldInputDto.d.ts +11 -0
- package/dist/models/MapItemDynamicFieldInputDto.js +36 -0
- package/dist/models/MapItemDynamicFieldInputDto.js.map +1 -0
- package/dist/models/MapItemDynamicFieldORM.d.ts +11 -0
- package/dist/models/MapItemDynamicFieldORM.js +38 -0
- package/dist/models/MapItemDynamicFieldORM.js.map +1 -0
- package/dist/models/MapItemDynamicFieldWithDefinitionORM.d.ts +11 -0
- package/dist/models/MapItemDynamicFieldWithDefinitionORM.js +34 -0
- package/dist/models/MapItemDynamicFieldWithDefinitionORM.js.map +1 -0
- package/dist/models/MapItemInput.d.ts +23 -0
- package/dist/models/MapItemInput.js +69 -0
- package/dist/models/MapItemInput.js.map +1 -0
- package/dist/models/MapItemLinkORM.d.ts +13 -0
- package/dist/models/MapItemLinkORM.js +42 -0
- package/dist/models/MapItemLinkORM.js.map +1 -0
- package/dist/models/MapItemLinkOutput.d.ts +9 -0
- package/dist/models/MapItemLinkOutput.js +29 -0
- package/dist/models/MapItemLinkOutput.js.map +1 -0
- package/dist/models/MapItemListOutput.d.ts +9 -0
- package/dist/models/MapItemListOutput.js +29 -0
- package/dist/models/MapItemListOutput.js.map +1 -0
- package/dist/models/MapItemMultimediaORM.d.ts +10 -0
- package/dist/models/MapItemMultimediaORM.js +34 -0
- package/dist/models/MapItemMultimediaORM.js.map +1 -0
- package/dist/models/MapItemMultimediaOutput.d.ts +9 -0
- package/dist/models/MapItemMultimediaOutput.js +29 -0
- package/dist/models/MapItemMultimediaOutput.js.map +1 -0
- package/dist/models/MapItemNearByORM.d.ts +9 -0
- package/dist/models/MapItemNearByORM.js +32 -0
- package/dist/models/MapItemNearByORM.js.map +1 -0
- package/dist/models/MapItemORM.d.ts +16 -0
- package/dist/models/MapItemORM.js +50 -0
- package/dist/models/MapItemORM.js.map +1 -0
- package/dist/models/MapItemOutput.d.ts +9 -0
- package/dist/models/MapItemOutput.js +29 -0
- package/dist/models/MapItemOutput.js.map +1 -0
- package/dist/models/MapItemOutputDto.d.ts +27 -0
- package/dist/models/MapItemOutputDto.js +84 -0
- package/dist/models/MapItemOutputDto.js.map +1 -0
- package/dist/models/MapItemOutputDtoProps.d.ts +27 -0
- package/dist/models/MapItemOutputDtoProps.js +84 -0
- package/dist/models/MapItemOutputDtoProps.js.map +1 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionOutput.d.ts +9 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionOutput.js +29 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionOutput.js.map +1 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.d.ts +8 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.js +28 -0
- package/dist/models/MapItemTypeDynamicFieldDefinitionValuesOutput.js.map +1 -0
- package/dist/models/MapItemTypeFormORM.d.ts +10 -0
- package/dist/models/MapItemTypeFormORM.js +34 -0
- package/dist/models/MapItemTypeFormORM.js.map +1 -0
- package/dist/models/MapItemTypeFormSectionDto.d.ts +11 -0
- package/dist/models/MapItemTypeFormSectionDto.js +34 -0
- package/dist/models/MapItemTypeFormSectionDto.js.map +1 -0
- package/dist/models/MapItemTypeFormSectionFieldORM.d.ts +12 -0
- package/dist/models/MapItemTypeFormSectionFieldORM.js +42 -0
- package/dist/models/MapItemTypeFormSectionFieldORM.js.map +1 -0
- package/dist/models/MapItemTypeFormSectionORM.d.ts +11 -0
- package/dist/models/MapItemTypeFormSectionORM.js +38 -0
- package/dist/models/MapItemTypeFormSectionORM.js.map +1 -0
- package/dist/models/MapItemTypeORM.d.ts +16 -0
- package/dist/models/MapItemTypeORM.js +54 -0
- package/dist/models/MapItemTypeORM.js.map +1 -0
- package/dist/models/MapItemTypeOutput.d.ts +9 -0
- package/dist/models/MapItemTypeOutput.js +29 -0
- package/dist/models/MapItemTypeOutput.js.map +1 -0
- package/dist/models/MapLayerInput.d.ts +10 -0
- package/dist/models/MapLayerInput.js +36 -0
- package/dist/models/MapLayerInput.js.map +1 -0
- package/dist/models/MapLayerItemListOutput.d.ts +9 -0
- package/dist/models/MapLayerItemListOutput.js +29 -0
- package/dist/models/MapLayerItemListOutput.js.map +1 -0
- package/dist/models/MapLayerItemORM.d.ts +12 -0
- package/dist/models/MapLayerItemORM.js +42 -0
- package/dist/models/MapLayerItemORM.js.map +1 -0
- package/dist/models/MapLayerItemOutput.d.ts +9 -0
- package/dist/models/MapLayerItemOutput.js +29 -0
- package/dist/models/MapLayerItemOutput.js.map +1 -0
- package/dist/models/MapLayerListOutput.d.ts +9 -0
- package/dist/models/MapLayerListOutput.js +29 -0
- package/dist/models/MapLayerListOutput.js.map +1 -0
- package/dist/models/MapLayerORM.d.ts +12 -0
- package/dist/models/MapLayerORM.js +38 -0
- package/dist/models/MapLayerORM.js.map +1 -0
- package/dist/models/MapLayerOutput.d.ts +9 -0
- package/dist/models/MapLayerOutput.js +29 -0
- package/dist/models/MapLayerOutput.js.map +1 -0
- package/dist/models/MapLayerOutputDto.d.ts +14 -0
- package/dist/models/MapLayerOutputDto.js +47 -0
- package/dist/models/MapLayerOutputDto.js.map +1 -0
- package/dist/models/MapListOutput.d.ts +9 -0
- package/dist/models/MapListOutput.js +29 -0
- package/dist/models/MapListOutput.js.map +1 -0
- package/dist/models/MapORM.d.ts +13 -0
- package/dist/models/MapORM.js +42 -0
- package/dist/models/MapORM.js.map +1 -0
- package/dist/models/MapOutput.d.ts +9 -0
- package/dist/models/MapOutput.js +29 -0
- package/dist/models/MapOutput.js.map +1 -0
- package/dist/models/MapZoneInput.d.ts +8 -0
- package/dist/models/MapZoneInput.js +28 -0
- package/dist/models/MapZoneInput.js.map +1 -0
- package/dist/models/MapZoneORM.d.ts +10 -0
- package/dist/models/MapZoneORM.js +34 -0
- package/dist/models/MapZoneORM.js.map +1 -0
- package/dist/models/MapZoneOutput.d.ts +9 -0
- package/dist/models/MapZoneOutput.js +29 -0
- package/dist/models/MapZoneOutput.js.map +1 -0
- package/dist/models/MapZoneOutputDto.d.ts +12 -0
- package/dist/models/MapZoneOutputDto.js +39 -0
- package/dist/models/MapZoneOutputDto.js.map +1 -0
- package/dist/models/MapZonePointORM.d.ts +10 -0
- package/dist/models/MapZonePointORM.js +34 -0
- package/dist/models/MapZonePointORM.js.map +1 -0
- package/dist/models/MeasureUnitORM.d.ts +11 -0
- package/dist/models/MeasureUnitORM.js +38 -0
- package/dist/models/MeasureUnitORM.js.map +1 -0
- package/dist/models/ModelRequestContext.d.ts +9 -0
- package/dist/models/ModelRequestContext.js +30 -0
- package/dist/models/ModelRequestContext.js.map +1 -0
- package/dist/models/MultimediaORM.d.ts +12 -0
- package/dist/models/MultimediaORM.js +38 -0
- package/dist/models/MultimediaORM.js.map +1 -0
- package/dist/models/MultimediaOutput.d.ts +9 -0
- package/dist/models/MultimediaOutput.js +29 -0
- package/dist/models/MultimediaOutput.js.map +1 -0
- package/dist/models/NominatimAddressORM.d.ts +17 -0
- package/dist/models/NominatimAddressORM.js +64 -0
- package/dist/models/NominatimAddressORM.js.map +1 -0
- package/dist/models/NominatimORM.d.ts +22 -0
- package/dist/models/NominatimORM.js +84 -0
- package/dist/models/NominatimORM.js.map +1 -0
- package/dist/models/OrganizationORM.d.ts +10 -0
- package/dist/models/OrganizationORM.js +34 -0
- package/dist/models/OrganizationORM.js.map +1 -0
- package/dist/models/ReportAvailableColumnDto.d.ts +9 -0
- package/dist/models/ReportAvailableColumnDto.js +32 -0
- package/dist/models/ReportAvailableColumnDto.js.map +1 -0
- package/dist/models/ReportAvailableColumnsListOutput.d.ts +9 -0
- package/dist/models/ReportAvailableColumnsListOutput.js +29 -0
- package/dist/models/ReportAvailableColumnsListOutput.js.map +1 -0
- package/dist/models/ReportColumnFilterORM.d.ts +12 -0
- package/dist/models/ReportColumnFilterORM.js +42 -0
- package/dist/models/ReportColumnFilterORM.js.map +1 -0
- package/dist/models/ReportColumnORM.d.ts +16 -0
- package/dist/models/ReportColumnORM.js +54 -0
- package/dist/models/ReportColumnORM.js.map +1 -0
- package/dist/models/ReportConfigurationDto.d.ts +9 -0
- package/dist/models/ReportConfigurationDto.js +32 -0
- package/dist/models/ReportConfigurationDto.js.map +1 -0
- package/dist/models/ReportDataCSVDto.d.ts +8 -0
- package/dist/models/ReportDataCSVDto.js +28 -0
- package/dist/models/ReportDataCSVDto.js.map +1 -0
- package/dist/models/ReportDataDto.d.ts +11 -0
- package/dist/models/ReportDataDto.js +30 -0
- package/dist/models/ReportDataDto.js.map +1 -0
- package/dist/models/ReportDataJSONDto.d.ts +9 -0
- package/dist/models/ReportDataJSONDto.js +29 -0
- package/dist/models/ReportDataJSONDto.js.map +1 -0
- package/dist/models/ReportDataORM.d.ts +9 -0
- package/dist/models/ReportDataORM.js +29 -0
- package/dist/models/ReportDataORM.js.map +1 -0
- package/dist/models/ReportDataOutput.d.ts +9 -0
- package/dist/models/ReportDataOutput.js +29 -0
- package/dist/models/ReportDataOutput.js.map +1 -0
- package/dist/models/ReportDataRowORM.d.ts +8 -0
- package/dist/models/ReportDataRowORM.js +28 -0
- package/dist/models/ReportDataRowORM.js.map +1 -0
- package/dist/models/ReportDto.d.ts +9 -0
- package/dist/models/ReportDto.js +32 -0
- package/dist/models/ReportDto.js.map +1 -0
- package/dist/models/ReportListOutput.d.ts +9 -0
- package/dist/models/ReportListOutput.js +29 -0
- package/dist/models/ReportListOutput.js.map +1 -0
- package/dist/models/ReportORM.d.ts +12 -0
- package/dist/models/ReportORM.js +38 -0
- package/dist/models/ReportORM.js.map +1 -0
- package/dist/models/ReportOutput.d.ts +9 -0
- package/dist/models/ReportOutput.js +29 -0
- package/dist/models/ReportOutput.js.map +1 -0
- package/dist/models/SearchORM.d.ts +10 -0
- package/dist/models/SearchORM.js +36 -0
- package/dist/models/SearchORM.js.map +1 -0
- package/dist/models/SearchOutput.d.ts +9 -0
- package/dist/models/SearchOutput.js +29 -0
- package/dist/models/SearchOutput.js.map +1 -0
- package/dist/models/SearchResultDto.d.ts +9 -0
- package/dist/models/SearchResultDto.js +29 -0
- package/dist/models/SearchResultDto.js.map +1 -0
- package/dist/models/SearchResultSectionDto.d.ts +11 -0
- package/dist/models/SearchResultSectionDto.js +37 -0
- package/dist/models/SearchResultSectionDto.js.map +1 -0
- package/dist/models/SearchResultSectionItem.d.ts +12 -0
- package/dist/models/SearchResultSectionItem.js +39 -0
- package/dist/models/SearchResultSectionItem.js.map +1 -0
- package/dist/models/SourceDto.d.ts +9 -0
- package/dist/models/SourceDto.js +30 -0
- package/dist/models/SourceDto.js.map +1 -0
- package/dist/models/SourceListOutput.d.ts +9 -0
- package/dist/models/SourceListOutput.js +29 -0
- package/dist/models/SourceListOutput.js.map +1 -0
- package/dist/models/SourceOutput.d.ts +9 -0
- package/dist/models/SourceOutput.js +29 -0
- package/dist/models/SourceOutput.js.map +1 -0
- package/dist/models/StateMachineDefinitionListOutput.d.ts +9 -0
- package/dist/models/StateMachineDefinitionListOutput.js +29 -0
- package/dist/models/StateMachineDefinitionListOutput.js.map +1 -0
- package/dist/models/StateMachineDefinitionOutputDto.d.ts +14 -0
- package/dist/models/StateMachineDefinitionOutputDto.js +46 -0
- package/dist/models/StateMachineDefinitionOutputDto.js.map +1 -0
- package/dist/models/StateMachineORM.d.ts +10 -0
- package/dist/models/StateMachineORM.js +32 -0
- package/dist/models/StateMachineORM.js.map +1 -0
- package/dist/models/StateMachineStateORM.d.ts +11 -0
- package/dist/models/StateMachineStateORM.js +38 -0
- package/dist/models/StateMachineStateORM.js.map +1 -0
- package/dist/models/StateMachineStateOutputDto.d.ts +10 -0
- package/dist/models/StateMachineStateOutputDto.js +36 -0
- package/dist/models/StateMachineStateOutputDto.js.map +1 -0
- package/dist/models/StateMachineTransitionLogORM.d.ts +12 -0
- package/dist/models/StateMachineTransitionLogORM.js +40 -0
- package/dist/models/StateMachineTransitionLogORM.js.map +1 -0
- package/dist/models/StateMachineTransitionORM.d.ts +12 -0
- package/dist/models/StateMachineTransitionORM.js +42 -0
- package/dist/models/StateMachineTransitionORM.js.map +1 -0
- package/dist/models/StateMachineTransitionOutputDto.d.ts +11 -0
- package/dist/models/StateMachineTransitionOutputDto.js +40 -0
- package/dist/models/StateMachineTransitionOutputDto.js.map +1 -0
- package/dist/models/UpdateUserInOrganizationPasswordDto.d.ts +8 -0
- package/dist/models/UpdateUserInOrganizationPasswordDto.js +28 -0
- package/dist/models/UpdateUserInOrganizationPasswordDto.js.map +1 -0
- package/dist/models/UploadDto.d.ts +9 -0
- package/dist/models/UploadDto.js +32 -0
- package/dist/models/UploadDto.js.map +1 -0
- package/dist/models/UploadOutput.d.ts +9 -0
- package/dist/models/UploadOutput.js +29 -0
- package/dist/models/UploadOutput.js.map +1 -0
- package/dist/models/UserDto.d.ts +10 -0
- package/dist/models/UserDto.js +33 -0
- package/dist/models/UserDto.js.map +1 -0
- package/dist/models/UserInOrganizationDto.d.ts +15 -0
- package/dist/models/UserInOrganizationDto.js +56 -0
- package/dist/models/UserInOrganizationDto.js.map +1 -0
- package/dist/models/UserInOrganizationOutput.d.ts +9 -0
- package/dist/models/UserInOrganizationOutput.js +29 -0
- package/dist/models/UserInOrganizationOutput.js.map +1 -0
- package/dist/models/UserORM.d.ts +17 -0
- package/dist/models/UserORM.js +60 -0
- package/dist/models/UserORM.js.map +1 -0
- package/dist/models/XAxisOptions.d.ts +10 -0
- package/dist/models/XAxisOptions.js +33 -0
- package/dist/models/XAxisOptions.js.map +1 -0
- package/dist/models/YAxisOptions.d.ts +10 -0
- package/dist/models/YAxisOptions.js +33 -0
- package/dist/models/YAxisOptions.js.map +1 -0
- package/dist/models/index.d.ts +130 -0
- package/dist/models/index.js +131 -0
- package/dist/models/index.js.map +1 -0
- package/dist/runtime.d.ts +154 -0
- package/dist/runtime.js +286 -0
- package/dist/runtime.js.map +1 -0
- package/package.json +4 -1
- package/.env.template +0 -23
- package/src/apis/AccountApi.ts +0 -171
- package/src/apis/ArticleApi.ts +0 -62
- package/src/apis/HealthcheckApi.ts +0 -55
- package/src/apis/ItemApi.ts +0 -662
- package/src/apis/JournalApi.ts +0 -181
- package/src/apis/LocationApi.ts +0 -113
- package/src/apis/LoginApi.ts +0 -291
- package/src/apis/MapApi.ts +0 -340
- package/src/apis/MultimediaApi.ts +0 -152
- package/src/apis/OrganizationApi.ts +0 -269
- package/src/apis/ReportApi.ts +0 -171
- package/src/apis/SearchApi.ts +0 -110
- package/src/apis/SourceApi.ts +0 -103
- package/src/apis/StateMachineApi.ts +0 -62
- package/src/apis/index.ts +0 -16
- package/src/index.ts +0 -5
- package/src/models/AccountORM.ts +0 -73
- package/src/models/AccountOutput.ts +0 -74
- package/src/models/AddUserToOrganizationDto.ts +0 -74
- package/src/models/ArticleORM.ts +0 -108
- package/src/models/ArticlePresentationORM.ts +0 -83
- package/src/models/ArticleTypeORM.ts +0 -74
- package/src/models/AutoCompleteORM.ts +0 -98
- package/src/models/AvailableArticlesDto.ts +0 -138
- package/src/models/AvailableArticlesOutput.ts +0 -74
- package/src/models/AxisTitle.ts +0 -75
- package/src/models/ChartConfiguration.ts +0 -99
- package/src/models/ChartData.ts +0 -74
- package/src/models/ChartDataset.ts +0 -131
- package/src/models/ChartLegend.ts +0 -79
- package/src/models/ChartOptions.ts +0 -99
- package/src/models/ChartPlugins.ts +0 -90
- package/src/models/ChartScales.ts +0 -90
- package/src/models/ChartTitle.ts +0 -75
- package/src/models/DataPoint.ts +0 -75
- package/src/models/ItemLayerLinkInputDto.ts +0 -66
- package/src/models/ItemLinkToLayerOutput.ts +0 -66
- package/src/models/ItemTypeFormDto.ts +0 -106
- package/src/models/ItemTypeFormOutput.ts +0 -74
- package/src/models/ItemTypeORM.ts +0 -108
- package/src/models/ItemTypeOutput.ts +0 -74
- package/src/models/ItemsOutput.ts +0 -74
- package/src/models/JournalBookORM.ts +0 -84
- package/src/models/JournalEntryArticleORM.ts +0 -110
- package/src/models/JournalEntryListOutput.ts +0 -74
- package/src/models/JournalEntryMultimediaInput.ts +0 -66
- package/src/models/JournalEntryMultimediaORM.ts +0 -83
- package/src/models/JournalEntryMultimediaOutput.ts +0 -66
- package/src/models/JournalEntryORM.ts +0 -107
- package/src/models/JournalEntryOutput.ts +0 -74
- package/src/models/JournalEntryOutputDto.ts +0 -75
- package/src/models/LegendPosition.ts +0 -55
- package/src/models/LocationORM.ts +0 -218
- package/src/models/LocationOutput.ts +0 -74
- package/src/models/MagnitudeORM.ts +0 -74
- package/src/models/ManualLoginInput.ts +0 -75
- package/src/models/ManualLoginPasswordUpdateInput.ts +0 -75
- package/src/models/ManualRegisterInput.ts +0 -84
- package/src/models/MapItemArticleInputDto.ts +0 -109
- package/src/models/MapItemArticleORM.ts +0 -110
- package/src/models/MapItemCustomFieldDefinitionORM.ts +0 -92
- package/src/models/MapItemDynamicFieldInputDto.ts +0 -91
- package/src/models/MapItemDynamicFieldORM.ts +0 -92
- package/src/models/MapItemDynamicFieldWithDefinitionORM.ts +0 -90
- package/src/models/MapItemInput.ts +0 -191
- package/src/models/MapItemLinkORM.ts +0 -108
- package/src/models/MapItemLinkOutput.ts +0 -74
- package/src/models/MapItemListOutput.ts +0 -74
- package/src/models/MapItemMultimediaORM.ts +0 -83
- package/src/models/MapItemMultimediaOutput.ts +0 -74
- package/src/models/MapItemNearByORM.ts +0 -75
- package/src/models/MapItemORM.ts +0 -133
- package/src/models/MapItemOutput.ts +0 -74
- package/src/models/MapItemOutputDto.ts +0 -225
- package/src/models/MapItemOutputDtoProps.ts +0 -225
- package/src/models/MapItemTypeDynamicFieldDefinitionOutput.ts +0 -74
- package/src/models/MapItemTypeDynamicFieldDefinitionValuesOutput.ts +0 -66
- package/src/models/MapItemTypeFormORM.ts +0 -83
- package/src/models/MapItemTypeFormSectionDto.ts +0 -90
- package/src/models/MapItemTypeFormSectionFieldORM.ts +0 -101
- package/src/models/MapItemTypeFormSectionORM.ts +0 -92
- package/src/models/MapItemTypeORM.ts +0 -135
- package/src/models/MapItemTypeOutput.ts +0 -74
- package/src/models/MapLayerInput.ts +0 -84
- package/src/models/MapLayerItemListOutput.ts +0 -74
- package/src/models/MapLayerItemORM.ts +0 -101
- package/src/models/MapLayerItemOutput.ts +0 -74
- package/src/models/MapLayerListOutput.ts +0 -74
- package/src/models/MapLayerORM.ts +0 -99
- package/src/models/MapLayerOutput.ts +0 -74
- package/src/models/MapLayerOutputDto.ts +0 -118
- package/src/models/MapListOutput.ts +0 -74
- package/src/models/MapORM.ts +0 -108
- package/src/models/MapOutput.ts +0 -74
- package/src/models/MapZoneInput.ts +0 -66
- package/src/models/MapZoneORM.ts +0 -83
- package/src/models/MapZoneOutput.ts +0 -74
- package/src/models/MapZoneOutputDto.ts +0 -100
- package/src/models/MapZonePointORM.ts +0 -83
- package/src/models/MeasureUnitORM.ts +0 -92
- package/src/models/ModelRequestContext.ts +0 -74
- package/src/models/MultimediaORM.ts +0 -99
- package/src/models/MultimediaOutput.ts +0 -74
- package/src/models/NominatimAddressORM.ts +0 -147
- package/src/models/NominatimORM.ts +0 -192
- package/src/models/OrganizationORM.ts +0 -83
- package/src/models/ReportAvailableColumnDto.ts +0 -75
- package/src/models/ReportAvailableColumnsListOutput.ts +0 -74
- package/src/models/ReportColumnFilterORM.ts +0 -101
- package/src/models/ReportColumnORM.ts +0 -135
- package/src/models/ReportConfigurationDto.ts +0 -75
- package/src/models/ReportDataCSVDto.ts +0 -66
- package/src/models/ReportDataDto.ts +0 -88
- package/src/models/ReportDataJSONDto.ts +0 -74
- package/src/models/ReportDataORM.ts +0 -74
- package/src/models/ReportDataOutput.ts +0 -74
- package/src/models/ReportDataRowORM.ts +0 -66
- package/src/models/ReportDto.ts +0 -75
- package/src/models/ReportListOutput.ts +0 -74
- package/src/models/ReportORM.ts +0 -99
- package/src/models/ReportOutput.ts +0 -74
- package/src/models/SearchORM.ts +0 -84
- package/src/models/SearchOutput.ts +0 -74
- package/src/models/SearchResultDto.ts +0 -74
- package/src/models/SearchResultSectionDto.ts +0 -92
- package/src/models/SearchResultSectionItem.ts +0 -100
- package/src/models/SourceDto.ts +0 -74
- package/src/models/SourceListOutput.ts +0 -74
- package/src/models/SourceOutput.ts +0 -74
- package/src/models/StateMachineDefinitionListOutput.ts +0 -74
- package/src/models/StateMachineDefinitionOutputDto.ts +0 -117
- package/src/models/StateMachineORM.ts +0 -82
- package/src/models/StateMachineStateORM.ts +0 -92
- package/src/models/StateMachineStateOutputDto.ts +0 -84
- package/src/models/StateMachineTransitionLogORM.ts +0 -100
- package/src/models/StateMachineTransitionORM.ts +0 -101
- package/src/models/StateMachineTransitionOutputDto.ts +0 -93
- package/src/models/UpdateUserInOrganizationPasswordDto.ts +0 -66
- package/src/models/UploadDto.ts +0 -75
- package/src/models/UploadOutput.ts +0 -74
- package/src/models/UserDto.ts +0 -83
- package/src/models/UserInOrganizationDto.ts +0 -129
- package/src/models/UserInOrganizationOutput.ts +0 -74
- package/src/models/UserORM.ts +0 -145
- package/src/models/XAxisOptions.ts +0 -83
- package/src/models/YAxisOptions.ts +0 -83
- package/src/models/index.ts +0 -132
- package/src/runtime.ts +0 -431
- package/ts2js.sh +0 -1
- package/tsconfig.build.json +0 -13
- package/tsconfig.json +0 -82
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface MapItemDynamicFieldInputDto
|
|
20
|
-
*/
|
|
21
|
-
export interface MapItemDynamicFieldInputDto {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof MapItemDynamicFieldInputDto
|
|
26
|
-
*/
|
|
27
|
-
id?: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {number}
|
|
31
|
-
* @memberof MapItemDynamicFieldInputDto
|
|
32
|
-
*/
|
|
33
|
-
mapItemCustomFieldDefinition: number;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof MapItemDynamicFieldInputDto
|
|
38
|
-
*/
|
|
39
|
-
mapItemId?: number;
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof MapItemDynamicFieldInputDto
|
|
44
|
-
*/
|
|
45
|
-
value: string;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Check if a given object implements the MapItemDynamicFieldInputDto interface.
|
|
50
|
-
*/
|
|
51
|
-
export function instanceOfMapItemDynamicFieldInputDto(value: object): value is MapItemDynamicFieldInputDto {
|
|
52
|
-
if (!('mapItemCustomFieldDefinition' in value) || value['mapItemCustomFieldDefinition'] === undefined) return false;
|
|
53
|
-
if (!('value' in value) || value['value'] === undefined) return false;
|
|
54
|
-
return true;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export function MapItemDynamicFieldInputDtoFromJSON(json: any): MapItemDynamicFieldInputDto {
|
|
58
|
-
return MapItemDynamicFieldInputDtoFromJSONTyped(json, false);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export function MapItemDynamicFieldInputDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemDynamicFieldInputDto {
|
|
62
|
-
if (json == null) {
|
|
63
|
-
return json;
|
|
64
|
-
}
|
|
65
|
-
return {
|
|
66
|
-
|
|
67
|
-
'id': json['id'] == null ? undefined : json['id'],
|
|
68
|
-
'mapItemCustomFieldDefinition': json['mapItemCustomFieldDefinition'],
|
|
69
|
-
'mapItemId': json['mapItemId'] == null ? undefined : json['mapItemId'],
|
|
70
|
-
'value': json['value'],
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export function MapItemDynamicFieldInputDtoToJSON(json: any): MapItemDynamicFieldInputDto {
|
|
75
|
-
return MapItemDynamicFieldInputDtoToJSONTyped(json, false);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
export function MapItemDynamicFieldInputDtoToJSONTyped(value?: MapItemDynamicFieldInputDto | null, ignoreDiscriminator: boolean = false): any {
|
|
79
|
-
if (value == null) {
|
|
80
|
-
return value;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
return {
|
|
84
|
-
|
|
85
|
-
'id': value['id'],
|
|
86
|
-
'mapItemCustomFieldDefinition': value['mapItemCustomFieldDefinition'],
|
|
87
|
-
'mapItemId': value['mapItemId'],
|
|
88
|
-
'value': value['value'],
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface MapItemDynamicFieldORM
|
|
20
|
-
*/
|
|
21
|
-
export interface MapItemDynamicFieldORM {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof MapItemDynamicFieldORM
|
|
26
|
-
*/
|
|
27
|
-
id?: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {number}
|
|
31
|
-
* @memberof MapItemDynamicFieldORM
|
|
32
|
-
*/
|
|
33
|
-
mapItemCustomFieldDefinition: number;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof MapItemDynamicFieldORM
|
|
38
|
-
*/
|
|
39
|
-
mapItemId: number;
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof MapItemDynamicFieldORM
|
|
44
|
-
*/
|
|
45
|
-
value: string;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Check if a given object implements the MapItemDynamicFieldORM interface.
|
|
50
|
-
*/
|
|
51
|
-
export function instanceOfMapItemDynamicFieldORM(value: object): value is MapItemDynamicFieldORM {
|
|
52
|
-
if (!('mapItemCustomFieldDefinition' in value) || value['mapItemCustomFieldDefinition'] === undefined) return false;
|
|
53
|
-
if (!('mapItemId' in value) || value['mapItemId'] === undefined) return false;
|
|
54
|
-
if (!('value' in value) || value['value'] === undefined) return false;
|
|
55
|
-
return true;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export function MapItemDynamicFieldORMFromJSON(json: any): MapItemDynamicFieldORM {
|
|
59
|
-
return MapItemDynamicFieldORMFromJSONTyped(json, false);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export function MapItemDynamicFieldORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemDynamicFieldORM {
|
|
63
|
-
if (json == null) {
|
|
64
|
-
return json;
|
|
65
|
-
}
|
|
66
|
-
return {
|
|
67
|
-
|
|
68
|
-
'id': json['id'] == null ? undefined : json['id'],
|
|
69
|
-
'mapItemCustomFieldDefinition': json['mapItemCustomFieldDefinition'],
|
|
70
|
-
'mapItemId': json['mapItemId'],
|
|
71
|
-
'value': json['value'],
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export function MapItemDynamicFieldORMToJSON(json: any): MapItemDynamicFieldORM {
|
|
76
|
-
return MapItemDynamicFieldORMToJSONTyped(json, false);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export function MapItemDynamicFieldORMToJSONTyped(value?: MapItemDynamicFieldORM | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
-
if (value == null) {
|
|
81
|
-
return value;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return {
|
|
85
|
-
|
|
86
|
-
'id': value['id'],
|
|
87
|
-
'mapItemCustomFieldDefinition': value['mapItemCustomFieldDefinition'],
|
|
88
|
-
'mapItemId': value['mapItemId'],
|
|
89
|
-
'value': value['value'],
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
import type { MapItemCustomFieldDefinitionORM } from './MapItemCustomFieldDefinitionORM.js';
|
|
17
|
-
import {
|
|
18
|
-
MapItemCustomFieldDefinitionORMFromJSON,
|
|
19
|
-
MapItemCustomFieldDefinitionORMFromJSONTyped,
|
|
20
|
-
MapItemCustomFieldDefinitionORMToJSON,
|
|
21
|
-
MapItemCustomFieldDefinitionORMToJSONTyped,
|
|
22
|
-
} from './MapItemCustomFieldDefinitionORM.js';
|
|
23
|
-
import type { MapItemDynamicFieldORM } from './MapItemDynamicFieldORM.js';
|
|
24
|
-
import {
|
|
25
|
-
MapItemDynamicFieldORMFromJSON,
|
|
26
|
-
MapItemDynamicFieldORMFromJSONTyped,
|
|
27
|
-
MapItemDynamicFieldORMToJSON,
|
|
28
|
-
MapItemDynamicFieldORMToJSONTyped,
|
|
29
|
-
} from './MapItemDynamicFieldORM.js';
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @export
|
|
34
|
-
* @interface MapItemDynamicFieldWithDefinitionORM
|
|
35
|
-
*/
|
|
36
|
-
export interface MapItemDynamicFieldWithDefinitionORM {
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {MapItemDynamicFieldORM}
|
|
40
|
-
* @memberof MapItemDynamicFieldWithDefinitionORM
|
|
41
|
-
*/
|
|
42
|
-
customFieldValue: MapItemDynamicFieldORM;
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
* @type {MapItemCustomFieldDefinitionORM}
|
|
46
|
-
* @memberof MapItemDynamicFieldWithDefinitionORM
|
|
47
|
-
*/
|
|
48
|
-
customFieldDefinition: MapItemCustomFieldDefinitionORM;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* Check if a given object implements the MapItemDynamicFieldWithDefinitionORM interface.
|
|
53
|
-
*/
|
|
54
|
-
export function instanceOfMapItemDynamicFieldWithDefinitionORM(value: object): value is MapItemDynamicFieldWithDefinitionORM {
|
|
55
|
-
if (!('customFieldValue' in value) || value['customFieldValue'] === undefined) return false;
|
|
56
|
-
if (!('customFieldDefinition' in value) || value['customFieldDefinition'] === undefined) return false;
|
|
57
|
-
return true;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function MapItemDynamicFieldWithDefinitionORMFromJSON(json: any): MapItemDynamicFieldWithDefinitionORM {
|
|
61
|
-
return MapItemDynamicFieldWithDefinitionORMFromJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function MapItemDynamicFieldWithDefinitionORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemDynamicFieldWithDefinitionORM {
|
|
65
|
-
if (json == null) {
|
|
66
|
-
return json;
|
|
67
|
-
}
|
|
68
|
-
return {
|
|
69
|
-
|
|
70
|
-
'customFieldValue': MapItemDynamicFieldORMFromJSON(json['customFieldValue']),
|
|
71
|
-
'customFieldDefinition': MapItemCustomFieldDefinitionORMFromJSON(json['customFieldDefinition']),
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export function MapItemDynamicFieldWithDefinitionORMToJSON(json: any): MapItemDynamicFieldWithDefinitionORM {
|
|
76
|
-
return MapItemDynamicFieldWithDefinitionORMToJSONTyped(json, false);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export function MapItemDynamicFieldWithDefinitionORMToJSONTyped(value?: MapItemDynamicFieldWithDefinitionORM | null, ignoreDiscriminator: boolean = false): any {
|
|
80
|
-
if (value == null) {
|
|
81
|
-
return value;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return {
|
|
85
|
-
|
|
86
|
-
'customFieldValue': MapItemDynamicFieldORMToJSON(value['customFieldValue']),
|
|
87
|
-
'customFieldDefinition': MapItemCustomFieldDefinitionORMToJSON(value['customFieldDefinition']),
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
|
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
import type { MapItemDynamicFieldInputDto } from './MapItemDynamicFieldInputDto.js';
|
|
17
|
-
import {
|
|
18
|
-
MapItemDynamicFieldInputDtoFromJSON,
|
|
19
|
-
MapItemDynamicFieldInputDtoFromJSONTyped,
|
|
20
|
-
MapItemDynamicFieldInputDtoToJSON,
|
|
21
|
-
MapItemDynamicFieldInputDtoToJSONTyped,
|
|
22
|
-
} from './MapItemDynamicFieldInputDto.js';
|
|
23
|
-
import type { MapZoneInput } from './MapZoneInput.js';
|
|
24
|
-
import {
|
|
25
|
-
MapZoneInputFromJSON,
|
|
26
|
-
MapZoneInputFromJSONTyped,
|
|
27
|
-
MapZoneInputToJSON,
|
|
28
|
-
MapZoneInputToJSONTyped,
|
|
29
|
-
} from './MapZoneInput.js';
|
|
30
|
-
import type { MapItemArticleInputDto } from './MapItemArticleInputDto.js';
|
|
31
|
-
import {
|
|
32
|
-
MapItemArticleInputDtoFromJSON,
|
|
33
|
-
MapItemArticleInputDtoFromJSONTyped,
|
|
34
|
-
MapItemArticleInputDtoToJSON,
|
|
35
|
-
MapItemArticleInputDtoToJSONTyped,
|
|
36
|
-
} from './MapItemArticleInputDto.js';
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @export
|
|
41
|
-
* @interface MapItemInput
|
|
42
|
-
*/
|
|
43
|
-
export interface MapItemInput {
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {Array<MapItemArticleInputDto>}
|
|
47
|
-
* @memberof MapItemInput
|
|
48
|
-
*/
|
|
49
|
-
articles: Array<MapItemArticleInputDto>;
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @type {MapZoneInput}
|
|
53
|
-
* @memberof MapItemInput
|
|
54
|
-
*/
|
|
55
|
-
mapZoneInput: MapZoneInput;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {Array<MapItemDynamicFieldInputDto>}
|
|
59
|
-
* @memberof MapItemInput
|
|
60
|
-
*/
|
|
61
|
-
dynamicFields: Array<MapItemDynamicFieldInputDto>;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {number}
|
|
65
|
-
* @memberof MapItemInput
|
|
66
|
-
*/
|
|
67
|
-
layerId: number;
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @type {number}
|
|
71
|
-
* @memberof MapItemInput
|
|
72
|
-
*/
|
|
73
|
-
stateId: number;
|
|
74
|
-
/**
|
|
75
|
-
*
|
|
76
|
-
* @type {string}
|
|
77
|
-
* @memberof MapItemInput
|
|
78
|
-
*/
|
|
79
|
-
title: string;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {string}
|
|
83
|
-
* @memberof MapItemInput
|
|
84
|
-
*/
|
|
85
|
-
description: string;
|
|
86
|
-
/**
|
|
87
|
-
*
|
|
88
|
-
* @type {number}
|
|
89
|
-
* @memberof MapItemInput
|
|
90
|
-
*/
|
|
91
|
-
mapItemTypeId: number;
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {number}
|
|
95
|
-
* @memberof MapItemInput
|
|
96
|
-
*/
|
|
97
|
-
id?: number;
|
|
98
|
-
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {number}
|
|
101
|
-
* @memberof MapItemInput
|
|
102
|
-
*/
|
|
103
|
-
version?: number;
|
|
104
|
-
/**
|
|
105
|
-
*
|
|
106
|
-
* @type {string}
|
|
107
|
-
* @memberof MapItemInput
|
|
108
|
-
*/
|
|
109
|
-
deleteDate?: string;
|
|
110
|
-
/**
|
|
111
|
-
*
|
|
112
|
-
* @type {string}
|
|
113
|
-
* @memberof MapItemInput
|
|
114
|
-
*/
|
|
115
|
-
createDate?: string;
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @type {string}
|
|
119
|
-
* @memberof MapItemInput
|
|
120
|
-
*/
|
|
121
|
-
updateDate?: string;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
/**
|
|
125
|
-
* Check if a given object implements the MapItemInput interface.
|
|
126
|
-
*/
|
|
127
|
-
export function instanceOfMapItemInput(value: object): value is MapItemInput {
|
|
128
|
-
if (!('articles' in value) || value['articles'] === undefined) return false;
|
|
129
|
-
if (!('mapZoneInput' in value) || value['mapZoneInput'] === undefined) return false;
|
|
130
|
-
if (!('dynamicFields' in value) || value['dynamicFields'] === undefined) return false;
|
|
131
|
-
if (!('layerId' in value) || value['layerId'] === undefined) return false;
|
|
132
|
-
if (!('stateId' in value) || value['stateId'] === undefined) return false;
|
|
133
|
-
if (!('title' in value) || value['title'] === undefined) return false;
|
|
134
|
-
if (!('description' in value) || value['description'] === undefined) return false;
|
|
135
|
-
if (!('mapItemTypeId' in value) || value['mapItemTypeId'] === undefined) return false;
|
|
136
|
-
return true;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
export function MapItemInputFromJSON(json: any): MapItemInput {
|
|
140
|
-
return MapItemInputFromJSONTyped(json, false);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
export function MapItemInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemInput {
|
|
144
|
-
if (json == null) {
|
|
145
|
-
return json;
|
|
146
|
-
}
|
|
147
|
-
return {
|
|
148
|
-
|
|
149
|
-
'articles': ((json['articles'] as Array<any>).map(MapItemArticleInputDtoFromJSON)),
|
|
150
|
-
'mapZoneInput': MapZoneInputFromJSON(json['mapZoneInput']),
|
|
151
|
-
'dynamicFields': ((json['dynamicFields'] as Array<any>).map(MapItemDynamicFieldInputDtoFromJSON)),
|
|
152
|
-
'layerId': json['layerId'],
|
|
153
|
-
'stateId': json['stateId'],
|
|
154
|
-
'title': json['title'],
|
|
155
|
-
'description': json['description'],
|
|
156
|
-
'mapItemTypeId': json['mapItemTypeId'],
|
|
157
|
-
'id': json['id'] == null ? undefined : json['id'],
|
|
158
|
-
'version': json['version'] == null ? undefined : json['version'],
|
|
159
|
-
'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
|
|
160
|
-
'createDate': json['createDate'] == null ? undefined : json['createDate'],
|
|
161
|
-
'updateDate': json['updateDate'] == null ? undefined : json['updateDate'],
|
|
162
|
-
};
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
export function MapItemInputToJSON(json: any): MapItemInput {
|
|
166
|
-
return MapItemInputToJSONTyped(json, false);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
export function MapItemInputToJSONTyped(value?: MapItemInput | null, ignoreDiscriminator: boolean = false): any {
|
|
170
|
-
if (value == null) {
|
|
171
|
-
return value;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
return {
|
|
175
|
-
|
|
176
|
-
'articles': ((value['articles'] as Array<any>).map(MapItemArticleInputDtoToJSON)),
|
|
177
|
-
'mapZoneInput': MapZoneInputToJSON(value['mapZoneInput']),
|
|
178
|
-
'dynamicFields': ((value['dynamicFields'] as Array<any>).map(MapItemDynamicFieldInputDtoToJSON)),
|
|
179
|
-
'layerId': value['layerId'],
|
|
180
|
-
'stateId': value['stateId'],
|
|
181
|
-
'title': value['title'],
|
|
182
|
-
'description': value['description'],
|
|
183
|
-
'mapItemTypeId': value['mapItemTypeId'],
|
|
184
|
-
'id': value['id'],
|
|
185
|
-
'version': value['version'],
|
|
186
|
-
'deleteDate': value['deleteDate'],
|
|
187
|
-
'createDate': value['createDate'],
|
|
188
|
-
'updateDate': value['updateDate'],
|
|
189
|
-
};
|
|
190
|
-
}
|
|
191
|
-
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface MapItemLinkORM
|
|
20
|
-
*/
|
|
21
|
-
export interface MapItemLinkORM {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof MapItemLinkORM
|
|
26
|
-
*/
|
|
27
|
-
id?: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {number}
|
|
31
|
-
* @memberof MapItemLinkORM
|
|
32
|
-
*/
|
|
33
|
-
mapItemId: number;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof MapItemLinkORM
|
|
38
|
-
*/
|
|
39
|
-
linkedItemId: number;
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof MapItemLinkORM
|
|
44
|
-
*/
|
|
45
|
-
relationship: string;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof MapItemLinkORM
|
|
50
|
-
*/
|
|
51
|
-
deleteDate?: string;
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof MapItemLinkORM
|
|
56
|
-
*/
|
|
57
|
-
createDate?: string;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Check if a given object implements the MapItemLinkORM interface.
|
|
62
|
-
*/
|
|
63
|
-
export function instanceOfMapItemLinkORM(value: object): value is MapItemLinkORM {
|
|
64
|
-
if (!('mapItemId' in value) || value['mapItemId'] === undefined) return false;
|
|
65
|
-
if (!('linkedItemId' in value) || value['linkedItemId'] === undefined) return false;
|
|
66
|
-
if (!('relationship' in value) || value['relationship'] === undefined) return false;
|
|
67
|
-
return true;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export function MapItemLinkORMFromJSON(json: any): MapItemLinkORM {
|
|
71
|
-
return MapItemLinkORMFromJSONTyped(json, false);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export function MapItemLinkORMFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemLinkORM {
|
|
75
|
-
if (json == null) {
|
|
76
|
-
return json;
|
|
77
|
-
}
|
|
78
|
-
return {
|
|
79
|
-
|
|
80
|
-
'id': json['id'] == null ? undefined : json['id'],
|
|
81
|
-
'mapItemId': json['mapItemId'],
|
|
82
|
-
'linkedItemId': json['linkedItemId'],
|
|
83
|
-
'relationship': json['relationship'],
|
|
84
|
-
'deleteDate': json['deleteDate'] == null ? undefined : json['deleteDate'],
|
|
85
|
-
'createDate': json['createDate'] == null ? undefined : json['createDate'],
|
|
86
|
-
};
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export function MapItemLinkORMToJSON(json: any): MapItemLinkORM {
|
|
90
|
-
return MapItemLinkORMToJSONTyped(json, false);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export function MapItemLinkORMToJSONTyped(value?: MapItemLinkORM | null, ignoreDiscriminator: boolean = false): any {
|
|
94
|
-
if (value == null) {
|
|
95
|
-
return value;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
return {
|
|
99
|
-
|
|
100
|
-
'id': value['id'],
|
|
101
|
-
'mapItemId': value['mapItemId'],
|
|
102
|
-
'linkedItemId': value['linkedItemId'],
|
|
103
|
-
'relationship': value['relationship'],
|
|
104
|
-
'deleteDate': value['deleteDate'],
|
|
105
|
-
'createDate': value['createDate'],
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Security Map API
|
|
5
|
-
* Security Map API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 0.1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime.js';
|
|
16
|
-
import type { MapItemLinkORM } from './MapItemLinkORM.js';
|
|
17
|
-
import {
|
|
18
|
-
MapItemLinkORMFromJSON,
|
|
19
|
-
MapItemLinkORMFromJSONTyped,
|
|
20
|
-
MapItemLinkORMToJSON,
|
|
21
|
-
MapItemLinkORMToJSONTyped,
|
|
22
|
-
} from './MapItemLinkORM.js';
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @export
|
|
27
|
-
* @interface MapItemLinkOutput
|
|
28
|
-
*/
|
|
29
|
-
export interface MapItemLinkOutput {
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {MapItemLinkORM}
|
|
33
|
-
* @memberof MapItemLinkOutput
|
|
34
|
-
*/
|
|
35
|
-
data: MapItemLinkORM;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the MapItemLinkOutput interface.
|
|
40
|
-
*/
|
|
41
|
-
export function instanceOfMapItemLinkOutput(value: object): value is MapItemLinkOutput {
|
|
42
|
-
if (!('data' in value) || value['data'] === undefined) return false;
|
|
43
|
-
return true;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export function MapItemLinkOutputFromJSON(json: any): MapItemLinkOutput {
|
|
47
|
-
return MapItemLinkOutputFromJSONTyped(json, false);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export function MapItemLinkOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MapItemLinkOutput {
|
|
51
|
-
if (json == null) {
|
|
52
|
-
return json;
|
|
53
|
-
}
|
|
54
|
-
return {
|
|
55
|
-
|
|
56
|
-
'data': MapItemLinkORMFromJSON(json['data']),
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function MapItemLinkOutputToJSON(json: any): MapItemLinkOutput {
|
|
61
|
-
return MapItemLinkOutputToJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function MapItemLinkOutputToJSONTyped(value?: MapItemLinkOutput | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
-
if (value == null) {
|
|
66
|
-
return value;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return {
|
|
70
|
-
|
|
71
|
-
'data': MapItemLinkORMToJSON(value['data']),
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
|