@timardex/cluemart-shared 1.5.712 → 1.5.714
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-H2DRSNAF.mjs → chunk-GHTGWSA3.mjs} +25 -21
- package/dist/chunk-GHTGWSA3.mjs.map +1 -0
- package/dist/graphql/index.cjs +24 -20
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +28 -20
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +5 -1
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +24 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -14
- package/dist/index.d.ts +5 -14
- package/dist/index.mjs +24 -20
- package/dist/index.mjs.map +1 -1
- package/dist/{post-Bq1FtAVA.d.mts → post-BEnFqDy7.d.mts} +6 -15
- package/dist/{post-NzdSDJAT.d.ts → post-qUQ2rGL4.d.ts} +6 -15
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunk-H2DRSNAF.mjs.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -2967,6 +2967,26 @@ var DATETIME_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
2967
2967
|
startTime
|
|
2968
2968
|
}
|
|
2969
2969
|
`;
|
|
2970
|
+
var LOCATION_GEO_FIELDS_FRAGMENT = import_client2.gql`
|
|
2971
|
+
fragment LocationGeoFields on LocationGeoType {
|
|
2972
|
+
coordinates
|
|
2973
|
+
type
|
|
2974
|
+
}
|
|
2975
|
+
`;
|
|
2976
|
+
var LOCATION_FIELDS_FRAGMENT = import_client2.gql`
|
|
2977
|
+
fragment LocationFields on LocationType {
|
|
2978
|
+
city
|
|
2979
|
+
country
|
|
2980
|
+
fullAddress
|
|
2981
|
+
geo {
|
|
2982
|
+
...LocationGeoFields
|
|
2983
|
+
}
|
|
2984
|
+
latitude
|
|
2985
|
+
longitude
|
|
2986
|
+
region
|
|
2987
|
+
}
|
|
2988
|
+
${LOCATION_GEO_FIELDS_FRAGMENT}
|
|
2989
|
+
`;
|
|
2970
2990
|
var USER_ACTIVITY_FIELDS_FRAGMENT = import_client2.gql`
|
|
2971
2991
|
fragment UserActivityFields on UserActivityType {
|
|
2972
2992
|
favourites {
|
|
@@ -3022,6 +3042,9 @@ var USER_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
3022
3042
|
licences {
|
|
3023
3043
|
...LicenceFields
|
|
3024
3044
|
}
|
|
3045
|
+
location {
|
|
3046
|
+
...LocationFields
|
|
3047
|
+
}
|
|
3025
3048
|
partner
|
|
3026
3049
|
overallPoints
|
|
3027
3050
|
platform
|
|
@@ -3043,6 +3066,7 @@ var USER_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
3043
3066
|
${TERMS_AGREEMENT_FIELDS_FRAGMENT}
|
|
3044
3067
|
${USER_ACTIVITY_FIELDS_FRAGMENT}
|
|
3045
3068
|
${LICENCE_FIELDS_FRAGMENT}
|
|
3069
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
3046
3070
|
`;
|
|
3047
3071
|
var STALL_TYPE_FIELDS_FRAGMENT = import_client2.gql`
|
|
3048
3072
|
fragment StallTypeFields on StallTypeType {
|
|
@@ -3079,26 +3103,6 @@ var CONTACT_DETAILS_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
3079
3103
|
mobilePhone
|
|
3080
3104
|
}
|
|
3081
3105
|
`;
|
|
3082
|
-
var LOCATION_GEO_FIELDS_FRAGMENT = import_client2.gql`
|
|
3083
|
-
fragment LocationGeoFields on LocationGeoType {
|
|
3084
|
-
coordinates
|
|
3085
|
-
type
|
|
3086
|
-
}
|
|
3087
|
-
`;
|
|
3088
|
-
var LOCATION_FIELDS_FRAGMENT = import_client2.gql`
|
|
3089
|
-
fragment LocationFields on LocationType {
|
|
3090
|
-
city
|
|
3091
|
-
country
|
|
3092
|
-
fullAddress
|
|
3093
|
-
geo {
|
|
3094
|
-
...LocationGeoFields
|
|
3095
|
-
}
|
|
3096
|
-
latitude
|
|
3097
|
-
longitude
|
|
3098
|
-
region
|
|
3099
|
-
}
|
|
3100
|
-
${LOCATION_GEO_FIELDS_FRAGMENT}
|
|
3101
|
-
`;
|
|
3102
3106
|
var EVENT_LIST_ITEM = import_client2.gql`
|
|
3103
3107
|
fragment EventListItemFields on EventListItemType {
|
|
3104
3108
|
_id
|