summary refs log tree commit diff
path: root/dist/Schema/Identify.d.ts
blob: 750f2871045edfba80a1e6bac11bec33c8d948dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { ActivitySchema } from "./Activity";
export declare const IdentifySchema: {
    token: StringConstructor;
    intents: BigIntConstructor;
    $properties: {
        $$os: StringConstructor;
        $$browser: StringConstructor;
        $$device: StringConstructor;
    };
    $presence: {
        afk: BooleanConstructor;
        status: StringConstructor;
        $activities: {
            name: StringConstructor;
            type: NumberConstructor;
            $url: StringConstructor;
            $created_at: NumberConstructor;
            $timestamps: {
                start: NumberConstructor;
                end: NumberConstructor;
            };
            $application_id: BigIntConstructor;
            $details: StringConstructor;
            $State: StringConstructor;
            $emoji: {
                name: StringConstructor;
                $id: BigIntConstructor;
                animated: BooleanConstructor;
            };
            $party: {
                $id: StringConstructor;
                $size: NumberConstructor[];
            };
            $assets: {
                $large_image: StringConstructor;
                $large_text: StringConstructor;
                $small_image: StringConstructor;
                $small_text: StringConstructor;
            };
            $secrets: {
                $join: StringConstructor;
                $spectate: StringConstructor;
                $match: StringConstructor;
            };
            $instance: BooleanConstructor;
            flags: BigIntConstructor;
        }[];
        $since: NumberConstructor;
    };
    $compress: BooleanConstructor;
    $large_threshold: NumberConstructor;
    $shard: NumberConstructor[];
    $guild_subscriptions: BooleanConstructor;
};
export interface IdentifySchema {
    token: string;
    properties: {
        $$os: string;
        $$browser: string;
        $$device: string;
    };
    intents: bigint;
    presence?: ActivitySchema;
    compress?: boolean;
    large_threshold?: number;
    shard?: [number];
    guild_subscriptions?: boolean;
}