You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
14
14
- Guestbooks: Added optional `includeStats` support to `getGuestbooksByCollectionId`, returning `usageCount` and `responseCount` when requested.
15
15
- Files: Added `getFileCitationByFormat` use case, repository method, and `FileCitationFormat` enum to support Dataverse file citation exports in `EndNote`, `RIS`, `BibTeX`, `CSL`, and `Internal` formats.
16
16
- Datasets: Added `getDatasetReviews` use case and repository method to support Dataverse endpoint `GET /datasets/{identifier}/reviews`, for retrieving review datasets associated with a dataset by persistent id or numeric id.
17
+
- Datasets: Added `exportDatasetMetadata` use case, repository method, `ExportedDatasetMetadata` response type, and `DatasetMetadataExportVersion` enum to support exporting dataset metadata by numeric id or persistent id through Dataverse endpoint `GET /datasets/export`.
17
18
- Collections: Added `allowedDatasetTypes` field to the [Collection](./src/collections/domain/models/Collection.ts) model. This field is optional and only populated the feature is enabled on the installation and configured on the collection.
18
19
- Collections: Added theme information when retrieving a collection using `getCollection`.
-[Get Dataset Citation Text By Private URL Token](#get-dataset-citation-text-by-private-url-token)
50
52
-[Get Dataset Locks](#get-dataset-locks)
51
53
-[Get Dataset Summary Field Names](#get-dataset-summary-field-names)
@@ -1053,6 +1055,35 @@ The `datasetId` parameter can be a string, for persistent identifiers, or a numb
1053
1055
1054
1056
There is an optional third parameter called `includeDeaccessioned`, which indicates whether to consider deaccessioned versions or not in the dataset search. If not set, the default value is `false`.
1055
1057
1058
+
#### Export Dataset Metadata
1059
+
1060
+
Exports dataset metadata in a specified metadata export format.
0 commit comments