@timardex/cluemart-shared 1.5.634 → 1.5.636

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.
Files changed (44) hide show
  1. package/dist/{chunk-SBY5HTAP.mjs → chunk-HV5AID7P.mjs} +7 -2
  2. package/dist/chunk-HV5AID7P.mjs.map +1 -0
  3. package/dist/{chunk-RJRBWUHN.mjs → chunk-NMN2GAEP.mjs} +16 -7
  4. package/dist/chunk-NMN2GAEP.mjs.map +1 -0
  5. package/dist/{chunk-OSUWKCUI.mjs → chunk-OQ2LW6LO.mjs} +2 -2
  6. package/dist/{chunk-4XOVXJUN.mjs → chunk-SGJJVETR.mjs} +2 -2
  7. package/dist/{dailyClue-BnlktK68.d.mts → dailyClue-D7Df-qCO.d.mts} +5 -1
  8. package/dist/{dailyClue-BnlktK68.d.ts → dailyClue-D7Df-qCO.d.ts} +5 -1
  9. package/dist/formFields/index.cjs +6 -1
  10. package/dist/formFields/index.cjs.map +1 -1
  11. package/dist/formFields/index.mjs +3 -3
  12. package/dist/graphql/index.cjs +15 -6
  13. package/dist/graphql/index.cjs.map +1 -1
  14. package/dist/graphql/index.d.mts +2 -2
  15. package/dist/graphql/index.d.ts +2 -2
  16. package/dist/graphql/index.mjs +1 -1
  17. package/dist/hooks/index.cjs +21 -7
  18. package/dist/hooks/index.cjs.map +1 -1
  19. package/dist/hooks/index.d.mts +2 -2
  20. package/dist/hooks/index.d.ts +2 -2
  21. package/dist/hooks/index.mjs +4 -4
  22. package/dist/index.cjs +21 -7
  23. package/dist/index.cjs.map +1 -1
  24. package/dist/index.d.mts +5 -1
  25. package/dist/index.d.ts +5 -1
  26. package/dist/index.mjs +21 -7
  27. package/dist/index.mjs.map +1 -1
  28. package/dist/{post-DUUhy0Rd.d.mts → post-CnUaLo8U.d.mts} +1 -1
  29. package/dist/{post-BPn_I16W.d.ts → post-DNAoYkrb.d.ts} +1 -1
  30. package/dist/types/index.cjs +6 -1
  31. package/dist/types/index.cjs.map +1 -1
  32. package/dist/types/index.d.mts +2 -2
  33. package/dist/types/index.d.ts +2 -2
  34. package/dist/types/index.mjs +1 -1
  35. package/dist/utils/index.cjs +6 -1
  36. package/dist/utils/index.cjs.map +1 -1
  37. package/dist/utils/index.d.mts +1 -1
  38. package/dist/utils/index.d.ts +1 -1
  39. package/dist/utils/index.mjs +2 -2
  40. package/package.json +1 -1
  41. package/dist/chunk-RJRBWUHN.mjs.map +0 -1
  42. package/dist/chunk-SBY5HTAP.mjs.map +0 -1
  43. /package/dist/{chunk-OSUWKCUI.mjs.map → chunk-OQ2LW6LO.mjs.map} +0 -0
  44. /package/dist/{chunk-4XOVXJUN.mjs.map → chunk-SGJJVETR.mjs.map} +0 -0
package/dist/index.d.mts CHANGED
@@ -1073,7 +1073,11 @@ declare const gameScreenIdentifierList: readonly [{
1073
1073
  readonly id: "events-near-me";
1074
1074
  readonly match: "/events/events-near-me";
1075
1075
  }, {
1076
- readonly clue: "A collection of things worth attending.";
1076
+ readonly clue: "Where events appear as pins on a map.";
1077
+ readonly id: "events-map";
1078
+ readonly match: "/events/events-map";
1079
+ }, {
1080
+ readonly clue: "A collection of events worth attending.";
1077
1081
  readonly id: "events";
1078
1082
  readonly match: "/events";
1079
1083
  }, {
package/dist/index.d.ts CHANGED
@@ -1073,7 +1073,11 @@ declare const gameScreenIdentifierList: readonly [{
1073
1073
  readonly id: "events-near-me";
1074
1074
  readonly match: "/events/events-near-me";
1075
1075
  }, {
1076
- readonly clue: "A collection of things worth attending.";
1076
+ readonly clue: "Where events appear as pins on a map.";
1077
+ readonly id: "events-map";
1078
+ readonly match: "/events/events-map";
1079
+ }, {
1080
+ readonly clue: "A collection of events worth attending.";
1077
1081
  readonly id: "events";
1078
1082
  readonly match: "/events";
1079
1083
  }, {
package/dist/index.mjs CHANGED
@@ -469,7 +469,12 @@ var gameScreenIdentifierList = [
469
469
  match: "/events/events-near-me"
470
470
  },
471
471
  {
472
- clue: "A collection of things worth attending.",
472
+ clue: "Where events appear as pins on a map.",
473
+ id: "events-map",
474
+ match: "/events/events-map"
475
+ },
476
+ {
477
+ clue: "A collection of events worth attending.",
473
478
  id: "events",
474
479
  match: "/events"
475
480
  },
@@ -2897,7 +2902,10 @@ var GET_EVENT_BY_PLACE_ID = gql3`
2897
2902
  ${EVENT_LIST_ITEM}
2898
2903
  `;
2899
2904
  var GET_EVENTS_BY_REGION = gql3`
2900
- query getEventsByRegion($region: String!, $options: EventsByRegionOptions) {
2905
+ query getEventsByRegion(
2906
+ $region: String!
2907
+ $options: ResourcesByRegionOptions
2908
+ ) {
2901
2909
  eventsByRegion(region: $region, options: $options) {
2902
2910
  ...EventListItemFields
2903
2911
  }
@@ -2905,7 +2913,7 @@ var GET_EVENTS_BY_REGION = gql3`
2905
2913
  ${EVENT_LIST_ITEM}
2906
2914
  `;
2907
2915
  var SEARCH_EVENTS = gql3`
2908
- query searchEvents($region: String, $search: String,$tags: [String]) {
2916
+ query searchEvents($region: String, $search: String, $tags: [String]) {
2909
2917
  eventsSearch(region: $region, search: $search, tags: $tags) {
2910
2918
  ...EventListItemFields
2911
2919
  }
@@ -3132,8 +3140,11 @@ var GET_VENDOR = gql4`
3132
3140
  ${VENDOR}
3133
3141
  `;
3134
3142
  var GET_VENDORS_BY_REGION = gql4`
3135
- query getVendorsByRegion($region: String!) {
3136
- vendorsByRegion(region: $region) {
3143
+ query getVendorsByRegion(
3144
+ $region: String!
3145
+ $options: ResourcesByRegionOptions
3146
+ ) {
3147
+ vendorsByRegion(region: $region, options: $options) {
3137
3148
  ...VendorFields
3138
3149
  }
3139
3150
  }
@@ -3805,8 +3816,11 @@ var GET_PARTNER = gql11`
3805
3816
  ${PARTNER}
3806
3817
  `;
3807
3818
  var GET_PARTNERS_BY_REGION = gql11`
3808
- query getPartnersByRegion($region: String!) {
3809
- partnersByRegion(region: $region) {
3819
+ query getPartnersByRegion(
3820
+ $region: String!
3821
+ $options: ResourcesByRegionOptions
3822
+ ) {
3823
+ partnersByRegion(region: $region, options: $options) {
3810
3824
  ...PartnerFields
3811
3825
  }
3812
3826
  }