You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/gateway/opcodes/RequestChannelInfo.ts:48: status: d.fields.includes("status") ? null : undefined, // TODO: we dont track this
src/gateway/opcodes/RequestChannelInfo.ts:49: voice_start_time: d.fields.includes("voice_start_time") ? new Date().toISOString() : undefined, // TODO: we dont track this
src/gateway/opcodes/GuildSync.ts:24: // TODO: only show roles/members that have access to this channel
src/gateway/opcodes/GuildSync.ts:25: // TODO: config: to list all members (even those who are offline) sorted by role, or just those who are online
src/gateway/opcodes/Identify.ts:236: // TODO: we don't really need every property of
src/gateway/opcodes/Identify.ts:268: // is_spam: true, // TODO
src/gateway/opcodes/Identify.ts:425: // TODO: For guild profiles, this may need to be changed.
src/gateway/opcodes/Identify.ts:426: // TODO: The only field required in the user prop is `id`,
src/gateway/opcodes/Identify.ts:448: //TODO get this a better type
src/gateway/opcodes/Identify.ts:464: //TODO maybe implement this correctly, by causing create and delete events for users who can newly view and not view the channels, along with doing these checks correctly, as they don't currently take into account that the owner of the guild is always able to view channels, with potentially other issues
src/gateway/opcodes/Identify.ts:530: // TODO: fix the types of Recipient
src/gateway/opcodes/Identify.ts:556: is_spam: false, // TODO
src/gateway/opcodes/Identify.ts:644: version: 0, // TODO
src/gateway/opcodes/Identify.ts:649: version: 0, // TODO
src/gateway/opcodes/Identify.ts:652: presences: [], // TODO: Send actual data
src/gateway/opcodes/Identify.ts:666: consented: false, // TODO
src/gateway/opcodes/Identify.ts:678: session_type: "normal", // TODO
src/gateway/opcodes/Identify.ts:782: // TODO: check if bot has permission to view some of these based on intents (i.e. GUILD_MEMBERS, GUILD_PRESENCES, GUILD_VOICE_STATES)
src/gateway/listener/listener.ts:42: // TODO: Guild Member Update is sent for current-user updates regardless of whether the GUILD_MEMBERS intent is set.
src/gateway/listener/listener.ts:59: // TODO: use already queried guilds/channels of Identify and don't fetch them again
src/gateway/listener/listener.ts:197: // TODO: only subscribe for events that are in the connection intents
src/gateway/listener/listener.ts:211: // TODO: what do we even send here?
src/gateway/listener/listener.ts:220: // TODO: what do we even send here?
src/gateway/listener/listener.ts:225: this.close(CLOSECODES.Invalid_session); // TODO: this is deprecated?
Generated at commit
57827bc9:src/gateway/opcodes/RequestChannelInfo.ts:48: status: d.fields.includes("status") ? null : undefined, // TODO: we dont track thissrc/gateway/opcodes/RequestChannelInfo.ts:49: voice_start_time: d.fields.includes("voice_start_time") ? new Date().toISOString() : undefined, // TODO: we dont track thissrc/gateway/opcodes/GuildSync.ts:24: // TODO: only show roles/members that have access to this channelsrc/gateway/opcodes/GuildSync.ts:25: // TODO: config: to list all members (even those who are offline) sorted by role, or just those who are onlinesrc/gateway/opcodes/GuildSync.ts:26: // TODO: rewrite typeormsrc/gateway/opcodes/LazyRequest.ts:25: // TODO: only show roles/members that have access to this channelsrc/gateway/opcodes/LazyRequest.ts:26: // TODO: config: to list all members (even those who are offline) sorted by role, or just those who are onlinesrc/gateway/opcodes/LazyRequest.ts:27: // TODO: rewrite typeormsrc/gateway/opcodes/LazyRequest.ts:159: // TODO: check datasrc/gateway/opcodes/LazyRequest.ts:161: // noinspection JSUnusedLocalSymbols - TODO: implement typing/activities subscriptionssrc/gateway/opcodes/LazyRequest.ts:234: // TODO: unsubscribe member_events that are not in op.memberssrc/gateway/opcodes/Identify.ts:64: // TODO: user shardingsrc/gateway/opcodes/Identify.ts:65: // TODO: check privileged intents, if defined in the configsrc/gateway/opcodes/Identify.ts:110: if (!identify.intents) identify.intents = 0b11011111111111111111111111111111111n; // TODO: what is this number?src/gateway/opcodes/Identify.ts:113: // TODO: actually do intent things.src/gateway/opcodes/Identify.ts:121: // TODO: why do we even care about this right now?src/gateway/opcodes/Identify.ts:170: this.session.activities = identify.presence?.activities ?? []; // TODO: validationsrc/gateway/opcodes/Identify.ts:236: // TODO: we don't really need every property ofsrc/gateway/opcodes/Identify.ts:268: // is_spam: true, // TODOsrc/gateway/opcodes/Identify.ts:425: // TODO: For guild profiles, this may need to be changed.src/gateway/opcodes/Identify.ts:426: // TODO: The only field required in the user prop is `id`,src/gateway/opcodes/Identify.ts:448: //TODO get this a better typesrc/gateway/opcodes/Identify.ts:464: //TODO maybe implement this correctly, by causing create and delete events for users who can newly view and not view the channels, along with doing these checks correctly, as they don't currently take into account that the owner of the guild is always able to view channels, with potentially other issuessrc/gateway/opcodes/Identify.ts:530: // TODO: fix the types of Recipientsrc/gateway/opcodes/Identify.ts:556: is_spam: false, // TODOsrc/gateway/opcodes/Identify.ts:644: version: 0, // TODOsrc/gateway/opcodes/Identify.ts:649: version: 0, // TODOsrc/gateway/opcodes/Identify.ts:652: presences: [], // TODO: Send actual datasrc/gateway/opcodes/Identify.ts:666: consented: false, // TODOsrc/gateway/opcodes/Identify.ts:678: session_type: "normal", // TODOsrc/gateway/opcodes/Identify.ts:782: // TODO: check if bot has permission to view some of these based on intents (i.e. GUILD_MEMBERS, GUILD_PRESENCES, GUILD_VOICE_STATES)src/gateway/opcodes/Identify.ts:815: // TODO: ready supplementalsrc/gateway/opcodes/Identify.ts:834: //TODO send GUILD_MEMBER_LIST_UPDATEsrc/gateway/opcodes/Identify.ts:835: //TODO send VOICE_STATE_UPDATE to let the client know if another device is already connected to a voice channelsrc/gateway/opcodes/Heartbeat.ts:37: // TODO: validate payloadsrc/gateway/opcodes/RequestChannelStatuses.ts:30: // TODO: implementsrc/gateway/opcodes/StreamCreate.ts:39: // TODO: permissions check - if it's a guild, check if user is allowed to create stream in this guildsrc/gateway/opcodes/StreamCreate.ts:47: // TODO: actually apply preferred_region from the event payloadsrc/gateway/opcodes/StreamWatch.ts:12: // TODO: apply perms: check if user is allowed to watchsrc/gateway/opcodes/VoiceStateUpdate.ts:24: // TODO: check if a voice server is setupsrc/gateway/opcodes/VoiceStateUpdate.ts:90: //TODO the member should only have these properties: hoisted_role, deaf, joined_at, mute, roles, usersrc/gateway/opcodes/VoiceStateUpdate.ts:91: //TODO the member.user should only have these properties: avatar, discriminator, id, usernamesrc/gateway/opcodes/VoiceStateUpdate.ts:92: //TODO this may failsrc/gateway/opcodes/RequestGuildMembers.ts:58: // TODO: Configurable limit?src/gateway/opcodes/StreamDelete.ts:24: // noinspection JSUnusedLocalSymbols - TODO: what is type here?src/gateway/util/Heartbeat.ts:22: // TODO: make heartbeat timeout configurablesrc/gateway/util/Send.ts:63: // TODO: encode circular objectsrc/gateway/util/Send.ts:67: // TODO: compressionsrc/gateway/util/Utils.ts:43: // TODO: remove this when Server.stop() is fixed so that it waits for all websocket connections to run theirsrc/gateway/util/Utils.ts:46: // TODO: how is this different from clearing the table?src/gateway/util/Utils.ts:66: // TODO: async json object streamingsrc/gateway/events/Connection.ts:40: // TODO: check rate limitsrc/gateway/events/Connection.ts:41: // TODO: specify rate limit in configsrc/gateway/events/Connection.ts:42: // TODO: check msg max sizesrc/gateway/events/Close.ts:78: // TODOsrc/gateway/events/Message.ts:39: // TODO: compressionsrc/gateway/events/Message.ts:90: // TODO: if all opcodes are implemented comment this out:src/gateway/listener/listener.ts:40: // TODO: close connection on Invalidated Tokensrc/gateway/listener/listener.ts:41: // TODO: check intentsrc/gateway/listener/listener.ts:42: // TODO: Guild Member Update is sent for current-user updates regardless of whether the GUILD_MEMBERS intent is set.src/gateway/listener/listener.ts:59: // TODO: use already queried guilds/channels of Identify and don't fetch them againsrc/gateway/listener/listener.ts:197: // TODO: only subscribe for events that are in the connection intentssrc/gateway/listener/listener.ts:211: // TODO: what do we even send here?src/gateway/listener/listener.ts:220: // TODO: what do we even send here?src/gateway/listener/listener.ts:225: this.close(CLOSECODES.Invalid_session); // TODO: this is deprecated?