Skip to content

Instantly share code, notes, and snippets.

@mootari
Last active July 29, 2026 12:58
Show Gist options
  • Select an option

  • Save mootari/af81139a9389237513bce17dd58ac680 to your computer and use it in GitHub Desktop.

Select an option

Save mootari/af81139a9389237513bce17dd58ac680 to your computer and use it in GitHub Desktop.
Getting all Discord Stores from within the web app
// To be run within the web app, via console or a bookmarklet
stores = ((s = {}) => (webpackChunkdiscord_app.push(
[[Symbol()], {}, r => {
for(const c of Object.values(r.c ?? {})) {
for(const e of Object.values(c?.exports ?? {})) {
if(!e || typeof e !== "object") continue;
if(e[Symbol.toStringTag] === "IntlMessagesProxy") continue;
if(e._dispatchToken) s[e.getName()] = e;
}
}
}]
), s))()

Stores and methods

A list of all stores that have get* or has* methods.

Generate with:

Object.entries(stores)
  .map(([k, v]) => ({
    name: k,
    methods: Object.getOwnPropertyNames(Object.getPrototypeOf(v))
      .filter(m => m.match(/^(get|has)/))
      .sort((a, b) => a.localeCompare(b))
  }))
  .filter(d => d.methods.length)
  .sort((a, b) => a.name.localeCompare(b.name))
  .map(({name, methods}) => `<details open><summary><strong><code>${name}</code></strong></summary>\n\n${
    methods
      .map(m => `- <code>${m}</code>\n`)
      .join("")
  }\n</details>\n\n`)
  .join("")

A
  • getBlockedUsersForVoiceChannel
  • getIgnoredUsersForVoiceChannel
AccessibilityStore
  • getUserAgnosticState
AccountLinkStore
  • getGloballyDisabledAuthorizationFlows
  • getPendingAuthorizations
ActiveJoinedThreadsStore
  • getActiveJoinedRelevantThreadsForGuild
  • getActiveJoinedRelevantThreadsForParent
  • getActiveJoinedThreadsForGuild
  • getActiveJoinedThreadsForParent
  • getActiveJoinedUnreadThreadsForGuild
  • getActiveJoinedUnreadThreadsForParent
  • getActiveThreadCount
  • getActiveUnjoinedThreadsForGuild
  • getActiveUnjoinedThreadsForParent
  • getActiveUnjoinedUnreadThreadsForGuild
  • getActiveUnjoinedUnreadThreadsForParent
  • getAllActiveJoinedThreads
  • getNewThreadCount
  • getNewThreadCountsForGuild
  • hasActiveJoinedUnreadThreads
ActiveThreadsStore
  • getThreadsForGuild
  • getThreadsForParent
  • hasLoaded
  • hasThreadsForChannel
ActivityInviteModalStore
  • getActivity
  • getQuery
  • getResults
ActivityLauncherStore
  • getState
  • getStates
AgeVerificationStore
  • getReactiveCheckMiss
  • getReactiveCheckPassed
  • getReactiveCheckStatus
AppIconPersistedStoreState
  • getCurrentDesktopIcon
  • getState
ApplicationAssetsV2Store
  • getAssets
ApplicationBuildStore
  • getBuildSize
  • getTargetBuildId
  • getTargetManifests
  • hasNoBuild
ApplicationCommandAutocompleteStore
  • getAutocompleteChoices
  • getAutocompleteLastChoices
  • getLastErrored
  • getLastResponseNonce
ApplicationCommandFrecencyStore
  • getCommandFrecencyWithoutLoadingLatest
  • getScoreWithoutLoadingLatest
  • getState
  • getTopCommandsWithoutLoadingLatest
  • hasPendingUsage
ApplicationCommandIndexStore
  • getApplicationState
  • getApplicationStates
  • getContextState
  • getGuildState
  • getUserState
  • hasApplicationState
  • hasContextStateApplication
  • hasUserStateApplication
ApplicationCommandStore
  • getActiveCommand
  • getActiveCommandSection
  • getActiveOption
  • getActiveOptionName
  • getCommandOrigin
  • getOption
  • getOptionState
  • getOptionStates
  • getPreferredCommandId
  • getSource
  • getState
ApplicationDirectoryApplicationsStore
  • getApplication
  • getApplicationFetchState
  • getApplicationFetchStates
  • getApplicationLastFetchTime
  • getApplicationRecord
  • getApplications
  • getInvalidApplicationIds
ApplicationDirectoryCategoriesStore
  • getCategories
  • getCategory
  • getLastFetchTimeMs
ApplicationDirectorySearchStore
  • getFetchState
  • getSearchResults
ApplicationDirectorySimilarApplicationsStore
  • getFetchState
  • getSimilarApplications
ApplicationFrecencyStore
  • getApplicationFrecencyWithoutLoadingLatest
  • getScoreWithoutLoadingLatest
  • getState
  • getTopApplicationsWithoutLoadingLatest
  • hasPendingUsage
ApplicationStore
  • getAppIdForBotUserId
  • getApplication
  • getApplicationByName
  • getApplicationLastUpdated
  • getFetchingOrFailedFetchingIds
  • getGuildApplication
  • getGuildApplicationIds
  • getState
ApplicationStoreDirectoryStore
  • getFetchStatus
  • getStoreLayout
  • hasStorefront
ApplicationStoreLocationStore
  • getCurrentPath
  • getCurrentRoute
ApplicationStoreUserSettingsStore
  • getState
  • hasAcceptedEULA
  • hasAcceptedStoreTerms
ApplicationStreamingSettingsStore
  • getState
ApplicationStreamingStore
  • getActiveStreamForApplicationStream
  • getActiveStreamForStreamKey
  • getActiveStreamForUser
  • getAllActiveStreams
  • getAllActiveStreamsForChannel
  • getAllApplicationStreams
  • getAllApplicationStreamsForChannel
  • getAnyDiscoverableStreamForUser
  • getAnyStreamForUser
  • getCurrentAppIntent
  • getCurrentUserActiveStream
  • getIsActiveStreamPreviewDisabled
  • getLastActiveStream
  • getRTCStream
  • getState
  • getStreamerActiveStreamMetadata
  • getStreamerActiveStreamMetadataForStream
  • getStreamForUser
  • getStreamingState
  • getViewerIds
ApplicationStreamPreviewStore
  • getIsPreviewLoading
  • getPreviewURL
  • getPreviewURLForStreamKey
ApplicationSubscriptionChannelNoticeStore
  • getLastGuildDismissedTime
  • getUserAgnosticState
ApplicationSubscriptionStore
  • getApplicationEntitlementsForGuild
  • getEntitlementsForGuild
  • getEntitlementsForGuildFetchState
  • getSubscriptionGroupListing
  • getSubscriptionGroupListingForSubscriptionListing
  • getSubscriptionGroupListingsForApplicationFetchState
  • getSubscriptionListing
  • getSubscriptionListingForPlan
  • getSubscriptionListingsForApplication
ApplicationViewStore
  • hasFetchedApplications
ApplicationWidgetConfigStore
  • getAllConfigsByApplication
  • getConfig
  • getConfigs
  • getDeveloperApplicationIds
  • getDeveloperFetchState
  • getFeaturedApplicationIds
  • getFeaturedFetchState
  • getFetchState
AppViewStore
  • getHomeLink
ArchivedThreadsStore
  • getCanLoadMore
  • getIsInitialLoad
  • getNextOffset
  • getThreads
AudioRouteStore
  • getCurrentRouteType
  • getMultipleRoutesAvailable
AudioVideoOverridesStore
  • getSnapshot
  • getUserAgnosticState
AuthenticationStore
  • getAnalyticsToken
  • getAuthSessionIdHash
  • getCredentials
  • getFingerprint
  • getId
  • getInstallationForTracking
  • getIsPasswordlessActive
  • getLoginInstanceId
  • getLoginStatus
  • getMFAMethods
  • getMFATicket
  • getSessionId
  • getStaticAuthSessionId
  • getSuspendedUserToken
  • getToken
  • hasTOTPEnabled
AuthorizedAppsStore
  • getApplicationFetchStateVersion
  • getFetchState
  • getFetchStateForApplication
  • getNewestTokenForApplication
  • getNewestTokens
  • getNewestTokensForNonChildrenApplications
AVErrorStore
  • getActiveErrors
  • getActiveErrorsOfType
  • hasActiveErrorOfType
BadgeDirectoryStore
  • getBadgeById
  • getBadges
  • getCurrentTier
  • getNextTier
  • getObtainedAt
  • getRemainingToNextTier
  • getSingleRequirementProgress
  • hasCatalogFetchErrorFor
  • hasCatalogFor
BasicGuildStore
  • getGuild
  • getGuildOrStatus
  • getVersion
BountyStore
  • getAdDecisionByPlacementAndAdCreativeId
  • getBountyVideoProgress
  • getCompletedBountyCount
BraintreeStore
  • getClient
  • getLastURL
  • getPayPalClient
  • getVenmoClient
BuildOverrideStore
  • getBuildOverride
  • getBuildOverrides
  • getCurrentBuildOverride
BulkBanStore
  • hasPendingBulkBan
BurstReactionEffectsStore
  • getEffectForEmojiId
  • getReactionPickerAnimation
CallStore
  • getCall
  • getCalls
  • getInternalState
  • getMessageId
CategoryCollapseStore
  • getCollapsedCategories
  • getState
CertifiedDeviceStore
  • getCertifiedDevice
  • getCertifiedDeviceByType
  • getCertifiedDeviceName
  • getModel
  • getRevision
  • getVendor
  • hasAutomaticGainControl
  • hasEchoCancellation
  • hasNoiseSuppression
ChangelogStore
  • getChangelog
  • getChangelogLoadStatus
  • getConfig
  • getStateForDebugging
  • hasLoadedConfig
ChannelFollowerStatsStore
  • getFollowerStatsForChannel
ChannelListStore
  • getGuild
  • getGuildWithoutChangingGuildActionRows
ChannelListVoiceCategoryStore
  • getState
ChannelMemberStore
  • getProps
  • getRows
ChannelPinsStore
  • getPins
ChannelRTCStore
  • getActivityParticipants
  • getAllChatOpen
  • getChatOpen
  • getFilteredParticipants
  • getGuildRingingUsers
  • getLayout
  • getMode
  • getOpenChatChannelIds
  • getParticipant
  • getParticipants
  • getParticipantsOpen
  • getParticipantsVersion
  • getSelectedParticipant
  • getSelectedParticipantId
  • getSelectedParticipantStats
  • getSpeakingParticipants
  • getStageStreamSize
  • getStageVideoLimitBoostUpsellDismissed
  • getState
  • getStreamParticipants
  • getUserParticipantCount
  • getVideoParticipants
  • getVoiceParticipantsHidden
ChannelSectionStore
  • getCurrentSearchContextId
  • getCurrentSidebarChannelId
  • getCurrentSidebarMessageId
  • getGuildSidebarState
  • getSection
  • getSidebarState
  • getState
ChannelSettingsIntegrationsStore
  • getProps
  • getWebhook
  • hasChanges
ChannelSettingsPermissionsStore
  • getPermissionOverwrite
  • hasChanges
ChannelSettingsStore
  • getCategory
  • getChannel
  • getFormState
  • getInvites
  • getProps
  • getSection
  • hasChanges
ChannelSpoilerAgreeStore
  • getState
  • getUserAgnosticState
ChannelStatusStore
  • getChannelStatus
  • hasRequestedStatuses
ChannelStore
  • getAllThreadsForGuild
  • getAllThreadsForParent
  • getBasicChannel
  • getChannel
  • getChannelIds
  • getDebugInfo
  • getDMChannelFromUserId
  • getDMFromUserId
  • getDMUserIds
  • getGuildChannelsVersion
  • getInitialOverlayState
  • getMutableBasicGuildChannelsForGuild
  • getMutableDMsByUserIds
  • getMutableGuildChannelsForGuild
  • getMutablePrivateChannels
  • getPrivateChannelsVersion
  • getSortedLinkedChannelsForGuild
  • getSortedPrivateChannels
  • hasChannel
CheckoutRecoveryStore
  • getIsTargeted
ClientThemesBackgroundStore
  • getLinearGradient
  • getState
ClipsStore
  • getClipById
  • getClipByRemoteId
  • getClipCandidateById
  • getClipCandidates
  • getClips
  • getClipsWarningShown
  • getCurrentClipsSession
  • getEnableAutoclipping
  • getExportingClipIds
  • getHardwareClassification
  • getHardwareClassificationForDecoupled
  • getHardwareClassificationVersion
  • getHistoricalClipsSessionById
  • getIsAtMaxSaveClipOperations
  • getLastClipsError
  • getLastClipsSession
  • getNewClipIds
  • getSettings
  • getUserAgnosticState
  • hasClips
  • hasTakenDecoupledClip
  • hasUserSetAutoclippingSettings
CloudSyncStore
  • getState
CodedLinkNativeAppStateStore
  • getHighestState
  • getState
CollapsedVoiceChannelStore
  • getCollapsed
  • getState
CollectiblesCategoryStore
  • getCategory
  • getCategoryByStoreListingId
  • getCategoryForProduct
  • getProduct
  • getProductByStoreListingId
  • getProductFetch
  • getProductsBySkus
CollectiblesMarketingsStore
  • getMarketingBySurface
CollectiblesPurchaseStore
  • getPurchase
  • getPurchases
  • hasPreviouslyFetched
CollectiblesShopHomesStore
  • getFetchShopHomeError
  • getHasKnownStaleData
  • getIsFetchingShopHome
  • getLastErrorTimestamp
  • getLastFetchOptions
  • getLastSuccessfulFetch
  • getShopBlocks
  • getShopHomeConfigOverride
  • getShopLayoutUrlOverride
CollectiblesShopStore
  • getAnalytics
  • getLayout
  • getLayoutFetchError
CommandsMigrationStore
  • getState
ConnectedAccountsStore
  • getAccount
  • getAccounts
  • getLocalAccount
  • getLocalAccounts
  • hasPendingAuthorizedState
ConnectedAppsStore
  • getAllConnections
  • getApplication
ConsentStore
  • getAuthenticationConsentRequired
  • hasConsented
ContentInventoryActivityStore
  • getMatchingActivity
ContentInventoryOutboxStore
  • getMatchingOutboxEntry
  • getUserOutbox
  • hasInitialized
ContentInventoryPersistedStore
  • getDebugFastImpressionCappingEnabled
  • getImpressionCappedItemIds
  • getState
ContentInventoryStore
  • getDebugImpressionCappingDisabled
  • getFeed
  • getFeedRequestId
  • getFeeds
  • getFeedState
  • getFilters
  • getLastFeedFetchDate
  • getMatchingInboxEntry
ContextMenuStore
  • getContextMenu
ConversationsStore
  • getChannelConversations
  • getConversationColor
  • getConversationFeedbackRating
  • getConversationForMessage
  • getConversationMetadata
  • getEdgeMarker
  • getHydratedMessageById
  • getHydratedMessages
  • getMessage
  • getMessageMetadata
  • getSelectedConversation
  • getSelectedConversationId
  • hasChannelData
ConversationVisibilityStore
  • getState
  • getUserAgnosticState
CreatorMonetizationStore
  • getPriceTiersFetchStateForGuildAndType
  • getPriceTiersForGuildAndType
CustomActivityLinksStore
  • getOne
d
  • getAllProjects
  • getLogs
  • getProject
  • getProjectsFetchState
DCFEventStore
  • getDCFEvents
DefaultRouteStore
  • getState
DeveloperActivityShelfStore
  • getActivityUrlOverride
  • getDeveloperShelfItems
  • getFetchState
  • getFilter
  • getIsEnabled
  • getLastUsedObject
  • getState
  • getUseActivityUrlOverride
DeveloperExperimentStore
  • getExperimentDescriptor
DeveloperOptionsStore
  • getDebugOptionsHeaderValue
  • getRoutingKeyHeaderValue
DeviceFrecencyStore
  • getDeviceIdsSortedByFrecency
  • getState
  • getUsageStats
DevToolsDesignTogglesStore
  • get
  • getUserAgnosticState
DevToolsDevSettingsStore
  • get
  • getUserAgnosticState
DevToolsSettingsStore
  • getUserAgnosticState
DimensionStore
  • getChannelDimensions
  • getGuildDimensions
  • getGuildListDimensions
DismissibleContentFrameworkStore
  • getRenderedAtTimestamp
  • getState
  • hasUserHitDCCap
DispatchApplicationErrorStore
  • getLastError
DispatchApplicationLaunchSetupStore
  • getLastProgress
DispatchApplicationStore
  • getDefaultLaunchOption
  • getHistoricalTotalBytesDownloaded
  • getHistoricalTotalBytesRead
  • getHistoricalTotalBytesWritten
  • getLaunchOptions
  • getState
DispatchManagerStore
  • getQueuePosition
DraftStore
  • getDraft
  • getRecentlyEditedDrafts
  • getState
  • getThreadDraftWithParentMessageId
  • getThreadSettings
E
  • getPendingRequestForUser
EditMessageStore
  • getEditActionSource
  • getEditingMessage
  • getEditingMessageId
  • getEditingRichValue
  • getEditingTextValue
EmailSettingsStore
  • getEmailSettings
EmbeddedActivitiesStore
  • getActivityPanelMode
  • getActivityPopoutWindowLayout
  • getConnectedActivityChannelId
  • getConnectedActivityLocation
  • getCurrentEmbeddedActivity
  • getEmbeddedActivitiesByChannel
  • getEmbeddedActivitiesForChannel
  • getEmbeddedActivitiesForChannelIncludingHidden
  • getEmbeddedActivitiesForGuild
  • getEmbeddedActivitiesForGuildIncludingHidden
  • getEmbeddedActivitiesForLocation
  • getEmbeddedActivitiesForLocationIncludingHidden
  • getEmbeddedActivityDurationMs
  • getEmbeddedActivityForUserId
  • getFocusedLayout
  • getGridOrientationLockStateForApp
  • getLaunchState
  • getLaunchStates
  • getLayoutModeForApp
  • getOrientationLockStateForApp
  • getPipOrientationLockStateForApp
  • getSelfEmbeddedActivities
  • getSelfEmbeddedActivityForChannel
  • getSelfEmbeddedActivityForLocation
  • getShelfActivities
  • getShelfFetchStatus
  • getState
  • hasActivityEverBeenLaunched
EmojiStore
  • getCustomEmojiById
  • getDisambiguatedEmojiContext
  • getGuildEmoji
  • getGuilds
  • getHiddenEmojiIds
  • getNewlyAddedEmoji
  • getSearchResultsOrder
  • getState
  • getTopEmoji
  • getTopEmojisMetadata
  • getUsableCustomEmojiById
  • getUsableGuildEmoji
  • hasFavoriteEmojis
  • hasPendingUsage
  • hasUsableEmojiInAnyGuild
EntitlementStore
  • get
  • getForApplication
  • getForSku
  • getForSubscription
  • getFractionalPremium
  • getGiftable
  • getUnactivatedFractionalPremiumUnits
  • hasFetchedForApplicationIds
EphemeralMessageStore
  • getMessages
ExpandedGuildFolderStore
  • getExpandedFolders
  • getState
ExperimentStore
  • getAllExperimentAssignments
  • getAllExperimentOverrideDescriptors
  • getAllUserExperimentDescriptors
  • getExperimentOverrideDescriptor
  • getGuildExperimentBucket
  • getGuildExperimentDescriptor
  • getGuildExperiments
  • getLoadedGuildExperiment
  • getLoadedUserExperiment
  • getRecentExposures
  • getRegisteredExperiments
  • getSerializedState
  • getUserExperimentBucket
  • getUserExperimentDescriptor
  • hasExperimentTrackedExposure
  • hasLoadedExperiments
  • hasRegisteredExperiment
ExternalStreamingStore
  • getStream
f
  • getGlobalStats
  • getStats
FalsePositiveStore
  • getChannelFpInfo
  • getFpMessageInfo
FamilyCenterControlledSettingsStore
  • getConsents
  • getControlledSettings
  • getSettings
  • hasConsented
  • hasSettingsForUser
FamilyCenterPendingConnectionStore
  • getPendingConnection
  • getState
FamilyCenterStore
  • getActionsForDisplayType
  • getAgeGroup
  • getAreLinkedUsersProcessed
  • getGiftInfo
  • getGuild
  • getIsInitialized
  • getLinkCode
  • getLinkCodeExpiresAt
  • getLinkedUsers
  • getLinkTimestamp
  • getMonthlyPurchases
  • getPurchaseInfo
  • getRangeStartTimestamp
  • getSelectedTab
  • getSelectedTeenId
  • getSpendingLimit
  • getStartId
  • getTopGuildActivities
  • getTopUserActivities
  • getTotalForDisplayType
  • getTotalGiftValue
  • getTotalSpendAmount
  • getTotalSpendCurrency
  • getUserCountry
FavoriteStore
  • getCategoryRecord
  • getFavorite
  • getFavoriteChannels
  • getFavoritesCount
  • getNickname
  • hasStoredFavorites
ForumActivePostStore
  • getAndDeleteMostRecentUserCreatedThreadId
  • getCanAckThreads
  • getCurrentThreadIds
  • getFirstNoReplyThreadId
  • getNewThreadCount
  • getThreadIds
ForumChannelAdminOnboardingGuideStore
  • getState
  • hasHidden
ForumPostMessagesStore
  • getMessage
ForumPostUnreadCountStore
  • getCount
  • getThreadIdsMissingCounts
ForumSearchStore
  • getHasSearchResults
  • getSearchLoading
  • getSearchQuery
  • getSearchResults
FramesStore
  • getActivityPanelMode
  • getConnectedFrame
  • getFrameLayoutMode
  • getOrientationLockStateForApp
  • getPipOrientationLockStateForApp
FrecencyStore
  • getBonusScore
  • getFrequentlyWithoutFetchingLatest
  • getMaxScore
  • getScoreForDMWithoutFetchingLatest
  • getScoreWithoutFetchingLatest
  • getState
  • getVersion
  • hasPendingUsage
FriendGroupsStore
  • getGroup
  • getGroupIds
  • getGroups
  • getState
  • getUserGroups
FriendsStore
  • getState
FriendSuggestionStore
  • getSuggestion
  • getSuggestionCount
  • getSuggestions
FriendsWidgetFriendsStore
  • getFriend
  • getRows
FriendsWidgetMessagesStore
  • getChannel
  • getRows
g
  • getBuilderPreviewApplicationId
  • getFinishedAt
  • getMessages
  • getProjectUsage
  • getSidebarWidth
GameAutocompleteStore
  • getClosestResults
  • getGameById
  • getResults
GameConsoleStore
  • getAwaitingRemoteSessionInfo
  • getDevice
  • getDevicesForPlatform
  • getFetchingDevices
  • getLastSelectedDeviceByPlatform
  • getPendingDeviceCommands
  • getRemoteSessionId
  • getUserAgnosticState
GamePartyStore
  • getParties
  • getParty
  • getUserParties
GameProfileStore
  • getAnnouncements
  • getPendingReturn
  • getShopCollectionSkuIds
  • getSimilarGames
  • hasAnnouncementsBeenFetched
  • hasShopCollectionBeenFetched
GameRelationshipStore
  • getGameFriendCount
  • getGameFriendsForApplication
  • getGameFriendsForUser
  • getGameRelationshipCount
  • getGameRelationships
  • getGameRelationshipsByType
  • getGameRelationshipsForUser
  • getGameRelationshipsForUserByType
  • getGameRelationshipsVersion
  • getPendingIncomingCount
  • getPendingOutgoingCount
GameServerStore
  • getGlobalCatalogGame
  • getGlobalCatalogState
  • getLowestGameCostForGuild
  • getState
  • getStateForGuild
  • hasFetchedCatalog
  • hasFetchedInstances
GameStore
  • getBlockReason
  • getDetectableGame
  • getGameByApplication
  • getGameByExecutable
  • getOfficialGame
  • getState
  • hasAttemptedFetch
GameUpsellStore
  • getAllGameUpsellDismissals
  • getGameUpsellDismissal
  • getState
GatewayConnectionStore
  • getSocket
GeoRestrictedGuildStore
  • getGeoRestrictedGuilds
GIFPickerViewStore
  • getAnalyticsID
  • getQuery
  • getResultItems
  • getResultQuery
  • getSelectedFormat
  • getSuggestions
  • getTrendingCategories
  • getTrendingSearchTerms
GiftCodeStore
  • get
  • getAcceptingCodes
  • getError
  • getForGifterSKUAndPlan
  • getIsAccepting
  • getIsResolved
  • getIsResolving
  • getResolvedCodes
  • getResolvingCodes
  • getUserGiftCodesFetchingForSKUAndPlan
  • getUserGiftCodesLoadedAtForSKUAndPlan
GlobalDiscoveryServersSearchCountStore
  • getCounts
  • getIsFetchingCounts
  • getIsInitialFetchComplete
GlobalDiscoveryServersSearchLayoutStore
  • getVisibleTabs
GlobalDiscoveryServersSearchResultsStore
  • getError
  • getErrorMessage
  • getGuild
  • getGuildIds
  • getIsFetching
  • getIsInitialFetchComplete
  • getLastFetchTimestamp
  • getOffset
  • getTotal
GuildAffinitiesStore
  • getGuildAffinity
  • getState
  • hasRequestResolved
GuildAutomodMessageStore
  • getLastIncidentAlertMessage
  • getMentionRaidDetected
  • getMessage
  • getMessagesVersion
  • getState
GuildBoostSlotStore
  • getGuildBoostSlot
  • hasFetched
GuildCategoryStore
  • getCategories
GuildChannelStore
  • getAllGuilds
  • getChannels
  • getDefaultChannel
  • getDirectoryChannelIds
  • getFirstChannel
  • getFirstChannelOfType
  • getSelectableChannelIds
  • getSelectableChannels
  • getSFWDefaultChannel
  • getTextChannelNameDisambiguations
  • getVocalChannelIds
  • hasCategories
  • hasChannels
  • hasElevatedPermissions
  • hasSelectableChannel
GuildDirectorySearchStore
  • getSearchResults
  • getSearchState
GuildDirectoryStore
  • getAdminGuildEntryIds
  • getCurrentCategoryId
  • getDirectoryAllEntriesCount
  • getDirectoryCategoryCounts
  • getDirectoryEntries
  • getDirectoryEntry
GuildIncidentsStore
  • getGuildAlertSettings
  • getGuildIncident
  • getIncidentsByGuild
GuildJoinRequestStoreV2
  • getRequest
  • getRequests
  • getRequestsForUser
  • getSelectedApplicationTab
  • getSelectedGuildJoinRequest
  • getSelectedSortOrder
  • getSubmittedGuildJoinRequestTotal
  • hasFetched
GuildMemberCountStore
  • getMemberCount
  • getMemberCounts
  • getOnlineCount
GuildMemberRequesterStore
  • getDebugState
GuildMemberStore
  • getCachedSelfMember
  • getCommunicationDisabledUserMap
  • getCommunicationDisabledVersion
  • getMember
  • getMemberIds
  • getMemberRoleWithPendingUpdates
  • getMembers
  • getMemberVersion
  • getMutableAllGuildsAndMembers
  • getNick
  • getNicknameGuildsMapping
  • getNicknames
  • getPendingRoleUpdates
  • getSelfMember
  • getSelfMemberJoinedAt
  • getTrueMember
GuildOfficialMessagesStore
  • getMessage
  • getMessages
  • getState
  • hasMore
GuildOnboardingHomeSettingsStore
  • getActionForChannel
  • getEnabled
  • getIsLoading
  • getNewMemberAction
  • getNewMemberActions
  • getResourceChannels
  • getResourceForChannel
  • getSettings
  • getWelcomeMessage
  • hasMemberAction
  • hasSettings
GuildOnboardingMemberActionStore
  • getCompletedActions
  • getState
  • hasCompletedActionForChannel
GuildOnboardingPromptsStore
  • getConnections
  • getDefaultChannelIds
  • getEnabled
  • getEnabledOnboardingPrompts
  • getOnboardingConnections
  • getOnboardingPrompt
  • getOnboardingPrompts
  • getOnboardingPromptsForOnboarding
  • getOnboardingResponses
  • getOnboardingResponsesForPrompt
  • getPendingResponseOptions
  • getSelectedOptions
GuildOnboardingStore
  • getCurrentOnboardingStep
  • getOnboardingStatus
GuildPowerupsStore
  • getState
  • getStateForGuild
  • hasFetchedPowerupCatalog
  • hasFetchedUnlockedPowerups
GuildProductsStore
  • getGuildProduct
  • getGuildProductFetchState
  • getGuildProductsForGuild
  • getGuildProductsForGuildFetchState
GuildProfileStore
  • getErrorCode
  • getFetchStatus
  • getIsUpdating
  • getLastSyncTimestamp
  • getNextFetchAllowedAt
  • getProfile
GuildReadStateStore
  • getGuildChangeSentinel
  • getGuildHasUnreadIgnoreMuted
  • getHighImportanceMentionCountForChannel
  • getIsMentionLowImportance
  • getMentionCount
  • getMentionCountForPrivateChannel
  • getMutableGuildStates
  • getMutableUnreadGuilds
  • getPrivateChannelMentionCount
  • getStoreChangeSentinel
  • getTotalMentionCount
  • getTotalNotificationsMentionCount
  • hasAnyUnread
  • hasUnread
GuildRoleConnectionsConfigurationStore
  • getGuildRoleConnectionsConfiguration
GuildRoleMemberCountStore
  • getRoleMemberCount
GuildRoleStore
  • getEveryoneRole
  • getManyRoles
  • getNumRoles
  • getRole
  • getUnsafeMutableRoles
GuildRoleSubscriptionsStore
  • getApplicationIdForGuild
  • getBenefitChannel
  • getDidFetchListingForSubscriptionPlanId
  • getMonetizationRestrictions
  • getMonetizationRestrictionsFetchState
  • getSubscriptionGroupListing
  • getSubscriptionGroupListingForSubscriptionListing
  • getSubscriptionGroupListingsForGuild
  • getSubscriptionGroupListingsForGuildFetchState
  • getSubscriptionListing
  • getSubscriptionListingForPlan
  • getSubscriptionListingsForGuild
  • getSubscriptionSettings
  • getSubscriptionTrial
GuildRoleSubscriptionTierTemplatesStore
  • getChannel
  • getTemplates
  • getTemplateWithCategory
GuildScheduledEventStore
  • getActiveEventByChannel
  • getGuildEventCountByIndex
  • getGuildScheduledEvent
  • getGuildScheduledEventsByIndex
  • getGuildScheduledEventsForGuild
  • getRsvp
  • getRsvpVersion
  • getUserCount
  • getUsersForGuildEvent
  • hasUserCount
GuildSettingsGuildThemeStore
  • hasChanges
GuildSettingsStore
  • getBans
  • getError
  • getErrors
  • getGuild
  • getGuildId
  • getGuildProfile
  • getMetadata
  • getPendingOriginalMd5s
  • getProfileError
  • getProps
  • getSavedRouteState
  • getSection
  • getSelectedRoleId
  • getSlug
  • getWidget
  • hasChanges
GuildStickersStore
  • getStickerById
GuildStore
  • getGuildCount
GuildSubscriptionsStore
  • getSubscribedThreadIds
GuildTemplateStore
  • getDisplayedGuildTemplateCode
  • getForGuild
  • getGuildTemplate
  • getGuildTemplates
GuildThemePreviewStore
  • hasChanges
GuildThemeRuntimeStore
  • getGuildThemeSnapshot
GuildVerificationStore
  • getCheck
HavenStore
  • getRoom
  • getSongs
HookErrorStore
  • getHookError
HotspotStore
  • getHotspotOverride
  • getState
  • hasHiddenHotspot
  • hasHotspot
ICYMIStore
  • getCurrentStatusAttachments
  • getCustomChannelScore
  • getCustomGuildScore
  • getCustomGuildScores
  • getDehydratedItem
  • getDehydratedItems
  • getDiscoverableGuilds
  • getHydratedItem
  • getHydratedItems
  • getIndexInHydratedFeed
  • getIsTabFocused
  • getLoadId
  • getMessage
  • getMissingItems
  • getNewDehydratedItems
  • getNewUnreadDehydratedItems
  • getNextIndexToHydrate
  • getReadDisplayItems
  • getState
  • getUnreadDisplayItems
  • getVersion
  • hasNewContent
  • hasOpened
  • hasOpenedEnoughTimes
ICYMIUnreadStateStore
  • getReadTimestamp
  • getState
  • getUserAgnosticState
IdleStore
  • getIdleSince
  • getSystemLocked
  • getSystemSuspended
ImpersonateStore
  • getBackNavigationSection
  • getData
  • getImpersonateType
  • getMemberOptions
  • getOnboardingResponses
  • getViewingChannels
  • getViewingRoles
  • getViewingRolesTimestamp
  • hasViewingRoles
IncomingCallStore
  • getFirstIncomingCallId
  • getIncomingCallChannelIds
  • getIncomingCalls
  • hasIncomingCalls
InstallationManagerStore
  • getInstallationPath
  • getLabelFromPath
  • getState
  • hasGamesInstalledInPath
InstantInviteStore
  • getFriendInvite
  • getFriendInvitesFetching
  • getInvite
  • getReceivedInstallationIdForInviteCode
InteractionModalStore
  • getModalState
InteractionStore
  • getIFrameModalApplicationId
  • getIFrameModalKey
  • getInteraction
  • getInteractionDebugContext
  • getMessageInteractionStates
InviteModalStore
  • getInviteKey
  • getProps
InviteStore
  • getFriendMemberIds
  • getInvite
  • getInviteError
  • getInviteKeyForGuildId
  • getInvites
JoinedThreadsStore
  • getInitialOverlayState
  • getMuteConfig
  • getMutedThreads
  • hasJoined
KeybindsStore
  • getKeybindForAction
  • getOverlayChatKeybind
  • getOverlayKeybind
  • getUserAgnosticState
  • hasExactKeybind
  • hasKeybind
l
  • getBasicChannel
  • getGuildBasicChannels
  • hasChannel
  • hasGuild
LayerStore
  • getLayers
  • hasLayers
LayoutStore
  • getAllUnpinnedPinnedWidgets
  • getAllWidgets
  • getDefaultLayout
  • getLayout
  • getLayouts
  • getRegisteredWidgets
  • getState
  • getWidget
  • getWidgetConfig
  • getWidgetDefaultSettings
  • getWidgetsByType
  • getWidgetsByTypeAndLayout
  • getWidgetsForLayout
  • getWidgetType
LibraryApplicationStatisticsStore
  • getCurrentUserStatisticsForApplication
  • getGameDuration
  • getLastPlayedDateTime
  • getQuickSwitcherScoreForApplication
  • hasApplicationStatistic
LibraryApplicationStore
  • getActiveLaunchOptionId
  • getActiveLibraryApplication
  • getAllLibraryApplications
  • getLibraryApplication
  • hasApplication
  • hasLibraryApplication
  • hasRemovedLibraryApplicationThisSession
LocalActivityStore
  • getActivities
  • getActivityForPID
  • getApplicationActivities
  • getApplicationActivity
  • getCustomStatusActivity
  • getPrimaryActivity
LocalInteractionComponentStateStore
  • getInteractionComponentState
  • getInteractionComponentStates
  • getInteractionComponentStateVersion
LocationMetadataStore
  • getCountryCode
LoginRequiredActionStore
  • getState
LurkingStore
  • getLoadId
  • getLurkingPreviewExpirations
  • getLurkingPreviewExpiry
  • getLurkingSourceForGuild
MaintenanceStore
  • getIncident
  • getScheduledMaintenance
MediaEngineStatsStore
  • getAccumulatedPerformanceStats
  • getConnectionStats
  • getLastConnectionStats
  • getStatsHistory
MediaEngineStore
  • getActiveInputProfile
  • getAecDump
  • getAttenuateWhileSpeakingOthers
  • getAttenuateWhileSpeakingSelf
  • getAttenuation
  • getAudioMixerSettings
  • getAudioSubsystem
  • getAutomaticGainControl
  • getBypassSystemInputProcessing
  • getCameraComponent
  • getDebugLogging
  • getEchoCancellation
  • getEnableSilenceWarning
  • getExperimentalSoundshare
  • getGoLiveContext
  • getGoLiveSource
  • getGpuBrand
  • getH265Enabled
  • getHardwareEncoding
  • getInputDetected
  • getInputDetectedThisConnection
  • getInputDeviceId
  • getInputDeviceOSMuted
  • getInputDeviceOSVolume
  • getInputDevices
  • getInputVolume
  • getKrispEnableStats
  • getKrispModelOverride
  • getKrispModels
  • getKrispSuppressionLevel
  • getKrispVadActivationThreshold
  • getLastAudioInputDeviceChangeTimestamp
  • getLastInputDetectedUpdateTime
  • getLocalPan
  • getLocalVolume
  • getLoopback
  • getLoopbackReasons
  • getMediaEngine
  • getMLSSigningKey
  • getMode
  • getModeOptions
  • getNoInputDetectedNotice
  • getNoiseCancellation
  • getNoiseSuppression
  • getOpenH264Enabled
  • getOutputDeviceId
  • getOutputDevices
  • getOutputVolume
  • getPacketDelay
  • getQoS
  • getSettings
  • getShortcuts
  • getSidechainCompression
  • getSidechainCompressionStrength
  • getSpeakingWhileMuted
  • getState
  • getSupportedSecureFramesProtocolVersion
  • getSystemMicrophoneMode
  • getUseGamescopeCapture
  • getUseSystemScreensharePicker
  • getUseVaapiEncoder
  • getVideoComponent
  • getVideoDeviceId
  • getVideoDevices
  • getVideoEncoderExperiments
  • getVideoHook
  • getVideoStreamParameters
  • getVideoToggleState
  • hasActiveCallKitCall
  • hasClipsSource
  • hasContext
  • hasH265HardwareDecode
  • hasVideoDevice
MediaPlaybackStore
  • getPlaybackPosition
  • getPlaybackRate
  • getUserAgnosticState
MediaPostEmbedStore
  • getEmbedFetchState
  • getMediaPostEmbed
  • getMediaPostEmbeds
MemberSafetyStore
  • getCurrentMemberSearchResultsByGuildId
  • getElasticSearchPaginationByGuildId
  • getEnhancedMember
  • getEstimatedMemberSearchCountByGuildId
  • getKnownMemberSearchCountByGuildId
  • getLastCursorTimestamp
  • getLastRefreshTimestamp
  • getMembersByGuildId
  • getMembersCountByGuildId
  • getNewMemberTimestamp
  • getPagedMembersByGuildId
  • getPaginationStateByGuildId
  • getSearchStateByGuildId
  • hasDefaultSearchStateByGuildId
MessageReactionsStore
  • getReactions
MessageRequestPreviewStore
  • getMessageRequestPreview
MessageRequestStore
  • getMessageRequestChannelIds
  • getMessageRequestsCount
MessageStore
  • getLastChatCommandMessage
  • getLastEditableMessage
  • getLastMessage
  • getLastNonCurrentUserMessage
  • getMessage
  • getMessages
  • hasCurrentUserSentMessage
  • hasCurrentUserSentMessageSinceAppStart
  • hasCurrentUserSentWaveBlockingMessage
  • hasPresent
MFAStore
  • getBackupCodes
  • getNonces
  • getVerificationKey
  • hasSeenBackupPrompt
MultiAccountStore
  • getCanUseMultiAccountMobile
  • getHasLoggedInAccounts
  • getIsValidatingUsers
  • getState
  • getUsers
  • getValidUsers
MultiAccountSwitchStore
  • getIsSwitchingAccount
  • getSwitchResult
MyGuildApplicationsStore
  • getFetchState
  • getGuildIdsForApplication
  • getLastFetchTimeMs
  • getNextFetchRetryTimeMs
  • getState
N
  • getMediaSessionId
  • getNotes
  • getPendingNote
  • getPendingPosition
  • getRoom
  • getRoomObjects
  • getRoomUsers
NativeScreenSharePickerStore
  • getLastPickedContent
  • getLastPickedContentPID
  • getLastPickedContentTitle
  • getPickerState
  • getStreamStartOptions
NetworkStore
  • getEffectiveConnectionSpeed
  • getServiceProvider
  • getType
NewChannelsStore
  • getNewChannelIds
NewGameStore
  • getCoverImageUrl
  • getGame
  • hasNoData
NewPaymentSourceStore
  • getBillingAddressInfo
  • getCreditCardInfo
NewUserStore
  • getState
  • getType
NonGameStore
  • getById
  • getState
  • hasAttemptedFetch
NoteStore
  • getNote
NoticeStore
  • getNotice
  • hasNotice
NotificationCenterItemsStore
  • getState
  • hasMore
NotificationSettingsStore
  • getDesktopType
  • getDisableAllSounds
  • getDisabledSounds
  • getDisableUnreadBadge
  • getNotifyMessagesInSelectedChannel
  • getTTSType
  • getUserAgnosticState
NotificationsInboxStore
  • getChannelInfoMap
  • getDevOverrides
  • getInboxMessages
  • getNotifyingChannelIds
  • hasLoadedEver
  • hasMoreToLoad
  • hasPreloaded
NowPlayingStore
  • getNowPlaying
  • getUserGame
Overlay-v3-Native-Debug-Module-Store
  • getDebuggingState
  • getOverlayLoggingBreadcrumbs
  • getRenderDebugModes
  • hasRenderDebugMode
Overlay-v3-Native-GPU-Boost-Store
  • getGPUBoostRequests
  • getIsDisabledGPUBoost
Overlay-v3-Native-Module-Store
  • getNativeModule
Overlay-V3-Store
  • getFocusedPID
  • getFocusedRunningGame
  • getFocusedWindowHandle
  • getIsOverlayPreShown
  • getKnownWindowHandlesForPID
  • getOverlayMethod
  • getOverlayState
  • getPopoutInitializationStages
  • getTargetPID
  • getWidgetByType
Overlay-v3-Text-Chat-Store
  • getSelectedChannelId
  • getSessionEntries
  • getVoiceChatMinimized
OverlayActiveNowStore
  • getActiveNowChannelByChannelId
  • getActiveNowChannelIds
  • getActiveNowChannels
  • getScoreBreakdownForChannelId
  • getScoreForChannelId
  • hasActiveNowChannelId
OverlayBridgeStore
  • getAnyGlobalEnabledOverlay
  • getFocusedPID
  • getOverlayPIDStatuses
OverlayFriendsWidgetFavoritesStore
  • getFavoriteTargetIdsForTab
  • getState
OverlayRenderStore
  • getAnyGlobalEnabledOverlay
  • getClosedTrackedGamesHistory
  • getDevToolsFocusedPidsWithTimestamp
  • getForcedRenderMode
  • getGameOverlayStatus
  • getGlobalEnabledStatus
  • getHasLoadedExperiments
  • getMostRecentOverlayRenderMethod
  • getOverlayMethod
  • getOverlayRenderingTrackedGames
  • getPerGameEnabledStatus
  • getRenderMethod
  • getTrackedGameByPid
  • getTrackedGames
  • hasChangedRenderMode
OverlayRTCConnectionStore
  • getAveragePing
  • getConnectionState
  • getHostname
  • getLastPing
  • getOutboundLossRate
  • getPings
  • getQuality
OverlayRunningGameStore
  • getGame
  • getGameForPID
OverlaySettingsStore
  • getDisabledNotifications
  • getDisabledSettingByNotificationType
  • getInitialOverlayState
  • getState
OverlayStore
  • getActiveRegions
  • getAvatarSizeMode
  • getDisableExternalLinkAlert
  • getDisplayNameMode
  • getDisplayUserMode
  • getFocusedPID
  • getNotificationPositionMode
  • getSelectedCallId
  • getSelectedChannelId
  • getSelectedGuildId
  • getState
  • getTextWidgetOpacity
  • getTrackedGame
OverridePremiumTypeStore
  • getCreatedAtOverride
  • getPremiumTypeActual
  • getPremiumTypeOverride
  • getState
ParentalConsentStore
  • getShouldShowGuardianConnect
  • getState
ParentalConsentWarningStore
  • getState
  • getWarning
  • hasShownModalToday
PaymentSourceStore
  • getDefaultBillingCountryCode
  • getPaymentSource
  • hasFetchedPaymentSources
PendingReplyStore
  • getPendingReply
  • getPendingReplyActionSource
  • getState
PermissionStore
  • getChannelPermissions
  • getChannelsVersion
  • getGuildPermissionProps
  • getGuildPermissions
  • getGuildVersion
  • getHighestRole
PhoneStore
  • getCountryCode
  • getUserAgnosticState
PictureInPictureStore
  • getDockedRect
  • getState
PoggermodeAchievementStore
  • getAllUnlockedAchievements
  • getState
  • getUnlocked
PoggermodeSettingsStore
  • getUserAgnosticState
PoggermodeStore
  • getComboScore
  • getMessageCombo
  • getMostRecentMessageCombo
  • getUserCombo
  • getUserComboShakeIntensity
PopoutWindowStore
  • getIsAlwaysOnTop
  • getState
  • getWindow
  • getWindowFocused
  • getWindowKeys
  • getWindowOpen
  • getWindowState
  • getWindowVisible
PremiumGiftingIntentStore
  • getDevToolCurrentDate
  • getDevToolTotalFriendAnniversaries
  • getFriendAnniversaries
  • getFriendAnniversaryYears
  • getHighAffinityFriendAnniversaries
  • getHighestAffinityFriendAnniversaries
  • getLastKnownGiftIntentDismissedAtMs
  • getMessageGiftIntentLastShownMap
  • getState
PremiumGroupInviteStore
  • getInvite
  • getInviteByUserId
  • getInviteState
  • hasFetchedAllInvites
PremiumGroupPersistedStore
  • getLastDismissedAnnouncementModalAt
  • getState
PremiumGroupStore
  • getMembers
  • getMembership
  • getNumAvailableInvites
  • getNumTotalSeats
  • getNumUsedSeats
  • hasFetchedMembers
  • hasFetchedMembership
PremiumPaymentModalStore
  • getGiftCode
PresenceStore
  • getActivities
  • getActivityMetadata
  • getAllApplicationActivities
  • getApplicationActivity
  • getClientStatus
  • getHiddenActivities
  • getPrimaryActivity
  • getState
  • getStatus
  • getUnfilteredActivities
  • getUserIds
PrivateChannelReadStateStore
  • getUnreadPrivateChannelIds
PrivateChannelRecipientsInviteStore
  • getQuery
  • getResults
  • getSelectedUsers
  • getState
  • hasFriends
PrivateChannelSortStore
  • getPrivateChannelIds
  • getSortedChannels
ProgramRewardsStore
  • getRewardForProgram
  • getState
  • getStatus
  • getTotalDaysInDuration
  • hasCachedValue
PromotionsStore
  • getActiveBogoRewardPromotion
  • getGiftPromotion
  • getGiftPromotionRewardSkuIds
  • getMarketingComponentByType
  • getMarketingMomentPromotion
  • getMarketingMomentRewardSkuIds
  • getPromotionByTypeAndId
  • getPromotionByTypeAndKey
  • getPromotionsByPartner
  • getState
  • hasFetchedConsumedInboundPromotionId
  • hasPromotion
PurchasedItemsFestivityStore
  • getState
QualtricsStore
  • getSurvey
QuestStore
  • getExpiredQuestsMap
  • getFetchQuestPreviewError
  • getLastFetchedQuestHomeHero
  • getOptimisticProgress
  • getQuest
  • getQuestConfig
  • getQuestHomeHero
  • getQuestLoadedViaPreview
  • getQuestPreviewOverride
  • getRewardCode
  • getRewards
  • getStreamHeartbeatFailure
QuickSwitcherStore
  • getChannelHistory
  • getFrequentGuilds
  • getFrequentGuildsLength
  • getLastShowTimestamp
  • getProps
  • getResultTotals
  • getState
RawGuildEmojiStore
  • getGuildEmojis
ReadStateStore
  • getAllReadStates
  • getChannelIdsForWindowId
  • getForDebugging
  • getGuildChannelUnreadState
  • getGuildUnreadsSentinel
  • getIsMentionLowImportance
  • getMentionChannelIds
  • getMentionCount
  • getNonChannelAckId
  • getNotifCenterReadState
  • getOldestUnreadMessageId
  • getOldestUnreadTimestamp
  • getReadStatesByChannel
  • getSnapshot
  • getTrackedAckMessageId
  • getUnreadCount
  • hasOpenedThread
  • hasRecentlyVisitedAndRead
  • hasTrackedUnread
  • hasUnread
  • hasUnreadOrMentions
  • hasUnreadPins
RecentMentionsStore
  • getMentionCountForChannel
  • getMentions
  • getSettingsFilteredMentions
  • hasLoadedEver
  • hasMention
  • hasMore
RecentVoiceChannelStore
  • getState
  • getTextChannelHistory
  • getVoiceChannelHistory
ReferencedMessageStore
  • getMessage
  • getMessageByReference
  • getReplyIdsForChannel
ReferralTrialStore
  • getAllRelevantReferralTrialOffers
  • getEligibleUsers
  • getFetchingEligibleUsers
  • getHasEligibleFriends
  • getIsEligibleToSendReferrals
  • getNextIndexOfEligibleUsers
  • getRecipientStatus
  • getReferralsRemaining
  • getRefreshAt
  • getRelevantUserTrialOffer
  • getReminderStateId
  • getSentUserIds
RegionalFeatureConfigStore
  • getRegionalFeatureConfig
  • getUserCountryCode
  • hasAgeGatedFeatures
  • hasTeenDefaults
RelationshipStore
  • getBlockedIDs
  • getBlockedOrIgnoredIDs
  • getFriendCount
  • getFriendIDs
  • getIgnoredIDs
  • getMutableRelationships
  • getNickname
  • getNote
  • getOriginApplicationId
  • getOutgoingCount
  • getPendingCount
  • getPendingIgnoredCount
  • getRelationshipCount
  • getRelationshipType
  • getSince
  • getSinces
  • getSpamCount
  • getVersion
ReportToModStore
  • getReportedMessages
  • getState
  • hasReportedMessage
RTCConnectionDesyncStore
  • getDesyncedParticipants
  • getDesyncedUserIds
  • getDesyncedVoiceStates
RTCConnectionStore
  • getAveragePing
  • getChannelId
  • getDuration
  • getGuildId
  • getHostname
  • getJoinVoiceId
  • getLastNonZeroRemoteVideoSinkWantsTime
  • getLastPing
  • getLastRTCConnectionState
  • getLastSessionVoiceChannelId
  • getMediaSessionId
  • getOutboundLossRate
  • getPacketStats
  • getPings
  • getQuality
  • getRemoteDisconnectVoiceChannelId
  • getRTCConnection
  • getRTCConnectionId
  • getSecureFramesRosterMapEntry
  • getSecureFramesState
  • getState
  • getUserIds
  • getUserVoiceSettingsStats
  • getVoiceStateStats
  • getWasEverMultiParticipant
  • getWasEverRtcConnected
  • getWasMoved
RTCDebugStore
  • getAllStats
  • getInboundStats
  • getOutboundStats
  • getSection
  • getSimulcastDebugOverride
  • getVideoStreams
RTCRegionStore
  • getPreferredRegion
  • getPreferredRegions
  • getRegion
  • getUserAgnosticState
RunningGameStore
  • getCandidateGames
  • getCurrentGameForAnalytics
  • getCurrentNonGameForAnalytics
  • getDebugRunningGame
  • getDetectionDebug
  • getGameForName
  • getGameForPID
  • getGameOrTransformedSubgameForPID
  • getGameOverlayStatus
  • getGamesSeen
  • getLauncherForPID
  • getObservedAppNameForWindow
  • getOverlayEnabledForGame
  • getOverlayOptionsForPID
  • getOverrideForGame
  • getOverrides
  • getRunningDiscordApplicationIds
  • getRunningGames
  • getRunningNonGames
  • getRunningVerifiedApplicationIds
  • getSeenGameByName
  • getSystemServiceStatus
  • getVisibleGame
  • getVisibleRunningGames
SaveableChannelsStore
  • getSaveableChannels
SavedMessagesStore
  • getIsStale
  • getLastChanged
  • getMessageBookmarks
  • getMessageReminders
  • getMostRecentOverdueDueAt
  • getOverdueMessageReminderCount
  • getSavedMessage
  • getSavedMessageCount
  • getSavedMessages
  • hasOverdueReminder
scheduledMessageStore
  • getMessagesPendingDeletion
  • getPendingScheduledMessage
  • getScheduledMessagesForInbox
SearchAutocompleteStore
  • getSelectedSearchContext
  • getState
SearchMessageStore
  • getAnalyticsId
  • getCursor
  • getDocumentsIndexed
  • getError
  • getIsFetching
  • getIsHistoricalIndexing
  • getIsIndexing
  • getIsInitialFetchComplete
  • getMessage
  • getMessages
  • getTotalCount
  • hasSearchState
SearchQueryStore
  • getIsSearchTokensInitialized
  • getQueryText
  • getSearchMode
  • getSearchResultsOffset
  • getSearchResultsQuery
  • getSearchResultsQueryString
  • getSearchStateIds
SearchRecentMessageStore
  • getRecentMessageAuthorIds
SecureFramesPersistedStore
  • getPersistentCodesEnabled
  • getState
  • getUploadedKeyVersionsCached
SelectedChannelStore
  • getChannelId
  • getCurrentlySelectedChannelId
  • getLastChannelFollowingDestination
  • getLastSelectedChannelId
  • getLastSelectedChannels
  • getMostRecentSelectedTextChannelId
  • getVoiceChannelId
SelectedGuildStore
  • getGuildId
  • getLastSelectedGuildId
  • getLastSelectedTimestamp
  • getState
SelectivelySyncedUserSettingsStore
  • getAppearanceSettings
  • getState
  • getTextSettings
SelfPresenceStore
  • getActivities
  • getApplicationActivity
  • getHiddenActivities
  • getLocalPresence
  • getPrimaryActivity
  • getStatus
  • getUnfilteredActivities
SendMessageOptionsStore
  • getOptions
SessionsStore
  • getActiveSession
  • getHiddenActivities
  • getRemoteActivities
  • getRemoteApplicationActivity
  • getSession
  • getSessionById
  • getSessions
SKUPricesStore
  • getFetchStateForApplicationId
  • getFetchStateForSkuId
  • getPricesForSkuId
  • getRewardsForSkuId
SKUStore
  • get
  • getFetchingSkuIds
  • getForApplication
  • getParentSKU
  • getSKUs
SlowmodeStore
  • getSlowmodeCooldownGuess
SocialLayerStorefrontStore
  • getAnnouncement
  • getAnnouncementModalContentConfig
  • getApplicationIdFromDetectableId
  • getApplicationIdFromGuildId
  • getConfig
  • getConfigFetchState
  • getConfigForApplicationId
  • getDetectableIdsToApplicationIds
  • getGuildIdFromApplicationId
  • getNormalizedSKUEligibility
  • getPreviewStorefrontId
  • getSkuAssets
  • getSKUEligibility
  • getSKUEligibilityEntry
  • getStorefrontApplicationIds
  • getStorefrontById
  • getStorefrontData
  • getStorefrontDataForApplicationId
  • getStorefrontEntries
  • getStorefrontFetchState
  • getStorefrontGuildIds
  • getStorefrontMetadata
  • getStorefrontState
SortedGuildStore
  • getCompatibleGuildFolders
  • getFastListGuildFolders
  • getFlattenedGuildFolderList
  • getFlattenedGuildIds
  • getGuildFolderById
  • getGuildFolders
  • getGuildsTree
SortedVoiceStateStore
  • getAllVoiceStates
  • getVoiceStates
  • getVoiceStatesForChannel
  • getVoiceStatesForChannelAlt
  • getVoiceStateVersion
SoundboardStore
  • getFavorites
  • getFrequentlyUsedSoundIds
  • getOverlaySerializedState
  • getSound
  • getSoundById
  • getSounds
  • getSoundsForGuild
  • hasFetchedAllSounds
  • hasFetchedDefaultSounds
  • hasHadOtherUserPlaySoundInSession
  • hasPendingUsage
SoundpackStore
  • getLastSoundpackExperimentId
  • getSoundpack
  • getState
SpamMessageRequestStore
  • getSpamChannelIds
  • getSpamChannelsCount
SpeakingStore
  • getSpeakers
  • getSpeakingDuration
  • getVoiceVolume
SpellcheckStore
  • hasLearnedWord
SpotifyStore
  • getActiveSocketAndDevice
  • getActivity
  • getLastPlayedTrackId
  • getPlayableComputerDevices
  • getPlayerState
  • getSyncingWith
  • getTrack
  • hasConnectedAccount
StageChannelParticipantStore
  • getChannels
  • getChannelsVersion
  • getMutableParticipants
  • getMutableRequestToSpeakParticipants
  • getParticipant
  • getParticipantCount
  • getParticipantsVersion
  • getRequestToSpeakParticipantsVersion
StageChannelRoleStore
  • getPermissionsForUser
StageChannelSelfRichPresenceStore
  • getActivity
StageInstanceStore
  • getAllStageInstances
  • getStageInstanceByChannel
  • getStageInstancesByGuild
StageMusicStore
  • getUserAgnosticState
StickerMessagePreviewStore
  • getStickerPreview
StickersPackStore
  • getStickerById
  • getStickerPack
  • hasLoadedStickerPacks
StickersPersistedStore
  • getState
  • hasPendingUsage
StickersStore
  • getAllGuildStickers
  • getAllPackStickers
  • getPremiumPacks
  • getRawStickersByGuild
  • getStickerById
  • getStickerMetadataArrays
  • getStickerPack
  • getStickersByGuildId
  • hasLoadedStickerPacks
StorefrontProductStore
  • getFetchedAt
  • getFetchedAtForSku
  • getFetchError
  • getFetchErrorForSku
  • getFetchState
  • getFetchStateForSku
  • getProduct
  • getProductsForSku
StorefrontPromotionOverrideStore
  • getPromotionIdOverride
StorefrontPromotionStore
  • getFetchedAt
  • getFetchState
  • getPromotionsForApplication
StoreListingStore
  • get
  • getForChannel
  • getForSKU
  • getStoreListing
  • getUnpublishedForSKU
StreamerModeStore
  • getSettings
  • getState
StreamingCapabilitiesStore
  • getState
StreamRTCConnectionStore
  • getAllActiveStreamKeys
  • getHostname
  • getLastNonZeroRemoteVideoSinkWantsTime
  • getMaxViewers
  • getMediaSessionId
  • getQuality
  • getRegion
  • getRTCConnection
  • getRtcConnectionId
  • getRTCConnections
  • getSecureFramesRosterMapEntry
  • getSecureFramesState
  • getStreamSourceId
  • getUserIds
  • getVideoStats
SubscriptionPlanStore
  • get
  • getFetchedSKUIDs
  • getForSKU
  • getForSkuAndInterval
  • getPaymentSourceIds
  • getPaymentSourcesForPlanId
  • getPlanIdsForSkus
  • hasPaymentSourceForSKUId
  • hasPaymentSourceForSKUIds
SubscriptionRoleStore
  • getGuildIdsWithPurchasableRoles
  • getPurchasableSubscriptionRoles
  • getSubscriptionRoles
  • getUserIsAdmin
  • getUserSubscriptionRoles
SubscriptionStore
  • getActiveApplicationSubscriptions
  • getActiveGuildSubscriptions
  • getIsFetchingMostRecentSubscription
  • getIsFetchingSubscriptionRewardEligibility
  • getIsSubscriptionEligibleForReward
  • getLastLazyPerkSync
  • getMostRecentPremiumTypeSubscription
  • getPremiumGroupSubscription
  • getPremiumSubscription
  • getPremiumTypeSubscription
  • getPreviousPremiumTypeSubscription
  • getSubscriptionById
  • getSubscriptionForPlanIds
  • getSubscriptions
  • hasFetchedMostRecentPremiumTypeSubscription
  • hasFetchedPreviousPremiumTypeSubscription
  • hasFetchedSubscriptions
SurveyStore
  • getCurrentSurvey
  • getLastSeenTimestamp
  • getState
  • getSurveyOverride
TestModeStore
  • getState
  • getTestModeApplicationId
ThemeStore
  • getState
  • getSyncedClientTheme
ThreadMemberListStore
  • getMemberListSections
  • getMemberListVersion
ThreadMembersStore
  • getInitialOverlayState
  • getMemberCount
  • getMemberIdsPreview
ThreadMessageStore
  • getChannelThreadsVersion
  • getCount
  • getInitialOverlayState
  • getMostRecentMessage
ThreadsAlsoSendToChannelStore
  • getAlsoSendToChannel
TopEmojiStore
  • getIsFetching
  • getState
  • getTopEmojiIdsByGuildId
TransientKeyStore
  • getUsers
TTSStore
  • getUserAgnosticState
TutorialIndicatorStore
  • getData
  • getDefinition
  • getIndicators
TypingStore
  • getTypingUsers
  • getTypingUsersByGuild
U
  • getState
UnenrolledActivityQuestStore
  • getDismissedQuestIds
  • getState
UnreadSettingNoticeStore2
  • getLastActionTime
  • getState
UnsyncedUserSettingsStore
  • getUserAgnosticState
UpcomingEventNoticesStore
  • getAllEventDismissals
  • getAllUpcomingNoticeSeenTimes
  • getGuildEventNoticeDismissalTime
  • getState
  • getUpcomingNoticeSeenTime
UploadAttachmentStore
  • getFirstUpload
  • getUpload
  • getUploadCount
  • getUploads
  • hasAdditionalUploads
UploadStore
  • getFiles
  • getMessageForFile
  • getUploadAttachments
  • getUploaderFileForMessageId
UserAffinitiesV2Store
  • getState
  • getUserAffinities
  • getUserAffinitiesMap
  • getUserAffinity
UserGuildJoinRequestStore
  • getJoinRequestGuild
  • getRequest
  • hasFetchedRequestToJoinGuilds
  • hasJoinRequestCoackmark
UserGuildSettingsStore
  • getAllSettings
  • getChannelFlags
  • getChannelIdFlags
  • getChannelMessageNotifications
  • getChannelMuteConfig
  • getChannelOverrides
  • getChannelRecordUnreadSetting
  • getChannelUnreadSetting
  • getGuildFavorites
  • getGuildFlags
  • getGuildUnreadSetting
  • getMessageNotifications
  • getMuteConfig
  • getMutedChannels
  • getNewForumThreadsCreated
  • getNotifyHighlights
  • getOptedInChannels
  • getOptedInChannelsWithPendingUpdates
  • getPendingChannelUpdates
  • getState
UserOfferStore
  • getAcknowledgedOffers
  • getAlmostExpiringDiscountOffersForReminder
  • getAlmostExpiringTrialOffersForReminder
  • getAnyOfUserTrialOfferId
  • getReferrer
  • getState
  • getUnacknowledgedDiscountOffers
  • getUnacknowledgedOffers
  • getUserDiscountOffer
  • getUserTrialOffer
  • hasAnyUnexpiredDiscountOffer
  • hasAnyUnexpiredOffer
  • hasFetchedOffer
UserProfileSettingsStore
  • getErrors
  • getFormState
  • getPendingChanges
  • getTryItOutChanges
  • hasTryItOutChanges
  • hasUnsavedChanges
UserProfileStore
  • getFirstWishlistId
  • getGuildMemberProfile
  • getMutualFriends
  • getMutualFriendsCount
  • getMutualGuilds
  • getUserProfile
  • getWidgets
  • getWishlistIds
  • getWishlistSettings
UserRequiredActionStore
  • getAction
  • hasAction
UserSettingsOverridesStore
  • getAppliedOverrideReasonKey
  • getOverride
  • getState
UserSettingsProtoStore
  • getDefaultGuildThemePreference
  • getDismissedGuildContent
  • getFullState
  • getGuildDismissedContentState
  • getGuildFolders
  • getGuildRecentsDismissedAt
  • getGuildsProto
  • getGuildThemeSourcePreferenceOverride
  • getState
  • hasLoaded
UserStore
  • getCurrentUser
  • getUser
  • getUsers
  • getUserStoreVersion
VerifiedKeyStore
  • getKeyTrustedAt
  • getState
  • getUserIds
  • getUserVerifiedKeys
VideoBackgroundStore
  • hasBeenApplied
  • hasUsedBackgroundInCall
VideoSpeakerStore
  • getSpeaker
VideoStreamStore
  • getStreamId
  • getTimedoutVideo
  • getTimedoutVideos
  • getUserStreamData
VirtualCurrencyStore
  • getCurrentBalance
VoiceChannelAnimationStateStore
  • getAnimationStyle
  • getUserCount
VoiceChannelStartTimeStore
  • getStartTime
  • hasRequestedStartTimes
VoiceDareTrackingStore
  • getActiveDareForUserId
  • getProgressForDareId
  • getProgressForUserId
  • getTrackingEntryForUserId
  • hasVoiceDareForUserId
VoiceInvitesuggestionsStore
  • getIsPopoverDismissed
  • getShouldShowPopover
VoiceStateStore
  • getAllVoiceStates
  • getCurrentClientVoiceChannelId
  • getDiscoverableVoiceState
  • getDiscoverableVoiceStateForUser
  • getUsersWithVideo
  • getUserVoiceChannelId
  • getVideoVoiceStatesForChannel
  • getVoicePlatformForChannel
  • getVoiceState
  • getVoiceStateForChannel
  • getVoiceStateForSession
  • getVoiceStateForUser
  • getVoiceStates
  • getVoiceStatesForChannel
  • getVoiceStateVersion
  • hasVideo
WalletBalanceStore
  • getBalance
  • getIsFetching
WebAuthnStore
  • getCredentials
  • hasCredentials
  • hasFetchedCredentials
  • hasPendingRegisterTrigger
WebhooksStore
  • getWebhooksForChannel
  • getWebhooksForGuild
WelcomeScreenStore
  • get
  • hasError
  • hasSeen
WindowStore
  • getFocusedWindowId
  • getLastFocusedWindowId
WowMomentConfirmationStore
  • getState
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment