@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/{ad-DImOqRKc.d.mts → ad-8uwFwLyG.d.mts} +1 -1
- package/dist/{ad-BpsSYGOd.d.ts → ad-BnY_hAq4.d.ts} +1 -1
- package/dist/graphql/index.cjs +2 -3
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +2 -3
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/index.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/dist/{resourceActivities-D4wHT387.d.mts → resourceActivities-BUFJqkMf.d.mts} +2 -3
- package/dist/{resourceActivities-DNZ3blut.d.ts → resourceActivities-BjvoQkGD.d.ts} +2 -3
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
2703
|
+
userAvatar
|
|
2704
|
+
userEmail
|
|
2706
2705
|
userId
|
|
2707
2706
|
userName
|
|
2708
2707
|
}
|