diff --git a/deno/payloads/v8/invite.ts b/deno/payloads/v8/invite.ts index d77cc054..93404dbf 100644 --- a/deno/payloads/v8/invite.ts +++ b/deno/payloads/v8/invite.ts @@ -62,7 +62,7 @@ export interface APIInvite { /** * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` */ - expires_at?: string; + expires_at?: string | null; } /** diff --git a/payloads/v8/invite.ts b/payloads/v8/invite.ts index afdbd5ce..2a8f7683 100644 --- a/payloads/v8/invite.ts +++ b/payloads/v8/invite.ts @@ -62,7 +62,7 @@ export interface APIInvite { /** * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` */ - expires_at?: string; + expires_at?: string | null; } /**