@timardex/cluemart-shared 1.2.44 → 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,8 +555,10 @@ 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;
561
+ userName: string;
560
562
  };
561
563
  interface ChatMessageInput {
562
564
  content: string;
@@ -566,9 +568,7 @@ interface ChatMessageType {
566
568
  _id?: string;
567
569
  content: string;
568
570
  createdAt?: string;
569
- senderAvatar: string | null;
570
571
  senderId: string;
571
- senderName: string;
572
572
  updatedAt?: string;
573
573
  }
574
574
  interface ChatType {
@@ -665,7 +665,7 @@ type UserFormData = {
665
665
  };
666
666
  type CreateUserFormData = CreateFormData<UserFormData>;
667
667
  type UserActivityEvent = {
668
- dateStatus?: EnumEventDateStatus | null;
668
+ dateStatus: EnumEventDateStatus;
669
669
  resourceId: string;
670
670
  startDate: string;
671
671
  startTime: string;
package/dist/index.d.ts CHANGED
@@ -555,8 +555,10 @@ 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;
561
+ userName: string;
560
562
  };
561
563
  interface ChatMessageInput {
562
564
  content: string;
@@ -566,9 +568,7 @@ interface ChatMessageType {
566
568
  _id?: string;
567
569
  content: string;
568
570
  createdAt?: string;
569
- senderAvatar: string | null;
570
571
  senderId: string;
571
- senderName: string;
572
572
  updatedAt?: string;
573
573
  }
574
574
  interface ChatType {
@@ -665,7 +665,7 @@ type UserFormData = {
665
665
  };
666
666
  type CreateUserFormData = CreateFormData<UserFormData>;
667
667
  type UserActivityEvent = {
668
- dateStatus?: EnumEventDateStatus | null;
668
+ dateStatus: EnumEventDateStatus;
669
669
  resourceId: string;
670
670
  startDate: string;
671
671
  startTime: string;
package/dist/index.mjs CHANGED
@@ -2693,17 +2693,17 @@ 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
2706
+ userName
2707
2707
  }
2708
2708
  `;
2709
2709
  var CHAT_FIELDS_FRAGMENT = gql6`