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
The `collectionIdOrAlias` is a generic collection identifier, which can be either a string (for queries by CollectionAlias), or a number (for queries by CollectionId).
Updates all featured items, given a collection identifier and a CollectionFeaturedItemsDTO.
@@ -1296,6 +1316,28 @@ The `fileId` parameter should be a number, the numeric identifier.
1296
1316
1297
1317
The `uploadedFileDTO` parameter is a [UploadedFileDTO](../src/files/domain/dtos/UploadedFileDTO.ts) and includes properties related to the uploaded files. Some of these properties should be calculated from the uploaded File Blob objects and the resulting storage identifiers from the Upload File use case.
* Deletes the Dataverse collection whose database ID or alias is given:
13
+
*
14
+
* @param {number | string} [collectionIdOrAlias] - A generic collection identifier, which can be either a string (for queries by CollectionAlias), or a number (for queries by CollectionId)
15
+
* @returns {Promise<void>} -This method does not return anything upon successful completion.
0 commit comments