- Improved handling of error messages of api_exceptions based on JDA exceptions
 
Due to the sunsetting of Javacord, this mod migrated to JDA, which meant that introducing breaking changes was inevitable, so I chose to use this update to add more improvements that introduce breaking changes.
The naming convention of "parsables" in the documentation and changelogs have changed. These map values used as function parameters are now referred to as "schemas" or "objects". A "schema" is the format of the fields a parsable has, while an "object" will be referred to as a map value following that schema.
Breaking changes
The following changes may break existing scripts. Make sure to update them to work with this new discarpet version.
Event changes
Due to JDA having no built-in message caching, the following events were changed:
- The 
__on_discord_message_editevent now no longer provides the previous message and whether it was actually edited - The 
__on_discord_message_deletenow only gives the deleted message id and the channel object instead of the message object 
Function changes
- The channel or message for creating a thread is no longer provided in the schema (previously "parsable"), but as an argument to 
dc_create_thread dc_reacthas been split todc_add_reaction(msg, emoji)anddc_remove_reaction(msg, emoji?, user?)dc_set_channel_topicwas removed in favor of the newdc_update_channel- Removed 
dc_get_display_namein favor ofmember~'effective_name' - Removed 
dc_get_timeoutin favor ofmember~'timeout_end' - Removed 
dc_get_user_colorin favor ofmember~'color' - Removed 
dc_get_user_rolesin favor ofmember~'roles' - Added 
dc_update_presence()to replacedc_set_status()anddc_set_activity() 
Value changes
- The command value types are now all the same value type 
dc_commandand can be distinguished withcommand~'type' - Removed 
user~'discriminated_name, since discriminators are phased out by discord - Replaced 
reaction~'message'withreaction~'message_id'since messages are not cached anymore slash_command_interaction~'arguments'andslash_command_interaction~'arguments_by_name'no longer include the subcommand and subcommand group. Additionally,slash_command_interaction_option~'options'was removed, since subcommand groups and subcommands are no longer expressed as nested options, but can be retrieved usinginteraction~'sub_command'or~'sub_command_group'.- Replaced 
~'is_subcommand_or_group'in slash command interaction option values with~'type' 
Schema changes
- Replaced 
threadschemachannel_typewithis_private. - Changes to message content schema
- Renamed 
reply_totoreferenced_messagesince it can now also used to forward messages - Added 
message_reference_typewhich can be set toforwardto forward messages instead of replying - Made 
contentfield optional for messages without content, like forwarded messages 
 - Renamed 
 - The 
file,url,bytes, andimagefields of the attachment schema have been moved to afileparsable- The 
filefield is now no longer a system file path, but a scarpet resource path, just like it is used in scarpet'sread_file. byteshas been renamed tostring
 - The 
 - The following fields of schemas now use the 
fileschema (see above)thumbnailandimageinembediconinembed_authorandembed_footeravatarinwebhook_profileandwebhook_profile_updater
 
Type strings
ALL type strings are now returned in lowercase. Additionally, the type fields of schemas are now all case-insensitive, so you can interchangeably use upper or lower case strings everywhere.
Most values returned by the ~'type' queries of values are now also different:
~'type' strings
The types of a channel value have changed:
SERVER_TEXT_CHANNEL->textSERVER_VOICE_CHANNEL->voiceSERVER_FORUM_CHANNEL->forumSERVER_STAGE_VOICE_CHANNEL->stageSERVER_NEWS_CHANNEL->newsSERVER_STORE_CHANNEL-> removedSERVER_PUBLIC_THREAD->guild_public_threadSERVER_PRIVATE_THREAD->guild_private_threadSERVER_NEWS_THREAD->guild_news_threadPRIVATE_CHANNEL->privateGROUP_CHANNEL->groupCHANNEL_CATEGORY->categorySERVER_DIRECTORY_CHANNEL-> removed- 
- -> 
media 
 - -> 
 
Other changes:
webhook~'type'CHANNEL_FOLLOWERchanged tofollowersticker~'type'SERVERchanged toguild
Schema type strings
The component type in a component schema have partially different names now:
BUTTON->buttonSELECT_MENU_STRING->string_selectSELECT_MENU_USER->user_selectSELECT_MENU_ROLE->role_selectSELECT_MENU_MENTIONABLE->mentionable_selectSELECT_MENU_CHANNEL->channel_selectTEXT_INPUT->text_input
The style of the button schema is now no longer the color name, but the types name as discord refers to them:
BLURPLE->primaryGREY->secondaryGREEN->successRED->dangerURL->link
Other breaking changes
- Exception hierarchy and values have changed
 
New features
- Added 
slash_command_interaction~'subcommand'andslash_command_interaction~'subcommand_group' - Added 
channel_typesto select menu schema - Added 
mention_channels,mention_emojis,mention_slash_commands,mention_herefields to allowed mentions schema - Added 
mention_replied_userto allowed mentions - Emoji fields in schemas now support many more string notations
 - Added 
dc_remove_reaction(msg, emoji?, user?) - Added 
message~'stripped_content' - Added 
message~'stickers' - Added 
emoji~'type' - Added 
reaction~'channel'andreaction~'server' - Added 
respond_later_dataschema to third parameter ofdc_respond_interactionwhen using typerespond_laterto specify ephemeral. 
New file schema
Added a new file schema for specifying the source of a file
- It uses some of the same fields previously found in the 
attachmentschema - The 
filefield is now no longer a system file path, but a scarpet resource path, just like it is used in scarpet'sread_file. byteshas been renamed tostringbase64was added as a way to provide data for the file- This is now used for the following fields of schemas:
thumbnailandimageinembediconinembed_authorandembed_footeravatarinwebhook_profileandwebhook_profile_updater- The 
file,url,bytesandimagefields of theattachmentfield have been replaced with a singlefilefield. 
 
New member value
Added dc_member value type, referencing a user in a server.
This can be used to retrieve data of a user specific to a server, like nicknames and roles.
In order to retrieve this value, the following has been added:
- Added 
message~'member' - Added 
message~'member' - Added 
interaction~'member' - Added 
role~'members' - Added 
server~'members' - Added 
channel~'position - Added 
dc_member_from_user(user, server)function for retrieving a member from the user and server. 
Update channel function
- Added 
dc_update_channel, replacingdc_set_channel_topic, allowing to update many options of channels. - Added 
channel_updaterschema. 
- Updated to 1.21.5
 - New behaviour for errors while executing API requests.
Previously, functions would return 
trueorfalse(sometimesnullor a value) to indicate success or failure. Now those functions no longer return anything (or only return a value) and instead throw custom discarpet exceptions that can be caught usingtry(). This affects the following functions and queries:- These functions no longer return a boolean value to indicate success
and will instead throw an exception when an error occured:
dc_set_channel_topicdc_reactdc_set_nicknamedc_add_roledc_remove_roledc_set_namedc_delete
 - These functions will now throw an exception instead of returning null. When successful they will return a value:
dc_send_messagedc_send_webhookdc_create_webhookdc_update_webhookdc_create_threaddc_create_application_commanddc_get_global_application_commandsdc_user_from_iddc_message_from_iddc_webhook_from_iddc_webhook_from_url
 - These actions now properly handle errors and throw exceptions on failure:
attachment~'download'channel~'webhooks'server~'webhooks'server~'slash_commands'user~'private_channel'
 - Special cases:
dc_respond_interactioncan still returnnullwhen the response type doesn't create a message. In all other cases it will either throw an exception or return aMessage
 
 - These functions no longer return a boolean value to indicate success
and will instead throw an exception when an error occured:
 - Added events:
__on_discord_message(message, old_message, is_actual_edit)__on_discord_message_delete(message)__on_discord_server_member_join(server, user)__on_discord_server_member_leave(server, user)
 - Fully removed the deprecated function 
dc_create_slash_command. Usedc_create_application_commandinstead - Improved reloading of bots
 - Split 
dc_timeoutintodc_get_timeoutanddc_set_timeout 
- Fixed errors on Minecraft 1.21.3
 
- Update to Minecraft 1.20.5
 
- Updated to MC 1.20.4
 
- Added new sticker value type
 - Added dc_sticker_from_id(stickerId)
 - Added new query options:
message~'webhook_id'emoji~'id'server~'emojis'server~'stickers'message~'sticker_ids'
 - Added 
stickersfield to message content parsable 
- Added new properties to message values:
referenced_messagetypelinkflagscreation_timestampedit_timestampposition
 
- Fixed discarpet loading events too early, causing log spam with modded entities (#42)
 - Removed 
__on_command_executedin favor of builtin__on_player_command - Server voice channels can now be used for sending messages into the buildin text-in-voice channel
 - Added suppress_notifications to the message content parsable
 
- Updated to Minecraft 1.20
 - Reloading bots will now no longer freeze the game
 - Improved error handling of the /discarpet command
 
- Updated to Minecraft 1.19.4
 
- Updated to minecraft 1.19.3
 - Added support for user, channel, mentionable and role select menus
 - Added new 
component_typeproperty to select menu interaction values for distinguishing between different select menus - Added 
nsfwproperty to channel values - Changed docs to be more consistent and correct for interaction value types
 
- Added 
dc_create_threadfunction - Added 
threadparsable - Improved error message in some cases for parsables
 - Using new internal enum parser for parsables
 
- Updated to Minecraft 1.19.1
 - Fixed webhook profile and webhook profile updater parsable throwing an error when not using an avatar
 - The 
textargument__on_system_messageis now a formatted text value, which allows for better parsing usingencode_json(text) 
- Improved config loading by adding missing config entries on startup
 - Fix errors when events trigger when the server is starting or stopping
 - Bumped dependency versions (This fixes the server not fully terminating after the world saved)
 
BREAKING CHANGES:
- Intents are no longer boolean values, but a list of strings instead (See Setup)
 dc_get_global_slash_commandsgot renamed todc_get_global_application_commandsand now returns all types of commandsdc_create_slash_command()got renamed todc_create_application_command()and has an additionaltypeargument, and returns the application command value instead of a boolean nowslash_command~'id'now returns the interaction id, instead of the slash command id. Useslash_command~'command_id'instead- The string representation of all discord values is now no longer the type name, but a custom string
 
Other changes:
- Added 
message_context_menu_builderanduser_context_menu_builderparsable - Added 
dc_message_context_menuanddc_user_context_menuvalues - Added 
dc_message_context_menu_interactionanddc_user_context_menu_interactionvalues - Added 
ephemeralandsuppress_embedsfields tomessage_contentparsable dc_create_application_commandnow works with message context menu and user context menu commands- Fixed modal parsable internally being called 
embed - Internally, renamed 
instantparsable totimestampto match docs 
Revamped documentation
- The docs have moved to https://replaceitem.github.io/carpet-discarpet/
 - All functions, values, parsables, events and examples have their own page now
 - Added internal parsable names to the docs
 - Added documentation on 
dc_get_global_application_commands()which was missing - Many many more changes and polishes to docs
 
- Added support for modals
- Added Modal parsable
 - Added new component: Text input parsable
 dc_respond_interactionnow supports responding with a modal usingRESPOND_MODALtype- Added 
dc_modal_interactionvalue - Added 
__on_discord_modal(interaction)event - New modal example
 
 - Added 
dc_set_namefunction for renaming channels, emojis, roles, servers and webhooks - Added 
localeproperty to all interactions. Returns the language code likeen-US - Slash command interaction options now work with the 
attachmentoption type for submitting attachments as a slash command argument (Updated the slash command example) - The 
reasonargument ondc_add_roleanddc_remove_roleis now optional - Added optional 
reasonargument todc_set_nicknameanddc_delete - Added 
dc_timeoutfunction 
- Chat messages, 
/sayand/memessages are now included in__on_system_message - Added 
__on_command_executed(player, command)event 
- Removed 
__on_chat_messageevent due to it being in fabric-carpet now (__on_player_message). __on_system_messageno longer provides an entity, since it only triggers from non entity bound actions now. A lot has changed with this event, many things that previously did, may no longer trigger this


