mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-29 23:00:08 +00:00
fix(Embed): corrent certain optional types as being required (#192)
BREAKING CHANGE: - `APIEmbedAuthor#name` is required, not optional - `APIEmbedThumbnail#url` is required, not optional - `APIEmbedImage#url` is required, not optional
This commit is contained in:
@@ -660,7 +660,7 @@ export interface APIEmbedThumbnail {
|
||||
/**
|
||||
* Source url of thumbnail (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the thumbnail
|
||||
*/
|
||||
@@ -700,7 +700,7 @@ export interface APIEmbedImage {
|
||||
/**
|
||||
* Source url of image (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the image
|
||||
*/
|
||||
@@ -738,7 +738,7 @@ export interface APIEmbedAuthor {
|
||||
*
|
||||
* Length limit: 256 characters
|
||||
*/
|
||||
name?: string;
|
||||
name: string;
|
||||
/**
|
||||
* URL of author
|
||||
*/
|
||||
|
||||
@@ -789,7 +789,7 @@ export interface APIEmbedThumbnail {
|
||||
/**
|
||||
* Source url of thumbnail (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the thumbnail
|
||||
*/
|
||||
@@ -829,7 +829,7 @@ export interface APIEmbedImage {
|
||||
/**
|
||||
* Source url of image (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the image
|
||||
*/
|
||||
@@ -867,7 +867,7 @@ export interface APIEmbedAuthor {
|
||||
*
|
||||
* Length limit: 256 characters
|
||||
*/
|
||||
name?: string;
|
||||
name: string;
|
||||
/**
|
||||
* URL of author
|
||||
*/
|
||||
|
||||
@@ -660,7 +660,7 @@ export interface APIEmbedThumbnail {
|
||||
/**
|
||||
* Source url of thumbnail (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the thumbnail
|
||||
*/
|
||||
@@ -700,7 +700,7 @@ export interface APIEmbedImage {
|
||||
/**
|
||||
* Source url of image (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the image
|
||||
*/
|
||||
@@ -738,7 +738,7 @@ export interface APIEmbedAuthor {
|
||||
*
|
||||
* Length limit: 256 characters
|
||||
*/
|
||||
name?: string;
|
||||
name: string;
|
||||
/**
|
||||
* URL of author
|
||||
*/
|
||||
|
||||
@@ -789,7 +789,7 @@ export interface APIEmbedThumbnail {
|
||||
/**
|
||||
* Source url of thumbnail (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the thumbnail
|
||||
*/
|
||||
@@ -829,7 +829,7 @@ export interface APIEmbedImage {
|
||||
/**
|
||||
* Source url of image (only supports http(s) and attachments)
|
||||
*/
|
||||
url?: string;
|
||||
url: string;
|
||||
/**
|
||||
* A proxied url of the image
|
||||
*/
|
||||
@@ -867,7 +867,7 @@ export interface APIEmbedAuthor {
|
||||
*
|
||||
* Length limit: 256 characters
|
||||
*/
|
||||
name?: string;
|
||||
name: string;
|
||||
/**
|
||||
* URL of author
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user