@timardex/cluemart-server-shared 1.0.149 → 1.0.150

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.
@@ -1686,7 +1686,6 @@ __export(mongoose_exports, {
1686
1686
  GoogleImportedMarketModel: () => GoogleImportedMarketModel,
1687
1687
  NotificationModel: () => NotificationModel,
1688
1688
  OwnerTypeSchema: () => OwnerTypeSchema,
1689
- ParticipantSchema: () => ParticipantSchema,
1690
1689
  PartnerModel: () => PartnerModel,
1691
1690
  PostModel: () => PostModel,
1692
1691
  PushTokenModel: () => PushTokenModel,
@@ -9039,6 +9038,7 @@ var CHAT_MESSAGE_FIELDS_FRAGMENT = gql`
9039
9038
  var CHAT_PARTICIPANT = gql`
9040
9039
  fragment ChatParticipantFields on ChatParticipantType {
9041
9040
  active
9041
+ isAssociate
9042
9042
  userAvatar
9043
9043
  userEmail
9044
9044
  userId
@@ -11233,6 +11233,7 @@ var MessageSchema = new MongooseSchema2(
11233
11233
  var ParticipantSchema = new MongooseSchema2(
11234
11234
  {
11235
11235
  active: { default: true, required: true, type: Boolean },
11236
+ isAssociate: { default: null, required: false, type: Boolean },
11236
11237
  userAvatar: { required: false, type: String },
11237
11238
  userEmail: { required: true, type: String },
11238
11239
  userId: {
@@ -12493,7 +12494,6 @@ var SchoolModel = import_mongoose21.default.models.School || import_mongoose21.d
12493
12494
  GoogleImportedMarketModel,
12494
12495
  NotificationModel,
12495
12496
  OwnerTypeSchema,
12496
- ParticipantSchema,
12497
12497
  PartnerModel,
12498
12498
  PostModel,
12499
12499
  PushTokenModel,