2023-03-15 08:35:16 +01:00
|
|
|
import { User } from '@typebot.io/prisma'
|
2022-11-15 09:35:48 +01:00
|
|
|
|
|
|
|
export const mockedUser: User = {
|
|
|
|
id: 'userId',
|
|
|
|
name: 'John Doe',
|
|
|
|
email: 'user@email.com',
|
|
|
|
company: null,
|
2023-02-21 15:25:14 +01:00
|
|
|
createdAt: new Date('2022-01-01'),
|
2022-11-15 09:35:48 +01:00
|
|
|
emailVerified: null,
|
|
|
|
graphNavigation: 'TRACKPAD',
|
2022-12-20 16:55:43 +01:00
|
|
|
preferredAppAppearance: null,
|
2022-11-15 09:35:48 +01:00
|
|
|
image: 'https://avatars.githubusercontent.com/u/16015833?v=4',
|
2023-02-21 15:25:14 +01:00
|
|
|
lastActivityAt: new Date('2022-01-01'),
|
2022-11-15 09:35:48 +01:00
|
|
|
onboardingCategories: [],
|
2023-02-21 15:25:14 +01:00
|
|
|
updatedAt: new Date('2022-01-01'),
|
2024-01-24 10:15:40 +01:00
|
|
|
displayedInAppNotifications: {
|
2024-03-15 16:32:29 +01:00
|
|
|
['graphGestureNotification']: true,
|
2024-01-24 10:15:40 +01:00
|
|
|
},
|
2024-02-02 14:48:09 +01:00
|
|
|
referral: null,
|
2022-11-15 09:35:48 +01:00
|
|
|
}
|