@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.
- package/dist/cjs/types/{worlde-game-state-document.d.ts → wordle-game-state-document.d.ts} +1 -1
- package/dist/esm/types/{worlde-game-state-document.d.ts → wordle-game-state-document.d.ts} +1 -1
- package/package.json +1 -1
- package/src/types/{worlde-game-state-document.ts → wordle-game-state-document.ts} +1 -1
- /package/dist/cjs/types/{worlde-game-state-document.js → wordle-game-state-document.js} +0 -0
- /package/dist/esm/types/{worlde-game-state-document.js → wordle-game-state-document.js} +0 -0
|
@@ -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
|
|
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
|
|
3
|
+
export type WordleGameStateDocument = {
|
|
4
4
|
calculated_score: number;
|
|
5
5
|
game_state: StringifiedWordleGameState;
|
|
6
6
|
has_finished: boolean;
|
package/package.json
CHANGED
|
@@ -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
|
|
4
|
+
export type WordleGameStateDocument = {
|
|
5
5
|
calculated_score: number;
|
|
6
6
|
game_state: StringifiedWordleGameState;
|
|
7
7
|
has_finished: boolean;
|
|
File without changes
|
|
File without changes
|