🚀 feat: Change customOpenIdData to be optional and use Record<string, unknown> type

This commit is contained in:
Ruben Talstra 2025-03-24 09:36:12 +01:00
parent 7a5be00f71
commit 2267a251fa
No known key found for this signature in database
GPG key ID: 2A5A7174A60F3BEA

View file

@ -119,7 +119,7 @@ export type TUser = {
backupCodes?: TBackupCode[];
createdAt: string;
updatedAt: string;
customOpenIdData: { [key: string]: any };
customOpenIdData?: Record<string, unknown>;
};
export type TGetConversationsResponse = {