@timardex/cluemart-server-shared 1.0.281 → 1.0.284

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.
@@ -7494,6 +7494,7 @@ var AFFILIATE_REWARD_FIELDS_FRAGMENT = gql`
7494
7494
  var AFFILIATE_RESOURCE_FIELDS_FRAGMENT = gql`
7495
7495
  fragment AffiliateResourceFields on AffiliateResourceType {
7496
7496
  resourceActive
7497
+ resourceDeletedAt
7497
7498
  resourceId
7498
7499
  resourceName
7499
7500
  resourceType
@@ -9287,6 +9288,7 @@ var affiliateRewardSchema = new MongooseSchema25(
9287
9288
  var affiliateResourceSchema = new MongooseSchema25(
9288
9289
  {
9289
9290
  resourceActive: { default: true, required: true, type: Boolean },
9291
+ resourceDeletedAt: { default: null, required: false, type: Date },
9290
9292
  resourceId: {
9291
9293
  required: true,
9292
9294
  type: import_mongoose25.default.Schema.Types.ObjectId