@timardex/cluemart-shared 1.4.89 → 1.4.91

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
@@ -3362,7 +3362,7 @@ var useRemoveParticipantFromChat = () => {
3362
3362
  const region = mutationResult?.data?.removeParticipantFromChat?.region;
3363
3363
  return [
3364
3364
  { query: USER_CHATS },
3365
- { query: GET_CHATS_BY_REGION, variables: { region } }
3365
+ { query: GET_CHATS_BY_REGION, skip: !region, variables: { region } }
3366
3366
  ];
3367
3367
  }
3368
3368
  });
@@ -4174,7 +4174,7 @@ var GET_EVENT_RELATIONS = gql18`
4174
4174
  ${RELATION_FIELDS_FRAGMENT}
4175
4175
  `;
4176
4176
  var GET_VENDOR_RELATIONS = gql18`
4177
- query getVendorRelations($vendorId: ID) {
4177
+ query getVendorRelations($vendorId: ID!) {
4178
4178
  vendorRelations(vendorId: $vendorId) {
4179
4179
  ...RelationFields
4180
4180
  }