@kekkle/shared 1.3.0 → 1.3.1

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.
@@ -1,6 +1,6 @@
1
1
  import type { StringifiedWordleGameState } from "./wordle-game-state";
2
2
  import type { Timestamp } from "firebase-admin/firestore";
3
- export type WorldeGameStateDocument = {
3
+ export type WordleGameStateDocument = {
4
4
  calculated_score: number;
5
5
  game_state: StringifiedWordleGameState;
6
6
  has_finished: boolean;
@@ -1,6 +1,6 @@
1
1
  import type { StringifiedWordleGameState } from "./wordle-game-state";
2
2
  import type { Timestamp } from "firebase-admin/firestore";
3
- export type WorldeGameStateDocument = {
3
+ export type WordleGameStateDocument = {
4
4
  calculated_score: number;
5
5
  game_state: StringifiedWordleGameState;
6
6
  has_finished: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kekkle/shared",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Shared logic and types for Kekkle frontend and functions",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,7 +1,7 @@
1
1
  import type { StringifiedWordleGameState } from "./wordle-game-state";
2
2
  import type { Timestamp } from "firebase-admin/firestore";
3
3
 
4
- export type WorldeGameStateDocument = {
4
+ export type WordleGameStateDocument = {
5
5
  calculated_score: number;
6
6
  game_state: StringifiedWordleGameState;
7
7
  has_finished: boolean;