@timardex/cluemart-shared 1.1.3 → 1.1.6
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/graphql/index.cjs +10 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +10 -2
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +10 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +10 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{notification-BBO1auKM.d.mts → notification-BH5_z_Wh.d.mts} +4 -2
- package/dist/{notification-CAZUXK48.d.ts → notification-CqoTwwqU.d.ts} +4 -2
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { EnumChatType } from './enums/index.mjs';
|
|
2
2
|
import { q as OwnerType } from './global-DcpQzfP1.mjs';
|
|
3
3
|
|
|
4
|
-
type ParticipantType = Omit<OwnerType, "licences"
|
|
4
|
+
type ParticipantType = Omit<OwnerType, "licences"> & {
|
|
5
|
+
active: boolean;
|
|
6
|
+
};
|
|
5
7
|
interface ChatMessageInput {
|
|
6
8
|
content: string;
|
|
7
9
|
senderId: string;
|
|
8
|
-
senderName: string;
|
|
9
10
|
}
|
|
10
11
|
interface ChatMessageType {
|
|
11
12
|
_id?: string;
|
|
12
13
|
content: string;
|
|
13
14
|
createdAt?: string;
|
|
15
|
+
senderAvatar: string | null;
|
|
14
16
|
senderId: string;
|
|
15
17
|
senderName: string;
|
|
16
18
|
updatedAt?: string;
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import { EnumChatType } from './enums/index.js';
|
|
2
2
|
import { q as OwnerType } from './global-BBjHo_Lg.js';
|
|
3
3
|
|
|
4
|
-
type ParticipantType = Omit<OwnerType, "licences"
|
|
4
|
+
type ParticipantType = Omit<OwnerType, "licences"> & {
|
|
5
|
+
active: boolean;
|
|
6
|
+
};
|
|
5
7
|
interface ChatMessageInput {
|
|
6
8
|
content: string;
|
|
7
9
|
senderId: string;
|
|
8
|
-
senderName: string;
|
|
9
10
|
}
|
|
10
11
|
interface ChatMessageType {
|
|
11
12
|
_id?: string;
|
|
12
13
|
content: string;
|
|
13
14
|
createdAt?: string;
|
|
15
|
+
senderAvatar: string | null;
|
|
14
16
|
senderId: string;
|
|
15
17
|
senderName: string;
|
|
16
18
|
updatedAt?: string;
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.mjs';
|
|
2
2
|
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-D8fGJCGz.mjs';
|
|
3
|
-
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, d as CreateBulkNotificationInput, E as EnumNotificationType, a as NotificationCount, N as NotificationType, P as ParticipantType } from '../notification-
|
|
3
|
+
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, d as CreateBulkNotificationInput, E as EnumNotificationType, a as NotificationCount, N as NotificationType, P as ParticipantType } from '../notification-BH5_z_Wh.mjs';
|
|
4
4
|
export { r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, l as CreateMarketFormData, n as CreateMarketInfoFormData, h as CreateStallholderFormData, j as CreateStallholderInfoFormData, D as DateTimeType, w as DateTimeWithPriceType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, t as MapMultiLocation, k as MarketFormData, m as MarketInfoFormData, b as MarketInfoType, M as MarketType, x as MarketWithConnectionDatesType, N as Nullable, O as OptionItem, q as OwnerType, P as PaymentInfoType, s as Region, y as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, o as ResourceImageType, E as SatllholderWithConnectionDatesType, p as SocialMediaType, S as StallType, A as StallholderAttributes, g as StallholderFormData, i as StallholderInfoFormData, f as StallholderInfoType, z as StallholderLocation, e as StallholderType, v as Subcategory, u as SubcategoryItems } from '../global-DcpQzfP1.mjs';
|
|
5
5
|
export { c as CreateTestersFormData, C as CreateUserFormData, T as TesterType, b as TestersFormData, a as UserFormData, U as UserType } from '../user-BfsmFPGZ.mjs';
|
|
6
6
|
import 'react-hook-form';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.js';
|
|
2
2
|
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-D13Gd2TA.js';
|
|
3
|
-
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, d as CreateBulkNotificationInput, E as EnumNotificationType, a as NotificationCount, N as NotificationType, P as ParticipantType } from '../notification-
|
|
3
|
+
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, d as CreateBulkNotificationInput, E as EnumNotificationType, a as NotificationCount, N as NotificationType, P as ParticipantType } from '../notification-CqoTwwqU.js';
|
|
4
4
|
export { r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, l as CreateMarketFormData, n as CreateMarketInfoFormData, h as CreateStallholderFormData, j as CreateStallholderInfoFormData, D as DateTimeType, w as DateTimeWithPriceType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, t as MapMultiLocation, k as MarketFormData, m as MarketInfoFormData, b as MarketInfoType, M as MarketType, x as MarketWithConnectionDatesType, N as Nullable, O as OptionItem, q as OwnerType, P as PaymentInfoType, s as Region, y as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, o as ResourceImageType, E as SatllholderWithConnectionDatesType, p as SocialMediaType, S as StallType, A as StallholderAttributes, g as StallholderFormData, i as StallholderInfoFormData, f as StallholderInfoType, z as StallholderLocation, e as StallholderType, v as Subcategory, u as SubcategoryItems } from '../global-BBjHo_Lg.js';
|
|
5
5
|
export { c as CreateTestersFormData, C as CreateUserFormData, T as TesterType, b as TestersFormData, a as UserFormData, U as UserType } from '../user-EVBTZHAn.js';
|
|
6
6
|
import 'react-hook-form';
|