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: src/datasets/domain/useCases/LinkDataset.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ export class LinkDataset implements UseCase<void> {
11
11
/**
12
12
* Creates a link between a Dataset and a Collection.
13
13
*
14
-
* @param {number | string} [datasetId] - The dataset identifier, which can be a string (for persistent identifiers), or a number (for numeric identifiers).
15
-
* @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)
14
+
* @param {number} [datasetId] - The dataset id.
15
+
* @param {string} [collectionAlias] - The collection alias.
16
16
* @returns {Promise<void>} - This method does not return anything upon successful completion.
Copy file name to clipboardExpand all lines: src/datasets/domain/useCases/UnlinkDataset.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ export class UnlinkDataset implements UseCase<void> {
11
11
/**
12
12
* Removes a link between a Dataset and a Collection.
13
13
*
14
-
* @param {number | string} [datasetId] - The dataset identifier, which can be a string (for persistent identifiers), or a number (for numeric identifiers).
15
-
* @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)
14
+
* @param {number} [datasetId] - The dataset id.
15
+
* @param {string} [collectionAlias] - The collection alias.
16
16
* @returns {Promise<void>} - This method does not return anything upon successful completion.
0 commit comments