@timardex/cluemart-shared 1.5.629 → 1.5.631

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
@@ -1286,6 +1286,7 @@ interface PostFormData {
1286
1286
  } | null;
1287
1287
  tags?: string[] | null;
1288
1288
  title: string;
1289
+ notifyUsers?: boolean | null;
1289
1290
  }
1290
1291
  type CreatePostFormData = CreateFormData<PostFormData>;
1291
1292
  type PostContentType = Omit<PostContentFormData, "contentData"> & {
package/dist/index.d.ts CHANGED
@@ -1286,6 +1286,7 @@ interface PostFormData {
1286
1286
  } | null;
1287
1287
  tags?: string[] | null;
1288
1288
  title: string;
1289
+ notifyUsers?: boolean | null;
1289
1290
  }
1290
1291
  type CreatePostFormData = CreateFormData<PostFormData>;
1291
1292
  type PostContentType = Omit<PostContentFormData, "contentData"> & {
package/dist/index.mjs CHANGED
@@ -6146,8 +6146,12 @@ var START_GAME_MUTATION = gql34`
6146
6146
  ${GAME_DOC_FIELDS_FRAGMENT}
6147
6147
  `;
6148
6148
  var LEAVE_GAME_MUTATION = gql34`
6149
- mutation leaveGame($_id: ID!, $gameType: GameTypeEnumType!) {
6150
- leaveGame(_id: $_id, gameType: $gameType)
6149
+ mutation leaveGame(
6150
+ $_id: ID!
6151
+ $gameType: GameTypeEnumType!
6152
+ $gameTypeId: ID!
6153
+ ) {
6154
+ leaveGame(_id: $_id, gameType: $gameType, gameTypeId: $gameTypeId)
6151
6155
  }
6152
6156
  `;
6153
6157
  var UPDATE_DAILY_CLUE_MUTATION = gql34`