@timardex/cluemart-shared 1.2.51 → 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.
package/dist/index.cjs CHANGED
@@ -2451,6 +2451,18 @@ var CONTACT_DETAILS_FIELDS_FRAGMENT = import_client2.gql`
2451
2451
  mobilePhone
2452
2452
  }
2453
2453
  `;
2454
+ var LOCATION_FIELDS_FRAGMENT = import_client2.gql`
2455
+ fragment LocationFields on LocationType {
2456
+ city
2457
+ coordinates
2458
+ country
2459
+ fullAddress
2460
+ latitude
2461
+ longitude
2462
+ region
2463
+ type
2464
+ }
2465
+ `;
2454
2466
 
2455
2467
  // src/graphql/queries/event.ts
2456
2468
  var EVENT_DATETIME_FIELDS_FRAGMENT = import_client3.gql`
@@ -2462,18 +2474,6 @@ var EVENT_DATETIME_FIELDS_FRAGMENT = import_client3.gql`
2462
2474
  startTime
2463
2475
  }
2464
2476
  `;
2465
- var EVENT_LOCATION_FIELDS_FRAGMENT = import_client3.gql`
2466
- fragment EventLocationFields on EventLocationType {
2467
- city
2468
- coordinates
2469
- country
2470
- fullAddress
2471
- latitude
2472
- longitude
2473
- region
2474
- type
2475
- }
2476
- `;
2477
2477
  var EVENT_INFO = import_client3.gql`
2478
2478
  fragment EventInfoFields on EventInfoType {
2479
2479
  _id
@@ -2530,7 +2530,7 @@ var EVENT = import_client3.gql`
2530
2530
  }
2531
2531
  eventType
2532
2532
  location {
2533
- ...EventLocationFields
2533
+ ...LocationFields
2534
2534
  }
2535
2535
  logo {
2536
2536
  ...ResourceImageFields
@@ -2564,7 +2564,7 @@ var EVENT = import_client3.gql`
2564
2564
  updatedAt
2565
2565
  }
2566
2566
  ${EVENT_DATETIME_FIELDS_FRAGMENT}
2567
- ${EVENT_LOCATION_FIELDS_FRAGMENT}
2567
+ ${LOCATION_FIELDS_FRAGMENT}
2568
2568
  ${OWNER_FIELDS_FRAGMENT}
2569
2569
  ${RESOURCE_IMAGE_FIELDS_FRAGMENT}
2570
2570
  ${SOCIAL_MEDIA_FIELDS_FRAGMENT}
@@ -3251,7 +3251,7 @@ var PARTNER = import_client16.gql`
3251
3251
  ...ResourceImageFields
3252
3252
  }
3253
3253
  location {
3254
- ...EventLocationFields
3254
+ ...LocationFields
3255
3255
  }
3256
3256
  logo {
3257
3257
  ...ResourceImageFields
@@ -3272,7 +3272,7 @@ var PARTNER = import_client16.gql`
3272
3272
  updatedAt
3273
3273
  }
3274
3274
  ${TERMS_AGREEMENT_FIELDS_FRAGMENT}
3275
- ${EVENT_LOCATION_FIELDS_FRAGMENT}
3275
+ ${LOCATION_FIELDS_FRAGMENT}
3276
3276
  `;
3277
3277
  var GET_PARTNERS = import_client16.gql`
3278
3278
  query getPartners {