Summary
- Rework slash extension command structure.
Improvements
- Boost level 0 sticker count is now 5.
- `OA2Access` now support rich attribute errors.
- `OA2Access.__repr__` will no longer display the token. :derp:
- `Client.application_command_permission_edit` now accepts `5` parameters from old `4` since it required oauth2 access.
Warning dropped.
- `Client.application_command_permission_edit`'s `application_command` parameter accepts `None` (or `0`) as well.
- `PermissionOverwrite` now support rich error messages.
- Add `ApplicationCommandPermissionOverwrite.copy_with`.
- `Client.application_command_permission_edit` now accepts role overwrites with id of `0` defaulting to the guild's
default role.
- Add `SystemChannelFlag.role_subscription_purchase`.
- Add `SystemChannelFlag.role_subscription_purchase_replies`.
- Add `MessageFlag.should_show_link_not_discord_warning`.
- Add `ERROR_CODES.auto_moderation_title_blocked`.
- Add `ERROR_CODES.poggermode_temporarily_disabled`.
ext.slash
- Add `CommandBase`.
- Add `CommandBaseApplicationCommand`.
- Add `ContextCommand`
- Add `__hash__` & `__eq__` to all `CommandBase` subclass.
- `SlasherCommandWrapper` now support rich attribute errors.
- `CommandChange` now support rich attribute errors.
- `CommandState` now support rich attribute errors.
- Add `assert_application_command_permission_missmatch_at` parameter to `Slasher.__new__`.
- Add `enforce_application_command_permissions` parameter to `Slasher.__new__`.
- `set_permission` now can be matmul-ed with null, type of self, client, slasher instances.
Bug Fixes
- `Client.user_guild_get_all` asserted down bad scope.
- `Fix `AttributeError` in `ChannelMetadataGuildBase._from_partial_data` (I hate `super`).
- `Client.application_command_permission_edit` could change inputted ``ApplicationCommandPermissionOverwrite``'s hash
value.
ext.slash
- Fix various missing attribute issues in `CommandBase` subclasses, in `.copy`, `.__eq__` methods.
- `Slasher.create_event` now correctly registers `FormSubmitCommand`-s.
- `Slasher.create_event` now correctly identifies `FormSubmitCommand`-s.
- `Slasher.delete_event` wont fail on `ComponentCommand`-s, `FormSubmitCommand`-s.
Renames, Deprecation & Removals
- Rename `MessageType.convert_auto_moderation_action` to `.auto_moderation_action`. (Ops)
- Deprecate `MessageType.new_guild_sub`.
- Deprecate `MessageType.new_guild_sub_t1`.
- Deprecate `MessageType.new_guild_sub_t2`.
- Deprecate `MessageType.new_guild_sub_t3`.
- Rename `MessageType.new_guild_sub` to `.new_guild_subscription`.
- Rename `MessageType.new_guild_sub_t1` to `.new_guild_subscription_tier_1`.
- Rename `MessageType.new_guild_sub_t2` to `.new_guild_subscription_tier_2`.
- Rename `MessageType.new_guild_sub_t3` to `.new_guild_subscription_tier_3`.
- Rename `ERROR_CODES.sticker_animation_duration_exceeds_5_second` to
`.sticker_animation_duration_exceeds_five_seconds`.
- Deprecate `ERROR_CODES.sticker_animation_duration_exceeds_5_second`.
ext.slash
- Rename `SlasherApplicationCommand` to `SlashCommand`.
- Rename `SlasherApplicationCommandFunction` to `SlashCommandFunction`.
- Rename `SlasherApplicationCommandCategory` to `SlashCommandCategory`.
- Rename `CustomIdBasedCommand` to `CommandBaseCustomId`.
- Rename `.call_auto_completion` to `.invoke_auto_completion`.
- Rename `SlashCommandFunction._command` to `._command_function`.
- Rename `SlasherApplicationCommandParameterAutoCompleter` to `SlashCommandParameterAutoCompleter`.
- Rename `CommandBase.__call__` to `.invoke`.
- Rename `SlashCommandParameterAutoCompleter.__call__` to `.invoke`.