1 files changed, 0 insertions, 113 deletions
diff --git a/dist/models/User.d.ts b/dist/models/User.d.ts
deleted file mode 100644
index b5ecf123..00000000
--- a/dist/models/User.d.ts
+++ /dev/null
@@ -1,113 +0,0 @@
-/// <reference path="../util/MongoBigInt.d.ts" />
-import { Activity } from "./Activity";
-import { ClientStatus, Status } from "./Status";
-import { Schema, Document } from "mongoose";
-export interface User {
- id: string;
- username: string;
- discriminator: string;
- avatar: string | null;
- phone?: string;
- desktop: boolean;
- mobile: boolean;
- premium: boolean;
- premium_type: number;
- bot: boolean;
- system: boolean;
- nsfw_allowed: boolean;
- mfa_enabled: boolean;
- created_at: Date;
- verified: boolean;
- email?: string;
- flags: bigint;
- public_flags: bigint;
- user_settings: UserSettings;
- guilds: string[];
- user_data: UserData;
- presence: {
- status: Status;
- activities: Activity[];
- client_status: ClientStatus;
- };
-}
-export interface UserData {
- valid_tokens_since: Date;
- relationships: Relationship[];
- connected_accounts: ConnectedAccount[];
- hash: string;
- fingerprints: string[];
-}
-export interface UserDocument extends User, Document {
- id: string;
-}
-export interface PublicUser {
- id: string;
- discriminator: string;
- username: string;
- avatar?: string;
- public_flags: bigint;
-}
-export interface ConnectedAccount {
- access_token: string;
- friend_sync: boolean;
- id: string;
- name: string;
- revoked: boolean;
- show_activity: boolean;
- type: string;
- verifie: boolean;
- visibility: number;
-}
-export interface Relationship {
- id: string;
- nickname?: string;
- type: number;
- user_id: string;
-}
-export interface UserSettings {
- afk_timeout: number;
- allow_accessibility_detection: boolean;
- animate_emoji: boolean;
- animate_stickers: number;
- contact_sync_enabled: boolean;
- convert_emoticons: boolean;
- custom_status: {
- emoji_id: string | null;
- emoji_name: string | null;
- expires_at: number | null;
- text: string | null;
- };
- default_guilds_restricted: boolean;
- detect_platform_accounts: boolean;
- developer_mode: boolean;
- disable_games_tab: boolean;
- enable_tts_command: boolean;
- explicit_content_filter: number;
- friend_source_flags: {
- all: boolean;
- };
- gateway_connected: boolean;
- gif_auto_play: boolean;
- guild_folders: {
- color: number;
- guild_ids: string[];
- id: number;
- name: string;
- }[];
- guild_positions: string[];
- inline_attachment_media: boolean;
- inline_embed_media: boolean;
- locale: string;
- message_display_compact: boolean;
- native_phone_integration_enabled: boolean;
- render_embeds: boolean;
- render_reactions: boolean;
- restricted_guilds: string[];
- show_current_game: boolean;
- status: "online" | "offline" | "dnd" | "idle";
- stream_notifications_enabled: boolean;
- theme: "dark" | "white";
- timezone_offset: number;
-}
-export declare const UserSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
-export declare const UserModel: import("mongoose").Model<UserDocument>;
|