geonetwork-ui 2.1.0-initial → 2.2.0-dev.0f95f702

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1173) hide show
  1. package/README.md +3 -3
  2. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +3 -2
  5. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +1 -2
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +1 -1
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +1 -1
  8. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +1 -1
  9. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +1 -1
  10. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +1 -1
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +1 -1
  12. package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +1 -1
  13. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +5 -28
  14. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
  15. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +7 -4
  16. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +41 -13
  17. package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +9 -9
  18. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +7 -7
  19. package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +13 -0
  20. package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +3 -1
  21. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -2
  22. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +17 -16
  23. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +40 -0
  24. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +71 -0
  25. package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +65 -0
  26. package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +9 -0
  27. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +24 -0
  28. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +4 -0
  29. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +24 -0
  30. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +2 -0
  31. package/esm2022/libs/common/domain/src/lib/model/search/aggregation.model.mjs +2 -0
  32. package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +2 -0
  33. package/esm2022/libs/common/domain/src/lib/model/search/index.mjs +5 -0
  34. package/esm2022/libs/common/domain/src/lib/model/search/search.model.mjs +2 -0
  35. package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +7 -0
  36. package/esm2022/libs/common/domain/src/lib/model/thesaurus/index.mjs +2 -0
  37. package/esm2022/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.mjs +2 -0
  38. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +2 -0
  39. package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +1 -1
  40. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +3 -0
  41. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +3 -0
  42. package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +10 -1
  43. package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +251 -0
  44. package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +4 -4
  45. package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +363 -0
  46. package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +32 -4
  47. package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +40 -4
  48. package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +32 -4
  49. package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +110 -4
  50. package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +106 -7
  51. package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +32 -4
  52. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +74 -4
  53. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +117 -0
  54. package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +4 -4
  55. package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +4 -4
  56. package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +273 -10
  57. package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +120 -5
  58. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +1086 -141
  59. package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +52 -4
  60. package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +215 -16
  61. package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +8 -5
  62. package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +51 -5
  63. package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +29 -4
  64. package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +204 -10
  65. package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +109 -10
  66. package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +4 -4
  67. package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +29 -4
  68. package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +67 -4
  69. package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +195 -7
  70. package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +66 -4
  71. package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +4 -4
  72. package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +57 -20
  73. package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +4 -4
  74. package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +69 -4
  75. package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +2 -2
  76. package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +3 -3
  77. package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +1 -1
  78. package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +1 -1
  79. package/esm2022/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.mjs +2 -0
  80. package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +1 -1
  81. package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +1 -1
  82. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +3 -3
  83. package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +1 -1
  84. package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +3 -3
  85. package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +3 -3
  86. package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +1 -1
  87. package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +1 -1
  88. package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +3 -3
  89. package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +1 -1
  90. package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +1 -1
  91. package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +1 -1
  92. package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +3 -3
  93. package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +3 -3
  94. package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +1 -1
  95. package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +1 -1
  96. package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +3 -3
  97. package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +1 -1
  98. package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +3 -3
  99. package/esm2022/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.mjs → formatterData.api.model.mjs} +3 -3
  100. package/esm2022/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.mjs +2 -0
  101. package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +3 -3
  102. package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +1 -1
  103. package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +3 -3
  104. package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +3 -3
  105. package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +1 -1
  106. package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +1 -1
  107. package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +3 -3
  108. package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +3 -3
  109. package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +3 -3
  110. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +3 -3
  111. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +3 -3
  112. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.mjs +13 -0
  113. package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +3 -3
  114. package/esm2022/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.mjs +13 -0
  115. package/esm2022/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.mjs +26 -0
  116. package/esm2022/libs/data-access/gn4/src/openapi/model/language.api.model.mjs +13 -0
  117. package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +1 -1
  118. package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +1 -1
  119. package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +1 -1
  120. package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +3 -3
  121. package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +3 -3
  122. package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +3 -3
  123. package/esm2022/libs/data-access/gn4/src/openapi/model/mapService.api.model.mjs +13 -0
  124. package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +3 -3
  125. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.mjs +13 -0
  126. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.mjs +13 -0
  127. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +3 -3
  128. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +3 -3
  129. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +3 -3
  130. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +1 -1
  131. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +1 -1
  132. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +1 -1
  133. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.mjs +20 -0
  134. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.mjs +20 -0
  135. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +19 -9
  136. package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +1 -1
  137. package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +1 -1
  138. package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +3 -3
  139. package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +3 -3
  140. package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +1 -1
  141. package/esm2022/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.mjs +36 -0
  142. package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +1 -1
  143. package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +1 -1
  144. package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +1 -1
  145. package/esm2022/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.mjs +13 -0
  146. package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +3 -3
  147. package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +1 -1
  148. package/esm2022/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.mjs +13 -0
  149. package/esm2022/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.mjs +36 -0
  150. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +3 -3
  151. package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +3 -3
  152. package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +3 -3
  153. package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +1 -1
  154. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +1 -1
  155. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +1 -1
  156. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +1 -1
  157. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +1 -1
  158. package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +1 -1
  159. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +3 -3
  160. package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +1 -1
  161. package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +3 -3
  162. package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +1 -1
  163. package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +3 -3
  164. package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +1 -1
  165. package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +3 -3
  166. package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +1 -1
  167. package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +3 -3
  168. package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +1 -1
  169. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +1 -1
  170. package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +1 -1
  171. package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +1 -1
  172. package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +1 -1
  173. package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +3 -3
  174. package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +3 -3
  175. package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +1 -1
  176. package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +3 -3
  177. package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +4 -3
  178. package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +3 -3
  179. package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +3 -3
  180. package/esm2022/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.mjs +13 -0
  181. package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +1 -1
  182. package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +3 -3
  183. package/esm2022/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.mjs → translations.api.model.mjs} +3 -3
  184. package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +3 -3
  185. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
  186. package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +1 -1
  187. package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +3 -3
  188. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +1 -1
  189. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +3 -3
  190. package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +3 -3
  191. package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +1 -1
  192. package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +3 -3
  193. package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +3 -3
  194. package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +3 -3
  195. package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +1 -1
  196. package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
  197. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -6
  198. package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +48 -0
  199. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +43 -11
  200. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +3 -3
  201. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +2 -4
  202. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  203. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +1 -1
  204. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  205. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  206. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +14 -7
  207. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +1 -1
  208. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +1 -1
  209. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +2 -6
  210. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +1 -1
  211. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +1 -1
  212. package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +21 -4
  213. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +18 -4
  214. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  215. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +23 -9
  216. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +2 -5
  217. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +1 -1
  218. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +3 -3
  219. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +1 -1
  220. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +1 -1
  221. package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +1 -1
  222. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  223. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +1 -1
  224. package/esm2022/libs/feature/search/src/lib/constants.mjs +1 -1
  225. package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +1 -1
  226. package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +1 -1
  227. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +13 -10
  228. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +2 -2
  229. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +9 -6
  230. package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +3 -3
  231. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +9 -3
  232. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +2 -2
  233. package/esm2022/libs/feature/search/src/lib/state/actions.mjs +1 -1
  234. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +28 -13
  235. package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +1 -1
  236. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +2 -2
  237. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +34 -13
  238. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +8 -6
  239. package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +4 -1
  240. package/esm2022/libs/ui/catalog/src/index.mjs +3 -2
  241. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +2 -1
  242. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +1 -1
  243. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +49 -0
  244. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +16 -0
  245. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +13 -8
  246. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +1 -1
  247. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +4 -3
  248. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +6 -4
  249. package/esm2022/libs/ui/elements/src/index.mjs +2 -1
  250. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +31 -6
  251. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +1 -1
  252. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  253. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +3 -3
  254. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +67 -0
  255. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +1 -1
  256. package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +47 -13
  257. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +21 -10
  258. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +3 -3
  259. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +21 -4
  260. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +68 -0
  261. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +1 -1
  262. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +3 -4
  263. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +11 -3
  264. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +1 -1
  265. package/esm2022/libs/ui/inputs/src/index.mjs +4 -1
  266. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +14 -6
  267. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -42
  268. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +34 -0
  269. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +20 -0
  270. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +3 -3
  271. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +3 -3
  272. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +34 -0
  273. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +36 -5
  274. package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +1 -1
  275. package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +1 -4
  276. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +3 -3
  277. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +3 -3
  278. package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +61 -7
  279. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +1 -1
  280. package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +1 -1
  281. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +6 -2
  282. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +8 -25
  283. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -2
  284. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  285. package/esm2022/libs/util/shared/src/index.mjs +1 -2
  286. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +3 -1
  287. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +8 -5
  288. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +8 -1
  289. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -5
  290. package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +2 -2
  291. package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +1 -1
  292. package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +3 -1
  293. package/esm2022/translations/de.json +72 -23
  294. package/esm2022/translations/en.json +72 -42
  295. package/esm2022/translations/es.json +87 -57
  296. package/esm2022/translations/fr.json +73 -43
  297. package/esm2022/translations/it.json +315 -285
  298. package/esm2022/translations/nl.json +88 -58
  299. package/esm2022/translations/pt.json +87 -57
  300. package/fesm2022/geonetwork-ui.mjs +11467 -6893
  301. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  302. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +1 -1
  303. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  304. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +1 -1
  305. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  306. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +1 -1
  307. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  308. package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +1 -1
  309. package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -1
  310. package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +1 -1
  311. package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -1
  312. package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +1 -1
  313. package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -1
  314. package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +1 -1
  315. package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -1
  316. package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +1 -1
  317. package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -1
  318. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +1 -1
  319. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  320. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +1 -1
  321. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  322. package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +1 -1
  323. package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -1
  324. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +2 -13
  325. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  326. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +3 -2
  327. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  328. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +4 -2
  329. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  330. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +2 -1
  331. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  332. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +3 -3
  333. package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -1
  334. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +4 -4
  335. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  336. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts +3 -0
  337. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -0
  338. package/libs/api/repository/src/lib/gn4/index.d.ts +2 -0
  339. package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -1
  340. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +2 -2
  341. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  342. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +6 -6
  343. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  344. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +16 -0
  345. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -0
  346. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +36 -0
  347. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -0
  348. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts +18 -0
  349. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts.map +1 -0
  350. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -0
  351. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -0
  352. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -0
  353. package/libs/common/domain/src/lib/{record → model/record}/metadata.model.d.ts +1 -1
  354. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -0
  355. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -0
  356. package/libs/common/domain/src/lib/{search → model/search}/aggregation.model.d.ts +2 -2
  357. package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts.map +1 -0
  358. package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -0
  359. package/libs/common/domain/src/lib/model/search/index.d.ts.map +1 -0
  360. package/libs/common/domain/src/lib/model/search/search.model.d.ts.map +1 -0
  361. package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +1 -0
  362. package/libs/common/domain/src/lib/model/thesaurus/index.d.ts +2 -0
  363. package/libs/common/domain/src/lib/model/thesaurus/index.d.ts.map +1 -0
  364. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts +6 -0
  365. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts.map +1 -0
  366. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -0
  367. package/libs/common/domain/src/lib/organizations.service.interface.d.ts +2 -3
  368. package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -1
  369. package/libs/common/domain/src/lib/platform.service.interface.d.ts +16 -0
  370. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -0
  371. package/libs/common/domain/src/lib/{records-repository.interface.d.ts → repository/records-repository.interface.d.ts} +2 -2
  372. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -0
  373. package/libs/data-access/gn4/src/openapi/api/api.d.ts +7 -1
  374. package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -1
  375. package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts +97 -0
  376. package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts.map +1 -0
  377. package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -1
  378. package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts +150 -0
  379. package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts.map +1 -0
  380. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +18 -2
  381. package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -1
  382. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +16 -0
  383. package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -1
  384. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +17 -2
  385. package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -1
  386. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +63 -0
  387. package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -1
  388. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +48 -6
  389. package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -1
  390. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +15 -0
  391. package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -1
  392. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +35 -2
  393. package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -1
  394. package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts +33 -0
  395. package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts.map +1 -0
  396. package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -1
  397. package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -1
  398. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +129 -13
  399. package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -1
  400. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +53 -5
  401. package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -1
  402. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +516 -77
  403. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  404. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +22 -0
  405. package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -1
  406. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +113 -35
  407. package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -1
  408. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +4 -3
  409. package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -1
  410. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +22 -3
  411. package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -1
  412. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +20 -0
  413. package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -1
  414. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +128 -16
  415. package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -1
  416. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +58 -12
  417. package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -1
  418. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +3 -4
  419. package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -1
  420. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +14 -0
  421. package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -1
  422. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +31 -0
  423. package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -1
  424. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +106 -17
  425. package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -1
  426. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +30 -0
  427. package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -1
  428. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +1 -1
  429. package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -1
  430. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +23 -7
  431. package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -1
  432. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +2 -2
  433. package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -1
  434. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +31 -0
  435. package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -1
  436. package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -1
  437. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +3 -3
  438. package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -1
  439. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +7 -7
  440. package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -1
  441. package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +2 -2
  442. package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts +21 -0
  443. package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts.map +1 -0
  444. package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +2 -2
  445. package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +2 -2
  446. package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +2 -2
  447. package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +2 -2
  448. package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +2 -2
  449. package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +2 -2
  450. package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +2 -2
  451. package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +2 -2
  452. package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +2 -2
  453. package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +2 -2
  454. package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +2 -2
  455. package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +2 -2
  456. package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +2 -2
  457. package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +2 -2
  458. package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +2 -2
  459. package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +2 -2
  460. package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +2 -2
  461. package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +2 -2
  462. package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +2 -2
  463. package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts +16 -0
  464. package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts.map +1 -0
  465. package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts +16 -0
  466. package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts.map +1 -0
  467. package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +2 -2
  468. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +8 -5
  469. package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -1
  470. package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +2 -2
  471. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +2 -2
  472. package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +2 -2
  473. package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +2 -2
  474. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +3 -3
  475. package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -1
  476. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +9 -8
  477. package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -1
  478. package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +2 -2
  479. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +5 -2
  480. package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -1
  481. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +6 -3
  482. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -1
  483. package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts +18 -0
  484. package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts.map +1 -0
  485. package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +2 -2
  486. package/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.d.ts → jSONObject.api.model.d.ts} +5 -5
  487. package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts.map +1 -0
  488. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts +50 -0
  489. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +1 -0
  490. package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts +18 -0
  491. package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts.map +1 -0
  492. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +4 -4
  493. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -1
  494. package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +2 -2
  495. package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +2 -2
  496. package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +2 -2
  497. package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +2 -2
  498. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +11 -8
  499. package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -1
  500. package/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.d.ts → mapService.api.model.d.ts} +7 -6
  501. package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts.map +1 -0
  502. package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +2 -2
  503. package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts +18 -0
  504. package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts.map +1 -0
  505. package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts +17 -0
  506. package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts.map +1 -0
  507. package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +2 -2
  508. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +7 -4
  509. package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -1
  510. package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +2 -2
  511. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +5 -4
  512. package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -1
  513. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +5 -4
  514. package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -1
  515. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +8 -8
  516. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -1
  517. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts +25 -0
  518. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +1 -0
  519. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts +31 -0
  520. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +1 -0
  521. package/libs/data-access/gn4/src/openapi/model/models.d.ts +18 -8
  522. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  523. package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +2 -2
  524. package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +2 -2
  525. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +3 -3
  526. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -1
  527. package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +2 -2
  528. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +6 -6
  529. package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -1
  530. package/libs/data-access/gn4/src/openapi/model/{pageJSONWrapper.api.model.d.ts → pageProperties.api.model.d.ts} +27 -28
  531. package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +1 -0
  532. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +3 -3
  533. package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -1
  534. package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +2 -2
  535. package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +2 -2
  536. package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts +17 -0
  537. package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts.map +1 -0
  538. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +5 -2
  539. package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -1
  540. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +3 -3
  541. package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -1
  542. package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts +21 -0
  543. package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts.map +1 -0
  544. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts +46 -0
  545. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +1 -0
  546. package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +2 -2
  547. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +3 -3
  548. package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -1
  549. package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +2 -2
  550. package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +2 -2
  551. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +3 -2
  552. package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -1
  553. package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +2 -2
  554. package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +2 -2
  555. package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +2 -2
  556. package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +2 -2
  557. package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +2 -2
  558. package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +2 -2
  559. package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +2 -2
  560. package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +2 -2
  561. package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +2 -2
  562. package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +2 -2
  563. package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +2 -2
  564. package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +2 -2
  565. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +7 -2
  566. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -1
  567. package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +2 -2
  568. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +5 -2
  569. package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -1
  570. package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +2 -2
  571. package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +2 -2
  572. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +5 -4
  573. package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -1
  574. package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +2 -2
  575. package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +2 -2
  576. package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +2 -2
  577. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +2 -2
  578. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +6 -5
  579. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -1
  580. package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +2 -2
  581. package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +2 -2
  582. package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts +29 -0
  583. package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts.map +1 -0
  584. package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +2 -2
  585. package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +2 -2
  586. package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts +18 -0
  587. package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts.map +1 -0
  588. package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +2 -2
  589. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +7 -7
  590. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -1
  591. package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +2 -2
  592. package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +2 -2
  593. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +3 -3
  594. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -1
  595. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +3 -3
  596. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -1
  597. package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +2 -2
  598. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +5 -2
  599. package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -1
  600. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +5 -2
  601. package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -1
  602. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +4 -4
  603. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -1
  604. package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +2 -2
  605. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +5 -4
  606. package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -1
  607. package/libs/feature/catalog/src/index.d.ts +1 -0
  608. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  609. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  610. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts +21 -0
  611. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts.map +1 -0
  612. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +9 -3
  613. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  614. package/libs/feature/catalog/src/lib/records/records.service.d.ts +1 -1
  615. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  616. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
  617. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +4 -4
  618. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  619. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  620. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -1
  621. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  622. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
  623. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  624. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +3 -2
  625. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -1
  626. package/libs/feature/editor/src/lib/services/editor.service.d.ts +1 -1
  627. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  628. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +1 -1
  629. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  630. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +1 -0
  631. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  632. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  633. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +3 -2
  634. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -1
  635. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +5 -6
  636. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  637. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +2 -2
  638. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  639. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +5 -2
  640. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  641. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +1 -1
  642. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  643. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +2 -2
  644. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  645. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +3 -3
  646. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  647. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +9 -9
  648. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  649. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +2 -2
  650. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  651. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +3 -3
  652. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  653. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +1 -1
  654. package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -1
  655. package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -1
  656. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -1
  657. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  658. package/libs/feature/search/src/lib/constants.d.ts +1 -1
  659. package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
  660. package/libs/feature/search/src/lib/facets/facets.service.d.ts +1 -1
  661. package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -1
  662. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +5 -3
  663. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  664. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +4 -3
  665. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  666. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +2 -2
  667. package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -1
  668. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +4 -3
  669. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  670. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -1
  671. package/libs/feature/search/src/lib/state/actions.d.ts +2 -2
  672. package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -1
  673. package/libs/feature/search/src/lib/state/effects.d.ts +5 -4
  674. package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -1
  675. package/libs/feature/search/src/lib/state/reducer.d.ts +2 -2
  676. package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -1
  677. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -2
  678. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  679. package/libs/feature/search/src/lib/state/selectors.d.ts +5 -5
  680. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  681. package/libs/feature/search/src/lib/utils/service/fields.d.ts +18 -10
  682. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  683. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +1 -1
  684. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  685. package/libs/feature/search/src/lib/utils/service/search.service.d.ts +2 -1
  686. package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -1
  687. package/libs/ui/catalog/src/index.d.ts +2 -1
  688. package/libs/ui/catalog/src/index.d.ts.map +1 -1
  689. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
  690. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
  691. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
  692. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +18 -0
  693. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -0
  694. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +8 -0
  695. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -0
  696. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +8 -7
  697. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  698. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -2
  699. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
  700. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +2 -1
  701. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
  702. package/libs/ui/elements/src/index.d.ts +1 -0
  703. package/libs/ui/elements/src/index.d.ts.map +1 -1
  704. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +11 -3
  705. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  706. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
  707. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  708. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +2 -2
  709. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  710. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +1 -1
  711. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  712. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts +20 -0
  713. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  714. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -1
  715. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
  716. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +3 -1
  717. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -1
  718. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +3 -1
  719. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  720. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +2 -13
  721. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  722. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +1 -1
  723. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  724. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +22 -0
  725. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -0
  726. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +1 -1
  727. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  728. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +13 -11
  729. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  730. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
  731. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
  732. package/libs/ui/inputs/src/index.d.ts +3 -0
  733. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  734. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +5 -2
  735. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  736. package/libs/ui/inputs/src/lib/button/button.component.d.ts +0 -3
  737. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  738. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +13 -0
  739. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -0
  740. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +11 -0
  741. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -0
  742. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +13 -0
  743. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -0
  744. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +20 -13
  745. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  746. package/libs/ui/search/src/lib/facets/facets.model.d.ts +1 -1
  747. package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -1
  748. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +2 -4
  749. package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -1
  750. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +13 -5
  751. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -1
  752. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +2 -3
  753. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
  754. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +2 -3
  755. package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -1
  756. package/libs/ui/search/src/lib/ui-search.module.d.ts +3 -2
  757. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  758. package/libs/util/app-config/src/lib/app-config.d.ts +1 -1
  759. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  760. package/libs/util/app-config/src/lib/model.d.ts +3 -11
  761. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  762. package/libs/util/shared/src/index.d.ts +0 -1
  763. package/libs/util/shared/src/index.d.ts.map +1 -1
  764. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +1 -1
  765. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  766. package/libs/util/shared/src/lib/links/link-utils.d.ts +3 -3
  767. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  768. package/libs/util/shared/src/lib/services/theme.service.d.ts +1 -0
  769. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  770. package/libs/util/shared/src/lib/util-shared.module.d.ts +3 -4
  771. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -1
  772. package/libs/util/shared/src/lib/utils/sort-by.d.ts +1 -1
  773. package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -1
  774. package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -1
  775. package/package.json +4 -6
  776. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +2 -1
  777. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
  778. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
  779. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
  780. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +4 -1
  781. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +3 -2
  782. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +1 -2
  783. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +1 -1
  784. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +1 -1
  785. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +1 -1
  786. package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +1 -1
  787. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +1 -1
  788. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +1 -1
  789. package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +1 -1
  790. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +2 -47
  791. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -2
  792. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +14 -9
  793. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +50 -18
  794. package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +4 -4
  795. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +10 -4
  796. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +14 -0
  797. package/src/libs/api/repository/src/lib/gn4/index.ts +2 -0
  798. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +3 -2
  799. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +21 -25
  800. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +57 -0
  801. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +114 -0
  802. package/src/libs/api/repository/src/lib/gn4/selection/selection.service.ts +80 -0
  803. package/src/libs/common/domain/src/lib/{record → model/record}/metadata.model.ts +1 -0
  804. package/src/libs/common/domain/src/lib/{search → model/search}/aggregation.model.ts +2 -2
  805. package/src/libs/common/domain/src/lib/model/thesaurus/index.ts +1 -0
  806. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +6 -0
  807. package/src/libs/common/domain/src/lib/organizations.service.interface.ts +2 -3
  808. package/src/libs/common/domain/src/lib/platform.service.interface.ts +22 -0
  809. package/src/libs/common/domain/src/lib/{records-repository.interface.ts → repository/records-repository.interface.ts} +2 -2
  810. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +5 -0
  811. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +9 -1
  812. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +19 -1
  813. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +1 -1
  814. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +1 -1
  815. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +1 -1
  816. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -1
  817. package/src/libs/data-access/gn4/src/openapi/api/api.ts +9 -0
  818. package/src/libs/data-access/gn4/src/openapi/api/atom.api.service.ts +520 -0
  819. package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +3 -3
  820. package/src/libs/data-access/gn4/src/openapi/api/formatters.api.service.ts +819 -0
  821. package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +78 -5
  822. package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +95 -3
  823. package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +77 -5
  824. package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +271 -3
  825. package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +265 -12
  826. package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +75 -3
  827. package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +188 -5
  828. package/src/libs/data-access/gn4/src/openapi/api/mapservices.api.service.ts +171 -0
  829. package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +3 -3
  830. package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +3 -3
  831. package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +687 -50
  832. package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +353 -5
  833. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +3383 -697
  834. package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +146 -3
  835. package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +602 -66
  836. package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +15 -3
  837. package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +240 -3
  838. package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +62 -3
  839. package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +517 -39
  840. package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +281 -36
  841. package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +7 -8
  842. package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +62 -3
  843. package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +158 -3
  844. package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +477 -17
  845. package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +154 -3
  846. package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +4 -4
  847. package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +130 -44
  848. package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +5 -5
  849. package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +166 -3
  850. package/src/libs/data-access/gn4/src/openapi/api.module.ts +35 -2
  851. package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +3 -3
  852. package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +7 -7
  853. package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +2 -2
  854. package/src/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.ts +19 -0
  855. package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +2 -2
  856. package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +2 -2
  857. package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +2 -2
  858. package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +2 -2
  859. package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +2 -2
  860. package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +2 -2
  861. package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +2 -2
  862. package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +2 -2
  863. package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +2 -2
  864. package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +2 -2
  865. package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +2 -2
  866. package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +2 -2
  867. package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +2 -2
  868. package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +2 -2
  869. package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +2 -2
  870. package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +2 -2
  871. package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +2 -2
  872. package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +2 -2
  873. package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +2 -2
  874. package/src/libs/data-access/gn4/src/openapi/model/formatterData.api.model.ts +16 -0
  875. package/src/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.ts +16 -0
  876. package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +2 -2
  877. package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +8 -5
  878. package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +2 -2
  879. package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +2 -2
  880. package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +2 -2
  881. package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +2 -2
  882. package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +3 -3
  883. package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +9 -8
  884. package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +2 -2
  885. package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +5 -2
  886. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +6 -3
  887. package/src/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.ts +18 -0
  888. package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +2 -2
  889. package/src/libs/data-access/gn4/src/openapi/model/{inlineObject2.api.model.ts → jSONObject.api.model.ts} +4 -4
  890. package/src/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.ts +59 -0
  891. package/src/libs/data-access/gn4/src/openapi/model/language.api.model.ts +18 -0
  892. package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +4 -4
  893. package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +2 -2
  894. package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +2 -2
  895. package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +2 -2
  896. package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +2 -2
  897. package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +11 -8
  898. package/src/libs/data-access/gn4/src/openapi/model/{externalResourceManagementProperties.api.model.ts → mapService.api.model.ts} +6 -5
  899. package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +2 -2
  900. package/src/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.ts +18 -0
  901. package/src/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.ts +17 -0
  902. package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +2 -2
  903. package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +7 -4
  904. package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +2 -2
  905. package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +5 -4
  906. package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +5 -4
  907. package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +8 -8
  908. package/src/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.ts +25 -0
  909. package/src/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.ts +31 -0
  910. package/src/libs/data-access/gn4/src/openapi/model/models.ts +18 -8
  911. package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +2 -2
  912. package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +2 -2
  913. package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +3 -3
  914. package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +2 -2
  915. package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +6 -6
  916. package/src/libs/data-access/gn4/src/openapi/model/{pageJSONWrapper.api.model.ts → pageProperties.api.model.ts} +25 -28
  917. package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +3 -3
  918. package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +2 -2
  919. package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +2 -2
  920. package/src/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.ts +17 -0
  921. package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +5 -2
  922. package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +3 -3
  923. package/src/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.ts +21 -0
  924. package/src/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.ts +56 -0
  925. package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +2 -2
  926. package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +3 -3
  927. package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +2 -2
  928. package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +2 -2
  929. package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +3 -2
  930. package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +2 -2
  931. package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +2 -2
  932. package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +2 -2
  933. package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +2 -2
  934. package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +2 -2
  935. package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +2 -2
  936. package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +2 -2
  937. package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +2 -2
  938. package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +2 -2
  939. package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +2 -2
  940. package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +2 -2
  941. package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +2 -2
  942. package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +7 -2
  943. package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +2 -2
  944. package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +5 -2
  945. package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +2 -2
  946. package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +2 -2
  947. package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +5 -4
  948. package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +2 -2
  949. package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +2 -2
  950. package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +2 -2
  951. package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +2 -2
  952. package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +6 -4
  953. package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +2 -2
  954. package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +2 -2
  955. package/src/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.ts +25 -0
  956. package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +2 -2
  957. package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +2 -2
  958. package/src/libs/data-access/gn4/src/openapi/model/translations.api.model.ts +18 -0
  959. package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +2 -2
  960. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +7 -7
  961. package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +2 -2
  962. package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +2 -2
  963. package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +3 -3
  964. package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +3 -3
  965. package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +2 -2
  966. package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +5 -2
  967. package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +5 -2
  968. package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +4 -4
  969. package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +2 -2
  970. package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +5 -4
  971. package/src/libs/data-access/gn4/src/spec.yaml +11069 -7073
  972. package/src/libs/feature/catalog/src/index.ts +1 -0
  973. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -3
  974. package/src/libs/feature/catalog/src/lib/my-org/my-org.service.ts +61 -0
  975. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +10 -2
  976. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +45 -12
  977. package/src/libs/feature/catalog/src/lib/records/records.service.ts +1 -1
  978. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +3 -3
  979. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +2 -2
  980. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +3 -3
  981. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +1 -1
  982. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +1 -1
  983. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +19 -1
  984. package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
  985. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +2 -7
  986. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +1 -0
  987. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +3 -1
  988. package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +21 -3
  989. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +26 -8
  990. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +2 -2
  991. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +17 -2
  992. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -7
  993. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +2 -2
  994. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +1 -1
  995. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +2 -2
  996. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +2 -2
  997. package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +4 -1
  998. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +4 -1
  999. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +1 -1
  1000. package/src/libs/feature/search/src/lib/constants.ts +1 -1
  1001. package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +1 -1
  1002. package/src/libs/feature/search/src/lib/facets/facets.service.ts +4 -1
  1003. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +5 -3
  1004. package/src/libs/feature/search/src/lib/feature-search.module.ts +1 -1
  1005. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -0
  1006. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +4 -2
  1007. package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +2 -2
  1008. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +3 -2
  1009. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +16 -4
  1010. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +4 -1
  1011. package/src/libs/feature/search/src/lib/state/actions.ts +2 -2
  1012. package/src/libs/feature/search/src/lib/state/effects.ts +25 -10
  1013. package/src/libs/feature/search/src/lib/state/reducer.ts +2 -2
  1014. package/src/libs/feature/search/src/lib/state/search.facade.ts +3 -3
  1015. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +12 -11
  1016. package/src/libs/feature/search/src/lib/utils/service/fields.ts +49 -25
  1017. package/src/libs/feature/search/src/lib/utils/service/search.service.ts +8 -1
  1018. package/src/libs/ui/catalog/src/index.ts +2 -1
  1019. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +1 -0
  1020. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +1 -1
  1021. package/src/libs/ui/catalog/src/lib/{organisations-sort/organisations-sort.component.html → organisations-filter/organisations-filter.component.html} +6 -3
  1022. package/src/libs/ui/catalog/src/lib/{organisations-sort/organisations-sort.component.ts → organisations-filter/organisations-filter.component.ts} +11 -5
  1023. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.html +5 -0
  1024. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +11 -0
  1025. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +6 -3
  1026. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +1 -1
  1027. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +4 -1
  1028. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +2 -1
  1029. package/src/libs/ui/elements/src/index.ts +1 -0
  1030. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +33 -5
  1031. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +34 -3
  1032. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +1 -1
  1033. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
  1034. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +1 -1
  1035. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +1 -1
  1036. package/src/libs/ui/elements/src/lib/max-lines/max-lines.component.html +15 -0
  1037. package/src/libs/ui/elements/src/lib/max-lines/max-lines.component.ts +83 -0
  1038. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +1 -1
  1039. package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +55 -13
  1040. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +31 -28
  1041. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +13 -1
  1042. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +1 -1
  1043. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +2 -14
  1044. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  1045. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +19 -1
  1046. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.css +22 -0
  1047. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +75 -0
  1048. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +65 -0
  1049. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +1 -1
  1050. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +1 -1
  1051. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +5 -0
  1052. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +1 -1
  1053. package/src/libs/ui/inputs/src/index.ts +3 -0
  1054. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +7 -0
  1055. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -44
  1056. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.css +24 -0
  1057. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.html +8 -0
  1058. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +30 -0
  1059. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +3 -0
  1060. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +24 -0
  1061. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +20 -0
  1062. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
  1063. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -1
  1064. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +25 -0
  1065. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +29 -0
  1066. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +17 -0
  1067. package/src/libs/ui/search/src/lib/facets/facets.model.ts +1 -1
  1068. package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +2 -6
  1069. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +1 -0
  1070. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +3 -4
  1071. package/src/libs/ui/search/src/lib/record-table/record-table.component.html +81 -16
  1072. package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +60 -4
  1073. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +3 -3
  1074. package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +2 -3
  1075. package/src/libs/ui/search/src/lib/ui-search.module.ts +2 -0
  1076. package/src/libs/util/app-config/src/lib/app-config.ts +8 -31
  1077. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -1
  1078. package/src/libs/util/app-config/src/lib/model.ts +3 -11
  1079. package/src/libs/util/shared/src/index.ts +0 -1
  1080. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +3 -1
  1081. package/src/libs/util/shared/src/lib/links/link-utils.ts +8 -5
  1082. package/src/libs/util/shared/src/lib/services/theme.service.ts +9 -0
  1083. package/src/libs/util/shared/src/lib/util-shared.module.ts +2 -3
  1084. package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +1 -1
  1085. package/src/libs/util/shared/src/lib/utils/sort-by.ts +1 -1
  1086. package/src/libs/util/shared/src/lib/utils/strip-html.ts +1 -0
  1087. package/tailwind.base.css +33 -3
  1088. package/translations/de.json +72 -23
  1089. package/translations/en.json +72 -42
  1090. package/translations/es.json +87 -57
  1091. package/translations/fr.json +73 -43
  1092. package/translations/it.json +315 -285
  1093. package/translations/nl.json +88 -58
  1094. package/translations/pt.json +87 -57
  1095. package/translations/sk.json +319 -0
  1096. package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +0 -9
  1097. package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +0 -24
  1098. package/esm2022/libs/common/domain/src/lib/record/index.mjs +0 -4
  1099. package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +0 -24
  1100. package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +0 -2
  1101. package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +0 -3
  1102. package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +0 -2
  1103. package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +0 -2
  1104. package/esm2022/libs/common/domain/src/lib/search/index.mjs +0 -5
  1105. package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +0 -2
  1106. package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +0 -7
  1107. package/esm2022/libs/common/domain/src/lib/user.model.mjs +0 -2
  1108. package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +0 -13
  1109. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +0 -2
  1110. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +0 -2
  1111. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +0 -2
  1112. package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +0 -2
  1113. package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +0 -39
  1114. package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +0 -40
  1115. package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +0 -34
  1116. package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +0 -2
  1117. package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +0 -1
  1118. package/libs/common/domain/src/lib/record/contact.model.d.ts.map +0 -1
  1119. package/libs/common/domain/src/lib/record/index.d.ts.map +0 -1
  1120. package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +0 -1
  1121. package/libs/common/domain/src/lib/record/organization.model.d.ts.map +0 -1
  1122. package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +0 -1
  1123. package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +0 -1
  1124. package/libs/common/domain/src/lib/search/filter.model.d.ts.map +0 -1
  1125. package/libs/common/domain/src/lib/search/index.d.ts.map +0 -1
  1126. package/libs/common/domain/src/lib/search/search.model.d.ts.map +0 -1
  1127. package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +0 -1
  1128. package/libs/common/domain/src/lib/user.model.d.ts.map +0 -1
  1129. package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +0 -1
  1130. package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +0 -1
  1131. package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +0 -30
  1132. package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +0 -1
  1133. package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +0 -38
  1134. package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +0 -1
  1135. package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +0 -32
  1136. package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +0 -1
  1137. package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +0 -44
  1138. package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +0 -1
  1139. package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +0 -21
  1140. package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +0 -1
  1141. package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +0 -1
  1142. package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +0 -14
  1143. package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +0 -1
  1144. package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +0 -11
  1145. package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +0 -1
  1146. package/libs/util/shared/src/lib/pipes/index.d.ts +0 -2
  1147. package/libs/util/shared/src/lib/pipes/index.d.ts.map +0 -1
  1148. package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +0 -26
  1149. package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +0 -30
  1150. package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +0 -32
  1151. package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +0 -44
  1152. package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +0 -21
  1153. package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +0 -36
  1154. package/src/libs/util/shared/src/lib/pipes/index.ts +0 -1
  1155. /package/libs/common/domain/src/lib/{dataviz-configuration.model.d.ts → model/dataviz/dataviz-configuration.model.d.ts} +0 -0
  1156. /package/libs/common/domain/src/lib/{record → model/record}/contact.model.d.ts +0 -0
  1157. /package/libs/common/domain/src/lib/{record → model/record}/index.d.ts +0 -0
  1158. /package/libs/common/domain/src/lib/{record → model/record}/organization.model.d.ts +0 -0
  1159. /package/libs/common/domain/src/lib/{search → model/search}/filter.model.d.ts +0 -0
  1160. /package/libs/common/domain/src/lib/{search → model/search}/index.d.ts +0 -0
  1161. /package/libs/common/domain/src/lib/{search → model/search}/search.model.d.ts +0 -0
  1162. /package/libs/common/domain/src/lib/{search → model/search}/sort-by.model.d.ts +0 -0
  1163. /package/libs/common/domain/src/lib/{user.model.d.ts → model/user/user.model.d.ts} +0 -0
  1164. /package/src/libs/common/domain/src/lib/{dataviz-configuration.model.ts → model/dataviz/dataviz-configuration.model.ts} +0 -0
  1165. /package/src/libs/common/domain/src/lib/{record → model/record}/contact.model.ts +0 -0
  1166. /package/src/libs/common/domain/src/lib/{record → model/record}/index.ts +0 -0
  1167. /package/src/libs/common/domain/src/lib/{record → model/record}/organization.model.ts +0 -0
  1168. /package/src/libs/common/domain/src/lib/{search → model/search}/filter.model.ts +0 -0
  1169. /package/src/libs/common/domain/src/lib/{search → model/search}/index.ts +0 -0
  1170. /package/src/libs/common/domain/src/lib/{search → model/search}/search.model.ts +0 -0
  1171. /package/src/libs/common/domain/src/lib/{search → model/search}/sort-by.model.ts +0 -0
  1172. /package/src/libs/common/domain/src/lib/{user.model.ts → model/user/user.model.ts} +0 -0
  1173. /package/src/libs/ui/{catalog/src/lib/organisations-sort/organisations-sort.component.css → elements/src/lib/max-lines/max-lines.component.css} +0 -0
@@ -1,16 +1,17 @@
1
1
  import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { BatchEditParameterApiModel } from '../model/models';
4
- import { ElementApiModel } from '../model/models';
3
+ import { AssociatedRecordApiModel, BatchEditParameterApiModel } from '../model/models';
5
4
  import { ExtentDtoApiModel } from '../model/models';
6
5
  import { FeatureResponseApiModel } from '../model/models';
7
6
  import { IProcessingReportApiModel } from '../model/models';
8
- import { InlineObject1ApiModel } from '../model/models';
7
+ import { InlineObject3ApiModel } from '../model/models';
8
+ import { MetadataBatchApproveParameterApiModel } from '../model/models';
9
+ import { MetadataBatchSubmitParameterApiModel } from '../model/models';
9
10
  import { MetadataCategoryApiModel } from '../model/models';
10
11
  import { MetadataProcessingReportApiModel } from '../model/models';
11
12
  import { MetadataResourceApiModel } from '../model/models';
12
- import { MetadataStatusResponseApiModel } from '../model/models';
13
- import { MetadataWorkflowStatusResponseApiModel } from '../model/models';
13
+ import { MetadataStatusParameterApiModel } from '../model/models';
14
+ import { PublicationOptionApiModel } from '../model/models';
14
15
  import { RelatedResponseApiModel } from '../model/models';
15
16
  import { ReportsApiModel } from '../model/models';
16
17
  import { SavedQueryApiModel } from '../model/models';
@@ -29,6 +30,25 @@ export declare class RecordsApiService {
29
30
  constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
30
31
  private addToHttpParams;
31
32
  private addToHttpParamsRecursive;
33
+ /**
34
+ * Add element
35
+ * @param metadataUuid Record UUID.
36
+ * @param ref Reference of the insertion point.
37
+ * @param name Name of the element to add (with prefix)
38
+ * @param child Use geonet:attribute for attributes or child name.
39
+ * @param displayAttributes Should attributes be shown on the editor snippet?
40
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
41
+ * @param reportProgress flag to report request and response progress.
42
+ */
43
+ addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
44
+ httpHeaderAccept?: 'application/json';
45
+ }): Observable<any>;
46
+ addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
47
+ httpHeaderAccept?: 'application/json';
48
+ }): Observable<HttpResponse<any>>;
49
+ addElement(metadataUuid: string, ref: string, name: string, child?: string, displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
50
+ httpHeaderAccept?: 'application/json';
51
+ }): Observable<HttpEvent<any>>;
32
52
  /**
33
53
  * Reorder element
34
54
  * @param metadataUuid Record UUID.
@@ -38,13 +58,13 @@ export declare class RecordsApiService {
38
58
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
39
59
  * @param reportProgress flag to report request and response progress.
40
60
  */
41
- addElement(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
61
+ addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
42
62
  httpHeaderAccept?: 'application/json';
43
63
  }): Observable<any>;
44
- addElement(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
64
+ addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
45
65
  httpHeaderAccept?: 'application/json';
46
66
  }): Observable<HttpResponse<any>>;
47
- addElement(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
67
+ addElement1(metadataUuid: string, ref: string, direction: 'up' | 'down', displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
48
68
  httpHeaderAccept?: 'application/json';
49
69
  }): Observable<HttpEvent<any>>;
50
70
  /**
@@ -102,6 +122,21 @@ export declare class RecordsApiService {
102
122
  }): Observable<HttpEvent<{
103
123
  [key: string]: string;
104
124
  }>>;
125
+ /**
126
+ * Set the records status to approved
127
+ * @param metadataBatchApproveParameterApiModel
128
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
129
+ * @param reportProgress flag to report request and response progress.
130
+ */
131
+ approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
132
+ httpHeaderAccept?: 'application/json' | '*/*';
133
+ }): Observable<MetadataProcessingReportApiModel>;
134
+ approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
135
+ httpHeaderAccept?: 'application/json' | '*/*';
136
+ }): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
137
+ approve(metadataBatchApproveParameterApiModel: MetadataBatchApproveParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
138
+ httpHeaderAccept?: 'application/json' | '*/*';
139
+ }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
105
140
  /**
106
141
  * Edit a set of records by XPath expressions. This operations applies the update-fixed-info.xsl transformation for the metadata schema and updates the change date if the parameter updateDateStamp is set to true.
107
142
  * @param batchEditParameterApiModel
@@ -157,6 +192,21 @@ export declare class RecordsApiService {
157
192
  }): Observable<HttpEvent<{
158
193
  [key: string]: boolean;
159
194
  }>>;
195
+ /**
196
+ * Check the DOI URL created based on current configuration and pattern.
197
+ * @param metadataUuid Record UUID.
198
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
199
+ * @param reportProgress flag to report request and response progress.
200
+ */
201
+ checkDoiUrl(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
202
+ httpHeaderAccept?: 'application/json' | 'text/plain';
203
+ }): Observable<string>;
204
+ checkDoiUrl(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
205
+ httpHeaderAccept?: 'application/json' | 'text/plain';
206
+ }): Observable<HttpResponse<string>>;
207
+ checkDoiUrl(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
208
+ httpHeaderAccept?: 'application/json' | 'text/plain';
209
+ }): Observable<HttpEvent<string>>;
160
210
  /**
161
211
  * Check the status of validation with the INSPIRE service.
162
212
  * User MUST be able to edit the record to validate it. An INSPIRE endpoint must be configured in Settings. If the process is complete an object with status is returned.
@@ -195,6 +245,25 @@ export declare class RecordsApiService {
195
245
  cleanValidationStatus(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
196
246
  httpHeaderAccept?: 'application/json';
197
247
  }): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
248
+ /**
249
+ * Close a record task
250
+ * @param metadataUuid Record UUID.
251
+ * @param statusId Status identifier
252
+ * @param userId User identifier
253
+ * @param changeDate Change date
254
+ * @param closeDate Close date
255
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
256
+ * @param reportProgress flag to report request and response progress.
257
+ */
258
+ closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'body', reportProgress?: boolean, options?: {
259
+ httpHeaderAccept?: 'application/json';
260
+ }): Observable<any>;
261
+ closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'response', reportProgress?: boolean, options?: {
262
+ httpHeaderAccept?: 'application/json';
263
+ }): Observable<HttpResponse<any>>;
264
+ closeTask(metadataUuid: string, statusId: number, userId: number, changeDate: string, closeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
265
+ httpHeaderAccept?: 'application/json';
266
+ }): Observable<HttpEvent<any>>;
198
267
  /**
199
268
  * Create a new record
200
269
  * Create a record from a template or by copying an existing record.Return the UUID of the newly created record. Existing links in the source record are preserved, this means that the new record may contains link to the source attachments. They need to be manually updated after creation.
@@ -202,20 +271,21 @@ export declare class RecordsApiService {
202
271
  * @param group The group the record is attached to.
203
272
  * @param metadataType The type of record.
204
273
  * @param targetUuid Assign a custom UUID. If this UUID already exist an error is returned. This is enabled only if metadata create / generate UUID settings is activated.
205
- * @param isVisibleByAllGroupMembers Is published to all user group members? If not, only the author and administrator can edit the record.
274
+ * @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
206
275
  * @param category Tags to assign to the record.
207
276
  * @param hasCategoryOfSource Copy categories from source?
208
277
  * @param isChildOfSource Is child of the record to copy?
278
+ * @param hasAttachmentsOfSource Copy attachments from source?
209
279
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
210
280
  * @param reportProgress flag to report request and response progress.
211
281
  */
212
- create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, isVisibleByAllGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
282
+ create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
213
283
  httpHeaderAccept?: 'application/json';
214
284
  }): Observable<string>;
215
- create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, isVisibleByAllGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
285
+ create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
216
286
  httpHeaderAccept?: 'application/json';
217
287
  }): Observable<HttpResponse<string>>;
218
- create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, isVisibleByAllGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
288
+ create(sourceUuid: string, group: string, metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', targetUuid?: string, allowEditGroupMembers?: boolean, category?: Array<string>, hasCategoryOfSource?: boolean, isChildOfSource?: boolean, hasAttachmentsOfSource?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
219
289
  httpHeaderAccept?: 'application/json';
220
290
  }): Observable<HttpEvent<string>>;
221
291
  /**
@@ -239,6 +309,54 @@ export declare class RecordsApiService {
239
309
  }): Observable<HttpEvent<{
240
310
  [key: string]: string;
241
311
  }>>;
312
+ /**
313
+ * Delete a metadata resource
314
+ * @param metadataUuid The metadata UUID
315
+ * @param resourceId The resource identifier (ie. filename)
316
+ * @param approved Use approved version or not
317
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
318
+ * @param reportProgress flag to report request and response progress.
319
+ */
320
+ delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
321
+ httpHeaderAccept?: 'application/json';
322
+ }): Observable<any>;
323
+ delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
324
+ httpHeaderAccept?: 'application/json';
325
+ }): Observable<HttpResponse<any>>;
326
+ delResource(metadataUuid: string, resourceId: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
327
+ httpHeaderAccept?: 'application/json';
328
+ }): Observable<HttpEvent<any>>;
329
+ /**
330
+ * Delete all uploaded metadata resources
331
+ * @param metadataUuid The metadata UUID
332
+ * @param approved Use approved version or not
333
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
334
+ * @param reportProgress flag to report request and response progress.
335
+ */
336
+ delResources(metadataUuid: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
337
+ httpHeaderAccept?: 'application/json';
338
+ }): Observable<any>;
339
+ delResources(metadataUuid: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
340
+ httpHeaderAccept?: 'application/json';
341
+ }): Observable<HttpResponse<any>>;
342
+ delResources(metadataUuid: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
343
+ httpHeaderAccept?: 'application/json';
344
+ }): Observable<HttpEvent<any>>;
345
+ /**
346
+ * Delete all record status
347
+ * @param metadataUuid Record UUID.
348
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
349
+ * @param reportProgress flag to report request and response progress.
350
+ */
351
+ deleteAllRecordStatus(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
352
+ httpHeaderAccept?: 'application/json';
353
+ }): Observable<any>;
354
+ deleteAllRecordStatus(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
355
+ httpHeaderAccept?: 'application/json';
356
+ }): Observable<HttpResponse<any>>;
357
+ deleteAllRecordStatus(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
358
+ httpHeaderAccept?: 'application/json';
359
+ }): Observable<HttpEvent<any>>;
242
360
  /**
243
361
  * Delete attribute
244
362
  * @param metadataUuid Record UUID.
@@ -274,6 +392,41 @@ export declare class RecordsApiService {
274
392
  deleteElement(metadataUuid: string, ref: Array<string>, parent: string, displayAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
275
393
  httpHeaderAccept?: 'application/json';
276
394
  }): Observable<HttpEvent<any>>;
395
+ /**
396
+ * Delete a record
397
+ * User MUST be able to edit the record to delete it. By default, a backup is made in ZIP format. After that, the record attachments are removed, the document removed from the index and then from the database.
398
+ * @param metadataUuid Record UUID.
399
+ * @param withBackup Backup first the record as MEF in the metadata removed folder.
400
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
401
+ * @param reportProgress flag to report request and response progress.
402
+ */
403
+ deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
404
+ httpHeaderAccept?: 'application/json';
405
+ }): Observable<any>;
406
+ deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
407
+ httpHeaderAccept?: 'application/json';
408
+ }): Observable<HttpResponse<any>>;
409
+ deleteRecord(metadataUuid: string, withBackup?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
410
+ httpHeaderAccept?: 'application/json';
411
+ }): Observable<HttpEvent<any>>;
412
+ /**
413
+ * Delete a record status
414
+ * @param metadataUuid Record UUID.
415
+ * @param statusId Status identifier
416
+ * @param userId User identifier
417
+ * @param changeDate Change date
418
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
419
+ * @param reportProgress flag to report request and response progress.
420
+ */
421
+ deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'body', reportProgress?: boolean, options?: {
422
+ httpHeaderAccept?: 'application/json';
423
+ }): Observable<any>;
424
+ deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'response', reportProgress?: boolean, options?: {
425
+ httpHeaderAccept?: 'application/json';
426
+ }): Observable<HttpResponse<any>>;
427
+ deleteRecordStatus(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
428
+ httpHeaderAccept?: 'application/json';
429
+ }): Observable<HttpEvent<any>>;
277
430
  /**
278
431
  * Delete one or more records
279
432
  * User MUST be able to edit the record to delete it.
@@ -446,6 +599,28 @@ export declare class RecordsApiService {
446
599
  getActiveUsers(dateFrom: string, dateTo: string, groups?: Array<number>, observe?: 'events', reportProgress?: boolean, options?: {
447
600
  httpHeaderAccept?: 'application/json';
448
601
  }): Observable<HttpEvent<any>>;
602
+ /**
603
+ * Get record extents as image
604
+ * A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
605
+ * @param metadataUuid Record UUID.
606
+ * @param mapsrs (optional) the background map projection. If not passed uses the region/getmap/mapproj setting. If the setting is not set defaults to EPSG:4326
607
+ * @param width (optional) width of the image that is created. Only one of width and height are permitted
608
+ * @param height (optional) height of the image that is created. Only one of width and height are permitted
609
+ * @param background (optional) URL for loading a background image for regions or a key that references the namedBackgrounds (configured in config-spring-geonetwork.xml). A WMS GetMap request is the typical example. The URL must be parameterized with the following parameters: minx, maxx, miny, maxy, width, height
610
+ * @param fillColor (optional) Fill color with format RED,GREEN,BLUE,ALPHA
611
+ * @param strokeColor (optional) Stroke color with format RED,GREEN,BLUE,ALPHA
612
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
613
+ * @param reportProgress flag to report request and response progress.
614
+ */
615
+ getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'body', reportProgress?: boolean, options?: {
616
+ httpHeaderAccept?: 'application/json' | 'image/png';
617
+ }): Observable<Array<string>>;
618
+ getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'response', reportProgress?: boolean, options?: {
619
+ httpHeaderAccept?: 'application/json' | 'image/png';
620
+ }): Observable<HttpResponse<Array<string>>>;
621
+ getAllRecordExtentAsImage(metadataUuid: string, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'events', reportProgress?: boolean, options?: {
622
+ httpHeaderAccept?: 'application/json' | 'image/png';
623
+ }): Observable<HttpEvent<Array<string>>>;
449
624
  /**
450
625
  * Get list of record extents
451
626
  * A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
@@ -484,16 +659,24 @@ export declare class RecordsApiService {
484
659
  /**
485
660
  * Get catalog content as RDF. This endpoint supports the same Lucene query parameters as for the GUI search.
486
661
  * .
662
+ * @param from Indicates the start position in a sorted list of matches that the client wants to use as the beginning of a page result.
663
+ * @param hitsPerPage Indicates the number of hits per page.
664
+ * @param any Search key
665
+ * @param title A search key for the title.
666
+ * @param facetQ A search facet in the Lucene index. Use the GeoNetwork GUI search to generate the suitable filter values. Example: standard/dcat-ap&amp;createDateYear/2018&amp;sourceCatalog/6d93613e-2b76-4e26-94af-4b4c420a1758 (filter by creation year and source catalog).
667
+ * @param sortBy Lucene sortBy criteria. Relevant values: relevance, title, changeDate.
668
+ * @param sortOrder Sort order. Possible values: reverse.
669
+ * @param similarity Use the Lucene FuzzyQuery. Values range from 0.0 to 1.0 and defaults to 0.8.
487
670
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
488
671
  * @param reportProgress flag to report request and response progress.
489
672
  */
490
- getAsRdf(observe?: 'body', reportProgress?: boolean, options?: {
673
+ getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'body', reportProgress?: boolean, options?: {
491
674
  httpHeaderAccept?: 'application/json';
492
675
  }): Observable<any>;
493
- getAsRdf(observe?: 'response', reportProgress?: boolean, options?: {
676
+ getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'response', reportProgress?: boolean, options?: {
494
677
  httpHeaderAccept?: 'application/json';
495
678
  }): Observable<HttpResponse<any>>;
496
- getAsRdf(observe?: 'events', reportProgress?: boolean, options?: {
679
+ getAsRdf(from?: number, hitsPerPage?: number, any?: string, title?: string, facetQ?: string, sortBy?: string, sortOrder?: string, similarity?: number, observe?: 'events', reportProgress?: boolean, options?: {
497
680
  httpHeaderAccept?: 'application/json';
498
681
  }): Observable<HttpEvent<any>>;
499
682
  /**
@@ -501,36 +684,117 @@ export declare class RecordsApiService {
501
684
  * Retrieve related services, datasets, onlines, thumbnails, sources, ... to this records.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\&#39;&gt;More info&lt;/a&gt;
502
685
  * @param metadataUuid Record UUID.
503
686
  * @param type Type of related resource. If none, all resources are returned.
687
+ * @param approved Use approved version or not
504
688
  * @param start Start offset for paging. Default 1. Only applies to related metadata records (ie. not for thumbnails).
505
689
  * @param rows Number of rows returned. Default 100.
506
690
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
507
691
  * @param reportProgress flag to report request and response progress.
508
692
  */
509
- getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
693
+ getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
510
694
  httpHeaderAccept?: 'application/json' | 'application/xml';
511
695
  }): Observable<RelatedResponseApiModel>;
512
- getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
696
+ getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
513
697
  httpHeaderAccept?: 'application/json' | 'application/xml';
514
698
  }): Observable<HttpResponse<RelatedResponseApiModel>>;
515
- getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
699
+ getAssociatedResources(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
516
700
  httpHeaderAccept?: 'application/json' | 'application/xml';
517
701
  }): Observable<HttpEvent<RelatedResponseApiModel>>;
702
+ /**
703
+ * Get record associated resources
704
+ * Retrieve related services, datasets, sources, ... to this records.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\&#39;&gt;More info&lt;/a&gt;
705
+ * @param metadataUuid Record UUID.
706
+ * @param type Type of related resource. If none, all resources are returned.
707
+ * @param approved Use approved version or not
708
+ * @param start Start offset for paging. Default 1. Only applies to related metadata records (ie. not for thumbnails).
709
+ * @param rows Number of rows returned. Default 100.
710
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
711
+ * @param reportProgress flag to report request and response progress.
712
+ */
713
+ getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'body', reportProgress?: boolean, options?: {
714
+ httpHeaderAccept?: 'application/json';
715
+ }): Observable<{
716
+ [key: string]: Array<AssociatedRecordApiModel>;
717
+ }>;
718
+ getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'response', reportProgress?: boolean, options?: {
719
+ httpHeaderAccept?: 'application/json';
720
+ }): Observable<HttpResponse<{
721
+ [key: string]: Array<AssociatedRecordApiModel>;
722
+ }>>;
723
+ getAssociatedResources1(metadataUuid: string, type?: Array<'children' | 'parent' | 'brothersAndSisters' | 'siblings' | 'associated' | 'services' | 'datasets' | 'fcats' | 'hasfeaturecats' | 'sources' | 'hassources' | 'related' | 'onlines' | 'thumbnails'>, approved?: boolean, start?: number, rows?: number, observe?: 'events', reportProgress?: boolean, options?: {
724
+ httpHeaderAccept?: 'application/json';
725
+ }): Observable<HttpEvent<{
726
+ [key: string]: Array<AssociatedRecordApiModel>;
727
+ }>>;
518
728
  /**
519
729
  * Returns a map to decode attributes in a dataset (from the associated feature catalog)
520
- * Retrieve related services, datasets, onlines, thumbnails, sources, ... to this records.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/associating-resources/index.html\&#39;&gt;More info&lt;/a&gt;
521
730
  * @param metadataUuid Record UUID.
731
+ * @param approved Use approved version or not
522
732
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
523
733
  * @param reportProgress flag to report request and response progress.
524
734
  */
525
- getFeatureCatalog(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
735
+ getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
526
736
  httpHeaderAccept?: 'application/json' | 'application/xml';
527
737
  }): Observable<FeatureResponseApiModel>;
528
- getFeatureCatalog(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
738
+ getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
529
739
  httpHeaderAccept?: 'application/json' | 'application/xml';
530
740
  }): Observable<HttpResponse<FeatureResponseApiModel>>;
531
- getFeatureCatalog(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
741
+ getFeatureCatalog(metadataUuid: string, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
532
742
  httpHeaderAccept?: 'application/json' | 'application/xml';
533
743
  }): Observable<HttpEvent<FeatureResponseApiModel>>;
744
+ /**
745
+ * Get one record extent as image
746
+ * A rendering of the geometry as a png. If no background is specified the image will be transparent. In getMap the envelope of the geometry is calculated then it is expanded by a factor. That factor is the size of the map. This allows the map to be slightly bigger than the geometry allowing some context to be shown. This parameter allows different factors to be chosen per scale level. Proportion is the proportion of the world that the geometry covers (bounds of WGS84)/(bounds of geometry in WGS84) Named backgrounds allow the background parameter to be a simple key and the complete URL will be looked up from this list of named backgrounds
747
+ * @param metadataUuid Record UUID.
748
+ * @param geometryIndex Index of the geometry or bounding box to display. Starts at 1.
749
+ * @param mapsrs (optional) the background map projection. If not passed uses the region/getmap/mapproj setting. If the setting is not set defaults to EPSG:4326
750
+ * @param width (optional) width of the image that is created. Only one of width and height are permitted
751
+ * @param height (optional) height of the image that is created. Only one of width and height are permitted
752
+ * @param background (optional) URL for loading a background image for regions or a key that references the namedBackgrounds (configured in config-spring-geonetwork.xml). A WMS GetMap request is the typical example. The URL must be parameterized with the following parameters: minx, maxx, miny, maxy, width, height
753
+ * @param fillColor (optional) Fill color with format RED,GREEN,BLUE,ALPHA
754
+ * @param strokeColor (optional) Stroke color with format RED,GREEN,BLUE,ALPHA
755
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
756
+ * @param reportProgress flag to report request and response progress.
757
+ */
758
+ getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'body', reportProgress?: boolean, options?: {
759
+ httpHeaderAccept?: 'application/json' | 'image/png';
760
+ }): Observable<Array<string>>;
761
+ getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'response', reportProgress?: boolean, options?: {
762
+ httpHeaderAccept?: 'application/json' | 'image/png';
763
+ }): Observable<HttpResponse<Array<string>>>;
764
+ getOneRecordExtentAsImage(metadataUuid: string, geometryIndex: number, mapsrs?: string, width?: number, height?: number, background?: string, fillColor?: string, strokeColor?: string, observe?: 'events', reportProgress?: boolean, options?: {
765
+ httpHeaderAccept?: 'application/json' | 'image/png';
766
+ }): Observable<HttpEvent<Array<string>>>;
767
+ /**
768
+ * Get publication options.
769
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
770
+ * @param reportProgress flag to report request and response progress.
771
+ */
772
+ getPublicationOptions(observe?: 'body', reportProgress?: boolean, options?: {
773
+ httpHeaderAccept?: 'application/json' | '*/*';
774
+ }): Observable<Array<PublicationOptionApiModel>>;
775
+ getPublicationOptions(observe?: 'response', reportProgress?: boolean, options?: {
776
+ httpHeaderAccept?: 'application/json' | '*/*';
777
+ }): Observable<HttpResponse<Array<PublicationOptionApiModel>>>;
778
+ getPublicationOptions(observe?: 'events', reportProgress?: boolean, options?: {
779
+ httpHeaderAccept?: 'application/json' | '*/*';
780
+ }): Observable<HttpEvent<Array<PublicationOptionApiModel>>>;
781
+ /**
782
+ * Get a metadata record
783
+ * Depending on the accept header the appropriate formatter is used. When requesting a ZIP, a MEF version 2 file is returned. When requesting HTML, the default formatter is used.
784
+ * @param metadataUuid Record UUID.
785
+ * @param accept Accept header should indicate which is the appropriate format to return. It could be text/html, application/xml, application/zip, ...If no appropriate Accept header found, the XML format is returned.
786
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
787
+ * @param reportProgress flag to report request and response progress.
788
+ */
789
+ getRecord(metadataUuid: string, accept: string, observe?: 'body', reportProgress?: boolean, options?: {
790
+ httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
791
+ }): Observable<string>;
792
+ getRecord(metadataUuid: string, accept: string, observe?: 'response', reportProgress?: boolean, options?: {
793
+ httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
794
+ }): Observable<HttpResponse<string>>;
795
+ getRecord(metadataUuid: string, accept: string, observe?: 'events', reportProgress?: boolean, options?: {
796
+ httpHeaderAccept?: 'application/json' | 'text/html' | 'application/xml' | 'application/xhtml+xml' | 'application/pdf' | 'application/zip' | 'application/x-gn-mef-1-zip' | 'application/x-gn-mef-2-zip' | '*/*';
797
+ }): Observable<HttpEvent<string>>;
534
798
  /**
535
799
  * Get a metadata record as XML or JSON
536
800
  * @param metadataUuid Record UUID.
@@ -618,6 +882,37 @@ export declare class RecordsApiService {
618
882
  getRecordFormattedBy(formatterId: string, metadataUuid: string, accept?: string, width?: '_25' | '_50' | '_75' | '_100', mdpath?: string, language?: string, output?: 'txt' | 'html' | 'xml' | 'json' | 'jsonld' | 'pdf' | 'testpdf', approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
619
883
  httpHeaderAccept?: 'application/json';
620
884
  }): Observable<HttpEvent<any>>;
885
+ /**
886
+ * Get metadata record permalink
887
+ * Permalink is by default the landing page formatter but can be configured in the admin console &gt; settings. If the record as a DOI and if enabled in the settings, then it takes priority.
888
+ * @param metadataUuid Record UUID.
889
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
890
+ * @param reportProgress flag to report request and response progress.
891
+ */
892
+ getRecordPermalink(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
893
+ httpHeaderAccept?: 'application/json' | 'text/plain';
894
+ }): Observable<string>;
895
+ getRecordPermalink(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
896
+ httpHeaderAccept?: 'application/json' | 'text/plain';
897
+ }): Observable<HttpResponse<string>>;
898
+ getRecordPermalink(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
899
+ httpHeaderAccept?: 'application/json' | 'text/plain';
900
+ }): Observable<HttpEvent<string>>;
901
+ /**
902
+ * Get record popularity
903
+ * @param metadataUuid Record UUID.
904
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
905
+ * @param reportProgress flag to report request and response progress.
906
+ */
907
+ getRecordPopularity(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
908
+ httpHeaderAccept?: 'application/json' | 'text/plain';
909
+ }): Observable<string>;
910
+ getRecordPopularity(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
911
+ httpHeaderAccept?: 'application/json' | 'text/plain';
912
+ }): Observable<HttpResponse<string>>;
913
+ getRecordPopularity(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
914
+ httpHeaderAccept?: 'application/json' | 'text/plain';
915
+ }): Observable<HttpEvent<string>>;
621
916
  /**
622
917
  * Get record sharing settings
623
918
  * Return current sharing options for a record.
@@ -644,13 +939,13 @@ export declare class RecordsApiService {
644
939
  */
645
940
  getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'body', reportProgress?: boolean, options?: {
646
941
  httpHeaderAccept?: 'application/json';
647
- }): Observable<Array<MetadataStatusResponseApiModel>>;
942
+ }): Observable<any>;
648
943
  getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'response', reportProgress?: boolean, options?: {
649
944
  httpHeaderAccept?: 'application/json';
650
- }): Observable<HttpResponse<Array<MetadataStatusResponseApiModel>>>;
945
+ }): Observable<HttpResponse<any>>;
651
946
  getRecordStatusHistory(metadataUuid: string, details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'events', reportProgress?: boolean, options?: {
652
947
  httpHeaderAccept?: 'application/json';
653
- }): Observable<HttpEvent<Array<MetadataStatusResponseApiModel>>>;
948
+ }): Observable<HttpEvent<any>>;
654
949
  /**
655
950
  * Get record status history by type
656
951
  * @param metadataUuid Record UUID.
@@ -662,13 +957,13 @@ export declare class RecordsApiService {
662
957
  */
663
958
  getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'body', reportProgress?: boolean, options?: {
664
959
  httpHeaderAccept?: 'application/json';
665
- }): Observable<Array<MetadataStatusResponseApiModel>>;
960
+ }): Observable<any>;
666
961
  getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'response', reportProgress?: boolean, options?: {
667
962
  httpHeaderAccept?: 'application/json';
668
- }): Observable<HttpResponse<Array<MetadataStatusResponseApiModel>>>;
963
+ }): Observable<HttpResponse<any>>;
669
964
  getRecordStatusHistoryByType(metadataUuid: string, type: 'workflow' | 'task' | 'event', details?: boolean, sortOrder?: 'ASC' | 'DESC', observe?: 'events', reportProgress?: boolean, options?: {
670
965
  httpHeaderAccept?: 'application/json';
671
- }): Observable<HttpEvent<Array<MetadataStatusResponseApiModel>>>;
966
+ }): Observable<HttpEvent<any>>;
672
967
  /**
673
968
  * Get record tags
674
969
  * Tags are used to classify information.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/tag-information/tagging-with-categories.html\&#39;&gt;More info&lt;/a&gt;
@@ -763,14 +1058,14 @@ export declare class RecordsApiService {
763
1058
  * @param reportProgress flag to report request and response progress.
764
1059
  */
765
1060
  getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'body', reportProgress?: boolean, options?: {
766
- httpHeaderAccept?: 'application/json' | '*/*';
767
- }): Observable<Array<string>>;
1061
+ httpHeaderAccept?: 'application/json';
1062
+ }): Observable<any>;
768
1063
  getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'response', reportProgress?: boolean, options?: {
769
- httpHeaderAccept?: 'application/json' | '*/*';
770
- }): Observable<HttpResponse<Array<string>>>;
1064
+ httpHeaderAccept?: 'application/json';
1065
+ }): Observable<HttpResponse<any>>;
771
1066
  getResource(metadataUuid: string, resourceId: string, approved?: boolean, size?: number, observe?: 'events', reportProgress?: boolean, options?: {
772
- httpHeaderAccept?: 'application/json' | '*/*';
773
- }): Observable<HttpEvent<Array<string>>>;
1067
+ httpHeaderAccept?: 'application/json';
1068
+ }): Observable<HttpEvent<any>>;
774
1069
  /**
775
1070
  * List saved queries for this metadata
776
1071
  * @param metadataUuid Record UUID.
@@ -808,13 +1103,13 @@ export declare class RecordsApiService {
808
1103
  */
809
1104
  getStatus(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
810
1105
  httpHeaderAccept?: 'application/json';
811
- }): Observable<MetadataWorkflowStatusResponseApiModel>;
1106
+ }): Observable<any>;
812
1107
  getStatus(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
813
1108
  httpHeaderAccept?: 'application/json';
814
- }): Observable<HttpResponse<MetadataWorkflowStatusResponseApiModel>>;
1109
+ }): Observable<HttpResponse<any>>;
815
1110
  getStatus(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
816
1111
  httpHeaderAccept?: 'application/json';
817
- }): Observable<HttpEvent<MetadataWorkflowStatusResponseApiModel>>;
1112
+ }): Observable<HttpEvent<any>>;
818
1113
  /**
819
1114
  * Get suggestions
820
1115
  * Analyze the record an suggest processes to improve the quality of the record.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/workflow/batchupdate-xsl.html\&#39;&gt;More info&lt;/a&gt;
@@ -857,11 +1152,13 @@ export declare class RecordsApiService {
857
1152
  * Search status
858
1153
  * @param type One or more types to retrieve (ie. worflow, event, task). Default is all.
859
1154
  * @param details All event details including XML changes. Responses are bigger. Default is false
1155
+ * @param sortOrder Sort Order (ie. DESC or ASC). Default is none.
860
1156
  * @param author One or more event author. Default is all.
861
1157
  * @param owner One or more event owners. Default is all.
862
1158
  * @param id One or more record identifier. Default is all.
863
- * @param record One or more metadata record identifier. Default is all.
1159
+ * @param recordIdentifier One or more metadata record identifier. Default is all.
864
1160
  * @param uuid One or more metadata uuid. Default is all.
1161
+ * @param statusIds One or more status id. Default is all.
865
1162
  * @param dateFrom Start date
866
1163
  * @param dateTo End date
867
1164
  * @param from From page
@@ -869,15 +1166,31 @@ export declare class RecordsApiService {
869
1166
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
870
1167
  * @param reportProgress flag to report request and response progress.
871
1168
  */
872
- getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>, record?: Array<number>, uuid?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'body', reportProgress?: boolean, options?: {
1169
+ getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'body', reportProgress?: boolean, options?: {
873
1170
  httpHeaderAccept?: 'application/json';
874
- }): Observable<Array<MetadataStatusResponseApiModel>>;
875
- getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>, record?: Array<number>, uuid?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'response', reportProgress?: boolean, options?: {
1171
+ }): Observable<any>;
1172
+ getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'response', reportProgress?: boolean, options?: {
876
1173
  httpHeaderAccept?: 'application/json';
877
- }): Observable<HttpResponse<Array<MetadataStatusResponseApiModel>>>;
878
- getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, author?: Array<number>, owner?: Array<number>, id?: Array<number>, record?: Array<number>, uuid?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'events', reportProgress?: boolean, options?: {
1174
+ }): Observable<HttpResponse<any>>;
1175
+ getWorkflowStatusByType(type?: Array<'workflow' | 'task' | 'event'>, details?: boolean, sortOrder?: 'ASC' | 'DESC', author?: Array<number>, owner?: Array<number>, id?: Array<number>, recordIdentifier?: Array<number>, uuid?: Array<string>, statusIds?: Array<string>, dateFrom?: string, dateTo?: string, from?: number, size?: number, observe?: 'events', reportProgress?: boolean, options?: {
879
1176
  httpHeaderAccept?: 'application/json';
880
- }): Observable<HttpEvent<Array<MetadataStatusResponseApiModel>>>;
1177
+ }): Observable<HttpEvent<any>>;
1178
+ /**
1179
+ * Increase record popularity
1180
+ * Used when a view is based on the search results content and does not really access the record. Record is then added to the indexing queue and popularity will be updated soon.
1181
+ * @param metadataUuid Record UUID.
1182
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1183
+ * @param reportProgress flag to report request and response progress.
1184
+ */
1185
+ increaseRecordPopularity(metadataUuid: string, observe?: 'body', reportProgress?: boolean, options?: {
1186
+ httpHeaderAccept?: 'application/json' | 'text/plain';
1187
+ }): Observable<string>;
1188
+ increaseRecordPopularity(metadataUuid: string, observe?: 'response', reportProgress?: boolean, options?: {
1189
+ httpHeaderAccept?: 'application/json' | 'text/plain';
1190
+ }): Observable<HttpResponse<string>>;
1191
+ increaseRecordPopularity(metadataUuid: string, observe?: 'events', reportProgress?: boolean, options?: {
1192
+ httpHeaderAccept?: 'application/json' | 'text/plain';
1193
+ }): Observable<HttpEvent<string>>;
881
1194
  /**
882
1195
  * Index a set of records
883
1196
  * Index a set of records provided either by a bucket or a list of uuids
@@ -886,17 +1199,17 @@ export declare class RecordsApiService {
886
1199
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
887
1200
  * @param reportProgress flag to report request and response progress.
888
1201
  */
889
- index(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
1202
+ index1(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
890
1203
  httpHeaderAccept?: 'application/json';
891
1204
  }): Observable<{
892
1205
  [key: string]: object;
893
1206
  }>;
894
- index(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
1207
+ index1(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
895
1208
  httpHeaderAccept?: 'application/json';
896
1209
  }): Observable<HttpResponse<{
897
1210
  [key: string]: object;
898
1211
  }>>;
899
- index(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
1212
+ index1(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
900
1213
  httpHeaderAccept?: 'application/json';
901
1214
  }): Observable<HttpEvent<{
902
1215
  [key: string]: object;
@@ -908,7 +1221,7 @@ export declare class RecordsApiService {
908
1221
  * @param url URL of a file to download and insert.
909
1222
  * @param serverFolder Server folder where to look for files.
910
1223
  * @param recursiveSearch (Server folder import only) Recursive search in folder.
911
- * @param publishToAll (XML file only) Publish record.
1224
+ * @param publishToAll (XML file only and if workflow is not enabled) Publish record.
912
1225
  * @param assignToCatalog (MEF file only) Assign to current catalog.
913
1226
  * @param uuidProcessing Record identifier processing.
914
1227
  * @param group The group the record is attached to.
@@ -916,18 +1229,19 @@ export declare class RecordsApiService {
916
1229
  * @param rejectIfInvalid Validate the record first and reject it if not valid.
917
1230
  * @param transformWith XSL transformation to apply to the record.
918
1231
  * @param schema Force the schema of the record. If not set, schema autodetection is used (and is the preferred method).
1232
+ * @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
919
1233
  * @param extra (experimental) Add extra information to the record.
920
- * @param body XML fragment.
1234
+ * @param body
921
1235
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
922
1236
  * @param reportProgress flag to report request and response progress.
923
1237
  */
924
- insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
1238
+ insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
925
1239
  httpHeaderAccept?: 'application/json';
926
1240
  }): Observable<SimpleMetadataProcessingReportApiModel>;
927
- insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
1241
+ insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
928
1242
  httpHeaderAccept?: 'application/json';
929
1243
  }): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
930
- insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, extra?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
1244
+ insert(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', url?: Array<string>, serverFolder?: string, recursiveSearch?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, transformWith?: string, schema?: string, allowEditGroupMembers?: boolean, extra?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
931
1245
  httpHeaderAccept?: 'application/json';
932
1246
  }): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
933
1247
  /**
@@ -944,16 +1258,17 @@ export declare class RecordsApiService {
944
1258
  * @param transformWith XSL transformation to apply to the record.
945
1259
  * @param schema Force the schema of the record. If not set, schema autodetection is used (and is the preferred method).
946
1260
  * @param extra (experimental) Add extra information to the record.
1261
+ * @param allowEditGroupMembers Is editable by group members with editor profile? If not, only the author and administrator can edit the record.
947
1262
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
948
1263
  * @param reportProgress flag to report request and response progress.
949
1264
  */
950
- insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'body', reportProgress?: boolean, options?: {
1265
+ insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
951
1266
  httpHeaderAccept?: 'application/json';
952
1267
  }): Observable<SimpleMetadataProcessingReportApiModel>;
953
- insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'response', reportProgress?: boolean, options?: {
1268
+ insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
954
1269
  httpHeaderAccept?: 'application/json';
955
1270
  }): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
956
- insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, observe?: 'events', reportProgress?: boolean, options?: {
1271
+ insertFile(metadataType?: 'METADATA' | 'TEMPLATE' | 'SUB_TEMPLATE' | 'TEMPLATE_OF_SUB_TEMPLATE', file?: Array<Blob>, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, category?: Array<string>, rejectIfInvalid?: boolean, publishToAll?: boolean, assignToCatalog?: boolean, transformWith?: string, schema?: string, extra?: string, allowEditGroupMembers?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
957
1272
  httpHeaderAccept?: 'application/json';
958
1273
  }): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
959
1274
  /**
@@ -974,13 +1289,13 @@ export declare class RecordsApiService {
974
1289
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
975
1290
  * @param reportProgress flag to report request and response progress.
976
1291
  */
977
- insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'body', reportProgress?: boolean, options?: {
1292
+ insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'body', reportProgress?: boolean, options?: {
978
1293
  httpHeaderAccept?: 'application/json';
979
1294
  }): Observable<SimpleMetadataProcessingReportApiModel>;
980
- insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'response', reportProgress?: boolean, options?: {
1295
+ insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'response', reportProgress?: boolean, options?: {
981
1296
  httpHeaderAccept?: 'application/json';
982
1297
  }): Observable<HttpResponse<SimpleMetadataProcessingReportApiModel>>;
983
- insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE', group?: string, observe?: 'events', reportProgress?: boolean, options?: {
1298
+ insertOgcMapContextFile(title: string, recordAbstract?: string, xml?: string, filename?: string, url?: string, viewerUrl?: string, overview?: string, overviewFilename?: string, topic?: string, publishToAll?: boolean, uuidProcessing?: 'GENERATEUUID' | 'NOTHING' | 'OVERWRITE' | 'REMOVE_AND_REPLACE', group?: string, observe?: 'events', reportProgress?: boolean, options?: {
984
1299
  httpHeaderAccept?: 'application/json';
985
1300
  }): Observable<HttpEvent<SimpleMetadataProcessingReportApiModel>>;
986
1301
  /**
@@ -1001,6 +1316,24 @@ export declare class RecordsApiService {
1001
1316
  patchResource(metadataUuid: string, resourceId: string, visibility: 'public' | 'private', approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
1002
1317
  httpHeaderAccept?: 'application/json';
1003
1318
  }): Observable<HttpEvent<MetadataResourceApiModel>>;
1319
+ /**
1320
+ * Preview edits made by XPath expressions.
1321
+ * @param batchEditParameterApiModel
1322
+ * @param uuids Record UUIDs. If null current selection is used.
1323
+ * @param bucket Selection bucket name
1324
+ * @param diffType Return differences with diff, diffhtml or patch
1325
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1326
+ * @param reportProgress flag to report request and response progress.
1327
+ */
1328
+ previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'body', reportProgress?: boolean, options?: {
1329
+ httpHeaderAccept?: 'application/json' | 'application/xml';
1330
+ }): Observable<object>;
1331
+ previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'response', reportProgress?: boolean, options?: {
1332
+ httpHeaderAccept?: 'application/json' | 'application/xml';
1333
+ }): Observable<HttpResponse<object>>;
1334
+ previewBatchEdit(batchEditParameterApiModel: Array<BatchEditParameterApiModel>, uuids?: Array<string>, bucket?: string, diffType?: 'patch' | 'diff' | 'diffhtml', observe?: 'events', reportProgress?: boolean, options?: {
1335
+ httpHeaderAccept?: 'application/json' | 'application/xml';
1336
+ }): Observable<HttpEvent<object>>;
1004
1337
  /**
1005
1338
  * Apply a process
1006
1339
  * Process a metadata with an XSL transformation declared in the metadata schema (See the process folder). Parameters sent to the service are forwarded to XSL process.
@@ -1027,47 +1360,64 @@ export declare class RecordsApiService {
1027
1360
  * @param reportProgress flag to report request and response progress.
1028
1361
  */
1029
1362
  processRecordPreview(metadataUuid: string, process: string, observe?: 'body', reportProgress?: boolean, options?: {
1030
- httpHeaderAccept?: 'application/json' | 'application/xml';
1031
- }): Observable<ElementApiModel>;
1363
+ httpHeaderAccept?: 'application/json';
1364
+ }): Observable<any>;
1032
1365
  processRecordPreview(metadataUuid: string, process: string, observe?: 'response', reportProgress?: boolean, options?: {
1033
- httpHeaderAccept?: 'application/json' | 'application/xml';
1034
- }): Observable<HttpResponse<ElementApiModel>>;
1366
+ httpHeaderAccept?: 'application/json';
1367
+ }): Observable<HttpResponse<any>>;
1035
1368
  processRecordPreview(metadataUuid: string, process: string, observe?: 'events', reportProgress?: boolean, options?: {
1036
- httpHeaderAccept?: 'application/json' | 'application/xml';
1037
- }): Observable<HttpEvent<ElementApiModel>>;
1369
+ httpHeaderAccept?: 'application/json';
1370
+ }): Observable<HttpEvent<any>>;
1038
1371
  /**
1039
1372
  * Publish one or more records
1040
1373
  * See record sharing for more details.
1041
1374
  * @param uuids Record UUIDs. If null current selection is used.
1042
1375
  * @param bucket Selection bucket name
1376
+ * @param body
1043
1377
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1044
1378
  * @param reportProgress flag to report request and response progress.
1045
1379
  */
1046
- publish(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
1380
+ publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
1047
1381
  httpHeaderAccept?: 'application/json' | '*/*';
1048
1382
  }): Observable<MetadataProcessingReportApiModel>;
1049
- publish(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
1383
+ publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
1050
1384
  httpHeaderAccept?: 'application/json' | '*/*';
1051
1385
  }): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
1052
- publish(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
1386
+ publish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
1053
1387
  httpHeaderAccept?: 'application/json' | '*/*';
1054
1388
  }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
1389
+ /**
1390
+ * Set privileges for ALL group to publish the metadata for all users.
1391
+ * @param metadataUuid Record UUID.
1392
+ * @param body
1393
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1394
+ * @param reportProgress flag to report request and response progress.
1395
+ */
1396
+ publish1(metadataUuid: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
1397
+ httpHeaderAccept?: 'application/json';
1398
+ }): Observable<any>;
1399
+ publish1(metadataUuid: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
1400
+ httpHeaderAccept?: 'application/json';
1401
+ }): Observable<HttpResponse<any>>;
1402
+ publish1(metadataUuid: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
1403
+ httpHeaderAccept?: 'application/json';
1404
+ }): Observable<HttpEvent<any>>;
1055
1405
  /**
1056
1406
  * Create a new resource for a given metadata
1057
1407
  * @param metadataUuid The metadata UUID
1058
1408
  * @param visibility The sharing policy
1059
1409
  * @param approved Use approved version or not
1060
- * @param inlineObject1ApiModel
1410
+ * @param inlineObject3ApiModel
1061
1411
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1062
1412
  * @param reportProgress flag to report request and response progress.
1063
1413
  */
1064
- putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject1ApiModel?: InlineObject1ApiModel, observe?: 'body', reportProgress?: boolean, options?: {
1414
+ putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'body', reportProgress?: boolean, options?: {
1065
1415
  httpHeaderAccept?: 'application/json';
1066
1416
  }): Observable<MetadataResourceApiModel>;
1067
- putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject1ApiModel?: InlineObject1ApiModel, observe?: 'response', reportProgress?: boolean, options?: {
1417
+ putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'response', reportProgress?: boolean, options?: {
1068
1418
  httpHeaderAccept?: 'application/json';
1069
1419
  }): Observable<HttpResponse<MetadataResourceApiModel>>;
1070
- putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject1ApiModel?: InlineObject1ApiModel, observe?: 'events', reportProgress?: boolean, options?: {
1420
+ putResource(metadataUuid: string, visibility?: 'public' | 'private', approved?: boolean, inlineObject3ApiModel?: InlineObject3ApiModel, observe?: 'events', reportProgress?: boolean, options?: {
1071
1421
  httpHeaderAccept?: 'application/json';
1072
1422
  }): Observable<HttpEvent<MetadataResourceApiModel>>;
1073
1423
  /**
@@ -1092,7 +1442,7 @@ export declare class RecordsApiService {
1092
1442
  * Rate a record
1093
1443
  * User rating of metadata. If the metadata was harvested using the \&#39;GeoNetwork\&#39; protocol and the system setting localrating/enable is false (the default), the user\&#39;s rating is shared between GN nodes in this harvesting network. If the metadata was not harvested or if localrating/enable is true then \&#39;local rating\&#39; is applied, counting only rating from users of this node.&lt;br/&gt;When a remote rating is applied, the local rating is not updated. It will be updated on the next harvest run (FIXME ?).
1094
1444
  * @param metadataUuid Record UUID.
1095
- * @param body Rating
1445
+ * @param body
1096
1446
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1097
1447
  * @param reportProgress flag to report request and response progress.
1098
1448
  */
@@ -1188,7 +1538,7 @@ export declare class RecordsApiService {
1188
1538
  * Set record group
1189
1539
  * A record is related to one group.
1190
1540
  * @param metadataUuid Record UUID.
1191
- * @param body Group identifier
1541
+ * @param body
1192
1542
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1193
1543
  * @param reportProgress flag to report request and response progress.
1194
1544
  */
@@ -1219,10 +1569,32 @@ export declare class RecordsApiService {
1219
1569
  setRecordOwnership(metadataUuid: string, groupIdentifier: number, userIdentifier: number, approved?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
1220
1570
  httpHeaderAccept?: 'application/json' | '*/*';
1221
1571
  }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
1572
+ /**
1573
+ * Set the record status
1574
+ * @param metadataUuid Record UUID.
1575
+ * @param metadataStatusParameterApiModel
1576
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1577
+ * @param reportProgress flag to report request and response progress.
1578
+ */
1579
+ setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
1580
+ httpHeaderAccept?: 'application/json' | '*/*';
1581
+ }): Observable<{
1582
+ [key: string]: string;
1583
+ }>;
1584
+ setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
1585
+ httpHeaderAccept?: 'application/json' | '*/*';
1586
+ }): Observable<HttpResponse<{
1587
+ [key: string]: string;
1588
+ }>>;
1589
+ setStatus(metadataUuid: string, metadataStatusParameterApiModel: MetadataStatusParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
1590
+ httpHeaderAccept?: 'application/json' | '*/*';
1591
+ }): Observable<HttpEvent<{
1592
+ [key: string]: string;
1593
+ }>>;
1222
1594
  /**
1223
1595
  * Set sharing settings for one or more records
1224
1596
  * See record sharing for more details.
1225
- * @param sharingParameterApiModel Privileges
1597
+ * @param sharingParameterApiModel
1226
1598
  * @param uuids Record UUIDs. If null current selection is used.
1227
1599
  * @param bucket Selection bucket name
1228
1600
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
@@ -1237,6 +1609,23 @@ export declare class RecordsApiService {
1237
1609
  share(sharingParameterApiModel: SharingParameterApiModel, uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
1238
1610
  httpHeaderAccept?: 'application/json' | '*/*';
1239
1611
  }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
1612
+ /**
1613
+ * Set record sharing
1614
+ * Privileges are assigned by group. User needs to be able to edit a record to set sharing settings. For reserved group (ie. Internet, Intranet &amp; Guest), user MUST be reviewer of one group. For other group, if Only set privileges to user\&#39;s groups is set in catalog configuration user MUST be a member of the group.&lt;br/&gt;Clear first allows to unset all operations first before setting the new ones.Clear option does not remove reserved groups operation if user is not an administrator, a reviewer or the owner of the record.&lt;br/&gt;&lt;a href&#x3D;\&#39;http://geonetwork-opensource.org/manuals/trunk/eng/users/user-guide/publishing/managing-privileges.html\&#39;&gt;More info&lt;/a&gt;
1615
+ * @param metadataUuid Record UUID.
1616
+ * @param sharingParameterApiModel
1617
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1618
+ * @param reportProgress flag to report request and response progress.
1619
+ */
1620
+ share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
1621
+ httpHeaderAccept?: 'application/json';
1622
+ }): Observable<any>;
1623
+ share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
1624
+ httpHeaderAccept?: 'application/json';
1625
+ }): Observable<HttpResponse<any>>;
1626
+ share1(metadataUuid: string, sharingParameterApiModel: SharingParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
1627
+ httpHeaderAccept?: 'application/json';
1628
+ }): Observable<HttpEvent<any>>;
1240
1629
  /**
1241
1630
  * Get saved content from the status record after changes
1242
1631
  * @param metadataUuid Record UUID.
@@ -1273,6 +1662,39 @@ export declare class RecordsApiService {
1273
1662
  showStatusBefore(metadataUuid: string, statusId: number, userId: number, changeDate: string, observe?: 'events', reportProgress?: boolean, options?: {
1274
1663
  httpHeaderAccept?: 'application/json' | 'application/xml';
1275
1664
  }): Observable<HttpEvent<string>>;
1665
+ /**
1666
+ * Edit a record
1667
+ * Return HTML form for editing.
1668
+ * @param metadataUuid Record UUID.
1669
+ * @param currTab Tab
1670
+ * @param withAttributes
1671
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1672
+ * @param reportProgress flag to report request and response progress.
1673
+ */
1674
+ startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
1675
+ httpHeaderAccept?: 'application/json';
1676
+ }): Observable<any>;
1677
+ startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
1678
+ httpHeaderAccept?: 'application/json';
1679
+ }): Observable<HttpResponse<any>>;
1680
+ startEditing(metadataUuid: string, currTab?: string, withAttributes?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
1681
+ httpHeaderAccept?: 'application/json';
1682
+ }): Observable<HttpEvent<any>>;
1683
+ /**
1684
+ * Set the records status to submitted
1685
+ * @param metadataBatchSubmitParameterApiModel
1686
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1687
+ * @param reportProgress flag to report request and response progress.
1688
+ */
1689
+ submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'body', reportProgress?: boolean, options?: {
1690
+ httpHeaderAccept?: 'application/json' | '*/*';
1691
+ }): Observable<MetadataProcessingReportApiModel>;
1692
+ submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'response', reportProgress?: boolean, options?: {
1693
+ httpHeaderAccept?: 'application/json' | '*/*';
1694
+ }): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
1695
+ submit(metadataBatchSubmitParameterApiModel: MetadataBatchSubmitParameterApiModel, observe?: 'events', reportProgress?: boolean, options?: {
1696
+ httpHeaderAccept?: 'application/json' | '*/*';
1697
+ }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
1276
1698
  /**
1277
1699
  * Add tags to a record
1278
1700
  * @param metadataUuid Record UUID.
@@ -1329,18 +1751,35 @@ export declare class RecordsApiService {
1329
1751
  * See record sharing for more details.
1330
1752
  * @param uuids Record UUIDs. If null current selection is used.
1331
1753
  * @param bucket Selection bucket name
1754
+ * @param body
1332
1755
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1333
1756
  * @param reportProgress flag to report request and response progress.
1334
1757
  */
1335
- unpublish(uuids?: Array<string>, bucket?: string, observe?: 'body', reportProgress?: boolean, options?: {
1758
+ unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
1336
1759
  httpHeaderAccept?: 'application/json' | '*/*';
1337
1760
  }): Observable<MetadataProcessingReportApiModel>;
1338
- unpublish(uuids?: Array<string>, bucket?: string, observe?: 'response', reportProgress?: boolean, options?: {
1761
+ unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
1339
1762
  httpHeaderAccept?: 'application/json' | '*/*';
1340
1763
  }): Observable<HttpResponse<MetadataProcessingReportApiModel>>;
1341
- unpublish(uuids?: Array<string>, bucket?: string, observe?: 'events', reportProgress?: boolean, options?: {
1764
+ unpublish(uuids?: Array<string>, bucket?: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
1342
1765
  httpHeaderAccept?: 'application/json' | '*/*';
1343
1766
  }): Observable<HttpEvent<MetadataProcessingReportApiModel>>;
1767
+ /**
1768
+ * Unsets privileges for ALL group to publish the metadata for all users.
1769
+ * @param metadataUuid Record UUID.
1770
+ * @param body
1771
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1772
+ * @param reportProgress flag to report request and response progress.
1773
+ */
1774
+ unpublish1(metadataUuid: string, body?: string, observe?: 'body', reportProgress?: boolean, options?: {
1775
+ httpHeaderAccept?: 'application/json';
1776
+ }): Observable<any>;
1777
+ unpublish1(metadataUuid: string, body?: string, observe?: 'response', reportProgress?: boolean, options?: {
1778
+ httpHeaderAccept?: 'application/json';
1779
+ }): Observable<HttpResponse<any>>;
1780
+ unpublish1(metadataUuid: string, body?: string, observe?: 'events', reportProgress?: boolean, options?: {
1781
+ httpHeaderAccept?: 'application/json';
1782
+ }): Observable<HttpEvent<any>>;
1344
1783
  /**
1345
1784
  * Remove a DOI (this is not recommended, DOI are supposed to be persistent once created. This is mainly here for testing).
1346
1785
  * @param metadataUuid Record UUID.