From 207498716a48bde4db559365850fcfe54cf2f57f Mon Sep 17 00:00:00 2001 From: Edwin Sirko Date: Mon, 29 Jan 2024 21:03:59 -0500 Subject: [PATCH] fixed repoId/ownerId as string in json manifest (#59) --- src/api-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api-client.ts b/src/api-client.ts index a665091..e0ab644 100644 --- a/src/api-client.ts +++ b/src/api-client.ts @@ -29,7 +29,7 @@ export async function getRepositoryMetadata( ) } - return { repoId: data.id, ownerId: data.owner.id } + return { repoId: String(data.id), ownerId: String(data.owner.id) } } export async function getContainerRegistryURL(): Promise {