|
|
|
@ -2,7 +2,6 @@
|
|
|
|
/* tslint:disable */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
|
|
|
|
|
|
|
import type { file } from './file';
|
|
|
|
|
|
|
|
import type { Subscription } from './Subscription';
|
|
|
|
import type { Subscription } from './Subscription';
|
|
|
|
import type { UserPermission } from './UserPermission';
|
|
|
|
import type { UserPermission } from './UserPermission';
|
|
|
|
|
|
|
|
|
|
|
|
@ -10,14 +9,6 @@ export type User = {
|
|
|
|
uid?: string;
|
|
|
|
uid?: string;
|
|
|
|
name?: string;
|
|
|
|
name?: string;
|
|
|
|
passhash?: string;
|
|
|
|
passhash?: string;
|
|
|
|
files?: {
|
|
|
|
|
|
|
|
audio?: Array<file>;
|
|
|
|
|
|
|
|
video?: Array<file>;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
playlists?: {
|
|
|
|
|
|
|
|
audio?: Array<file>;
|
|
|
|
|
|
|
|
video?: Array<file>;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
subscriptions?: Array<Subscription>;
|
|
|
|
subscriptions?: Array<Subscription>;
|
|
|
|
created?: number;
|
|
|
|
created?: number;
|
|
|
|
role?: string;
|
|
|
|
role?: string;
|
|
|
|
|