@timardex/cluemart-shared 1.5.563 → 1.5.565

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
  };
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
  };
package/dist/index.mjs CHANGED
@@ -5843,6 +5843,7 @@ var GET_GAME_LEADERBOARD = gql29`
5843
5843
  // src/graphql/queries/post.ts
5844
5844
  var BASE_GAME_FIELDS_FRAGMENT = gql30`
5845
5845
  fragment BaseGameFields on BaseGameType {
5846
+ gameTypeId
5846
5847
  gameType
5847
5848
  dailyClue {
5848
5849
  ...DailyClueBaseGameFields
@@ -6117,9 +6118,9 @@ var UPDATE_DAILY_CLUE_MUTATION = gql34`
6117
6118
  var UPDATE_MINI_QUIZ_MUTATION = gql34`
6118
6119
  mutation updateMiniQuizGame(
6119
6120
  $_id: ID!
6120
- $questions: [MiniQuizQuestionInputType!]!
6121
+ $answeredQuestions: [MiniQuizAnsweredQuestionInputType!]!
6121
6122
  ) {
6122
- updateMiniQuizGame(_id: $_id, questions: $questions) {
6123
+ updateMiniQuizGame(_id: $_id, answeredQuestions: $answeredQuestions) {
6123
6124
  ...GameDocFields
6124
6125
  }
6125
6126
  }