refactor: convert activity stub to a factory (#16702)

This commit is contained in:
Jason Rasmussen
2025-03-07 15:20:04 -05:00
committed by GitHub
parent f82786a297
commit 2d106755f6
5 changed files with 135 additions and 127 deletions

View File

@@ -15,6 +15,14 @@ export type AuthApiKey = {
permissions: Permission[];
};
export type User = {
id: string;
name: string;
email: string;
profileImagePath: string;
profileChangedAt: Date;
};
export type AuthSharedLink = {
id: string;
expiresAt: Date | null;