-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(models): add "flags" field to MemberUpdate payload #2265
base: main
Are you sure you want to change the base?
Conversation
Looks like this field is also not documented by Discord (https://discord.com/developers/docs/topics/gateway-events#guild-member-update) |
No it is not, but it is most definitely sent, and is analogous to the one in the Member object. |
I think we should see if they want to add it to the documentation before we look into adding it here. |
I have opened a PR against the Discord docs to get this added: discord/discord-api-docs#6717 |
@Kelwing Discord have accepted my pr, do you have anything aginst rebasing this, then we can merge it. |
Adds the
flags
field to the MemberUpdate gateway model. Discord sends this field, but it is not captured by Twilight, and is incredibly useful when working with servers that have onboarding enabled.