2020-07-08 10:14:03 +00:00
|
|
|
export const ANONYMOUS_USERNAME = "anonymousUser";
|
|
|
|
|
|
2019-12-23 12:16:33 +00:00
|
|
|
export type User = {
|
|
|
|
|
id: string;
|
|
|
|
|
email: string;
|
|
|
|
|
currentOrganizationId: string;
|
|
|
|
|
organizationIds: string[];
|
2020-03-09 05:46:32 +00:00
|
|
|
applications: UserApplication[];
|
2020-06-17 10:19:56 +00:00
|
|
|
username: string;
|
2019-12-23 12:16:33 +00:00
|
|
|
};
|
2020-01-03 08:49:47 +00:00
|
|
|
|
2020-03-09 05:46:32 +00:00
|
|
|
export interface UserApplication {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 08:49:47 +00:00
|
|
|
export const CurrentUserDetailsRequestPayload = {
|
2020-03-06 06:54:44 +00:00
|
|
|
id: "profile",
|
2020-01-03 08:49:47 +00:00
|
|
|
};
|