mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
702 B
27 lines
702 B
import { SubscriptionOffer } from '@ghostfolio/common/types';
|
|
import { SubscriptionType } from '@ghostfolio/common/types/subscription-type.type';
|
|
|
|
import { Account, Tag } from '@prisma/client';
|
|
|
|
import { SystemMessage } from './system-message.interface';
|
|
import { UserSettings } from './user-settings.interface';
|
|
|
|
// TODO: Compare with UserWithSettings
|
|
export interface User {
|
|
access: {
|
|
alias?: string;
|
|
id: string;
|
|
}[];
|
|
accounts: Account[];
|
|
dateOfFirstActivity: Date;
|
|
id: string;
|
|
permissions: string[];
|
|
settings: UserSettings;
|
|
systemMessage?: SystemMessage;
|
|
subscription: {
|
|
expiresAt?: Date;
|
|
offer: SubscriptionOffer;
|
|
type: SubscriptionType;
|
|
};
|
|
tags: Tag[];
|
|
}
|
|
|