@timardex/cluemart-shared 1.4.7 → 1.4.8
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/graphql/index.cjs +4 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +4 -1
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/graphql/index.cjs
CHANGED
|
@@ -1225,7 +1225,10 @@ var ADD_PARTICIPANT_TO_CHAT_MUTATION = import_client10.gql`
|
|
|
1225
1225
|
`;
|
|
1226
1226
|
var REMOVE_PARTICIPANT_FROM_CHAT_MUTATION = import_client10.gql`
|
|
1227
1227
|
mutation removeParticipantFromChat($chatId: ID!, $userId: ID!) {
|
|
1228
|
-
removeParticipantFromChat(chatId: $chatId, userId: $userId)
|
|
1228
|
+
removeParticipantFromChat(chatId: $chatId, userId: $userId) {
|
|
1229
|
+
success
|
|
1230
|
+
region
|
|
1231
|
+
}
|
|
1229
1232
|
}
|
|
1230
1233
|
`;
|
|
1231
1234
|
var TOGGLE_CHAT_MESSAGE_LIKE_MUTATION = import_client10.gql`
|