@timardex/cluemart-shared 1.0.81 → 1.0.83
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-BVKetNZq.d.mts → contactUs-CQ9xTjlE.d.mts} +1 -38
- package/dist/{notification-BVKetNZq.d.ts → contactUs-CQ9xTjlE.d.ts} +1 -38
- package/dist/graphql/index.cjs +313 -242
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +48 -16
- package/dist/graphql/index.d.ts +48 -16
- package/dist/graphql/index.mjs +289 -124
- 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 +325 -338
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +68 -56
- package/dist/index.d.ts +68 -56
- package/dist/index.mjs +300 -314
- package/dist/index.mjs.map +1 -1
- package/dist/notification-Dy46qobo.d.mts +66 -0
- package/dist/notification-Dy46qobo.d.ts +66 -0
- package/dist/types/index.cjs +21 -0
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.mjs +14 -0
- package/dist/types/index.mjs.map +1 -1
- 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 NotificationType {
|
|
103
|
-
id: string;
|
|
104
|
-
userId: string;
|
|
105
|
-
title: string;
|
|
106
|
-
message: string;
|
|
107
|
-
type: NotificationTypeMap;
|
|
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?: NotificationTypeMap;
|
|
122
|
-
data?: Record<string, unknown>;
|
|
123
|
-
}
|
|
124
|
-
interface CreateBulkNotificationInput {
|
|
125
|
-
userIds: string[];
|
|
126
|
-
title: string;
|
|
127
|
-
message: string;
|
|
128
|
-
type?: NotificationTypeMap;
|
|
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, NotificationTypeMap 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, NotificationType 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 NotificationType {
|
|
103
|
-
id: string;
|
|
104
|
-
userId: string;
|
|
105
|
-
title: string;
|
|
106
|
-
message: string;
|
|
107
|
-
type: NotificationTypeMap;
|
|
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?: NotificationTypeMap;
|
|
122
|
-
data?: Record<string, unknown>;
|
|
123
|
-
}
|
|
124
|
-
interface CreateBulkNotificationInput {
|
|
125
|
-
userIds: string[];
|
|
126
|
-
title: string;
|
|
127
|
-
message: string;
|
|
128
|
-
type?: NotificationTypeMap;
|
|
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, NotificationTypeMap 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, NotificationType 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 };
|