@timardex/cluemart-server-shared 1.0.49 → 1.0.50

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.
@@ -8663,10 +8663,10 @@ var TESTER_EVENT_FIELDS_FRAGMENT = gql`
8663
8663
  completeFinalQuestionnaire
8664
8664
  dailyCoordinationNeeds
8665
8665
  interestedInCharityInitiative
8666
- inviteAtLeastFiveStallholders
8666
+ inviteStallholders
8667
8667
  manageApplicationsAndCommunication
8668
8668
  organizerExpectations
8669
- registerMarketsFirstWeek
8669
+ completeMarketProfileFirstWeek
8670
8670
  spaceForClueMart
8671
8671
  }
8672
8672
  }
@@ -10309,13 +10309,13 @@ var testerEventSchema = create$3().shape({
10309
10309
  questionary: create$3().shape({
10310
10310
  allowMarketingAppearance: create$7().optional(),
10311
10311
  completeFinalQuestionnaire: create$7().required("Required field"),
10312
+ completeMarketProfileFirstWeek: create$7().required("Required field"),
10312
10313
  dailyCoordinationNeeds: create$6().trim().optional(),
10313
10314
  interestedInCharityInitiative: create$7().optional(),
10314
- inviteAtLeastFiveStallholders: create$7().required("Required field"),
10315
+ inviteStallholders: create$7().required("Required field"),
10315
10316
  manageApplicationsAndCommunication: create$7().required("Required field"),
10316
10317
  organizerExpectations: create$6().trim().optional(),
10317
- registerMarketsFirstWeek: create$7().required("Required field"),
10318
- spaceForClueMart: create$7().optional()
10318
+ spaceForClueMart: create$7().required("Required field")
10319
10319
  })
10320
10320
  });
10321
10321
  var testerSchema = create$3().shape({
@@ -11215,13 +11215,13 @@ var TesterEventsSchema = new MongooseSchema9(
11215
11215
  type: {
11216
11216
  allowMarketingAppearance: { required: false, type: Boolean },
11217
11217
  completeFinalQuestionnaire: { required: true, type: Boolean },
11218
+ completeMarketProfileFirstWeek: { required: true, type: Boolean },
11218
11219
  dailyCoordinationNeeds: { required: false, type: String },
11219
11220
  interestedInCharityInitiative: { required: false, type: Boolean },
11220
- inviteAtLeastFiveStallholders: { required: true, type: Boolean },
11221
+ inviteStallholders: { required: true, type: Boolean },
11221
11222
  manageApplicationsAndCommunication: { required: true, type: Boolean },
11222
11223
  organizerExpectations: { required: false, type: String },
11223
- registerMarketsFirstWeek: { required: true, type: Boolean },
11224
- spaceForClueMart: { required: false, type: Boolean }
11224
+ spaceForClueMart: { required: true, type: Boolean }
11225
11225
  }
11226
11226
  }
11227
11227
  },