@hexclave/shared 1.0.21 → 1.0.23
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/ai/unified-prompts/reminders.js +1 -1
- package/dist/ai/unified-prompts/skill-site-prompt.d.ts.map +1 -1
- package/dist/ai/unified-prompts/skill-site-prompt.js +4 -1
- package/dist/ai/unified-prompts/skill-site-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +28 -28
- package/dist/esm/ai/unified-prompts/reminders.js +1 -1
- package/dist/esm/ai/unified-prompts/skill-site-prompt.d.ts.map +1 -1
- package/dist/esm/ai/unified-prompts/skill-site-prompt.js +4 -1
- package/dist/esm/ai/unified-prompts/skill-site-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +28 -28
- package/dist/esm/interface/admin-interface.d.ts +1 -0
- package/dist/esm/interface/admin-interface.d.ts.map +1 -1
- package/dist/esm/interface/admin-interface.js +1 -0
- package/dist/esm/interface/admin-interface.js.map +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +5 -5
- package/dist/esm/interface/conversations.d.ts +24 -24
- package/dist/esm/interface/crud/current-user.d.ts +1 -1
- package/dist/esm/interface/crud/email-outbox.d.ts +154 -154
- package/dist/esm/interface/crud/email-outbox.js +1 -1
- package/dist/esm/interface/crud/email-outbox.js.map +1 -1
- package/dist/esm/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/esm/interface/crud/team-member-profiles.d.ts +8 -8
- package/dist/esm/interface/crud/users.d.ts +4 -4
- package/dist/interface/admin-interface.d.ts +1 -0
- package/dist/interface/admin-interface.d.ts.map +1 -1
- package/dist/interface/admin-interface.js +1 -0
- package/dist/interface/admin-interface.js.map +1 -1
- package/dist/interface/admin-metrics.d.ts +5 -5
- package/dist/interface/conversations.d.ts +24 -24
- package/dist/interface/crud/current-user.d.ts +1 -1
- package/dist/interface/crud/email-outbox.d.ts +154 -154
- package/dist/interface/crud/email-outbox.js +1 -1
- package/dist/interface/crud/email-outbox.js.map +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/interface/crud/team-member-profiles.d.ts +8 -8
- package/dist/interface/crud/users.d.ts +4 -4
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt.ts +4 -1
- package/src/interface/admin-interface.ts +2 -1
- package/src/interface/crud/email-outbox.ts +1 -1
|
@@ -175,17 +175,7 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
176
|
status: "open" | "pending" | "closed";
|
|
177
177
|
priority: "low" | "normal" | "high" | "urgent";
|
|
178
|
-
subject: string;
|
|
179
|
-
conversationId: string;
|
|
180
|
-
userId: string | null;
|
|
181
|
-
teamId: string | null;
|
|
182
|
-
userDisplayName: string | null;
|
|
183
|
-
userPrimaryEmail: string | null;
|
|
184
|
-
userProfileImageUrl: string | null;
|
|
185
178
|
source: "email" | "manual" | "chat" | "api";
|
|
186
|
-
lastMessageType: "message" | "internal-note" | "status-change";
|
|
187
|
-
preview: string | null;
|
|
188
|
-
lastActivityAt: string;
|
|
189
179
|
metadata: {
|
|
190
180
|
tags: string[];
|
|
191
181
|
assignedToUserId: string | null;
|
|
@@ -196,6 +186,16 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
196
186
|
lastCustomerReplyAt: string | null;
|
|
197
187
|
lastAgentReplyAt: string | null;
|
|
198
188
|
};
|
|
189
|
+
conversationId: string;
|
|
190
|
+
userId: string | null;
|
|
191
|
+
teamId: string | null;
|
|
192
|
+
userDisplayName: string | null;
|
|
193
|
+
userPrimaryEmail: string | null;
|
|
194
|
+
userProfileImageUrl: string | null;
|
|
195
|
+
subject: string;
|
|
196
|
+
lastMessageType: "message" | "internal-note" | "status-change";
|
|
197
|
+
preview: string | null;
|
|
198
|
+
lastActivityAt: string;
|
|
199
199
|
}[];
|
|
200
200
|
hasMore: boolean;
|
|
201
201
|
}, yup$1.AnyObject, {
|
|
@@ -213,17 +213,7 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
214
|
status: "open" | "pending" | "closed";
|
|
215
215
|
priority: "low" | "normal" | "high" | "urgent";
|
|
216
|
-
subject: string;
|
|
217
|
-
conversationId: string;
|
|
218
|
-
userId: string | null;
|
|
219
|
-
teamId: string | null;
|
|
220
|
-
userDisplayName: string | null;
|
|
221
|
-
userPrimaryEmail: string | null;
|
|
222
|
-
userProfileImageUrl: string | null;
|
|
223
216
|
source: "email" | "manual" | "chat" | "api";
|
|
224
|
-
lastMessageType: "message" | "internal-note" | "status-change";
|
|
225
|
-
preview: string | null;
|
|
226
|
-
lastActivityAt: string;
|
|
227
217
|
metadata: {
|
|
228
218
|
tags: string[];
|
|
229
219
|
assignedToUserId: string | null;
|
|
@@ -234,20 +224,30 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
234
224
|
lastCustomerReplyAt: string | null;
|
|
235
225
|
lastAgentReplyAt: string | null;
|
|
236
226
|
};
|
|
227
|
+
conversationId: string;
|
|
228
|
+
userId: string | null;
|
|
229
|
+
teamId: string | null;
|
|
230
|
+
userDisplayName: string | null;
|
|
231
|
+
userPrimaryEmail: string | null;
|
|
232
|
+
userProfileImageUrl: string | null;
|
|
233
|
+
subject: string;
|
|
234
|
+
lastMessageType: "message" | "internal-note" | "status-change";
|
|
235
|
+
preview: string | null;
|
|
236
|
+
lastActivityAt: string;
|
|
237
237
|
};
|
|
238
238
|
messages: {
|
|
239
239
|
status: "open" | "pending" | "closed";
|
|
240
240
|
id: string;
|
|
241
241
|
priority: "low" | "normal" | "high" | "urgent";
|
|
242
|
-
|
|
242
|
+
body: string | null;
|
|
243
|
+
source: "email" | "manual" | "chat" | "api";
|
|
244
|
+
metadata: {} | null;
|
|
243
245
|
conversationId: string;
|
|
244
246
|
userId: string | null;
|
|
245
247
|
teamId: string | null;
|
|
246
|
-
|
|
247
|
-
metadata: {} | null;
|
|
248
|
+
subject: string;
|
|
248
249
|
createdAt: string;
|
|
249
250
|
messageType: "message" | "internal-note" | "status-change";
|
|
250
|
-
body: string | null;
|
|
251
251
|
attachments: {}[];
|
|
252
252
|
sender: {
|
|
253
253
|
type: "user" | "agent" | "system";
|
|
@@ -16,9 +16,9 @@ declare const currentUserCrud: CrudSchemaFromOptions<{
|
|
|
16
16
|
is_anonymous: boolean;
|
|
17
17
|
is_restricted: boolean;
|
|
18
18
|
requires_totp_mfa: boolean;
|
|
19
|
+
primary_email_verified: boolean;
|
|
19
20
|
profile_image_url: string | null;
|
|
20
21
|
signed_up_at_millis: number;
|
|
21
|
-
primary_email_verified: boolean;
|
|
22
22
|
has_password: boolean;
|
|
23
23
|
otp_auth_enabled: boolean;
|
|
24
24
|
passkey_auth_enabled: boolean;
|