Skip to content

Commit

Permalink
chore: update optional props in api type
Browse files Browse the repository at this point in the history
Co-authored-by: DaStormer <40336269+DaStormer@users.noreply.github.com>
  • Loading branch information
zaida04 and DaStormer authored Sep 12, 2022
1 parent 9c66224 commit 21cd4e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/guilded-api-typings/lib/v1/structs/Forum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ export interface ForumTopicPayload {
/** The ID of the webhook who created this forum topic, if it was created by a webhook */
createdByWebhookId?: string;
/** When, if at all, this forum topic was updated */
updatedAt: string;
updatedAt?: string;
/** When, if at all, this forum topic was bumped */
bumpedAt: string;
bumpedAt?: string;
/** Whether this forum topic is pinned */
isPinned: boolean;
isPinned?: boolean;
/** The mentions within this forum topic */
mentions: MentionsPayload;
mentions?: MentionsPayload;
}

export type ForumTopicSummaryPayload = Pick<
Expand Down

0 comments on commit 21cd4e3

Please sign in to comment.