From 1105a7e4940a6d65a0d634afd694677e0867ca0b Mon Sep 17 00:00:00 2001 From: Commonly <51011212+commonly-ts@users.noreply.github.com> Date: Sun, 16 Nov 2025 13:55:29 +1300 Subject: [PATCH] Make duration optional in GameJoinRestriction interface --- src/types/universes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/universes.ts b/src/types/universes.ts index 173fc22..c1e4567 100644 --- a/src/types/universes.ts +++ b/src/types/universes.ts @@ -86,7 +86,7 @@ export interface SpeechAssetResponse extends SpeechAssetOperation { export interface GameJoinRestriction { active: boolean; - duration: string; + duration?: string; privateReason: string; displayReason: string; excludeAltAccounts: boolean;