Files
fx-test/fluxer/fluxer_docs/schemas/events/MESSAGE_REACTION_ADD_MANY.json
Vish 3b9d759b4b feat: add fluxer upstream source and self-hosting documentation
- Clone of github.com/fluxerapp/fluxer (official upstream)
- SELF_HOSTING.md: full VM rebuild procedure, architecture overview,
  service reference, step-by-step setup, troubleshooting, seattle reference
- dev/.env.example: all env vars with secrets redacted and generation instructions
- dev/livekit.yaml: LiveKit config template with placeholder keys
- fluxer-seattle/: existing seattle deployment setup scripts
2026-03-13 00:55:14 -07:00

58 lines
2.0 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "MESSAGE_REACTION_ADD_MANY",
"description": "Sent when multiple reaction add events are batched together within a debounce window. Only dispatched to sessions that set the DEBOUNCE_MESSAGE_REACTIONS identify flag. When only a single reaction occurs within the window, a regular MESSAGE_REACTION_ADD is sent instead.",
"scope": "channel",
"scopeNote": "Guild channels dispatch to guild scope; DMs dispatch to presence scope. This is a virtual event synthesised by the gateway from buffered MESSAGE_REACTION_ADD events.",
"dispatchedBy": ["PUT /channels/:channel_id/messages/:message_id/reactions/:emoji/@me"],
"payload": {
"type": "object",
"properties": {
"channel_id": {
"type": "string",
"description": "Channel ID"
},
"message_id": {
"type": "string",
"description": "Message ID"
},
"guild_id": {
"type": "string",
"description": "Guild ID (only present for guild channels)"
},
"reactions": {
"type": "array",
"description": "Array of individual reaction entries",
"items": {
"type": "object",
"properties": {
"user_id": {
"type": "string",
"description": "ID of the user who reacted"
},
"emoji": {
"type": "object",
"properties": {
"id": {"type": "string", "description": "Emoji ID (only present for custom emoji)"},
"name": {"type": "string", "description": "Emoji name (unicode character or custom emoji name)"},
"animated": {
"type": "boolean",
"description": "Whether the emoji is animated (only present for custom emoji)"
}
},
"required": ["name"],
"description": "The emoji used"
},
"member": {
"$ref": "GuildMemberResponse",
"description": "Guild member object (only present for guild channels)"
}
},
"required": ["user_id", "emoji"]
}
}
},
"required": ["channel_id", "message_id", "reactions"]
}
}