@timardex/cluemart-shared 1.0.80 → 1.0.82
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/{notification-H4hE5cdq.d.mts → contactUs-CQ9xTjlE.d.mts} +1 -38
- package/dist/{notification-H4hE5cdq.d.ts → contactUs-CQ9xTjlE.d.ts} +1 -38
- package/dist/graphql/index.cjs +282 -171
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +29 -9
- package/dist/graphql/index.d.ts +29 -9
- package/dist/graphql/index.mjs +279 -69
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +0 -202
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +2 -25
- package/dist/hooks/index.d.ts +2 -25
- package/dist/hooks/index.mjs +0 -104
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +280 -265
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +33 -35
- package/dist/index.d.ts +33 -35
- package/dist/index.mjs +216 -196
- package/dist/index.mjs.map +1 -1
- package/dist/notification-P3Vnadx_.d.mts +64 -0
- package/dist/notification-P3Vnadx_.d.ts +64 -0
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/chat-BUVCf9Tu.d.mts +0 -27
- package/dist/chat-BUVCf9Tu.d.ts +0 -27
- package/dist/chunk-SCXVJDGI.mjs +0 -114
- package/dist/chunk-SCXVJDGI.mjs.map +0 -1
|
@@ -98,41 +98,4 @@ interface CreateContactUsFormData {
|
|
|
98
98
|
watch: UseFormWatch<ContactUsFormData>;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
type
|
|
102
|
-
interface Notification {
|
|
103
|
-
id: string;
|
|
104
|
-
userId: string;
|
|
105
|
-
title: string;
|
|
106
|
-
message: string;
|
|
107
|
-
type: NotificationType;
|
|
108
|
-
isRead: boolean;
|
|
109
|
-
data?: Record<string, unknown>;
|
|
110
|
-
createdAt: string;
|
|
111
|
-
updatedAt: string;
|
|
112
|
-
}
|
|
113
|
-
interface NotificationCount {
|
|
114
|
-
total: number;
|
|
115
|
-
unread: number;
|
|
116
|
-
}
|
|
117
|
-
interface CreateNotificationInput {
|
|
118
|
-
userId: string;
|
|
119
|
-
title: string;
|
|
120
|
-
message: string;
|
|
121
|
-
type?: NotificationType;
|
|
122
|
-
data?: Record<string, unknown>;
|
|
123
|
-
}
|
|
124
|
-
interface CreateBulkNotificationInput {
|
|
125
|
-
userIds: string[];
|
|
126
|
-
title: string;
|
|
127
|
-
message: string;
|
|
128
|
-
type?: NotificationType;
|
|
129
|
-
data?: Record<string, unknown>;
|
|
130
|
-
}
|
|
131
|
-
interface MarkNotificationReadInput {
|
|
132
|
-
notificationIds: string[];
|
|
133
|
-
}
|
|
134
|
-
interface MarkAllNotificationsReadInput {
|
|
135
|
-
userId: string;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
export type { CreateLoginFormData as C, LoginFormData as L, MarkNotificationReadInput as M, NotificationType as N, RegisterFormData as R, ValidateVerificationTokenFormData as V, CreateRegisterFormData as a, CreateRequestPasswordResetFormData as b, CreateValidateVerificationTokenFormData as c, CreateResetPasswordFormData as d, ContactUsFormData as e, CreateContactUsFormData as f, CreateNotificationInput as g, CreateBulkNotificationInput as h, MarkAllNotificationsReadInput as i, RequestPasswordResetFormData as j, ResetPasswordFormData as k, Notification as l, NotificationCount as m };
|
|
101
|
+
export type { CreateLoginFormData as C, LoginFormData as L, RegisterFormData as R, ValidateVerificationTokenFormData as V, CreateRegisterFormData as a, CreateRequestPasswordResetFormData as b, CreateValidateVerificationTokenFormData as c, CreateResetPasswordFormData as d, ContactUsFormData as e, CreateContactUsFormData as f, RequestPasswordResetFormData as g, ResetPasswordFormData as h };
|
|
@@ -98,41 +98,4 @@ interface CreateContactUsFormData {
|
|
|
98
98
|
watch: UseFormWatch<ContactUsFormData>;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
type
|
|
102
|
-
interface Notification {
|
|
103
|
-
id: string;
|
|
104
|
-
userId: string;
|
|
105
|
-
title: string;
|
|
106
|
-
message: string;
|
|
107
|
-
type: NotificationType;
|
|
108
|
-
isRead: boolean;
|
|
109
|
-
data?: Record<string, unknown>;
|
|
110
|
-
createdAt: string;
|
|
111
|
-
updatedAt: string;
|
|
112
|
-
}
|
|
113
|
-
interface NotificationCount {
|
|
114
|
-
total: number;
|
|
115
|
-
unread: number;
|
|
116
|
-
}
|
|
117
|
-
interface CreateNotificationInput {
|
|
118
|
-
userId: string;
|
|
119
|
-
title: string;
|
|
120
|
-
message: string;
|
|
121
|
-
type?: NotificationType;
|
|
122
|
-
data?: Record<string, unknown>;
|
|
123
|
-
}
|
|
124
|
-
interface CreateBulkNotificationInput {
|
|
125
|
-
userIds: string[];
|
|
126
|
-
title: string;
|
|
127
|
-
message: string;
|
|
128
|
-
type?: NotificationType;
|
|
129
|
-
data?: Record<string, unknown>;
|
|
130
|
-
}
|
|
131
|
-
interface MarkNotificationReadInput {
|
|
132
|
-
notificationIds: string[];
|
|
133
|
-
}
|
|
134
|
-
interface MarkAllNotificationsReadInput {
|
|
135
|
-
userId: string;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
export type { CreateLoginFormData as C, LoginFormData as L, MarkNotificationReadInput as M, NotificationType as N, RegisterFormData as R, ValidateVerificationTokenFormData as V, CreateRegisterFormData as a, CreateRequestPasswordResetFormData as b, CreateValidateVerificationTokenFormData as c, CreateResetPasswordFormData as d, ContactUsFormData as e, CreateContactUsFormData as f, CreateNotificationInput as g, CreateBulkNotificationInput as h, MarkAllNotificationsReadInput as i, RequestPasswordResetFormData as j, ResetPasswordFormData as k, Notification as l, NotificationCount as m };
|
|
101
|
+
export type { CreateLoginFormData as C, LoginFormData as L, RegisterFormData as R, ValidateVerificationTokenFormData as V, CreateRegisterFormData as a, CreateRequestPasswordResetFormData as b, CreateValidateVerificationTokenFormData as c, CreateResetPasswordFormData as d, ContactUsFormData as e, CreateContactUsFormData as f, RequestPasswordResetFormData as g, ResetPasswordFormData as h };
|