geonetwork-ui 2.1.0-initial → 2.2.0-dev.0f95f702
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/README.md +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +3 -2
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +1 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +1 -1
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +5 -28
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +7 -4
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +41 -13
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +9 -9
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +7 -7
- package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +13 -0
- package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +3 -1
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -2
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +17 -16
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +40 -0
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +71 -0
- package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +65 -0
- package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +9 -0
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +4 -0
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/search/aggregation.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/search/index.mjs +5 -0
- package/esm2022/libs/common/domain/src/lib/model/search/search.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +7 -0
- package/esm2022/libs/common/domain/src/lib/model/thesaurus/index.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +10 -1
- package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +251 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +363 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +32 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +40 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +32 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +110 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +106 -7
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +32 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +74 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +273 -10
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +120 -5
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +1086 -141
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +52 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +215 -16
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +8 -5
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +51 -5
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +29 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +204 -10
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +109 -10
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +29 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +67 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +195 -7
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +66 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +57 -20
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +4 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +69 -4
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +2 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.mjs → formatterData.api.model.mjs} +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.mjs +26 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/language.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapService.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.mjs +20 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.mjs +20 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +19 -9
- package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.mjs +36 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.mjs +36 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +4 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.mjs → translations.api.model.mjs} +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +3 -3
- package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +1 -1
- package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -6
- package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +48 -0
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +43 -11
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +3 -3
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +2 -4
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +14 -7
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +2 -6
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +21 -4
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +18 -4
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +23 -9
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +2 -5
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +3 -3
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +1 -1
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +1 -1
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/constants.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +13 -10
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +9 -6
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +9 -3
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +28 -13
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +34 -13
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +8 -6
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +4 -1
- package/esm2022/libs/ui/catalog/src/index.mjs +3 -2
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +2 -1
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +1 -1
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +49 -0
- package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +16 -0
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +13 -8
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +1 -1
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +4 -3
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +6 -4
- package/esm2022/libs/ui/elements/src/index.mjs +2 -1
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +31 -6
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +67 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +47 -13
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +21 -10
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +21 -4
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +68 -0
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +3 -4
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +11 -3
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +1 -1
- package/esm2022/libs/ui/inputs/src/index.mjs +4 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +14 -6
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -42
- package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +34 -0
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +20 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +34 -0
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +36 -5
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +1 -4
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +61 -7
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +6 -2
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +8 -25
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -2
- package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
- package/esm2022/libs/util/shared/src/index.mjs +1 -2
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +3 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +8 -5
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +8 -1
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -5
- package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +2 -2
- package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +3 -1
- package/esm2022/translations/de.json +72 -23
- package/esm2022/translations/en.json +72 -42
- package/esm2022/translations/es.json +87 -57
- package/esm2022/translations/fr.json +73 -43
- package/esm2022/translations/it.json +315 -285
- package/esm2022/translations/nl.json +88 -58
- package/esm2022/translations/pt.json +87 -57
- package/fesm2022/geonetwork-ui.mjs +11467 -6893
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +2 -13
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +3 -2
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +4 -2
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +2 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +3 -3
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +4 -4
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts +3 -0
- package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts +2 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +2 -2
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +6 -6
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +16 -0
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +36 -0
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts +18 -0
- package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/{record → model/record}/metadata.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/{search → model/search}/aggregation.model.d.ts +2 -2
- package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/search/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/search/search.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/thesaurus/index.d.ts +2 -0
- package/libs/common/domain/src/lib/model/thesaurus/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts +6 -0
- package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts +2 -3
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +16 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/{records-repository.interface.d.ts → repository/records-repository.interface.d.ts} +2 -2
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts +7 -1
- package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts +97 -0
- package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts +150 -0
- package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +18 -2
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +17 -2
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +48 -6
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +35 -2
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +129 -13
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +53 -5
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +516 -77
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +113 -35
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +4 -3
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +22 -3
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +128 -16
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +58 -12
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +3 -4
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +14 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +106 -17
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +30 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +1 -1
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +23 -7
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +7 -7
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +8 -5
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +9 -8
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +5 -2
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +6 -3
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.d.ts → jSONObject.api.model.d.ts} +5 -5
- package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +4 -4
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +11 -8
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.d.ts → mapService.api.model.d.ts} +7 -6
- package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +7 -4
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +5 -4
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +5 -4
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +8 -8
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +18 -8
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +6 -6
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/{pageJSONWrapper.api.model.d.ts → pageProperties.api.model.d.ts} +27 -28
- package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +5 -2
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts +46 -0
- package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +3 -2
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +7 -2
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +5 -2
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +5 -4
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +6 -5
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +7 -7
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +3 -3
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +5 -2
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +5 -2
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +4 -4
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +2 -2
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +5 -4
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -1
- package/libs/feature/catalog/src/index.d.ts +1 -0
- package/libs/feature/catalog/src/index.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts +21 -0
- package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +9 -3
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +1 -1
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +4 -4
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +3 -2
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +3 -2
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +5 -6
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +2 -2
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +5 -2
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +2 -2
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +3 -3
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +9 -9
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +2 -2
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +3 -3
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +1 -1
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/constants.d.ts +1 -1
- package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
- package/libs/feature/search/src/lib/facets/facets.service.d.ts +1 -1
- package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +5 -3
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +4 -3
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +2 -2
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +4 -3
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/actions.d.ts +2 -2
- package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/effects.d.ts +5 -4
- package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/reducer.d.ts +2 -2
- package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -2
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/selectors.d.ts +5 -5
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +18 -10
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +2 -1
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -1
- package/libs/ui/catalog/src/index.d.ts +2 -1
- package/libs/ui/catalog/src/index.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +18 -0
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +8 -0
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +8 -7
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -2
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +2 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +1 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +11 -3
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts +20 -0
- package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +3 -1
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +3 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +2 -13
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +22 -0
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +13 -11
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +3 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +5 -2
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +0 -3
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +20 -13
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/search/src/lib/facets/facets.model.d.ts +1 -1
- package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -1
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +2 -4
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +13 -5
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +2 -3
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +2 -3
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/ui-search.module.d.ts +3 -2
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/app-config.d.ts +1 -1
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/model.d.ts +3 -11
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
- package/libs/util/shared/src/index.d.ts +0 -1
- package/libs/util/shared/src/index.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts +1 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/util-shared.module.d.ts +3 -4
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/sort-by.d.ts +1 -1
- package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -1
- package/package.json +4 -6
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +2 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +4 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +3 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +1 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +2 -47
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -2
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +14 -9
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +50 -18
- package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +4 -4
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +10 -4
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +14 -0
- package/src/libs/api/repository/src/lib/gn4/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +3 -2
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +21 -25
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +57 -0
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +114 -0
- package/src/libs/api/repository/src/lib/gn4/selection/selection.service.ts +80 -0
- package/src/libs/common/domain/src/lib/{record → model/record}/metadata.model.ts +1 -0
- package/src/libs/common/domain/src/lib/{search → model/search}/aggregation.model.ts +2 -2
- package/src/libs/common/domain/src/lib/model/thesaurus/index.ts +1 -0
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +6 -0
- package/src/libs/common/domain/src/lib/organizations.service.interface.ts +2 -3
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +22 -0
- package/src/libs/common/domain/src/lib/{records-repository.interface.ts → repository/records-repository.interface.ts} +2 -2
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +5 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +9 -1
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +19 -1
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +1 -1
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +1 -1
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +1 -1
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -1
- package/src/libs/data-access/gn4/src/openapi/api/api.ts +9 -0
- package/src/libs/data-access/gn4/src/openapi/api/atom.api.service.ts +520 -0
- package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/api/formatters.api.service.ts +819 -0
- package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +78 -5
- package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +95 -3
- package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +77 -5
- package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +271 -3
- package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +265 -12
- package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +75 -3
- package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +188 -5
- package/src/libs/data-access/gn4/src/openapi/api/mapservices.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +687 -50
- package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +353 -5
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +3383 -697
- package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +146 -3
- package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +602 -66
- package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +15 -3
- package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +240 -3
- package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +62 -3
- package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +517 -39
- package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +281 -36
- package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +7 -8
- package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +62 -3
- package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +158 -3
- package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +477 -17
- package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +154 -3
- package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +4 -4
- package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +130 -44
- package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +5 -5
- package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +166 -3
- package/src/libs/data-access/gn4/src/openapi/api.module.ts +35 -2
- package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +7 -7
- package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/formatterData.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +8 -5
- package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +9 -8
- package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +5 -2
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +6 -3
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.ts → jSONObject.api.model.ts} +4 -4
- package/src/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.ts +59 -0
- package/src/libs/data-access/gn4/src/openapi/model/language.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +4 -4
- package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +11 -8
- package/src/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.ts → mapService.api.model.ts} +6 -5
- package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +7 -4
- package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +5 -4
- package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +5 -4
- package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +8 -8
- package/src/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.ts +31 -0
- package/src/libs/data-access/gn4/src/openapi/model/models.ts +18 -8
- package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +6 -6
- package/src/libs/data-access/gn4/src/openapi/model/{pageJSONWrapper.api.model.ts → pageProperties.api.model.ts} +25 -28
- package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +5 -2
- package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.ts +56 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +3 -2
- package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +7 -2
- package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +5 -2
- package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +5 -4
- package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +6 -4
- package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/translations.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +7 -7
- package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +3 -3
- package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +5 -2
- package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +5 -2
- package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +4 -4
- package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +2 -2
- package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +5 -4
- package/src/libs/data-access/gn4/src/spec.yaml +11069 -7073
- package/src/libs/feature/catalog/src/index.ts +1 -0
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -3
- package/src/libs/feature/catalog/src/lib/my-org/my-org.service.ts +61 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +10 -2
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +45 -12
- package/src/libs/feature/catalog/src/lib/records/records.service.ts +1 -1
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +19 -1
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +2 -7
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +1 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +3 -1
- package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +21 -3
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +26 -8
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +2 -2
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +17 -2
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -7
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +2 -2
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +1 -1
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +2 -2
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +2 -2
- package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +4 -1
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +4 -1
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +1 -1
- package/src/libs/feature/search/src/lib/constants.ts +1 -1
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +1 -1
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +4 -1
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +5 -3
- package/src/libs/feature/search/src/lib/feature-search.module.ts +1 -1
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +4 -2
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +2 -2
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +3 -2
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +16 -4
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +4 -1
- package/src/libs/feature/search/src/lib/state/actions.ts +2 -2
- package/src/libs/feature/search/src/lib/state/effects.ts +25 -10
- package/src/libs/feature/search/src/lib/state/reducer.ts +2 -2
- package/src/libs/feature/search/src/lib/state/search.facade.ts +3 -3
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +12 -11
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +49 -25
- package/src/libs/feature/search/src/lib/utils/service/search.service.ts +8 -1
- package/src/libs/ui/catalog/src/index.ts +2 -1
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +1 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +1 -1
- package/src/libs/ui/catalog/src/lib/{organisations-sort/organisations-sort.component.html → organisations-filter/organisations-filter.component.html} +6 -3
- package/src/libs/ui/catalog/src/lib/{organisations-sort/organisations-sort.component.ts → organisations-filter/organisations-filter.component.ts} +11 -5
- package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.html +5 -0
- package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +11 -0
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +6 -3
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +1 -1
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +4 -1
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +2 -1
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +33 -5
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +34 -3
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/max-lines/max-lines.component.html +15 -0
- package/src/libs/ui/elements/src/lib/max-lines/max-lines.component.ts +83 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +55 -13
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +31 -28
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +13 -1
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +1 -1
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +2 -14
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +19 -1
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.css +22 -0
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +75 -0
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +65 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +1 -1
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +5 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +1 -1
- package/src/libs/ui/inputs/src/index.ts +3 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +7 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -44
- package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.css +24 -0
- package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.html +8 -0
- package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +30 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +24 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +20 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +25 -0
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +29 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +17 -0
- package/src/libs/ui/search/src/lib/facets/facets.model.ts +1 -1
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +2 -6
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +1 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +3 -4
- package/src/libs/ui/search/src/lib/record-table/record-table.component.html +81 -16
- package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +60 -4
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +3 -3
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +2 -3
- package/src/libs/ui/search/src/lib/ui-search.module.ts +2 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +8 -31
- package/src/libs/util/app-config/src/lib/fixtures.ts +1 -1
- package/src/libs/util/app-config/src/lib/model.ts +3 -11
- package/src/libs/util/shared/src/index.ts +0 -1
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +3 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +8 -5
- package/src/libs/util/shared/src/lib/services/theme.service.ts +9 -0
- package/src/libs/util/shared/src/lib/util-shared.module.ts +2 -3
- package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +1 -1
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +1 -1
- package/src/libs/util/shared/src/lib/utils/strip-html.ts +1 -0
- package/tailwind.base.css +33 -3
- package/translations/de.json +72 -23
- package/translations/en.json +72 -42
- package/translations/es.json +87 -57
- package/translations/fr.json +73 -43
- package/translations/it.json +315 -285
- package/translations/nl.json +88 -58
- package/translations/pt.json +87 -57
- package/translations/sk.json +319 -0
- package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +0 -9
- package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +0 -24
- package/esm2022/libs/common/domain/src/lib/record/index.mjs +0 -4
- package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +0 -24
- package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +0 -3
- package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/search/index.mjs +0 -5
- package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +0 -7
- package/esm2022/libs/common/domain/src/lib/user.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +0 -39
- package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +0 -40
- package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +0 -34
- package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +0 -2
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/record/contact.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/record/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/record/organization.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +0 -1
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/search/filter.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/search/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/search/search.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/user.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +0 -30
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +0 -38
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +0 -32
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +0 -44
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +0 -14
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +0 -1
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +0 -11
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +0 -1
- package/libs/util/shared/src/lib/pipes/index.d.ts +0 -2
- package/libs/util/shared/src/lib/pipes/index.d.ts.map +0 -1
- package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +0 -26
- package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +0 -30
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +0 -32
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +0 -44
- package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +0 -21
- package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +0 -36
- package/src/libs/util/shared/src/lib/pipes/index.ts +0 -1
- /package/libs/common/domain/src/lib/{dataviz-configuration.model.d.ts → model/dataviz/dataviz-configuration.model.d.ts} +0 -0
- /package/libs/common/domain/src/lib/{record → model/record}/contact.model.d.ts +0 -0
- /package/libs/common/domain/src/lib/{record → model/record}/index.d.ts +0 -0
- /package/libs/common/domain/src/lib/{record → model/record}/organization.model.d.ts +0 -0
- /package/libs/common/domain/src/lib/{search → model/search}/filter.model.d.ts +0 -0
- /package/libs/common/domain/src/lib/{search → model/search}/index.d.ts +0 -0
- /package/libs/common/domain/src/lib/{search → model/search}/search.model.d.ts +0 -0
- /package/libs/common/domain/src/lib/{search → model/search}/sort-by.model.d.ts +0 -0
- /package/libs/common/domain/src/lib/{user.model.d.ts → model/user/user.model.d.ts} +0 -0
- /package/src/libs/common/domain/src/lib/{dataviz-configuration.model.ts → model/dataviz/dataviz-configuration.model.ts} +0 -0
- /package/src/libs/common/domain/src/lib/{record → model/record}/contact.model.ts +0 -0
- /package/src/libs/common/domain/src/lib/{record → model/record}/index.ts +0 -0
- /package/src/libs/common/domain/src/lib/{record → model/record}/organization.model.ts +0 -0
- /package/src/libs/common/domain/src/lib/{search → model/search}/filter.model.ts +0 -0
- /package/src/libs/common/domain/src/lib/{search → model/search}/index.ts +0 -0
- /package/src/libs/common/domain/src/lib/{search → model/search}/search.model.ts +0 -0
- /package/src/libs/common/domain/src/lib/{search → model/search}/sort-by.model.ts +0 -0
- /package/src/libs/common/domain/src/lib/{user.model.ts → model/user/user.model.ts} +0 -0
- /package/src/libs/ui/{catalog/src/lib/organisations-sort/organisations-sort.component.css → elements/src/lib/max-lines/max-lines.component.css} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* GeoNetwork 4.
|
|
2
|
+
* GeoNetwork 4.2.7 OpenAPI Documentation
|
|
3
3
|
* This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
5
|
+
* The version of the OpenAPI document: 4.2.7
|
|
6
6
|
* Contact: geonetwork-users@lists.sourceforge.net
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -33,7 +33,7 @@ import { Configuration } from '../configuration'
|
|
|
33
33
|
providedIn: 'root',
|
|
34
34
|
})
|
|
35
35
|
export class GroupsApiService {
|
|
36
|
-
protected basePath = 'https://
|
|
36
|
+
protected basePath = 'https://demo.georchestra.org/geonetwork/srv/api'
|
|
37
37
|
public defaultHeaders = new HttpHeaders()
|
|
38
38
|
public configuration = new Configuration()
|
|
39
39
|
public encoder: HttpParameterCodec
|
|
@@ -113,7 +113,7 @@ export class GroupsApiService {
|
|
|
113
113
|
/**
|
|
114
114
|
* Add a group
|
|
115
115
|
* Return the identifier of the group created.
|
|
116
|
-
* @param groupApiModel
|
|
116
|
+
* @param groupApiModel
|
|
117
117
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
118
118
|
* @param reportProgress flag to report request and response progress.
|
|
119
119
|
*/
|
|
@@ -351,6 +351,79 @@ export class GroupsApiService {
|
|
|
351
351
|
)
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
+
/**
|
|
355
|
+
* Get the group logo image.
|
|
356
|
+
* If last-modified header is present it is used to check if the logo has been modified since the header date. If it hasn\'t been modified returns an empty 304 Not Modified response. If modified returns the image. If the group has no logo then returns a transparent 1x1 px PNG image.
|
|
357
|
+
* @param groupId Group identifier
|
|
358
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
359
|
+
* @param reportProgress flag to report request and response progress.
|
|
360
|
+
*/
|
|
361
|
+
public getGroupLogo(
|
|
362
|
+
groupId: number,
|
|
363
|
+
observe?: 'body',
|
|
364
|
+
reportProgress?: boolean,
|
|
365
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
366
|
+
): Observable<any>
|
|
367
|
+
public getGroupLogo(
|
|
368
|
+
groupId: number,
|
|
369
|
+
observe?: 'response',
|
|
370
|
+
reportProgress?: boolean,
|
|
371
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
372
|
+
): Observable<HttpResponse<any>>
|
|
373
|
+
public getGroupLogo(
|
|
374
|
+
groupId: number,
|
|
375
|
+
observe?: 'events',
|
|
376
|
+
reportProgress?: boolean,
|
|
377
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
378
|
+
): Observable<HttpEvent<any>>
|
|
379
|
+
public getGroupLogo(
|
|
380
|
+
groupId: number,
|
|
381
|
+
observe: any = 'body',
|
|
382
|
+
reportProgress: boolean = false,
|
|
383
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
384
|
+
): Observable<any> {
|
|
385
|
+
if (groupId === null || groupId === undefined) {
|
|
386
|
+
throw new Error(
|
|
387
|
+
'Required parameter groupId was null or undefined when calling getGroupLogo.'
|
|
388
|
+
)
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
let headers = this.defaultHeaders
|
|
392
|
+
|
|
393
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
394
|
+
options && options.httpHeaderAccept
|
|
395
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
396
|
+
// to determine the Accept header
|
|
397
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
398
|
+
httpHeaderAcceptSelected =
|
|
399
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
400
|
+
}
|
|
401
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
402
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
406
|
+
if (
|
|
407
|
+
httpHeaderAcceptSelected &&
|
|
408
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
409
|
+
) {
|
|
410
|
+
responseType_ = 'text'
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
return this.httpClient.get<any>(
|
|
414
|
+
`${this.configuration.basePath}/groups/${encodeURIComponent(
|
|
415
|
+
String(groupId)
|
|
416
|
+
)}/logo`,
|
|
417
|
+
{
|
|
418
|
+
responseType: <any>responseType_,
|
|
419
|
+
withCredentials: this.configuration.withCredentials,
|
|
420
|
+
headers: headers,
|
|
421
|
+
observe: observe,
|
|
422
|
+
reportProgress: reportProgress,
|
|
423
|
+
}
|
|
424
|
+
)
|
|
425
|
+
}
|
|
426
|
+
|
|
354
427
|
/**
|
|
355
428
|
* Get group users
|
|
356
429
|
* @param groupIdentifier Group identifier
|
|
@@ -513,7 +586,7 @@ export class GroupsApiService {
|
|
|
513
586
|
/**
|
|
514
587
|
* Update a group
|
|
515
588
|
* @param groupIdentifier Group identifier
|
|
516
|
-
* @param groupApiModel
|
|
589
|
+
* @param groupApiModel
|
|
517
590
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
518
591
|
* @param reportProgress flag to report request and response progress.
|
|
519
592
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* GeoNetwork 4.
|
|
2
|
+
* GeoNetwork 4.2.7 OpenAPI Documentation
|
|
3
3
|
* This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
5
|
+
* The version of the OpenAPI document: 4.2.7
|
|
6
6
|
* Contact: geonetwork-users@lists.sourceforge.net
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -30,7 +30,7 @@ import { Configuration } from '../configuration'
|
|
|
30
30
|
providedIn: 'root',
|
|
31
31
|
})
|
|
32
32
|
export class HarvestersApiService {
|
|
33
|
-
protected basePath = 'https://
|
|
33
|
+
protected basePath = 'https://demo.georchestra.org/geonetwork/srv/api'
|
|
34
34
|
public defaultHeaders = new HttpHeaders()
|
|
35
35
|
public configuration = new Configuration()
|
|
36
36
|
public encoder: HttpParameterCodec
|
|
@@ -199,4 +199,96 @@ export class HarvestersApiService {
|
|
|
199
199
|
}
|
|
200
200
|
)
|
|
201
201
|
}
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Check if a harvester name or host already exist
|
|
205
|
+
* @param property The harvester property to check
|
|
206
|
+
* @param exist The value to search
|
|
207
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
208
|
+
* @param reportProgress flag to report request and response progress.
|
|
209
|
+
*/
|
|
210
|
+
public checkHarvesterPropertyExist(
|
|
211
|
+
property: string,
|
|
212
|
+
exist: string,
|
|
213
|
+
observe?: 'body',
|
|
214
|
+
reportProgress?: boolean,
|
|
215
|
+
options?: { httpHeaderAccept?: 'application/json' | '*/*' }
|
|
216
|
+
): Observable<string>
|
|
217
|
+
public checkHarvesterPropertyExist(
|
|
218
|
+
property: string,
|
|
219
|
+
exist: string,
|
|
220
|
+
observe?: 'response',
|
|
221
|
+
reportProgress?: boolean,
|
|
222
|
+
options?: { httpHeaderAccept?: 'application/json' | '*/*' }
|
|
223
|
+
): Observable<HttpResponse<string>>
|
|
224
|
+
public checkHarvesterPropertyExist(
|
|
225
|
+
property: string,
|
|
226
|
+
exist: string,
|
|
227
|
+
observe?: 'events',
|
|
228
|
+
reportProgress?: boolean,
|
|
229
|
+
options?: { httpHeaderAccept?: 'application/json' | '*/*' }
|
|
230
|
+
): Observable<HttpEvent<string>>
|
|
231
|
+
public checkHarvesterPropertyExist(
|
|
232
|
+
property: string,
|
|
233
|
+
exist: string,
|
|
234
|
+
observe: any = 'body',
|
|
235
|
+
reportProgress: boolean = false,
|
|
236
|
+
options?: { httpHeaderAccept?: 'application/json' | '*/*' }
|
|
237
|
+
): Observable<any> {
|
|
238
|
+
if (property === null || property === undefined) {
|
|
239
|
+
throw new Error(
|
|
240
|
+
'Required parameter property was null or undefined when calling checkHarvesterPropertyExist.'
|
|
241
|
+
)
|
|
242
|
+
}
|
|
243
|
+
if (exist === null || exist === undefined) {
|
|
244
|
+
throw new Error(
|
|
245
|
+
'Required parameter exist was null or undefined when calling checkHarvesterPropertyExist.'
|
|
246
|
+
)
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
250
|
+
if (exist !== undefined && exist !== null) {
|
|
251
|
+
queryParameters = this.addToHttpParams(
|
|
252
|
+
queryParameters,
|
|
253
|
+
<any>exist,
|
|
254
|
+
'exist'
|
|
255
|
+
)
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
let headers = this.defaultHeaders
|
|
259
|
+
|
|
260
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
261
|
+
options && options.httpHeaderAccept
|
|
262
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
263
|
+
// to determine the Accept header
|
|
264
|
+
const httpHeaderAccepts: string[] = ['application/json', '*/*']
|
|
265
|
+
httpHeaderAcceptSelected =
|
|
266
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
267
|
+
}
|
|
268
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
269
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
273
|
+
if (
|
|
274
|
+
httpHeaderAcceptSelected &&
|
|
275
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
276
|
+
) {
|
|
277
|
+
responseType_ = 'text'
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
return this.httpClient.get<string>(
|
|
281
|
+
`${
|
|
282
|
+
this.configuration.basePath
|
|
283
|
+
}/harvesters/properties/${encodeURIComponent(String(property))}`,
|
|
284
|
+
{
|
|
285
|
+
params: queryParameters,
|
|
286
|
+
responseType: <any>responseType_,
|
|
287
|
+
withCredentials: this.configuration.withCredentials,
|
|
288
|
+
headers: headers,
|
|
289
|
+
observe: observe,
|
|
290
|
+
reportProgress: reportProgress,
|
|
291
|
+
}
|
|
292
|
+
)
|
|
293
|
+
}
|
|
202
294
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* GeoNetwork 4.
|
|
2
|
+
* GeoNetwork 4.2.7 OpenAPI Documentation
|
|
3
3
|
* This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
5
|
+
* The version of the OpenAPI document: 4.2.7
|
|
6
6
|
* Contact: geonetwork-users@lists.sourceforge.net
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,7 +32,7 @@ import { Configuration } from '../configuration'
|
|
|
32
32
|
providedIn: 'root',
|
|
33
33
|
})
|
|
34
34
|
export class IdentifiersApiService {
|
|
35
|
-
protected basePath = 'https://
|
|
35
|
+
protected basePath = 'https://demo.georchestra.org/geonetwork/srv/api'
|
|
36
36
|
public defaultHeaders = new HttpHeaders()
|
|
37
37
|
public configuration = new Configuration()
|
|
38
38
|
public encoder: HttpParameterCodec
|
|
@@ -111,7 +111,7 @@ export class IdentifiersApiService {
|
|
|
111
111
|
|
|
112
112
|
/**
|
|
113
113
|
* Add an identifier template
|
|
114
|
-
* @param metadataIdentifierTemplateApiModel
|
|
114
|
+
* @param metadataIdentifierTemplateApiModel
|
|
115
115
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
116
116
|
* @param reportProgress flag to report request and response progress.
|
|
117
117
|
*/
|
|
@@ -191,6 +191,78 @@ export class IdentifiersApiService {
|
|
|
191
191
|
)
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
/**
|
|
195
|
+
* Remove an identifier template
|
|
196
|
+
* @param identifier Identifier template identifier
|
|
197
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
198
|
+
* @param reportProgress flag to report request and response progress.
|
|
199
|
+
*/
|
|
200
|
+
public deleteIdentifier(
|
|
201
|
+
identifier: number,
|
|
202
|
+
observe?: 'body',
|
|
203
|
+
reportProgress?: boolean,
|
|
204
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
205
|
+
): Observable<any>
|
|
206
|
+
public deleteIdentifier(
|
|
207
|
+
identifier: number,
|
|
208
|
+
observe?: 'response',
|
|
209
|
+
reportProgress?: boolean,
|
|
210
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
211
|
+
): Observable<HttpResponse<any>>
|
|
212
|
+
public deleteIdentifier(
|
|
213
|
+
identifier: number,
|
|
214
|
+
observe?: 'events',
|
|
215
|
+
reportProgress?: boolean,
|
|
216
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
217
|
+
): Observable<HttpEvent<any>>
|
|
218
|
+
public deleteIdentifier(
|
|
219
|
+
identifier: number,
|
|
220
|
+
observe: any = 'body',
|
|
221
|
+
reportProgress: boolean = false,
|
|
222
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
223
|
+
): Observable<any> {
|
|
224
|
+
if (identifier === null || identifier === undefined) {
|
|
225
|
+
throw new Error(
|
|
226
|
+
'Required parameter identifier was null or undefined when calling deleteIdentifier.'
|
|
227
|
+
)
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
let headers = this.defaultHeaders
|
|
231
|
+
|
|
232
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
233
|
+
options && options.httpHeaderAccept
|
|
234
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
235
|
+
// to determine the Accept header
|
|
236
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
237
|
+
httpHeaderAcceptSelected =
|
|
238
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
239
|
+
}
|
|
240
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
241
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
245
|
+
if (
|
|
246
|
+
httpHeaderAcceptSelected &&
|
|
247
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
248
|
+
) {
|
|
249
|
+
responseType_ = 'text'
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
return this.httpClient.delete<any>(
|
|
253
|
+
`${this.configuration.basePath}/identifiers/${encodeURIComponent(
|
|
254
|
+
String(identifier)
|
|
255
|
+
)}`,
|
|
256
|
+
{
|
|
257
|
+
responseType: <any>responseType_,
|
|
258
|
+
withCredentials: this.configuration.withCredentials,
|
|
259
|
+
headers: headers,
|
|
260
|
+
observe: observe,
|
|
261
|
+
reportProgress: reportProgress,
|
|
262
|
+
}
|
|
263
|
+
)
|
|
264
|
+
}
|
|
265
|
+
|
|
194
266
|
/**
|
|
195
267
|
* Get identifier templates
|
|
196
268
|
* Identifier templates are used to create record UUIDs havind a particular structure. The template will be used when user creates a new record. The template identifier to use is defined in the administration > settings.
|
|
@@ -269,7 +341,7 @@ export class IdentifiersApiService {
|
|
|
269
341
|
/**
|
|
270
342
|
* Update an identifier template
|
|
271
343
|
* @param identifier Identifier template identifier
|
|
272
|
-
* @param metadataIdentifierTemplateApiModel
|
|
344
|
+
* @param metadataIdentifierTemplateApiModel
|
|
273
345
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
274
346
|
* @param reportProgress flag to report request and response progress.
|
|
275
347
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* GeoNetwork 4.
|
|
2
|
+
* GeoNetwork 4.2.7 OpenAPI Documentation
|
|
3
3
|
* This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
5
|
+
* The version of the OpenAPI document: 4.2.7
|
|
6
6
|
* Contact: geonetwork-users@lists.sourceforge.net
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -24,6 +24,7 @@ import { CustomHttpParameterCodec } from '../encoder'
|
|
|
24
24
|
import { Observable } from 'rxjs'
|
|
25
25
|
|
|
26
26
|
import { IsoLanguageApiModel } from '../model/models'
|
|
27
|
+
import { LanguageApiModel } from '../model/models'
|
|
27
28
|
|
|
28
29
|
import { BASE_PATH, COLLECTION_FORMATS } from '../variables'
|
|
29
30
|
import { Configuration } from '../configuration'
|
|
@@ -32,7 +33,7 @@ import { Configuration } from '../configuration'
|
|
|
32
33
|
providedIn: 'root',
|
|
33
34
|
})
|
|
34
35
|
export class LanguagesApiService {
|
|
35
|
-
protected basePath = 'https://
|
|
36
|
+
protected basePath = 'https://demo.georchestra.org/geonetwork/srv/api'
|
|
36
37
|
public defaultHeaders = new HttpHeaders()
|
|
37
38
|
public configuration = new Configuration()
|
|
38
39
|
public encoder: HttpParameterCodec
|
|
@@ -109,6 +110,213 @@ export class LanguagesApiService {
|
|
|
109
110
|
return httpParams
|
|
110
111
|
}
|
|
111
112
|
|
|
113
|
+
/**
|
|
114
|
+
* Add a language
|
|
115
|
+
* Add all default translations from all *Desc tables in the database. This operation will only add translations for a default catalog installation. Defaults can be customized in SQL scripts located in WEB-INF/classes/setup/sql/data/_*.
|
|
116
|
+
* @param langCode ISO 3 letter code
|
|
117
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
118
|
+
* @param reportProgress flag to report request and response progress.
|
|
119
|
+
*/
|
|
120
|
+
public addLanguages(
|
|
121
|
+
langCode: string,
|
|
122
|
+
observe?: 'body',
|
|
123
|
+
reportProgress?: boolean,
|
|
124
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
125
|
+
): Observable<any>
|
|
126
|
+
public addLanguages(
|
|
127
|
+
langCode: string,
|
|
128
|
+
observe?: 'response',
|
|
129
|
+
reportProgress?: boolean,
|
|
130
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
131
|
+
): Observable<HttpResponse<any>>
|
|
132
|
+
public addLanguages(
|
|
133
|
+
langCode: string,
|
|
134
|
+
observe?: 'events',
|
|
135
|
+
reportProgress?: boolean,
|
|
136
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
137
|
+
): Observable<HttpEvent<any>>
|
|
138
|
+
public addLanguages(
|
|
139
|
+
langCode: string,
|
|
140
|
+
observe: any = 'body',
|
|
141
|
+
reportProgress: boolean = false,
|
|
142
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
143
|
+
): Observable<any> {
|
|
144
|
+
if (langCode === null || langCode === undefined) {
|
|
145
|
+
throw new Error(
|
|
146
|
+
'Required parameter langCode was null or undefined when calling addLanguages.'
|
|
147
|
+
)
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
let headers = this.defaultHeaders
|
|
151
|
+
|
|
152
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
153
|
+
options && options.httpHeaderAccept
|
|
154
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
155
|
+
// to determine the Accept header
|
|
156
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
157
|
+
httpHeaderAcceptSelected =
|
|
158
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
159
|
+
}
|
|
160
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
161
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
165
|
+
if (
|
|
166
|
+
httpHeaderAcceptSelected &&
|
|
167
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
168
|
+
) {
|
|
169
|
+
responseType_ = 'text'
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
return this.httpClient.put<any>(
|
|
173
|
+
`${this.configuration.basePath}/languages/${encodeURIComponent(
|
|
174
|
+
String(langCode)
|
|
175
|
+
)}`,
|
|
176
|
+
null,
|
|
177
|
+
{
|
|
178
|
+
responseType: <any>responseType_,
|
|
179
|
+
withCredentials: this.configuration.withCredentials,
|
|
180
|
+
headers: headers,
|
|
181
|
+
observe: observe,
|
|
182
|
+
reportProgress: reportProgress,
|
|
183
|
+
}
|
|
184
|
+
)
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Remove a language
|
|
189
|
+
* Delete all translations from all *Desc tables in the database. Warning: This will also remove all translations you may have done to those objects (eg. custom groups).
|
|
190
|
+
* @param langCode ISO 3 letter code
|
|
191
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
192
|
+
* @param reportProgress flag to report request and response progress.
|
|
193
|
+
*/
|
|
194
|
+
public deleteLanguage(
|
|
195
|
+
langCode: string,
|
|
196
|
+
observe?: 'body',
|
|
197
|
+
reportProgress?: boolean,
|
|
198
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
199
|
+
): Observable<any>
|
|
200
|
+
public deleteLanguage(
|
|
201
|
+
langCode: string,
|
|
202
|
+
observe?: 'response',
|
|
203
|
+
reportProgress?: boolean,
|
|
204
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
205
|
+
): Observable<HttpResponse<any>>
|
|
206
|
+
public deleteLanguage(
|
|
207
|
+
langCode: string,
|
|
208
|
+
observe?: 'events',
|
|
209
|
+
reportProgress?: boolean,
|
|
210
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
211
|
+
): Observable<HttpEvent<any>>
|
|
212
|
+
public deleteLanguage(
|
|
213
|
+
langCode: string,
|
|
214
|
+
observe: any = 'body',
|
|
215
|
+
reportProgress: boolean = false,
|
|
216
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
217
|
+
): Observable<any> {
|
|
218
|
+
if (langCode === null || langCode === undefined) {
|
|
219
|
+
throw new Error(
|
|
220
|
+
'Required parameter langCode was null or undefined when calling deleteLanguage.'
|
|
221
|
+
)
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
let headers = this.defaultHeaders
|
|
225
|
+
|
|
226
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
227
|
+
options && options.httpHeaderAccept
|
|
228
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
229
|
+
// to determine the Accept header
|
|
230
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
231
|
+
httpHeaderAcceptSelected =
|
|
232
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
233
|
+
}
|
|
234
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
235
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
239
|
+
if (
|
|
240
|
+
httpHeaderAcceptSelected &&
|
|
241
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
242
|
+
) {
|
|
243
|
+
responseType_ = 'text'
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
return this.httpClient.delete<any>(
|
|
247
|
+
`${this.configuration.basePath}/languages/${encodeURIComponent(
|
|
248
|
+
String(langCode)
|
|
249
|
+
)}`,
|
|
250
|
+
{
|
|
251
|
+
responseType: <any>responseType_,
|
|
252
|
+
withCredentials: this.configuration.withCredentials,
|
|
253
|
+
headers: headers,
|
|
254
|
+
observe: observe,
|
|
255
|
+
reportProgress: reportProgress,
|
|
256
|
+
}
|
|
257
|
+
)
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Get languages available in the application
|
|
262
|
+
* Languages available in this version of the application. Those that you can add using PUT operation and which have SQL script to initialize the language.
|
|
263
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
264
|
+
* @param reportProgress flag to report request and response progress.
|
|
265
|
+
*/
|
|
266
|
+
public getApplicationLanguages(
|
|
267
|
+
observe?: 'body',
|
|
268
|
+
reportProgress?: boolean,
|
|
269
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
270
|
+
): Observable<Array<LanguageApiModel>>
|
|
271
|
+
public getApplicationLanguages(
|
|
272
|
+
observe?: 'response',
|
|
273
|
+
reportProgress?: boolean,
|
|
274
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
275
|
+
): Observable<HttpResponse<Array<LanguageApiModel>>>
|
|
276
|
+
public getApplicationLanguages(
|
|
277
|
+
observe?: 'events',
|
|
278
|
+
reportProgress?: boolean,
|
|
279
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
280
|
+
): Observable<HttpEvent<Array<LanguageApiModel>>>
|
|
281
|
+
public getApplicationLanguages(
|
|
282
|
+
observe: any = 'body',
|
|
283
|
+
reportProgress: boolean = false,
|
|
284
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
285
|
+
): Observable<any> {
|
|
286
|
+
let headers = this.defaultHeaders
|
|
287
|
+
|
|
288
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
289
|
+
options && options.httpHeaderAccept
|
|
290
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
291
|
+
// to determine the Accept header
|
|
292
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
293
|
+
httpHeaderAcceptSelected =
|
|
294
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
295
|
+
}
|
|
296
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
297
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
301
|
+
if (
|
|
302
|
+
httpHeaderAcceptSelected &&
|
|
303
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
304
|
+
) {
|
|
305
|
+
responseType_ = 'text'
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
return this.httpClient.get<Array<LanguageApiModel>>(
|
|
309
|
+
`${this.configuration.basePath}/languages/application`,
|
|
310
|
+
{
|
|
311
|
+
responseType: <any>responseType_,
|
|
312
|
+
withCredentials: this.configuration.withCredentials,
|
|
313
|
+
headers: headers,
|
|
314
|
+
observe: observe,
|
|
315
|
+
reportProgress: reportProgress,
|
|
316
|
+
}
|
|
317
|
+
)
|
|
318
|
+
}
|
|
319
|
+
|
|
112
320
|
/**
|
|
113
321
|
* Get ISO languages
|
|
114
322
|
* ISO languages provides a list of all languages (eg. used for autocompletion in metadata editor).
|
|
@@ -168,4 +376,64 @@ export class LanguagesApiService {
|
|
|
168
376
|
}
|
|
169
377
|
)
|
|
170
378
|
}
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Get languages
|
|
382
|
+
* Languages for the application having translations in the database. All tables with \'Desc\' suffix contains translation for some domain objects like groups, tags, ...
|
|
383
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
384
|
+
* @param reportProgress flag to report request and response progress.
|
|
385
|
+
*/
|
|
386
|
+
public getLanguages(
|
|
387
|
+
observe?: 'body',
|
|
388
|
+
reportProgress?: boolean,
|
|
389
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
390
|
+
): Observable<Array<LanguageApiModel>>
|
|
391
|
+
public getLanguages(
|
|
392
|
+
observe?: 'response',
|
|
393
|
+
reportProgress?: boolean,
|
|
394
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
395
|
+
): Observable<HttpResponse<Array<LanguageApiModel>>>
|
|
396
|
+
public getLanguages(
|
|
397
|
+
observe?: 'events',
|
|
398
|
+
reportProgress?: boolean,
|
|
399
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
400
|
+
): Observable<HttpEvent<Array<LanguageApiModel>>>
|
|
401
|
+
public getLanguages(
|
|
402
|
+
observe: any = 'body',
|
|
403
|
+
reportProgress: boolean = false,
|
|
404
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
405
|
+
): Observable<any> {
|
|
406
|
+
let headers = this.defaultHeaders
|
|
407
|
+
|
|
408
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
409
|
+
options && options.httpHeaderAccept
|
|
410
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
411
|
+
// to determine the Accept header
|
|
412
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
413
|
+
httpHeaderAcceptSelected =
|
|
414
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
415
|
+
}
|
|
416
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
417
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
421
|
+
if (
|
|
422
|
+
httpHeaderAcceptSelected &&
|
|
423
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
424
|
+
) {
|
|
425
|
+
responseType_ = 'text'
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
return this.httpClient.get<Array<LanguageApiModel>>(
|
|
429
|
+
`${this.configuration.basePath}/languages`,
|
|
430
|
+
{
|
|
431
|
+
responseType: <any>responseType_,
|
|
432
|
+
withCredentials: this.configuration.withCredentials,
|
|
433
|
+
headers: headers,
|
|
434
|
+
observe: observe,
|
|
435
|
+
reportProgress: reportProgress,
|
|
436
|
+
}
|
|
437
|
+
)
|
|
438
|
+
}
|
|
171
439
|
}
|