@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/{ad-C98yzFdy.d.mts → ad-Bo9PwPRD.d.mts} +2 -0
- package/dist/{ad-CPL59gj7.d.ts → ad-CBsFDjHz.d.ts} +2 -0
- package/dist/graphql/index.cjs +16 -16
- 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 +16 -16
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +16 -16
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/graphql/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _apollo_client from '@apollo/client';
|
|
|
2
2
|
import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-BjvoQkGD.js';
|
|
3
3
|
import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType } from '../global-dQyePynY.js';
|
|
4
4
|
import { EnumResourceType } from '../enums/index.js';
|
|
5
|
-
import { T as TesterType, U as UserType, A as AdType, E as EnumAdStatus, S as SubscriptionStatusData, P as PartnerType } from '../ad-
|
|
5
|
+
import { T as TesterType, U as UserType, A as AdType, E as EnumAdStatus, S as SubscriptionStatusData, P as PartnerType } from '../ad-CBsFDjHz.js';
|
|
6
6
|
import 'react-hook-form';
|
|
7
7
|
|
|
8
8
|
declare const useAdminUpdateResourceType: () => {
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -189,6 +189,18 @@ var CONTACT_DETAILS_FIELDS_FRAGMENT = gql2`
|
|
|
189
189
|
mobilePhone
|
|
190
190
|
}
|
|
191
191
|
`;
|
|
192
|
+
var LOCATION_FIELDS_FRAGMENT = gql2`
|
|
193
|
+
fragment LocationFields on LocationType {
|
|
194
|
+
city
|
|
195
|
+
coordinates
|
|
196
|
+
country
|
|
197
|
+
fullAddress
|
|
198
|
+
latitude
|
|
199
|
+
longitude
|
|
200
|
+
region
|
|
201
|
+
type
|
|
202
|
+
}
|
|
203
|
+
`;
|
|
192
204
|
|
|
193
205
|
// src/graphql/queries/event.ts
|
|
194
206
|
var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
|
|
@@ -200,18 +212,6 @@ var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
|
|
|
200
212
|
startTime
|
|
201
213
|
}
|
|
202
214
|
`;
|
|
203
|
-
var EVENT_LOCATION_FIELDS_FRAGMENT = gql3`
|
|
204
|
-
fragment EventLocationFields on EventLocationType {
|
|
205
|
-
city
|
|
206
|
-
coordinates
|
|
207
|
-
country
|
|
208
|
-
fullAddress
|
|
209
|
-
latitude
|
|
210
|
-
longitude
|
|
211
|
-
region
|
|
212
|
-
type
|
|
213
|
-
}
|
|
214
|
-
`;
|
|
215
215
|
var EVENT_INFO = gql3`
|
|
216
216
|
fragment EventInfoFields on EventInfoType {
|
|
217
217
|
_id
|
|
@@ -268,7 +268,7 @@ var EVENT = gql3`
|
|
|
268
268
|
}
|
|
269
269
|
eventType
|
|
270
270
|
location {
|
|
271
|
-
...
|
|
271
|
+
...LocationFields
|
|
272
272
|
}
|
|
273
273
|
logo {
|
|
274
274
|
...ResourceImageFields
|
|
@@ -302,7 +302,7 @@ var EVENT = gql3`
|
|
|
302
302
|
updatedAt
|
|
303
303
|
}
|
|
304
304
|
${EVENT_DATETIME_FIELDS_FRAGMENT}
|
|
305
|
-
${
|
|
305
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
306
306
|
${OWNER_FIELDS_FRAGMENT}
|
|
307
307
|
${RESOURCE_IMAGE_FIELDS_FRAGMENT}
|
|
308
308
|
${SOCIAL_MEDIA_FIELDS_FRAGMENT}
|
|
@@ -989,7 +989,7 @@ var PARTNER = gql11`
|
|
|
989
989
|
...ResourceImageFields
|
|
990
990
|
}
|
|
991
991
|
location {
|
|
992
|
-
...
|
|
992
|
+
...LocationFields
|
|
993
993
|
}
|
|
994
994
|
logo {
|
|
995
995
|
...ResourceImageFields
|
|
@@ -1010,7 +1010,7 @@ var PARTNER = gql11`
|
|
|
1010
1010
|
updatedAt
|
|
1011
1011
|
}
|
|
1012
1012
|
${TERMS_AGREEMENT_FIELDS_FRAGMENT}
|
|
1013
|
-
${
|
|
1013
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
1014
1014
|
`;
|
|
1015
1015
|
var GET_PARTNERS = gql11`
|
|
1016
1016
|
query getPartners {
|