@timardex/cluemart-shared 1.2.45 → 1.2.46

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.
package/dist/index.d.mts CHANGED
@@ -555,7 +555,8 @@ type CreateValidateVerificationTokenFormData = CreateFormData<ValidateVerificati
555
555
 
556
556
  type ParticipantType = {
557
557
  active: boolean;
558
- email: string;
558
+ userAvatar: string | null;
559
+ userEmail: string;
559
560
  userId: string;
560
561
  userName: string;
561
562
  };
@@ -567,9 +568,7 @@ interface ChatMessageType {
567
568
  _id?: string;
568
569
  content: string;
569
570
  createdAt?: string;
570
- senderAvatar: string | null;
571
571
  senderId: string;
572
- senderName: string;
573
572
  updatedAt?: string;
574
573
  }
575
574
  interface ChatType {
@@ -666,7 +665,7 @@ type UserFormData = {
666
665
  };
667
666
  type CreateUserFormData = CreateFormData<UserFormData>;
668
667
  type UserActivityEvent = {
669
- dateStatus?: EnumEventDateStatus | null;
668
+ dateStatus: EnumEventDateStatus;
670
669
  resourceId: string;
671
670
  startDate: string;
672
671
  startTime: string;
package/dist/index.d.ts CHANGED
@@ -555,7 +555,8 @@ type CreateValidateVerificationTokenFormData = CreateFormData<ValidateVerificati
555
555
 
556
556
  type ParticipantType = {
557
557
  active: boolean;
558
- email: string;
558
+ userAvatar: string | null;
559
+ userEmail: string;
559
560
  userId: string;
560
561
  userName: string;
561
562
  };
@@ -567,9 +568,7 @@ interface ChatMessageType {
567
568
  _id?: string;
568
569
  content: string;
569
570
  createdAt?: string;
570
- senderAvatar: string | null;
571
571
  senderId: string;
572
- senderName: string;
573
572
  updatedAt?: string;
574
573
  }
575
574
  interface ChatType {
@@ -666,7 +665,7 @@ type UserFormData = {
666
665
  };
667
666
  type CreateUserFormData = CreateFormData<UserFormData>;
668
667
  type UserActivityEvent = {
669
- dateStatus?: EnumEventDateStatus | null;
668
+ dateStatus: EnumEventDateStatus;
670
669
  resourceId: string;
671
670
  startDate: string;
672
671
  startTime: string;
package/dist/index.mjs CHANGED
@@ -2693,16 +2693,15 @@ var CHAT_MESSAGE_FIELDS_FRAGMENT = gql6`
2693
2693
  _id
2694
2694
  content
2695
2695
  createdAt
2696
- senderAvatar
2697
2696
  senderId
2698
- senderName
2699
2697
  updatedAt
2700
2698
  }
2701
2699
  `;
2702
2700
  var CHAT_PARTICIPANT = gql6`
2703
2701
  fragment ChatParticipantFields on ChatParticipantType {
2704
2702
  active
2705
- email
2703
+ userAvatar
2704
+ userEmail
2706
2705
  userId
2707
2706
  userName
2708
2707
  }