From 2c2d211c3b9910c66d68823daeece9f86d6fcbef Mon Sep 17 00:00:00 2001 From: mgarciate <7695193+mgarciate@users.noreply.github.com> Date: Thu, 6 Apr 2023 12:20:57 +0200 Subject: [PATCH] Fix status type in index.ts --- build/api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/api/src/index.ts b/build/api/src/index.ts index a5dae1f..0873b4e 100644 --- a/build/api/src/index.ts +++ b/build/api/src/index.ts @@ -94,6 +94,6 @@ interface IImportKeyResponseData { data: IImportKeyResponse[]; } interface IImportKeyResponse { - status: Status; + status: string; message?: string; }