add public and internal methods to delete artifacts

This commit is contained in:
Rob Herley
2024-01-17 16:18:49 -05:00
parent 1b5a6e26f4
commit b62d4c91b6
6 changed files with 642 additions and 3 deletions

View File

@@ -147,3 +147,13 @@ export interface FindOptions {
repositoryName: string
}
}
/**
* Response from the server when deleting an artifact
*/
export interface DeleteArtifactResponse {
/**
* The id of the artifact that was deleted
*/
id: number
}