fix expected endpoint response

Signed-off-by: Meredith Lancaster <[email protected]>
This commit is contained in:
Meredith Lancaster
2025-12-09 08:02:38 -08:00
parent 97b7fa81c8
commit 0380590fdd
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ export type StorageRecordOptions = {
*/
export async function createStorageRecord(
options: StorageRecordOptions
): Promise<string[]> {
): Promise<number[]> {
const retries = options.writeOptions.retry ?? DEFAULT_RETRY_COUNT
const octokit = github.getOctokit(options.token, {retry: {retries}}, retry)
@@ -67,7 +67,7 @@ export async function createStorageRecord(
? JSON.parse(response.data)
: response.data
return data?.storage_records.map((r: {id: number}) => String(r.id))
return data?.storage_records.map((r: {id: number}) => r.id)
} catch (err) {
const message = err instanceof Error ? err.message : err
throw new Error(`Failed to persist storage record: ${message}`)