mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-28 14:30:10 +00:00
feat: Update invite types (#1365)
This commit is contained in:
4
deno/gateway/v10.ts
generated
4
deno/gateway/v10.ts
generated
@@ -1560,6 +1560,10 @@ export interface GatewayInviteCreateDispatchData {
|
||||
* How many times the invite has been used (always will be `0`)
|
||||
*/
|
||||
uses: 0;
|
||||
/**
|
||||
* The expiration date of this invite.
|
||||
*/
|
||||
expires_at: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
4
deno/gateway/v9.ts
generated
4
deno/gateway/v9.ts
generated
@@ -1559,6 +1559,10 @@ export interface GatewayInviteCreateDispatchData {
|
||||
* How many times the invite has been used (always will be `0`)
|
||||
*/
|
||||
uses: 0;
|
||||
/**
|
||||
* The expiration date of this invite.
|
||||
*/
|
||||
expires_at: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
7
deno/payloads/v10/invite.ts
generated
7
deno/payloads/v10/invite.ts
generated
@@ -6,7 +6,6 @@ import type { APIApplication } from './application.ts';
|
||||
import type { APIInviteChannel } from './channel.ts';
|
||||
import type { APIGuild } from './guild.ts';
|
||||
import type { APIGuildScheduledEvent } from './guildScheduledEvent.ts';
|
||||
import type { APIInviteStageInstance } from './stageInstance.ts';
|
||||
import type { APIUser } from './user.ts';
|
||||
|
||||
export type APIInviteGuild = Pick<
|
||||
@@ -83,10 +82,10 @@ export interface APIInvite {
|
||||
/**
|
||||
* The stage instance data if there is a public stage instance in the stage channel this invite is for
|
||||
*
|
||||
* @deprecated
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/4479 | discord-api-docs#4479}
|
||||
* @deprecated This has been removed from the documentation.
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/7779 | discord-api-docs#7779}
|
||||
*/
|
||||
stage_instance?: APIInviteStageInstance;
|
||||
stage_instance?: never;
|
||||
/**
|
||||
* The guild scheduled event data, returned from the `GET /invites/<code>` endpoint when `guild_scheduled_event_id` is a valid guild scheduled event id
|
||||
*/
|
||||
|
||||
7
deno/payloads/v9/invite.ts
generated
7
deno/payloads/v9/invite.ts
generated
@@ -6,7 +6,6 @@ import type { APIApplication } from './application.ts';
|
||||
import type { APIInviteChannel } from './channel.ts';
|
||||
import type { APIGuild } from './guild.ts';
|
||||
import type { APIGuildScheduledEvent } from './guildScheduledEvent.ts';
|
||||
import type { APIInviteStageInstance } from './stageInstance.ts';
|
||||
import type { APIUser } from './user.ts';
|
||||
|
||||
export type APIInviteGuild = Pick<
|
||||
@@ -83,10 +82,10 @@ export interface APIInvite {
|
||||
/**
|
||||
* The stage instance data if there is a public stage instance in the stage channel this invite is for
|
||||
*
|
||||
* @deprecated
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/4479 | discord-api-docs#4479}
|
||||
* @deprecated This has been removed from the documentation.
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/7779 | discord-api-docs#7779}
|
||||
*/
|
||||
stage_instance?: APIInviteStageInstance;
|
||||
stage_instance?: never;
|
||||
/**
|
||||
* The guild scheduled event data, returned from the `GET /invites/<code>` endpoint when `guild_scheduled_event_id` is a valid guild scheduled event id
|
||||
*/
|
||||
|
||||
@@ -1560,6 +1560,10 @@ export interface GatewayInviteCreateDispatchData {
|
||||
* How many times the invite has been used (always will be `0`)
|
||||
*/
|
||||
uses: 0;
|
||||
/**
|
||||
* The expiration date of this invite.
|
||||
*/
|
||||
expires_at: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1559,6 +1559,10 @@ export interface GatewayInviteCreateDispatchData {
|
||||
* How many times the invite has been used (always will be `0`)
|
||||
*/
|
||||
uses: 0;
|
||||
/**
|
||||
* The expiration date of this invite.
|
||||
*/
|
||||
expires_at: string | null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -6,7 +6,6 @@ import type { APIApplication } from './application';
|
||||
import type { APIInviteChannel } from './channel';
|
||||
import type { APIGuild } from './guild';
|
||||
import type { APIGuildScheduledEvent } from './guildScheduledEvent';
|
||||
import type { APIInviteStageInstance } from './stageInstance';
|
||||
import type { APIUser } from './user';
|
||||
|
||||
export type APIInviteGuild = Pick<
|
||||
@@ -83,10 +82,10 @@ export interface APIInvite {
|
||||
/**
|
||||
* The stage instance data if there is a public stage instance in the stage channel this invite is for
|
||||
*
|
||||
* @deprecated
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/4479 | discord-api-docs#4479}
|
||||
* @deprecated This has been removed from the documentation.
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/7779 | discord-api-docs#7779}
|
||||
*/
|
||||
stage_instance?: APIInviteStageInstance;
|
||||
stage_instance?: never;
|
||||
/**
|
||||
* The guild scheduled event data, returned from the `GET /invites/<code>` endpoint when `guild_scheduled_event_id` is a valid guild scheduled event id
|
||||
*/
|
||||
|
||||
@@ -6,7 +6,6 @@ import type { APIApplication } from './application';
|
||||
import type { APIInviteChannel } from './channel';
|
||||
import type { APIGuild } from './guild';
|
||||
import type { APIGuildScheduledEvent } from './guildScheduledEvent';
|
||||
import type { APIInviteStageInstance } from './stageInstance';
|
||||
import type { APIUser } from './user';
|
||||
|
||||
export type APIInviteGuild = Pick<
|
||||
@@ -83,10 +82,10 @@ export interface APIInvite {
|
||||
/**
|
||||
* The stage instance data if there is a public stage instance in the stage channel this invite is for
|
||||
*
|
||||
* @deprecated
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/4479 | discord-api-docs#4479}
|
||||
* @deprecated This has been removed from the documentation.
|
||||
* {@link https://github.com/discord/discord-api-docs/pull/7779 | discord-api-docs#7779}
|
||||
*/
|
||||
stage_instance?: APIInviteStageInstance;
|
||||
stage_instance?: never;
|
||||
/**
|
||||
* The guild scheduled event data, returned from the `GET /invites/<code>` endpoint when `guild_scheduled_event_id` is a valid guild scheduled event id
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user