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.
package/dist/index.d.ts
CHANGED
|
@@ -11774,7 +11774,10 @@ type GameDesignPlayMode = 'single-player' | 'cooperative' | 'competitive multipl
|
|
|
11774
11774
|
type GameDesignSessionLength = '5–10 minute' | '15–30 minute' | '30–60 minute' | 'open-ended';
|
|
11775
11775
|
interface GameDesignBlueprintInput {
|
|
11776
11776
|
gameName?: string;
|
|
11777
|
-
|
|
11777
|
+
/** Primary deterministic fallback profile retained for older clients. */
|
|
11778
|
+
genre?: GameDesignGenre;
|
|
11779
|
+
/** Exact genre names selected from Utility.listGenres(). */
|
|
11780
|
+
genres?: string[];
|
|
11778
11781
|
playMode: GameDesignPlayMode;
|
|
11779
11782
|
sessionLength: GameDesignSessionLength;
|
|
11780
11783
|
playerFantasy: string;
|
package/package.json
CHANGED
package/src/api/GameDesign.ts
CHANGED
|
@@ -33,7 +33,10 @@ export type GameDesignSessionLength =
|
|
|
33
33
|
|
|
34
34
|
export interface GameDesignBlueprintInput {
|
|
35
35
|
gameName?: string;
|
|
36
|
-
|
|
36
|
+
/** Primary deterministic fallback profile retained for older clients. */
|
|
37
|
+
genre?: GameDesignGenre;
|
|
38
|
+
/** Exact genre names selected from Utility.listGenres(). */
|
|
39
|
+
genres?: string[];
|
|
37
40
|
playMode: GameDesignPlayMode;
|
|
38
41
|
sessionLength: GameDesignSessionLength;
|
|
39
42
|
playerFantasy: string;
|