@timardex/cluemart-server-shared 1.1.25 → 1.1.26

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.
@@ -7448,13 +7448,11 @@ var GET_GAME_LEADERBOARD = gql`
7448
7448
  gameHistory {
7449
7449
  ...GameHistoryFields
7450
7450
  }
7451
+ nickName
7451
7452
  overallPoints
7452
- owner {
7453
- ...OwnerFields
7454
- }
7453
+ userId
7455
7454
  }
7456
7455
  }
7457
- ${OWNER_FIELDS_FRAGMENT}
7458
7456
  ${GAME_HISTORY_FIELDS_FRAGMENT}
7459
7457
  `;
7460
7458
  var START_GAME_MUTATION = gql`
@@ -9191,7 +9189,7 @@ var couponParticipantUserSchema = new MongooseSchema13(
9191
9189
  var couponDataSchema = new MongooseSchema13(
9192
9190
  {
9193
9191
  active: { default: true, required: true, type: Boolean },
9194
- couponCode: { required: true, type: couponCodeSchema },
9192
+ couponCode: { required: false, type: couponCodeSchema },
9195
9193
  couponDescription: { required: true, type: String },
9196
9194
  couponOption: { required: true, type: couponOptionSchema },
9197
9195
  couponVendorProducts: {