@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.
- package/dist/{chunk-SBY5HTAP.mjs → chunk-HV5AID7P.mjs} +7 -2
- package/dist/chunk-HV5AID7P.mjs.map +1 -0
- package/dist/{chunk-RJRBWUHN.mjs → chunk-NMN2GAEP.mjs} +16 -7
- package/dist/chunk-NMN2GAEP.mjs.map +1 -0
- package/dist/{chunk-OSUWKCUI.mjs → chunk-OQ2LW6LO.mjs} +2 -2
- package/dist/{chunk-4XOVXJUN.mjs → chunk-SGJJVETR.mjs} +2 -2
- package/dist/{dailyClue-BnlktK68.d.mts → dailyClue-D7Df-qCO.d.mts} +5 -1
- package/dist/{dailyClue-BnlktK68.d.ts → dailyClue-D7Df-qCO.d.ts} +5 -1
- package/dist/formFields/index.cjs +6 -1
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +3 -3
- package/dist/graphql/index.cjs +15 -6
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +21 -7
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.mjs +4 -4
- package/dist/index.cjs +21 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +21 -7
- package/dist/index.mjs.map +1 -1
- package/dist/{post-DUUhy0Rd.d.mts → post-CnUaLo8U.d.mts} +1 -1
- package/dist/{post-BPn_I16W.d.ts → post-DNAoYkrb.d.ts} +1 -1
- package/dist/types/index.cjs +6 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.mjs +1 -1
- package/dist/utils/index.cjs +6 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-RJRBWUHN.mjs.map +0 -1
- package/dist/chunk-SBY5HTAP.mjs.map +0 -1
- /package/dist/{chunk-OSUWKCUI.mjs.map → chunk-OQ2LW6LO.mjs.map} +0 -0
- /package/dist/{chunk-4XOVXJUN.mjs.map → chunk-SGJJVETR.mjs.map} +0 -0
|
@@ -43,9 +43,9 @@ import {
|
|
|
43
43
|
vendorStallSize,
|
|
44
44
|
vendorStartDateFields,
|
|
45
45
|
vendorTable
|
|
46
|
-
} from "../chunk-
|
|
47
|
-
import "../chunk-
|
|
48
|
-
import "../chunk-
|
|
46
|
+
} from "../chunk-OQ2LW6LO.mjs";
|
|
47
|
+
import "../chunk-SGJJVETR.mjs";
|
|
48
|
+
import "../chunk-HV5AID7P.mjs";
|
|
49
49
|
import "../chunk-JMOGW4IX.mjs";
|
|
50
50
|
import "../chunk-X4VPNOHX.mjs";
|
|
51
51
|
export {
|
package/dist/graphql/index.cjs
CHANGED
|
@@ -590,7 +590,10 @@ var GET_EVENT_BY_PLACE_ID = import_client3.gql`
|
|
|
590
590
|
${EVENT_LIST_ITEM}
|
|
591
591
|
`;
|
|
592
592
|
var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
593
|
-
query getEventsByRegion(
|
|
593
|
+
query getEventsByRegion(
|
|
594
|
+
$region: String!
|
|
595
|
+
$options: ResourcesByRegionOptions
|
|
596
|
+
) {
|
|
594
597
|
eventsByRegion(region: $region, options: $options) {
|
|
595
598
|
...EventListItemFields
|
|
596
599
|
}
|
|
@@ -598,7 +601,7 @@ var GET_EVENTS_BY_REGION = import_client3.gql`
|
|
|
598
601
|
${EVENT_LIST_ITEM}
|
|
599
602
|
`;
|
|
600
603
|
var SEARCH_EVENTS = import_client3.gql`
|
|
601
|
-
query searchEvents($region: String, $search: String
|
|
604
|
+
query searchEvents($region: String, $search: String, $tags: [String]) {
|
|
602
605
|
eventsSearch(region: $region, search: $search, tags: $tags) {
|
|
603
606
|
...EventListItemFields
|
|
604
607
|
}
|
|
@@ -825,8 +828,11 @@ var GET_VENDOR = import_client4.gql`
|
|
|
825
828
|
${VENDOR}
|
|
826
829
|
`;
|
|
827
830
|
var GET_VENDORS_BY_REGION = import_client4.gql`
|
|
828
|
-
query getVendorsByRegion(
|
|
829
|
-
|
|
831
|
+
query getVendorsByRegion(
|
|
832
|
+
$region: String!
|
|
833
|
+
$options: ResourcesByRegionOptions
|
|
834
|
+
) {
|
|
835
|
+
vendorsByRegion(region: $region, options: $options) {
|
|
830
836
|
...VendorFields
|
|
831
837
|
}
|
|
832
838
|
}
|
|
@@ -1498,8 +1504,11 @@ var GET_PARTNER = import_client16.gql`
|
|
|
1498
1504
|
${PARTNER}
|
|
1499
1505
|
`;
|
|
1500
1506
|
var GET_PARTNERS_BY_REGION = import_client16.gql`
|
|
1501
|
-
query getPartnersByRegion(
|
|
1502
|
-
|
|
1507
|
+
query getPartnersByRegion(
|
|
1508
|
+
$region: String!
|
|
1509
|
+
$options: ResourcesByRegionOptions
|
|
1510
|
+
) {
|
|
1511
|
+
partnersByRegion(region: $region, options: $options) {
|
|
1503
1512
|
...PartnerFields
|
|
1504
1513
|
}
|
|
1505
1514
|
}
|