@timardex/cluemart-server-shared 1.0.166 → 1.0.168

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.
@@ -8630,7 +8630,6 @@ var EVENT = gql`
8630
8630
  rating
8631
8631
  reviewCount
8632
8632
  rainOrShine
8633
- unregisteredVendorIds
8634
8633
  socialMedia {
8635
8634
  ...SocialMediaFields
8636
8635
  }
@@ -8875,6 +8874,7 @@ var UNREGISTERED_VENDOR = gql`
8875
8874
  fragment UnregisteredVendorFields on UnregisteredVendorType {
8876
8875
  _id
8877
8876
  categoryIds
8877
+ claimed
8878
8878
  createdAt
8879
8879
  deletedAt
8880
8880
  email
@@ -12280,7 +12280,7 @@ var invitationSchema = new MongooseSchema15(
12280
12280
  inviterId: {
12281
12281
  ref: "Event",
12282
12282
  required: true,
12283
- type: String
12283
+ type: import_mongoose15.default.Schema.Types.ObjectId
12284
12284
  }
12285
12285
  },
12286
12286
  { _id: false }
@@ -12288,6 +12288,7 @@ var invitationSchema = new MongooseSchema15(
12288
12288
  var schema11 = new MongooseSchema15(
12289
12289
  {
12290
12290
  categoryIds: { required: true, type: [String] },
12291
+ claimed: { default: false, required: true, type: Boolean },
12291
12292
  deletedAt: { default: null, required: false, type: Date },
12292
12293
  email: { required: true, type: String },
12293
12294
  invitations: { required: true, type: [invitationSchema] },
@@ -12335,8 +12336,7 @@ var schema12 = new MongooseSchema16(
12335
12336
  required: false,
12336
12337
  type: [resourceRelationsSchema]
12337
12338
  },
12338
- tags: { required: true, type: [String] },
12339
- unregisteredVendorIds: { default: [], required: false, type: [String] }
12339
+ tags: { required: true, type: [String] }
12340
12340
  },
12341
12341
  { timestamps: true }
12342
12342
  );