@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/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($_id: ID!, $input: ID!) {
2380
- addParticipantToChat(_id: $_id, input: $input) {
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($_id: ID!, $input: ID!) {
2388
- removeParticipantFromChat(_id: $_id, input: $input) {
2387
+ mutation removeParticipantFromChat($chatId: ID!, $userId: ID!) {
2388
+ removeParticipantFromChat(_id: $chatId, input: $userId) {
2389
2389
  ...ChatFields
2390
2390
  }
2391
2391
  }