@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/{chunk-6KNGLDLL.mjs → chunk-UXTUWVQB.mjs} +1 -1
- package/dist/{chunk-6KNGLDLL.mjs.map → chunk-UXTUWVQB.mjs.map} +1 -1
- package/dist/{chunk-Z6IM4DWX.mjs → chunk-YJSJHGZT.mjs} +7 -3
- package/dist/{chunk-Z6IM4DWX.mjs.map → chunk-YJSJHGZT.mjs.map} +1 -1
- package/dist/graphql/index.cjs +6 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +6 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{post-Bw5yGyLM.d.ts → post-B3XIgDei.d.ts} +1 -0
- package/dist/{post-AUQDjZoJ.d.mts → post-WSgS-zIK.d.mts} +1 -0
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +1 -1
package/dist/graphql/index.cjs
CHANGED
|
@@ -3839,8 +3839,12 @@ var START_GAME_MUTATION = import_client64.gql`
|
|
|
3839
3839
|
${GAME_DOC_FIELDS_FRAGMENT}
|
|
3840
3840
|
`;
|
|
3841
3841
|
var LEAVE_GAME_MUTATION = import_client64.gql`
|
|
3842
|
-
mutation leaveGame(
|
|
3843
|
-
|
|
3842
|
+
mutation leaveGame(
|
|
3843
|
+
$_id: ID!
|
|
3844
|
+
$gameType: GameTypeEnumType!
|
|
3845
|
+
$gameTypeId: ID!
|
|
3846
|
+
) {
|
|
3847
|
+
leaveGame(_id: $_id, gameType: $gameType, gameTypeId: $gameTypeId)
|
|
3844
3848
|
}
|
|
3845
3849
|
`;
|
|
3846
3850
|
var UPDATE_DAILY_CLUE_MUTATION = import_client64.gql`
|