geonetwork-ui 2.1.0-initial → 2.2.0-dev.05d3ea32
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/index.mjs +2 -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/auth/src/lib/feature-auth.module.mjs +2 -2
- package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +8 -7
- 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 +32 -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/add-layer-from-wfs/add-layer-from-wfs.component.mjs +64 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +63 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +8 -2
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +5 -3
- 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 +3 -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 +19 -13
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +3 -3
- 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 +29 -14
- 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 +35 -14
- 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 +5 -4
- 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 +3 -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/markdown-parser/markdown-parser.component.mjs +17 -0
- 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 +10 -3
- 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 +25 -8
- 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 +16 -3
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +1 -1
- package/esm2022/libs/ui/inputs/src/index.mjs +4 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +14 -6
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +17 -38
- 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-multiselect/dropdown-multiselect.component.mjs +6 -3
- 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/star-toggle/star-toggle.component.mjs +2 -2
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +36 -5
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +1 -4
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +61 -7
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +6 -2
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +8 -25
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -2
- package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
- package/esm2022/libs/util/i18n/src/index.mjs +2 -1
- package/esm2022/libs/util/shared/src/index.mjs +1 -2
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +3 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +8 -5
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +8 -1
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -5
- package/esm2022/libs/util/shared/src/lib/utils/fuzzy-filter.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +2 -1
- 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 +85 -24
- package/esm2022/translations/en.json +88 -46
- package/esm2022/translations/es.json +99 -57
- package/esm2022/translations/fr.json +89 -47
- package/esm2022/translations/it.json +328 -286
- package/esm2022/translations/nl.json +100 -58
- package/esm2022/translations/pt.json +99 -57
- package/fesm2022/geonetwork-ui.mjs +6244 -1408
- 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/index.d.ts +1 -0
- package/libs/api/repository/src/index.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 +8 -3
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +1 -1
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +4 -4
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +3 -2
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +22 -0
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +22 -0
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +14 -12
- package/libs/feature/map/src/lib/feature-map.module.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 +1 -0
- 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 +8 -5
- 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 +19 -11
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +2 -1
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -1
- package/libs/ui/catalog/src/index.d.ts +2 -1
- package/libs/ui/catalog/src/index.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +18 -0
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +8 -0
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +8 -7
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -2
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +2 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +2 -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/markdown-parser/markdown-parser.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +1 -0
- 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 +2 -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 +4 -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 +14 -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 +2 -4
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +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 +3 -11
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
- package/libs/util/i18n/src/index.d.ts +1 -0
- package/libs/util/i18n/src/index.d.ts.map +1 -1
- package/libs/util/shared/src/index.d.ts +0 -1
- package/libs/util/shared/src/index.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts +1 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/util-shared.module.d.ts +3 -4
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts +9 -0
- package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +1 -0
- package/libs/util/shared/src/lib/utils/index.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 +11 -11
- 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/index.ts +1 -0
- 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/auth/src/lib/feature-auth.module.ts +1 -1
- package/src/libs/feature/catalog/src/index.ts +1 -0
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -4
- 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 +31 -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/add-layer-from-wfs/add-layer-from-wfs.component.html +37 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +64 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +55 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +63 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +4 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +6 -2
- 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 +9 -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.html +12 -4
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +7 -7
- package/src/libs/feature/search/src/lib/feature-search.module.ts +2 -2
- 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 +50 -26
- 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.html +1 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -1
- 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 +2 -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/markdown-parser/markdown-parser.component.css +264 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.html +1 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +16 -0
- package/src/libs/ui/elements/src/lib/max-lines/max-lines.component.css +0 -0
- 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.html +93 -27
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +8 -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.css +4 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +69 -39
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +18 -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 +8 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +1 -1
- package/src/libs/ui/inputs/src/index.ts +3 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +7 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +22 -42
- 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-multiselect/dropdown-multiselect.component.ts +7 -4
- 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 +8 -3
- 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/star-toggle/star-toggle.component.css +1 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +17 -0
- package/src/libs/ui/search/src/lib/facets/facets.model.ts +1 -1
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +2 -6
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +1 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +3 -4
- package/src/libs/ui/search/src/lib/record-table/record-table.component.html +81 -16
- package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +60 -4
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +3 -3
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +2 -3
- package/src/libs/ui/search/src/lib/ui-search.module.ts +2 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +8 -31
- package/src/libs/util/app-config/src/lib/fixtures.ts +1 -1
- package/src/libs/util/app-config/src/lib/model.ts +3 -11
- package/src/libs/util/i18n/src/index.ts +1 -0
- package/src/libs/util/shared/src/index.ts +0 -1
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +3 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +8 -5
- package/src/libs/util/shared/src/lib/services/theme.service.ts +9 -0
- package/src/libs/util/shared/src/lib/util-shared.module.ts +2 -3
- package/src/libs/util/shared/src/lib/utils/fuzzy-filter.ts +32 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +1 -1
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +1 -1
- package/src/libs/util/shared/src/lib/utils/strip-html.ts +1 -0
- package/tailwind.base.css +33 -3
- package/translations/de.json +85 -24
- package/translations/en.json +88 -46
- package/translations/es.json +99 -57
- package/translations/fr.json +89 -47
- package/translations/it.json +328 -286
- package/translations/nl.json +100 -58
- package/translations/pt.json +99 -57
- package/translations/sk.json +331 -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 → feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.css} +0 -0
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { BatchEditParameterApiModel } from '../model/models';
|
|
4
|
-
import { ElementApiModel } from '../model/models';
|
|
3
|
+
import { AssociatedRecordApiModel, BatchEditParameterApiModel } from '../model/models';
|
|
5
4
|
import { ExtentDtoApiModel } from '../model/models';
|
|
6
5
|
import { FeatureResponseApiModel } from '../model/models';
|
|
7
6
|
import { IProcessingReportApiModel } from '../model/models';
|
|
8
|
-
import {
|
|
7
|
+
import { InlineObject3ApiModel } from '../model/models';
|
|
8
|
+
import { MetadataBatchApproveParameterApiModel } from '../model/models';
|
|
9
|
+
import { MetadataBatchSubmitParameterApiModel } from '../model/models';
|
|
9
10
|
import { MetadataCategoryApiModel } from '../model/models';
|
|
10
11
|
import { MetadataProcessingReportApiModel } from '../model/models';
|
|
11
12
|
import { MetadataResourceApiModel } from '../model/models';
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
13
|
+
import { MetadataStatusParameterApiModel } from '../model/models';
|
|
14
|
+
import { PublicationOptionApiModel } from '../model/models';
|
|
14
15
|
import { RelatedResponseApiModel } from '../model/models';
|
|
15
16
|
import { ReportsApiModel } from '../model/models';
|
|
16
17
|
import { SavedQueryApiModel } from '../model/models';
|
|
@@ -29,6 +30,25 @@ export declare class RecordsApiService {
|
|
|
29
30
|
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
|
|
30
31
|
private addToHttpParams;
|
|
31
32
|
private addToHttpParamsRecursive;
|
|
33
|
+
/**
|
|
34
|
+
* Add element
|
|
35
|
+
* @param metadataUuid Record UUID.
|
|
36
|
+
* @param ref Reference of the insertion point.
|
|
37
|
+
* @param name Name of the element to add (with prefix)
|
|
38
|
+
* @param child Use geonet:attribute for attributes or child name.
|
|
39
|
+
* @param displayAttributes Should attributes be shown on the editor snippet?
|
|
40
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
41
|
+
* @param reportProgress flag to report request and response progress.
|
|
42
|
+
*/
|
|
43
|
+
addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
44
|
+
httpHeaderAccept?: 'application/json';
|
|
45
|
+
}): Observable<any>;
|
|
46
|
+
addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
47
|
+
httpHeaderAccept?: 'application/json';
|
|
48
|
+
}): Observable<HttpResponse<any>>;
|
|
49
|
+
addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
50
|
+
httpHeaderAccept?: 'application/json';
|
|
51
|
+
}): Observable<HttpEvent<any>>;
|
|
32
52
|
/**
|
|
33
53
|
* Reorder element
|
|
34
54
|
* @param metadataUuid Record UUID.
|
|
@@ -38,13 +58,13 @@ export declare class RecordsApiService {
|
|
|
38
58
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
39
59
|
* @param reportProgress flag to report request and response progress.
|
|
40
60
|
*/
|
|
41
|
-
|
|
61
|
+
addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
42
62
|
httpHeaderAccept?: 'application/json';
|
|
43
63
|
}): Observable<any>;
|
|
44
|
-
|
|
64
|
+
addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
45
65
|
httpHeaderAccept?: 'application/json';
|
|
46
66
|
}): Observable<HttpResponse<any>>;
|
|
47
|
-
|
|
67
|
+
addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
48
68
|
httpHeaderAccept?: 'application/json';
|
|
49
69
|
}): Observable<HttpEvent<any>>;
|
|
50
70
|
/**
|
|
@@ -102,6 +122,21 @@ export declare class RecordsApiService {
|
|
|
102
122
|
}): Observable<HttpEvent<{
|
|
103
123
|
[key: string]: string;
|
|
104
124
|
}>>;
|
|
125
|
+
/**
|
|
126
|
+
* Set the records status to approved
|
|
127
|
+
* @param metadataBatchApproveParameterApiModel
|
|
128
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
129
|
+
* @param reportProgress flag to report request and response progress.
|
|
130
|
+
*/
|
|
131
|
+
approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
132
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
133
|
+
}): Observable<MetadataProcessingReportApiModel>;
|
|
134
|
+
approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
135
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
136
|
+
}): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
|
|
137
|
+
approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
138
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
139
|
+
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
105
140
|
/**
|
|
106
141
|
* Edit a set of records by XPath expressions. This operations applies the update-fixed-info.xsl transformation for the metadata schema and updates the change date if the parameter updateDateStamp is set to true.
|
|
107
142
|
* @param batchEditParameterApiModel
|
|
@@ -157,6 +192,21 @@ export declare class RecordsApiService {
|
|
|
157
192
|
}): Observable<HttpEvent<{
|
|
158
193
|
[key: string]: boolean;
|
|
159
194
|
}>>;
|
|
195
|
+
/**
|
|
196
|
+
* Check the DOI URL created based on current configuration and pattern.
|
|
197
|
+
* @param metadataUuid Record UUID.
|
|
198
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
199
|
+
* @param reportProgress flag to report request and response progress.
|
|
200
|
+
*/
|
|
201
|
+
checkDoiUrl(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
202
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
203
|
+
}): Observable<string>;
|
|
204
|
+
checkDoiUrl(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
205
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
206
|
+
}): Observable<HttpResponse<string>>;
|
|
207
|
+
checkDoiUrl(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
208
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
209
|
+
}): Observable<HttpEvent<string>>;
|
|
160
210
|
/**
|
|
161
211
|
* Check the status of validation with the INSPIRE service.
|
|
162
212
|
* User MUST be able to edit the record to validate it. An INSPIRE endpoint must be configured in Settings. If the process is complete an object with status is returned.
|
|
@@ -195,6 +245,25 @@ export declare class RecordsApiService {
|
|
|
195
245
|
cleanValidationStatus(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
196
246
|
httpHeaderAccept?: 'application/json';
|
|
197
247
|
}): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
|
|
248
|
+
/**
|
|
249
|
+
* Close a record task
|
|
250
|
+
* @param metadataUuid Record UUID.
|
|
251
|
+
* @param statusId Status identifier
|
|
252
|
+
* @param userId User identifier
|
|
253
|
+
* @param changeDate Change date
|
|
254
|
+
* @param closeDate Close date
|
|
255
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
256
|
+
* @param reportProgress flag to report request and response progress.
|
|
257
|
+
*/
|
|
258
|
+
closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
259
|
+
httpHeaderAccept?: 'application/json';
|
|
260
|
+
}): Observable<any>;
|
|
261
|
+
closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
262
|
+
httpHeaderAccept?: 'application/json';
|
|
263
|
+
}): Observable<HttpResponse<any>>;
|
|
264
|
+
closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
265
|
+
httpHeaderAccept?: 'application/json';
|
|
266
|
+
}): Observable<HttpEvent<any>>;
|
|
198
267
|
/**
|
|
199
268
|
* Create a new record
|
|
200
269
|
* Create a record from a template or by copying an existing record.Return the UUID of the newly created record. Existing links in the source record are preserved, this means that the new record may contains link to the source attachments. They need to be manually updated after creation.
|
|
@@ -202,20 +271,21 @@ export declare class RecordsApiService {
|
|
|
202
271
|
* @param group The group the record is attached to.
|
|
203
272
|
* @param metadataType The type of record.
|
|
204
273
|
* @param targetUuid Assign a custom UUID. If this UUID already exist an error is returned. This is enabled only if metadata create / generate UUID settings is activated.
|
|
205
|
-
* @param
|
|
274
|
+
* @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
|
|
206
275
|
* @param category Tags to assign to the record.
|
|
207
276
|
* @param hasCategoryOfSource Copy categories from source?
|
|
208
277
|
* @param isChildOfSource Is child of the record to copy?
|
|
278
|
+
* @param hasAttachmentsOfSource Copy attachments from source?
|
|
209
279
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
210
280
|
* @param reportProgress flag to report request and response progress.
|
|
211
281
|
*/
|
|
212
|
-
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string,
|
|
282
|
+
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
213
283
|
httpHeaderAccept?: 'application/json';
|
|
214
284
|
}): Observable<string>;
|
|
215
|
-
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string,
|
|
285
|
+
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
216
286
|
httpHeaderAccept?: 'application/json';
|
|
217
287
|
}): Observable<HttpResponse<string>>;
|
|
218
|
-
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string,
|
|
288
|
+
create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
219
289
|
httpHeaderAccept?: 'application/json';
|
|
220
290
|
}): Observable<HttpEvent<string>>;
|
|
221
291
|
/**
|
|
@@ -239,6 +309,54 @@ export declare class RecordsApiService {
|
|
|
239
309
|
}): Observable<HttpEvent<{
|
|
240
310
|
[key: string]: string;
|
|
241
311
|
}>>;
|
|
312
|
+
/**
|
|
313
|
+
* Delete a metadata resource
|
|
314
|
+
* @param metadataUuid The metadata UUID
|
|
315
|
+
* @param resourceId The resource identifier (ie. filename)
|
|
316
|
+
* @param approved Use approved version or not
|
|
317
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
318
|
+
* @param reportProgress flag to report request and response progress.
|
|
319
|
+
*/
|
|
320
|
+
delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
321
|
+
httpHeaderAccept?: 'application/json';
|
|
322
|
+
}): Observable<any>;
|
|
323
|
+
delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
324
|
+
httpHeaderAccept?: 'application/json';
|
|
325
|
+
}): Observable<HttpResponse<any>>;
|
|
326
|
+
delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
327
|
+
httpHeaderAccept?: 'application/json';
|
|
328
|
+
}): Observable<HttpEvent<any>>;
|
|
329
|
+
/**
|
|
330
|
+
* Delete all uploaded metadata resources
|
|
331
|
+
* @param metadataUuid The metadata UUID
|
|
332
|
+
* @param approved Use approved version or not
|
|
333
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
334
|
+
* @param reportProgress flag to report request and response progress.
|
|
335
|
+
*/
|
|
336
|
+
delResources(metadataUuid: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
337
|
+
httpHeaderAccept?: 'application/json';
|
|
338
|
+
}): Observable<any>;
|
|
339
|
+
delResources(metadataUuid: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
340
|
+
httpHeaderAccept?: 'application/json';
|
|
341
|
+
}): Observable<HttpResponse<any>>;
|
|
342
|
+
delResources(metadataUuid: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
343
|
+
httpHeaderAccept?: 'application/json';
|
|
344
|
+
}): Observable<HttpEvent<any>>;
|
|
345
|
+
/**
|
|
346
|
+
* Delete all record status
|
|
347
|
+
* @param metadataUuid Record UUID.
|
|
348
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
349
|
+
* @param reportProgress flag to report request and response progress.
|
|
350
|
+
*/
|
|
351
|
+
deleteAllRecordStatus(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
352
|
+
httpHeaderAccept?: 'application/json';
|
|
353
|
+
}): Observable<any>;
|
|
354
|
+
deleteAllRecordStatus(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
355
|
+
httpHeaderAccept?: 'application/json';
|
|
356
|
+
}): Observable<HttpResponse<any>>;
|
|
357
|
+
deleteAllRecordStatus(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
358
|
+
httpHeaderAccept?: 'application/json';
|
|
359
|
+
}): Observable<HttpEvent<any>>;
|
|
242
360
|
/**
|
|
243
361
|
* Delete attribute
|
|
244
362
|
* @param metadataUuid Record UUID.
|
|
@@ -274,6 +392,41 @@ export declare class RecordsApiService {
|
|
|
274
392
|
deleteElement(metadataUuid: string, ref: Array<string>, parent: string, displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
275
393
|
httpHeaderAccept?: 'application/json';
|
|
276
394
|
}): Observable<HttpEvent<any>>;
|
|
395
|
+
/**
|
|
396
|
+
* Delete a record
|
|
397
|
+
* User MUST be able to edit the record to delete it. By default, a backup is made in ZIP format. After that, the record attachments are removed, the document removed from the index and then from the database.
|
|
398
|
+
* @param metadataUuid Record UUID.
|
|
399
|
+
* @param withBackup Backup first the record as MEF in the metadata removed folder.
|
|
400
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
401
|
+
* @param reportProgress flag to report request and response progress.
|
|
402
|
+
*/
|
|
403
|
+
deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
404
|
+
httpHeaderAccept?: 'application/json';
|
|
405
|
+
}): Observable<any>;
|
|
406
|
+
deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
407
|
+
httpHeaderAccept?: 'application/json';
|
|
408
|
+
}): Observable<HttpResponse<any>>;
|
|
409
|
+
deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
410
|
+
httpHeaderAccept?: 'application/json';
|
|
411
|
+
}): Observable<HttpEvent<any>>;
|
|
412
|
+
/**
|
|
413
|
+
* Delete a record status
|
|
414
|
+
* @param metadataUuid Record UUID.
|
|
415
|
+
* @param statusId Status identifier
|
|
416
|
+
* @param userId User identifier
|
|
417
|
+
* @param changeDate Change date
|
|
418
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
419
|
+
* @param reportProgress flag to report request and response progress.
|
|
420
|
+
*/
|
|
421
|
+
deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
422
|
+
httpHeaderAccept?: 'application/json';
|
|
423
|
+
}): Observable<any>;
|
|
424
|
+
deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
425
|
+
httpHeaderAccept?: 'application/json';
|
|
426
|
+
}): Observable<HttpResponse<any>>;
|
|
427
|
+
deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
428
|
+
httpHeaderAccept?: 'application/json';
|
|
429
|
+
}): Observable<HttpEvent<any>>;
|
|
277
430
|
/**
|
|
278
431
|
* Delete one or more records
|
|
279
432
|
* User MUST be able to edit the record to delete it.
|
|
@@ -446,6 +599,28 @@ export declare class RecordsApiService {
|
|
|
446
599
|
getActiveUsers(dateFrom: string, dateTo: string, groups?: Array<number>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
447
600
|
httpHeaderAccept?: 'application/json';
|
|
448
601
|
}): Observable<HttpEvent<any>>;
|
|
602
|
+
/**
|
|
603
|
+
* Get record extents as image
|
|
604
|
+
* A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
|
|
605
|
+
* @param metadataUuid Record UUID.
|
|
606
|
+
* @param mapsrs (optional) the background map projection. If not passed uses the region/getmap/mapproj setting. If the setting is not set defaults to EPSG:4326
|
|
607
|
+
* @param width (optional) width of the image that is created. Only one of width and height are permitted
|
|
608
|
+
* @param height (optional) height of the image that is created. Only one of width and height are permitted
|
|
609
|
+
* @param background (optional) URL for loading a background image for regions or a key that references the namedBackgrounds (configured in config-spring-geonetwork.xml). A WMS GetMap request is the typical example. The URL must be parameterized with the following parameters: minx, maxx, miny, maxy, width, height
|
|
610
|
+
* @param fillColor (optional) Fill color with format RED,GREEN,BLUE,ALPHA
|
|
611
|
+
* @param strokeColor (optional) Stroke color with format RED,GREEN,BLUE,ALPHA
|
|
612
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
613
|
+
* @param reportProgress flag to report request and response progress.
|
|
614
|
+
*/
|
|
615
|
+
getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
616
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
617
|
+
}): Observable<Array<string>>;
|
|
618
|
+
getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
619
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
620
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
621
|
+
getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
622
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
623
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
449
624
|
/**
|
|
450
625
|
* Get list of record extents
|
|
451
626
|
* A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
|
|
@@ -484,16 +659,24 @@ export declare class RecordsApiService {
|
|
|
484
659
|
/**
|
|
485
660
|
* Get catalog content as RDF. This endpoint supports the same Lucene query parameters as for the GUI search.
|
|
486
661
|
* .
|
|
662
|
+
* @param from Indicates the start position in a sorted list of matches that the client wants to use as the beginning of a page result.
|
|
663
|
+
* @param hitsPerPage Indicates the number of hits per page.
|
|
664
|
+
* @param any Search key
|
|
665
|
+
* @param title A search key for the title.
|
|
666
|
+
* @param facetQ A search facet in the Lucene index. Use the GeoNetwork GUI search to generate the suitable filter values. Example: standard/dcat-ap&createDateYear/2018&sourceCatalog/6d93613e-2b76-4e26-94af-4b4c420a1758 (filter by creation year and source catalog).
|
|
667
|
+
* @param sortBy Lucene sortBy criteria. Relevant values: relevance, title, changeDate.
|
|
668
|
+
* @param sortOrder Sort order. Possible values: reverse.
|
|
669
|
+
* @param similarity Use the Lucene FuzzyQuery. Values range from 0.0 to 1.0 and defaults to 0.8.
|
|
487
670
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
488
671
|
* @param reportProgress flag to report request and response progress.
|
|
489
672
|
*/
|
|
490
|
-
getAsRdf(observe?: 'body', reportProgress?: boolean, options?: {
|
|
673
|
+
getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
491
674
|
httpHeaderAccept?: 'application/json';
|
|
492
675
|
}): Observable<any>;
|
|
493
|
-
getAsRdf(observe?: 'response', reportProgress?: boolean, options?: {
|
|
676
|
+
getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
494
677
|
httpHeaderAccept?: 'application/json';
|
|
495
678
|
}): Observable<HttpResponse<any>>;
|
|
496
|
-
getAsRdf(observe?: 'events', reportProgress?: boolean, options?: {
|
|
679
|
+
getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
497
680
|
httpHeaderAccept?: 'application/json';
|
|
498
681
|
}): Observable<HttpEvent<any>>;
|
|
499
682
|
/**
|
|
@@ -501,36 +684,117 @@ export declare class RecordsApiService {
|
|
|
501
684
|
* Retrieve related services, datasets, onlines, thumbnails, sources, ... to this records.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\'>More info</a>
|
|
502
685
|
* @param metadataUuid Record UUID.
|
|
503
686
|
* @param type Type of related resource. If none, all resources are returned.
|
|
687
|
+
* @param approved Use approved version or not
|
|
504
688
|
* @param start Start offset for paging. Default 1. Only applies to related metadata records (ie. not for thumbnails).
|
|
505
689
|
* @param rows Number of rows returned. Default 100.
|
|
506
690
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
507
691
|
* @param reportProgress flag to report request and response progress.
|
|
508
692
|
*/
|
|
509
|
-
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
693
|
+
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
510
694
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
511
695
|
}): Observable<RelatedResponseApiModel>;
|
|
512
|
-
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
696
|
+
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
513
697
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
514
698
|
}): Observable<HttpResponse<RelatedResponseApiModel>>;
|
|
515
|
-
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
699
|
+
getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
516
700
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
517
701
|
}): Observable<HttpEvent<RelatedResponseApiModel>>;
|
|
702
|
+
/**
|
|
703
|
+
* Get record associated resources
|
|
704
|
+
* Retrieve related services, datasets, sources, ... to this records.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\'>More info</a>
|
|
705
|
+
* @param metadataUuid Record UUID.
|
|
706
|
+
* @param type Type of related resource. If none, all resources are returned.
|
|
707
|
+
* @param approved Use approved version or not
|
|
708
|
+
* @param start Start offset for paging. Default 1. Only applies to related metadata records (ie. not for thumbnails).
|
|
709
|
+
* @param rows Number of rows returned. Default 100.
|
|
710
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
711
|
+
* @param reportProgress flag to report request and response progress.
|
|
712
|
+
*/
|
|
713
|
+
getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
714
|
+
httpHeaderAccept?: 'application/json';
|
|
715
|
+
}): Observable<{
|
|
716
|
+
[key: string]: Array<AssociatedRecordApiModel>;
|
|
717
|
+
}>;
|
|
718
|
+
getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
719
|
+
httpHeaderAccept?: 'application/json';
|
|
720
|
+
}): Observable<HttpResponse<{
|
|
721
|
+
[key: string]: Array<AssociatedRecordApiModel>;
|
|
722
|
+
}>>;
|
|
723
|
+
getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
724
|
+
httpHeaderAccept?: 'application/json';
|
|
725
|
+
}): Observable<HttpEvent<{
|
|
726
|
+
[key: string]: Array<AssociatedRecordApiModel>;
|
|
727
|
+
}>>;
|
|
518
728
|
/**
|
|
519
729
|
* Returns a map to decode attributes in a dataset (from the associated feature catalog)
|
|
520
|
-
* Retrieve related services, datasets, onlines, thumbnails, sources, ... to this records.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\'>More info</a>
|
|
521
730
|
* @param metadataUuid Record UUID.
|
|
731
|
+
* @param approved Use approved version or not
|
|
522
732
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
523
733
|
* @param reportProgress flag to report request and response progress.
|
|
524
734
|
*/
|
|
525
|
-
getFeatureCatalog(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
735
|
+
getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
526
736
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
527
737
|
}): Observable<FeatureResponseApiModel>;
|
|
528
|
-
getFeatureCatalog(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
738
|
+
getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
529
739
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
530
740
|
}): Observable<HttpResponse<FeatureResponseApiModel>>;
|
|
531
|
-
getFeatureCatalog(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
741
|
+
getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
532
742
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
533
743
|
}): Observable<HttpEvent<FeatureResponseApiModel>>;
|
|
744
|
+
/**
|
|
745
|
+
* Get one record extent as image
|
|
746
|
+
* A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
|
|
747
|
+
* @param metadataUuid Record UUID.
|
|
748
|
+
* @param geometryIndex Index of the geometry or bounding box to display. Starts at 1.
|
|
749
|
+
* @param mapsrs (optional) the background map projection. If not passed uses the region/getmap/mapproj setting. If the setting is not set defaults to EPSG:4326
|
|
750
|
+
* @param width (optional) width of the image that is created. Only one of width and height are permitted
|
|
751
|
+
* @param height (optional) height of the image that is created. Only one of width and height are permitted
|
|
752
|
+
* @param background (optional) URL for loading a background image for regions or a key that references the namedBackgrounds (configured in config-spring-geonetwork.xml). A WMS GetMap request is the typical example. The URL must be parameterized with the following parameters: minx, maxx, miny, maxy, width, height
|
|
753
|
+
* @param fillColor (optional) Fill color with format RED,GREEN,BLUE,ALPHA
|
|
754
|
+
* @param strokeColor (optional) Stroke color with format RED,GREEN,BLUE,ALPHA
|
|
755
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
756
|
+
* @param reportProgress flag to report request and response progress.
|
|
757
|
+
*/
|
|
758
|
+
getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
759
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
760
|
+
}): Observable<Array<string>>;
|
|
761
|
+
getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
762
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
763
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
764
|
+
getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
765
|
+
httpHeaderAccept?: 'application/json' | 'image/png';
|
|
766
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
767
|
+
/**
|
|
768
|
+
* Get publication options.
|
|
769
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
770
|
+
* @param reportProgress flag to report request and response progress.
|
|
771
|
+
*/
|
|
772
|
+
getPublicationOptions(observe?: 'body', reportProgress?: boolean, options?: {
|
|
773
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
774
|
+
}): Observable<Array<PublicationOptionApiModel>>;
|
|
775
|
+
getPublicationOptions(observe?: 'response', reportProgress?: boolean, options?: {
|
|
776
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
777
|
+
}): Observable<HttpResponse<Array<PublicationOptionApiModel>>>;
|
|
778
|
+
getPublicationOptions(observe?: 'events', reportProgress?: boolean, options?: {
|
|
779
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
780
|
+
}): Observable<HttpEvent<Array<PublicationOptionApiModel>>>;
|
|
781
|
+
/**
|
|
782
|
+
* Get a metadata record
|
|
783
|
+
* Depending on the accept header the appropriate formatter is used. When requesting a ZIP, a MEF version 2 file is returned. When requesting HTML, the default formatter is used.
|
|
784
|
+
* @param metadataUuid Record UUID.
|
|
785
|
+
* @param accept Accept header should indicate which is the appropriate format to return. It could be text/html, application/xml, application/zip, ...If no appropriate Accept header found, the XML format is returned.
|
|
786
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
787
|
+
* @param reportProgress flag to report request and response progress.
|
|
788
|
+
*/
|
|
789
|
+
getRecord(metadataUuid: string, accept: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
790
|
+
httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
|
|
791
|
+
}): Observable<string>;
|
|
792
|
+
getRecord(metadataUuid: string, accept: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
793
|
+
httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
|
|
794
|
+
}): Observable<HttpResponse<string>>;
|
|
795
|
+
getRecord(metadataUuid: string, accept: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
796
|
+
httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
|
|
797
|
+
}): Observable<HttpEvent<string>>;
|
|
534
798
|
/**
|
|
535
799
|
* Get a metadata record as XML or JSON
|
|
536
800
|
* @param metadataUuid Record UUID.
|
|
@@ -618,6 +882,37 @@ export declare class RecordsApiService {
|
|
|
618
882
|
getRecordFormattedBy(formatterId: string, metadataUuid: string, accept?: string, width?: '_25' | '_50' | '_75' | '_100', mdpath?: string, language?: string, output?: 'txt' | 'html' | 'xml' | 'json' | 'jsonld' | 'pdf' | 'testpdf', approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
619
883
|
httpHeaderAccept?: 'application/json';
|
|
620
884
|
}): Observable<HttpEvent<any>>;
|
|
885
|
+
/**
|
|
886
|
+
* Get metadata record permalink
|
|
887
|
+
* Permalink is by default the landing page formatter but can be configured in the admin console > settings. If the record as a DOI and if enabled in the settings, then it takes priority.
|
|
888
|
+
* @param metadataUuid Record UUID.
|
|
889
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
890
|
+
* @param reportProgress flag to report request and response progress.
|
|
891
|
+
*/
|
|
892
|
+
getRecordPermalink(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
893
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
894
|
+
}): Observable<string>;
|
|
895
|
+
getRecordPermalink(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
896
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
897
|
+
}): Observable<HttpResponse<string>>;
|
|
898
|
+
getRecordPermalink(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
899
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
900
|
+
}): Observable<HttpEvent<string>>;
|
|
901
|
+
/**
|
|
902
|
+
* Get record popularity
|
|
903
|
+
* @param metadataUuid Record UUID.
|
|
904
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
905
|
+
* @param reportProgress flag to report request and response progress.
|
|
906
|
+
*/
|
|
907
|
+
getRecordPopularity(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
908
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
909
|
+
}): Observable<string>;
|
|
910
|
+
getRecordPopularity(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
911
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
912
|
+
}): Observable<HttpResponse<string>>;
|
|
913
|
+
getRecordPopularity(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
914
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
915
|
+
}): Observable<HttpEvent<string>>;
|
|
621
916
|
/**
|
|
622
917
|
* Get record sharing settings
|
|
623
918
|
* Return current sharing options for a record.
|
|
@@ -644,13 +939,13 @@ export declare class RecordsApiService {
|
|
|
644
939
|
*/
|
|
645
940
|
getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'body', reportProgress?: boolean, options?: {
|
|
646
941
|
httpHeaderAccept?: 'application/json';
|
|
647
|
-
}): Observable<
|
|
942
|
+
}): Observable<any>;
|
|
648
943
|
getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'response', reportProgress?: boolean, options?: {
|
|
649
944
|
httpHeaderAccept?: 'application/json';
|
|
650
|
-
}): Observable<HttpResponse<
|
|
945
|
+
}): Observable<HttpResponse<any>>;
|
|
651
946
|
getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'events', reportProgress?: boolean, options?: {
|
|
652
947
|
httpHeaderAccept?: 'application/json';
|
|
653
|
-
}): Observable<HttpEvent<
|
|
948
|
+
}): Observable<HttpEvent<any>>;
|
|
654
949
|
/**
|
|
655
950
|
* Get record status history by type
|
|
656
951
|
* @param metadataUuid Record UUID.
|
|
@@ -662,13 +957,13 @@ export declare class RecordsApiService {
|
|
|
662
957
|
*/
|
|
663
958
|
getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'body', reportProgress?: boolean, options?: {
|
|
664
959
|
httpHeaderAccept?: 'application/json';
|
|
665
|
-
}): Observable<
|
|
960
|
+
}): Observable<any>;
|
|
666
961
|
getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'response', reportProgress?: boolean, options?: {
|
|
667
962
|
httpHeaderAccept?: 'application/json';
|
|
668
|
-
}): Observable<HttpResponse<
|
|
963
|
+
}): Observable<HttpResponse<any>>;
|
|
669
964
|
getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'events', reportProgress?: boolean, options?: {
|
|
670
965
|
httpHeaderAccept?: 'application/json';
|
|
671
|
-
}): Observable<HttpEvent<
|
|
966
|
+
}): Observable<HttpEvent<any>>;
|
|
672
967
|
/**
|
|
673
968
|
* Get record tags
|
|
674
969
|
* Tags are used to classify information.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/tag-information/tagging-with-categories.html\'>More info</a>
|
|
@@ -763,14 +1058,14 @@ export declare class RecordsApiService {
|
|
|
763
1058
|
* @param reportProgress flag to report request and response progress.
|
|
764
1059
|
*/
|
|
765
1060
|
getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
766
|
-
httpHeaderAccept?: 'application/json'
|
|
767
|
-
}): Observable<
|
|
1061
|
+
httpHeaderAccept?: 'application/json';
|
|
1062
|
+
}): Observable<any>;
|
|
768
1063
|
getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
769
|
-
httpHeaderAccept?: 'application/json'
|
|
770
|
-
}): Observable<HttpResponse<
|
|
1064
|
+
httpHeaderAccept?: 'application/json';
|
|
1065
|
+
}): Observable<HttpResponse<any>>;
|
|
771
1066
|
getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
772
|
-
httpHeaderAccept?: 'application/json'
|
|
773
|
-
}): Observable<HttpEvent<
|
|
1067
|
+
httpHeaderAccept?: 'application/json';
|
|
1068
|
+
}): Observable<HttpEvent<any>>;
|
|
774
1069
|
/**
|
|
775
1070
|
* List saved queries for this metadata
|
|
776
1071
|
* @param metadataUuid Record UUID.
|
|
@@ -808,13 +1103,13 @@ export declare class RecordsApiService {
|
|
|
808
1103
|
*/
|
|
809
1104
|
getStatus(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
810
1105
|
httpHeaderAccept?: 'application/json';
|
|
811
|
-
}): Observable<
|
|
1106
|
+
}): Observable<any>;
|
|
812
1107
|
getStatus(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
813
1108
|
httpHeaderAccept?: 'application/json';
|
|
814
|
-
}): Observable<HttpResponse<
|
|
1109
|
+
}): Observable<HttpResponse<any>>;
|
|
815
1110
|
getStatus(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
816
1111
|
httpHeaderAccept?: 'application/json';
|
|
817
|
-
}): Observable<HttpEvent<
|
|
1112
|
+
}): Observable<HttpEvent<any>>;
|
|
818
1113
|
/**
|
|
819
1114
|
* Get suggestions
|
|
820
1115
|
* Analyze the record an suggest processes to improve the quality of the record.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/workflow/batchupdate-xsl.html\'>More info</a>
|
|
@@ -857,11 +1152,13 @@ export declare class RecordsApiService {
|
|
|
857
1152
|
* Search status
|
|
858
1153
|
* @param type One or more types to retrieve (ie. worflow, event, task). Default is all.
|
|
859
1154
|
* @param details All event details including XML changes. Responses are bigger. Default is false
|
|
1155
|
+
* @param sortOrder Sort Order (ie. DESC or ASC). Default is none.
|
|
860
1156
|
* @param author One or more event author. Default is all.
|
|
861
1157
|
* @param owner One or more event owners. Default is all.
|
|
862
1158
|
* @param id One or more record identifier. Default is all.
|
|
863
|
-
* @param
|
|
1159
|
+
* @param recordIdentifier One or more metadata record identifier. Default is all.
|
|
864
1160
|
* @param uuid One or more metadata uuid. Default is all.
|
|
1161
|
+
* @param statusIds One or more status id. Default is all.
|
|
865
1162
|
* @param dateFrom Start date
|
|
866
1163
|
* @param dateTo End date
|
|
867
1164
|
* @param from From page
|
|
@@ -869,15 +1166,31 @@ export declare class RecordsApiService {
|
|
|
869
1166
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
870
1167
|
* @param reportProgress flag to report request and response progress.
|
|
871
1168
|
*/
|
|
872
|
-
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>,
|
|
1169
|
+
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
873
1170
|
httpHeaderAccept?: 'application/json';
|
|
874
|
-
}): Observable<
|
|
875
|
-
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>,
|
|
1171
|
+
}): Observable<any>;
|
|
1172
|
+
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
876
1173
|
httpHeaderAccept?: 'application/json';
|
|
877
|
-
}): Observable<HttpResponse<
|
|
878
|
-
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>,
|
|
1174
|
+
}): Observable<HttpResponse<any>>;
|
|
1175
|
+
getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
879
1176
|
httpHeaderAccept?: 'application/json';
|
|
880
|
-
}): Observable<HttpEvent<
|
|
1177
|
+
}): Observable<HttpEvent<any>>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Increase record popularity
|
|
1180
|
+
* Used when a view is based on the search results content and does not really access the record. Record is then added to the indexing queue and popularity will be updated soon.
|
|
1181
|
+
* @param metadataUuid Record UUID.
|
|
1182
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1183
|
+
* @param reportProgress flag to report request and response progress.
|
|
1184
|
+
*/
|
|
1185
|
+
increaseRecordPopularity(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1186
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
1187
|
+
}): Observable<string>;
|
|
1188
|
+
increaseRecordPopularity(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1189
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
1190
|
+
}): Observable<HttpResponse<string>>;
|
|
1191
|
+
increaseRecordPopularity(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1192
|
+
httpHeaderAccept?: 'application/json' | 'text/plain';
|
|
1193
|
+
}): Observable<HttpEvent<string>>;
|
|
881
1194
|
/**
|
|
882
1195
|
* Index a set of records
|
|
883
1196
|
* Index a set of records provided either by a bucket or a list of uuids
|
|
@@ -886,17 +1199,17 @@ export declare class RecordsApiService {
|
|
|
886
1199
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
887
1200
|
* @param reportProgress flag to report request and response progress.
|
|
888
1201
|
*/
|
|
889
|
-
|
|
1202
|
+
index1(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
890
1203
|
httpHeaderAccept?: 'application/json';
|
|
891
1204
|
}): Observable<{
|
|
892
1205
|
[key: string]: object;
|
|
893
1206
|
}>;
|
|
894
|
-
|
|
1207
|
+
index1(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
895
1208
|
httpHeaderAccept?: 'application/json';
|
|
896
1209
|
}): Observable<HttpResponse<{
|
|
897
1210
|
[key: string]: object;
|
|
898
1211
|
}>>;
|
|
899
|
-
|
|
1212
|
+
index1(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
900
1213
|
httpHeaderAccept?: 'application/json';
|
|
901
1214
|
}): Observable<HttpEvent<{
|
|
902
1215
|
[key: string]: object;
|
|
@@ -908,7 +1221,7 @@ export declare class RecordsApiService {
|
|
|
908
1221
|
* @param url URL of a file to download and insert.
|
|
909
1222
|
* @param serverFolder Server folder where to look for files.
|
|
910
1223
|
* @param recursiveSearch (Server folder import only) Recursive search in folder.
|
|
911
|
-
* @param publishToAll (XML file only) Publish record.
|
|
1224
|
+
* @param publishToAll (XML file only and if workflow is not enabled) Publish record.
|
|
912
1225
|
* @param assignToCatalog (MEF file only) Assign to current catalog.
|
|
913
1226
|
* @param uuidProcessing Record identifier processing.
|
|
914
1227
|
* @param group The group the record is attached to.
|
|
@@ -916,18 +1229,19 @@ export declare class RecordsApiService {
|
|
|
916
1229
|
* @param rejectIfInvalid Validate the record first and reject it if not valid.
|
|
917
1230
|
* @param transformWith XSL transformation to apply to the record.
|
|
918
1231
|
* @param schema Force the schema of the record. If not set, schema autodetection is used (and is the preferred method).
|
|
1232
|
+
* @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
|
|
919
1233
|
* @param extra (experimental) Add extra information to the record.
|
|
920
|
-
* @param body
|
|
1234
|
+
* @param body
|
|
921
1235
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
922
1236
|
* @param reportProgress flag to report request and response progress.
|
|
923
1237
|
*/
|
|
924
|
-
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1238
|
+
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
925
1239
|
httpHeaderAccept?: 'application/json';
|
|
926
1240
|
}): Observable<SimpleMetadataProcessingReportApiModel>;
|
|
927
|
-
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1241
|
+
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
928
1242
|
httpHeaderAccept?: 'application/json';
|
|
929
1243
|
}): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
|
|
930
|
-
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1244
|
+
insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
931
1245
|
httpHeaderAccept?: 'application/json';
|
|
932
1246
|
}): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
|
|
933
1247
|
/**
|
|
@@ -944,16 +1258,17 @@ export declare class RecordsApiService {
|
|
|
944
1258
|
* @param transformWith XSL transformation to apply to the record.
|
|
945
1259
|
* @param schema Force the schema of the record. If not set, schema autodetection is used (and is the preferred method).
|
|
946
1260
|
* @param extra (experimental) Add extra information to the record.
|
|
1261
|
+
* @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
|
|
947
1262
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
948
1263
|
* @param reportProgress flag to report request and response progress.
|
|
949
1264
|
*/
|
|
950
|
-
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1265
|
+
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
951
1266
|
httpHeaderAccept?: 'application/json';
|
|
952
1267
|
}): Observable<SimpleMetadataProcessingReportApiModel>;
|
|
953
|
-
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1268
|
+
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
954
1269
|
httpHeaderAccept?: 'application/json';
|
|
955
1270
|
}): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
|
|
956
|
-
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1271
|
+
insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
957
1272
|
httpHeaderAccept?: 'application/json';
|
|
958
1273
|
}): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
|
|
959
1274
|
/**
|
|
@@ -974,13 +1289,13 @@ export declare class RecordsApiService {
|
|
|
974
1289
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
975
1290
|
* @param reportProgress flag to report request and response progress.
|
|
976
1291
|
*/
|
|
977
|
-
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1292
|
+
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
978
1293
|
httpHeaderAccept?: 'application/json';
|
|
979
1294
|
}): Observable<SimpleMetadataProcessingReportApiModel>;
|
|
980
|
-
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1295
|
+
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
981
1296
|
httpHeaderAccept?: 'application/json';
|
|
982
1297
|
}): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
|
|
983
|
-
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1298
|
+
insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
984
1299
|
httpHeaderAccept?: 'application/json';
|
|
985
1300
|
}): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
|
|
986
1301
|
/**
|
|
@@ -1001,6 +1316,24 @@ export declare class RecordsApiService {
|
|
|
1001
1316
|
patchResource(metadataUuid: string, resourceId: string, visibility: 'public' | 'private', approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1002
1317
|
httpHeaderAccept?: 'application/json';
|
|
1003
1318
|
}): Observable<HttpEvent<MetadataResourceApiModel>>;
|
|
1319
|
+
/**
|
|
1320
|
+
* Preview edits made by XPath expressions.
|
|
1321
|
+
* @param batchEditParameterApiModel
|
|
1322
|
+
* @param uuids Record UUIDs. If null current selection is used.
|
|
1323
|
+
* @param bucket Selection bucket name
|
|
1324
|
+
* @param diffType Return differences with diff, diffhtml or patch
|
|
1325
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1326
|
+
* @param reportProgress flag to report request and response progress.
|
|
1327
|
+
*/
|
|
1328
|
+
previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'body', reportProgress?: boolean, options?: {
|
|
1329
|
+
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
1330
|
+
}): Observable<object>;
|
|
1331
|
+
previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'response', reportProgress?: boolean, options?: {
|
|
1332
|
+
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
1333
|
+
}): Observable<HttpResponse<object>>;
|
|
1334
|
+
previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'events', reportProgress?: boolean, options?: {
|
|
1335
|
+
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
1336
|
+
}): Observable<HttpEvent<object>>;
|
|
1004
1337
|
/**
|
|
1005
1338
|
* Apply a process
|
|
1006
1339
|
* Process a metadata with an XSL transformation declared in the metadata schema (See the process folder). Parameters sent to the service are forwarded to XSL process.
|
|
@@ -1027,47 +1360,64 @@ export declare class RecordsApiService {
|
|
|
1027
1360
|
* @param reportProgress flag to report request and response progress.
|
|
1028
1361
|
*/
|
|
1029
1362
|
processRecordPreview(metadataUuid: string, process: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1030
|
-
httpHeaderAccept?: 'application/json'
|
|
1031
|
-
}): Observable<
|
|
1363
|
+
httpHeaderAccept?: 'application/json';
|
|
1364
|
+
}): Observable<any>;
|
|
1032
1365
|
processRecordPreview(metadataUuid: string, process: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1033
|
-
httpHeaderAccept?: 'application/json'
|
|
1034
|
-
}): Observable<HttpResponse<
|
|
1366
|
+
httpHeaderAccept?: 'application/json';
|
|
1367
|
+
}): Observable<HttpResponse<any>>;
|
|
1035
1368
|
processRecordPreview(metadataUuid: string, process: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1036
|
-
httpHeaderAccept?: 'application/json'
|
|
1037
|
-
}): Observable<HttpEvent<
|
|
1369
|
+
httpHeaderAccept?: 'application/json';
|
|
1370
|
+
}): Observable<HttpEvent<any>>;
|
|
1038
1371
|
/**
|
|
1039
1372
|
* Publish one or more records
|
|
1040
1373
|
* See record sharing for more details.
|
|
1041
1374
|
* @param uuids Record UUIDs. If null current selection is used.
|
|
1042
1375
|
* @param bucket Selection bucket name
|
|
1376
|
+
* @param body
|
|
1043
1377
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1044
1378
|
* @param reportProgress flag to report request and response progress.
|
|
1045
1379
|
*/
|
|
1046
|
-
publish(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1380
|
+
publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1047
1381
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1048
1382
|
}): Observable<MetadataProcessingReportApiModel>;
|
|
1049
|
-
publish(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1383
|
+
publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1050
1384
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1051
1385
|
}): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
|
|
1052
|
-
publish(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1386
|
+
publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1053
1387
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1054
1388
|
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
1389
|
+
/**
|
|
1390
|
+
* Set privileges for ALL group to publish the metadata for all users.
|
|
1391
|
+
* @param metadataUuid Record UUID.
|
|
1392
|
+
* @param body
|
|
1393
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1394
|
+
* @param reportProgress flag to report request and response progress.
|
|
1395
|
+
*/
|
|
1396
|
+
publish1(metadataUuid: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1397
|
+
httpHeaderAccept?: 'application/json';
|
|
1398
|
+
}): Observable<any>;
|
|
1399
|
+
publish1(metadataUuid: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1400
|
+
httpHeaderAccept?: 'application/json';
|
|
1401
|
+
}): Observable<HttpResponse<any>>;
|
|
1402
|
+
publish1(metadataUuid: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1403
|
+
httpHeaderAccept?: 'application/json';
|
|
1404
|
+
}): Observable<HttpEvent<any>>;
|
|
1055
1405
|
/**
|
|
1056
1406
|
* Create a new resource for a given metadata
|
|
1057
1407
|
* @param metadataUuid The metadata UUID
|
|
1058
1408
|
* @param visibility The sharing policy
|
|
1059
1409
|
* @param approved Use approved version or not
|
|
1060
|
-
* @param
|
|
1410
|
+
* @param inlineObject3ApiModel
|
|
1061
1411
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1062
1412
|
* @param reportProgress flag to report request and response progress.
|
|
1063
1413
|
*/
|
|
1064
|
-
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean,
|
|
1414
|
+
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1065
1415
|
httpHeaderAccept?: 'application/json';
|
|
1066
1416
|
}): Observable<MetadataResourceApiModel>;
|
|
1067
|
-
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean,
|
|
1417
|
+
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1068
1418
|
httpHeaderAccept?: 'application/json';
|
|
1069
1419
|
}): Observable<HttpResponse<MetadataResourceApiModel>>;
|
|
1070
|
-
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean,
|
|
1420
|
+
putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1071
1421
|
httpHeaderAccept?: 'application/json';
|
|
1072
1422
|
}): Observable<HttpEvent<MetadataResourceApiModel>>;
|
|
1073
1423
|
/**
|
|
@@ -1092,7 +1442,7 @@ export declare class RecordsApiService {
|
|
|
1092
1442
|
* Rate a record
|
|
1093
1443
|
* User rating of metadata. If the metadata was harvested using the \'GeoNetwork\' protocol and the system setting localrating/enable is false (the default), the user\'s rating is shared between GN nodes in this harvesting network. If the metadata was not harvested or if localrating/enable is true then \'local rating\' is applied, counting only rating from users of this node.<br/>When a remote rating is applied, the local rating is not updated. It will be updated on the next harvest run (FIXME ?).
|
|
1094
1444
|
* @param metadataUuid Record UUID.
|
|
1095
|
-
* @param body
|
|
1445
|
+
* @param body
|
|
1096
1446
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1097
1447
|
* @param reportProgress flag to report request and response progress.
|
|
1098
1448
|
*/
|
|
@@ -1188,7 +1538,7 @@ export declare class RecordsApiService {
|
|
|
1188
1538
|
* Set record group
|
|
1189
1539
|
* A record is related to one group.
|
|
1190
1540
|
* @param metadataUuid Record UUID.
|
|
1191
|
-
* @param body
|
|
1541
|
+
* @param body
|
|
1192
1542
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1193
1543
|
* @param reportProgress flag to report request and response progress.
|
|
1194
1544
|
*/
|
|
@@ -1219,10 +1569,32 @@ export declare class RecordsApiService {
|
|
|
1219
1569
|
setRecordOwnership(metadataUuid: string, groupIdentifier: number, userIdentifier: number, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1220
1570
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1221
1571
|
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
1572
|
+
/**
|
|
1573
|
+
* Set the record status
|
|
1574
|
+
* @param metadataUuid Record UUID.
|
|
1575
|
+
* @param metadataStatusParameterApiModel
|
|
1576
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1577
|
+
* @param reportProgress flag to report request and response progress.
|
|
1578
|
+
*/
|
|
1579
|
+
setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1580
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1581
|
+
}): Observable<{
|
|
1582
|
+
[key: string]: string;
|
|
1583
|
+
}>;
|
|
1584
|
+
setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1585
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1586
|
+
}): Observable<HttpResponse<{
|
|
1587
|
+
[key: string]: string;
|
|
1588
|
+
}>>;
|
|
1589
|
+
setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1590
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1591
|
+
}): Observable<HttpEvent<{
|
|
1592
|
+
[key: string]: string;
|
|
1593
|
+
}>>;
|
|
1222
1594
|
/**
|
|
1223
1595
|
* Set sharing settings for one or more records
|
|
1224
1596
|
* See record sharing for more details.
|
|
1225
|
-
* @param sharingParameterApiModel
|
|
1597
|
+
* @param sharingParameterApiModel
|
|
1226
1598
|
* @param uuids Record UUIDs. If null current selection is used.
|
|
1227
1599
|
* @param bucket Selection bucket name
|
|
1228
1600
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
@@ -1237,6 +1609,23 @@ export declare class RecordsApiService {
|
|
|
1237
1609
|
share(sharingParameterApiModel: SharingParameterApiModel, uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1238
1610
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1239
1611
|
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
1612
|
+
/**
|
|
1613
|
+
* Set record sharing
|
|
1614
|
+
* Privileges are assigned by group. User needs to be able to edit a record to set sharing settings. For reserved group (ie. Internet, Intranet & Guest), user MUST be reviewer of one group. For other group, if Only set privileges to user\'s groups is set in catalog configuration user MUST be a member of the group.<br/>Clear first allows to unset all operations first before setting the new ones.Clear option does not remove reserved groups operation if user is not an administrator, a reviewer or the owner of the record.<br/><a href=\'http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/publishing/managing-privileges.html\'>More info</a>
|
|
1615
|
+
* @param metadataUuid Record UUID.
|
|
1616
|
+
* @param sharingParameterApiModel
|
|
1617
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1618
|
+
* @param reportProgress flag to report request and response progress.
|
|
1619
|
+
*/
|
|
1620
|
+
share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1621
|
+
httpHeaderAccept?: 'application/json';
|
|
1622
|
+
}): Observable<any>;
|
|
1623
|
+
share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1624
|
+
httpHeaderAccept?: 'application/json';
|
|
1625
|
+
}): Observable<HttpResponse<any>>;
|
|
1626
|
+
share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1627
|
+
httpHeaderAccept?: 'application/json';
|
|
1628
|
+
}): Observable<HttpEvent<any>>;
|
|
1240
1629
|
/**
|
|
1241
1630
|
* Get saved content from the status record after changes
|
|
1242
1631
|
* @param metadataUuid Record UUID.
|
|
@@ -1273,6 +1662,39 @@ export declare class RecordsApiService {
|
|
|
1273
1662
|
showStatusBefore(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1274
1663
|
httpHeaderAccept?: 'application/json' | 'application/xml';
|
|
1275
1664
|
}): Observable<HttpEvent<string>>;
|
|
1665
|
+
/**
|
|
1666
|
+
* Edit a record
|
|
1667
|
+
* Return HTML form for editing.
|
|
1668
|
+
* @param metadataUuid Record UUID.
|
|
1669
|
+
* @param currTab Tab
|
|
1670
|
+
* @param withAttributes
|
|
1671
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1672
|
+
* @param reportProgress flag to report request and response progress.
|
|
1673
|
+
*/
|
|
1674
|
+
startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1675
|
+
httpHeaderAccept?: 'application/json';
|
|
1676
|
+
}): Observable<any>;
|
|
1677
|
+
startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1678
|
+
httpHeaderAccept?: 'application/json';
|
|
1679
|
+
}): Observable<HttpResponse<any>>;
|
|
1680
|
+
startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1681
|
+
httpHeaderAccept?: 'application/json';
|
|
1682
|
+
}): Observable<HttpEvent<any>>;
|
|
1683
|
+
/**
|
|
1684
|
+
* Set the records status to submitted
|
|
1685
|
+
* @param metadataBatchSubmitParameterApiModel
|
|
1686
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1687
|
+
* @param reportProgress flag to report request and response progress.
|
|
1688
|
+
*/
|
|
1689
|
+
submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1690
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1691
|
+
}): Observable<MetadataProcessingReportApiModel>;
|
|
1692
|
+
submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1693
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1694
|
+
}): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
|
|
1695
|
+
submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1696
|
+
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1697
|
+
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
1276
1698
|
/**
|
|
1277
1699
|
* Add tags to a record
|
|
1278
1700
|
* @param metadataUuid Record UUID.
|
|
@@ -1329,18 +1751,35 @@ export declare class RecordsApiService {
|
|
|
1329
1751
|
* See record sharing for more details.
|
|
1330
1752
|
* @param uuids Record UUIDs. If null current selection is used.
|
|
1331
1753
|
* @param bucket Selection bucket name
|
|
1754
|
+
* @param body
|
|
1332
1755
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1333
1756
|
* @param reportProgress flag to report request and response progress.
|
|
1334
1757
|
*/
|
|
1335
|
-
unpublish(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1758
|
+
unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1336
1759
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1337
1760
|
}): Observable<MetadataProcessingReportApiModel>;
|
|
1338
|
-
unpublish(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1761
|
+
unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1339
1762
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1340
1763
|
}): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
|
|
1341
|
-
unpublish(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1764
|
+
unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1342
1765
|
httpHeaderAccept?: 'application/json' | '*/*';
|
|
1343
1766
|
}): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
|
|
1767
|
+
/**
|
|
1768
|
+
* Unsets privileges for ALL group to publish the metadata for all users.
|
|
1769
|
+
* @param metadataUuid Record UUID.
|
|
1770
|
+
* @param body
|
|
1771
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1772
|
+
* @param reportProgress flag to report request and response progress.
|
|
1773
|
+
*/
|
|
1774
|
+
unpublish1(metadataUuid: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1775
|
+
httpHeaderAccept?: 'application/json';
|
|
1776
|
+
}): Observable<any>;
|
|
1777
|
+
unpublish1(metadataUuid: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1778
|
+
httpHeaderAccept?: 'application/json';
|
|
1779
|
+
}): Observable<HttpResponse<any>>;
|
|
1780
|
+
unpublish1(metadataUuid: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1781
|
+
httpHeaderAccept?: 'application/json';
|
|
1782
|
+
}): Observable<HttpEvent<any>>;
|
|
1344
1783
|
/**
|
|
1345
1784
|
* Remove a DOI (this is not recommended, DOI are supposed to be persistent once created. This is mainly here for testing).
|
|
1346
1785
|
* @param metadataUuid Record UUID.
|