summary refs log tree commit diff
path: root/dist/Schema/Identify.js
blob: 3cc343c848b6a1698f2cadab07821867dba75c50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IdentifySchema = void 0;
const Activity_1 = require("./Activity");
exports.IdentifySchema = {
    token: String,
    intents: BigInt,
    $properties: {
        // bruh discord really uses $ in the property key, so we need to double prefix it, because instanceOf treats $ (prefix) as a optional key
        $$os: String,
        $$browser: String,
        $$device: String,
    },
    $presence: Activity_1.ActivitySchema,
    $compress: Boolean,
    $large_threshold: Number,
    $shard: [Number],
    $guild_subscriptions: Boolean,
};
//# sourceMappingURL=Identify.js.map