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,97 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { SelectionApiModel } from '../model/models';
|
|
4
|
+
import { Configuration } from '../configuration';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UserselectionsApiService {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
protected basePath: string;
|
|
9
|
+
defaultHeaders: HttpHeaders;
|
|
10
|
+
configuration: Configuration;
|
|
11
|
+
encoder: HttpParameterCodec;
|
|
12
|
+
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
|
|
13
|
+
private addToHttpParams;
|
|
14
|
+
private addToHttpParamsRecursive;
|
|
15
|
+
/**
|
|
16
|
+
* Add items to a user selection set
|
|
17
|
+
* @param selectionIdentifier Selection identifier
|
|
18
|
+
* @param userIdentifier User identifier
|
|
19
|
+
* @param uuid One or more record UUIDs.
|
|
20
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
21
|
+
* @param reportProgress flag to report request and response progress.
|
|
22
|
+
*/
|
|
23
|
+
addToUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
24
|
+
httpHeaderAccept?: 'application/json';
|
|
25
|
+
}): Observable<string>;
|
|
26
|
+
addToUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
27
|
+
httpHeaderAccept?: 'application/json';
|
|
28
|
+
}): Observable<HttpResponse<string>>;
|
|
29
|
+
addToUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
30
|
+
httpHeaderAccept?: 'application/json';
|
|
31
|
+
}): Observable<HttpEvent<string>>;
|
|
32
|
+
/**
|
|
33
|
+
* Add a user selection set
|
|
34
|
+
* @param selectionApiModel
|
|
35
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
36
|
+
* @param reportProgress flag to report request and response progress.
|
|
37
|
+
*/
|
|
38
|
+
createPersistentSelectionType(selectionApiModel: SelectionApiModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
39
|
+
httpHeaderAccept?: 'application/json';
|
|
40
|
+
}): Observable<string>;
|
|
41
|
+
createPersistentSelectionType(selectionApiModel: SelectionApiModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
42
|
+
httpHeaderAccept?: 'application/json';
|
|
43
|
+
}): Observable<HttpResponse<string>>;
|
|
44
|
+
createPersistentSelectionType(selectionApiModel: SelectionApiModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
45
|
+
httpHeaderAccept?: 'application/json';
|
|
46
|
+
}): Observable<HttpEvent<string>>;
|
|
47
|
+
/**
|
|
48
|
+
* Remove items to a user selection set
|
|
49
|
+
* @param selectionIdentifier Selection identifier
|
|
50
|
+
* @param userIdentifier User identifier
|
|
51
|
+
* @param uuid One or more record UUIDs. If null, remove all.
|
|
52
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
53
|
+
* @param reportProgress flag to report request and response progress.
|
|
54
|
+
*/
|
|
55
|
+
deleteFromUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
56
|
+
httpHeaderAccept?: 'application/json';
|
|
57
|
+
}): Observable<string>;
|
|
58
|
+
deleteFromUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
59
|
+
httpHeaderAccept?: 'application/json';
|
|
60
|
+
}): Observable<HttpResponse<string>>;
|
|
61
|
+
deleteFromUserSelection(selectionIdentifier: number, userIdentifier: number, uuid?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
62
|
+
httpHeaderAccept?: 'application/json';
|
|
63
|
+
}): Observable<HttpEvent<string>>;
|
|
64
|
+
/**
|
|
65
|
+
* Get list of user selection sets
|
|
66
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
67
|
+
* @param reportProgress flag to report request and response progress.
|
|
68
|
+
*/
|
|
69
|
+
getSelectionList(observe?: 'body', reportProgress?: boolean, options?: {
|
|
70
|
+
httpHeaderAccept?: 'application/json';
|
|
71
|
+
}): Observable<Array<SelectionApiModel>>;
|
|
72
|
+
getSelectionList(observe?: 'response', reportProgress?: boolean, options?: {
|
|
73
|
+
httpHeaderAccept?: 'application/json';
|
|
74
|
+
}): Observable<HttpResponse<Array<SelectionApiModel>>>;
|
|
75
|
+
getSelectionList(observe?: 'events', reportProgress?: boolean, options?: {
|
|
76
|
+
httpHeaderAccept?: 'application/json';
|
|
77
|
+
}): Observable<HttpEvent<Array<SelectionApiModel>>>;
|
|
78
|
+
/**
|
|
79
|
+
* Get record in a user selection set
|
|
80
|
+
* @param selectionIdentifier Selection identifier
|
|
81
|
+
* @param userIdentifier User identifier
|
|
82
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
83
|
+
* @param reportProgress flag to report request and response progress.
|
|
84
|
+
*/
|
|
85
|
+
getSelectionRecords(selectionIdentifier: number, userIdentifier: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
86
|
+
httpHeaderAccept?: 'application/json';
|
|
87
|
+
}): Observable<Array<string>>;
|
|
88
|
+
getSelectionRecords(selectionIdentifier: number, userIdentifier: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
89
|
+
httpHeaderAccept?: 'application/json';
|
|
90
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
91
|
+
getSelectionRecords(selectionIdentifier: number, userIdentifier: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
92
|
+
httpHeaderAccept?: 'application/json';
|
|
93
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
94
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserselectionsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
95
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserselectionsApiService>;
|
|
96
|
+
}
|
|
97
|
+
//# sourceMappingURL=userselections.api.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"userselections.api.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts"],"names":[],"mappings":"AAcA,OAAO,EACL,UAAU,EACV,WAAW,EAEX,YAAY,EACZ,SAAS,EACT,kBAAkB,EACnB,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAGnD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;;AAEhD,qBAGa,wBAAwB;IAOjC,SAAS,CAAC,UAAU,EAAE,UAAU;IANlC,SAAS,CAAC,QAAQ,SAAiD;IAC5D,cAAc,cAAoB;IAClC,aAAa,gBAAsB;IACnC,OAAO,EAAE,kBAAkB,CAAA;gBAGtB,UAAU,EAAE,UAAU,EACD,QAAQ,EAAE,MAAM,EACnC,aAAa,EAAE,aAAa;IAc1C,OAAO,CAAC,eAAe;IAavB,OAAO,CAAC,wBAAwB;IA0ChC;;;;;;;OAOG;IACI,kBAAkB,CACvB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,MAAM,CAAC;IACd,kBAAkB,CACvB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,UAAU,EACpB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;IAC5B,kBAAkB,CACvB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAqEhC;;;;;OAKG;IACI,6BAA6B,CAClC,iBAAiB,EAAE,iBAAiB,EACpC,OAAO,CAAC,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,MAAM,CAAC;IACd,6BAA6B,CAClC,iBAAiB,EAAE,iBAAiB,EACpC,OAAO,CAAC,EAAE,UAAU,EACpB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;IAC5B,6BAA6B,CAClC,iBAAiB,EAAE,iBAAiB,EACpC,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAwDhC;;;;;;;OAOG;IACI,uBAAuB,CAC5B,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,MAAM,CAAC;IACd,uBAAuB,CAC5B,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,UAAU,EACpB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;IAC5B,uBAAuB,CAC5B,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACpB,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IAoEhC;;;;OAIG;IACI,gBAAgB,CACrB,OAAO,CAAC,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAChC,gBAAgB,CACrB,OAAO,CAAC,EAAE,UAAU,EACpB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,YAAY,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAC9C,gBAAgB,CACrB,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAwClD;;;;;;OAMG;IACI,mBAAmB,CACxB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB,mBAAmB,CACxB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,UAAU,EACpB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;IACnC,mBAAmB,CACxB,mBAAmB,EAAE,MAAM,EAC3B,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,QAAQ,EAClB,cAAc,CAAC,EAAE,OAAO,EACxB,OAAO,CAAC,EAAE;QAAE,gBAAgB,CAAC,EAAE,kBAAkB,CAAA;KAAE,GAClD,UAAU,CAAC,SAAS,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;yCA1b5B,wBAAwB;6CAAxB,wBAAwB;CAgfpC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { Configuration } from './configuration';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ApiModule {
|
|
6
|
+
static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule>;
|
|
7
|
+
constructor(parentModule: ApiModule, http: HttpClient);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiModule, [{ optional: true; skipSelf: true; }, { optional: true; }]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ApiModule, never, never, never>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ApiModule>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=api.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/data-access/gn4/src/openapi/api.module.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EAIpB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;;AAEjD,qBAMa,SAAS;WACN,OAAO,CACnB,oBAAoB,EAAE,MAAM,aAAa,GACxC,mBAAmB,CAAC,SAAS,CAAC;gBAQP,YAAY,EAAE,SAAS,EACnC,IAAI,EAAE,UAAU;yCAZnB,SAAS;0CAAT,SAAS;0CAAT,SAAS;CA0BrB"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { HttpParameterCodec } from '@angular/common/http';
|
|
2
|
+
export interface ConfigurationParameters {
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Since 5.0. Use credentials instead
|
|
5
|
+
*/
|
|
6
|
+
apiKeys?: {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
};
|
|
9
|
+
username?: string;
|
|
10
|
+
password?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated Since 5.0. Use credentials instead
|
|
13
|
+
*/
|
|
14
|
+
accessToken?: string | (() => string);
|
|
15
|
+
basePath?: string;
|
|
16
|
+
withCredentials?: boolean;
|
|
17
|
+
encoder?: HttpParameterCodec;
|
|
18
|
+
/**
|
|
19
|
+
* The keys are the names in the securitySchemes section of the OpenAPI
|
|
20
|
+
* document. They should map to the value used for authentication
|
|
21
|
+
* minus any standard prefixes such as 'Basic' or 'Bearer'.
|
|
22
|
+
*/
|
|
23
|
+
credentials?: {
|
|
24
|
+
[key: string]: string | (() => string | undefined);
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export declare class Configuration {
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated Since 5.0. Use credentials instead
|
|
30
|
+
*/
|
|
31
|
+
apiKeys?: {
|
|
32
|
+
[key: string]: string;
|
|
33
|
+
};
|
|
34
|
+
username?: string;
|
|
35
|
+
password?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @deprecated Since 5.0. Use credentials instead
|
|
38
|
+
*/
|
|
39
|
+
accessToken?: string | (() => string);
|
|
40
|
+
basePath?: string;
|
|
41
|
+
withCredentials?: boolean;
|
|
42
|
+
encoder?: HttpParameterCodec;
|
|
43
|
+
/**
|
|
44
|
+
* The keys are the names in the securitySchemes section of the OpenAPI
|
|
45
|
+
* document. They should map to the value used for authentication
|
|
46
|
+
* minus any standard prefixes such as 'Basic' or 'Bearer'.
|
|
47
|
+
*/
|
|
48
|
+
credentials: {
|
|
49
|
+
[key: string]: string | (() => string | undefined);
|
|
50
|
+
};
|
|
51
|
+
constructor(configurationParameters?: ConfigurationParameters);
|
|
52
|
+
/**
|
|
53
|
+
* Select the correct content-type to use for a request.
|
|
54
|
+
* Uses {@link Configuration#isJsonMime} to determine the correct content-type.
|
|
55
|
+
* If no content type is found return the first found type if the contentTypes is not empty
|
|
56
|
+
* @param contentTypes - the array of content types that are available for selection
|
|
57
|
+
* @returns the selected content-type or <code>undefined</code> if no selection could be made.
|
|
58
|
+
*/
|
|
59
|
+
selectHeaderContentType(contentTypes: string[]): string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* Select the correct accept content-type to use for a request.
|
|
62
|
+
* Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.
|
|
63
|
+
* If no content type is found return the first found type if the contentTypes is not empty
|
|
64
|
+
* @param accepts - the array of content types that are available for selection.
|
|
65
|
+
* @returns the selected content-type or <code>undefined</code> if no selection could be made.
|
|
66
|
+
*/
|
|
67
|
+
selectHeaderAccept(accepts: string[]): string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* Check if the given MIME is a JSON MIME.
|
|
70
|
+
* JSON MIME examples:
|
|
71
|
+
* application/json
|
|
72
|
+
* application/json; charset=UTF8
|
|
73
|
+
* APPLICATION/JSON
|
|
74
|
+
* application/vnd.company+json
|
|
75
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
76
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
77
|
+
*/
|
|
78
|
+
isJsonMime(mime: string): boolean;
|
|
79
|
+
lookupCredential(key: string): string | undefined;
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=configuration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../../../../src/libs/data-access/gn4/src/openapi/configuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,MAAM,CAAC,CAAA;IACrC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,OAAO,CAAC,EAAE,kBAAkB,CAAA;IAC5B;;;;OAIG;IACH,WAAW,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,MAAM,GAAG,SAAS,CAAC,CAAA;KAAE,CAAA;CACrE;AAED,qBAAa,aAAa;IACxB;;OAEG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,MAAM,CAAC,CAAA;IACrC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,OAAO,CAAC,EAAE,kBAAkB,CAAA;IAC5B;;;;OAIG;IACH,WAAW,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,MAAM,GAAG,SAAS,CAAC,CAAA;KAAE,CAAA;gBAEvD,uBAAuB,GAAE,uBAA4B;IAejE;;;;;;OAMG;IACI,uBAAuB,CAAC,YAAY,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAY1E;;;;;;OAMG;IACI,kBAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS;IAYhE;;;;;;;;;OASG;IACI,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAYjC,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;CAIzD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpParameterCodec } from '@angular/common/http';
|
|
2
|
+
/**
|
|
3
|
+
* Custom HttpParameterCodec
|
|
4
|
+
* Workaround for https://github.com/angular/angular/issues/18261
|
|
5
|
+
*/
|
|
6
|
+
export declare class CustomHttpParameterCodec implements HttpParameterCodec {
|
|
7
|
+
encodeKey(k: string): string;
|
|
8
|
+
encodeValue(v: string): string;
|
|
9
|
+
decodeKey(k: string): string;
|
|
10
|
+
decodeValue(v: string): string;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=encoder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"encoder.d.ts","sourceRoot":"","sources":["../../../../../src/libs/data-access/gn4/src/openapi/encoder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD;;;GAGG;AACH,qBAAa,wBAAyB,YAAW,kBAAkB;IACjE,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM;IAG5B,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM;IAG9B,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM;IAG5B,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM;CAG/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/libs/data-access/gn4/src/openapi/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
export interface AddressApiModel {
|
|
13
|
+
state?: string;
|
|
14
|
+
address?: string;
|
|
15
|
+
id?: number;
|
|
16
|
+
city?: string;
|
|
17
|
+
zip?: string;
|
|
18
|
+
country?: string;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=address.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"address.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/address.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,eAAe;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
import { MapServerApiModel } from './mapServer.api.model';
|
|
13
|
+
export interface AnonymousMapserverApiModel {
|
|
14
|
+
password?: string;
|
|
15
|
+
username?: string;
|
|
16
|
+
namespace?: string;
|
|
17
|
+
description?: string;
|
|
18
|
+
id?: number;
|
|
19
|
+
namespacePrefix?: string;
|
|
20
|
+
configurl?: string;
|
|
21
|
+
wmsurl?: string;
|
|
22
|
+
wfsurl?: string;
|
|
23
|
+
wcsurl?: string;
|
|
24
|
+
stylerurl?: string;
|
|
25
|
+
pushStyleInWorkspace_JpaWorkaround?: string;
|
|
26
|
+
pushStyleInWorkspace?: MapServerApiModel;
|
|
27
|
+
name?: string;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=anonymousMapserver.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"anonymousMapserver.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AAEzD,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,kCAAkC,CAAC,EAAE,MAAM,CAAA;IAC3C,oBAAoB,CAAC,EAAE,iBAAiB,CAAA;IACxC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { AssociatedSiblingMetadataItemApiModel } from './associatedSiblingMetadataItem.api.model';
|
|
13
|
+
export interface AssociatedApiModel {
|
|
14
|
+
item?: Array<AssociatedSiblingMetadataItemApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=associated.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"associated.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,qCAAqC,EAAE,MAAM,2CAA2C,CAAA;AAEjG,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,KAAK,CAAC,qCAAqC,CAAC,CAAA;CACpD"}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
import { DescriptionApiModel } from './description.api.model';
|
|
13
|
+
import { MultilingualValueApiModel } from './multilingualValue.api.model';
|
|
14
|
+
export interface AssociatedSiblingMetadataItemApiModel {
|
|
15
|
+
id?: string;
|
|
16
|
+
url?: MultilingualValueApiModel;
|
|
17
|
+
type?: string;
|
|
18
|
+
title: MultilingualValueApiModel;
|
|
19
|
+
description: DescriptionApiModel;
|
|
20
|
+
mdType: Array<string>;
|
|
21
|
+
origin?: string;
|
|
22
|
+
agg_isTemporalStatOf?: Array<string>;
|
|
23
|
+
agg_largerWorkCitation?: Array<string>;
|
|
24
|
+
agg_isDescriptionOf?: Array<string>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=associatedSiblingMetadataItem.api.model.d.ts.map
|
package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"associatedSiblingMetadataItem.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAA;AAEzE,MAAM,WAAW,qCAAqC;IACpD,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,GAAG,CAAC,EAAE,yBAAyB,CAAA;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,yBAAyB,CAAA;IAChC,WAAW,EAAE,mBAAmB,CAAA;IAChC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,oBAAoB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IACpC,sBAAsB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IACtC,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;CACpC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { ElementApiModel } from './element.api.model';
|
|
13
|
+
export interface AttributeTableApiModel {
|
|
14
|
+
element?: Array<ElementApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=attributeTable.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attributeTable.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAErD,MAAM,WAAW,sBAAsB;IACrC,OAAO,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;CACjC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
export interface BatchEditParameterApiModel {
|
|
13
|
+
xpath: string;
|
|
14
|
+
value: string;
|
|
15
|
+
condition?: string;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=batchEditParameter.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batchEditParameter.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,0BAA0B;IACzC,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { SectionApiModel } from './section.api.model';
|
|
13
|
+
export interface BatchEditingApiModel {
|
|
14
|
+
section: Array<SectionApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=batchEditing.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batchEditing.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAErD,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;CAChC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
export interface CategoryApiModel {
|
|
13
|
+
id?: string;
|
|
14
|
+
label?: string;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=category.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"category.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/category.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,KAAK,CAAC,EAAE,MAAM,CAAA;CACf"}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
export interface CategoryResponseApiModel {
|
|
13
|
+
label?: {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=categoryResponse.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"categoryResponse.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;CAClC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { RelatedMetadataItemApiModel } from './relatedMetadataItem.api.model';
|
|
13
|
+
export interface ChildrenApiModel {
|
|
14
|
+
item?: Array<RelatedMetadataItemApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=children.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"children.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/children.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAA;AAE7E,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,CAAA;CAC1C"}
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
import { EntryApiModel } from './entry.api.model';
|
|
13
|
+
export interface CodelistApiModel {
|
|
14
|
+
entry?: Array<EntryApiModel>;
|
|
15
|
+
name?: string;
|
|
16
|
+
alias?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=codelist.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"codelist.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAA;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;CACf"}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
export interface CrsApiModel {
|
|
13
|
+
code?: string;
|
|
14
|
+
authority?: string;
|
|
15
|
+
version?: string;
|
|
16
|
+
codeSpace?: string;
|
|
17
|
+
description?: string;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=crs.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"crs.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { RelatedMetadataItemApiModel } from './relatedMetadataItem.api.model';
|
|
13
|
+
export interface DatasetApiModel {
|
|
14
|
+
item?: Array<RelatedMetadataItemApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=dataset.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataset.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAA;AAE7E,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,CAAA;CAC1C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { LocalizedStringApiModel } from './localizedString.api.model';
|
|
13
|
+
export interface DescriptionApiModel {
|
|
14
|
+
value?: Array<LocalizedStringApiModel>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=description.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"description.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/description.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAA;AAErE,MAAM,WAAW,mBAAmB;IAClC,KAAK,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,CAAA;CACvC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
import { ValuesApiModel } from './values.api.model';
|
|
13
|
+
export interface ElementApiModel {
|
|
14
|
+
name?: string;
|
|
15
|
+
definition?: string;
|
|
16
|
+
code?: string;
|
|
17
|
+
link?: string;
|
|
18
|
+
type?: string;
|
|
19
|
+
values?: Array<ValuesApiModel>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=element.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"element.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/element.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AAEnD,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;CAC/B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
export interface EntryApiModel {
|
|
13
|
+
code: string;
|
|
14
|
+
label: string;
|
|
15
|
+
description: string;
|
|
16
|
+
hideInEditMode?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=entry.api.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.api.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB"}
|