@@ -90,6 +90,9 @@ The different use cases currently available in the package are classified below,
9090 - [ Get Maximum Embargo Duration In Months] ( #get-maximum-embargo-duration-in-months )
9191 - [ Get ZIP Download Limit] ( #get-zip-download-limit )
9292 - [ Get Application Terms of Use] ( #get-application-terms-of-use )
93+ - [ Get Available Dataset Metadata Export Formats] ( #get-available-dataset-metadata-export-formats )
94+ - [ Licenses] ( #Licenses )
95+ - [ Get Available Standard License Terms] ( #get-available-standard-license-terms )
9396- [ Contact] ( #Contact )
9497 - [ Send Feedback to Object Contacts] ( #send-feedback-to-object-contacts )
9598- [ Notifications] ( #Notifications )
@@ -2108,6 +2111,51 @@ getApplicationTermsOfUse.execute().then((termsOfUse: string) => {
21082111
21092112_ See [ use case] ( ../src/info/domain/useCases/GetApplicationTermsOfUse.ts ) implementation_ .
21102113
2114+ #### Get Available Dataset Metadata Export Formats
2115+
2116+ Returns a [ DatasetMetadataExportFormats] ( ../src/info/domain/models/DatasetMetadataExportFormats.ts ) object containing the available dataset metadata export formats.
2117+
2118+ ##### Example call:
2119+
2120+ ``` typescript
2121+ import {
2122+ getAvailableDatasetMetadataExportFormats ,
2123+ DatasetMetadataExportFormats
2124+ } from ' @iqss/dataverse-client-javascript'
2125+
2126+ /* ... */
2127+
2128+ getAvailableDatasetMetadataExportFormats
2129+ .execute ()
2130+ .then ((datasetMetadataExportFormats : DatasetMetadataExportFormats ) => {
2131+ /* ... */
2132+ })
2133+
2134+ /* ... */
2135+ ```
2136+
2137+ _ See [ use case] ( ../src/info/domain/useCases/GetAvailableDatasetMetadataExportFormats.ts ) implementation_ .
2138+
2139+ ## Licenses
2140+
2141+ ### Get Available Standard License Terms
2142+
2143+ Returns a list of available standard licenses that can be selected for a dataset.
2144+
2145+ ##### Example call:
2146+
2147+ ``` typescript
2148+ import { getAvailableStandardLicenses , License } from ' @iqss/dataverse-client-javascript'
2149+
2150+ /* ... */
2151+
2152+ getAvailableStandardLicenses .execute ().then ((licenses : License []) => {
2153+ /* ... */
2154+ })
2155+ ```
2156+
2157+ _ See [ use case] ( ../src/licenses/domain/useCases/GetAvailableStandardLicenses.ts ) implementation_ .
2158+
21112159## Contact
21122160
21132161#### Send Feedback to Object Contacts
0 commit comments