2025-05-16 11:10:39 -04:00
|
|
|
import type { User } from './User';
|
|
|
|
|
|
2024-10-11 03:02:33 -04:00
|
|
|
export interface PreAuthKey {
|
2024-12-31 10:30:14 +05:30
|
|
|
id: string;
|
|
|
|
|
key: string;
|
2025-05-16 11:10:39 -04:00
|
|
|
user: User;
|
2024-12-31 10:30:14 +05:30
|
|
|
reusable: boolean;
|
|
|
|
|
ephemeral: boolean;
|
|
|
|
|
used: boolean;
|
|
|
|
|
expiration: string;
|
|
|
|
|
createdAt: string;
|
|
|
|
|
aclTags: string[];
|
2024-10-11 03:02:33 -04:00
|
|
|
}
|