@timardex/cluemart-shared 1.5.551 → 1.5.553
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/{chunk-ZOPHRV6M.mjs → chunk-7CMDXCQI.mjs} +14 -2
- package/dist/chunk-7CMDXCQI.mjs.map +1 -0
- package/dist/{chunk-OVEYADVZ.mjs → chunk-IMTMBZI7.mjs} +2 -2
- package/dist/{chunk-DYUATO2Z.mjs → chunk-L74HNX7U.mjs} +2 -2
- package/dist/{chunk-5LODYRBR.mjs → chunk-SBY5HTAP.mjs} +2 -13
- package/dist/chunk-SBY5HTAP.mjs.map +1 -0
- package/dist/{chunk-SUCEE4LU.mjs → chunk-VG2GTCY7.mjs} +2 -2
- package/dist/{chunk-SUCEE4LU.mjs.map → chunk-VG2GTCY7.mjs.map} +1 -1
- package/dist/{dailyClue-CvOPk6am.d.mts → dailyClue-BFo8YN7B.d.mts} +7 -6
- package/dist/{dailyClue-CvOPk6am.d.ts → dailyClue-BFo8YN7B.d.ts} +7 -6
- package/dist/formFields/index.cjs +0 -3
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +3 -3
- package/dist/graphql/index.cjs +1 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +1 -4
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.mjs +5 -5
- package/dist/index.cjs +11 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +10 -7
- package/dist/index.d.ts +10 -7
- package/dist/index.mjs +11 -10
- package/dist/index.mjs.map +1 -1
- package/dist/{post-B941IgWP.d.ts → post-D9v4eViK.d.ts} +4 -2
- package/dist/{post-C3L-bejc.d.mts → post-DFLgP4SQ.d.mts} +4 -2
- package/dist/types/index.cjs +7 -6
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.mjs +6 -6
- package/dist/utils/index.cjs +0 -3
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-5LODYRBR.mjs.map +0 -1
- package/dist/chunk-ZOPHRV6M.mjs.map +0 -1
- /package/dist/{chunk-OVEYADVZ.mjs.map → chunk-IMTMBZI7.mjs.map} +0 -0
- /package/dist/{chunk-DYUATO2Z.mjs.map → chunk-L74HNX7U.mjs.map} +0 -0
|
@@ -5,6 +5,11 @@ type GameDate = {
|
|
|
5
5
|
startDate: Date;
|
|
6
6
|
endDate: Date;
|
|
7
7
|
};
|
|
8
|
+
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
9
|
+
type GlobalGameData = {
|
|
10
|
+
points: number;
|
|
11
|
+
streak: number;
|
|
12
|
+
};
|
|
8
13
|
|
|
9
14
|
declare const gameScreenIdentifierList: readonly [{
|
|
10
15
|
readonly clue: "Where your actions turn into a timeline.";
|
|
@@ -81,16 +86,13 @@ declare const gameScreenIdentifierList: readonly [{
|
|
|
81
86
|
}];
|
|
82
87
|
type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
|
|
83
88
|
type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
|
|
84
|
-
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
85
89
|
type DailyClueBaseGame = {
|
|
86
90
|
gameDate: GameDate;
|
|
87
91
|
gameSolution: string;
|
|
88
|
-
gameType: EnumGameType;
|
|
89
92
|
};
|
|
90
|
-
type DailyClueGameData = {
|
|
93
|
+
type DailyClueGameData = GlobalGameData & {
|
|
91
94
|
gameFields: DailyClueBaseGame;
|
|
92
95
|
lastFoundDate: Date | null;
|
|
93
|
-
points: number;
|
|
94
96
|
letterInfo: {
|
|
95
97
|
collected: string[] | null;
|
|
96
98
|
solutionShuffled: string[];
|
|
@@ -98,7 +100,6 @@ type DailyClueGameData = {
|
|
|
98
100
|
todaysLetter: string | null;
|
|
99
101
|
todaysPlacement: GamePlacement | null;
|
|
100
102
|
};
|
|
101
|
-
streak: number;
|
|
102
103
|
};
|
|
103
104
|
|
|
104
|
-
export { type DailyClueBaseGame as D, EnumGameType as E, type GameDate as G, type DailyClueGameData as a, type GamePlacement as b, type GamePlacementClue as c,
|
|
105
|
+
export { type DailyClueBaseGame as D, EnumGameType as E, type GameDate as G, type DailyClueGameData as a, type GamePlacement as b, type GamePlacementClue as c, type GlobalGameData as d, gameTypeToDisplayName as e, gameScreenIdentifierList as g };
|
|
@@ -5,6 +5,11 @@ type GameDate = {
|
|
|
5
5
|
startDate: Date;
|
|
6
6
|
endDate: Date;
|
|
7
7
|
};
|
|
8
|
+
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
9
|
+
type GlobalGameData = {
|
|
10
|
+
points: number;
|
|
11
|
+
streak: number;
|
|
12
|
+
};
|
|
8
13
|
|
|
9
14
|
declare const gameScreenIdentifierList: readonly [{
|
|
10
15
|
readonly clue: "Where your actions turn into a timeline.";
|
|
@@ -81,16 +86,13 @@ declare const gameScreenIdentifierList: readonly [{
|
|
|
81
86
|
}];
|
|
82
87
|
type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
|
|
83
88
|
type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
|
|
84
|
-
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
85
89
|
type DailyClueBaseGame = {
|
|
86
90
|
gameDate: GameDate;
|
|
87
91
|
gameSolution: string;
|
|
88
|
-
gameType: EnumGameType;
|
|
89
92
|
};
|
|
90
|
-
type DailyClueGameData = {
|
|
93
|
+
type DailyClueGameData = GlobalGameData & {
|
|
91
94
|
gameFields: DailyClueBaseGame;
|
|
92
95
|
lastFoundDate: Date | null;
|
|
93
|
-
points: number;
|
|
94
96
|
letterInfo: {
|
|
95
97
|
collected: string[] | null;
|
|
96
98
|
solutionShuffled: string[];
|
|
@@ -98,7 +100,6 @@ type DailyClueGameData = {
|
|
|
98
100
|
todaysLetter: string | null;
|
|
99
101
|
todaysPlacement: GamePlacement | null;
|
|
100
102
|
};
|
|
101
|
-
streak: number;
|
|
102
103
|
};
|
|
103
104
|
|
|
104
|
-
export { type DailyClueBaseGame as D, EnumGameType as E, type GameDate as G, type DailyClueGameData as a, type GamePlacement as b, type GamePlacementClue as c,
|
|
105
|
+
export { type DailyClueBaseGame as D, EnumGameType as E, type GameDate as G, type DailyClueGameData as a, type GamePlacement as b, type GamePlacementClue as c, type GlobalGameData as d, gameTypeToDisplayName as e, gameScreenIdentifierList as g };
|