glitch-javascript-sdk 3.10.4 → 3.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,10 @@ export type GameDesignPlayMode = 'single-player' | 'cooperative' | 'competitive
5
5
  export type GameDesignSessionLength = '5–10 minute' | '15–30 minute' | '30–60 minute' | 'open-ended';
6
6
  export interface GameDesignBlueprintInput {
7
7
  gameName?: string;
8
- genre: GameDesignGenre;
8
+ /** Primary deterministic fallback profile retained for older clients. */
9
+ genre?: GameDesignGenre;
10
+ /** Exact genre names selected from Utility.listGenres(). */
11
+ genres?: string[];
9
12
  playMode: GameDesignPlayMode;
10
13
  sessionLength: GameDesignSessionLength;
11
14
  playerFantasy: string;