1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-02 05:44:37 +02:00

fix: failing ci checks (#17810)

This commit is contained in:
Jason Rasmussen
2025-04-23 10:59:54 -04:00
committed by GitHub
parent b7a0cf2470
commit 1b5e981a45
6 changed files with 176 additions and 1955 deletions

View File

@ -687,17 +687,17 @@ export type TestEmailResponseDto = {
messageId: string;
};
export type OAuthConfigDto = {
codeChallenge?: string;
redirectUri: string;
state?: string;
codeChallenge?: string;
};
export type OAuthAuthorizeResponseDto = {
url: string;
};
export type OAuthCallbackDto = {
url: string;
state?: string;
codeVerifier?: string;
state?: string;
url: string;
};
export type PartnerResponseDto = {
avatarColor: UserAvatarColor;