export type UserKind = 'MEMBER' | 'PAT' | 'PUBLIC' | 'WEBHOOK';

export type User = {
  id: string;
  kind: UserKind;
  name: string;
  picture: string | null;
  isActive: boolean;
};
