This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
reacord@0.6.0
Minor Changes
11153df: breaking: more descriptive component event types
fb0a997: add new descriptive adapter methods
The reacord instance names have been updated, and the old names are now deprecated.
send -> createChannelMessage
reply -> createInteractionReply
These new methods also accept discord JS options. Usage example:
// can accept either a channel object or a channel ID
reacord.createChannelMessage(channel)
reacord.createChannelMessage(channel, {
tts: true,
})
reacord.createChannelMessage(channel, {
reply: {
messageReference: "123456789012345678",
failIfNotExists: false,
},
})
reacord.createInteractionReply(interaction)
reacord.createInteractionReply(interaction, {
ephemeral: true,
})
These new methods replace the old ones, which are now deprecated.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
reacord@0.6.0
Minor Changes
fb0a997: add new descriptive adapter methods
The reacord instance names have been updated, and the old names are now deprecated.
send
->createChannelMessage
reply
->createInteractionReply
These new methods also accept discord JS options. Usage example:
These new methods replace the old ones, which are now deprecated.
website@0.4.7
Patch Changes