@timardex/cluemart-shared 1.2.52 → 1.2.53

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.
@@ -309,6 +309,18 @@ var CONTACT_DETAILS_FIELDS_FRAGMENT = import_client2.gql`
309
309
  mobilePhone
310
310
  }
311
311
  `;
312
+ var LOCATION_FIELDS_FRAGMENT = import_client2.gql`
313
+ fragment LocationFields on LocationType {
314
+ city
315
+ coordinates
316
+ country
317
+ fullAddress
318
+ latitude
319
+ longitude
320
+ region
321
+ type
322
+ }
323
+ `;
312
324
 
313
325
  // src/graphql/queries/event.ts
314
326
  var EVENT_DATETIME_FIELDS_FRAGMENT = import_client3.gql`
@@ -320,18 +332,6 @@ var EVENT_DATETIME_FIELDS_FRAGMENT = import_client3.gql`
320
332
  startTime
321
333
  }
322
334
  `;
323
- var EVENT_LOCATION_FIELDS_FRAGMENT = import_client3.gql`
324
- fragment EventLocationFields on EventLocationType {
325
- city
326
- coordinates
327
- country
328
- fullAddress
329
- latitude
330
- longitude
331
- region
332
- type
333
- }
334
- `;
335
335
  var EVENT_INFO = import_client3.gql`
336
336
  fragment EventInfoFields on EventInfoType {
337
337
  _id
@@ -388,7 +388,7 @@ var EVENT = import_client3.gql`
388
388
  }
389
389
  eventType
390
390
  location {
391
- ...EventLocationFields
391
+ ...LocationFields
392
392
  }
393
393
  logo {
394
394
  ...ResourceImageFields
@@ -422,7 +422,7 @@ var EVENT = import_client3.gql`
422
422
  updatedAt
423
423
  }
424
424
  ${EVENT_DATETIME_FIELDS_FRAGMENT}
425
- ${EVENT_LOCATION_FIELDS_FRAGMENT}
425
+ ${LOCATION_FIELDS_FRAGMENT}
426
426
  ${OWNER_FIELDS_FRAGMENT}
427
427
  ${RESOURCE_IMAGE_FIELDS_FRAGMENT}
428
428
  ${SOCIAL_MEDIA_FIELDS_FRAGMENT}
@@ -1109,7 +1109,7 @@ var PARTNER = import_client16.gql`
1109
1109
  ...ResourceImageFields
1110
1110
  }
1111
1111
  location {
1112
- ...EventLocationFields
1112
+ ...LocationFields
1113
1113
  }
1114
1114
  logo {
1115
1115
  ...ResourceImageFields
@@ -1130,7 +1130,7 @@ var PARTNER = import_client16.gql`
1130
1130
  updatedAt
1131
1131
  }
1132
1132
  ${TERMS_AGREEMENT_FIELDS_FRAGMENT}
1133
- ${EVENT_LOCATION_FIELDS_FRAGMENT}
1133
+ ${LOCATION_FIELDS_FRAGMENT}
1134
1134
  `;
1135
1135
  var GET_PARTNERS = import_client16.gql`
1136
1136
  query getPartners {