Tracking background updates from the Discord alpha client.
Current build hash: 36785b170f73117664d81675633ae859172465ac
Changes the Nitro upsell button style in emoji and soundboard pickers.
When users encounter Nitro-locked emoji or sounds, the button treatment can affect whether the subscription prompt feels noticeable or intrusive.
default {
"buttonStyle": 0
}variations {
"0": {
"buttonStyle": 0
},
"1": {
"buttonStyle": 1
},
"2": {
"buttonStyle": 2
}
}Adjusts how many frequently used emojis appear in the emoji picker.
Too many or too few frequent emojis can change how quickly users find the emoji they want.
variations {
"1": {
"maxFrequentEmojis": 9
},
"2": {
"maxFrequentEmojis": 18
}
}Preloads app widgets and activity details before a profile card opens.
Profiles with app widgets or game activity can fill in faster and avoid blank sections after opening. The tradeoff is that some data may be requested before the card is actually shown.
default {
"enabled": false
}variations {
"0": {
"enabled": false
},
"1": {
"enabled": true
}
}Fetches autocomplete results while searching for game names.
This can help users pick the right game faster without typing the full name.
default {
"enabled": false
}variations {
"1": {
"enabled": true
}
}Tests a campaign-style visual treatment for the Quest Home entry in the friends/DM list.
This can make Quest or reward campaigns easier to notice from the main navigation. The evidence supports a visual entrypoint override, not a new Quest feature by itself.
default {
"enabled": false
}variations {
"1": {
"enabled": true
}
}Connects to the setting and channel-type labels that distinguish a server channel as a spoiler channel.
A visible spoiler designation can help people decide whether to open a channel before encountering its content.
Creates an order before checkout and updates it when the payment method changes.
This can keep order data consistent across checkout steps, but the additional order preparation also affects startup time and recovery from payment errors.
Changes the invite modal title when adding people to an existing one-to-one DM.
The title at the moment a one-to-one DM becomes a group DM can clarify whether the user is adding a friend or expanding the conversation.
default {
"enabled": false
}variations {
"1": {
"enabled": true
}
}Tests group-DM customization and cancel-button behavior before adding people to a one-to-one DM.
canCustomizeGDM controls pre-invite editing, while addCancelButton controls exit handling, both of which can reduce accidental group DM changes and improve invite conversion.
default {
"addCancelButton": false,
"canCustomizeGDM": false
}variations {
"1": {
"addCancelButton": false,
"canCustomizeGDM": true
},
"2": {
"addCancelButton": true,
"canCustomizeGDM": true
}
}Shows a Pix payment-add button in eligible Brazil checkout flows.
This can make checkout faster for users who rely on Pix, but the exact placement matters because payment-source prompts can affect completion and confusion.
default {
"enabled": false
}variations {
"1": {
"enabled": true
}
}Expands an order-first checkout flow for Shop and game storefront purchases.
Creating the order earlier can change how price confirmation, waiting states, and payment errors appear before purchase completion.
default {
"enabled": false
}variations {
"1": {
"enabled": true
}
}Tests gift price visibility, new price copy, and a monthly default in Nitro gifting.
This measures how quickly buyers understand gift price and duration, and whether defaulting to a one-month gift changes selection and checkout completion.
default {
"monthlyDefaultSelected": false,
"showGiftPrice": true,
"useNewCopy": false
}variations {
"1": {
"monthlyDefaultSelected": false,
"showGiftPrice": false,
"useNewCopy": false
},
"2": {
"monthlyDefaultSelected": false,
"showGiftPrice": true,
"useNewCopy": true
},
"3": {
"monthlyDefaultSelect...