geonetwork-ui 2.1.0-initial
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 +55 -0
- package/esm2022/geonetwork-ui.mjs +5 -0
- package/esm2022/index.mjs +24 -0
- package/esm2022/libs/api/metadata-converter/src/index.mjs +5 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +20 -0
- package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +19 -0
- package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +40 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +265 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +29 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +12 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +4 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +11 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +48 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +122 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +329 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +366 -0
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +300 -0
- package/esm2022/libs/api/repository/src/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +63 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +25 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +4 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +31 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +444 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +66 -0
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +69 -0
- package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +103 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +185 -0
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +23 -0
- package/esm2022/libs/api/repository/src/lib/metadata-language.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/repository-url.mjs +10 -0
- package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +9 -0
- package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/index.mjs +4 -0
- package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/index.mjs +5 -0
- package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +7 -0
- package/esm2022/libs/common/domain/src/lib/user.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +61 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +5 -0
- package/esm2022/libs/data-access/gn4/src/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +90 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +151 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +285 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +195 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +238 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +351 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +193 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +274 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +3105 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +156 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +780 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +132 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +190 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +576 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +150 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +412 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +145 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +420 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +182 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +405 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +533 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +343 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +258 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +41 -0
- package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +72 -0
- package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +6 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +33 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +110 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +23 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +39 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +21 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +22 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +32 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +24 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +9 -0
- package/esm2022/libs/feature/auth/src/index.mjs +2 -0
- package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +17 -0
- package/esm2022/libs/feature/catalog/src/index.mjs +8 -0
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +84 -0
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +81 -0
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +23 -0
- package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +2 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +28 -0
- package/esm2022/libs/feature/dataviz/src/index.mjs +7 -0
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +187 -0
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +68 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +36 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +31 -0
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +109 -0
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +147 -0
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +74 -0
- package/esm2022/libs/feature/editor/src/index.mjs +7 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +75 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +169 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +53 -0
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +60 -0
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +3 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +9 -0
- package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +24 -0
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +86 -0
- package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +87 -0
- package/esm2022/libs/feature/map/src/index.mjs +20 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +15 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +34 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +58 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +6 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +45 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +59 -0
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +17 -0
- package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +103 -0
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +26 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +27 -0
- package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +46 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +9 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +211 -0
- package/esm2022/libs/feature/map/src/lib/style/index.mjs +3 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +43 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +96 -0
- package/esm2022/libs/feature/map/src/lib/utils/index.mjs +4 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +180 -0
- package/esm2022/libs/feature/map/src/lib/utils/projections.mjs +2 -0
- package/esm2022/libs/feature/record/src/index.mjs +10 -0
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +54 -0
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +25 -0
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +52 -0
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +49 -0
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +106 -0
- package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +135 -0
- package/esm2022/libs/feature/record/src/lib/state/index.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +9 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +30 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +39 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +11 -0
- package/esm2022/libs/feature/router/src/index.mjs +2 -0
- package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +21 -0
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +10 -0
- package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +40 -0
- package/esm2022/libs/feature/router/src/lib/default/index.mjs +8 -0
- package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +3 -0
- package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +66 -0
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +46 -0
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +56 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +5 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +114 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +58 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +14 -0
- package/esm2022/libs/feature/search/src/index.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/constants.mjs +36 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +64 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +232 -0
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +104 -0
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +131 -0
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +42 -0
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +71 -0
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +44 -0
- package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +18 -0
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +33 -0
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +70 -0
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +53 -0
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +208 -0
- package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +28 -0
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +107 -0
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +286 -0
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +126 -0
- package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +27 -0
- package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +31 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +230 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +73 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +34 -0
- package/esm2022/libs/ui/catalog/src/index.mjs +6 -0
- package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +18 -0
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +46 -0
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +27 -0
- package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +40 -0
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +54 -0
- package/esm2022/libs/ui/dataviz/src/index.mjs +6 -0
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +165 -0
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +35 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +61 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +40 -0
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +19 -0
- package/esm2022/libs/ui/elements/src/index.mjs +21 -0
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +30 -0
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +82 -0
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +14 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +35 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +43 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +49 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +64 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +23 -0
- package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +54 -0
- package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +66 -0
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +18 -0
- package/esm2022/libs/ui/elements/src/lib/search-results-error/search-results-error.component.mjs +29 -0
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +92 -0
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +144 -0
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +20 -0
- package/esm2022/libs/ui/inputs/src/index.mjs +19 -0
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +126 -0
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +29 -0
- package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +78 -0
- package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +30 -0
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +36 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +190 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +176 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +49 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +10 -0
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +16 -0
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +40 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +149 -0
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +46 -0
- package/esm2022/libs/ui/layout/src/index.mjs +7 -0
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +64 -0
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +44 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +31 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +23 -0
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +80 -0
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +45 -0
- package/esm2022/libs/ui/map/src/index.mjs +4 -0
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +19 -0
- package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +40 -0
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +33 -0
- package/esm2022/libs/ui/search/src/index.mjs +21 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +125 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +64 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +48 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +23 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +50 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +25 -0
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +62 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +36 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +15 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +20 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +91 -0
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +17 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +27 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +30 -0
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +52 -0
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +130 -0
- package/esm2022/libs/ui/widgets/src/index.mjs +9 -0
- package/esm2022/libs/ui/widgets/src/lib/badge/badge.component.mjs +17 -0
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +14 -0
- package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +50 -0
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +44 -0
- package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +55 -0
- package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +82 -0
- package/esm2022/libs/util/app-config/src/index.mjs +4 -0
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +219 -0
- package/esm2022/libs/util/app-config/src/lib/constants.mjs +439 -0
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +160 -0
- package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +18 -0
- package/esm2022/libs/util/app-config/src/lib/model.mjs +2 -0
- package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +88 -0
- package/esm2022/libs/util/data-fetcher/src/index.mjs +5 -0
- package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +61 -0
- package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +22 -0
- package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +54 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +62 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +24 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +21 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +36 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +19 -0
- package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +93 -0
- package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +205 -0
- package/esm2022/libs/util/i18n/src/index.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +17 -0
- package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +14 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +64 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +31 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.loader.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.module.mjs +109 -0
- package/esm2022/libs/util/i18n/src/lib/testing/translations.model.mjs +6 -0
- package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +37 -0
- package/esm2022/libs/util/shared/src/index.mjs +7 -0
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/links/index.mjs +3 -0
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +60 -0
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +183 -0
- package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +34 -0
- package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +2 -0
- package/esm2022/libs/util/shared/src/lib/services/index.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +22 -0
- package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +42 -0
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +86 -0
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +19 -0
- package/esm2022/libs/util/shared/src/lib/utils/event.mjs +12 -0
- package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +21 -0
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -0
- package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +33 -0
- package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +14 -0
- package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +5 -0
- package/esm2022/libs/util/shared/src/lib/utils/url.mjs +18 -0
- package/esm2022/translations/de.json +270 -0
- package/esm2022/translations/en.json +289 -0
- package/esm2022/translations/es.json +289 -0
- package/esm2022/translations/fr.json +289 -0
- package/esm2022/translations/it.json +289 -0
- package/esm2022/translations/nl.json +289 -0
- package/esm2022/translations/pt.json +289 -0
- package/fesm2022/geonetwork-ui.mjs +27093 -0
- package/fesm2022/geonetwork-ui.mjs.map +1 -0
- package/geonetwork-ui.d.ts.map +1 -0
- package/index.d.ts +23 -0
- package/index.d.ts.map +1 -0
- package/index.ts +23 -0
- package/libs/api/metadata-converter/src/index.d.ts +5 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts +27 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +17 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +25 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +16 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +12 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +37 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +192 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +78 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +29 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +24 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +13 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +43 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -0
- package/libs/api/repository/src/index.d.ts +3 -0
- package/libs/api/repository/src/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +26 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +5 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +14 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts +4 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +11 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +66 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +3 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +20 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +24 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts +7 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +6 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +28 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +40 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +12 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts +3 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts.map +1 -0
- package/libs/api/repository/src/lib/repository-url.d.ts +3 -0
- package/libs/api/repository/src/lib/repository-url.d.ts.map +1 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts +10 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts +14 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/index.d.ts +4 -0
- package/libs/common/domain/src/lib/record/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts +111 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts +8 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts +44 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts +6 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/index.d.ts +5 -0
- package/libs/common/domain/src/lib/search/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts +21 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts +3 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/user.model.d.ts +11 -0
- package/libs/common/domain/src/lib/user.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts +3 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +61 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +5 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/index.d.ts +3 -0
- package/libs/data-access/gn4/src/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts +60 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +54 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +116 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +65 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +86 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +137 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +70 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +109 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +1433 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +313 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +64 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +284 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +196 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +213 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +172 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +246 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +144 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +97 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts +81 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts +6 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +26 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +30 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +27 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +38 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +110 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts +49 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +40 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +45 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts +9 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts.map +1 -0
- package/libs/feature/auth/src/index.d.ts +2 -0
- package/libs/feature/auth/src/index.d.ts.map +1 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts +8 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/index.d.ts +8 -0
- package/libs/feature/catalog/src/index.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +18 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +26 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +11 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +11 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +12 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +8 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +15 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/index.d.ts +7 -0
- package/libs/feature/dataviz/src/index.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +54 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +20 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +10 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +39 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +25 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -0
- package/libs/feature/editor/src/index.d.ts +7 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +31 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +44 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +17 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +20 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts +3 -0
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +10 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +8 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts +11 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +27 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts +33 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +1 -0
- package/libs/feature/map/src/index.d.ts +20 -0
- package/libs/feature/map/src/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +40 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +19 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +12 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +4 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +11 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +23 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/index.d.ts +2 -0
- package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts +9 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts +4 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +16 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +24 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +11 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +9 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +11 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +12 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +26 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +64 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +24 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/index.d.ts +3 -0
- package/libs/feature/map/src/lib/style/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +4 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts +24 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/index.d.ts +4 -0
- package/libs/feature/map/src/lib/utils/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +16 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +39 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts +2 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts.map +1 -0
- package/libs/feature/record/src/index.d.ts +10 -0
- package/libs/feature/record/src/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +22 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +16 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +8 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +13 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +13 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts +28 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +3 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +1 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +46 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/index.d.ts +3 -0
- package/libs/feature/record/src/lib/state/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +36 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +20 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +42 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +17 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +16 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -0
- package/libs/feature/router/src/index.d.ts +2 -0
- package/libs/feature/router/src/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +10 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/constants.d.ts +10 -0
- package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +12 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/index.d.ts +8 -0
- package/libs/feature/router/src/lib/default/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts +8 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts +17 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts +14 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +18 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts +10 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts +34 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +24 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +4 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -0
- package/libs/feature/search/src/index.d.ts +21 -0
- package/libs/feature/search/src/index.d.ts.map +1 -0
- package/libs/feature/search/src/lib/constants.d.ts +6 -0
- package/libs/feature/search/src/lib/constants.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +22 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts +11 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts +49 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +32 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts +31 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +22 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +35 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +19 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +9 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +16 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +32 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +22 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/actions.d.ts +162 -0
- package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +12 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/effects.d.ts +26 -0
- package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts +41 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts +52 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts +25 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +11 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +66 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +20 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +22 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -0
- package/libs/ui/catalog/src/index.d.ts +6 -0
- package/libs/ui/catalog/src/index.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +9 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +16 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +12 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +14 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +16 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -0
- package/libs/ui/dataviz/src/index.d.ts +6 -0
- package/libs/ui/dataviz/src/index.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +14 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +11 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +10 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -0
- package/libs/ui/elements/src/index.d.ts +21 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +9 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +24 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +7 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +13 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +32 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +16 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +17 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +28 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +35 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +10 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/index.d.ts +19 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +39 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +16 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts +33 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +14 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +46 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +40 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts +25 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts +27 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts +10 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +8 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +12 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +40 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -0
- package/libs/ui/layout/src/index.d.ts +7 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +19 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +18 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +13 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +10 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +37 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +15 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +4 -0
- package/libs/ui/map/src/index.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +10 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts +19 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts +13 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts.map +1 -0
- package/libs/ui/search/src/index.d.ts +21 -0
- package/libs/ui/search/src/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +44 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +26 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +19 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts +27 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts +13 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +5 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +2 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +12 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +29 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +18 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +10 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +23 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +8 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +13 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +18 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +25 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts +31 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -0
- package/libs/ui/widgets/src/index.d.ts +9 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +16 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts +21 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +22 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -0
- package/libs/util/app-config/src/index.d.ts +4 -0
- package/libs/util/app-config/src/index.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/app-config.d.ts +27 -0
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/constants.d.ts +2 -0
- package/libs/util/app-config/src/lib/constants.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts +10 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +10 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/model.d.ts +70 -0
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts +19 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/index.d.ts +5 -0
- package/libs/util/data-fetcher/src/index.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +22 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts +3 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts +67 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +16 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts +24 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts +26 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -0
- package/libs/util/i18n/src/index.d.ts +8 -0
- package/libs/util/i18n/src/index.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +6 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts +9 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +39 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +12 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts +13 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts +17 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts +131 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts +21 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +2 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts +12 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +1 -0
- package/libs/util/shared/src/index.d.ts +7 -0
- package/libs/util/shared/src/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts +11 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/index.d.ts +3 -0
- package/libs/util/shared/src/lib/links/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +18 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts +81 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +11 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts +2 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/index.d.ts +4 -0
- package/libs/util/shared/src/lib/services/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts +9 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts +16 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts +10 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts +10 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/event.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/event.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts +3 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +8 -0
- package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts +6 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts +5 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/url.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/url.d.ts.map +1 -0
- package/package.json +85 -0
- package/src/libs/api/metadata-converter/src/index.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +26 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +122 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +75 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +222 -0
- package/src/libs/api/metadata-converter/src/lib/function-utils.ts +171 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +94 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +403 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +52 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +21 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +54 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +203 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/search.model.ts +91 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +48 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +19 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +67 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +187 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +749 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +971 -0
- package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +382 -0
- package/src/libs/api/repository/src/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +79 -0
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -0
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +24 -0
- package/src/libs/api/repository/src/lib/gn4/auth/index.ts +3 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +32 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +533 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +116 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +162 -0
- package/src/libs/api/repository/src/lib/gn4/index.ts +6 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/index.ts +13 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +137 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +319 -0
- package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +22 -0
- package/src/libs/api/repository/src/lib/metadata-language.ts +3 -0
- package/src/libs/api/repository/src/lib/repository-url.ts +14 -0
- package/src/libs/common/domain/src/lib/dataviz-configuration.model.ts +19 -0
- package/src/libs/common/domain/src/lib/organizations.service.interface.ts +19 -0
- package/src/libs/common/domain/src/lib/record/contact.model.ts +38 -0
- package/src/libs/common/domain/src/lib/record/index.ts +3 -0
- package/src/libs/common/domain/src/lib/record/metadata.model.ts +188 -0
- package/src/libs/common/domain/src/lib/record/organization.model.ts +7 -0
- package/src/libs/common/domain/src/lib/records-repository.interface.ts +22 -0
- package/src/libs/common/domain/src/lib/search/aggregation.model.ts +52 -0
- package/src/libs/common/domain/src/lib/search/filter.model.ts +6 -0
- package/src/libs/common/domain/src/lib/search/index.ts +4 -0
- package/src/libs/common/domain/src/lib/search/search.model.ts +22 -0
- package/src/libs/common/domain/src/lib/search/sort-by.model.ts +8 -0
- package/src/libs/common/domain/src/lib/user.model.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +11 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-request.ts +26 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-response.ts +79 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.ts +1594 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +6 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +144 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1755 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-requests.ts +146 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.ts +445 -0
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57313 -0
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +80 -0
- package/src/libs/common/fixtures/src/lib/gn4/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +154 -0
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +7 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +71 -0
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +31 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +204 -0
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +8 -0
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +70 -0
- package/src/libs/common/fixtures/src/lib/search/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +35 -0
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +10 -0
- package/src/libs/common/fixtures/src/lib/utils/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/api.ts +11 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/config.api.service.ts +168 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/dataPublishing.api.service.ts +270 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/fileUpload.api.service.ts +734 -0
- package/src/libs/data-access/datafeeder/src/openapi/api.module.ts +46 -0
- package/src/libs/data-access/datafeeder/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/datafeeder/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/index.ts +5 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/analysisStatusEnum.api.model.ts +24 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/boundingBox.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/cRS.api.model.ts +25 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +41 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishRequest.api.model.ts +39 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishingStatus.api.model.ts +50 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +37 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/models.ts +13 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/property.api.model.ts +17 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishRequest.api.model.ts +16 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStatusEnum.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStepEnum.api.model.ts +42 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/uploadJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/datafeeder/src/spec.yaml +537 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/api.ts +3 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/dataviz.api.service.ts +488 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api.module.ts +44 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/createDatavizDto.api.model.ts +22 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/dataviz.api.model.ts +26 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/models.ts +2 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/fixtures/index.ts +2 -0
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +65 -0
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +5 -0
- package/src/libs/data-access/gn4/src/index.ts +2 -0
- package/src/libs/data-access/gn4/src/openapi/api/api.ts +89 -0
- package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +249 -0
- package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +603 -0
- package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +202 -0
- package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +362 -0
- package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +489 -0
- package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +794 -0
- package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +423 -0
- package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +611 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +8296 -0
- package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +272 -0
- package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +1963 -0
- package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +265 -0
- package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +198 -0
- package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +360 -0
- package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +1381 -0
- package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +256 -0
- package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +964 -0
- package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +242 -0
- package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +916 -0
- package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +333 -0
- package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +928 -0
- package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +1213 -0
- package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +741 -0
- package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +530 -0
- package/src/libs/data-access/gn4/src/openapi/api.module.ts +42 -0
- package/src/libs/data-access/gn4/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn4/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +56 -0
- package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +41 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +30 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +44 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/models.ts +109 -0
- package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.ts +58 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +57 -0
- package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +54 -0
- package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +31 -0
- package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +37 -0
- package/src/libs/data-access/gn4/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/spec.yaml +11305 -0
- package/src/libs/feature/auth/src/index.ts +1 -0
- package/src/libs/feature/auth/src/lib/feature-auth.module.ts +12 -0
- package/src/libs/feature/catalog/src/index.ts +7 -0
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +85 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +26 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +105 -0
- package/src/libs/feature/catalog/src/lib/records/records.service.ts +18 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +5 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +23 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.html +1 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +17 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +92 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.model.ts +24 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +28 -0
- package/src/libs/feature/catalog/src/lib/users/users.service.ts +12 -0
- package/src/libs/feature/dataviz/src/index.ts +6 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +62 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +232 -0
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +43 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.html +6 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +33 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +40 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.service.ts +30 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +17 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +156 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +208 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +22 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +90 -0
- package/src/libs/feature/editor/src/index.ts +6 -0
- package/src/libs/feature/editor/src/lib/components/configs/datepicker.config.ts +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +5 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +93 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +31 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +75 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +208 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +21 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +59 -0
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +35 -0
- package/src/libs/feature/editor/src/lib/models/index.ts +2 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +10 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +7 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.html +8 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.ts +23 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +107 -0
- package/src/libs/feature/editor/src/lib/services/wizard.service.ts +105 -0
- package/src/libs/feature/map/src/index.ts +19 -0
- package/src/libs/feature/map/src/lib/+state/map.actions.ts +32 -0
- package/src/libs/feature/map/src/lib/+state/map.effects.ts +7 -0
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +30 -0
- package/src/libs/feature/map/src/lib/+state/map.models.ts +9 -0
- package/src/libs/feature/map/src/lib/+state/map.reducer.ts +83 -0
- package/src/libs/feature/map/src/lib/+state/map.selectors.ts +10 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.css +4 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.html +6 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +44 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +23 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +75 -0
- package/src/libs/feature/map/src/lib/constant/index.ts +1 -0
- package/src/libs/feature/map/src/lib/constant/map-options.ts +17 -0
- package/src/libs/feature/map/src/lib/constant/style.constant.ts +18 -0
- package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +42 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +61 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +49 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.scss +0 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +17 -0
- package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +10 -0
- package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +13 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +26 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +57 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +51 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +80 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +232 -0
- package/src/libs/feature/map/src/lib/style/index.ts +2 -0
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +45 -0
- package/src/libs/feature/map/src/lib/style/map-style.service.ts +108 -0
- package/src/libs/feature/map/src/lib/utils/index.ts +3 -0
- package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +40 -0
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +242 -0
- package/src/libs/feature/map/src/lib/utils/projections.ts +1 -0
- package/src/libs/feature/record/src/index.ts +9 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +21 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +59 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +58 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.css +10 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +30 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +21 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +51 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.css +0 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +9 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +54 -0
- package/src/libs/feature/record/src/lib/feature-record.module.ts +62 -0
- package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +3 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +54 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +201 -0
- package/src/libs/feature/record/src/lib/state/index.ts +2 -0
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +35 -0
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +43 -0
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +106 -0
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +61 -0
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +36 -0
- package/src/libs/feature/router/src/index.ts +1 -0
- package/src/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.ts +34 -0
- package/src/libs/feature/router/src/lib/default/constants.ts +11 -0
- package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +23 -0
- package/src/libs/feature/router/src/lib/default/index.ts +7 -0
- package/src/libs/feature/router/src/lib/default/router.config.ts +11 -0
- package/src/libs/feature/router/src/lib/default/router.module.ts +50 -0
- package/src/libs/feature/router/src/lib/default/router.service.ts +39 -0
- package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +65 -0
- package/src/libs/feature/router/src/lib/default/state/router.actions.ts +15 -0
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +163 -0
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +80 -0
- package/src/libs/feature/router/src/lib/default/state/router.selectors.ts +17 -0
- package/src/libs/feature/search/src/index.ts +20 -0
- package/src/libs/feature/search/src/lib/constants.ts +40 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.css +0 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.html +7 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +83 -0
- package/src/libs/feature/search/src/lib/facets/facets.module.ts +12 -0
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +256 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.css +0 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +10 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +128 -0
- package/src/libs/feature/search/src/lib/feature-search.module.ts +83 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.css +0 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +11 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +60 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.css +0 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +10 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +79 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.css +0 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +45 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +4 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +10 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.html +7 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +29 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +0 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +58 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +86 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.html +7 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +55 -0
- package/src/libs/feature/search/src/lib/state/actions.ts +273 -0
- package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +17 -0
- package/src/libs/feature/search/src/lib/state/effects.ts +218 -0
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +29 -0
- package/src/libs/feature/search/src/lib/state/reducer.ts +340 -0
- package/src/libs/feature/search/src/lib/state/search.facade.ts +219 -0
- package/src/libs/feature/search/src/lib/state/selectors.ts +94 -0
- package/src/libs/feature/search/src/lib/utils/operators/search.operator.ts +40 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +120 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +315 -0
- package/src/libs/feature/search/src/lib/utils/service/search.service.ts +43 -0
- package/src/libs/ui/catalog/src/index.ts +5 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +21 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +12 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +9 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +51 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.css +13 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +40 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +25 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.html +17 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.ts +40 -0
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +33 -0
- package/src/libs/ui/dataviz/src/index.ts +5 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.css +0 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.html +3 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +222 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +43 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.css +3 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +20 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +27 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.css +32 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.html +40 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.ts +80 -0
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +40 -0
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +11 -0
- package/src/libs/ui/elements/src/index.ts +20 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +23 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +10 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +15 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.css +29 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +5 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.css +0 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +34 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.css +0 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +33 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +100 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +25 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +8 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +11 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +32 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +40 -0
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +38 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +105 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +47 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.css +3 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +27 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +84 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +4 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.html +55 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +50 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +33 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +68 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +30 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.css +30 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.html +35 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.ts +20 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +18 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +113 -0
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +85 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +11 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +16 -0
- package/src/libs/ui/inputs/src/index.ts +18 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +31 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +51 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +159 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.css +5 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.html +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +75 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +19 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +25 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.css +36 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.html +23 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +32 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +19 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +14 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +27 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +123 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +198 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +4 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +73 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +181 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.ts +5 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.html +27 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +68 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.model.ts +44 -0
- package/src/libs/ui/inputs/src/lib/form-field/index.ts +9 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +6 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +12 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +41 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +34 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +42 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +41 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +94 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +58 -0
- package/src/libs/ui/layout/src/index.ts +6 -0
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +59 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +20 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +16 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +50 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.css +0 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +31 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.css +12 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +22 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +21 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.css +0 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.html +16 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +109 -0
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +28 -0
- package/src/libs/ui/map/src/index.ts +3 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.css +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +21 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.html +15 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.ts +57 -0
- package/src/libs/ui/map/src/lib/ui-map.module.ts +19 -0
- package/src/libs/ui/search/src/index.ts +20 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +88 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +138 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +52 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +40 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +8 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +45 -0
- package/src/libs/ui/search/src/lib/facets/facets.model.ts +31 -0
- package/src/libs/ui/search/src/lib/facets/facets.module.ts +14 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +52 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/index.ts +1 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.css +0 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.html +22 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +25 -0
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +76 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.html +25 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.css +4 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +83 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +34 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +42 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.scss +3 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.css +3 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +77 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.html +40 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.html +23 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.css +7 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.html +150 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +93 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +10 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +10 -0
- package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +48 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.html +32 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +30 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.html +1 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +65 -0
- package/src/libs/ui/search/src/lib/ui-search.module.ts +79 -0
- package/src/libs/ui/widgets/src/index.ts +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.html +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.ts +11 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.html +83 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.css +20 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.html +5 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +16 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.css +33 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +23 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +51 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +12 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +44 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +22 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.html +13 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +55 -0
- package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +48 -0
- package/src/libs/util/app-config/src/index.ts +3 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +327 -0
- package/src/libs/util/app-config/src/lib/constants.ts +438 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +169 -0
- package/src/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.ts +20 -0
- package/src/libs/util/app-config/src/lib/model.ts +76 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +142 -0
- package/src/libs/util/data-fetcher/src/fixtures/sample.ts +80 -0
- package/src/libs/util/data-fetcher/src/index.ts +10 -0
- package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +71 -0
- package/src/libs/util/data-fetcher/src/lib/headers.ts +22 -0
- package/src/libs/util/data-fetcher/src/lib/model.ts +129 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +65 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base.ts +76 -0
- package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +52 -0
- package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +33 -0
- package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +29 -0
- package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +54 -0
- package/src/libs/util/data-fetcher/src/lib/readers/json.ts +28 -0
- package/src/libs/util/data-fetcher/src/lib/sql-utils.ts +115 -0
- package/src/libs/util/data-fetcher/src/lib/utils.ts +253 -0
- package/src/libs/util/i18n/src/index.ts +7 -0
- package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +18 -0
- package/src/libs/util/i18n/src/lib/file.translate.loader.ts +14 -0
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +72 -0
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +27 -0
- package/src/libs/util/i18n/src/lib/lang.service.ts +23 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.loader.ts +26 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.module.ts +235 -0
- package/src/libs/util/i18n/src/lib/testing/translations.model.ts +28 -0
- package/src/libs/util/i18n/src/lib/translate.loader.utils.ts +11 -0
- package/src/libs/util/i18n/src/lib/util-i18n.module.ts +26 -0
- package/src/libs/util/shared/src/index.ts +6 -0
- package/src/libs/util/shared/src/lib/image-fallback.directive.ts +19 -0
- package/src/libs/util/shared/src/lib/links/index.ts +2 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +55 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +200 -0
- package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +36 -0
- package/src/libs/util/shared/src/lib/pipes/index.ts +1 -0
- package/src/libs/util/shared/src/lib/services/index.ts +3 -0
- package/src/libs/util/shared/src/lib/services/log.service.ts +16 -0
- package/src/libs/util/shared/src/lib/services/proxy.service.ts +34 -0
- package/src/libs/util/shared/src/lib/services/theme.service.ts +143 -0
- package/src/libs/util/shared/src/lib/util-shared.module.ts +11 -0
- package/src/libs/util/shared/src/lib/utils/event.ts +12 -0
- package/src/libs/util/shared/src/lib/utils/geojson.ts +26 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +7 -0
- package/src/libs/util/shared/src/lib/utils/parse.ts +34 -0
- package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +3 -0
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +17 -0
- package/src/libs/util/shared/src/lib/utils/strip-html.ts +4 -0
- package/src/libs/util/shared/src/lib/utils/url.ts +20 -0
- package/style.css +4 -0
- package/tailwind.base.config.js +72 -0
- package/tailwind.base.css +25 -0
- package/translations/de.json +270 -0
- package/translations/en.json +289 -0
- package/translations/es.json +289 -0
- package/translations/fr.json +289 -0
- package/translations/it.json +289 -0
- package/translations/nl.json +289 -0
- package/translations/pt.json +289 -0
|
@@ -0,0 +1,1963 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GeoNetwork 4.0.3 OpenAPI Documentation
|
|
3
|
+
* This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 4.0.3
|
|
6
|
+
* Contact: geonetwork-users@lists.sourceforge.net
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
13
|
+
|
|
14
|
+
import { Inject, Injectable, Optional } from '@angular/core'
|
|
15
|
+
import {
|
|
16
|
+
HttpClient,
|
|
17
|
+
HttpHeaders,
|
|
18
|
+
HttpParams,
|
|
19
|
+
HttpResponse,
|
|
20
|
+
HttpEvent,
|
|
21
|
+
HttpParameterCodec,
|
|
22
|
+
} from '@angular/common/http'
|
|
23
|
+
import { CustomHttpParameterCodec } from '../encoder'
|
|
24
|
+
import { Observable } from 'rxjs'
|
|
25
|
+
|
|
26
|
+
import { CrsApiModel } from '../model/models'
|
|
27
|
+
import { ElementApiModel } from '../model/models'
|
|
28
|
+
import { InlineObject2ApiModel } from '../model/models'
|
|
29
|
+
import { InlineObject3ApiModel } from '../model/models'
|
|
30
|
+
import { KeywordBeanApiModel } from '../model/models'
|
|
31
|
+
import { SimpleMetadataProcessingReportApiModel } from '../model/models'
|
|
32
|
+
|
|
33
|
+
import { BASE_PATH, COLLECTION_FORMATS } from '../variables'
|
|
34
|
+
import { Configuration } from '../configuration'
|
|
35
|
+
|
|
36
|
+
@Injectable({
|
|
37
|
+
providedIn: 'root',
|
|
38
|
+
})
|
|
39
|
+
export class RegistriesApiService {
|
|
40
|
+
protected basePath = 'https://apps.titellus.net/geonetwork/srv/api'
|
|
41
|
+
public defaultHeaders = new HttpHeaders()
|
|
42
|
+
public configuration = new Configuration()
|
|
43
|
+
public encoder: HttpParameterCodec
|
|
44
|
+
|
|
45
|
+
constructor(
|
|
46
|
+
protected httpClient: HttpClient,
|
|
47
|
+
@Optional() @Inject(BASE_PATH) basePath: string,
|
|
48
|
+
@Optional() configuration: Configuration
|
|
49
|
+
) {
|
|
50
|
+
if (configuration) {
|
|
51
|
+
this.configuration = configuration
|
|
52
|
+
}
|
|
53
|
+
if (typeof this.configuration.basePath !== 'string') {
|
|
54
|
+
if (typeof basePath !== 'string') {
|
|
55
|
+
basePath = this.basePath
|
|
56
|
+
}
|
|
57
|
+
this.configuration.basePath = basePath
|
|
58
|
+
}
|
|
59
|
+
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec()
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @param consumes string[] mime-types
|
|
64
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
65
|
+
*/
|
|
66
|
+
private canConsumeForm(consumes: string[]): boolean {
|
|
67
|
+
const form = 'multipart/form-data'
|
|
68
|
+
for (const consume of consumes) {
|
|
69
|
+
if (form === consume) {
|
|
70
|
+
return true
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return false
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
private addToHttpParams(
|
|
77
|
+
httpParams: HttpParams,
|
|
78
|
+
value: any,
|
|
79
|
+
key?: string
|
|
80
|
+
): HttpParams {
|
|
81
|
+
if (typeof value === 'object' && value instanceof Date === false) {
|
|
82
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value)
|
|
83
|
+
} else {
|
|
84
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value, key)
|
|
85
|
+
}
|
|
86
|
+
return httpParams
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
private addToHttpParamsRecursive(
|
|
90
|
+
httpParams: HttpParams,
|
|
91
|
+
value?: any,
|
|
92
|
+
key?: string
|
|
93
|
+
): HttpParams {
|
|
94
|
+
if (value == null) {
|
|
95
|
+
return httpParams
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (typeof value === 'object') {
|
|
99
|
+
if (Array.isArray(value)) {
|
|
100
|
+
;(value as any[]).forEach(
|
|
101
|
+
(elem) =>
|
|
102
|
+
(httpParams = this.addToHttpParamsRecursive(httpParams, elem, key))
|
|
103
|
+
)
|
|
104
|
+
} else if (value instanceof Date) {
|
|
105
|
+
if (key != null) {
|
|
106
|
+
httpParams = httpParams.append(
|
|
107
|
+
key,
|
|
108
|
+
(value as Date).toISOString().substr(0, 10)
|
|
109
|
+
)
|
|
110
|
+
} else {
|
|
111
|
+
throw Error('key may not be null if value is Date')
|
|
112
|
+
}
|
|
113
|
+
} else {
|
|
114
|
+
Object.keys(value).forEach(
|
|
115
|
+
(k) =>
|
|
116
|
+
(httpParams = this.addToHttpParamsRecursive(
|
|
117
|
+
httpParams,
|
|
118
|
+
value[k],
|
|
119
|
+
key != null ? `${key}.${k}` : k
|
|
120
|
+
))
|
|
121
|
+
)
|
|
122
|
+
}
|
|
123
|
+
} else if (key != null) {
|
|
124
|
+
httpParams = httpParams.append(key, value)
|
|
125
|
+
} else {
|
|
126
|
+
throw Error('key may not be null if value is not object or array')
|
|
127
|
+
}
|
|
128
|
+
return httpParams
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Delete a thesaurus by name
|
|
133
|
+
* Delete a thesaurus.
|
|
134
|
+
* @param thesaurus Thesaurus to delete.
|
|
135
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
136
|
+
* @param reportProgress flag to report request and response progress.
|
|
137
|
+
*/
|
|
138
|
+
public deleteThesaurus(
|
|
139
|
+
thesaurus: string,
|
|
140
|
+
observe?: 'body',
|
|
141
|
+
reportProgress?: boolean,
|
|
142
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
143
|
+
): Observable<any>
|
|
144
|
+
public deleteThesaurus(
|
|
145
|
+
thesaurus: string,
|
|
146
|
+
observe?: 'response',
|
|
147
|
+
reportProgress?: boolean,
|
|
148
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
149
|
+
): Observable<HttpResponse<any>>
|
|
150
|
+
public deleteThesaurus(
|
|
151
|
+
thesaurus: string,
|
|
152
|
+
observe?: 'events',
|
|
153
|
+
reportProgress?: boolean,
|
|
154
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
155
|
+
): Observable<HttpEvent<any>>
|
|
156
|
+
public deleteThesaurus(
|
|
157
|
+
thesaurus: string,
|
|
158
|
+
observe: any = 'body',
|
|
159
|
+
reportProgress: boolean = false,
|
|
160
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
161
|
+
): Observable<any> {
|
|
162
|
+
if (thesaurus === null || thesaurus === undefined) {
|
|
163
|
+
throw new Error(
|
|
164
|
+
'Required parameter thesaurus was null or undefined when calling deleteThesaurus.'
|
|
165
|
+
)
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
let headers = this.defaultHeaders
|
|
169
|
+
|
|
170
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
171
|
+
options && options.httpHeaderAccept
|
|
172
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
173
|
+
// to determine the Accept header
|
|
174
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
175
|
+
httpHeaderAcceptSelected =
|
|
176
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
177
|
+
}
|
|
178
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
179
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
183
|
+
if (
|
|
184
|
+
httpHeaderAcceptSelected &&
|
|
185
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
186
|
+
) {
|
|
187
|
+
responseType_ = 'text'
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
return this.httpClient.delete<any>(
|
|
191
|
+
`${
|
|
192
|
+
this.configuration.basePath
|
|
193
|
+
}/registries/vocabularies/${encodeURIComponent(String(thesaurus))}`,
|
|
194
|
+
{
|
|
195
|
+
responseType: <any>responseType_,
|
|
196
|
+
withCredentials: this.configuration.withCredentials,
|
|
197
|
+
headers: headers,
|
|
198
|
+
observe: observe,
|
|
199
|
+
reportProgress: reportProgress,
|
|
200
|
+
}
|
|
201
|
+
)
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Get CRS
|
|
206
|
+
* @param id CRS identifier
|
|
207
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
208
|
+
* @param reportProgress flag to report request and response progress.
|
|
209
|
+
*/
|
|
210
|
+
public getCrs(
|
|
211
|
+
id: string,
|
|
212
|
+
observe?: 'body',
|
|
213
|
+
reportProgress?: boolean,
|
|
214
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
215
|
+
): Observable<CrsApiModel>
|
|
216
|
+
public getCrs(
|
|
217
|
+
id: string,
|
|
218
|
+
observe?: 'response',
|
|
219
|
+
reportProgress?: boolean,
|
|
220
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
221
|
+
): Observable<HttpResponse<CrsApiModel>>
|
|
222
|
+
public getCrs(
|
|
223
|
+
id: string,
|
|
224
|
+
observe?: 'events',
|
|
225
|
+
reportProgress?: boolean,
|
|
226
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
227
|
+
): Observable<HttpEvent<CrsApiModel>>
|
|
228
|
+
public getCrs(
|
|
229
|
+
id: string,
|
|
230
|
+
observe: any = 'body',
|
|
231
|
+
reportProgress: boolean = false,
|
|
232
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
233
|
+
): Observable<any> {
|
|
234
|
+
if (id === null || id === undefined) {
|
|
235
|
+
throw new Error(
|
|
236
|
+
'Required parameter id was null or undefined when calling getCrs.'
|
|
237
|
+
)
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
let headers = this.defaultHeaders
|
|
241
|
+
|
|
242
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
243
|
+
options && options.httpHeaderAccept
|
|
244
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
245
|
+
// to determine the Accept header
|
|
246
|
+
const httpHeaderAccepts: string[] = [
|
|
247
|
+
'application/json',
|
|
248
|
+
'application/xml',
|
|
249
|
+
]
|
|
250
|
+
httpHeaderAcceptSelected =
|
|
251
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
252
|
+
}
|
|
253
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
254
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
258
|
+
if (
|
|
259
|
+
httpHeaderAcceptSelected &&
|
|
260
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
261
|
+
) {
|
|
262
|
+
responseType_ = 'text'
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
return this.httpClient.get<CrsApiModel>(
|
|
266
|
+
`${this.configuration.basePath}/registries/crs/${encodeURIComponent(
|
|
267
|
+
String(id)
|
|
268
|
+
)}`,
|
|
269
|
+
{
|
|
270
|
+
responseType: <any>responseType_,
|
|
271
|
+
withCredentials: this.configuration.withCredentials,
|
|
272
|
+
headers: headers,
|
|
273
|
+
observe: observe,
|
|
274
|
+
reportProgress: reportProgress,
|
|
275
|
+
}
|
|
276
|
+
)
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Get list of CRS type
|
|
281
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
282
|
+
* @param reportProgress flag to report request and response progress.
|
|
283
|
+
*/
|
|
284
|
+
public getCrsTypes(
|
|
285
|
+
observe?: 'body',
|
|
286
|
+
reportProgress?: boolean,
|
|
287
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
288
|
+
): Observable<Array<string>>
|
|
289
|
+
public getCrsTypes(
|
|
290
|
+
observe?: 'response',
|
|
291
|
+
reportProgress?: boolean,
|
|
292
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
293
|
+
): Observable<HttpResponse<Array<string>>>
|
|
294
|
+
public getCrsTypes(
|
|
295
|
+
observe?: 'events',
|
|
296
|
+
reportProgress?: boolean,
|
|
297
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
298
|
+
): Observable<HttpEvent<Array<string>>>
|
|
299
|
+
public getCrsTypes(
|
|
300
|
+
observe: any = 'body',
|
|
301
|
+
reportProgress: boolean = false,
|
|
302
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
303
|
+
): Observable<any> {
|
|
304
|
+
let headers = this.defaultHeaders
|
|
305
|
+
|
|
306
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
307
|
+
options && options.httpHeaderAccept
|
|
308
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
309
|
+
// to determine the Accept header
|
|
310
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
311
|
+
httpHeaderAcceptSelected =
|
|
312
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
313
|
+
}
|
|
314
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
315
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
319
|
+
if (
|
|
320
|
+
httpHeaderAcceptSelected &&
|
|
321
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
322
|
+
) {
|
|
323
|
+
responseType_ = 'text'
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
return this.httpClient.get<Array<string>>(
|
|
327
|
+
`${this.configuration.basePath}/registries/crs/types`,
|
|
328
|
+
{
|
|
329
|
+
responseType: <any>responseType_,
|
|
330
|
+
withCredentials: this.configuration.withCredentials,
|
|
331
|
+
headers: headers,
|
|
332
|
+
observe: observe,
|
|
333
|
+
reportProgress: reportProgress,
|
|
334
|
+
}
|
|
335
|
+
)
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Get a directory entry
|
|
340
|
+
* Directory entry (AKA subtemplates) are XML fragments that can be inserted in metadata records using XLinks. XLinks can be remote or local.
|
|
341
|
+
* @param uuid Directory entry UUID.
|
|
342
|
+
* @param process Process
|
|
343
|
+
* @param transformation Transformation
|
|
344
|
+
* @param lang lang
|
|
345
|
+
* @param schema schema
|
|
346
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
347
|
+
* @param reportProgress flag to report request and response progress.
|
|
348
|
+
*/
|
|
349
|
+
public getEntry(
|
|
350
|
+
uuid: string,
|
|
351
|
+
process?: Array<string>,
|
|
352
|
+
transformation?: string,
|
|
353
|
+
lang?: Array<string>,
|
|
354
|
+
schema?: string,
|
|
355
|
+
observe?: 'body',
|
|
356
|
+
reportProgress?: boolean,
|
|
357
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
358
|
+
): Observable<ElementApiModel>
|
|
359
|
+
public getEntry(
|
|
360
|
+
uuid: string,
|
|
361
|
+
process?: Array<string>,
|
|
362
|
+
transformation?: string,
|
|
363
|
+
lang?: Array<string>,
|
|
364
|
+
schema?: string,
|
|
365
|
+
observe?: 'response',
|
|
366
|
+
reportProgress?: boolean,
|
|
367
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
368
|
+
): Observable<HttpResponse<ElementApiModel>>
|
|
369
|
+
public getEntry(
|
|
370
|
+
uuid: string,
|
|
371
|
+
process?: Array<string>,
|
|
372
|
+
transformation?: string,
|
|
373
|
+
lang?: Array<string>,
|
|
374
|
+
schema?: string,
|
|
375
|
+
observe?: 'events',
|
|
376
|
+
reportProgress?: boolean,
|
|
377
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
378
|
+
): Observable<HttpEvent<ElementApiModel>>
|
|
379
|
+
public getEntry(
|
|
380
|
+
uuid: string,
|
|
381
|
+
process?: Array<string>,
|
|
382
|
+
transformation?: string,
|
|
383
|
+
lang?: Array<string>,
|
|
384
|
+
schema?: string,
|
|
385
|
+
observe: any = 'body',
|
|
386
|
+
reportProgress: boolean = false,
|
|
387
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
388
|
+
): Observable<any> {
|
|
389
|
+
if (uuid === null || uuid === undefined) {
|
|
390
|
+
throw new Error(
|
|
391
|
+
'Required parameter uuid was null or undefined when calling getEntry.'
|
|
392
|
+
)
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
396
|
+
if (process) {
|
|
397
|
+
process.forEach((element) => {
|
|
398
|
+
queryParameters = this.addToHttpParams(
|
|
399
|
+
queryParameters,
|
|
400
|
+
<any>element,
|
|
401
|
+
'process'
|
|
402
|
+
)
|
|
403
|
+
})
|
|
404
|
+
}
|
|
405
|
+
if (transformation !== undefined && transformation !== null) {
|
|
406
|
+
queryParameters = this.addToHttpParams(
|
|
407
|
+
queryParameters,
|
|
408
|
+
<any>transformation,
|
|
409
|
+
'transformation'
|
|
410
|
+
)
|
|
411
|
+
}
|
|
412
|
+
if (lang) {
|
|
413
|
+
lang.forEach((element) => {
|
|
414
|
+
queryParameters = this.addToHttpParams(
|
|
415
|
+
queryParameters,
|
|
416
|
+
<any>element,
|
|
417
|
+
'lang'
|
|
418
|
+
)
|
|
419
|
+
})
|
|
420
|
+
}
|
|
421
|
+
if (schema !== undefined && schema !== null) {
|
|
422
|
+
queryParameters = this.addToHttpParams(
|
|
423
|
+
queryParameters,
|
|
424
|
+
<any>schema,
|
|
425
|
+
'schema'
|
|
426
|
+
)
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
let headers = this.defaultHeaders
|
|
430
|
+
|
|
431
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
432
|
+
options && options.httpHeaderAccept
|
|
433
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
434
|
+
// to determine the Accept header
|
|
435
|
+
const httpHeaderAccepts: string[] = [
|
|
436
|
+
'application/json',
|
|
437
|
+
'application/xml',
|
|
438
|
+
]
|
|
439
|
+
httpHeaderAcceptSelected =
|
|
440
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
441
|
+
}
|
|
442
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
443
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
447
|
+
if (
|
|
448
|
+
httpHeaderAcceptSelected &&
|
|
449
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
450
|
+
) {
|
|
451
|
+
responseType_ = 'text'
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
return this.httpClient.get<ElementApiModel>(
|
|
455
|
+
`${this.configuration.basePath}/registries/entries/${encodeURIComponent(
|
|
456
|
+
String(uuid)
|
|
457
|
+
)}`,
|
|
458
|
+
{
|
|
459
|
+
params: queryParameters,
|
|
460
|
+
responseType: <any>responseType_,
|
|
461
|
+
withCredentials: this.configuration.withCredentials,
|
|
462
|
+
headers: headers,
|
|
463
|
+
observe: observe,
|
|
464
|
+
reportProgress: reportProgress,
|
|
465
|
+
}
|
|
466
|
+
)
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Get keyword by id
|
|
471
|
+
* Retrieve XML representation of keyword(s) from same thesaurususing different transformations. \'to-iso19139-keyword\' is the default and return an ISO19139 snippet.\'to-iso19139-keyword-as-xlink\' return an XLinked element. Custom transformation can be create on a per schema basis.
|
|
472
|
+
* @param id Keyword identifier or list of keyword identifiers comma separated.
|
|
473
|
+
* @param thesaurus Thesaurus to look info for the keyword(s).
|
|
474
|
+
* @param lang Languages.
|
|
475
|
+
* @param keywordOnly Only print the keyword, no thesaurus information.
|
|
476
|
+
* @param transformation XSL template to use (ISO19139 keyword by default, see convert.xsl).
|
|
477
|
+
* @param langMap langMap, that converts the values in the \'lang\' parameter to how they will be actually represented in the record. {\'fre\':\'fra\'} or {\'fre\':\'fr\'}. Missing/empty means to convert to iso 2 letter.
|
|
478
|
+
* @param accept
|
|
479
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
480
|
+
* @param reportProgress flag to report request and response progress.
|
|
481
|
+
*/
|
|
482
|
+
public getKeywordById(
|
|
483
|
+
id: string,
|
|
484
|
+
thesaurus: string,
|
|
485
|
+
lang?: Array<string>,
|
|
486
|
+
keywordOnly?: boolean,
|
|
487
|
+
transformation?: string,
|
|
488
|
+
langMap?: string,
|
|
489
|
+
accept?: string,
|
|
490
|
+
observe?: 'body',
|
|
491
|
+
reportProgress?: boolean,
|
|
492
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
493
|
+
): Observable<object>
|
|
494
|
+
public getKeywordById(
|
|
495
|
+
id: string,
|
|
496
|
+
thesaurus: string,
|
|
497
|
+
lang?: Array<string>,
|
|
498
|
+
keywordOnly?: boolean,
|
|
499
|
+
transformation?: string,
|
|
500
|
+
langMap?: string,
|
|
501
|
+
accept?: string,
|
|
502
|
+
observe?: 'response',
|
|
503
|
+
reportProgress?: boolean,
|
|
504
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
505
|
+
): Observable<HttpResponse<object>>
|
|
506
|
+
public getKeywordById(
|
|
507
|
+
id: string,
|
|
508
|
+
thesaurus: string,
|
|
509
|
+
lang?: Array<string>,
|
|
510
|
+
keywordOnly?: boolean,
|
|
511
|
+
transformation?: string,
|
|
512
|
+
langMap?: string,
|
|
513
|
+
accept?: string,
|
|
514
|
+
observe?: 'events',
|
|
515
|
+
reportProgress?: boolean,
|
|
516
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
517
|
+
): Observable<HttpEvent<object>>
|
|
518
|
+
public getKeywordById(
|
|
519
|
+
id: string,
|
|
520
|
+
thesaurus: string,
|
|
521
|
+
lang?: Array<string>,
|
|
522
|
+
keywordOnly?: boolean,
|
|
523
|
+
transformation?: string,
|
|
524
|
+
langMap?: string,
|
|
525
|
+
accept?: string,
|
|
526
|
+
observe: any = 'body',
|
|
527
|
+
reportProgress: boolean = false,
|
|
528
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
529
|
+
): Observable<any> {
|
|
530
|
+
if (id === null || id === undefined) {
|
|
531
|
+
throw new Error(
|
|
532
|
+
'Required parameter id was null or undefined when calling getKeywordById.'
|
|
533
|
+
)
|
|
534
|
+
}
|
|
535
|
+
if (thesaurus === null || thesaurus === undefined) {
|
|
536
|
+
throw new Error(
|
|
537
|
+
'Required parameter thesaurus was null or undefined when calling getKeywordById.'
|
|
538
|
+
)
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
542
|
+
if (id !== undefined && id !== null) {
|
|
543
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>id, 'id')
|
|
544
|
+
}
|
|
545
|
+
if (thesaurus !== undefined && thesaurus !== null) {
|
|
546
|
+
queryParameters = this.addToHttpParams(
|
|
547
|
+
queryParameters,
|
|
548
|
+
<any>thesaurus,
|
|
549
|
+
'thesaurus'
|
|
550
|
+
)
|
|
551
|
+
}
|
|
552
|
+
if (lang) {
|
|
553
|
+
lang.forEach((element) => {
|
|
554
|
+
queryParameters = this.addToHttpParams(
|
|
555
|
+
queryParameters,
|
|
556
|
+
<any>element,
|
|
557
|
+
'lang'
|
|
558
|
+
)
|
|
559
|
+
})
|
|
560
|
+
}
|
|
561
|
+
if (keywordOnly !== undefined && keywordOnly !== null) {
|
|
562
|
+
queryParameters = this.addToHttpParams(
|
|
563
|
+
queryParameters,
|
|
564
|
+
<any>keywordOnly,
|
|
565
|
+
'keywordOnly'
|
|
566
|
+
)
|
|
567
|
+
}
|
|
568
|
+
if (transformation !== undefined && transformation !== null) {
|
|
569
|
+
queryParameters = this.addToHttpParams(
|
|
570
|
+
queryParameters,
|
|
571
|
+
<any>transformation,
|
|
572
|
+
'transformation'
|
|
573
|
+
)
|
|
574
|
+
}
|
|
575
|
+
if (langMap !== undefined && langMap !== null) {
|
|
576
|
+
queryParameters = this.addToHttpParams(
|
|
577
|
+
queryParameters,
|
|
578
|
+
<any>langMap,
|
|
579
|
+
'langMap'
|
|
580
|
+
)
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
let headers = this.defaultHeaders
|
|
584
|
+
if (accept !== undefined && accept !== null) {
|
|
585
|
+
headers = headers.set('Accept', String(accept))
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
589
|
+
options && options.httpHeaderAccept
|
|
590
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
591
|
+
// to determine the Accept header
|
|
592
|
+
const httpHeaderAccepts: string[] = [
|
|
593
|
+
'application/json',
|
|
594
|
+
'application/xml',
|
|
595
|
+
]
|
|
596
|
+
httpHeaderAcceptSelected =
|
|
597
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
598
|
+
}
|
|
599
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
600
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
604
|
+
if (
|
|
605
|
+
httpHeaderAcceptSelected &&
|
|
606
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
607
|
+
) {
|
|
608
|
+
responseType_ = 'text'
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
return this.httpClient.get<object>(
|
|
612
|
+
`${this.configuration.basePath}/registries/vocabularies/keyword`,
|
|
613
|
+
{
|
|
614
|
+
params: queryParameters,
|
|
615
|
+
responseType: <any>responseType_,
|
|
616
|
+
withCredentials: this.configuration.withCredentials,
|
|
617
|
+
headers: headers,
|
|
618
|
+
observe: observe,
|
|
619
|
+
reportProgress: reportProgress,
|
|
620
|
+
}
|
|
621
|
+
)
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* Download a thesaurus by name
|
|
626
|
+
* Download the thesaurus in SKOS format.
|
|
627
|
+
* @param thesaurus Thesaurus to download.
|
|
628
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
629
|
+
* @param reportProgress flag to report request and response progress.
|
|
630
|
+
*/
|
|
631
|
+
public getThesaurus(
|
|
632
|
+
thesaurus: string,
|
|
633
|
+
observe?: 'body',
|
|
634
|
+
reportProgress?: boolean,
|
|
635
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
636
|
+
): Observable<any>
|
|
637
|
+
public getThesaurus(
|
|
638
|
+
thesaurus: string,
|
|
639
|
+
observe?: 'response',
|
|
640
|
+
reportProgress?: boolean,
|
|
641
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
642
|
+
): Observable<HttpResponse<any>>
|
|
643
|
+
public getThesaurus(
|
|
644
|
+
thesaurus: string,
|
|
645
|
+
observe?: 'events',
|
|
646
|
+
reportProgress?: boolean,
|
|
647
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
648
|
+
): Observable<HttpEvent<any>>
|
|
649
|
+
public getThesaurus(
|
|
650
|
+
thesaurus: string,
|
|
651
|
+
observe: any = 'body',
|
|
652
|
+
reportProgress: boolean = false,
|
|
653
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
654
|
+
): Observable<any> {
|
|
655
|
+
if (thesaurus === null || thesaurus === undefined) {
|
|
656
|
+
throw new Error(
|
|
657
|
+
'Required parameter thesaurus was null or undefined when calling getThesaurus.'
|
|
658
|
+
)
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
let headers = this.defaultHeaders
|
|
662
|
+
|
|
663
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
664
|
+
options && options.httpHeaderAccept
|
|
665
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
666
|
+
// to determine the Accept header
|
|
667
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
668
|
+
httpHeaderAcceptSelected =
|
|
669
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
670
|
+
}
|
|
671
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
672
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
676
|
+
if (
|
|
677
|
+
httpHeaderAcceptSelected &&
|
|
678
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
679
|
+
) {
|
|
680
|
+
responseType_ = 'text'
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
return this.httpClient.get<any>(
|
|
684
|
+
`${
|
|
685
|
+
this.configuration.basePath
|
|
686
|
+
}/registries/vocabularies/${encodeURIComponent(String(thesaurus))}`,
|
|
687
|
+
{
|
|
688
|
+
responseType: <any>responseType_,
|
|
689
|
+
withCredentials: this.configuration.withCredentials,
|
|
690
|
+
headers: headers,
|
|
691
|
+
observe: observe,
|
|
692
|
+
reportProgress: reportProgress,
|
|
693
|
+
}
|
|
694
|
+
)
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* Uploads a CSV file and convert it to SKOS format
|
|
699
|
+
* CSV file MUST contains columns at least for concept id and label. For multilingual thesaurus, consider using columns like label, label_fre, label_ita with languages parameter set to [en, fr, it]. Default language value is used if translations are empty. The thesaurus filename will be the filename of the CSV file (with .rdf extension). It is recommended to set the thesaurus title and namespace URL even if default values will be used based on the filename. Thesaurus dates are set to the date of import.
|
|
700
|
+
* @param type Local or external (default).
|
|
701
|
+
* @param dir Type of thesaurus, usually one of the ISO thesaurus type codelist value. Default is theme.
|
|
702
|
+
* @param encoding Encoding. Default is UTF-8.
|
|
703
|
+
* @param thesaurusNs Thesaurus namespace. Default is filename.
|
|
704
|
+
* @param languages Thesaurus languages
|
|
705
|
+
* @param thesaurusTitle Thesaurus title. Default is filename.
|
|
706
|
+
* @param conceptIdColumn Column name for concept id. Default is id.
|
|
707
|
+
* @param conceptLabelColumn Column name for concept label. Default is label.
|
|
708
|
+
* @param conceptDescriptionColumn Column name for concept description. Default is description.
|
|
709
|
+
* @param conceptBroaderIdColumn Column name for broader concept id. Default is broader.
|
|
710
|
+
* @param conceptNarrowerIdColumn Column name for narrower concept id. Default is narrower.
|
|
711
|
+
* @param conceptRelatedIdColumn Column name for related concept id. Default is related.
|
|
712
|
+
* @param conceptLinkSeparator Separator used when multiple broader/narrower/related ids are in the same column. Default is \'|\'.
|
|
713
|
+
* @param importAsThesaurus Import CSV file as thesaurus if true (detault) or return it in SKOS format.
|
|
714
|
+
* @param inlineObject3ApiModel
|
|
715
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
716
|
+
* @param reportProgress flag to report request and response progress.
|
|
717
|
+
*/
|
|
718
|
+
public importCsvAsThesaurus(
|
|
719
|
+
type?: string,
|
|
720
|
+
dir?: string,
|
|
721
|
+
encoding?: string,
|
|
722
|
+
thesaurusNs?: string,
|
|
723
|
+
languages?: Array<string>,
|
|
724
|
+
thesaurusTitle?: string,
|
|
725
|
+
conceptIdColumn?: string,
|
|
726
|
+
conceptLabelColumn?: string,
|
|
727
|
+
conceptDescriptionColumn?: string,
|
|
728
|
+
conceptBroaderIdColumn?: string,
|
|
729
|
+
conceptNarrowerIdColumn?: string,
|
|
730
|
+
conceptRelatedIdColumn?: string,
|
|
731
|
+
conceptLinkSeparator?: string,
|
|
732
|
+
importAsThesaurus?: boolean,
|
|
733
|
+
inlineObject3ApiModel?: InlineObject3ApiModel,
|
|
734
|
+
observe?: 'body',
|
|
735
|
+
reportProgress?: boolean,
|
|
736
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
737
|
+
): Observable<any>
|
|
738
|
+
public importCsvAsThesaurus(
|
|
739
|
+
type?: string,
|
|
740
|
+
dir?: string,
|
|
741
|
+
encoding?: string,
|
|
742
|
+
thesaurusNs?: string,
|
|
743
|
+
languages?: Array<string>,
|
|
744
|
+
thesaurusTitle?: string,
|
|
745
|
+
conceptIdColumn?: string,
|
|
746
|
+
conceptLabelColumn?: string,
|
|
747
|
+
conceptDescriptionColumn?: string,
|
|
748
|
+
conceptBroaderIdColumn?: string,
|
|
749
|
+
conceptNarrowerIdColumn?: string,
|
|
750
|
+
conceptRelatedIdColumn?: string,
|
|
751
|
+
conceptLinkSeparator?: string,
|
|
752
|
+
importAsThesaurus?: boolean,
|
|
753
|
+
inlineObject3ApiModel?: InlineObject3ApiModel,
|
|
754
|
+
observe?: 'response',
|
|
755
|
+
reportProgress?: boolean,
|
|
756
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
757
|
+
): Observable<HttpResponse<any>>
|
|
758
|
+
public importCsvAsThesaurus(
|
|
759
|
+
type?: string,
|
|
760
|
+
dir?: string,
|
|
761
|
+
encoding?: string,
|
|
762
|
+
thesaurusNs?: string,
|
|
763
|
+
languages?: Array<string>,
|
|
764
|
+
thesaurusTitle?: string,
|
|
765
|
+
conceptIdColumn?: string,
|
|
766
|
+
conceptLabelColumn?: string,
|
|
767
|
+
conceptDescriptionColumn?: string,
|
|
768
|
+
conceptBroaderIdColumn?: string,
|
|
769
|
+
conceptNarrowerIdColumn?: string,
|
|
770
|
+
conceptRelatedIdColumn?: string,
|
|
771
|
+
conceptLinkSeparator?: string,
|
|
772
|
+
importAsThesaurus?: boolean,
|
|
773
|
+
inlineObject3ApiModel?: InlineObject3ApiModel,
|
|
774
|
+
observe?: 'events',
|
|
775
|
+
reportProgress?: boolean,
|
|
776
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
777
|
+
): Observable<HttpEvent<any>>
|
|
778
|
+
public importCsvAsThesaurus(
|
|
779
|
+
type?: string,
|
|
780
|
+
dir?: string,
|
|
781
|
+
encoding?: string,
|
|
782
|
+
thesaurusNs?: string,
|
|
783
|
+
languages?: Array<string>,
|
|
784
|
+
thesaurusTitle?: string,
|
|
785
|
+
conceptIdColumn?: string,
|
|
786
|
+
conceptLabelColumn?: string,
|
|
787
|
+
conceptDescriptionColumn?: string,
|
|
788
|
+
conceptBroaderIdColumn?: string,
|
|
789
|
+
conceptNarrowerIdColumn?: string,
|
|
790
|
+
conceptRelatedIdColumn?: string,
|
|
791
|
+
conceptLinkSeparator?: string,
|
|
792
|
+
importAsThesaurus?: boolean,
|
|
793
|
+
inlineObject3ApiModel?: InlineObject3ApiModel,
|
|
794
|
+
observe: any = 'body',
|
|
795
|
+
reportProgress: boolean = false,
|
|
796
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
797
|
+
): Observable<any> {
|
|
798
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
799
|
+
if (type !== undefined && type !== null) {
|
|
800
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>type, 'type')
|
|
801
|
+
}
|
|
802
|
+
if (dir !== undefined && dir !== null) {
|
|
803
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>dir, 'dir')
|
|
804
|
+
}
|
|
805
|
+
if (encoding !== undefined && encoding !== null) {
|
|
806
|
+
queryParameters = this.addToHttpParams(
|
|
807
|
+
queryParameters,
|
|
808
|
+
<any>encoding,
|
|
809
|
+
'encoding'
|
|
810
|
+
)
|
|
811
|
+
}
|
|
812
|
+
if (thesaurusNs !== undefined && thesaurusNs !== null) {
|
|
813
|
+
queryParameters = this.addToHttpParams(
|
|
814
|
+
queryParameters,
|
|
815
|
+
<any>thesaurusNs,
|
|
816
|
+
'thesaurusNs'
|
|
817
|
+
)
|
|
818
|
+
}
|
|
819
|
+
if (languages) {
|
|
820
|
+
languages.forEach((element) => {
|
|
821
|
+
queryParameters = this.addToHttpParams(
|
|
822
|
+
queryParameters,
|
|
823
|
+
<any>element,
|
|
824
|
+
'languages'
|
|
825
|
+
)
|
|
826
|
+
})
|
|
827
|
+
}
|
|
828
|
+
if (thesaurusTitle !== undefined && thesaurusTitle !== null) {
|
|
829
|
+
queryParameters = this.addToHttpParams(
|
|
830
|
+
queryParameters,
|
|
831
|
+
<any>thesaurusTitle,
|
|
832
|
+
'thesaurusTitle'
|
|
833
|
+
)
|
|
834
|
+
}
|
|
835
|
+
if (conceptIdColumn !== undefined && conceptIdColumn !== null) {
|
|
836
|
+
queryParameters = this.addToHttpParams(
|
|
837
|
+
queryParameters,
|
|
838
|
+
<any>conceptIdColumn,
|
|
839
|
+
'conceptIdColumn'
|
|
840
|
+
)
|
|
841
|
+
}
|
|
842
|
+
if (conceptLabelColumn !== undefined && conceptLabelColumn !== null) {
|
|
843
|
+
queryParameters = this.addToHttpParams(
|
|
844
|
+
queryParameters,
|
|
845
|
+
<any>conceptLabelColumn,
|
|
846
|
+
'conceptLabelColumn'
|
|
847
|
+
)
|
|
848
|
+
}
|
|
849
|
+
if (
|
|
850
|
+
conceptDescriptionColumn !== undefined &&
|
|
851
|
+
conceptDescriptionColumn !== null
|
|
852
|
+
) {
|
|
853
|
+
queryParameters = this.addToHttpParams(
|
|
854
|
+
queryParameters,
|
|
855
|
+
<any>conceptDescriptionColumn,
|
|
856
|
+
'conceptDescriptionColumn'
|
|
857
|
+
)
|
|
858
|
+
}
|
|
859
|
+
if (
|
|
860
|
+
conceptBroaderIdColumn !== undefined &&
|
|
861
|
+
conceptBroaderIdColumn !== null
|
|
862
|
+
) {
|
|
863
|
+
queryParameters = this.addToHttpParams(
|
|
864
|
+
queryParameters,
|
|
865
|
+
<any>conceptBroaderIdColumn,
|
|
866
|
+
'conceptBroaderIdColumn'
|
|
867
|
+
)
|
|
868
|
+
}
|
|
869
|
+
if (
|
|
870
|
+
conceptNarrowerIdColumn !== undefined &&
|
|
871
|
+
conceptNarrowerIdColumn !== null
|
|
872
|
+
) {
|
|
873
|
+
queryParameters = this.addToHttpParams(
|
|
874
|
+
queryParameters,
|
|
875
|
+
<any>conceptNarrowerIdColumn,
|
|
876
|
+
'conceptNarrowerIdColumn'
|
|
877
|
+
)
|
|
878
|
+
}
|
|
879
|
+
if (
|
|
880
|
+
conceptRelatedIdColumn !== undefined &&
|
|
881
|
+
conceptRelatedIdColumn !== null
|
|
882
|
+
) {
|
|
883
|
+
queryParameters = this.addToHttpParams(
|
|
884
|
+
queryParameters,
|
|
885
|
+
<any>conceptRelatedIdColumn,
|
|
886
|
+
'conceptRelatedIdColumn'
|
|
887
|
+
)
|
|
888
|
+
}
|
|
889
|
+
if (conceptLinkSeparator !== undefined && conceptLinkSeparator !== null) {
|
|
890
|
+
queryParameters = this.addToHttpParams(
|
|
891
|
+
queryParameters,
|
|
892
|
+
<any>conceptLinkSeparator,
|
|
893
|
+
'conceptLinkSeparator'
|
|
894
|
+
)
|
|
895
|
+
}
|
|
896
|
+
if (importAsThesaurus !== undefined && importAsThesaurus !== null) {
|
|
897
|
+
queryParameters = this.addToHttpParams(
|
|
898
|
+
queryParameters,
|
|
899
|
+
<any>importAsThesaurus,
|
|
900
|
+
'importAsThesaurus'
|
|
901
|
+
)
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
let headers = this.defaultHeaders
|
|
905
|
+
|
|
906
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
907
|
+
options && options.httpHeaderAccept
|
|
908
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
909
|
+
// to determine the Accept header
|
|
910
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
911
|
+
httpHeaderAcceptSelected =
|
|
912
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
913
|
+
}
|
|
914
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
915
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// to determine the Content-Type header
|
|
919
|
+
const consumes: string[] = ['application/json']
|
|
920
|
+
const httpContentTypeSelected: string | undefined =
|
|
921
|
+
this.configuration.selectHeaderContentType(consumes)
|
|
922
|
+
if (httpContentTypeSelected !== undefined) {
|
|
923
|
+
headers = headers.set('Content-Type', httpContentTypeSelected)
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
927
|
+
if (
|
|
928
|
+
httpHeaderAcceptSelected &&
|
|
929
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
930
|
+
) {
|
|
931
|
+
responseType_ = 'text'
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
return this.httpClient.post<any>(
|
|
935
|
+
`${this.configuration.basePath}/registries/vocabularies/import/csv`,
|
|
936
|
+
inlineObject3ApiModel,
|
|
937
|
+
{
|
|
938
|
+
params: queryParameters,
|
|
939
|
+
responseType: <any>responseType_,
|
|
940
|
+
withCredentials: this.configuration.withCredentials,
|
|
941
|
+
headers: headers,
|
|
942
|
+
observe: observe,
|
|
943
|
+
reportProgress: reportProgress,
|
|
944
|
+
}
|
|
945
|
+
)
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* Import spatial directory entries
|
|
950
|
+
* Directory entry (AKA subtemplates) are XML fragments that can be inserted in metadata records. Use this service to import geographic extent entries from an ESRI Shapefile format.
|
|
951
|
+
* @param uuidAttribute Attribute to use for UUID. If none, random UUID are generated.
|
|
952
|
+
* @param uuidPattern Pattern to build UUID from. Default is \'{{uuid}}\'.
|
|
953
|
+
* @param descriptionAttribute Attribute to use for extent description. If none, no extent description defined. TODO: Add per language desc ?
|
|
954
|
+
* @param geomProjectionTo geomProjectionTo
|
|
955
|
+
* @param lenient lenient
|
|
956
|
+
* @param onlyBoundingBox Create only bounding box for each spatial objects.
|
|
957
|
+
* @param process Process
|
|
958
|
+
* @param schema Schema identifier
|
|
959
|
+
* @param uuidProcessing Record identifier processing.
|
|
960
|
+
* @param group The group the record is attached to.
|
|
961
|
+
* @param file
|
|
962
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
963
|
+
* @param reportProgress flag to report request and response progress.
|
|
964
|
+
*/
|
|
965
|
+
public importSpatialEntries(
|
|
966
|
+
uuidAttribute?: string,
|
|
967
|
+
uuidPattern?: string,
|
|
968
|
+
descriptionAttribute?: string,
|
|
969
|
+
geomProjectionTo?: string,
|
|
970
|
+
lenient?: boolean,
|
|
971
|
+
onlyBoundingBox?: boolean,
|
|
972
|
+
process?: string,
|
|
973
|
+
schema?: string,
|
|
974
|
+
uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE',
|
|
975
|
+
group?: number,
|
|
976
|
+
file?: Blob,
|
|
977
|
+
observe?: 'body',
|
|
978
|
+
reportProgress?: boolean,
|
|
979
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
980
|
+
): Observable<SimpleMetadataProcessingReportApiModel>
|
|
981
|
+
public importSpatialEntries(
|
|
982
|
+
uuidAttribute?: string,
|
|
983
|
+
uuidPattern?: string,
|
|
984
|
+
descriptionAttribute?: string,
|
|
985
|
+
geomProjectionTo?: string,
|
|
986
|
+
lenient?: boolean,
|
|
987
|
+
onlyBoundingBox?: boolean,
|
|
988
|
+
process?: string,
|
|
989
|
+
schema?: string,
|
|
990
|
+
uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE',
|
|
991
|
+
group?: number,
|
|
992
|
+
file?: Blob,
|
|
993
|
+
observe?: 'response',
|
|
994
|
+
reportProgress?: boolean,
|
|
995
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
996
|
+
): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>
|
|
997
|
+
public importSpatialEntries(
|
|
998
|
+
uuidAttribute?: string,
|
|
999
|
+
uuidPattern?: string,
|
|
1000
|
+
descriptionAttribute?: string,
|
|
1001
|
+
geomProjectionTo?: string,
|
|
1002
|
+
lenient?: boolean,
|
|
1003
|
+
onlyBoundingBox?: boolean,
|
|
1004
|
+
process?: string,
|
|
1005
|
+
schema?: string,
|
|
1006
|
+
uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE',
|
|
1007
|
+
group?: number,
|
|
1008
|
+
file?: Blob,
|
|
1009
|
+
observe?: 'events',
|
|
1010
|
+
reportProgress?: boolean,
|
|
1011
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1012
|
+
): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>
|
|
1013
|
+
public importSpatialEntries(
|
|
1014
|
+
uuidAttribute?: string,
|
|
1015
|
+
uuidPattern?: string,
|
|
1016
|
+
descriptionAttribute?: string,
|
|
1017
|
+
geomProjectionTo?: string,
|
|
1018
|
+
lenient?: boolean,
|
|
1019
|
+
onlyBoundingBox?: boolean,
|
|
1020
|
+
process?: string,
|
|
1021
|
+
schema?: string,
|
|
1022
|
+
uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE',
|
|
1023
|
+
group?: number,
|
|
1024
|
+
file?: Blob,
|
|
1025
|
+
observe: any = 'body',
|
|
1026
|
+
reportProgress: boolean = false,
|
|
1027
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1028
|
+
): Observable<any> {
|
|
1029
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1030
|
+
if (uuidAttribute !== undefined && uuidAttribute !== null) {
|
|
1031
|
+
queryParameters = this.addToHttpParams(
|
|
1032
|
+
queryParameters,
|
|
1033
|
+
<any>uuidAttribute,
|
|
1034
|
+
'uuidAttribute'
|
|
1035
|
+
)
|
|
1036
|
+
}
|
|
1037
|
+
if (uuidPattern !== undefined && uuidPattern !== null) {
|
|
1038
|
+
queryParameters = this.addToHttpParams(
|
|
1039
|
+
queryParameters,
|
|
1040
|
+
<any>uuidPattern,
|
|
1041
|
+
'uuidPattern'
|
|
1042
|
+
)
|
|
1043
|
+
}
|
|
1044
|
+
if (descriptionAttribute !== undefined && descriptionAttribute !== null) {
|
|
1045
|
+
queryParameters = this.addToHttpParams(
|
|
1046
|
+
queryParameters,
|
|
1047
|
+
<any>descriptionAttribute,
|
|
1048
|
+
'descriptionAttribute'
|
|
1049
|
+
)
|
|
1050
|
+
}
|
|
1051
|
+
if (geomProjectionTo !== undefined && geomProjectionTo !== null) {
|
|
1052
|
+
queryParameters = this.addToHttpParams(
|
|
1053
|
+
queryParameters,
|
|
1054
|
+
<any>geomProjectionTo,
|
|
1055
|
+
'geomProjectionTo'
|
|
1056
|
+
)
|
|
1057
|
+
}
|
|
1058
|
+
if (lenient !== undefined && lenient !== null) {
|
|
1059
|
+
queryParameters = this.addToHttpParams(
|
|
1060
|
+
queryParameters,
|
|
1061
|
+
<any>lenient,
|
|
1062
|
+
'lenient'
|
|
1063
|
+
)
|
|
1064
|
+
}
|
|
1065
|
+
if (onlyBoundingBox !== undefined && onlyBoundingBox !== null) {
|
|
1066
|
+
queryParameters = this.addToHttpParams(
|
|
1067
|
+
queryParameters,
|
|
1068
|
+
<any>onlyBoundingBox,
|
|
1069
|
+
'onlyBoundingBox'
|
|
1070
|
+
)
|
|
1071
|
+
}
|
|
1072
|
+
if (process !== undefined && process !== null) {
|
|
1073
|
+
queryParameters = this.addToHttpParams(
|
|
1074
|
+
queryParameters,
|
|
1075
|
+
<any>process,
|
|
1076
|
+
'process'
|
|
1077
|
+
)
|
|
1078
|
+
}
|
|
1079
|
+
if (schema !== undefined && schema !== null) {
|
|
1080
|
+
queryParameters = this.addToHttpParams(
|
|
1081
|
+
queryParameters,
|
|
1082
|
+
<any>schema,
|
|
1083
|
+
'schema'
|
|
1084
|
+
)
|
|
1085
|
+
}
|
|
1086
|
+
if (uuidProcessing !== undefined && uuidProcessing !== null) {
|
|
1087
|
+
queryParameters = this.addToHttpParams(
|
|
1088
|
+
queryParameters,
|
|
1089
|
+
<any>uuidProcessing,
|
|
1090
|
+
'uuidProcessing'
|
|
1091
|
+
)
|
|
1092
|
+
}
|
|
1093
|
+
if (group !== undefined && group !== null) {
|
|
1094
|
+
queryParameters = this.addToHttpParams(
|
|
1095
|
+
queryParameters,
|
|
1096
|
+
<any>group,
|
|
1097
|
+
'group'
|
|
1098
|
+
)
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
let headers = this.defaultHeaders
|
|
1102
|
+
|
|
1103
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1104
|
+
options && options.httpHeaderAccept
|
|
1105
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1106
|
+
// to determine the Accept header
|
|
1107
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
1108
|
+
httpHeaderAcceptSelected =
|
|
1109
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1110
|
+
}
|
|
1111
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1112
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
// to determine the Content-Type header
|
|
1116
|
+
const consumes: string[] = ['multipart/form-data']
|
|
1117
|
+
|
|
1118
|
+
const canConsumeForm = this.canConsumeForm(consumes)
|
|
1119
|
+
|
|
1120
|
+
let formParams: { append(param: string, value: any): any }
|
|
1121
|
+
let useForm = false
|
|
1122
|
+
let convertFormParamsToString = false
|
|
1123
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
1124
|
+
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
1125
|
+
useForm = canConsumeForm
|
|
1126
|
+
if (useForm) {
|
|
1127
|
+
formParams = new FormData()
|
|
1128
|
+
} else {
|
|
1129
|
+
formParams = new HttpParams({ encoder: this.encoder })
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
if (file !== undefined) {
|
|
1133
|
+
formParams = (formParams.append('file', <any>file) as any) || formParams
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1137
|
+
if (
|
|
1138
|
+
httpHeaderAcceptSelected &&
|
|
1139
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1140
|
+
) {
|
|
1141
|
+
responseType_ = 'text'
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
return this.httpClient.post<SimpleMetadataProcessingReportApiModel>(
|
|
1145
|
+
`${this.configuration.basePath}/registries/actions/entries/import/spatial`,
|
|
1146
|
+
convertFormParamsToString ? formParams.toString() : formParams,
|
|
1147
|
+
{
|
|
1148
|
+
params: queryParameters,
|
|
1149
|
+
responseType: <any>responseType_,
|
|
1150
|
+
withCredentials: this.configuration.withCredentials,
|
|
1151
|
+
headers: headers,
|
|
1152
|
+
observe: observe,
|
|
1153
|
+
reportProgress: reportProgress,
|
|
1154
|
+
}
|
|
1155
|
+
)
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
/**
|
|
1159
|
+
* Preview updated matching entries in records
|
|
1160
|
+
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally properties are preserved.<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
1161
|
+
* @param xpath XPath of the elements to extract as entry.
|
|
1162
|
+
* @param uuids Record UUIDs. If null current selection is used.
|
|
1163
|
+
* @param bucket Selection bucket name
|
|
1164
|
+
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
1165
|
+
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry.
|
|
1166
|
+
* @param substituteAsXLink Replace entry by XLink.
|
|
1167
|
+
* @param fq Filter query for directory search.
|
|
1168
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1169
|
+
* @param reportProgress flag to report request and response progress.
|
|
1170
|
+
*/
|
|
1171
|
+
public previewUpdatedRecordEntries(
|
|
1172
|
+
xpath: string,
|
|
1173
|
+
uuids?: Array<string>,
|
|
1174
|
+
bucket?: string,
|
|
1175
|
+
identifierXpath?: string,
|
|
1176
|
+
propertiesToCopy?: Array<string>,
|
|
1177
|
+
substituteAsXLink?: boolean,
|
|
1178
|
+
fq?: string,
|
|
1179
|
+
observe?: 'body',
|
|
1180
|
+
reportProgress?: boolean,
|
|
1181
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1182
|
+
): Observable<object>
|
|
1183
|
+
public previewUpdatedRecordEntries(
|
|
1184
|
+
xpath: string,
|
|
1185
|
+
uuids?: Array<string>,
|
|
1186
|
+
bucket?: string,
|
|
1187
|
+
identifierXpath?: string,
|
|
1188
|
+
propertiesToCopy?: Array<string>,
|
|
1189
|
+
substituteAsXLink?: boolean,
|
|
1190
|
+
fq?: string,
|
|
1191
|
+
observe?: 'response',
|
|
1192
|
+
reportProgress?: boolean,
|
|
1193
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1194
|
+
): Observable<HttpResponse<object>>
|
|
1195
|
+
public previewUpdatedRecordEntries(
|
|
1196
|
+
xpath: string,
|
|
1197
|
+
uuids?: Array<string>,
|
|
1198
|
+
bucket?: string,
|
|
1199
|
+
identifierXpath?: string,
|
|
1200
|
+
propertiesToCopy?: Array<string>,
|
|
1201
|
+
substituteAsXLink?: boolean,
|
|
1202
|
+
fq?: string,
|
|
1203
|
+
observe?: 'events',
|
|
1204
|
+
reportProgress?: boolean,
|
|
1205
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1206
|
+
): Observable<HttpEvent<object>>
|
|
1207
|
+
public previewUpdatedRecordEntries(
|
|
1208
|
+
xpath: string,
|
|
1209
|
+
uuids?: Array<string>,
|
|
1210
|
+
bucket?: string,
|
|
1211
|
+
identifierXpath?: string,
|
|
1212
|
+
propertiesToCopy?: Array<string>,
|
|
1213
|
+
substituteAsXLink?: boolean,
|
|
1214
|
+
fq?: string,
|
|
1215
|
+
observe: any = 'body',
|
|
1216
|
+
reportProgress: boolean = false,
|
|
1217
|
+
options?: { httpHeaderAccept?: 'application/json' | 'application/xml' }
|
|
1218
|
+
): Observable<any> {
|
|
1219
|
+
if (xpath === null || xpath === undefined) {
|
|
1220
|
+
throw new Error(
|
|
1221
|
+
'Required parameter xpath was null or undefined when calling previewUpdatedRecordEntries.'
|
|
1222
|
+
)
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1226
|
+
if (uuids) {
|
|
1227
|
+
uuids.forEach((element) => {
|
|
1228
|
+
queryParameters = this.addToHttpParams(
|
|
1229
|
+
queryParameters,
|
|
1230
|
+
<any>element,
|
|
1231
|
+
'uuids'
|
|
1232
|
+
)
|
|
1233
|
+
})
|
|
1234
|
+
}
|
|
1235
|
+
if (bucket !== undefined && bucket !== null) {
|
|
1236
|
+
queryParameters = this.addToHttpParams(
|
|
1237
|
+
queryParameters,
|
|
1238
|
+
<any>bucket,
|
|
1239
|
+
'bucket'
|
|
1240
|
+
)
|
|
1241
|
+
}
|
|
1242
|
+
if (xpath !== undefined && xpath !== null) {
|
|
1243
|
+
queryParameters = this.addToHttpParams(
|
|
1244
|
+
queryParameters,
|
|
1245
|
+
<any>xpath,
|
|
1246
|
+
'xpath'
|
|
1247
|
+
)
|
|
1248
|
+
}
|
|
1249
|
+
if (identifierXpath !== undefined && identifierXpath !== null) {
|
|
1250
|
+
queryParameters = this.addToHttpParams(
|
|
1251
|
+
queryParameters,
|
|
1252
|
+
<any>identifierXpath,
|
|
1253
|
+
'identifierXpath'
|
|
1254
|
+
)
|
|
1255
|
+
}
|
|
1256
|
+
if (propertiesToCopy) {
|
|
1257
|
+
propertiesToCopy.forEach((element) => {
|
|
1258
|
+
queryParameters = this.addToHttpParams(
|
|
1259
|
+
queryParameters,
|
|
1260
|
+
<any>element,
|
|
1261
|
+
'propertiesToCopy'
|
|
1262
|
+
)
|
|
1263
|
+
})
|
|
1264
|
+
}
|
|
1265
|
+
if (substituteAsXLink !== undefined && substituteAsXLink !== null) {
|
|
1266
|
+
queryParameters = this.addToHttpParams(
|
|
1267
|
+
queryParameters,
|
|
1268
|
+
<any>substituteAsXLink,
|
|
1269
|
+
'substituteAsXLink'
|
|
1270
|
+
)
|
|
1271
|
+
}
|
|
1272
|
+
if (fq !== undefined && fq !== null) {
|
|
1273
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>fq, 'fq')
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
let headers = this.defaultHeaders
|
|
1277
|
+
|
|
1278
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1279
|
+
options && options.httpHeaderAccept
|
|
1280
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1281
|
+
// to determine the Accept header
|
|
1282
|
+
const httpHeaderAccepts: string[] = [
|
|
1283
|
+
'application/json',
|
|
1284
|
+
'application/xml',
|
|
1285
|
+
]
|
|
1286
|
+
httpHeaderAcceptSelected =
|
|
1287
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1288
|
+
}
|
|
1289
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1290
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1294
|
+
if (
|
|
1295
|
+
httpHeaderAcceptSelected &&
|
|
1296
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1297
|
+
) {
|
|
1298
|
+
responseType_ = 'text'
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
return this.httpClient.get<object>(
|
|
1302
|
+
`${this.configuration.basePath}/registries/actions/entries/synchronize`,
|
|
1303
|
+
{
|
|
1304
|
+
params: queryParameters,
|
|
1305
|
+
responseType: <any>responseType_,
|
|
1306
|
+
withCredentials: this.configuration.withCredentials,
|
|
1307
|
+
headers: headers,
|
|
1308
|
+
observe: observe,
|
|
1309
|
+
reportProgress: reportProgress,
|
|
1310
|
+
}
|
|
1311
|
+
)
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* Search coordinate reference system (CRS)
|
|
1316
|
+
* Based on GeoTools EPSG database. If phrase query, each words are searched separately.
|
|
1317
|
+
* @param q Search value
|
|
1318
|
+
* @param type Type of CRS
|
|
1319
|
+
* @param rows Number of results. Default is: 100
|
|
1320
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1321
|
+
* @param reportProgress flag to report request and response progress.
|
|
1322
|
+
*/
|
|
1323
|
+
public searchCrs(
|
|
1324
|
+
q?: string,
|
|
1325
|
+
type?:
|
|
1326
|
+
| 'CoordinateReferenceSystem'
|
|
1327
|
+
| 'VerticalCRS'
|
|
1328
|
+
| 'GeographicCRS'
|
|
1329
|
+
| 'ProjectedCRS',
|
|
1330
|
+
rows?: number,
|
|
1331
|
+
observe?: 'body',
|
|
1332
|
+
reportProgress?: boolean,
|
|
1333
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1334
|
+
): Observable<Array<CrsApiModel>>
|
|
1335
|
+
public searchCrs(
|
|
1336
|
+
q?: string,
|
|
1337
|
+
type?:
|
|
1338
|
+
| 'CoordinateReferenceSystem'
|
|
1339
|
+
| 'VerticalCRS'
|
|
1340
|
+
| 'GeographicCRS'
|
|
1341
|
+
| 'ProjectedCRS',
|
|
1342
|
+
rows?: number,
|
|
1343
|
+
observe?: 'response',
|
|
1344
|
+
reportProgress?: boolean,
|
|
1345
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1346
|
+
): Observable<HttpResponse<Array<CrsApiModel>>>
|
|
1347
|
+
public searchCrs(
|
|
1348
|
+
q?: string,
|
|
1349
|
+
type?:
|
|
1350
|
+
| 'CoordinateReferenceSystem'
|
|
1351
|
+
| 'VerticalCRS'
|
|
1352
|
+
| 'GeographicCRS'
|
|
1353
|
+
| 'ProjectedCRS',
|
|
1354
|
+
rows?: number,
|
|
1355
|
+
observe?: 'events',
|
|
1356
|
+
reportProgress?: boolean,
|
|
1357
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1358
|
+
): Observable<HttpEvent<Array<CrsApiModel>>>
|
|
1359
|
+
public searchCrs(
|
|
1360
|
+
q?: string,
|
|
1361
|
+
type?:
|
|
1362
|
+
| 'CoordinateReferenceSystem'
|
|
1363
|
+
| 'VerticalCRS'
|
|
1364
|
+
| 'GeographicCRS'
|
|
1365
|
+
| 'ProjectedCRS',
|
|
1366
|
+
rows?: number,
|
|
1367
|
+
observe: any = 'body',
|
|
1368
|
+
reportProgress: boolean = false,
|
|
1369
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1370
|
+
): Observable<any> {
|
|
1371
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1372
|
+
if (q !== undefined && q !== null) {
|
|
1373
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>q, 'q')
|
|
1374
|
+
}
|
|
1375
|
+
if (type !== undefined && type !== null) {
|
|
1376
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>type, 'type')
|
|
1377
|
+
}
|
|
1378
|
+
if (rows !== undefined && rows !== null) {
|
|
1379
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>rows, 'rows')
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
let headers = this.defaultHeaders
|
|
1383
|
+
|
|
1384
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1385
|
+
options && options.httpHeaderAccept
|
|
1386
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1387
|
+
// to determine the Accept header
|
|
1388
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
1389
|
+
httpHeaderAcceptSelected =
|
|
1390
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1391
|
+
}
|
|
1392
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1393
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1397
|
+
if (
|
|
1398
|
+
httpHeaderAcceptSelected &&
|
|
1399
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1400
|
+
) {
|
|
1401
|
+
responseType_ = 'text'
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
return this.httpClient.get<Array<CrsApiModel>>(
|
|
1405
|
+
`${this.configuration.basePath}/registries/crs`,
|
|
1406
|
+
{
|
|
1407
|
+
params: queryParameters,
|
|
1408
|
+
responseType: <any>responseType_,
|
|
1409
|
+
withCredentials: this.configuration.withCredentials,
|
|
1410
|
+
headers: headers,
|
|
1411
|
+
observe: observe,
|
|
1412
|
+
reportProgress: reportProgress,
|
|
1413
|
+
}
|
|
1414
|
+
)
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
/**
|
|
1418
|
+
* Search keywords
|
|
1419
|
+
* @param q Query
|
|
1420
|
+
* @param lang Query in that language
|
|
1421
|
+
* @param rows Number of rows
|
|
1422
|
+
* @param start Start from
|
|
1423
|
+
* @param pLang Return keyword information in one or more languages
|
|
1424
|
+
* @param thesaurus Thesaurus identifier
|
|
1425
|
+
* @param type Type of search
|
|
1426
|
+
* @param uri URI query
|
|
1427
|
+
* @param sort Sort by
|
|
1428
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1429
|
+
* @param reportProgress flag to report request and response progress.
|
|
1430
|
+
*/
|
|
1431
|
+
public searchKeywords(
|
|
1432
|
+
q?: string,
|
|
1433
|
+
lang?: string,
|
|
1434
|
+
rows?: number,
|
|
1435
|
+
start?: number,
|
|
1436
|
+
pLang?: Array<string>,
|
|
1437
|
+
thesaurus?: Array<string>,
|
|
1438
|
+
type?: 'STARTS_WITH' | 'CONTAINS' | 'MATCH',
|
|
1439
|
+
uri?: string,
|
|
1440
|
+
sort?: string,
|
|
1441
|
+
observe?: 'body',
|
|
1442
|
+
reportProgress?: boolean,
|
|
1443
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1444
|
+
): Observable<Array<KeywordBeanApiModel>>
|
|
1445
|
+
public searchKeywords(
|
|
1446
|
+
q?: string,
|
|
1447
|
+
lang?: string,
|
|
1448
|
+
rows?: number,
|
|
1449
|
+
start?: number,
|
|
1450
|
+
pLang?: Array<string>,
|
|
1451
|
+
thesaurus?: Array<string>,
|
|
1452
|
+
type?: 'STARTS_WITH' | 'CONTAINS' | 'MATCH',
|
|
1453
|
+
uri?: string,
|
|
1454
|
+
sort?: string,
|
|
1455
|
+
observe?: 'response',
|
|
1456
|
+
reportProgress?: boolean,
|
|
1457
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1458
|
+
): Observable<HttpResponse<Array<KeywordBeanApiModel>>>
|
|
1459
|
+
public searchKeywords(
|
|
1460
|
+
q?: string,
|
|
1461
|
+
lang?: string,
|
|
1462
|
+
rows?: number,
|
|
1463
|
+
start?: number,
|
|
1464
|
+
pLang?: Array<string>,
|
|
1465
|
+
thesaurus?: Array<string>,
|
|
1466
|
+
type?: 'STARTS_WITH' | 'CONTAINS' | 'MATCH',
|
|
1467
|
+
uri?: string,
|
|
1468
|
+
sort?: string,
|
|
1469
|
+
observe?: 'events',
|
|
1470
|
+
reportProgress?: boolean,
|
|
1471
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1472
|
+
): Observable<HttpEvent<Array<KeywordBeanApiModel>>>
|
|
1473
|
+
public searchKeywords(
|
|
1474
|
+
q?: string,
|
|
1475
|
+
lang?: string,
|
|
1476
|
+
rows?: number,
|
|
1477
|
+
start?: number,
|
|
1478
|
+
pLang?: Array<string>,
|
|
1479
|
+
thesaurus?: Array<string>,
|
|
1480
|
+
type?: 'STARTS_WITH' | 'CONTAINS' | 'MATCH',
|
|
1481
|
+
uri?: string,
|
|
1482
|
+
sort?: string,
|
|
1483
|
+
observe: any = 'body',
|
|
1484
|
+
reportProgress: boolean = false,
|
|
1485
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1486
|
+
): Observable<any> {
|
|
1487
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1488
|
+
if (q !== undefined && q !== null) {
|
|
1489
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>q, 'q')
|
|
1490
|
+
}
|
|
1491
|
+
if (lang !== undefined && lang !== null) {
|
|
1492
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>lang, 'lang')
|
|
1493
|
+
}
|
|
1494
|
+
if (rows !== undefined && rows !== null) {
|
|
1495
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>rows, 'rows')
|
|
1496
|
+
}
|
|
1497
|
+
if (start !== undefined && start !== null) {
|
|
1498
|
+
queryParameters = this.addToHttpParams(
|
|
1499
|
+
queryParameters,
|
|
1500
|
+
<any>start,
|
|
1501
|
+
'start'
|
|
1502
|
+
)
|
|
1503
|
+
}
|
|
1504
|
+
if (pLang) {
|
|
1505
|
+
pLang.forEach((element) => {
|
|
1506
|
+
queryParameters = this.addToHttpParams(
|
|
1507
|
+
queryParameters,
|
|
1508
|
+
<any>element,
|
|
1509
|
+
'pLang'
|
|
1510
|
+
)
|
|
1511
|
+
})
|
|
1512
|
+
}
|
|
1513
|
+
if (thesaurus) {
|
|
1514
|
+
thesaurus.forEach((element) => {
|
|
1515
|
+
queryParameters = this.addToHttpParams(
|
|
1516
|
+
queryParameters,
|
|
1517
|
+
<any>element,
|
|
1518
|
+
'thesaurus'
|
|
1519
|
+
)
|
|
1520
|
+
})
|
|
1521
|
+
}
|
|
1522
|
+
if (type !== undefined && type !== null) {
|
|
1523
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>type, 'type')
|
|
1524
|
+
}
|
|
1525
|
+
if (uri !== undefined && uri !== null) {
|
|
1526
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>uri, 'uri')
|
|
1527
|
+
}
|
|
1528
|
+
if (sort !== undefined && sort !== null) {
|
|
1529
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>sort, 'sort')
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
let headers = this.defaultHeaders
|
|
1533
|
+
|
|
1534
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1535
|
+
options && options.httpHeaderAccept
|
|
1536
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1537
|
+
// to determine the Accept header
|
|
1538
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
1539
|
+
httpHeaderAcceptSelected =
|
|
1540
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1541
|
+
}
|
|
1542
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1543
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1547
|
+
if (
|
|
1548
|
+
httpHeaderAcceptSelected &&
|
|
1549
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1550
|
+
) {
|
|
1551
|
+
responseType_ = 'text'
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
return this.httpClient.get<Array<KeywordBeanApiModel>>(
|
|
1555
|
+
`${this.configuration.basePath}/registries/vocabularies/search`,
|
|
1556
|
+
{
|
|
1557
|
+
params: queryParameters,
|
|
1558
|
+
responseType: <any>responseType_,
|
|
1559
|
+
withCredentials: this.configuration.withCredentials,
|
|
1560
|
+
headers: headers,
|
|
1561
|
+
observe: observe,
|
|
1562
|
+
reportProgress: reportProgress,
|
|
1563
|
+
}
|
|
1564
|
+
)
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
/**
|
|
1568
|
+
* Update matching entries in records
|
|
1569
|
+
* Scan one or more records for element matching the XPath provided and then check if this element is available in the directory. If Found, the element from the directory update the element in the record and optionally properties are preserved.<br/><br/>The identifier XPath is used to find a match. An optional filtercan be added to restrict search to a subset of the directory. If no identifier XPaths is provided, the UUID is based on the content of the snippet (hash). It is recommended to use an identifier for better matching (eg. ISO19139 contact with different roles will not match on the automatic UUID mode).
|
|
1570
|
+
* @param xpath XPath of the elements to extract as entry.
|
|
1571
|
+
* @param uuids Record UUIDs. If null current selection is used.
|
|
1572
|
+
* @param bucket Selection bucket name
|
|
1573
|
+
* @param identifierXpath XPath of the element identifier. If not defined a random UUID is generated and analysis will not check for duplicates.
|
|
1574
|
+
* @param propertiesToCopy List of XPath of properties to copy from record to matching entry.
|
|
1575
|
+
* @param substituteAsXLink Replace entry by XLink.
|
|
1576
|
+
* @param fq Filter query for directory search.
|
|
1577
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1578
|
+
* @param reportProgress flag to report request and response progress.
|
|
1579
|
+
*/
|
|
1580
|
+
public updateRecordEntries(
|
|
1581
|
+
xpath: string,
|
|
1582
|
+
uuids?: Array<string>,
|
|
1583
|
+
bucket?: string,
|
|
1584
|
+
identifierXpath?: string,
|
|
1585
|
+
propertiesToCopy?: Array<string>,
|
|
1586
|
+
substituteAsXLink?: boolean,
|
|
1587
|
+
fq?: string,
|
|
1588
|
+
observe?: 'body',
|
|
1589
|
+
reportProgress?: boolean,
|
|
1590
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1591
|
+
): Observable<object>
|
|
1592
|
+
public updateRecordEntries(
|
|
1593
|
+
xpath: string,
|
|
1594
|
+
uuids?: Array<string>,
|
|
1595
|
+
bucket?: string,
|
|
1596
|
+
identifierXpath?: string,
|
|
1597
|
+
propertiesToCopy?: Array<string>,
|
|
1598
|
+
substituteAsXLink?: boolean,
|
|
1599
|
+
fq?: string,
|
|
1600
|
+
observe?: 'response',
|
|
1601
|
+
reportProgress?: boolean,
|
|
1602
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1603
|
+
): Observable<HttpResponse<object>>
|
|
1604
|
+
public updateRecordEntries(
|
|
1605
|
+
xpath: string,
|
|
1606
|
+
uuids?: Array<string>,
|
|
1607
|
+
bucket?: string,
|
|
1608
|
+
identifierXpath?: string,
|
|
1609
|
+
propertiesToCopy?: Array<string>,
|
|
1610
|
+
substituteAsXLink?: boolean,
|
|
1611
|
+
fq?: string,
|
|
1612
|
+
observe?: 'events',
|
|
1613
|
+
reportProgress?: boolean,
|
|
1614
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1615
|
+
): Observable<HttpEvent<object>>
|
|
1616
|
+
public updateRecordEntries(
|
|
1617
|
+
xpath: string,
|
|
1618
|
+
uuids?: Array<string>,
|
|
1619
|
+
bucket?: string,
|
|
1620
|
+
identifierXpath?: string,
|
|
1621
|
+
propertiesToCopy?: Array<string>,
|
|
1622
|
+
substituteAsXLink?: boolean,
|
|
1623
|
+
fq?: string,
|
|
1624
|
+
observe: any = 'body',
|
|
1625
|
+
reportProgress: boolean = false,
|
|
1626
|
+
options?: { httpHeaderAccept?: 'application/json' }
|
|
1627
|
+
): Observable<any> {
|
|
1628
|
+
if (xpath === null || xpath === undefined) {
|
|
1629
|
+
throw new Error(
|
|
1630
|
+
'Required parameter xpath was null or undefined when calling updateRecordEntries.'
|
|
1631
|
+
)
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1635
|
+
if (uuids) {
|
|
1636
|
+
uuids.forEach((element) => {
|
|
1637
|
+
queryParameters = this.addToHttpParams(
|
|
1638
|
+
queryParameters,
|
|
1639
|
+
<any>element,
|
|
1640
|
+
'uuids'
|
|
1641
|
+
)
|
|
1642
|
+
})
|
|
1643
|
+
}
|
|
1644
|
+
if (bucket !== undefined && bucket !== null) {
|
|
1645
|
+
queryParameters = this.addToHttpParams(
|
|
1646
|
+
queryParameters,
|
|
1647
|
+
<any>bucket,
|
|
1648
|
+
'bucket'
|
|
1649
|
+
)
|
|
1650
|
+
}
|
|
1651
|
+
if (xpath !== undefined && xpath !== null) {
|
|
1652
|
+
queryParameters = this.addToHttpParams(
|
|
1653
|
+
queryParameters,
|
|
1654
|
+
<any>xpath,
|
|
1655
|
+
'xpath'
|
|
1656
|
+
)
|
|
1657
|
+
}
|
|
1658
|
+
if (identifierXpath !== undefined && identifierXpath !== null) {
|
|
1659
|
+
queryParameters = this.addToHttpParams(
|
|
1660
|
+
queryParameters,
|
|
1661
|
+
<any>identifierXpath,
|
|
1662
|
+
'identifierXpath'
|
|
1663
|
+
)
|
|
1664
|
+
}
|
|
1665
|
+
if (propertiesToCopy) {
|
|
1666
|
+
propertiesToCopy.forEach((element) => {
|
|
1667
|
+
queryParameters = this.addToHttpParams(
|
|
1668
|
+
queryParameters,
|
|
1669
|
+
<any>element,
|
|
1670
|
+
'propertiesToCopy'
|
|
1671
|
+
)
|
|
1672
|
+
})
|
|
1673
|
+
}
|
|
1674
|
+
if (substituteAsXLink !== undefined && substituteAsXLink !== null) {
|
|
1675
|
+
queryParameters = this.addToHttpParams(
|
|
1676
|
+
queryParameters,
|
|
1677
|
+
<any>substituteAsXLink,
|
|
1678
|
+
'substituteAsXLink'
|
|
1679
|
+
)
|
|
1680
|
+
}
|
|
1681
|
+
if (fq !== undefined && fq !== null) {
|
|
1682
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>fq, 'fq')
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
let headers = this.defaultHeaders
|
|
1686
|
+
|
|
1687
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1688
|
+
options && options.httpHeaderAccept
|
|
1689
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1690
|
+
// to determine the Accept header
|
|
1691
|
+
const httpHeaderAccepts: string[] = ['application/json']
|
|
1692
|
+
httpHeaderAcceptSelected =
|
|
1693
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1694
|
+
}
|
|
1695
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1696
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1700
|
+
if (
|
|
1701
|
+
httpHeaderAcceptSelected &&
|
|
1702
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1703
|
+
) {
|
|
1704
|
+
responseType_ = 'text'
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
return this.httpClient.put<object>(
|
|
1708
|
+
`${this.configuration.basePath}/registries/actions/entries/synchronize`,
|
|
1709
|
+
null,
|
|
1710
|
+
{
|
|
1711
|
+
params: queryParameters,
|
|
1712
|
+
responseType: <any>responseType_,
|
|
1713
|
+
withCredentials: this.configuration.withCredentials,
|
|
1714
|
+
headers: headers,
|
|
1715
|
+
observe: observe,
|
|
1716
|
+
reportProgress: reportProgress,
|
|
1717
|
+
}
|
|
1718
|
+
)
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
/**
|
|
1722
|
+
* Uploads a new thesaurus from a file
|
|
1723
|
+
* Uploads a new thesaurus.
|
|
1724
|
+
* @param type Local or external (default).
|
|
1725
|
+
* @param dir Type of thesaurus, usually one of the ISO thesaurus type codelist value. Default is theme.
|
|
1726
|
+
* @param stylesheet XSL to be use to convert the thesaurus before load. Default _none_.
|
|
1727
|
+
* @param inlineObject2ApiModel
|
|
1728
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1729
|
+
* @param reportProgress flag to report request and response progress.
|
|
1730
|
+
*/
|
|
1731
|
+
public uploadThesaurus(
|
|
1732
|
+
type?: string,
|
|
1733
|
+
dir?: string,
|
|
1734
|
+
stylesheet?: string,
|
|
1735
|
+
inlineObject2ApiModel?: InlineObject2ApiModel,
|
|
1736
|
+
observe?: 'body',
|
|
1737
|
+
reportProgress?: boolean,
|
|
1738
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1739
|
+
): Observable<string>
|
|
1740
|
+
public uploadThesaurus(
|
|
1741
|
+
type?: string,
|
|
1742
|
+
dir?: string,
|
|
1743
|
+
stylesheet?: string,
|
|
1744
|
+
inlineObject2ApiModel?: InlineObject2ApiModel,
|
|
1745
|
+
observe?: 'response',
|
|
1746
|
+
reportProgress?: boolean,
|
|
1747
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1748
|
+
): Observable<HttpResponse<string>>
|
|
1749
|
+
public uploadThesaurus(
|
|
1750
|
+
type?: string,
|
|
1751
|
+
dir?: string,
|
|
1752
|
+
stylesheet?: string,
|
|
1753
|
+
inlineObject2ApiModel?: InlineObject2ApiModel,
|
|
1754
|
+
observe?: 'events',
|
|
1755
|
+
reportProgress?: boolean,
|
|
1756
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1757
|
+
): Observable<HttpEvent<string>>
|
|
1758
|
+
public uploadThesaurus(
|
|
1759
|
+
type?: string,
|
|
1760
|
+
dir?: string,
|
|
1761
|
+
stylesheet?: string,
|
|
1762
|
+
inlineObject2ApiModel?: InlineObject2ApiModel,
|
|
1763
|
+
observe: any = 'body',
|
|
1764
|
+
reportProgress: boolean = false,
|
|
1765
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1766
|
+
): Observable<any> {
|
|
1767
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1768
|
+
if (type !== undefined && type !== null) {
|
|
1769
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>type, 'type')
|
|
1770
|
+
}
|
|
1771
|
+
if (dir !== undefined && dir !== null) {
|
|
1772
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>dir, 'dir')
|
|
1773
|
+
}
|
|
1774
|
+
if (stylesheet !== undefined && stylesheet !== null) {
|
|
1775
|
+
queryParameters = this.addToHttpParams(
|
|
1776
|
+
queryParameters,
|
|
1777
|
+
<any>stylesheet,
|
|
1778
|
+
'stylesheet'
|
|
1779
|
+
)
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
let headers = this.defaultHeaders
|
|
1783
|
+
|
|
1784
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1785
|
+
options && options.httpHeaderAccept
|
|
1786
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1787
|
+
// to determine the Accept header
|
|
1788
|
+
const httpHeaderAccepts: string[] = ['application/json', 'text/xml']
|
|
1789
|
+
httpHeaderAcceptSelected =
|
|
1790
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1791
|
+
}
|
|
1792
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1793
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
// to determine the Content-Type header
|
|
1797
|
+
const consumes: string[] = ['application/json']
|
|
1798
|
+
const httpContentTypeSelected: string | undefined =
|
|
1799
|
+
this.configuration.selectHeaderContentType(consumes)
|
|
1800
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1801
|
+
headers = headers.set('Content-Type', httpContentTypeSelected)
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1805
|
+
if (
|
|
1806
|
+
httpHeaderAcceptSelected &&
|
|
1807
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1808
|
+
) {
|
|
1809
|
+
responseType_ = 'text'
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
return this.httpClient.post<string>(
|
|
1813
|
+
`${this.configuration.basePath}/registries/vocabularies`,
|
|
1814
|
+
inlineObject2ApiModel,
|
|
1815
|
+
{
|
|
1816
|
+
params: queryParameters,
|
|
1817
|
+
responseType: <any>responseType_,
|
|
1818
|
+
withCredentials: this.configuration.withCredentials,
|
|
1819
|
+
headers: headers,
|
|
1820
|
+
observe: observe,
|
|
1821
|
+
reportProgress: reportProgress,
|
|
1822
|
+
}
|
|
1823
|
+
)
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
/**
|
|
1827
|
+
* Uploads a new thesaurus from URL or Registry
|
|
1828
|
+
* Uploads a new thesaurus.
|
|
1829
|
+
* @param url If set, try to download from the Internet.
|
|
1830
|
+
* @param registryUrl If set, try to download from a registry.
|
|
1831
|
+
* @param registryType If using registryUrl, then define the type of registry. If not set, default mode is re3gistry.
|
|
1832
|
+
* @param registryLanguage Languages to download from a registry.
|
|
1833
|
+
* @param type Local or external (default).
|
|
1834
|
+
* @param dir Type of thesaurus, usually one of the ISO thesaurus type codelist value. Default is theme.
|
|
1835
|
+
* @param stylesheet XSL to be use to convert the thesaurus before load. Default _none_.
|
|
1836
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1837
|
+
* @param reportProgress flag to report request and response progress.
|
|
1838
|
+
*/
|
|
1839
|
+
public uploadThesaurusFromUrl(
|
|
1840
|
+
url?: string,
|
|
1841
|
+
registryUrl?: string,
|
|
1842
|
+
registryType?: 're3gistry' | 'ldRegistry',
|
|
1843
|
+
registryLanguage?: Array<string>,
|
|
1844
|
+
type?: string,
|
|
1845
|
+
dir?: string,
|
|
1846
|
+
stylesheet?: string,
|
|
1847
|
+
observe?: 'body',
|
|
1848
|
+
reportProgress?: boolean,
|
|
1849
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1850
|
+
): Observable<string>
|
|
1851
|
+
public uploadThesaurusFromUrl(
|
|
1852
|
+
url?: string,
|
|
1853
|
+
registryUrl?: string,
|
|
1854
|
+
registryType?: 're3gistry' | 'ldRegistry',
|
|
1855
|
+
registryLanguage?: Array<string>,
|
|
1856
|
+
type?: string,
|
|
1857
|
+
dir?: string,
|
|
1858
|
+
stylesheet?: string,
|
|
1859
|
+
observe?: 'response',
|
|
1860
|
+
reportProgress?: boolean,
|
|
1861
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1862
|
+
): Observable<HttpResponse<string>>
|
|
1863
|
+
public uploadThesaurusFromUrl(
|
|
1864
|
+
url?: string,
|
|
1865
|
+
registryUrl?: string,
|
|
1866
|
+
registryType?: 're3gistry' | 'ldRegistry',
|
|
1867
|
+
registryLanguage?: Array<string>,
|
|
1868
|
+
type?: string,
|
|
1869
|
+
dir?: string,
|
|
1870
|
+
stylesheet?: string,
|
|
1871
|
+
observe?: 'events',
|
|
1872
|
+
reportProgress?: boolean,
|
|
1873
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1874
|
+
): Observable<HttpEvent<string>>
|
|
1875
|
+
public uploadThesaurusFromUrl(
|
|
1876
|
+
url?: string,
|
|
1877
|
+
registryUrl?: string,
|
|
1878
|
+
registryType?: 're3gistry' | 'ldRegistry',
|
|
1879
|
+
registryLanguage?: Array<string>,
|
|
1880
|
+
type?: string,
|
|
1881
|
+
dir?: string,
|
|
1882
|
+
stylesheet?: string,
|
|
1883
|
+
observe: any = 'body',
|
|
1884
|
+
reportProgress: boolean = false,
|
|
1885
|
+
options?: { httpHeaderAccept?: 'application/json' | 'text/xml' }
|
|
1886
|
+
): Observable<any> {
|
|
1887
|
+
let queryParameters = new HttpParams({ encoder: this.encoder })
|
|
1888
|
+
if (url !== undefined && url !== null) {
|
|
1889
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>url, 'url')
|
|
1890
|
+
}
|
|
1891
|
+
if (registryUrl !== undefined && registryUrl !== null) {
|
|
1892
|
+
queryParameters = this.addToHttpParams(
|
|
1893
|
+
queryParameters,
|
|
1894
|
+
<any>registryUrl,
|
|
1895
|
+
'registryUrl'
|
|
1896
|
+
)
|
|
1897
|
+
}
|
|
1898
|
+
if (registryType !== undefined && registryType !== null) {
|
|
1899
|
+
queryParameters = this.addToHttpParams(
|
|
1900
|
+
queryParameters,
|
|
1901
|
+
<any>registryType,
|
|
1902
|
+
'registryType'
|
|
1903
|
+
)
|
|
1904
|
+
}
|
|
1905
|
+
if (registryLanguage) {
|
|
1906
|
+
registryLanguage.forEach((element) => {
|
|
1907
|
+
queryParameters = this.addToHttpParams(
|
|
1908
|
+
queryParameters,
|
|
1909
|
+
<any>element,
|
|
1910
|
+
'registryLanguage'
|
|
1911
|
+
)
|
|
1912
|
+
})
|
|
1913
|
+
}
|
|
1914
|
+
if (type !== undefined && type !== null) {
|
|
1915
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>type, 'type')
|
|
1916
|
+
}
|
|
1917
|
+
if (dir !== undefined && dir !== null) {
|
|
1918
|
+
queryParameters = this.addToHttpParams(queryParameters, <any>dir, 'dir')
|
|
1919
|
+
}
|
|
1920
|
+
if (stylesheet !== undefined && stylesheet !== null) {
|
|
1921
|
+
queryParameters = this.addToHttpParams(
|
|
1922
|
+
queryParameters,
|
|
1923
|
+
<any>stylesheet,
|
|
1924
|
+
'stylesheet'
|
|
1925
|
+
)
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
let headers = this.defaultHeaders
|
|
1929
|
+
|
|
1930
|
+
let httpHeaderAcceptSelected: string | undefined =
|
|
1931
|
+
options && options.httpHeaderAccept
|
|
1932
|
+
if (httpHeaderAcceptSelected === undefined) {
|
|
1933
|
+
// to determine the Accept header
|
|
1934
|
+
const httpHeaderAccepts: string[] = ['application/json', 'text/xml']
|
|
1935
|
+
httpHeaderAcceptSelected =
|
|
1936
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts)
|
|
1937
|
+
}
|
|
1938
|
+
if (httpHeaderAcceptSelected !== undefined) {
|
|
1939
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected)
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
let responseType_: 'text' | 'json' = 'json'
|
|
1943
|
+
if (
|
|
1944
|
+
httpHeaderAcceptSelected &&
|
|
1945
|
+
httpHeaderAcceptSelected.startsWith('text')
|
|
1946
|
+
) {
|
|
1947
|
+
responseType_ = 'text'
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
return this.httpClient.put<string>(
|
|
1951
|
+
`${this.configuration.basePath}/registries/vocabularies`,
|
|
1952
|
+
null,
|
|
1953
|
+
{
|
|
1954
|
+
params: queryParameters,
|
|
1955
|
+
responseType: <any>responseType_,
|
|
1956
|
+
withCredentials: this.configuration.withCredentials,
|
|
1957
|
+
headers: headers,
|
|
1958
|
+
observe: observe,
|
|
1959
|
+
reportProgress: reportProgress,
|
|
1960
|
+
}
|
|
1961
|
+
)
|
|
1962
|
+
}
|
|
1963
|
+
}
|