You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 14, 2026. It is now read-only.
🚧 fix: allow for announcement, rule, forum, and stage channel types
Summary
GitCord currently lacks support for several specialized Discord channel types. This can cause runtime issues, skipped functionality, or incorrect assumptions in type-checking and channel parsing logic.
Channel Types to Support
Announcement (GUILD_ANNOUNCEMENT, type 5)
Rules (GUILD_RULES, type 15)
Forum (GUILD_FORUM, type 15) (same as Rules; may need conditional handling)
Stage (GUILD_STAGE_VOICE, type 13)
Tasks
Update type checking logic to include these channel types
Adjust filtering/parsing logic to avoid skipping these valid types
Update schema/type definitions (e.g., TypeScript or runtime validation)
🚧 fix: allow for announcement, rule, forum, and stage channel types
Summary
GitCord currently lacks support for several specialized Discord channel types. This can cause runtime issues, skipped functionality, or incorrect assumptions in type-checking and channel parsing logic.
Channel Types to Support
GUILD_ANNOUNCEMENT, type5)GUILD_RULES, type15)GUILD_FORUM, type15) (same as Rules; may need conditional handling)GUILD_STAGE_VOICE, type13)Tasks