@timardex/cluemart-server-shared 1.0.309 → 1.0.310

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.
@@ -7076,6 +7076,7 @@ var APP_SETTINGS_FIELDS_FRAGMENT = gql`
7076
7076
  createdAt
7077
7077
  isOfflineMode
7078
7078
  key
7079
+ minimumRedeemableAffiliatePoints
7079
7080
  updatedAt
7080
7081
  }
7081
7082
  `;
@@ -8955,6 +8956,11 @@ var AppSettingSchema = new MongooseSchema19(
8955
8956
  type: String,
8956
8957
  unique: true
8957
8958
  // ✅ allowed here
8959
+ },
8960
+ minimumRedeemableAffiliatePoints: {
8961
+ default: 500,
8962
+ required: true,
8963
+ type: Number
8958
8964
  }
8959
8965
  },
8960
8966
  { timestamps: true }