geonetwork-ui 2.1.0-initial → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/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 +4 -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/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 +69 -23
- package/esm2022/translations/en.json +69 -42
- package/esm2022/translations/es.json +84 -57
- package/esm2022/translations/fr.json +69 -42
- package/esm2022/translations/it.json +309 -285
- package/esm2022/translations/nl.json +85 -58
- package/esm2022/translations/pt.json +84 -57
- package/fesm2022/geonetwork-ui.mjs +6052 -1473
- 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 +2 -2
- 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 +1 -1
- 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 +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/form-field/form-field.component.d.ts +1 -1
- 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 +1 -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/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/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 +4 -31
- package/src/libs/util/app-config/src/lib/fixtures.ts +1 -1
- package/src/libs/util/app-config/src/lib/model.ts +1 -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/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 +2 -2
- package/translations/de.json +69 -23
- package/translations/en.json +69 -42
- package/translations/es.json +84 -57
- package/translations/fr.json +69 -42
- package/translations/it.json +309 -285
- package/translations/nl.json +85 -58
- package/translations/pt.json +84 -57
- package/translations/sk.json +316 -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).
|
|
@@ -24,11 +24,10 @@ import { CustomHttpParameterCodec } from '../encoder'
|
|
|
24
24
|
import { Observable } from 'rxjs'
|
|
25
25
|
|
|
26
26
|
import { CrsApiModel } from '../model/models'
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import { InlineObject3ApiModel } from '../model/models'
|
|
30
|
-
import { KeywordBeanApiModel } from '../model/models'
|
|
27
|
+
import { InlineObject1ApiModel } from '../model/models'
|
|
28
|
+
import { InlineObject4ApiModel } from '../model/models'
|
|
31
29
|
import { SimpleMetadataProcessingReportApiModel } from '../model/models'
|
|
30
|
+
import { ThesaurusInfoApiModel } from '../model/models'
|
|
32
31
|
|
|
33
32
|
import { BASE_PATH, COLLECTION_FORMATS } from '../variables'
|
|
34
33
|
import { Configuration } from '../configuration'
|
|
@@ -37,7 +36,7 @@ import { Configuration } from '../configuration'
|
|
|
37
36
|
providedIn: 'root',
|
|
38
37
|
})
|
|
39
38
|
export class RegistriesApiService {
|
|
40
|
-
protected basePath = 'https://
|
|
39
|
+
protected basePath = 'https://demo.georchestra.org/geonetwork/srv/api'
|
|
41
40
|
public defaultHeaders = new HttpHeaders()
|
|
42
41
|
public configuration = new Configuration()
|
|
43
42
|
public encoder: HttpParameterCodec
|
|
@@ -201,6 +200,126 @@ export class RegistriesApiService {
|
|
|
201
200
|
)
|
|
202
201
|
}
|
|
203
202
|
|
|
203
|
+
/**
|
|
204
|
+
* Extracts directory entries from records
|
|
205
|
+
* Scan one or more records for element matching the XPath provided and save them as directory entries (ie. subtemplate).<br/><br/>Only records that the current user can edit are analyzed.<br/><br/>Examples:<br/>For ISO19115-3 records, use .//cit:CI_Responsibility and compute identifier based on email with .//cit:electronicMailAddress/_*_/text() to create a contact directory.
|
|
206
|
+
* @param xpath XPath of the elements to extract as entry.
|
|
207
|
+
* @param uuids Record UUIDs. If null current selection is used.
|
|
208
|
+
* @param bucket Selection bucket name
|
|
209
|
+
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
210
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
211
|
+
* @param reportProgress flag to report request and response progress.
|
|
212
|
+
*/
|
|
213
|
+
public extractEntries(
|
|
214
|
+
xpath: string,
|
|
215
|
+
uuids?: Array<string>,
|
|
216
|
+
bucket?: string,
|
|
217
|
+
identifierXpath?: string,
|
|
218
|
+
observe?: 'body',
|
|
219
|
+
reportProgress?: boolean,
|
|
220
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
221
|
+
): Observable<object>
|
|
222
|
+
public extractEntries(
|
|
223
|
+
xpath: string,
|
|
224
|
+
uuids?: Array<string>,
|
|
225
|
+
bucket?: string,
|
|
226
|
+
identifierXpath?: string,
|
|
227
|
+
observe?: 'response',
|
|
228
|
+
reportProgress?: boolean,
|
|
229
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
230
|
+
): Observable<HttpResponse<object>>
|
|
231
|
+
public extractEntries(
|
|
232
|
+
xpath: string,
|
|
233
|
+
uuids?: Array<string>,
|
|
234
|
+
bucket?: string,
|
|
235
|
+
identifierXpath?: string,
|
|
236
|
+
observe?: 'events',
|
|
237
|
+
reportProgress?: boolean,
|
|
238
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
239
|
+
): Observable<HttpEvent<object>>
|
|
240
|
+
public extractEntries(
|
|
241
|
+
xpath: string,
|
|
242
|
+
uuids?: Array<string>,
|
|
243
|
+
bucket?: string,
|
|
244
|
+
identifierXpath?: string,
|
|
245
|
+
observe: any = 'body',
|
|
246
|
+
reportProgress: boolean = false,
|
|
247
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
248
|
+
): Observable<any> {
|
|
249
|
+
if (xpath === null || xpath === undefined) {
|
|
250
|
+
throw new Error(
|
|
251
|
+
'Required parameter xpath was null or undefined when calling extractEntries.'
|
|
252
|
+
)
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
256
|
+
if (uuids) {
|
|
257
|
+
uuids.forEach((element) => {
|
|
258
|
+
queryParameters = this.addToHttpParams(
|
|
259
|
+
queryParameters,
|
|
260
|
+
<any>element,
|
|
261
|
+
'uuids'
|
|
262
|
+
)
|
|
263
|
+
})
|
|
264
|
+
}
|
|
265
|
+
if (bucket !== undefined && bucket !== null) {
|
|
266
|
+
queryParameters = this.addToHttpParams(
|
|
267
|
+
queryParameters,
|
|
268
|
+
<any>bucket,
|
|
269
|
+
'bucket'
|
|
270
|
+
)
|
|
271
|
+
}
|
|
272
|
+
if (xpath !== undefined && xpath !== null) {
|
|
273
|
+
queryParameters = this.addToHttpParams(
|
|
274
|
+
queryParameters,
|
|
275
|
+
<any>xpath,
|
|
276
|
+
'xpath'
|
|
277
|
+
)
|
|
278
|
+
}
|
|
279
|
+
if (identifierXpath !== undefined && identifierXpath !== null) {
|
|
280
|
+
queryParameters = this.addToHttpParams(
|
|
281
|
+
queryParameters,
|
|
282
|
+
<any>identifierXpath,
|
|
283
|
+
'identifierXpath'
|
|
284
|
+
)
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
let headers = this.defaultHeaders
|
|
288
|
+
|
|
289
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
290
|
+
options && options.httpHeaderAccept
|
|
291
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
292
|
+
// to determine the Accept header
|
|
293
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
294
|
+
httpHeaderAcceptSelected =
|
|
295
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
296
|
+
}
|
|
297
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
298
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
302
|
+
if (
|
|
303
|
+
httpHeaderAcceptSelected &&
|
|
304
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
305
|
+
) {
|
|
306
|
+
responseType_ = 'text'
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
return this.httpClient.put<object>(
|
|
310
|
+
`${this.configuration.basePath}/registries/actions/entries/collect`,
|
|
311
|
+
null,
|
|
312
|
+
{
|
|
313
|
+
params: queryParameters,
|
|
314
|
+
responseType: <any>responseType_,
|
|
315
|
+
withCredentials: this.configuration.withCredentials,
|
|
316
|
+
headers: headers,
|
|
317
|
+
observe: observe,
|
|
318
|
+
reportProgress: reportProgress,
|
|
319
|
+
}
|
|
320
|
+
)
|
|
321
|
+
}
|
|
322
|
+
|
|
204
323
|
/**
|
|
205
324
|
* Get CRS
|
|
206
325
|
* @param id CRS identifier
|
|
@@ -354,8 +473,8 @@ export class RegistriesApiService {
|
|
|
354
473
|
schema?: string,
|
|
355
474
|
observe?: 'body',
|
|
356
475
|
reportProgress?: boolean,
|
|
357
|
-
options?: { httpHeaderAccept?: 'application/json'
|
|
358
|
-
): Observable<
|
|
476
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
477
|
+
): Observable<any>
|
|
359
478
|
public getEntry(
|
|
360
479
|
uuid: string,
|
|
361
480
|
process?: Array<string>,
|
|
@@ -364,8 +483,8 @@ export class RegistriesApiService {
|
|
|
364
483
|
schema?: string,
|
|
365
484
|
observe?: 'response',
|
|
366
485
|
reportProgress?: boolean,
|
|
367
|
-
options?: { httpHeaderAccept?: 'application/json'
|
|
368
|
-
): Observable<HttpResponse<
|
|
486
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
487
|
+
): Observable<HttpResponse<any>>
|
|
369
488
|
public getEntry(
|
|
370
489
|
uuid: string,
|
|
371
490
|
process?: Array<string>,
|
|
@@ -374,8 +493,8 @@ export class RegistriesApiService {
|
|
|
374
493
|
schema?: string,
|
|
375
494
|
observe?: 'events',
|
|
376
495
|
reportProgress?: boolean,
|
|
377
|
-
options?: { httpHeaderAccept?: 'application/json'
|
|
378
|
-
): Observable<HttpEvent<
|
|
496
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
497
|
+
): Observable<HttpEvent<any>>
|
|
379
498
|
public getEntry(
|
|
380
499
|
uuid: string,
|
|
381
500
|
process?: Array<string>,
|
|
@@ -384,7 +503,7 @@ export class RegistriesApiService {
|
|
|
384
503
|
schema?: string,
|
|
385
504
|
observe: any = 'body',
|
|
386
505
|
reportProgress: boolean = false,
|
|
387
|
-
options?: { httpHeaderAccept?: 'application/json'
|
|
506
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
388
507
|
): Observable<any> {
|
|
389
508
|
if (uuid === null || uuid === undefined) {
|
|
390
509
|
throw new Error(
|
|
@@ -432,10 +551,7 @@ export class RegistriesApiService {
|
|
|
432
551
|
options && options.httpHeaderAccept
|
|
433
552
|
if (httpHeaderAcceptSelected === undefined) {
|
|
434
553
|
// to determine the Accept header
|
|
435
|
-
const httpHeaderAccepts: string[] = [
|
|
436
|
-
'application/json',
|
|
437
|
-
'application/xml',
|
|
438
|
-
]
|
|
554
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
439
555
|
httpHeaderAcceptSelected =
|
|
440
556
|
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
441
557
|
}
|
|
@@ -451,7 +567,7 @@ export class RegistriesApiService {
|
|
|
451
567
|
responseType_ = 'text'
|
|
452
568
|
}
|
|
453
569
|
|
|
454
|
-
return this.httpClient.get<
|
|
570
|
+
return this.httpClient.get<any>(
|
|
455
571
|
`${this.configuration.basePath}/registries/entries/${encodeURIComponent(
|
|
456
572
|
String(uuid)
|
|
457
573
|
)}`,
|
|
@@ -608,6 +724,162 @@ export class RegistriesApiService {
|
|
|
608
724
|
responseType_ = 'text'
|
|
609
725
|
}
|
|
610
726
|
|
|
727
|
+
return this.httpClient.post<object>(
|
|
728
|
+
`${this.configuration.basePath}/registries/vocabularies/keyword`,
|
|
729
|
+
null,
|
|
730
|
+
{
|
|
731
|
+
params: queryParameters,
|
|
732
|
+
responseType: <any>responseType_,
|
|
733
|
+
withCredentials: this.configuration.withCredentials,
|
|
734
|
+
headers: headers,
|
|
735
|
+
observe: observe,
|
|
736
|
+
reportProgress: reportProgress,
|
|
737
|
+
}
|
|
738
|
+
)
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* Get keyword by id
|
|
743
|
+
* Retrieve XML representation of keyword(s) from same thesaurususing different transformations. \'to-iso19139-keyword\' is the default and return an ISO19139 snippet.\'to-iso19139-keyword-as-xlink\' return an XLinked element. Custom transformation can be create on a per schema basis.
|
|
744
|
+
* @param id Keyword identifier or list of keyword identifiers comma separated.
|
|
745
|
+
* @param thesaurus Thesaurus to look info for the keyword(s).
|
|
746
|
+
* @param lang Languages.
|
|
747
|
+
* @param keywordOnly Only print the keyword, no thesaurus information.
|
|
748
|
+
* @param transformation XSL template to use (ISO19139 keyword by default, see convert.xsl).
|
|
749
|
+
* @param langMap langMap, that converts the values in the \'lang\' parameter to how they will be actually represented in the record. {\'fre\':\'fra\'} or {\'fre\':\'fr\'}. Missing/empty means to convert to iso 2 letter.
|
|
750
|
+
* @param accept
|
|
751
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
752
|
+
* @param reportProgress flag to report request and response progress.
|
|
753
|
+
*/
|
|
754
|
+
public getKeywordById1(
|
|
755
|
+
id: string,
|
|
756
|
+
thesaurus: string,
|
|
757
|
+
lang?: Array<string>,
|
|
758
|
+
keywordOnly?: boolean,
|
|
759
|
+
transformation?: string,
|
|
760
|
+
langMap?: string,
|
|
761
|
+
accept?: string,
|
|
762
|
+
observe?: 'body',
|
|
763
|
+
reportProgress?: boolean,
|
|
764
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
765
|
+
): Observable<object>
|
|
766
|
+
public getKeywordById1(
|
|
767
|
+
id: string,
|
|
768
|
+
thesaurus: string,
|
|
769
|
+
lang?: Array<string>,
|
|
770
|
+
keywordOnly?: boolean,
|
|
771
|
+
transformation?: string,
|
|
772
|
+
langMap?: string,
|
|
773
|
+
accept?: string,
|
|
774
|
+
observe?: 'response',
|
|
775
|
+
reportProgress?: boolean,
|
|
776
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
777
|
+
): Observable<HttpResponse<object>>
|
|
778
|
+
public getKeywordById1(
|
|
779
|
+
id: string,
|
|
780
|
+
thesaurus: string,
|
|
781
|
+
lang?: Array<string>,
|
|
782
|
+
keywordOnly?: boolean,
|
|
783
|
+
transformation?: string,
|
|
784
|
+
langMap?: string,
|
|
785
|
+
accept?: string,
|
|
786
|
+
observe?: 'events',
|
|
787
|
+
reportProgress?: boolean,
|
|
788
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
789
|
+
): Observable<HttpEvent<object>>
|
|
790
|
+
public getKeywordById1(
|
|
791
|
+
id: string,
|
|
792
|
+
thesaurus: string,
|
|
793
|
+
lang?: Array<string>,
|
|
794
|
+
keywordOnly?: boolean,
|
|
795
|
+
transformation?: string,
|
|
796
|
+
langMap?: string,
|
|
797
|
+
accept?: string,
|
|
798
|
+
observe: any = 'body',
|
|
799
|
+
reportProgress: boolean = false,
|
|
800
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
801
|
+
): Observable<any> {
|
|
802
|
+
if (id === null || id === undefined) {
|
|
803
|
+
throw new Error(
|
|
804
|
+
'Required parameter id was null or undefined when calling getKeywordById1.'
|
|
805
|
+
)
|
|
806
|
+
}
|
|
807
|
+
if (thesaurus === null || thesaurus === undefined) {
|
|
808
|
+
throw new Error(
|
|
809
|
+
'Required parameter thesaurus was null or undefined when calling getKeywordById1.'
|
|
810
|
+
)
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
814
|
+
if (id !== undefined && id !== null) {
|
|
815
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>id, 'id')
|
|
816
|
+
}
|
|
817
|
+
if (thesaurus !== undefined && thesaurus !== null) {
|
|
818
|
+
queryParameters = this.addToHttpParams(
|
|
819
|
+
queryParameters,
|
|
820
|
+
<any>thesaurus,
|
|
821
|
+
'thesaurus'
|
|
822
|
+
)
|
|
823
|
+
}
|
|
824
|
+
if (lang) {
|
|
825
|
+
lang.forEach((element) => {
|
|
826
|
+
queryParameters = this.addToHttpParams(
|
|
827
|
+
queryParameters,
|
|
828
|
+
<any>element,
|
|
829
|
+
'lang'
|
|
830
|
+
)
|
|
831
|
+
})
|
|
832
|
+
}
|
|
833
|
+
if (keywordOnly !== undefined && keywordOnly !== null) {
|
|
834
|
+
queryParameters = this.addToHttpParams(
|
|
835
|
+
queryParameters,
|
|
836
|
+
<any>keywordOnly,
|
|
837
|
+
'keywordOnly'
|
|
838
|
+
)
|
|
839
|
+
}
|
|
840
|
+
if (transformation !== undefined && transformation !== null) {
|
|
841
|
+
queryParameters = this.addToHttpParams(
|
|
842
|
+
queryParameters,
|
|
843
|
+
<any>transformation,
|
|
844
|
+
'transformation'
|
|
845
|
+
)
|
|
846
|
+
}
|
|
847
|
+
if (langMap !== undefined && langMap !== null) {
|
|
848
|
+
queryParameters = this.addToHttpParams(
|
|
849
|
+
queryParameters,
|
|
850
|
+
<any>langMap,
|
|
851
|
+
'langMap'
|
|
852
|
+
)
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
let headers = this.defaultHeaders
|
|
856
|
+
if (accept !== undefined && accept !== null) {
|
|
857
|
+
headers = headers.set('Accept', String(accept))
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
861
|
+
options && options.httpHeaderAccept
|
|
862
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
863
|
+
// to determine the Accept header
|
|
864
|
+
const httpHeaderAccepts: string[] = [
|
|
865
|
+
'application/json',
|
|
866
|
+
'application/xml',
|
|
867
|
+
]
|
|
868
|
+
httpHeaderAcceptSelected =
|
|
869
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
870
|
+
}
|
|
871
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
872
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
876
|
+
if (
|
|
877
|
+
httpHeaderAcceptSelected &&
|
|
878
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
879
|
+
) {
|
|
880
|
+
responseType_ = 'text'
|
|
881
|
+
}
|
|
882
|
+
|
|
611
883
|
return this.httpClient.get<object>(
|
|
612
884
|
`${this.configuration.basePath}/registries/vocabularies/keyword`,
|
|
613
885
|
{
|
|
@@ -711,12 +983,12 @@ export class RegistriesApiService {
|
|
|
711
983
|
* @param conceptRelatedIdColumn Column name for related concept id. Default is related.
|
|
712
984
|
* @param conceptLinkSeparator Separator used when multiple broader/narrower/related ids are in the same column. Default is \'|\'.
|
|
713
985
|
* @param importAsThesaurus Import CSV file as thesaurus if true (detault) or return it in SKOS format.
|
|
714
|
-
* @param
|
|
986
|
+
* @param inlineObject4ApiModel
|
|
715
987
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
716
988
|
* @param reportProgress flag to report request and response progress.
|
|
717
989
|
*/
|
|
718
990
|
public importCsvAsThesaurus(
|
|
719
|
-
type?:
|
|
991
|
+
type?: 'external' | 'local',
|
|
720
992
|
dir?: string,
|
|
721
993
|
encoding?: string,
|
|
722
994
|
thesaurusNs?: string,
|
|
@@ -730,13 +1002,13 @@ export class RegistriesApiService {
|
|
|
730
1002
|
conceptRelatedIdColumn?: string,
|
|
731
1003
|
conceptLinkSeparator?: string,
|
|
732
1004
|
importAsThesaurus?: boolean,
|
|
733
|
-
|
|
1005
|
+
inlineObject4ApiModel?: InlineObject4ApiModel,
|
|
734
1006
|
observe?: 'body',
|
|
735
1007
|
reportProgress?: boolean,
|
|
736
1008
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
737
1009
|
): Observable<any>
|
|
738
1010
|
public importCsvAsThesaurus(
|
|
739
|
-
type?:
|
|
1011
|
+
type?: 'external' | 'local',
|
|
740
1012
|
dir?: string,
|
|
741
1013
|
encoding?: string,
|
|
742
1014
|
thesaurusNs?: string,
|
|
@@ -750,13 +1022,13 @@ export class RegistriesApiService {
|
|
|
750
1022
|
conceptRelatedIdColumn?: string,
|
|
751
1023
|
conceptLinkSeparator?: string,
|
|
752
1024
|
importAsThesaurus?: boolean,
|
|
753
|
-
|
|
1025
|
+
inlineObject4ApiModel?: InlineObject4ApiModel,
|
|
754
1026
|
observe?: 'response',
|
|
755
1027
|
reportProgress?: boolean,
|
|
756
1028
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
757
1029
|
): Observable<HttpResponse<any>>
|
|
758
1030
|
public importCsvAsThesaurus(
|
|
759
|
-
type?:
|
|
1031
|
+
type?: 'external' | 'local',
|
|
760
1032
|
dir?: string,
|
|
761
1033
|
encoding?: string,
|
|
762
1034
|
thesaurusNs?: string,
|
|
@@ -770,13 +1042,13 @@ export class RegistriesApiService {
|
|
|
770
1042
|
conceptRelatedIdColumn?: string,
|
|
771
1043
|
conceptLinkSeparator?: string,
|
|
772
1044
|
importAsThesaurus?: boolean,
|
|
773
|
-
|
|
1045
|
+
inlineObject4ApiModel?: InlineObject4ApiModel,
|
|
774
1046
|
observe?: 'events',
|
|
775
1047
|
reportProgress?: boolean,
|
|
776
1048
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
777
1049
|
): Observable<HttpEvent<any>>
|
|
778
1050
|
public importCsvAsThesaurus(
|
|
779
|
-
type?:
|
|
1051
|
+
type?: 'external' | 'local',
|
|
780
1052
|
dir?: string,
|
|
781
1053
|
encoding?: string,
|
|
782
1054
|
thesaurusNs?: string,
|
|
@@ -790,7 +1062,7 @@ export class RegistriesApiService {
|
|
|
790
1062
|
conceptRelatedIdColumn?: string,
|
|
791
1063
|
conceptLinkSeparator?: string,
|
|
792
1064
|
importAsThesaurus?: boolean,
|
|
793
|
-
|
|
1065
|
+
inlineObject4ApiModel?: InlineObject4ApiModel,
|
|
794
1066
|
observe: any = 'body',
|
|
795
1067
|
reportProgress: boolean = false,
|
|
796
1068
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
@@ -933,7 +1205,7 @@ export class RegistriesApiService {
|
|
|
933
1205
|
|
|
934
1206
|
return this.httpClient.post<any>(
|
|
935
1207
|
`${this.configuration.basePath}/registries/vocabularies/import/csv`,
|
|
936
|
-
|
|
1208
|
+
inlineObject4ApiModel,
|
|
937
1209
|
{
|
|
938
1210
|
params: queryParameters,
|
|
939
1211
|
responseType: <any>responseType_,
|
|
@@ -948,84 +1220,111 @@ export class RegistriesApiService {
|
|
|
948
1220
|
/**
|
|
949
1221
|
* Import spatial directory entries
|
|
950
1222
|
* Directory entry (AKA subtemplates) are XML fragments that can be inserted in metadata records. Use this service to import geographic extent entries from an ESRI Shapefile format.
|
|
1223
|
+
* @param file The ZIP file to upload containing the Shapefile.
|
|
951
1224
|
* @param uuidAttribute Attribute to use for UUID. If none, random UUID are generated.
|
|
952
1225
|
* @param uuidPattern Pattern to build UUID from. Default is \'{{uuid}}\'.
|
|
953
1226
|
* @param descriptionAttribute Attribute to use for extent description. If none, no extent description defined. TODO: Add per language desc ?
|
|
954
1227
|
* @param geomProjectionTo geomProjectionTo
|
|
955
1228
|
* @param lenient lenient
|
|
1229
|
+
* @param charset Attribute table charset
|
|
956
1230
|
* @param onlyBoundingBox Create only bounding box for each spatial objects.
|
|
957
1231
|
* @param process Process
|
|
958
1232
|
* @param schema Schema identifier
|
|
959
1233
|
* @param uuidProcessing Record identifier processing.
|
|
960
1234
|
* @param group The group the record is attached to.
|
|
961
|
-
* @param file
|
|
962
1235
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
963
1236
|
* @param reportProgress flag to report request and response progress.
|
|
964
1237
|
*/
|
|
965
1238
|
public importSpatialEntries(
|
|
1239
|
+
file: Blob,
|
|
966
1240
|
uuidAttribute?: string,
|
|
967
1241
|
uuidPattern?: string,
|
|
968
1242
|
descriptionAttribute?: string,
|
|
969
1243
|
geomProjectionTo?: string,
|
|
970
1244
|
lenient?: boolean,
|
|
1245
|
+
charset?: string,
|
|
971
1246
|
onlyBoundingBox?: boolean,
|
|
972
1247
|
process?: string,
|
|
973
1248
|
schema?: string,
|
|
974
|
-
uuidProcessing?:
|
|
1249
|
+
uuidProcessing?:
|
|
1250
|
+
| 'GENERATEUUID'
|
|
1251
|
+
| 'NOTHING'
|
|
1252
|
+
| 'OVERWRITE'
|
|
1253
|
+
| 'REMOVE_AND_REPLACE',
|
|
975
1254
|
group?: number,
|
|
976
|
-
file?: Blob,
|
|
977
1255
|
observe?: 'body',
|
|
978
1256
|
reportProgress?: boolean,
|
|
979
1257
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
980
1258
|
): Observable<SimpleMetadataProcessingReportApiModel>
|
|
981
1259
|
public importSpatialEntries(
|
|
1260
|
+
file: Blob,
|
|
982
1261
|
uuidAttribute?: string,
|
|
983
1262
|
uuidPattern?: string,
|
|
984
1263
|
descriptionAttribute?: string,
|
|
985
1264
|
geomProjectionTo?: string,
|
|
986
1265
|
lenient?: boolean,
|
|
1266
|
+
charset?: string,
|
|
987
1267
|
onlyBoundingBox?: boolean,
|
|
988
1268
|
process?: string,
|
|
989
1269
|
schema?: string,
|
|
990
|
-
uuidProcessing?:
|
|
1270
|
+
uuidProcessing?:
|
|
1271
|
+
| 'GENERATEUUID'
|
|
1272
|
+
| 'NOTHING'
|
|
1273
|
+
| 'OVERWRITE'
|
|
1274
|
+
| 'REMOVE_AND_REPLACE',
|
|
991
1275
|
group?: number,
|
|
992
|
-
file?: Blob,
|
|
993
1276
|
observe?: 'response',
|
|
994
1277
|
reportProgress?: boolean,
|
|
995
1278
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
996
1279
|
): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>
|
|
997
1280
|
public importSpatialEntries(
|
|
1281
|
+
file: Blob,
|
|
998
1282
|
uuidAttribute?: string,
|
|
999
1283
|
uuidPattern?: string,
|
|
1000
1284
|
descriptionAttribute?: string,
|
|
1001
1285
|
geomProjectionTo?: string,
|
|
1002
1286
|
lenient?: boolean,
|
|
1287
|
+
charset?: string,
|
|
1003
1288
|
onlyBoundingBox?: boolean,
|
|
1004
1289
|
process?: string,
|
|
1005
1290
|
schema?: string,
|
|
1006
|
-
uuidProcessing?:
|
|
1291
|
+
uuidProcessing?:
|
|
1292
|
+
| 'GENERATEUUID'
|
|
1293
|
+
| 'NOTHING'
|
|
1294
|
+
| 'OVERWRITE'
|
|
1295
|
+
| 'REMOVE_AND_REPLACE',
|
|
1007
1296
|
group?: number,
|
|
1008
|
-
file?: Blob,
|
|
1009
1297
|
observe?: 'events',
|
|
1010
1298
|
reportProgress?: boolean,
|
|
1011
1299
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
1012
1300
|
): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>
|
|
1013
1301
|
public importSpatialEntries(
|
|
1302
|
+
file: Blob,
|
|
1014
1303
|
uuidAttribute?: string,
|
|
1015
1304
|
uuidPattern?: string,
|
|
1016
1305
|
descriptionAttribute?: string,
|
|
1017
1306
|
geomProjectionTo?: string,
|
|
1018
1307
|
lenient?: boolean,
|
|
1308
|
+
charset?: string,
|
|
1019
1309
|
onlyBoundingBox?: boolean,
|
|
1020
1310
|
process?: string,
|
|
1021
1311
|
schema?: string,
|
|
1022
|
-
uuidProcessing?:
|
|
1312
|
+
uuidProcessing?:
|
|
1313
|
+
| 'GENERATEUUID'
|
|
1314
|
+
| 'NOTHING'
|
|
1315
|
+
| 'OVERWRITE'
|
|
1316
|
+
| 'REMOVE_AND_REPLACE',
|
|
1023
1317
|
group?: number,
|
|
1024
|
-
file?: Blob,
|
|
1025
1318
|
observe: any = 'body',
|
|
1026
1319
|
reportProgress: boolean = false,
|
|
1027
1320
|
options?: { httpHeaderAccept?: 'application/json' }
|
|
1028
1321
|
): Observable<any> {
|
|
1322
|
+
if (file === null || file === undefined) {
|
|
1323
|
+
throw new Error(
|
|
1324
|
+
'Required parameter file was null or undefined when calling importSpatialEntries.'
|
|
1325
|
+
)
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1029
1328
|
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1030
1329
|
if (uuidAttribute !== undefined && uuidAttribute !== null) {
|
|
1031
1330
|
queryParameters = this.addToHttpParams(
|
|
@@ -1062,6 +1361,13 @@ export class RegistriesApiService {
|
|
|
1062
1361
|
'lenient'
|
|
1063
1362
|
)
|
|
1064
1363
|
}
|
|
1364
|
+
if (charset !== undefined && charset !== null) {
|
|
1365
|
+
queryParameters = this.addToHttpParams(
|
|
1366
|
+
queryParameters,
|
|
1367
|
+
<any>charset,
|
|
1368
|
+
'charset'
|
|
1369
|
+
)
|
|
1370
|
+
}
|
|
1065
1371
|
if (onlyBoundingBox !== undefined && onlyBoundingBox !== null) {
|
|
1066
1372
|
queryParameters = this.addToHttpParams(
|
|
1067
1373
|
queryParameters,
|
|
@@ -1155,14 +1461,136 @@ export class RegistriesApiService {
|
|
|
1155
1461
|
)
|
|
1156
1462
|
}
|
|
1157
1463
|
|
|
1464
|
+
/**
|
|
1465
|
+
* Preview directory entries extracted from records
|
|
1466
|
+
* Scan one or more records for element matching the XPath provided and save them as directory entries (ie. subtemplate).<br/><br/>Only records that the current user can edit are analyzed.<br/><br/>Examples:<br/>For ISO19115-3 records, use .//cit:CI_Responsibility and compute identifier based on email with .//cit:electronicMailAddress/_*_/text() to create a contact directory.
|
|
1467
|
+
* @param xpath XPath of the elements to extract as entry.
|
|
1468
|
+
* @param uuids Record UUIDs. If null current selection is used.
|
|
1469
|
+
* @param bucket Selection bucket name
|
|
1470
|
+
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
1471
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1472
|
+
* @param reportProgress flag to report request and response progress.
|
|
1473
|
+
*/
|
|
1474
|
+
public previewExtractedEntries(
|
|
1475
|
+
xpath: string,
|
|
1476
|
+
uuids?: Array<string>,
|
|
1477
|
+
bucket?: string,
|
|
1478
|
+
identifierXpath?: string,
|
|
1479
|
+
observe?: 'body',
|
|
1480
|
+
reportProgress?: boolean,
|
|
1481
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1482
|
+
): Observable<object>
|
|
1483
|
+
public previewExtractedEntries(
|
|
1484
|
+
xpath: string,
|
|
1485
|
+
uuids?: Array<string>,
|
|
1486
|
+
bucket?: string,
|
|
1487
|
+
identifierXpath?: string,
|
|
1488
|
+
observe?: 'response',
|
|
1489
|
+
reportProgress?: boolean,
|
|
1490
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1491
|
+
): Observable<HttpResponse<object>>
|
|
1492
|
+
public previewExtractedEntries(
|
|
1493
|
+
xpath: string,
|
|
1494
|
+
uuids?: Array<string>,
|
|
1495
|
+
bucket?: string,
|
|
1496
|
+
identifierXpath?: string,
|
|
1497
|
+
observe?: 'events',
|
|
1498
|
+
reportProgress?: boolean,
|
|
1499
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1500
|
+
): Observable<HttpEvent<object>>
|
|
1501
|
+
public previewExtractedEntries(
|
|
1502
|
+
xpath: string,
|
|
1503
|
+
uuids?: Array<string>,
|
|
1504
|
+
bucket?: string,
|
|
1505
|
+
identifierXpath?: string,
|
|
1506
|
+
observe: any = 'body',
|
|
1507
|
+
reportProgress: boolean = false,
|
|
1508
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1509
|
+
): Observable<any> {
|
|
1510
|
+
if (xpath === null || xpath === undefined) {
|
|
1511
|
+
throw new Error(
|
|
1512
|
+
'Required parameter xpath was null or undefined when calling previewExtractedEntries.'
|
|
1513
|
+
)
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1517
|
+
if (uuids) {
|
|
1518
|
+
uuids.forEach((element) => {
|
|
1519
|
+
queryParameters = this.addToHttpParams(
|
|
1520
|
+
queryParameters,
|
|
1521
|
+
<any>element,
|
|
1522
|
+
'uuids'
|
|
1523
|
+
)
|
|
1524
|
+
})
|
|
1525
|
+
}
|
|
1526
|
+
if (bucket !== undefined && bucket !== null) {
|
|
1527
|
+
queryParameters = this.addToHttpParams(
|
|
1528
|
+
queryParameters,
|
|
1529
|
+
<any>bucket,
|
|
1530
|
+
'bucket'
|
|
1531
|
+
)
|
|
1532
|
+
}
|
|
1533
|
+
if (xpath !== undefined && xpath !== null) {
|
|
1534
|
+
queryParameters = this.addToHttpParams(
|
|
1535
|
+
queryParameters,
|
|
1536
|
+
<any>xpath,
|
|
1537
|
+
'xpath'
|
|
1538
|
+
)
|
|
1539
|
+
}
|
|
1540
|
+
if (identifierXpath !== undefined && identifierXpath !== null) {
|
|
1541
|
+
queryParameters = this.addToHttpParams(
|
|
1542
|
+
queryParameters,
|
|
1543
|
+
<any>identifierXpath,
|
|
1544
|
+
'identifierXpath'
|
|
1545
|
+
)
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
let headers = this.defaultHeaders
|
|
1549
|
+
|
|
1550
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1551
|
+
options && options.httpHeaderAccept
|
|
1552
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1553
|
+
// to determine the Accept header
|
|
1554
|
+
const httpHeaderAccepts: string[] = [
|
|
1555
|
+
'application/json',
|
|
1556
|
+
'application/xml',
|
|
1557
|
+
]
|
|
1558
|
+
httpHeaderAcceptSelected =
|
|
1559
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1560
|
+
}
|
|
1561
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1562
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1566
|
+
if (
|
|
1567
|
+
httpHeaderAcceptSelected &&
|
|
1568
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1569
|
+
) {
|
|
1570
|
+
responseType_ = 'text'
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
return this.httpClient.get<object>(
|
|
1574
|
+
`${this.configuration.basePath}/registries/actions/entries/collect`,
|
|
1575
|
+
{
|
|
1576
|
+
params: queryParameters,
|
|
1577
|
+
responseType: <any>responseType_,
|
|
1578
|
+
withCredentials: this.configuration.withCredentials,
|
|
1579
|
+
headers: headers,
|
|
1580
|
+
observe: observe,
|
|
1581
|
+
reportProgress: reportProgress,
|
|
1582
|
+
}
|
|
1583
|
+
)
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1158
1586
|
/**
|
|
1159
1587
|
* Preview updated matching entries in records
|
|
1160
|
-
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally properties are preserved.<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
1588
|
+
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally text or attribute value properties are preserved using propertiesToCopy. Elements can be lost if not existing in the directory entry (eg. from an gex:Extent directory containing only description and bounding polygon, the update can remove temporal element).<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
1161
1589
|
* @param xpath XPath of the elements to extract as entry.
|
|
1162
1590
|
* @param uuids Record UUIDs. If null current selection is used.
|
|
1163
1591
|
* @param bucket Selection bucket name
|
|
1164
1592
|
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
1165
|
-
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry.
|
|
1593
|
+
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry. Only support text or attribute eg. ./gmd:role/_*_/@codeListValue
|
|
1166
1594
|
* @param substituteAsXLink Replace entry by XLink.
|
|
1167
1595
|
* @param fq Filter query for directory search.
|
|
1168
1596
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
@@ -1440,8 +1868,8 @@ export class RegistriesApiService {
|
|
|
1440
1868
|
sort?: string,
|
|
1441
1869
|
observe?: 'body',
|
|
1442
1870
|
reportProgress?: boolean,
|
|
1443
|
-
options?: { httpHeaderAccept?: 'application/json' }
|
|
1444
|
-
): Observable<
|
|
1871
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1872
|
+
): Observable<object>
|
|
1445
1873
|
public searchKeywords(
|
|
1446
1874
|
q?: string,
|
|
1447
1875
|
lang?: string,
|
|
@@ -1454,8 +1882,8 @@ export class RegistriesApiService {
|
|
|
1454
1882
|
sort?: string,
|
|
1455
1883
|
observe?: 'response',
|
|
1456
1884
|
reportProgress?: boolean,
|
|
1457
|
-
options?: { httpHeaderAccept?: 'application/json' }
|
|
1458
|
-
): Observable<HttpResponse<
|
|
1885
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1886
|
+
): Observable<HttpResponse<object>>
|
|
1459
1887
|
public searchKeywords(
|
|
1460
1888
|
q?: string,
|
|
1461
1889
|
lang?: string,
|
|
@@ -1468,8 +1896,8 @@ export class RegistriesApiService {
|
|
|
1468
1896
|
sort?: string,
|
|
1469
1897
|
observe?: 'events',
|
|
1470
1898
|
reportProgress?: boolean,
|
|
1471
|
-
options?: { httpHeaderAccept?: 'application/json' }
|
|
1472
|
-
): Observable<HttpEvent<
|
|
1899
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1900
|
+
): Observable<HttpEvent<object>>
|
|
1473
1901
|
public searchKeywords(
|
|
1474
1902
|
q?: string,
|
|
1475
1903
|
lang?: string,
|
|
@@ -1482,7 +1910,7 @@ export class RegistriesApiService {
|
|
|
1482
1910
|
sort?: string,
|
|
1483
1911
|
observe: any = 'body',
|
|
1484
1912
|
reportProgress: boolean = false,
|
|
1485
|
-
options?: { httpHeaderAccept?: 'application/json' }
|
|
1913
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1486
1914
|
): Observable<any> {
|
|
1487
1915
|
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1488
1916
|
if (q !== undefined && q !== null) {
|
|
@@ -1535,7 +1963,10 @@ export class RegistriesApiService {
|
|
|
1535
1963
|
options && options.httpHeaderAccept
|
|
1536
1964
|
if (httpHeaderAcceptSelected === undefined) {
|
|
1537
1965
|
// to determine the Accept header
|
|
1538
|
-
const httpHeaderAccepts: string[] = [
|
|
1966
|
+
const httpHeaderAccepts: string[] = [
|
|
1967
|
+
'application/json',
|
|
1968
|
+
'application/xml',
|
|
1969
|
+
]
|
|
1539
1970
|
httpHeaderAcceptSelected =
|
|
1540
1971
|
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1541
1972
|
}
|
|
@@ -1551,7 +1982,7 @@ export class RegistriesApiService {
|
|
|
1551
1982
|
responseType_ = 'text'
|
|
1552
1983
|
}
|
|
1553
1984
|
|
|
1554
|
-
return this.httpClient.get<
|
|
1985
|
+
return this.httpClient.get<object>(
|
|
1555
1986
|
`${this.configuration.basePath}/registries/vocabularies/search`,
|
|
1556
1987
|
{
|
|
1557
1988
|
params: queryParameters,
|
|
@@ -1566,12 +1997,12 @@ export class RegistriesApiService {
|
|
|
1566
1997
|
|
|
1567
1998
|
/**
|
|
1568
1999
|
* Update matching entries in records
|
|
1569
|
-
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally properties are preserved.<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
2000
|
+
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally text or attribute value properties are preserved using propertiesToCopy. Elements can be lost if not existing in the directory entry (eg. from an gex:Extent directory containing only description and bounding polygon, the update can remove temporal element).<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
1570
2001
|
* @param xpath XPath of the elements to extract as entry.
|
|
1571
2002
|
* @param uuids Record UUIDs. If null current selection is used.
|
|
1572
2003
|
* @param bucket Selection bucket name
|
|
1573
2004
|
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
1574
|
-
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry.
|
|
2005
|
+
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry. Only support text or attribute eg. ./gmd:role/_*_/@codeListValue
|
|
1575
2006
|
* @param substituteAsXLink Replace entry by XLink.
|
|
1576
2007
|
* @param fq Filter query for directory search.
|
|
1577
2008
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
@@ -1718,48 +2149,140 @@ export class RegistriesApiService {
|
|
|
1718
2149
|
)
|
|
1719
2150
|
}
|
|
1720
2151
|
|
|
2152
|
+
/**
|
|
2153
|
+
* Updates the information of a local thesaurus
|
|
2154
|
+
* Updates the information of a local thesaurus.
|
|
2155
|
+
* @param thesaurus Thesaurus to update.
|
|
2156
|
+
* @param thesaurusInfoApiModel
|
|
2157
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2158
|
+
* @param reportProgress flag to report request and response progress.
|
|
2159
|
+
*/
|
|
2160
|
+
public updateThesaurus(
|
|
2161
|
+
thesaurus: string,
|
|
2162
|
+
thesaurusInfoApiModel: ThesaurusInfoApiModel,
|
|
2163
|
+
observe?: 'body',
|
|
2164
|
+
reportProgress?: boolean,
|
|
2165
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
2166
|
+
): Observable<any>
|
|
2167
|
+
public updateThesaurus(
|
|
2168
|
+
thesaurus: string,
|
|
2169
|
+
thesaurusInfoApiModel: ThesaurusInfoApiModel,
|
|
2170
|
+
observe?: 'response',
|
|
2171
|
+
reportProgress?: boolean,
|
|
2172
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
2173
|
+
): Observable<HttpResponse<any>>
|
|
2174
|
+
public updateThesaurus(
|
|
2175
|
+
thesaurus: string,
|
|
2176
|
+
thesaurusInfoApiModel: ThesaurusInfoApiModel,
|
|
2177
|
+
observe?: 'events',
|
|
2178
|
+
reportProgress?: boolean,
|
|
2179
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
2180
|
+
): Observable<HttpEvent<any>>
|
|
2181
|
+
public updateThesaurus(
|
|
2182
|
+
thesaurus: string,
|
|
2183
|
+
thesaurusInfoApiModel: ThesaurusInfoApiModel,
|
|
2184
|
+
observe: any = 'body',
|
|
2185
|
+
reportProgress: boolean = false,
|
|
2186
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
2187
|
+
): Observable<any> {
|
|
2188
|
+
if (thesaurus === null || thesaurus === undefined) {
|
|
2189
|
+
throw new Error(
|
|
2190
|
+
'Required parameter thesaurus was null or undefined when calling updateThesaurus.'
|
|
2191
|
+
)
|
|
2192
|
+
}
|
|
2193
|
+
if (thesaurusInfoApiModel === null || thesaurusInfoApiModel === undefined) {
|
|
2194
|
+
throw new Error(
|
|
2195
|
+
'Required parameter thesaurusInfoApiModel was null or undefined when calling updateThesaurus.'
|
|
2196
|
+
)
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
let headers = this.defaultHeaders
|
|
2200
|
+
|
|
2201
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
2202
|
+
options && options.httpHeaderAccept
|
|
2203
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
2204
|
+
// to determine the Accept header
|
|
2205
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
2206
|
+
httpHeaderAcceptSelected =
|
|
2207
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
2208
|
+
}
|
|
2209
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
2210
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
// to determine the Content-Type header
|
|
2214
|
+
const consumes: string[] = ['application/json']
|
|
2215
|
+
const httpContentTypeSelected: string | undefined =
|
|
2216
|
+
this.configuration.selectHeaderContentType(consumes)
|
|
2217
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2218
|
+
headers = headers.set('Content-Type', httpContentTypeSelected)
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
2222
|
+
if (
|
|
2223
|
+
httpHeaderAcceptSelected &&
|
|
2224
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
2225
|
+
) {
|
|
2226
|
+
responseType_ = 'text'
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
return this.httpClient.put<any>(
|
|
2230
|
+
`${
|
|
2231
|
+
this.configuration.basePath
|
|
2232
|
+
}/registries/vocabularies/${encodeURIComponent(String(thesaurus))}`,
|
|
2233
|
+
thesaurusInfoApiModel,
|
|
2234
|
+
{
|
|
2235
|
+
responseType: <any>responseType_,
|
|
2236
|
+
withCredentials: this.configuration.withCredentials,
|
|
2237
|
+
headers: headers,
|
|
2238
|
+
observe: observe,
|
|
2239
|
+
reportProgress: reportProgress,
|
|
2240
|
+
}
|
|
2241
|
+
)
|
|
2242
|
+
}
|
|
2243
|
+
|
|
1721
2244
|
/**
|
|
1722
2245
|
* Uploads a new thesaurus from a file
|
|
1723
2246
|
* Uploads a new thesaurus.
|
|
1724
2247
|
* @param type Local or external (default).
|
|
1725
2248
|
* @param dir Type of thesaurus, usually one of the ISO thesaurus type codelist value. Default is theme.
|
|
1726
2249
|
* @param stylesheet XSL to be use to convert the thesaurus before load. Default _none_.
|
|
1727
|
-
* @param
|
|
2250
|
+
* @param inlineObject1ApiModel
|
|
1728
2251
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1729
2252
|
* @param reportProgress flag to report request and response progress.
|
|
1730
2253
|
*/
|
|
1731
2254
|
public uploadThesaurus(
|
|
1732
|
-
type?:
|
|
2255
|
+
type?: 'external' | 'local',
|
|
1733
2256
|
dir?: string,
|
|
1734
2257
|
stylesheet?: string,
|
|
1735
|
-
|
|
2258
|
+
inlineObject1ApiModel?: InlineObject1ApiModel,
|
|
1736
2259
|
observe?: 'body',
|
|
1737
2260
|
reportProgress?: boolean,
|
|
1738
2261
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1739
2262
|
): Observable<string>
|
|
1740
2263
|
public uploadThesaurus(
|
|
1741
|
-
type?:
|
|
2264
|
+
type?: 'external' | 'local',
|
|
1742
2265
|
dir?: string,
|
|
1743
2266
|
stylesheet?: string,
|
|
1744
|
-
|
|
2267
|
+
inlineObject1ApiModel?: InlineObject1ApiModel,
|
|
1745
2268
|
observe?: 'response',
|
|
1746
2269
|
reportProgress?: boolean,
|
|
1747
2270
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1748
2271
|
): Observable<HttpResponse<string>>
|
|
1749
2272
|
public uploadThesaurus(
|
|
1750
|
-
type?:
|
|
2273
|
+
type?: 'external' | 'local',
|
|
1751
2274
|
dir?: string,
|
|
1752
2275
|
stylesheet?: string,
|
|
1753
|
-
|
|
2276
|
+
inlineObject1ApiModel?: InlineObject1ApiModel,
|
|
1754
2277
|
observe?: 'events',
|
|
1755
2278
|
reportProgress?: boolean,
|
|
1756
2279
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1757
2280
|
): Observable<HttpEvent<string>>
|
|
1758
2281
|
public uploadThesaurus(
|
|
1759
|
-
type?:
|
|
2282
|
+
type?: 'external' | 'local',
|
|
1760
2283
|
dir?: string,
|
|
1761
2284
|
stylesheet?: string,
|
|
1762
|
-
|
|
2285
|
+
inlineObject1ApiModel?: InlineObject1ApiModel,
|
|
1763
2286
|
observe: any = 'body',
|
|
1764
2287
|
reportProgress: boolean = false,
|
|
1765
2288
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
@@ -1811,7 +2334,7 @@ export class RegistriesApiService {
|
|
|
1811
2334
|
|
|
1812
2335
|
return this.httpClient.post<string>(
|
|
1813
2336
|
`${this.configuration.basePath}/registries/vocabularies`,
|
|
1814
|
-
|
|
2337
|
+
inlineObject1ApiModel,
|
|
1815
2338
|
{
|
|
1816
2339
|
params: queryParameters,
|
|
1817
2340
|
responseType: <any>responseType_,
|
|
@@ -1833,6 +2356,7 @@ export class RegistriesApiService {
|
|
|
1833
2356
|
* @param type Local or external (default).
|
|
1834
2357
|
* @param dir Type of thesaurus, usually one of the ISO thesaurus type codelist value. Default is theme.
|
|
1835
2358
|
* @param stylesheet XSL to be use to convert the thesaurus before load. Default _none_.
|
|
2359
|
+
* @param thesaurusInfoApiModel
|
|
1836
2360
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1837
2361
|
* @param reportProgress flag to report request and response progress.
|
|
1838
2362
|
*/
|
|
@@ -1841,9 +2365,10 @@ export class RegistriesApiService {
|
|
|
1841
2365
|
registryUrl?: string,
|
|
1842
2366
|
registryType?: 're3gistry' | 'ldRegistry',
|
|
1843
2367
|
registryLanguage?: Array<string>,
|
|
1844
|
-
type?:
|
|
2368
|
+
type?: 'external' | 'local',
|
|
1845
2369
|
dir?: string,
|
|
1846
2370
|
stylesheet?: string,
|
|
2371
|
+
thesaurusInfoApiModel?: ThesaurusInfoApiModel,
|
|
1847
2372
|
observe?: 'body',
|
|
1848
2373
|
reportProgress?: boolean,
|
|
1849
2374
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
@@ -1853,9 +2378,10 @@ export class RegistriesApiService {
|
|
|
1853
2378
|
registryUrl?: string,
|
|
1854
2379
|
registryType?: 're3gistry' | 'ldRegistry',
|
|
1855
2380
|
registryLanguage?: Array<string>,
|
|
1856
|
-
type?:
|
|
2381
|
+
type?: 'external' | 'local',
|
|
1857
2382
|
dir?: string,
|
|
1858
2383
|
stylesheet?: string,
|
|
2384
|
+
thesaurusInfoApiModel?: ThesaurusInfoApiModel,
|
|
1859
2385
|
observe?: 'response',
|
|
1860
2386
|
reportProgress?: boolean,
|
|
1861
2387
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
@@ -1865,9 +2391,10 @@ export class RegistriesApiService {
|
|
|
1865
2391
|
registryUrl?: string,
|
|
1866
2392
|
registryType?: 're3gistry' | 'ldRegistry',
|
|
1867
2393
|
registryLanguage?: Array<string>,
|
|
1868
|
-
type?:
|
|
2394
|
+
type?: 'external' | 'local',
|
|
1869
2395
|
dir?: string,
|
|
1870
2396
|
stylesheet?: string,
|
|
2397
|
+
thesaurusInfoApiModel?: ThesaurusInfoApiModel,
|
|
1871
2398
|
observe?: 'events',
|
|
1872
2399
|
reportProgress?: boolean,
|
|
1873
2400
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
@@ -1877,9 +2404,10 @@ export class RegistriesApiService {
|
|
|
1877
2404
|
registryUrl?: string,
|
|
1878
2405
|
registryType?: 're3gistry' | 'ldRegistry',
|
|
1879
2406
|
registryLanguage?: Array<string>,
|
|
1880
|
-
type?:
|
|
2407
|
+
type?: 'external' | 'local',
|
|
1881
2408
|
dir?: string,
|
|
1882
2409
|
stylesheet?: string,
|
|
2410
|
+
thesaurusInfoApiModel?: ThesaurusInfoApiModel,
|
|
1883
2411
|
observe: any = 'body',
|
|
1884
2412
|
reportProgress: boolean = false,
|
|
1885
2413
|
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
@@ -1939,6 +2467,14 @@ export class RegistriesApiService {
|
|
|
1939
2467
|
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1940
2468
|
}
|
|
1941
2469
|
|
|
2470
|
+
// to determine the Content-Type header
|
|
2471
|
+
const consumes: string[] = ['application/json']
|
|
2472
|
+
const httpContentTypeSelected: string | undefined =
|
|
2473
|
+
this.configuration.selectHeaderContentType(consumes)
|
|
2474
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2475
|
+
headers = headers.set('Content-Type', httpContentTypeSelected)
|
|
2476
|
+
}
|
|
2477
|
+
|
|
1942
2478
|
let responseType_: 'text' | 'json' = 'json'
|
|
1943
2479
|
if (
|
|
1944
2480
|
httpHeaderAcceptSelected &&
|
|
@@ -1949,7 +2485,7 @@ export class RegistriesApiService {
|
|
|
1949
2485
|
|
|
1950
2486
|
return this.httpClient.put<string>(
|
|
1951
2487
|
`${this.configuration.basePath}/registries/vocabularies`,
|
|
1952
|
-
|
|
2488
|
+
thesaurusInfoApiModel,
|
|
1953
2489
|
{
|
|
1954
2490
|
params: queryParameters,
|
|
1955
2491
|
responseType: <any>responseType_,
|