Skip to content

Commit

Permalink
feat(APIScheduledEvent): add image prop (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Jan 25, 2022
1 parent 9c2b185 commit 663c4e9
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v8/guildScheduledEvent.ts
Expand Up @@ -63,6 +63,10 @@ interface APIGuildScheduledEventBase<Type extends GuildScheduledEventEntityType>
* The number of users subscribed to the scheduled event
*/
user_count?: number;
/**
* The cover image of the scheduled event
*/
image: string | null;
}

export interface APIStageInstanceGuildScheduledEvent
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/guildScheduledEvent.ts
Expand Up @@ -63,6 +63,10 @@ interface APIGuildScheduledEventBase<Type extends GuildScheduledEventEntityType>
* The number of users subscribed to the scheduled event
*/
user_count?: number;
/**
* The cover image of the scheduled event
*/
image: string | null;
}

export interface APIStageInstanceGuildScheduledEvent
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v8/guildScheduledEvent.ts
Expand Up @@ -60,6 +60,10 @@ export type RESTPostAPIGuildScheduledEventJSONBody = AddUndefinedToPossiblyUndef
* The entity metadata of the scheduled event
*/
entity_metadata?: APIGuildScheduledEventEntityMetadata;
/**
* The cover image of the scheduled event
*/
image?: string | null;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/guildScheduledEvent.ts
Expand Up @@ -60,6 +60,10 @@ export type RESTPostAPIGuildScheduledEventJSONBody = AddUndefinedToPossiblyUndef
* The entity metadata of the scheduled event
*/
entity_metadata?: APIGuildScheduledEventEntityMetadata;
/**
* The cover image of the scheduled event
*/
image?: string | null;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v8/guildScheduledEvent.ts
Expand Up @@ -63,6 +63,10 @@ interface APIGuildScheduledEventBase<Type extends GuildScheduledEventEntityType>
* The number of users subscribed to the scheduled event
*/
user_count?: number;
/**
* The cover image of the scheduled event
*/
image: string | null;
}

export interface APIStageInstanceGuildScheduledEvent
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/guildScheduledEvent.ts
Expand Up @@ -63,6 +63,10 @@ interface APIGuildScheduledEventBase<Type extends GuildScheduledEventEntityType>
* The number of users subscribed to the scheduled event
*/
user_count?: number;
/**
* The cover image of the scheduled event
*/
image: string | null;
}

export interface APIStageInstanceGuildScheduledEvent
Expand Down
4 changes: 4 additions & 0 deletions rest/v8/guildScheduledEvent.ts
Expand Up @@ -60,6 +60,10 @@ export type RESTPostAPIGuildScheduledEventJSONBody = AddUndefinedToPossiblyUndef
* The entity metadata of the scheduled event
*/
entity_metadata?: APIGuildScheduledEventEntityMetadata;
/**
* The cover image of the scheduled event
*/
image?: string | null;
}>;

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/guildScheduledEvent.ts
Expand Up @@ -60,6 +60,10 @@ export type RESTPostAPIGuildScheduledEventJSONBody = AddUndefinedToPossiblyUndef
* The entity metadata of the scheduled event
*/
entity_metadata?: APIGuildScheduledEventEntityMetadata;
/**
* The cover image of the scheduled event
*/
image?: string | null;
}>;

/**
Expand Down

0 comments on commit 663c4e9

Please sign in to comment.