fix(poll): mark expiry as nullable (#1576)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Almeida
2026-03-19 11:08:37 +00:00
committed by GitHub
parent cf6476dc8a
commit dea22dc487
4 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
/**
* The time when the poll ends (IS08601 timestamp)
*/
expiry: string;
expiry: string | null;
/**
* The results of the poll
*/

View File

@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
/**
* The time when the poll ends (IS08601 timestamp)
*/
expiry: string;
expiry: string | null;
/**
* The results of the poll
*/

View File

@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
/**
* The time when the poll ends (IS08601 timestamp)
*/
expiry: string;
expiry: string | null;
/**
* The results of the poll
*/

View File

@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
/**
* The time when the poll ends (IS08601 timestamp)
*/
expiry: string;
expiry: string | null;
/**
* The results of the poll
*/