@timardex/cluemart-shared 1.3.25 → 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
@@ -426,6 +426,9 @@ var removeTypename = (obj) => {
426
426
  if (obj instanceof Date) {
427
427
  return obj;
428
428
  }
429
+ if (obj instanceof File) {
430
+ return obj;
431
+ }
429
432
  if (isIsoDateString(obj)) {
430
433
  return obj;
431
434
  }
@@ -2571,10 +2574,10 @@ var TESTER_EVENT_FIELDS_FRAGMENT = gql4`
2571
2574
  completeFinalQuestionnaire
2572
2575
  dailyCoordinationNeeds
2573
2576
  interestedInCharityInitiative
2574
- inviteAtLeastFiveStallholders
2577
+ inviteStallholders
2575
2578
  manageApplicationsAndCommunication
2576
2579
  organizerExpectations
2577
- registerMarketsFirstWeek
2580
+ completeMarketProfileFirstWeek
2578
2581
  spaceForClueMart
2579
2582
  }
2580
2583
  }
@@ -5715,13 +5718,13 @@ var testerEventSchema = yup6.object().shape({
5715
5718
  questionary: yup6.object().shape({
5716
5719
  allowMarketingAppearance: yup6.boolean().optional(),
5717
5720
  completeFinalQuestionnaire: yup6.boolean().required("Required field"),
5721
+ completeMarketProfileFirstWeek: yup6.boolean().required("Required field"),
5718
5722
  dailyCoordinationNeeds: yup6.string().trim().optional(),
5719
5723
  interestedInCharityInitiative: yup6.boolean().optional(),
5720
- inviteAtLeastFiveStallholders: yup6.boolean().required("Required field"),
5724
+ inviteStallholders: yup6.boolean().required("Required field"),
5721
5725
  manageApplicationsAndCommunication: yup6.boolean().required("Required field"),
5722
5726
  organizerExpectations: yup6.string().trim().optional(),
5723
- registerMarketsFirstWeek: yup6.boolean().required("Required field"),
5724
- spaceForClueMart: yup6.boolean().optional()
5727
+ spaceForClueMart: yup6.boolean().required("Required field")
5725
5728
  })
5726
5729
  });
5727
5730
  var testerSchema = yup6.object().shape({