@timardex/cluemart-server-shared 1.0.274 → 1.0.275

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.
@@ -40,7 +40,7 @@ import {
40
40
  socialShareResourceSchema,
41
41
  termsAgreementSchema,
42
42
  userLicenseSchema
43
- } from "../chunk-VW2V67YM.mjs";
43
+ } from "../chunk-C4VZFFEU.mjs";
44
44
  export {
45
45
  APP_SETTINGS_ID,
46
46
  AdModel,
@@ -7435,12 +7435,10 @@ var REQUEST_MARKETING_MATERIAL_MUTATION = gql`
7435
7435
  var AFFILIATE_REWARD_FIELDS_FRAGMENT = gql`
7436
7436
  fragment AffiliateRewardFields on AffiliateRewardType {
7437
7437
  createdAt
7438
- deletedAt
7439
7438
  redeemedAt
7440
7439
  rewardDescription
7441
7440
  rewardType
7442
7441
  rewardValue
7443
- updatedAt
7444
7442
  }
7445
7443
  `;
7446
7444
  var AFFILIATE_RESOURCE_FIELDS_FRAGMENT = gql`
@@ -9351,7 +9349,6 @@ var MongooseSchema25 = import_mongoose26.default.Schema;
9351
9349
  var affiliateRewardSchema = new MongooseSchema25(
9352
9350
  {
9353
9351
  createdAt: { required: true, type: Date },
9354
- deletedAt: { default: null, required: false, type: Date },
9355
9352
  redeemedAt: { default: null, required: false, type: Date },
9356
9353
  rewardDescription: { required: true, type: String },
9357
9354
  rewardType: {
@@ -9359,8 +9356,7 @@ var affiliateRewardSchema = new MongooseSchema25(
9359
9356
  required: true,
9360
9357
  type: String
9361
9358
  },
9362
- rewardValue: { required: true, type: Number },
9363
- updatedAt: { default: null, required: false, type: Date }
9359
+ rewardValue: { required: true, type: Number }
9364
9360
  },
9365
9361
  { _id: false }
9366
9362
  );