@timardex/cluemart-shared 1.3.26 → 1.3.27
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-V43HKJXJ.mjs → chunk-NYKTZ4MW.mjs} +1 -1
- package/dist/chunk-NYKTZ4MW.mjs.map +1 -0
- package/dist/graphql/index.cjs +2 -2
- 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 +2 -2
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +3 -3
- 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 +4 -4
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/{post-BfPIQ9lI.d.mts → post-D1lCzlMF.d.mts} +4 -4
- package/dist/{post-DWJkRt1q.d.ts → post-DCkOL97o.d.ts} +4 -4
- 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 +1 -1
- package/package.json +1 -1
- package/dist/chunk-V43HKJXJ.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -701,13 +701,13 @@ type TesterEvent = {
|
|
|
701
701
|
questionary: {
|
|
702
702
|
allowMarketingAppearance?: boolean;
|
|
703
703
|
completeFinalQuestionnaire: boolean;
|
|
704
|
-
dailyCoordinationNeeds?: string;
|
|
705
704
|
interestedInCharityInitiative?: boolean;
|
|
706
|
-
|
|
705
|
+
inviteStallholders: boolean;
|
|
707
706
|
manageApplicationsAndCommunication: boolean;
|
|
707
|
+
completeMarketProfileFirstWeek: boolean;
|
|
708
|
+
spaceForClueMart: boolean;
|
|
708
709
|
organizerExpectations?: string;
|
|
709
|
-
|
|
710
|
-
spaceForClueMart?: boolean;
|
|
710
|
+
dailyCoordinationNeeds?: string;
|
|
711
711
|
};
|
|
712
712
|
};
|
|
713
713
|
interface TesterFormData {
|
package/dist/index.d.ts
CHANGED
|
@@ -701,13 +701,13 @@ type TesterEvent = {
|
|
|
701
701
|
questionary: {
|
|
702
702
|
allowMarketingAppearance?: boolean;
|
|
703
703
|
completeFinalQuestionnaire: boolean;
|
|
704
|
-
dailyCoordinationNeeds?: string;
|
|
705
704
|
interestedInCharityInitiative?: boolean;
|
|
706
|
-
|
|
705
|
+
inviteStallholders: boolean;
|
|
707
706
|
manageApplicationsAndCommunication: boolean;
|
|
707
|
+
completeMarketProfileFirstWeek: boolean;
|
|
708
|
+
spaceForClueMart: boolean;
|
|
708
709
|
organizerExpectations?: string;
|
|
709
|
-
|
|
710
|
-
spaceForClueMart?: boolean;
|
|
710
|
+
dailyCoordinationNeeds?: string;
|
|
711
711
|
};
|
|
712
712
|
};
|
|
713
713
|
interface TesterFormData {
|
package/dist/index.mjs
CHANGED
|
@@ -2574,10 +2574,10 @@ var TESTER_EVENT_FIELDS_FRAGMENT = gql4`
|
|
|
2574
2574
|
completeFinalQuestionnaire
|
|
2575
2575
|
dailyCoordinationNeeds
|
|
2576
2576
|
interestedInCharityInitiative
|
|
2577
|
-
|
|
2577
|
+
inviteStallholders
|
|
2578
2578
|
manageApplicationsAndCommunication
|
|
2579
2579
|
organizerExpectations
|
|
2580
|
-
|
|
2580
|
+
completeMarketProfileFirstWeek
|
|
2581
2581
|
spaceForClueMart
|
|
2582
2582
|
}
|
|
2583
2583
|
}
|
|
@@ -5718,13 +5718,13 @@ var testerEventSchema = yup6.object().shape({
|
|
|
5718
5718
|
questionary: yup6.object().shape({
|
|
5719
5719
|
allowMarketingAppearance: yup6.boolean().optional(),
|
|
5720
5720
|
completeFinalQuestionnaire: yup6.boolean().required("Required field"),
|
|
5721
|
+
completeMarketProfileFirstWeek: yup6.boolean().required("Required field"),
|
|
5721
5722
|
dailyCoordinationNeeds: yup6.string().trim().optional(),
|
|
5722
5723
|
interestedInCharityInitiative: yup6.boolean().optional(),
|
|
5723
|
-
|
|
5724
|
+
inviteStallholders: yup6.boolean().required("Required field"),
|
|
5724
5725
|
manageApplicationsAndCommunication: yup6.boolean().required("Required field"),
|
|
5725
5726
|
organizerExpectations: yup6.string().trim().optional(),
|
|
5726
|
-
|
|
5727
|
-
spaceForClueMart: yup6.boolean().optional()
|
|
5727
|
+
spaceForClueMart: yup6.boolean().required("Required field")
|
|
5728
5728
|
})
|
|
5729
5729
|
});
|
|
5730
5730
|
var testerSchema = yup6.object().shape({
|