diff --git a/error.ts b/error.ts index 2edbb43..c3497af 100644 --- a/error.ts +++ b/error.ts @@ -25,8 +25,12 @@ export interface NotPrivilegeError extends ErrorLike { /** Loginが必要なAPIをloginせずに叩いたときに発生するエラー */ export interface NotLoggedInError extends ErrorLike { name: "NotLoggedInError"; + /** 詳細情報 */ details: { + /** 取得しようとしたprojectの名前 */ + project: string; + /** 使用できるログイン方法 */ loginStrategies: ( | "google"