@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/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
- inviteAtLeastFiveStallholders: boolean;
705
+ inviteStallholders: boolean;
707
706
  manageApplicationsAndCommunication: boolean;
707
+ completeMarketProfileFirstWeek: boolean;
708
+ spaceForClueMart: boolean;
708
709
  organizerExpectations?: string;
709
- registerMarketsFirstWeek: boolean;
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
- inviteAtLeastFiveStallholders: boolean;
705
+ inviteStallholders: boolean;
707
706
  manageApplicationsAndCommunication: boolean;
707
+ completeMarketProfileFirstWeek: boolean;
708
+ spaceForClueMart: boolean;
708
709
  organizerExpectations?: string;
709
- registerMarketsFirstWeek: boolean;
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
- inviteAtLeastFiveStallholders
2577
+ inviteStallholders
2578
2578
  manageApplicationsAndCommunication
2579
2579
  organizerExpectations
2580
- registerMarketsFirstWeek
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
- inviteAtLeastFiveStallholders: yup6.boolean().required("Required field"),
5724
+ inviteStallholders: yup6.boolean().required("Required field"),
5724
5725
  manageApplicationsAndCommunication: yup6.boolean().required("Required field"),
5725
5726
  organizerExpectations: yup6.string().trim().optional(),
5726
- registerMarketsFirstWeek: yup6.boolean().required("Required field"),
5727
- spaceForClueMart: yup6.boolean().optional()
5727
+ spaceForClueMart: yup6.boolean().required("Required field")
5728
5728
  })
5729
5729
  });
5730
5730
  var testerSchema = yup6.object().shape({