@smoregg/sdk 2.3.0 → 2.4.0

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.
@@ -1737,6 +1737,21 @@
1737
1737
  return new ControllerImpl(config ?? {});
1738
1738
  }
1739
1739
 
1740
+ const GAME_CATEGORIES = {
1741
+ "bet": { emoji: "\u{1F3B0}", label: "Betting", labelKo: "\uB0B4\uAE30" },
1742
+ "coop": { emoji: "\u{1F91D}", label: "Co-op", labelKo: "\uD611\uB3D9" },
1743
+ "versus": { emoji: "\u2694\uFE0F", label: "Versus", labelKo: "\uB300\uACB0" },
1744
+ "time-attack": { emoji: "\u23F1\uFE0F", label: "Time Attack", labelKo: "\uD0C0\uC784\uC5B4\uD0DD" },
1745
+ "survival": { emoji: "\u{1F3C3}", label: "Survival", labelKo: "\uC0DD\uC874" },
1746
+ "reflex": { emoji: "\u{1F3AF}", label: "Reflex", labelKo: "\uBC18\uC751\uC18D\uB3C4" },
1747
+ "deception": { emoji: "\u{1F575}\uFE0F", label: "Deception", labelKo: "\uCD94\uB9AC/\uC18D\uC784\uC218" },
1748
+ "creative": { emoji: "\u{1F3A8}", label: "Creative", labelKo: "\uCC3D\uC791" },
1749
+ "party": { emoji: "\u{1F389}", label: "Party", labelKo: "\uD30C\uD2F0" },
1750
+ "puzzle": { emoji: "\u{1F9E9}", label: "Puzzle", labelKo: "\uD37C\uC990" },
1751
+ "board": { emoji: "\u{1F3B2}", label: "Board Game", labelKo: "\uBCF4\uB4DC\uAC8C\uC784" },
1752
+ "strategy": { emoji: "\u{1F9E0}", label: "Strategy", labelKo: "\uC804\uB7B5" },
1753
+ "timing": { emoji: "\u{1F3B5}", label: "Timing", labelKo: "\uD0C0\uC774\uBC0D" }
1754
+ };
1740
1755
  const LifecycleEvent = {
1741
1756
  ALL_READY: "$all-ready",
1742
1757
  CONTROLLER_JOIN: "$controller-join",
@@ -1749,6 +1764,7 @@
1749
1764
  CONNECTION_CHANGE: "$connection-change"
1750
1765
  };
1751
1766
 
1767
+ exports.GAME_CATEGORIES = GAME_CATEGORIES;
1752
1768
  exports.LifecycleEvent = LifecycleEvent;
1753
1769
  exports.SmoreSDKError = SmoreSDKError;
1754
1770
  exports.createController = createController;