@timardex/cluemart-shared 1.5.564 → 1.5.567

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/index.d.mts CHANGED
@@ -1163,6 +1163,7 @@ type BaseGameMap = {
1163
1163
  };
1164
1164
  type BaseGameType = {
1165
1165
  gameType: EnumGameType;
1166
+ gameTypeId: string;
1166
1167
  } & {
1167
1168
  [K in keyof BaseGameMap]?: BaseGameMap[K] | null;
1168
1169
  };
@@ -1193,6 +1194,7 @@ type GameType = {
1193
1194
  gameData: GameDataType;
1194
1195
  gameHistory: GameHistory[] | null;
1195
1196
  gameType: EnumGameType;
1197
+ gameTypeId: string;
1196
1198
  updatedAt: Date | null;
1197
1199
  };
1198
1200
  type GameDocType = {
package/dist/index.d.ts CHANGED
@@ -1163,6 +1163,7 @@ type BaseGameMap = {
1163
1163
  };
1164
1164
  type BaseGameType = {
1165
1165
  gameType: EnumGameType;
1166
+ gameTypeId: string;
1166
1167
  } & {
1167
1168
  [K in keyof BaseGameMap]?: BaseGameMap[K] | null;
1168
1169
  };
@@ -1193,6 +1194,7 @@ type GameType = {
1193
1194
  gameData: GameDataType;
1194
1195
  gameHistory: GameHistory[] | null;
1195
1196
  gameType: EnumGameType;
1197
+ gameTypeId: string;
1196
1198
  updatedAt: Date | null;
1197
1199
  };
1198
1200
  type GameDocType = {
package/dist/index.mjs CHANGED
@@ -5785,6 +5785,7 @@ var GAME_FIELDS_FRAGMENT = gql29`
5785
5785
  ...GameHistoryFields
5786
5786
  }
5787
5787
  gameType
5788
+ gameTypeId
5788
5789
  updatedAt
5789
5790
  }
5790
5791
  ${GAME_DATA_FIELDS_FRAGMENT}
@@ -5843,6 +5844,7 @@ var GET_GAME_LEADERBOARD = gql29`
5843
5844
  // src/graphql/queries/post.ts
5844
5845
  var BASE_GAME_FIELDS_FRAGMENT = gql30`
5845
5846
  fragment BaseGameFields on BaseGameType {
5847
+ gameTypeId
5846
5848
  gameType
5847
5849
  dailyClue {
5848
5850
  ...DailyClueBaseGameFields