@timardex/cluemart-shared 1.2.81 → 1.2.83

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.
@@ -2,7 +2,7 @@ import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.mjs';
3
3
  import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CJRTZROh.mjs';
4
4
  import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-CLsysATK.mjs';
5
- import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-D48NnhkT.mjs';
5
+ import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-DjFdNVhH.mjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  declare const useAdminUpdateResourceType: () => {
@@ -2,7 +2,7 @@ import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.js';
3
3
  import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CVwxvGeC.js';
4
4
  import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-BYQMdxtO.js';
5
- import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-DO7Bc9PE.js';
5
+ import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-CqM1Bzc5.js';
6
6
  import 'react-hook-form';
7
7
 
8
8
  declare const useAdminUpdateResourceType: () => {
@@ -89,6 +89,15 @@ var LICENCE_FIELDS_FRAGMENT = gql2`
89
89
  licenceType
90
90
  }
91
91
  `;
92
+ var EVENT_DATETIME_FIELDS_FRAGMENT = gql2`
93
+ fragment EventDateTimeFields on EventDateTimeType {
94
+ dateStatus
95
+ endDate
96
+ endTime
97
+ startDate
98
+ startTime
99
+ }
100
+ `;
92
101
  var USER_ACTIVITY_FIELDS_FRAGMENT = gql2`
93
102
  fragment UserActivityFields on UserActivityType {
94
103
  favourites {
@@ -214,15 +223,6 @@ var LOCATION_FIELDS_FRAGMENT = gql2`
214
223
  `;
215
224
 
216
225
  // src/graphql/queries/event.ts
217
- var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
218
- fragment EventDateTimeFields on EventDateTimeType {
219
- dateStatus
220
- endDate
221
- endTime
222
- startDate
223
- startTime
224
- }
225
- `;
226
226
  var EVENT_INFO = gql3`
227
227
  fragment EventInfoFields on EventInfoType {
228
228
  _id
@@ -1984,25 +1984,76 @@ import { gql as gql22 } from "@apollo/client";
1984
1984
 
1985
1985
  // src/graphql/queries/tester.ts
1986
1986
  import { gql as gql21 } from "@apollo/client";
1987
+ var TESTER_VENDOR_FIELDS_FRAGMENT = gql21`
1988
+ fragment TesterVendorFields on TesterVendorType {
1989
+ categories {
1990
+ ...CategoryFields
1991
+ }
1992
+ productsOrServices
1993
+ marketsAttended {
1994
+ name
1995
+ city
1996
+ }
1997
+ sellingFrequency
1998
+ yearlySellingApprox
1999
+ questionary {
2000
+ uploadStallProfileFirstWeek
2001
+ applyToAtLeastOneMarket
2002
+ tryVisitorFeatures
2003
+ completeFeedbackQuestionnaire
2004
+ sendPhotoForSocialMedia
2005
+ appearInVideoIntroduction
2006
+ socialMediaFeatureReason
2007
+ excitementAboutApp
2008
+ usefulnessExpectations
2009
+ testingPeriodConcerns
2010
+ }
2011
+ }
2012
+ ${CATEGORY_FIELDS_FRAGMENT}
2013
+ `;
2014
+ var TESTER_EVENT_FIELDS_FRAGMENT = gql21`
2015
+ fragment TesterEventFields on TesterEventType {
2016
+ organizedMarketCount
2017
+ markets {
2018
+ name
2019
+ cityOrVenue
2020
+ frequency
2021
+ averageStallCount
2022
+ }
2023
+ registerMarketsFirstWeek
2024
+ inviteAtLeastFiveStallholders
2025
+ manageApplicationsAndCommunication
2026
+ completeFinalQuestionnaire
2027
+ allowMarketingAppearance
2028
+ organizerExpectations
2029
+ dailyCoordinationNeeds
2030
+ interestedInCharityInitiative
2031
+ }
2032
+ `;
1987
2033
  var TESTER_FIELDS_FRAGMENT = gql21`
1988
2034
  fragment TesterFields on TesterType {
1989
2035
  _id
1990
2036
  active
1991
2037
  approved
1992
- categories {
1993
- ...CategoryFields
1994
- }
1995
- companyName
2038
+ businessName
1996
2039
  createdAt
1997
2040
  email
1998
2041
  firstName
1999
2042
  lastName
2043
+ mobilePhone
2000
2044
  osType
2001
2045
  region
2002
2046
  resourceType
2003
2047
  updatedAt
2048
+ vendor {
2049
+ ...TesterVendorFields
2050
+ }
2051
+ event {
2052
+ ...TesterEventFields
2053
+ }
2004
2054
  }
2005
- ${CATEGORY_FIELDS_FRAGMENT}
2055
+ ${TESTER_VENDOR_FIELDS_FRAGMENT}
2056
+ ${TESTER_EVENT_FIELDS_FRAGMENT}
2006
2057
  `;
2007
2058
  var GET_TESTERS = gql21`
2008
2059
  query getTesters {