@timardex/cluemart-shared 1.1.2 → 1.1.3
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 -4
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +4 -4
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2376,16 +2376,16 @@ var DELETE_CHAT_MUTATION = gql7`
|
|
|
2376
2376
|
}
|
|
2377
2377
|
`;
|
|
2378
2378
|
var ADD_PARTICIPANT_TO_CHAT_MUTATION = gql7`
|
|
2379
|
-
mutation addParticipantToChat($
|
|
2380
|
-
addParticipantToChat(_id: $
|
|
2379
|
+
mutation addParticipantToChat($chatId: ID!, $userId: ID!) {
|
|
2380
|
+
addParticipantToChat(_id: $chatId, input: $userId) {
|
|
2381
2381
|
...ChatFields
|
|
2382
2382
|
}
|
|
2383
2383
|
}
|
|
2384
2384
|
${CHAT_FIELDS_FRAGMENT}
|
|
2385
2385
|
`;
|
|
2386
2386
|
var REMOVE_PARTICIPANT_FROM_CHAT_MUTATION = gql7`
|
|
2387
|
-
mutation removeParticipantFromChat($
|
|
2388
|
-
removeParticipantFromChat(_id: $
|
|
2387
|
+
mutation removeParticipantFromChat($chatId: ID!, $userId: ID!) {
|
|
2388
|
+
removeParticipantFromChat(_id: $chatId, input: $userId) {
|
|
2389
2389
|
...ChatFields
|
|
2390
2390
|
}
|
|
2391
2391
|
}
|