Simplify to just name instead of artifactName

This commit is contained in:
Konrad Pabjan
2023-08-17 14:03:25 -04:00
parent 22298b02f4
commit d830aca920
3 changed files with 6 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ export async function listArtifacts(
// Iterate over the first page
listArtifactResponse.artifacts.forEach(artifact => {
artifacts.push({
artifactName: artifact.name,
name: artifact.name,
artifactId: artifact.id,
url: artifact.url,
size: artifact.size_in_bytes
@@ -99,7 +99,7 @@ export async function listArtifacts(
listArtifactResponse.artifacts.forEach(artifact => {
artifacts.push({
artifactName: artifact.name,
name: artifact.name,
artifactId: artifact.id,
url: artifact.url,
size: artifact.size_in_bytes

View File

@@ -109,7 +109,7 @@ export interface Artifact {
/**
* The name of the artifact
*/
artifactName: string
name: string
/**
* The ID of the artifact