@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.
- package/dist/graphql/index.cjs +16 -16
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +16 -16
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2203,6 +2203,18 @@ var CONTACT_DETAILS_FIELDS_FRAGMENT = gql2`
|
|
|
2203
2203
|
mobilePhone
|
|
2204
2204
|
}
|
|
2205
2205
|
`;
|
|
2206
|
+
var LOCATION_FIELDS_FRAGMENT = gql2`
|
|
2207
|
+
fragment LocationFields on LocationType {
|
|
2208
|
+
city
|
|
2209
|
+
coordinates
|
|
2210
|
+
country
|
|
2211
|
+
fullAddress
|
|
2212
|
+
latitude
|
|
2213
|
+
longitude
|
|
2214
|
+
region
|
|
2215
|
+
type
|
|
2216
|
+
}
|
|
2217
|
+
`;
|
|
2206
2218
|
|
|
2207
2219
|
// src/graphql/queries/event.ts
|
|
2208
2220
|
var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
|
|
@@ -2214,18 +2226,6 @@ var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
|
|
|
2214
2226
|
startTime
|
|
2215
2227
|
}
|
|
2216
2228
|
`;
|
|
2217
|
-
var EVENT_LOCATION_FIELDS_FRAGMENT = gql3`
|
|
2218
|
-
fragment EventLocationFields on EventLocationType {
|
|
2219
|
-
city
|
|
2220
|
-
coordinates
|
|
2221
|
-
country
|
|
2222
|
-
fullAddress
|
|
2223
|
-
latitude
|
|
2224
|
-
longitude
|
|
2225
|
-
region
|
|
2226
|
-
type
|
|
2227
|
-
}
|
|
2228
|
-
`;
|
|
2229
2229
|
var EVENT_INFO = gql3`
|
|
2230
2230
|
fragment EventInfoFields on EventInfoType {
|
|
2231
2231
|
_id
|
|
@@ -2282,7 +2282,7 @@ var EVENT = gql3`
|
|
|
2282
2282
|
}
|
|
2283
2283
|
eventType
|
|
2284
2284
|
location {
|
|
2285
|
-
...
|
|
2285
|
+
...LocationFields
|
|
2286
2286
|
}
|
|
2287
2287
|
logo {
|
|
2288
2288
|
...ResourceImageFields
|
|
@@ -2316,7 +2316,7 @@ var EVENT = gql3`
|
|
|
2316
2316
|
updatedAt
|
|
2317
2317
|
}
|
|
2318
2318
|
${EVENT_DATETIME_FIELDS_FRAGMENT}
|
|
2319
|
-
${
|
|
2319
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
2320
2320
|
${OWNER_FIELDS_FRAGMENT}
|
|
2321
2321
|
${RESOURCE_IMAGE_FIELDS_FRAGMENT}
|
|
2322
2322
|
${SOCIAL_MEDIA_FIELDS_FRAGMENT}
|
|
@@ -3003,7 +3003,7 @@ var PARTNER = gql11`
|
|
|
3003
3003
|
...ResourceImageFields
|
|
3004
3004
|
}
|
|
3005
3005
|
location {
|
|
3006
|
-
...
|
|
3006
|
+
...LocationFields
|
|
3007
3007
|
}
|
|
3008
3008
|
logo {
|
|
3009
3009
|
...ResourceImageFields
|
|
@@ -3024,7 +3024,7 @@ var PARTNER = gql11`
|
|
|
3024
3024
|
updatedAt
|
|
3025
3025
|
}
|
|
3026
3026
|
${TERMS_AGREEMENT_FIELDS_FRAGMENT}
|
|
3027
|
-
${
|
|
3027
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
3028
3028
|
`;
|
|
3029
3029
|
var GET_PARTNERS = gql11`
|
|
3030
3030
|
query getPartners {
|