Data Stores
This is a reference of most of available internal data stores as well as their properties and methods. All the store listed here can be found through BdApi.Webpack.getStore() using the names seen here.
Useful Snippets
Store Map
If you want to get a mapping of all the stores listed here, you can use a code snippet very similar to the one used to generate the information on this page.
Snippet
(() => {
const stores = BdApi.Webpack.getModules(m => m?._dispatchToken && m?.getName);
const mapped = {};
for (const store of stores) {
const storeName = store.constructor.displayName ?? store.constructor.persistKey ?? store.constructor.name ?? store.getName();
if (storeName.length === 1) continue;
mapped[storeName] = store;
}
return mapped;
})();With this, you can quickly play around with and learn about all the stores listed below.
Usage Examples
If you're overwhelmed or just unsure how these modules can be useful, take a look at some quick examples in the snippet below.
Snippet
const {Webpack} = BdApi;
const UserStore = Webpack.getStore("UserStore");
const ChannelStore = Webpack.getStore("ChannelStore");
const GuildStore = Webpack.getStore("GuildStore");
const GuildChannelStore = Webpack.getStore("GuildChannelStore");
const GuildMemberStore = Webpack.getStore("GuildMemberStore")
const currentUser = UserStore.getCurrentUser();
// -> {id: "user_id", username: "UserName", discriminator: "1234", ...}
const allGuilds = GuildStore.getGuilds();
// -> {guild_id_1: {name: "Guild Name 1", ...}, guild_id_2: {name: "Guild Name 2", ...}, ...}
const guildChannels = GuildChannelStore.getChannels("guild_id");
// -> {id: "guild_id", count: number, VOCAL: {}, SELECTABLE: {}, ...}
const channel = ChannelStore.getChannel("channel_id");
// -> {id: "channel_id", name: "Channel Name", type: "GUILD_TEXT", ...}
const isInGuild = GuildMemberStore.isMember("guild_id", currentUser.id);
// -> true or false
const guildRoles = GuildStore.getRoles("guild_id");
// -> {role_id_1: {name: "Role Name 1", ...}, role_id_2: {name: "Role Name 2", ...}, ...}These stores make it easy to get information that can be very helpful to create advanced plugins.
Documentation
The module list below is generated by running a code snippet in Discord's console. It uses a mapping of all data stores to generate markdown.
Snippet
(() => {
// Get a mapping of all stores to their properties and methods
const stores = BdApi.Webpack.getModules(m => m?._dispatchToken && m?.getName);
const mapped = {};
for (const store of stores) {
// Handle stores with weird store names and exclude those that can't be fixed
const storeName = store.constructor.displayName ?? store.constructor.persistKey ?? store.constructor.name ?? store.getName();
if (storeName.length === 1) continue;
const ownProps = Object.getOwnPropertyNames(store.constructor.prototype).filter(n => n !== "constructor");
mapped[storeName] = {
properties: ownProps.filter(p => typeof(store[p]) !== "function"),
methods: ownProps.filter(p => typeof(store[p]) === "function")
};
}
// Use the store mapping to generate markdown
const docs = [];
const storeNames = Object.keys(mapped).sort();
for (const name of storeNames) {
// Add store name and property list
const lines = [`### ${name}`, "", "**Properties**"];
for (const prop of mapped[name].properties) lines.push(`- \`${prop}\``);
// Add spacing buffer and stylized methods
lines.push("", "**Methods**");
for (const func of mapped[name].methods) lines.push(`- \`${func}()\``);
docs.push(lines.join("\n"));
}
return docs.join("\n\n---\n\n");
})();Module List
AVErrorStore
Properties
Methods
hasActiveErrorOfType()getActiveErrors()getActiveErrorsOfType()
AccessibilityStore
Properties
fontScalefontSizeisFontScaledUpisFontScaledDownfontScaleClasszoomisZoomedInisZoomedOutkeyboardModeEnabledcolorblindModelowContrastModesaturationcontrastdesaturateUserColorsforcedColorsModalSeenkeyboardNavigationExplainerModalSeenmessageGroupSpacingisMessageGroupSpacingIncreasedisMessageGroupSpacingDecreasedisSubmitButtonEnabledsyncProfileThemeWithUserThemesystemPrefersReducedMotionrawPrefersReducedMotionuseReducedMotionsystemForcedColorssyncForcedColorsuseForcedColorssystemPrefersContrastsystemPrefersCrossfadesalwaysShowLinkDecorationsroleStyledisplayNameStylesEnabledisHighContrastModeEnabled
Methods
initialize()getUserAgnosticState()
ActiveJoinedThreadsStore
Properties
Methods
initialize()hasActiveJoinedUnreadThreads()getActiveUnjoinedThreadsForParent()getActiveJoinedThreadsForParent()getAllActiveJoinedThreads()getActiveJoinedThreadsForGuild()getActiveJoinedUnreadThreadsForGuild()getActiveJoinedUnreadThreadsForParent()getActiveJoinedRelevantThreadsForGuild()getActiveJoinedRelevantThreadsForParent()getActiveUnjoinedThreadsForGuild()getActiveUnjoinedUnreadThreadsForGuild()getActiveUnjoinedUnreadThreadsForParent()getNewThreadCountsForGuild()computeAllActiveJoinedThreads()getNewThreadCount()getActiveThreadCount()
ActiveThreadsStore
Properties
Methods
initialize()isActive()getThreadsForGuild()getThreadsForParent()hasThreadsForChannel()forEachGuild()hasLoaded()
ActivityInviteEducationStore
Properties
Methods
initialize()getState()shouldShowEducation()
ActivityInviteModalStore
Properties
Methods
initialize()getActivity()getQuery()getResults()
ActivityLauncherStore
Properties
Methods
getState()getStates()
ActivityShelfStore
Properties
Methods
initialize()getState()
AdyenStore
Properties
clientcashAppPayComponent
Methods
ApexExperimentStore
Properties
Methods
initialize()getState()processExperimentsMessage()handleApexExperimentOverrideCreate()handleApexExperimentOverrideDelete()handleApexExperimentsMetadataFetchSuccess()getExperimentsMetadata()getClientOverrides()getExperimentClientOverride()handleLogout()registerExperiment()getRegisteredExperiments()getAssignment()getServerAssignment()getEvaluation()getEvaluationAndAssignment()trackExperimentExposure()trackCommonTriggerPointExposures()trackExposureSuppression()evaluationIds()shouldTrackExposure()loadTrackedExposures()saveTrackedExposures()clearAllServerAssignments()clearAllOverrides()clearAllTrackedExposures()getHash()
AppIconPersistedStoreState
Properties
isUpsellPreview
Methods
initialize()getState()getCurrentDesktopIcon()
AppLauncherStore
Properties
Methods
initialize()shouldShowPopup()shouldShowModal()entrypoint()lastShownEntrypoint()activeViewType()closeReason()initialState()appDMChannelsWithFailedLoads()
AppViewStore
Properties
Methods
initialize()getHomeLink()
ApplicationAssetsStore
Properties
Methods
getApplicationAssetFetchState()getFetchingIds()getApplicationAssets()
ApplicationBuildStore
Properties
Methods
initialize()getTargetBuildId()getTargetManifests()hasNoBuild()isFetching()needsToFetchBuildSize()getBuildSize()
ApplicationCommandAutocompleteStore
Properties
Methods
initialize()getLastErrored()getAutocompleteChoices()getAutocompleteLastChoices()getLastResponseNonce()
ApplicationCommandFrecencyStore
Properties
Methods
initialize()getState()hasPendingUsage()getCommandFrecencyWithoutLoadingLatest()getScoreWithoutLoadingLatest()getTopCommandsWithoutLoadingLatest()
ApplicationCommandIndexStore
Properties
Methods
initialize()getContextState()hasContextStateApplication()getGuildState()getUserState()hasUserStateApplication()getApplicationState()getApplicationStates()hasApplicationState()query()queryInstallOnDemandApp()
ApplicationCommandStore
Properties
Methods
initialize()getActiveCommand()getActiveCommandSection()getActiveOptionName()getActiveOption()getPreferredCommandId()getOptionStates()getOptionState()getCommandOrigin()getSource()getOption()getState()
ApplicationDirectoryApplicationsStore
Properties
Methods
getApplication()getApplicationRecord()getApplications()getApplicationFetchState()getApplicationFetchStates()isInvalidApplication()getInvalidApplicationIds()isFetching()getApplicationLastFetchTime()
ApplicationDirectoryCategoriesStore
Properties
Methods
getLastFetchTimeMs()getCategories()getCategory()
ApplicationDirectorySearchStore
Properties
Methods
getSearchResults()getFetchState()
ApplicationDirectorySimilarApplicationsStore
Properties
Methods
getSimilarApplications()getFetchState()
ApplicationFrecencyStore
Properties
Methods
initialize()getState()hasPendingUsage()getApplicationFrecencyWithoutLoadingLatest()getScoreWithoutLoadingLatest()getTopApplicationsWithoutLoadingLatest()
ApplicationStatisticsStore
Properties
Methods
getStatisticsForApplication()shouldFetchStatisticsForApplication()
ApplicationStore
Properties
Methods
initialize()getState()_getAllApplications()getApplications()getGuildApplication()getGuildApplicationIds()getApplication()getApplicationByName()getApplicationLastUpdated()isFetchingApplication()didFetchingApplicationFail()getFetchingOrFailedFetchingIds()getAppIdForBotUserId()
ApplicationStoreDirectoryStore
Properties
Methods
initialize()hasStorefront()getStoreLayout()getFetchStatus()
ApplicationStoreLocationStore
Properties
Methods
getCurrentPath()getCurrentRoute()reset()
ApplicationStoreSettingsStore
Properties
didMatureAgree
Methods
ApplicationStoreUserSettingsStore
Properties
hasAcceptedStoreTerms
Methods
initialize()getState()hasAcceptedEULA()
ApplicationStreamPreviewStore
Properties
Methods
getPreviewURL()shouldFetchPreview()getPreviewURLForStreamKey()getIsPreviewLoading()
ApplicationStreamingSettingsStore
Properties
Methods
initialize()getState()
ApplicationStreamingStore
Properties
Methods
initialize()getState()isSelfStreamHidden()getLastActiveStream()getAllActiveStreams()getAllActiveStreamsForChannel()getActiveStreamForStreamKey()getActiveStreamForApplicationStream()getCurrentUserActiveStream()getActiveStreamForUser()getStreamerActiveStreamMetadata()getStreamerActiveStreamMetadataForStream()getIsActiveStreamPreviewDisabled()getAnyStreamForUser()getAnyDiscoverableStreamForUser()getStreamForUser()getRTCStream()getAllApplicationStreams()getAllApplicationStreamsForChannel()getViewerIds()getCurrentAppIntent()getStreamingState()
ApplicationSubscriptionChannelNoticeStore
Properties
Methods
initialize()getUserAgnosticState()getLastGuildDismissedTime()
ApplicationSubscriptionStore
Properties
Methods
getSubscriptionGroupListingsForApplicationFetchState()getSubscriptionGroupListing()getSubscriptionGroupListingForSubscriptionListing()getSubscriptionListing()getSubscriptionListingsForApplication()getEntitlementsForGuildFetchState()getSubscriptionListingForPlan()getApplicationEntitlementsForGuild()getEntitlementsForGuild()
ApplicationViewStore
Properties
applicationFilterQueryapplicationViewItemslaunchableApplicationViewItemslibraryApplicationViewItemsfilteredLibraryApplicationViewItemssortedFilteredLibraryApplicationViewItemshiddenLibraryApplicationViewItemshasFetchedApplications
Methods
initialize()
AppliedGuildBoostStore
Properties
isModifyingAppliedBoostapplyBoostErrorunapplyBoostErrorcooldownEndsAtisFetchingCurrentUserAppliedBoosts
Methods
getAppliedGuildBoostsForGuild()getLastFetchedAtForGuild()getCurrentUserAppliedBoosts()getAppliedGuildBoost()
ArchivedThreadsStore
Properties
canLoadMorenextOffsetisInitialLoad
Methods
initialize()isLoading()getThreads()
AuthInviteStore
Properties
Methods
getGuild()
AuthSessionsStore
Properties
Methods
getSessions()
AuthorizedAppsStore
Properties
Methods
initialize()getNewestTokenForApplication()getNewestTokens()getNewestTokensForNonChildrenApplications()getFetchState()
AutoUpdateStore
Properties
Methods
getState()
BasicGuildStore
Properties
Methods
getGuild()getGuildOrStatus()getVersion()
BillingInfoStore
Properties
isBusyisUpdatingPaymentSourceisRemovingPaymentSourceisSyncingisSubscriptionFetchingisPaymentSourceFetchingeditSourceErrorremoveSourceErroripCountryCodeLoadedipCountryCodeipCountryCodeRequestipLocationLoadedipLocationipLocationRequestipLocationHasErroripCountryCodeWithFallbackipCountryCodeHasErrorpaymentSourcesFetchRequest
Methods
BitRateStore
Properties
bitrate
Methods
BraintreeStore
Properties
Methods
getClient()getPayPalClient()getVenmoClient()getLastURL()
BrowserCheckoutStateStore
Properties
browserCheckoutStateloadIdskuIdplanId
Methods
BrowserHandoffStore
Properties
userkey
Methods
initialize()isHandoffAvailable()
BurstReactionEffectsStore
Properties
Methods
getReactionPickerAnimation()getEffectForEmojiId()
CallChatToastsStore
Properties
Methods
initialize()getToastsEnabled()getState()
CallStore
Properties
Methods
initialize()getCall()getCalls()getMessageId()isCallActive()isCallUnavailable()getInternalState()
CategoryCollapseStore
Properties
version
Methods
initialize()getState()isCollapsed()getCollapsedCategories()
CertifiedDeviceStore
Properties
Methods
initialize()isCertified()getCertifiedDevice()getCertifiedDeviceName()getCertifiedDeviceByType()isHardwareMute()hasEchoCancellation()hasNoiseSuppression()hasAutomaticGainControl()getVendor()getModel()getRevision()
ChangelogStore
Properties
Methods
initialize()getChangelog()latestChangelogId()getChangelogLoadStatus()hasLoadedConfig()getConfig()overrideId()lastSeenChangelogId()lastSeenChangelogDate()getStateForDebugging()isLocked()
ChannelFollowerStatsStore
Properties
Methods
getFollowerStatsForChannel()
ChannelFollowingPublishBumpStore
Properties
Methods
initialize()shouldShowBump()
ChannelListStore
Properties
Methods
initialize()getGuild()getGuildWithoutChangingGuildActionRows()recentsChannelCount()
ChannelListUnreadsStore
Properties
Methods
initialize()getUnreadStateForGuildId()
ChannelListVoiceCategoryStore
Properties
Methods
initialize()isVoiceCategoryExpanded()isVoiceCategoryCollapsed()getState()
ChannelMemberStore
Properties
Methods
initialize()getProps()getRows()
ChannelPinsStore
Properties
Methods
initialize()getPins()
ChannelRTCStore
Properties
Methods
initialize()getState()getParticipantsVersion()getParticipants()getSpeakingParticipants()getFilteredParticipants()getVideoParticipants()getStreamParticipants()getActivityParticipants()getParticipant()getUserParticipantCount()getParticipantsOpen()getVoiceParticipantsHidden()getSelectedParticipantId()getSelectedParticipant()getSelectedParticipantStats()getGuildRingingUsers()getMode()getLayout()getChatOpen()getAllChatOpen()getParticipantsListOpen()isFullscreenInContext()getStageStreamSize()getStageVideoLimitBoostUpsellDismissed()
ChannelSKUStore
Properties
Methods
getSkuIdForChannel()
ChannelSectionStore
Properties
Methods
initialize()getState()getSection()getSidebarState()getGuildSidebarState()getCurrentSidebarChannelId()getCurrentSidebarMessageId()
ChannelSettingsIntegrationsStore
Properties
webhookseditedWebhookformState
Methods
initialize()hasChanges()getWebhook()showNotice()getProps()
ChannelSettingsPermissionsStore
Properties
editedPermissionIdspermissionOverwritesselectedOverwriteIdformStateisLockablelockedchannelcategoryadvancedMode
Methods
initialize()hasChanges()showNotice()getPermissionOverwrite()
ChannelSettingsStore
Properties
Methods
initialize()hasChanges()isOpen()getSection()getInvites()showNotice()getChannel()getFormState()getCategory()getProps()
ChannelStatusStore
Properties
Methods
getChannelStatus()
ChannelStore
Properties
Methods
initialize()hasChannel()getBasicChannel()getChannel()loadAllGuildAndPrivateChannelsFromDisk()getChannelIds()getMutablePrivateChannels()getMutableBasicGuildChannelsForGuild()getMutableGuildChannelsForGuild()getSortedLinkedChannelsForGuild()getSortedPrivateChannels()getDMFromUserId()getDMChannelFromUserId()getMutableDMsByUserIds()getDMUserIds()getPrivateChannelsVersion()getGuildChannelsVersion()getAllThreadsForParent()getAllThreadsForGuild()getInitialOverlayState()getDebugInfo()
ChatWallpaperStore
Properties
isFetchingWallpapersshouldFetchWallpapershasFetchedWallpapersfailedToFetchWallpaperswallpapers
Methods
getWallpaperById()isUpdatingChatWallpaperFlagForChannel()getLastSetWallpaperMessageIdForChannel()
CheckoutRecoveryStore
Properties
Methods
getIsTargeted()shouldFetchCheckoutRecovery()
ClickerGameStore
Properties
currentPointslifetimePointspointsSpentpointsByItemnumPurchasespurchasedItemsstartTimeendTimeisRedeemingPrizevolumeisMuted
Methods
initialize()getState()getContributionsForItem()hasPurchasedItem()getPurchasedItemUpgrades()hasPurchasedUpgrade()getNumPurchasesForItemUpgrade()getPurchasedUpgradesForItem()hasUnlockedAchievement()getItemMetadata()getLastAction()
ClientThemesBackgroundStore
Properties
gradientPresetisPreviewisCoachmarkmobilePendingThemeIndex
Methods
initialize()getState()getLinearGradient()
ClipsStore
Properties
Methods
initialize()getClips()getPendingClips()getUserAgnosticState()getSettings()getLastClipsSession()getClipsWarningShown()getActiveAnimation()getStreamClipAnimations()hasAnyClipAnimations()getHardwareClassification()getHardwareClassificationForDecoupled()getHardwareClassificationVersion()getIsAtMaxSaveClipOperations()getLastClipsError()isClipsEnabledForUser()isVoiceRecordingAllowedForUser()isViewerClippingAllowedForUser()isDecoupledGameClippingEnabled()hasClips()hasTakenDecoupledClip()getNewClipIds()
CloudSyncStore
Properties
Methods
initialize()getState()isSyncing()
CodedLinkNativeAppStateStore
Properties
Methods
getState()getHighestState()
CollapsedVoiceChannelStore
Properties
Methods
initialize()getState()getCollapsed()isCollapsed()
CollectiblesCategoryStore
Properties
isFetchingCategorieserrorlastErrorTimestamplastSuccessfulFetchlastFetchOptionscategoriesproductsproductsWithVariantsAsGrouprecommendedGiftSkuIdsskipNumCategories
Methods
initialize()isFetchingProduct()getCategory()getProduct()getProductsBySkus()getProductFetchError()getProductFetchErrorTimestamp()getProductByStoreListingId()getCategoryByStoreListingId()getCategoryForProduct()
CollectiblesMarketingsStore
Properties
fetchState
Methods
getMarketingBySurface()
CollectiblesPurchaseStore
Properties
isFetchingisClaimingpurchasesfetchErrorclaimErrorhasPreviouslyFetched
Methods
getPurchase()
CollectiblesShopHomesStore
Properties
Methods
getLastSuccessfulFetch()getLastErrorTimestamp()getLastFetchOptions()getFetchShopHomeError()getIsFetchingShopHome()getShopBlocks()getShopHomeConfigOverride()
CollectiblesShopStore
Properties
analyticsLocationsanalyticsSourceinitialProductSkuId
Methods
getAnalytics()
CommandsMigrationStore
Properties
Methods
initialize()getState()shouldShowChannelNotice()canShowOverviewTooltip()canShowToggleTooltip()
ConnectedAccountsStore
Properties
Methods
isJoining()joinErrorMessage()isFetching()getAccounts()getLocalAccounts()getAccount()getLocalAccount()isSuggestedAccountType()addPendingAuthorizedState()deletePendingAuthorizedState()hasPendingAuthorizedState()
ConnectedAppsStore
Properties
connections
Methods
isConnected()getApplication()getAllConnections()
ConnectedDeviceStore
Properties
initializedlastDeviceConnectedinputDeviceslastInputSystemDeviceoutputDeviceslastOutputSystemDevice
Methods
initialize()getUserAgnosticState()
ConsentStore
Properties
consentsfetchedConsentsreceivedConsentsInConnectionOpen
Methods
hasConsented()getAuthenticationConsentRequired()
ConsumablesStore
Properties
lastConfetticonfettiMode
Methods
getPrice()isFetchingPrice()getErrored()getEntitlement()fetchPotionCount()isEntitlementFetched()isEntitlementFetching()getPreviousGoLiveSettings()
ContentInventoryActivityStore
Properties
Methods
initialize()getMatchingActivity()
ContentInventoryDevToolsStore
Properties
Methods
getFakeGameToShow()getFakeGameData()
ContentInventoryOutboxStore
Properties
deleteOutboxEntryErrorisDeletingEntryHistoryhasInitialized
Methods
getMatchingOutboxEntry()getUserOutbox()isFetchingUserOutbox()
ContentInventoryPersistedStore
Properties
hidden
Methods
initialize()getState()getImpressionCappedItemIds()getDebugFastImpressionCappingEnabled()reset()
ContentInventoryStore
Properties
Methods
getFeeds()getFeed()getFeedState()getLastFeedFetchDate()getFilters()getFeedRequestId()getDebugImpressionCappingDisabled()getMatchingInboxEntry()
ContextMenuStore
Properties
version
Methods
isOpen()getContextMenu()close()
CreatorMonetizationMarketingStore
Properties
Methods
getEligibleGuildsForNagActivate()
CreatorMonetizationStore
Properties
Methods
getPriceTiersFetchStateForGuildAndType()getPriceTiersForGuildAndType()
CustomActivityLinksStore
Properties
Methods
getOne()
DCFEventStore
Properties
Methods
getDCFEvents()
DataHarvestStore
Properties
harvestTyperequestingHarvest
Methods
DefaultRouteStore
Properties
defaultRoutelastNonVoiceRoutefallbackRoute
Methods
initialize()getState()
DetectableGameSupplementalStore
Properties
Methods
canFetch()isFetching()didFetchingFail()getGame()getGames()getLocalizedName()getThemes()getCoverImageUrl()
DetectedOffPlatformPremiumPerksStore
Properties
Methods
initialize()getDetectedOffPlatformPremiumPerks()
DevToolsDesignTogglesStore
Properties
Methods
getUserAgnosticState()initialize()get()set()all()allWithDescriptions()
DevToolsDevSettingsStore
Properties
Methods
getUserAgnosticState()initialize()get()enabled()allByCategory()
DevToolsSettingsStore
Properties
sidebarWidthlastOpenTabIddisplayToolsshowDevWidgetdevWidgetPositionsortedScreenKeysisRandomlyChangingPremiumOptions
Methods
initialize()getUserAgnosticState()
DeveloperActivityShelfStore
Properties
Methods
initialize()getState()getIsEnabled()getLastUsedObject()getUseActivityUrlOverride()getActivityUrlOverride()getFetchState()getFilter()getDeveloperShelfItems()inDevModeForApplication()
DeveloperExperimentStore
Properties
Methods
initialize()getExperimentDescriptor()
DeveloperOptionsStore
Properties
isTracingRequestsisForcedCanaryisLoggingGatewayEventsisLoggingOverlayEventsisLoggingAnalyticsEventsisAxeEnabledcssDebuggingEnabledlayoutDebuggingEnabledsourceMapsEnabledisAnalyticsDebuggerEnabledisBugReporterEnabledisIdleStatusIndicatorEnabledonlyShowPreviewAppCollectionsdisableAppCollectionsCacheisStreamInfoOverlayEnabledpreventPopoutCloselogKeyboardMismatches
Methods
initialize()getDebugOptionsHeaderValue()
DeviceFrecencyStore
Properties
Methods
initialize()getState()getInputDeviceIdsSortedByFrecency()getOutputDeviceIdsSortedByFrecency()getVideoDeviceIdsSortedByFrecency()
DimensionStore
Properties
Methods
percentageScrolled()getChannelDimensions()getGuildDimensions()getGuildListDimensions()isAtBottom()
DismissibleContentFrameworkStore
Properties
dailyCapOverriddennewUserMinAgeRequiredOverriddenlastDCDismissed
Methods
initialize()getState()getRenderedAtTimestamp()hasUserHitDCCap()
DispatchApplicationErrorStore
Properties
Methods
getLastError()
DispatchApplicationLaunchSetupStore
Properties
Methods
getLastProgress()isRunning()
DispatchApplicationStore
Properties
Methods
initialize()getState()isUpToDate()shouldPatch()isInstalled()supportsCloudSync()isLaunchable()getDefaultLaunchOption()getLaunchOptions()getHistoricalTotalBytesRead()getHistoricalTotalBytesDownloaded()getHistoricalTotalBytesWritten()whenInitialized()
DispatchManagerStore
Properties
activeItemsfinishedItemspaused
Methods
initialize()getQueuePosition()isCorruptInstallation()
DomainMigrationStore
Properties
Methods
getMigrationStatus()
DraftStore
Properties
Methods
initialize()getState()getThreadDraftWithParentMessageId()getRecentlyEditedDrafts()getDraft()getThreadSettings()
EditMessageStore
Properties
Methods
isEditing()isEditingAny()getEditingTextValue()getEditingRichValue()getEditingMessageId()getEditingMessage()getEditActionSource()
EmailSettingsStore
Properties
Methods
getEmailSettings()
EmbeddedActivitiesStore
Properties
Methods
initialize()getState()getSelfEmbeddedActivityForChannel()getSelfEmbeddedActivityForLocation()getSelfEmbeddedActivities()getEmbeddedActivitiesForGuild()getEmbeddedActivitiesForChannel()getEmbeddedActivitiesForLocation()getEmbeddedActivitiesForStartingChannel()getEmbeddedActivitiesByChannel()getEmbeddedActivityDurationMs()isLaunchingActivity()getShelfActivities()getShelfFetchStatus()shouldFetchShelf()getOrientationLockStateForApp()getPipOrientationLockStateForApp()getGridOrientationLockStateForApp()getLayoutModeForApp()getConnectedActivityChannelId()getConnectedActivityLocation()getActivityPanelMode()getFocusedLayout()getCurrentEmbeddedActivity()getEmbeddedActivityForUserId()hasActivityEverBeenLaunched()getLaunchState()getLaunchStates()getActivityPopoutWindowLayout()
EmojiStore
Properties
loadStateexpandedSectionsByGuildIdscategoriesdiversitySurrogateemojiFrecencyWithoutFetchingLatestemojiReactionFrecencyWithoutFetchingLatest
Methods
initialize()getState()hasPendingUsage()getGuildEmoji()getUsableGuildEmoji()getGuilds()getDisambiguatedEmojiContext()getSearchResultsOrder()searchWithoutFetchingLatest()getUsableCustomEmojiById()getCustomEmojiById()getTopEmoji()getNewlyAddedEmoji()getTopEmojisMetadata()getEmojiAutosuggestion()hasUsableEmojiInAnyGuild()hasFavoriteEmojis()
EnablePublicGuildUpsellNoticeStore
Properties
Methods
initialize()isVisible()
EntitlementStore
Properties
fetchingAllEntitlementsfetchedAllEntitlementsfetchedEndedEntitlementsapplicationIdsFetchingapplicationIdsFetched
Methods
initialize()get()getGiftable()getForApplication()getForSku()isFetchingForApplication()isFetchedForApplication()getForSubscription()isEntitledToSku()hasFetchedForApplicationIds()getReverseTrialEntitlement()getFractionalPremium()isFractionalPremiumActive()getUnactivatedFractionalPremiumUnits()
EventDirectoryStore
Properties
Methods
isFetching()getEventDirectoryEntries()getCachedGuildByEventId()getCachedGuildScheduledEventById()
ExpandedGuildFolderStore
Properties
Methods
initialize()getState()getExpandedFolders()isFolderExpanded()
ExperimentStore
Properties
hasLoadedExperiments
Methods
initialize()loadCache()takeSnapshot()hasRegisteredExperiment()getUserExperimentDescriptor()getGuildExperimentDescriptor()getUserExperimentBucket()getGuildExperimentBucket()getAllUserExperimentDescriptors()getGuildExperiments()getLoadedUserExperiment()getLoadedGuildExperiment()getRecentExposures()getRegisteredExperiments()getAllExperimentOverrideDescriptors()getExperimentOverrideDescriptor()getAllExperimentAssignments()getSerializedState()hasExperimentTrackedExposure()
ExternalStreamingStore
Properties
Methods
initialize()getStream()
FalsePositiveStore
Properties
validContentScanVersion
Methods
getFpMessageInfo()getChannelFpInfo()canSubmitFpReport()
FamilyCenterStore
Properties
Methods
initialize()loadCache()takeSnapshot()getSelectedTeenId()getLinkedUsers()getLinkTimestamp()getRangeStartTimestamp()getActionsForDisplayType()getTotalForDisplayType()getLinkCode()getGuild()getSelectedTab()getStartId()getIsInitialized()getUserCountry()isLoading()canRefetch()
FavoriteStore
Properties
favoriteServerMuted
Methods
initialize()getFavoriteChannels()isFavorite()getFavorite()getCategoryRecord()getNickname()
FavoritesSuggestionStore
Properties
Methods
initialize()getSuggestedChannelId()getState()
FeedbackOverrideStore
Properties
Methods
initialize()getFeedbackConfig()
FirstPartyRichPresenceStore
Properties
Methods
initialize()getActivities()
ForumActivePostStore
Properties
Methods
initialize()getNewThreadCount()getCanAckThreads()getThreadIds()getCurrentThreadIds()getAndDeleteMostRecentUserCreatedThreadId()getFirstNoReplyThreadId()
ForumChannelAdminOnboardingGuideStore
Properties
Methods
initialize()hasHidden()getState()
ForumPostMessagesStore
Properties
Methods
initialize()isLoading()getMessage()
ForumPostUnreadCountStore
Properties
Methods
initialize()getCount()getThreadIdsMissingCounts()
ForumSearchStore
Properties
Methods
getSearchQuery()getSearchLoading()getSearchResults()getHasSearchResults()
FramesStore
Properties
Methods
getConnectedFrame()getFrameLayoutMode()isFrameActive()
FrecencyStore
Properties
frecencyWithoutFetchingLatest
Methods
initialize()getState()hasPendingUsage()getFrequentlyWithoutFetchingLatest()getScoreWithoutFetchingLatest()getScoreForDMWithoutFetchingLatest()getMaxScore()getBonusScore()
FriendSuggestionStore
Properties
Methods
initialize()getSuggestionCount()getSuggestions()getSuggestion()
FriendsStore
Properties
Methods
initialize()getState()
GIFPickerViewStore
Properties
Methods
getAnalyticsID()getQuery()getResultQuery()getResultItems()getTrendingCategories()getSelectedFormat()getSuggestions()getTrendingSearchTerms()
GameConsoleStore
Properties
Methods
initialize()getUserAgnosticState()getDevicesForPlatform()getLastSelectedDeviceByPlatform()getDevice()getFetchingDevices()getPendingDeviceCommands()getRemoteSessionId()getAwaitingRemoteSessionInfo()
GameInviteStore
Properties
Methods
getInvites()getInviteStatuses()isInviteGameInstalled()isInviteJoinable()getLastUnseenInvite()getUnseenInviteCount()
GameLibraryViewStore
Properties
sortDirectionsortKeyactiveRowKeyisNavigatingByKeyboard
Methods
initialize()
GamePartyStore
Properties
Methods
initialize()getParty()getUserParties()getParties()
GameRelationshipStore
Properties
Methods
initialize()getPendingIncomingCount()getPendingOutgoingCount()getGameFriendCount()getGameFriendsForApplication()getGameRelationshipsForUser()getGameRelationshipsForUserByType()getGameFriendsForUser()getGameRelationshipCount()getGameRelationships()getGameRelationshipsByType()getGameRelationshipsVersion()
GameStore
Properties
gamesfetchingdetectableGamesEtaglastFetcheddetectableGamesTtl
Methods
initialize()getState()getDetectableGame()getGameByName()isGameInDatabase()canFetchDetectableGames()getGameByExecutable()getGameByGameData()shouldReport()markGameReported()
GatedChannelStore
Properties
Methods
initialize()isChannelGated()isChannelGatedAndVisible()isChannelOrThreadParentGated()
GatewayConnectionStore
Properties
Methods
initialize()getSocket()isTryingToConnect()isConnected()isConnectedOrOverlay()lastTimeConnectedChanged()
GeoRestrictedGuildStore
Properties
Methods
getGeoRestrictedGuilds()
GiftCodeStore
Properties
Methods
get()getError()getForGifterSKUAndPlan()getIsResolving()getIsResolved()getIsAccepting()getUserGiftCodesFetchingForSKUAndPlan()getUserGiftCodesLoadedAtForSKUAndPlan()getResolvingCodes()getResolvedCodes()getAcceptingCodes()
GlobalDiscoveryServersSearchCountStore
Properties
Methods
getIsInitialFetchComplete()getIsFetchingCounts()getCounts()
GlobalDiscoveryServersSearchLayoutStore
Properties
Methods
initialize()getVisibleTabs()
GlobalDiscoveryServersSearchResultsStore
Properties
Methods
getGuild()getGuildIds()getIsFetching()getIsInitialFetchComplete()getOffset()getTotal()getLastFetchTimestamp()getError()getErrorMessage()
GuildAffinitiesStore
Properties
affinitieshasRequestResolved
Methods
initialize()getState()getGuildAffinity()
GuildAutomodMessageStore
Properties
Methods
initialize()getState()getMessage()getMessagesVersion()getMentionRaidDetected()getLastIncidentAlertMessage()
GuildAvailabilityStore
Properties
totalGuildstotalUnavailableGuildsunavailableGuilds
Methods
initialize()isUnavailable()
GuildBoostSlotStore
Properties
hasFetchedisFetchingboostSlots
Methods
initialize()getGuildBoostSlot()
GuildBoostingNoticeStore
Properties
Methods
initialize()channelNoticePredicate()
GuildBoostingProgressBarPersistedStore
Properties
Methods
initialize()getState()getCountForGuild()
GuildCategoryStore
Properties
Methods
initialize()getCategories()
GuildChannelStore
Properties
Methods
initialize()getAllGuilds()getChannels()getFirstChannelOfType()getFirstChannel()getDefaultChannel()getSFWDefaultChannel()getSelectableChannelIds()getSelectableChannels()getVocalChannelIds()getDirectoryChannelIds()hasSelectableChannel()hasElevatedPermissions()hasChannels()hasCategories()getTextChannelNameDisambiguations()
GuildDirectorySearchStore
Properties
Methods
getSearchState()getSearchResults()shouldFetch()
GuildDirectoryStore
Properties
Methods
isFetching()getCurrentCategoryId()getDirectoryEntries()getDirectoryEntry()getDirectoryAllEntriesCount()getDirectoryCategoryCounts()getAdminGuildEntryIds()
GuildDiscoveryCategoryStore
Properties
Methods
getPrimaryCategories()getDiscoveryCategories()getClanDiscoveryCategories()getAllCategories()getFetchedLocale()getCategoryName()
GuildIdentitySettingsStore
Properties
Methods
getFormState()getErrors()showNotice()getIsSubmitDisabled()getPendingAvatar()getPendingAvatarDecoration()getPendingProfileEffectId()getPendingBanner()getPendingBio()getPendingNickname()getPendingPronouns()getPendingAccentColor()getPendingThemeColors()getPendingNameplate()getAllPending()getGuild()getSource()
GuildIncidentsStore
Properties
Methods
initialize()getGuildIncident()getIncidentsByGuild()getGuildAlertSettings()
GuildJoinRequestStoreV2
Properties
Methods
getRequest()getRequests()getSubmittedGuildJoinRequestTotal()isFetching()hasFetched()getSelectedApplicationTab()getSelectedSortOrder()getSelectedGuildJoinRequest()
GuildLeaderboardRanksStore
Properties
Methods
initialize()getState()getPrevLeaderboardRanks()getCurrentLeaderboardRanks()reset()
GuildLeaderboardStore
Properties
Methods
getLeaderboards()get()getLeaderboardResponse()
GuildMFAWarningStore
Properties
Methods
initialize()isVisible()
GuildMemberCountStore
Properties
Methods
getMemberCounts()getMemberCount()getOnlineCount()
GuildMemberRequesterStore
Properties
Methods
initialize()requestMember()
GuildMemberStore
Properties
Methods
initialize()getMutableAllGuildsAndMembers()memberOf()getNicknameGuildsMapping()getNicknames()isMember()isGuestOrLurker()isCurrentUserGuest()getMemberIds()getMembers()getTrueMember()getMember()getSelfMember()getSelfMemberJoinedAt()getCachedSelfMember()getNick()getCommunicationDisabledUserMap()getCommunicationDisabledVersion()getPendingRoleUpdates()getMemberRoleWithPendingUpdates()getMemberVersion()
GuildNSFWAgreeStore
Properties
Methods
initialize()didAgree()
GuildOnboardingHomeNavigationStore
Properties
Methods
initialize()getState()getSelectedResourceChannelId()getHomeNavigationChannelId()
GuildOnboardingHomeSettingsStore
Properties
Methods
getSettings()getNewMemberActions()getActionForChannel()hasMemberAction()getResourceChannels()getResourceForChannel()getIsLoading()getWelcomeMessage()hasSettings()getEnabled()getNewMemberAction()
GuildOnboardingMemberActionStore
Properties
Methods
getCompletedActions()hasCompletedActionForChannel()getState()
GuildOnboardingPromptsStore
Properties
Methods
initialize()getOnboardingPromptsForOnboarding()getOnboardingPrompts()getOnboardingResponses()getSelectedOptions()getOnboardingResponsesForPrompt()getEnabledOnboardingPrompts()getDefaultChannelIds()getEnabled()getOnboardingPrompt()isLoading()shouldFetchPrompts()getPendingResponseOptions()ackIdForGuild()lastFetchedAt()isAdvancedMode()
GuildOnboardingStore
Properties
Methods
shouldShowOnboarding()getOnboardingStatus()resetOnboardingStatus()getCurrentOnboardingStep()
GuildPowerupsNotificationStore
Properties
Methods
getState()initialize()getNotificationStateForGuild()
GuildPowerupsStore
Properties
Methods
initialize()getState()getStateForGuild()shouldFetchCatalogForGuild()shouldFetchPowerupsForGuild()hasFetchedPowerupCatalog()hasFetchedUnlockedPowerups()
GuildProductsStore
Properties
Methods
getGuildProductsForGuildFetchState()getGuildProduct()getGuildProductsForGuild()getGuildProductFetchState()isGuildProductsCacheExpired()
GuildProfileStore
Properties
Methods
getProfile()getFetchStatus()getLastSyncTimestamp()getIsUpdating()getErrorCode()
GuildPromptsStore
Properties
Methods
initialize()hasViewedPrompt()getState()
GuildReadStateStore
Properties
Methods
initialize()loadCache()takeSnapshot()hasAnyUnread()getStoreChangeSentinel()getMutableUnreadGuilds()getMutableGuildStates()hasUnread()getMentionCount()getIsMentionLowImportance()getGuildHasUnreadIgnoreMuted()getTotalMentionCount()getTotalNotificationsMentionCount()getPrivateChannelMentionCount()getMentionCountForPrivateChannel()getGuildChangeSentinel()
GuildRoleConnectionEligibilityStore
Properties
Methods
getGuildRoleConnectionEligibility()
GuildRoleConnectionsConfigurationStore
Properties
Methods
initialize()getGuildRoleConnectionsConfiguration()
GuildRoleMemberCountStore
Properties
Methods
getRoleMemberCount()shouldFetch()
GuildRoleStore
Properties
Methods
serializeAllGuildRoles()getUnsafeMutableRoles()getManyRoles()getRole()getNumRoles()getEveryoneRole()
GuildRoleSubscriptionTierTemplatesStore
Properties
Methods
getTemplates()getTemplateWithCategory()getChannel()
GuildRoleSubscriptionsStore
Properties
Methods
getSubscriptionGroupListingsForGuildFetchState()getDidFetchListingForSubscriptionPlanId()getSubscriptionGroupListing()getSubscriptionGroupListingsForGuild()getSubscriptionGroupListingForSubscriptionListing()getSubscriptionListing()getSubscriptionListingsForGuild()getSubscriptionListingForPlan()getSubscriptionSettings()getSubscriptionTrial()getMonetizationRestrictions()getMonetizationRestrictionsFetchState()getApplicationIdForGuild()
GuildScheduledEventStore
Properties
Methods
getGuildScheduledEvent()getGuildEventCountByIndex()getGuildScheduledEventsForGuild()getGuildScheduledEventsByIndex()getRsvpVersion()getRsvp()isInterestedInEventRecurrence()getUserCount()hasUserCount()isActive()getActiveEventByChannel()getUsersForGuildEvent()
GuildSettingsAuditLogStore
Properties
logsintegrationswebhooksguildScheduledEventsautomodRulesthreadsapplicationCommandsisInitialLoadingisLoadingisLoadingNextPagehasOlderLogshasErroruserIdsuserIdFiltertargetIdFilteractionFilterdeletedTargetsgroupedFetchCount
Methods
initialize()
GuildSettingsEmojiStore
Properties
Methods
initialize()isUploadingEmoji()getEmojiRevision()getEmojis()getEmojiFileInputAutoOpen()
GuildSettingsIntegrationsStore
Properties
guildintegrationswebhookseditedCommandIdeditedIntegrationeditedWebhookformState
Methods
initialize()hasChanges()getErrors()getSection()getSectionId()getIntegration()getWebhook()isFetching()showNotice()getApplication()
GuildSettingsRolesStore
Properties
errorMessagehasSortChangeshasRoleConfigurationChangesguildeditedRoleIdseditedRoleIdsForConfigurationsrolesformState
Methods
initialize()hasChanges()getRoleStyleData()getSortDeltas()showNotice()getRole()getPermissionSearchQuery()getEditedRoleConnectionConfigurationsMap()
GuildSettingsStore
Properties
Methods
initialize()getMetadata()widgetHasChanges()hasChanges()isOpen()getSavedRouteState()getSection()showNotice()getGuildId()showPublicSuccessModal()getGuild()getGuildProfile()getWidget()isSubmitting()isGuildMetadataLoaded()getErrors()getError()getProfileError()getSelectedRoleId()getSlug()getBans()getProps()
GuildStore
Properties
Methods
getGuildCount()
GuildSubscriptionsStore
Properties
Methods
initialize()getSubscribedThreadIds()isSubscribedToThreads()isSubscribedToAnyMember()isSubscribedToMemberUpdates()isSubscribedToAnyGuildChannel()
GuildTagChangedCoachmarkStore
Properties
Methods
initialize()getState()getGuildLastSeenInfo()
GuildTemplateStore
Properties
Methods
getGuildTemplate()getGuildTemplates()getForGuild()getDisplayedGuildTemplateCode()
GuildTemplateTooltipStore
Properties
Methods
shouldShowGuildTemplateDirtyTooltip()shouldShowGuildTemplatePromotionTooltip()
GuildVerificationStore
Properties
Methods
initialize()getCheck()canChatInGuild()
HangStatusStore
Properties
Methods
initialize()getState()getCurrentHangStatus()getCustomHangStatus()getRecentCustomStatuses()getCurrentDefaultStatus()getHangStatusActivity()
HighFiveStore
Properties
Methods
initialize()getWaitingHighFive()getCompletedHighFive()getEnabled()getUserAgnosticState()
HookErrorStore
Properties
Methods
getHookError()
HotspotStore
Properties
Methods
initialize()hasHotspot()hasHiddenHotspot()getHotspotOverride()getState()
HubLinkNoticeStore
Properties
Methods
initialize()channelNoticePredicate()
HypeSquadStore
Properties
Methods
getHouseMembership()
IdleStore
Properties
Methods
isIdle()isAFK()getIdleSince()getSystemSuspended()getSystemLocked()
IgnoreNoticeStore
Properties
Methods
initialize()getState()getIgnoreTimestamps()
ImpersonateStore
Properties
Methods
initialize()hasViewingRoles()isViewingRoles()getViewingRoles()getViewingRolesTimestamp()getData()isFullServerPreview()isOptInEnabled()isOnboardingEnabled()getViewingChannels()getOnboardingResponses()getMemberOptions()isChannelOptedIn()isViewingServerShop()getImpersonateType()getBackNavigationSection()
IncomingCallStore
Properties
Methods
initialize()getIncomingCalls()getIncomingCallChannelIds()getFirstIncomingCallId()hasIncomingCalls()
InstallationManagerStore
Properties
defaultInstallationPathinstallationPathsinstallationPathsMetadata
Methods
initialize()getState()hasGamesInstalledInPath()shouldBeInstalled()getInstallationPath()getLabelFromPath()
InstanceIdStore
Properties
Methods
getId()
InstantInviteStore
Properties
Methods
getInvite()getFriendInvite()getFriendInvitesFetching()canRevokeFriendInvite()
IntegrationQueryStore
Properties
Methods
getResults()getQuery()
InteractionModalStore
Properties
Methods
getModalState()
InteractionStore
Properties
Methods
getInteraction()getMessageInteractionStates()canQueueInteraction()getIFrameModalApplicationId()getIFrameModalKey()
InviteModalStore
Properties
Methods
initialize()isOpen()getProps()
InviteNoticeStore
Properties
Methods
initialize()channelNoticePredicate()
InviteStore
Properties
Methods
getInvite()getInviteError()getInvites()getInviteKeyForGuildId()
JoinedThreadsStore
Properties
Methods
hasJoined()joinTimestamp()flags()getInitialOverlayState()getMuteConfig()getMutedThreads()isMuted()
KeybindsStore
Properties
Methods
initialize()getUserAgnosticState()hasKeybind()hasExactKeybind()getKeybindForAction()getOverlayKeybind()getOverlayChatKeybind()
KeywordFilterStore
Properties
Methods
loadCache()takeSnapshot()getKeywordTrie()initializeForKeywordTests()
LabFeatureStore
Properties
Methods
getUserAgnosticState()initialize()get()set()
LaunchableGameStore
Properties
launchingGameslaunchableGames
Methods
isLaunchable()
LayerStore
Properties
Methods
hasLayers()getLayers()
LayoutStore
Properties
Methods
initialize()getState()getLayouts()getLayout()getAllWidgets()getWidget()getWidgetsForLayout()getAllUnpinnedPinnedWidgets()getWidgetConfig()getWidgetDefaultSettings()getWidgetType()getRegisteredWidgets()getDefaultLayout()
LibraryApplicationStatisticsStore
Properties
applicationStatisticslastFetched
Methods
getGameDuration()getLastPlayedDateTime()hasApplicationStatistic()getCurrentUserStatisticsForApplication()getQuickSwitcherScoreForApplication()
LibraryApplicationStore
Properties
libraryApplicationsfetchedentitledBranchIdshasRemovedLibraryApplicationThisSession
Methods
initialize()getAllLibraryApplications()hasLibraryApplication()hasApplication()getLibraryApplication()getActiveLibraryApplication()isUpdatingFlags()getActiveLaunchOptionId()whenInitialized()
LiveChannelNoticesStore
Properties
Methods
initialize()isLiveChannelNoticeHidden()getState()
LocalActivityStore
Properties
Methods
initialize()getActivities()getPrimaryActivity()getApplicationActivity()getCustomStatusActivity()findActivity()getApplicationActivities()getActivityForPID()
LocalInteractionComponentStateStore
Properties
Methods
getInteractionComponentStates()getInteractionComponentStateVersion()getInteractionComponentState()
LocaleStore
Properties
localesystemLocale
Methods
initialize()
LoginRequiredActionStore
Properties
Methods
initialize()requiredActions()requiredActionsIncludes()wasLoginAttemptedInSession()getState()
LurkerModePopoutStore
Properties
Methods
initialize()shouldShowPopout()
LurkingStore
Properties
Methods
initialize()lurkingGuildIds()mostRecentLurkedGuildId()isLurking()getLurkingSource()getLoadId()
MFAStore
Properties
togglingSMShasSeenBackupPrompt
Methods
getVerificationKey()getBackupCodes()getNonces()
MaintenanceStore
Properties
Methods
initialize()getIncident()getScheduledMaintenance()
MaskedLinkStore
Properties
Methods
initialize()isTrustedDomain()isTrustedProtocol()
MaxMemberCountChannelNoticeStore
Properties
Methods
initialize()isVisible()
MediaEngineStatsStore
Properties
Methods
getConnectionStats()getLastConnectionStats()getStatsHistory()getAccumulatedPerformanceStats()
MediaEngineStore
Properties
Methods
initialize()supports()supportsInApp()isSupported()isExperimentalEncodersSupported()isNoiseSuppressionSupported()isNoiseCancellationSupported()isNoiseCancellationError()isAutomaticGainControlSupported()shouldOfferManualSubsystemSelection()showBypassSystemInputProcessing()isAdvancedVoiceActivitySupported()isAecDumpSupported()isSimulcastSupported()goLiveSimulcastEnabled()getAecDump()getMediaEngine()getVideoComponent()getCameraComponent()getKrispSuppressionLevel()getKrispEnableStats()isEnabled()isMute()isDeaf()hasContext()isSelfMutedTemporarily()isSelfMute()shouldSkipMuteUnmuteSound()notifyMuteUnmuteSoundWasSkipped()isHardwareMute()isEnableHardwareMuteNotice()isSelfDeaf()isVideoEnabled()isVideoAvailable()isScreenSharing()isSoundSharing()isLocalMute()supportsDisableLocalVideo()isLocalVideoDisabled()getVideoToggleState()isLocalVideoAutoDisabled()isAnyLocalVideoAutoDisabled()isMediaFilterSettingLoading()isNativeAudioPermissionReady()getGoLiveSource()getGoLiveContext()getLastAudioInputDeviceChangeTimestamp()getLocalPan()getLocalVolume()getInputVolume()getOutputVolume()getMode()getModeOptions()getActiveVoiceFilter()getActiveVoiceFilterAppliedAt()getPreviousVoiceFilter()getPreviousVoiceFilterAppliedAt()getMostRecentlyRequestedVoiceFilter()getVoiceFilterPlaybackEnabled()getShortcuts()getInputDeviceId()getOutputDeviceId()getVideoDeviceId()getInputDevices()getOutputDevices()getVideoDevices()getEchoCancellation()getSidechainCompression()getSidechainCompressionStrength()getH265Enabled()getLoopback()getLoopbackReasons()getNoiseSuppression()getAutomaticGainControl()getBypassSystemInputProcessing()getNoiseCancellation()getExperimentalEncoders()getHardwareEncoding()getEnableSilenceWarning()getDebugLogging()getQoS()getAttenuation()getAttenuateWhileSpeakingSelf()getAttenuateWhileSpeakingOthers()getAudioSubsystem()getMLSSigningKey()getActiveInputProfile()isInputProfileCustom()getSettings()getState()getInputDetected()getNoInputDetectedNotice()getPacketDelay()setCanHavePriority()isInteractionRequired()getVideoHook()supportsVideoHook()getExperimentalSoundshare()supportsExperimentalSoundshare()supportsHookSoundshare()getUseSystemScreensharePicker()supportsSystemScreensharePicker()getOpenH264()getEverSpeakingWhileMuted()getSpeakingWhileMuted()getKrispModelOverride()getKrispModels()getKrispVadActivationThreshold()hasActiveCallKitCall()setHasActiveCallKitCall()supportsScreenSoundshare()getVideoStreamParameters()fetchAsyncResources()getSupportedSecureFramesProtocolVersion()hasClipsSource()getGpuBrand()
MediaPlaybackStore
Properties
Methods
initialize()getUserAgnosticState()getPlaybackRate()getPlaybackPosition()
MediaPostEmbedStore
Properties
Methods
getMediaPostEmbed()getEmbedFetchState()getMediaPostEmbeds()
MediaPostSharePromptStore
Properties
Methods
shouldDisplayPrompt()
MemberSafetyStore
Properties
Methods
initialize()isInitialized()getMembersByGuildId()getMembersCountByGuildId()getEstimatedMemberSearchCountByGuildId()getKnownMemberSearchCountByGuildId()getCurrentMemberSearchResultsByGuildId()getSearchStateByGuildId()hasDefaultSearchStateByGuildId()getPagedMembersByGuildId()getPaginationStateByGuildId()getElasticSearchPaginationByGuildId()getEnhancedMember()getNewMemberTimestamp()getLastRefreshTimestamp()getLastCursorTimestamp()
MessageReactionsStore
Properties
Methods
getReactions()
MessageRequestPreviewStore
Properties
Methods
initialize()shouldLoadMessageRequestPreview()getMessageRequestPreview()
MessageRequestStore
Properties
Methods
initialize()loadCache()takeSnapshot()getMessageRequestChannelIds()getMessageRequestsCount()isMessageRequest()isAcceptedOptimistic()getUserCountryCode()isReady()
MessageStore
Properties
Methods
initialize()getMessages()getMessage()getLastEditableMessage()getLastChatCommandMessage()getLastMessage()getLastNonCurrentUserMessage()jumpedMessageId()focusedMessageId()hasPresent()isReady()whenReady()isLoadingMessages()hasCurrentUserSentMessage()hasCurrentUserSentMessageSinceAppStart()
MobileWebSidebarStore
Properties
Methods
getIsOpen()
MultiAccountStore
Properties
canUseMultiAccountNotificationsisSwitchingAccount
Methods
initialize()getCanUseMultiAccountMobile()getState()getUsers()getValidUsers()getHasLoggedInAccounts()getIsValidatingUsers()
MyGuildApplicationsStore
Properties
Methods
initialize()getState()getGuildIdsForApplication()getLastFetchTimeMs()getNextFetchRetryTimeMs()getFetchState()
NativeScreenSharePickerStore
Properties
Methods
initialize()supported()enabled()releasePickerStream()getPickerState()getLastPickedContent()getLastPickedContentTitle()getLastPickedContentPID()getStreamStartOptions()
NetworkStore
Properties
Methods
initialize()getType()getEffectiveConnectionSpeed()getServiceProvider()
NewChannelsStore
Properties
Methods
initialize()getNewChannelIds()shouldIndicateNewChannel()
NewPaymentSourceStore
Properties
stripePaymentMethodpopupCallbackCalledbraintreeEmailbraintreeNoncevenmoUsernameredirectedPaymentIdadyenPaymentDataredirectedPaymentSourceIdisCardInfoValidisBillingAddressInfoValiderror
Methods
getCreditCardInfo()getBillingAddressInfo()
NewUserStore
Properties
Methods
initialize()getType()getState()
NewlyAddedEmojiStore
Properties
Methods
initialize()getState()getLastSeenEmojiByGuild()isNewerThanLastSeen()
NoteStore
Properties
Methods
getNote()
NoticeStore
Properties
Methods
initialize()hasNotice()getNotice()isNoticeDismissed()
NotificationCenterItemsStore
Properties
loadinginitializeditemshasMorecursorerroredactivelocalItemstabFocused
Methods
initialize()getState()
NotificationCenterStore
Properties
Methods
initialize()getState()getTab()isLocalItemAcked()hasNewMentions()isDataStale()isRefreshing()shouldReload()
NotificationSettingsStore
Properties
taskbarFlash
Methods
initialize()getUserAgnosticState()getDesktopType()getTTSType()getDisabledSounds()getDisableAllSounds()getDisableUnreadBadge()getNotifyMessagesInSelectedChannel()isSoundDisabled()
NotificationsInboxStore
Properties
oldestDisplayedMessageIdhasMoreToLoadisLoadinghasLoadedEverhasPreloadedisLoadingCompleteselectedItemInfocurrentRequestAnalyticsPayload
Methods
initialize()canLoadMore()getInboxMessages()getNotifyingChannelIds()getChannelInfoMap()getDevOverrides()
NowPlayingStore
Properties
gamesusersPlayinggameIds
Methods
initialize()getNowPlaying()getUserGame()
NowPlayingViewStore
Properties
currentActivityPartiesnowPlayingCardsisMountedloaded
Methods
initialize()
OrderStore
Properties
isCreatingOrdercurrentOrderId
Methods
handleOrderCreateStart()handleOrderCreateSuccess()handleOrderCreateFail()handleOrderUpdateStart()handleOrderUpdateSuccess()handleOrderUpdateFail()handlePaymentModalOpen()
OverlayBridgeStore
Properties
enabledlegacyEnabled
Methods
initialize()isFocusedPidInputLocked()isInputLocked()DEV_isInputLockedV3()DEV_isInputLocked()isSupported()getAnyGlobalEnabledOverlay()getFocusedPID()isFocusedPidOutOfProcess()isCurrentPidOutOfProcess()isReady()isCrashed()getOverlayPIDStatuses()
OverlayNotificationsStore
Properties
Methods
initialize()getNotifications()
OverlayRTCConnectionStore
Properties
Methods
getConnectionState()getQuality()getHostname()getPings()getAveragePing()getLastPing()getOutboundLossRate()
OverlayRenderStore
Properties
Methods
initialize()getDevToolsFocusedPidsWithTimestamp()getHasLoadedExperiments()getForcedRenderMode()isAnyOverlayRendering()getOverlayMethod()isOverlayOOPEnabledForPid()hasChangedRenderMode()getTrackedGameByPid()getTrackedGames()getGameOverlayStatus()getGlobalEnabledStatus()getAnyGlobalEnabledOverlay()getPerGameEnabledStatus()getRenderMethod()getMostRecentOverlayRenderMethod()getOverlayRenderingTrackedGames()
OverlayRunningGameStore
Properties
Methods
getGameForPID()getGame()
OverlaySettingsStore
Properties
Methods
initialize()getState()isLimitedInteractionOverrideEnabled()isNotificationDisabled()getDisabledNotifications()
OverlayStore
Properties
showKeybindIndicatorsshowInviteNotificationdisableClickableRegionscustomInviteMessageinitializedincompatibleApp
Methods
initialize()getState()isLocked()isInstanceLocked()isInstanceFocused()isFocused()isPinned()getSelectedGuildId()getSelectedChannelId()getSelectedCallId()getDisplayUserMode()getDisplayNameMode()getAvatarSizeMode()getNotificationPositionMode()getTextChatNotificationMode()getDisableExternalLinkAlert()getFocusedPID()getActiveRegions()getTextWidgetOpacity()isPreviewingInGame()getTrackedGame()
OverlayStore-v3
Properties
enabled
Methods
initialize()DEV_getOverlayLoggingBreadcrumbs()DEV_isOverlayModuleLoggingEnabled()isInputLocked()isSupported()isOverlayV3Enabled()isOverlayV3EnabledForPID()getWidgetByType()isPinned()hasRenderDebugMode()getFocusedPID()isFocused()getFocusedRunningGame()isReady()isGPUBoosted()getOverlayState()getOverlayMethod()
OverridePremiumTypeStore
Properties
premiumType
Methods
initialize()getPremiumTypeOverride()getPremiumTypeActual()getCreatedAtOverride()getState()
PaymentAuthenticationStore
Properties
isAwaitingAuthenticationerrorawaitingPaymentId
Methods
PaymentSourceStore
Properties
paymentSourcespaymentSourceIdsdefaultPaymentSourceIddefaultPaymentSourcehasFetchedPaymentSources
Methods
getDefaultBillingCountryCode()getPaymentSource()
PaymentStore
Properties
Methods
getPayment()getPayments()
PendingReplyStore
Properties
Methods
getState()initialize()getPendingReply()getPendingReplyActionSource()
PermissionSpeakStore
Properties
Methods
initialize()isAFKChannel()shouldShowWarning()
PermissionStore
Properties
Methods
initialize()getChannelPermissions()getGuildPermissions()getGuildPermissionProps()canAccessMemberSafetyPage()canAccessGuildSettings()canWithPartialContext()can()canBasicChannel()computePermissions()computeBasicPermissions()canManageUser()getHighestRole()isRoleHigher()canImpersonateRole()getGuildVersion()getChannelsVersion()
PermissionVADStore
Properties
Methods
initialize()shouldShowWarning()canUseVoiceActivity()
PhoneStore
Properties
Methods
initialize()getUserAgnosticState()getCountryCode()
PictureInPictureStore
Properties
pipWindowpipVideoWindowpipActivityWindowpipFrameWindowpipWindows
Methods
initialize()pipWidth()isEmbeddedActivityHidden()isFrameHidden()getDockedRect()isOpen()getState()
PoggermodeAchievementStore
Properties
Methods
initialize()getState()getAllUnlockedAchievements()getUnlocked()
PoggermodeSettingsStore
Properties
settingsVisibleshakeIntensitycombosRequiredCountscreenshakeEnabledscreenshakeEnabledLocationscombosEnabledcomboSoundsEnabled
Methods
initialize()getUserAgnosticState()isEnabled()
PoggermodeStore
Properties
Methods
initialize()getComboScore()getUserCombo()isComboing()getMessageCombo()getMostRecentMessageCombo()getUserComboShakeIntensity()
PopoutWindowStore
Properties
Methods
initialize()getWindow()getWindowState()getWindowKeys()getWindowOpen()getIsAlwaysOnTop()getWindowFocused()getWindowVisible()getState()isWindowFullyInitialized()isWindowFullScreen()unmountWindow()
PremiumGiftingIntentStore
Properties
Methods
initialize()getState()getFriendAnniversaries()isTopAffinityFriendAnniversary()canShowFriendsTabBadge()getFriendAnniversaryYears()isGiftIntentMessageInCooldown()getDevToolTotalFriendAnniversaries()
PremiumPaymentModalStore
Properties
paymentError
Methods
getGiftCode()
PremiumPromoStore
Properties
Methods
initialize()isEligible()
PresenceStore
Properties
Methods
initialize()setCurrentUserOnConnectionOpen()getStatus()getActivities()getHiddenActivities()getPrimaryActivity()getAllApplicationActivities()getApplicationActivity()findActivity()getActivityMetadata()getUserIds()isMobileOnline()getClientStatus()getState()
PresenceSubscriptionsStore
Properties
Methods
initialize()isSubscribed()
PrivateChannelReadStateStore
Properties
Methods
initialize()getUnreadPrivateChannelIds()
PrivateChannelRecipientsInviteStore
Properties
Methods
initialize()getResults()hasFriends()getSelectedUsers()getQuery()getState()
PrivateChannelSortStore
Properties
Methods
initialize()getPrivateChannelIds()getSortedChannels()serializeForOverlay()
ProfileEffectStore
Properties
isFetchingAllfetchErrorprofileEffectstryItOutId
Methods
canFetch()getProfileEffectById()
PromotionsStore
Properties
outboundPromotionslastSeenOutboundPromotionStartDatelastDismissedOutboundPromotionStartDatelastFetchedActivePromotionsisFetchingActiveOutboundPromotionshasFetchedConsumedInboundPromotionIdconsumedInboundPromotionIdbogoPromotionisFetchingActiveBogoPromotionlastFetchedActiveBogoPromotion
Methods
initialize()getState()
ProxyBlockStore
Properties
blockedByProxy
Methods
PurchaseTokenAuthStore
Properties
purchaseTokenAuthStatepurchaseTokenHashexpiresAt
Methods
PurchasedItemsFestivityStore
Properties
canPlayWowMomentisFetchingWowMomentMediawowMomentWumpusMedia
Methods
getState()
QuestsStore
Properties
questsexcludedQuestsclaimedQuestsisFetchingCurrentQuestsisFetchingClaimedQuestslastFetchedCurrentQuestslastFetchedQuestToDeliverisFetchingQuestToDeliverquestDeliveryOverridequestToDeliverForPlacementquestEnrollmentBlockedUntil
Methods
isEnrolling()isClaimingReward()isFetchingRewardCode()isDismissingContent()getRewardCode()getRewards()getStreamHeartbeatFailure()getQuest()isProgressingOnDesktop()selectedTaskPlatform()getOptimisticProgress()getExpiredQuestsMap()isQuestExpired()
QuickSwitcherStore
Properties
Methods
initialize()getState()isOpen()getResultTotals()channelNoticePredicate()getFrequentGuilds()getFrequentGuildsLength()getChannelHistory()getProps()
RTCConnectionDesyncStore
Properties
desyncedVoiceStatesCount
Methods
initialize()getDesyncedUserIds()getDesyncedVoiceStates()getDesyncedParticipants()
RTCConnectionStore
Properties
Methods
initialize()getRTCConnection()getState()isConnected()isDisconnected()getRemoteDisconnectVoiceChannelId()getLastSessionVoiceChannelId()setLastSessionVoiceChannelId()getGuildId()getChannelId()getHostname()getQuality()getPings()getAveragePing()getLastPing()getOutboundLossRate()getMediaSessionId()getRTCConnectionId()getDuration()getVoiceFilterSpeakingDurationMs()getPacketStats()getVoiceStateStats()getWasEverMultiParticipant()getWasEverRtcConnected()getUserIds()isUserConnected()getSecureFramesState()getSecureFramesRosterMapEntry()getLastNonZeroRemoteVideoSinkWantsTime()getWasMoved()
RTCDebugStore
Properties
Methods
getSection()getInboundStats()getOutboundStats()getAllStats()getVideoStreams()shouldRecordNextConnection()getSimulcastDebugOverride()
RTCRegionStore
Properties
Methods
initialize()shouldIncludePreferredRegion()getPreferredRegion()getPreferredRegions()getRegion()getUserAgnosticState()shouldPerformLatencyTest()
ReadStateStore
Properties
Methods
initialize()getReadStatesByChannel()getForDebugging()getNotifCenterReadState()hasUnread()hasUnreadOrMentions()hasTrackedUnread()isForumPostUnread()getUnreadCount()getMentionCount()getIsMentionLowImportance()getGuildChannelUnreadState()hasRecentlyVisitedAndRead()ackMessageId()getTrackedAckMessageId()lastMessageId()lastMessageTimestamp()lastPinTimestamp()getOldestUnreadMessageId()getOldestUnreadTimestamp()isEstimated()hasOpenedThread()hasUnreadPins()isNewForumThread()getAllReadStates()getGuildUnreadsSentinel()getMentionChannelIds()getNonChannelAckId()getSnapshot()getChannelIdsForWindowId()
RecentMentionsStore
Properties
hasLoadedEverlastLoadedloadinghasMoreguildFiltereveryoneFilterroleFiltermentionsAreStalementionCountByChannel
Methods
initialize()getMentions()getSettingsFilteredMentions()hasMention()getMentionCountForChannel()
RecentUserActivityStore
Properties
currentUserApplicationIds
Methods
RecentVoiceChannelStore
Properties
Methods
initialize()getState()getChannelHistory()
RecentlyActiveCollapseStore
Properties
Methods
initialize()isCollapsed()getState()
ReferencedMessageStore
Properties
Methods
initialize()getMessageByReference()getMessage()getReplyIdsForChannel()
ReferralTrialStore
Properties
Methods
initialize()checkAndFetchReferralsRemaining()getReferralsRemaining()getSentUserIds()isFetchingReferralsRemaining()getRelevantUserTrialOffer()isResolving()getEligibleUsers()getFetchingEligibleUsers()getNextIndexOfEligibleUsers()getIsEligibleToSendReferrals()getRefreshAt()getAllRelevantReferralTrialOffers()getRecipientStatus()
RegionStore
Properties
Methods
initialize()getOptimalRegion()getOptimalRegionId()getRandomRegion()getRandomRegionId()getRegions()
RelationshipStore
Properties
Methods
initialize()isFriend()isBlockedOrIgnored()isBlockedOrIgnoredForMessage()isBlocked()isBlockedForMessage()isIgnored()isIgnoredForMessage()isUnfilteredPendingIncoming()getPendingCount()getSpamCount()getPendingIgnoredCount()getOutgoingCount()getFriendCount()getRelationshipCount()getMutableRelationships()getVersion()isSpam()getRelationshipType()getNickname()getSince()getSinces()getFriendIDs()getBlockedIDs()getIgnoredIDs()getBlockedOrIgnoredIDs()getOriginApplicationId()isStranger()
ReportToModStore
Properties
Methods
initialize()getState()isUserBanned()getReportedMessages()hasReportedMessage()
RobloxSubgameStore
Properties
Methods
initialize()getCurrentSubgameInfo()getState()
RpcNotificationSettingsStore
Properties
Methods
areSlayerNotificationsSuppressed()
RunningGameStore
Properties
canShowAdminWarning
Methods
initialize()getVisibleGame()getCurrentGameForAnalytics()getVisibleRunningGames()getRunningGames()getRunningDiscordApplicationIds()getRunningVerifiedApplicationIds()getGameForPID()getLauncherForPID()getOverlayOptionsForPID()shouldElevateProcessForPID()shouldContinueWithoutElevatedProcessForPID()getCandidateGames()getGamesSeen()getSeenGameByName()isObservedAppRunning()getOverrides()getOverrideForGame()getOverlayEnabledForGame()getGameOverlayStatus()getObservedAppNameForWindow()isDetectionEnabled()addExecutableTrackedByAnalytics()
SKUPaymentModalStore
Properties
isPurchasingSKUforceConfirmationStepOnMounterrorskuIdapplicationIdanalyticsLocationpromotionIdisIAPgiftCodeisGift
Methods
getPricesForSku()isOpen()isFetchingSKU()
SKUStore
Properties
Methods
initialize()get()getForApplication()isFetching()getSKUs()getParentSKU()didFetchingSkuFail()
SafetyHubStore
Properties
Methods
isFetching()getClassifications()getClassification()getAccountStanding()getFetchError()isInitialized()getClassificationRequestState()getAppealClassificationId()getIsDsaEligible()getIsAppealEligible()getAppealEligibility()getAppealSignal()getFreeTextAppealReason()getIsSubmitting()getSubmitError()getUsername()getAgeVerificationWebviewUrl()getAgeVerificationError()getIsLoadingAgeVerification()getAgeCheckStatus()getAgeCheckError()getAgeCheckAttempts()
SaveableChannelsStore
Properties
Methods
initialize()loadCache()canEvictOrphans()saveLimit()getSaveableChannels()takeSnapshot()
SavedMessagesStore
Properties
Methods
initialize()getSavedMessages()getSavedMessage()getMessageBookmarks()getMessageReminders()getOverdueMessageReminderCount()hasOverdueReminder()getSavedMessageCount()getIsStale()getLastChanged()isMessageBookmarked()isMessageReminder()
SearchAutocompleteStore
Properties
Methods
initialize()getState()getSelectedSearchContext()getFilterResults()
SearchMessageStore
Properties
Methods
getMessage()
SearchStore
Properties
Methods
initialize()getCurrentSearchId()getEditorState()shouldShowBlockedResults()shouldShowNoResultsAlt()getSearchResultsQueryString()getSearchResultsQuery()getSearchResultsOffset()hasSearchState()
SecureFramesPersistedStore
Properties
Methods
initialize()getState()getPersistentCodesEnabled()getUploadedKeyVersionsCached()
SecureFramesVerifiedStore
Properties
Methods
initialize()isCallVerified()isStreamVerified()isUserVerified()
SelectedChannelStore
Properties
Methods
initialize()getChannelId()getVoiceChannelId()getMostRecentSelectedTextChannelId()getCurrentlySelectedChannelId()getLastSelectedChannelId()getLastSelectedChannels()getLastChannelFollowingDestination()
SelectedGuildStore
Properties
Methods
initialize()getState()getGuildId()getLastSelectedGuildId()getLastSelectedTimestamp()
SelectivelySyncedUserSettingsStore
Properties
Methods
initialize()getState()shouldSync()getTextSettings()getAppearanceSettings()
SelfPresenceStore
Properties
Methods
initialize()getLocalPresence()getStatus()getActivities()getHiddenActivities()getPrimaryActivity()getApplicationActivity()findActivity()
SendMessageOptionsStore
Properties
Methods
getOptions()
SessionsStore
Properties
Methods
initialize()getSessions()getSession()getRemoteActivities()getHiddenActivities()getSessionById()getActiveSession()
SharedCanvasStore
Properties
visibleOverlayCanvas
Methods
getDrawables()getAvatarImage()getEmojiImage()getDrawMode()
SlowmodeStore
Properties
Methods
initialize()getSlowmodeCooldownGuess()isChannelOnCooldown()
SortedGuildStore
Properties
Methods
initialize()getGuildsTree()getGuildFolders()getGuildFolderById()getFlattenedGuildIds()getFlattenedGuildFolderList()getCompatibleGuildFolders()getFastListGuildFolders()takeSnapshot()
SortedVoiceStateStore
Properties
Methods
initialize()getVoiceStates()getAllVoiceStates()getVoiceStatesForChannel()getVoiceStatesForChannelAlt()countVoiceStatesForChannel()getVoiceStateVersion()
SoundboardEventStore
Properties
playedSoundHistoryrecentlyHeardSoundIdsfrecentlyPlayedSounds
Methods
initialize()getState()hasPendingUsage()
SoundboardOverlayStore
Properties
keepOpenenabled
Methods
SoundboardStore
Properties
Methods
initialize()getOverlaySerializedState()getSounds()getSoundsForGuild()getSound()getSoundById()isFetchingSounds()isFetchingDefaultSounds()isFetching()shouldFetchDefaultSounds()hasFetchedDefaultSounds()isUserPlayingSounds()isPlayingSound()isFavoriteSound()getFavorites()isLocalSoundboardMuted()hasHadOtherUserPlaySoundInSession()hasFetchedAllSounds()
SoundpackStore
Properties
Methods
initialize()getState()getSoundpack()getLastSoundpackExperimentId()
SpamMessageRequestStore
Properties
Methods
initialize()loadCache()takeSnapshot()getSpamChannelIds()getSpamChannelsCount()isSpam()isAcceptedOptimistic()isReady()
SpeakingStore
Properties
Methods
initialize()getSpeakingDuration()getSpeakers()isSpeaking()isPrioritySpeaker()isSoundSharing()isAnyoneElseSpeaking()isCurrentUserSpeaking()isAnyonePrioritySpeaking()isCurrentUserPrioritySpeaker()isCurrentUserPrioritySpeaking()
SpellcheckStore
Properties
Methods
initialize()isEnabled()hasLearnedWord()
SpotifyProtocolStore
Properties
Methods
isProtocolRegistered()
SpotifyStore
Properties
Methods
initialize()hasConnectedAccount()getActiveSocketAndDevice()getPlayableComputerDevices()canPlay()getSyncingWith()wasAutoPaused()getLastPlayedTrackId()getTrack()getPlayerState()shouldShowActivity()getActivity()
StageChannelParticipantStore
Properties
Methods
initialize()getParticipantsVersion()getMutableParticipants()getMutableRequestToSpeakParticipants()getRequestToSpeakParticipantsVersion()getParticipantCount()getChannels()getChannelsVersion()getParticipant()
StageChannelRoleStore
Properties
Methods
initialize()isSpeaker()isModerator()isAudienceMember()getPermissionsForUser()
StageChannelSelfRichPresenceStore
Properties
Methods
initialize()getActivity()
StageInstanceStore
Properties
Methods
getStageInstanceByChannel()isLive()isPublic()getStageInstancesByGuild()getAllStageInstances()
StageMusicStore
Properties
Methods
initialize()isMuted()shouldPlay()getUserAgnosticState()
StickerMessagePreviewStore
Properties
Methods
getStickerPreview()
StickersPersistedStore
Properties
stickerFrecencyWithoutFetchingLatest
Methods
initialize()getState()hasPendingUsage()
StickersStore
Properties
isLoadedloadStatestickerMetadatahasLoadedStickerPacksisFetchingStickerPacks
Methods
initialize()getStickerById()getStickerPack()getPremiumPacks()isPremiumPack()getRawStickersByGuild()getAllStickersIterator()getAllGuildStickers()getStickersByGuildId()
StoreListingStore
Properties
Methods
initialize()get()getForSKU()getUnpublishedForSKU()getForChannel()isFetchingForSKU()getStoreListing()
StreamRTCConnectionStore
Properties
Methods
getRTCConnections()getAllActiveStreamKeys()getRTCConnection()getQuality()getMediaSessionId()getRtcConnectionId()getVideoStats()getHostname()getRegion()getMaxViewers()getStreamSourceId()getLastNonZeroRemoteVideoSinkWantsTime()getUserIds()isUserConnected()getSecureFramesState()getSecureFramesRosterMapEntry()
StreamerModeStore
Properties
enabledautoTogglehideInstantInviteshidePersonalInformationdisableSoundsdisableNotificationsenableContentProtection
Methods
initialize()getState()getSettings()
StreamingCapabilitiesStore
Properties
GPUDriversOutdatedcanUseHardwareAccelerationproblematicGPUDriver
Methods
initialize()getState()
SubscriptionPlanStore
Properties
Methods
getPlanIdsForSkus()getFetchedSKUIDs()getForSKU()getForSkuAndInterval()get()isFetchingForSKU()isFetchingForSKUs()isLoadedForSKU()isLoadedForSKUs()isFetchingForPremiumSKUs()isLoadedForPremiumSKUs()ignoreSKUFetch()getPaymentSourcesForPlanId()getPaymentSourceIds()hasPaymentSourceForSKUId()hasPaymentSourceForSKUIds()
SubscriptionRemindersStore
Properties
Methods
shouldShowReactivateNotice()
SubscriptionRoleStore
Properties
Methods
initialize()getGuildIdsWithPurchasableRoles()buildRoles()getSubscriptionRoles()getPurchasableSubscriptionRoles()getUserSubscriptionRoles()getUserIsAdmin()
SubscriptionStore
Properties
Methods
hasFetchedSubscriptions()hasFetchedMostRecentPremiumTypeSubscription()hasFetchedPreviousPremiumTypeSubscription()getPremiumSubscription()getPremiumTypeSubscription()inReverseTrial()getSubscriptions()getSubscriptionById()getActiveGuildSubscriptions()getActiveApplicationSubscriptions()getSubscriptionForPlanIds()getMostRecentPremiumTypeSubscription()getPreviousPremiumTypeSubscription()getIsSubscriptionEligibleForReward()getIsFetchingSubscriptionRewardEligibility()getIsFetchingMostRecentSubscription()getLastLazyPerkSync()
SummaryStore
Properties
Methods
getState()initialize()allSummaries()topSummaries()summaries()shouldShowTopicsBar()findSummary()selectedSummary()summaryFeedback()isFetching()status()shouldFetch()channelAffinities()channelAffinitiesById()channelAffinitiesStatus()shouldFetchChannelAffinities()defaultChannelIds()visibleSummaryIndex()
SurveyStore
Properties
Methods
initialize()getState()getCurrentSurvey()getSurveyOverride()getLastSeenTimestamp()
TTSStore
Properties
currentMessagespeechRate
Methods
initialize()isSpeakingMessage()getUserAgnosticState()
TestModeStore
Properties
isTestModeisFetchingAuthorizationtestModeEmbeddedApplicationIdtestModeApplicationIdtestModeOriginURLerror
Methods
initialize()inTestModeForApplication()inTestModeForEmbeddedApplication()shouldDisplayTestMode()getState()whenInitialized()
ThemeStore
Properties
themesystemTheme
Methods
initialize()getState()themePreferenceForSystemTheme()
ThreadMemberListStore
Properties
Methods
initialize()getMemberListVersion()getMemberListSections()canUserViewChannel()
ThreadMembersStore
Properties
Methods
initialize()getMemberCount()getMemberIdsPreview()getInitialOverlayState()
ThreadMessageStore
Properties
Methods
initialize()getCount()getMostRecentMessage()getChannelThreadsVersion()getInitialOverlayState()
TopEmojiStore
Properties
Methods
initialize()getState()getTopEmojiIdsByGuildId()getIsFetching()
TransientKeyStore
Properties
Methods
getUsers()isKeyVerified()
TutorialIndicatorStore
Properties
Methods
initialize()shouldShow()shouldShowAnyIndicators()getIndicators()getData()getDefinition()
TypingStore
Properties
Methods
getTypingUsers()isTyping()
UnreadSettingNoticeStore2
Properties
Methods
initialize()getState()getLastActionTime()maybeAutoUpgradeChannel()
UnsyncedUserSettingsStore
Properties
displayCompactAvatarslowQualityImageModevideoUploadQualitydataSavingModeexpressionPickerWidthmessageRequestSidebarWidththreadSidebarWidthpostSidebarWidthcallChatSidebarWidthhomeSidebarWidthcallParticipantsSidebarWidthcallHeaderHeightuseSystemThemeactivityPanelHeightdisableVoiceChannelChangeAlertdisableEmbeddedActivityPopOutAlertdisableActivityHardwareAccelerationPromptdisableInviteWithTextChannelActivityLaunchdisableHideSelfStreamAndVideoConfirmationAlertpushUpsellUserSettingsDismisseddisableActivityHostLeftNitroUpselldisableCallUserConfirmationPromptdisableApplicationSubscriptionCancellationSurveydarkSidebaruseMobileChatCustomRenderersaveCameraUploadsToDeviceshowPlayAgainlistDensity
Methods
initialize()getUserAgnosticState()isVisualRefreshDisabled()
UpcomingEventNoticesStore
Properties
Methods
initialize()getGuildEventNoticeDismissalTime()getAllEventDismissals()getUpcomingNoticeSeenTime()getAllUpcomingNoticeSeenTimes()getState()
UploadAttachmentStore
Properties
Methods
getFirstUpload()hasAdditionalUploads()getUploads()getUploadCount()getUpload()findUpload()
UploadStore
Properties
Methods
initialize()getFiles()getMessageForFile()getUploaderFileForMessageId()getUploadAttachments()
UserAffinitiesV2Store
Properties
Methods
initialize()shouldFetch()isFetching()getUserAffinities()getUserAffinitiesMap()compare()getUserAffinity()getState()isHighlyAffinedVCUser()
UserGuildJoinRequestStore
Properties
hasFetchedRequestToJoinGuilds
Methods
getRequest()computeGuildIds()getJoinRequestGuild()hasJoinRequestCoackmark()getCooldown()
UserGuildSettingsStore
Properties
mentionOnAllMessagesaccountNotificationSettingsuseNewNotifications
Methods
initialize()getState()isSuppressEveryoneEnabled()isSuppressRolesEnabled()isMuteScheduledEventsEnabled()isMobilePushEnabled()isMuted()isTemporarilyMuted()getMuteConfig()getMessageNotifications()getChannelOverrides()getNotifyHighlights()getGuildFlags()getChannelMessageNotifications()getChannelMuteConfig()getMutedChannels()isChannelMuted()isCategoryMuted()resolvedMessageNotifications()resolveUnreadSetting()isGuildOrCategoryOrChannelMuted()allowNoMessages()allowAllMessages()isGuildCollapsed()getAllSettings()getChannelIdFlags()getChannelFlags()getNewForumThreadsCreated()isOptInEnabled()isChannelRecordOrParentOptedIn()isChannelOrParentOptedIn()isChannelOptedIn()getOptedInChannels()getOptedInChannelsWithPendingUpdates()getPendingChannelUpdates()getGuildFavorites()isFavorite()isMessagesFavorite()isAddedToMessages()getAddedToMessages()getGuildUnreadSetting()resolveGuildUnreadSetting()getChannelRecordUnreadSetting()getChannelUnreadSetting()
UserLeaderboardStore
Properties
Methods
initialize()getState()getLastUpdateRequested()
UserOfferStore
Properties
Methods
initialize()getUserTrialOffer()getUserDiscountOffer()getAnyOfUserTrialOfferId()isFetchingOffer()hasFetchedOffer()shouldFetchReferralOffer()getAlmostExpiringTrialOffers()getAlmostExpiringDiscountOffers()getAcknowledgedOffers()getUnacknowledgedDiscountOffers()getUnacknowledgedOffers()hasAnyUnexpiredOffer()hasAnyUnexpiredDiscountOffer()canFractionalPremiumUserUseOffer()getReferrer()getState()forceReset()lastFetchSuccessful()
UserProfileStore
Properties
isSubmitting
Methods
initialize()isFetchingProfile()isFetchingFriends()getUserProfile()getGuildMemberProfile()getMutualFriends()getMutualFriendsCount()getMutualGuilds()takeSnapshot()
UserRequiredActionStore
Properties
Methods
hasAction()getAction()
UserSettingsAccountStore
Properties
Methods
getFormState()getErrors()showNotice()getIsSubmitDisabled()getPendingAvatar()getPendingGlobalName()getPendingBanner()getPendingBio()getPendingPronouns()getPendingAccentColor()getPendingThemeColors()getPendingAvatarDecoration()getPendingNameplate()getPendingProfileEffectId()getAllPending()getTryItOutThemeColors()getTryItOutAvatar()getTryItOutAvatarDecoration()getTryItOutProfileEffectId()getTryItOutBanner()getAllTryItOut()
UserSettingsModalStore
Properties
onClose
Methods
initialize()hasChanges()isOpen()getPreviousSection()getSection()getSubsection()getScrollPosition()shouldOpenWithoutBackstack()getProps()
UserSettingsOverridesStore
Properties
Methods
initialize()getState()getAppliedOverrideReasonKey()getOverride()
UserSettingsProtoStore
Properties
settingsfrecencyWithoutFetchingLatestwasMostRecentUpdateFromServer
Methods
initialize()getState()computeState()hasLoaded()getFullState()getGuildFolders()getGuildRecentsDismissedAt()getDismissedGuildContent()getGuildDismissedContentState()getGuildsProto()
UserStore
Properties
Methods
initialize()takeSnapshot()handleLoadCache()getUserStoreVersion()getUser()getUsers()forEach()findByTag()filter()getCurrentUser()
VerifiedKeyStore
Properties
Methods
initialize()getState()getKeyTrustedAt()isKeyVerified()getUserIds()getUserVerifiedKeys()
VideoBackgroundStore
Properties
videoFilterAssetshasBeenAppliedhasUsedBackgroundInCall
Methods
initialize()
VideoQualityModeStore
Properties
mode
Methods
VideoSpeakerStore
Properties
Methods
initialize()getSpeaker()
VideoStreamStore
Properties
Methods
getStreamId()getUserStreamData()getTimedoutVideos()getTimedoutVideo()
ViewHistoryStore
Properties
Methods
initialize()getState()hasViewed()
VirtualCurrencyStore
Properties
earnedOrbsCoachmarkredeemErrorisRedeemingredeemingSkuIdentitlementsbalancefetchBalanceErrorisFetchingBalanceonboardingModalOpenedPriorbalancePillOverlay
Methods
setBalancePillOverlay()getCurrentBalance()handleBalanceStateReset()handleBalanceFetch()handleBalanceFetchSuccess()handleBalanceFetchFail()handleBalanceUpdate()handleRedeemVirtualCurrencyStart()handleRedeemVirtualCurrencySuccess()handleRedeemVirtualCurrencyFail()handleOnboardingModalOpen()handleOnboardingModalReset()handleEarnedOrbsCoachmarkOpen()handleEarnedOrbsCoachmarkClose()
VoiceChannelEffectsPersistedStore
Properties
Methods
initialize()getState()
VoiceChannelEffectsStore
Properties
recentlyUsedEmojisisOnCooldowneffectCooldownEndTime
Methods
getEffectForUserId()
VoiceFilterPersistedStore
Properties
Methods
initialize()getState()getLastInitAttemptMayHaveCrashed()
VoiceFilterStore
Properties
Methods
getVoiceFilterModels()getVoiceFilters()getVoiceFilter()getModelState()getOngoingDownloads()isVoiceFilterDownloaded()isModelDownloaded()getSortedVoiceFilters()getCatalogLastFetchTime()getCatalogUpdateTime()getLimitedTimeVoices()isNativeModuleLoaded()isNativeModuleLoading()hasNativeModuleFailed()getCatalogFetchFailed()getError()getLastReportedLagTimestamp()
VoiceStateStore
Properties
userHasBeenMovedVersion
Methods
getAllVoiceStates()getVoiceStateVersion()getVoiceStates()getVoiceStatesForChannel()getVideoVoiceStatesForChannel()getVoiceState()getDiscoverableVoiceState()getVoiceStateForChannel()getVoiceStateForUser()getDiscoverableVoiceStateForUser()getVoiceStateForSession()getUserVoiceChannelId()getCurrentClientVoiceChannelId()getUsersWithVideo()isCurrentClientInVoiceChannel()isInChannel()hasVideo()getVoicePlatformForChannel()
WarpClientStore
Properties
statelogclientEnabledenabledconnecting
Methods
initialize()logEvent()updateState()addListener()runCommand()install()promptInstall()configureLicense()configureExceptions()configureMode()connect()disconnect()
WebAuthnStore
Properties
hasCredentials
Methods
hasFetchedCredentials()getCredentials()
WebhooksStore
Properties
error
Methods
isFetching()getWebhooksForGuild()getWebhooksForChannel()
WelcomeScreenStore
Properties
Methods
get()isFetching()hasError()hasSeen()isEmpty()
WindowStore
Properties
Methods
isFocused()isAppFocused()isVisible()getFocusedWindowId()getLastFocusedWindowId()isElementFullScreen()windowSize()
WowMomentConfirmationStore
Properties
isDisplayingWowMomentConfirmation
Methods
getState()
scheduledMessageStore
Properties
loading
Methods
getMessagesPendingDeletion()getScheduledMessagesForInbox()getPendingScheduledMessage()