@timardex/cluemart-shared 1.2.82 → 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.
- package/dist/ad-CqM1Bzc5.d.ts +149 -0
- package/dist/ad-DjFdNVhH.d.mts +149 -0
- package/dist/chunk-ZQCAF7JE.mjs +58 -0
- package/dist/chunk-ZQCAF7JE.mjs.map +1 -0
- package/dist/formFields/index.cjs +10 -4
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +10 -4
- package/dist/formFields/index.mjs.map +1 -1
- package/dist/graphql/index.cjs +56 -5
- 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 +56 -5
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +129 -32
- 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 +109 -34
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +201 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +69 -3
- package/dist/index.d.ts +69 -3
- package/dist/index.mjs +198 -41
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs +31 -2
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +9 -3
- package/dist/types/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/ad-D48NnhkT.d.mts +0 -83
- package/dist/ad-DO7Bc9PE.d.ts +0 -83
- package/dist/chunk-ILRVLTWY.mjs +0 -32
- package/dist/chunk-ILRVLTWY.mjs.map +0 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -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-
|
|
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: () => {
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -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-
|
|
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: () => {
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -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
|
-
|
|
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
|
-
${
|
|
2055
|
+
${TESTER_VENDOR_FIELDS_FRAGMENT}
|
|
2056
|
+
${TESTER_EVENT_FIELDS_FRAGMENT}
|
|
2006
2057
|
`;
|
|
2007
2058
|
var GET_TESTERS = gql21`
|
|
2008
2059
|
query getTesters {
|