glitch-javascript-sdk 3.10.3 → 3.10.4

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/cjs/index.js CHANGED
@@ -39585,6 +39585,29 @@ var Hosting = /** @class */ (function () {
39585
39585
  return Hosting;
39586
39586
  }());
39587
39587
 
39588
+ var GameDesignRoute = /** @class */ (function () {
39589
+ function GameDesignRoute() {
39590
+ }
39591
+ GameDesignRoute.routes = {
39592
+ generateBlueprint: {
39593
+ url: '/tools/game-design/blueprint',
39594
+ method: HTTP_METHODS.POST,
39595
+ },
39596
+ };
39597
+ return GameDesignRoute;
39598
+ }());
39599
+
39600
+ /** Public AI-assisted tools for turning an early game idea into testable design documentation. */
39601
+ var GameDesign = /** @class */ (function () {
39602
+ function GameDesign() {
39603
+ }
39604
+ /** Generate a mechanics and core-loop blueprint without requiring authentication. */
39605
+ GameDesign.generateBlueprint = function (input) {
39606
+ return Requests.processRoute(GameDesignRoute.routes.generateBlueprint, input);
39607
+ };
39608
+ return GameDesign;
39609
+ }());
39610
+
39588
39611
  var Parser = /** @class */ (function () {
39589
39612
  function Parser() {
39590
39613
  }
@@ -40136,6 +40159,7 @@ var Glitch = /** @class */ (function () {
40136
40159
  MarketResearch: MarketResearch,
40137
40160
  GameAdvertising: GameAdvertising,
40138
40161
  Hosting: Hosting,
40162
+ GameDesign: GameDesign,
40139
40163
  };
40140
40164
  Glitch.util = {
40141
40165
  Requests: Requests,