Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down