krisppurg / dimscord

A Discord Bot & REST Library for Nim.
https://krisppurg.github.io/dimscord/
MIT License
222 stars 20 forks source link

restapi/message: Replace `embed` with `embeds` #60

Closed dannyhpy closed 3 years ago

dannyhpy commented 3 years ago

According to the Discord documentation, embed is now deprecated.

I marked sendMessage(..., embed = none Embed) as deprecated
I marked editMessage(..., embed = none Embed) as deprecated
I marked executeWebhook(..., embeds = some seq[Embed]) as deprecated (for consistency with the following modifications)

I added embeds to sendMessage(embeds = newSeq[Embed]())
I added embeds to editMessage(embeds = newSeq[Embed]())
I added embeds to executeWebhook(embeds = newSeq[Embed]())