@hexclave/shared 1.0.21 → 1.0.22
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 +34 -34
- 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 +34 -34
- 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 +2 -1
- package/dist/esm/interface/admin-interface.js.map +1 -1
- package/dist/esm/interface/client-interface.js +1 -1
- package/dist/esm/interface/conversations.d.ts +9 -9
- package/dist/esm/interface/crud/email-outbox.d.ts +156 -156
- 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/server-interface.js +1 -1
- 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 +2 -1
- package/dist/interface/admin-interface.js.map +1 -1
- package/dist/interface/client-interface.js +1 -1
- package/dist/interface/conversations.d.ts +9 -9
- package/dist/interface/crud/email-outbox.d.ts +156 -156
- package/dist/interface/crud/email-outbox.js +1 -1
- package/dist/interface/crud/email-outbox.js.map +1 -1
- package/dist/interface/server-interface.js +1 -1
- 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
|
@@ -56,9 +56,9 @@ declare const conversationSummarySchema: yup$1.ObjectSchema<{
|
|
|
56
56
|
preview: string | null;
|
|
57
57
|
lastActivityAt: string;
|
|
58
58
|
metadata: {
|
|
59
|
-
tags: string[];
|
|
60
59
|
assignedToUserId: string | null;
|
|
61
60
|
assignedToDisplayName: string | null;
|
|
61
|
+
tags: string[];
|
|
62
62
|
firstResponseDueAt: string | null;
|
|
63
63
|
firstResponseAt: string | null;
|
|
64
64
|
nextResponseDueAt: string | null;
|
|
@@ -174,22 +174,22 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
174
174
|
closedAt?: string | null | undefined;
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
176
|
status: "open" | "pending" | "closed";
|
|
177
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
178
|
-
subject: string;
|
|
179
177
|
conversationId: string;
|
|
180
178
|
userId: string | null;
|
|
181
179
|
teamId: string | null;
|
|
182
180
|
userDisplayName: string | null;
|
|
183
181
|
userPrimaryEmail: string | null;
|
|
184
182
|
userProfileImageUrl: string | null;
|
|
183
|
+
subject: string;
|
|
184
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
185
185
|
source: "email" | "manual" | "chat" | "api";
|
|
186
186
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
187
187
|
preview: string | null;
|
|
188
188
|
lastActivityAt: string;
|
|
189
189
|
metadata: {
|
|
190
|
-
tags: string[];
|
|
191
190
|
assignedToUserId: string | null;
|
|
192
191
|
assignedToDisplayName: string | null;
|
|
192
|
+
tags: string[];
|
|
193
193
|
firstResponseDueAt: string | null;
|
|
194
194
|
firstResponseAt: string | null;
|
|
195
195
|
nextResponseDueAt: string | null;
|
|
@@ -212,22 +212,22 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
212
212
|
closedAt?: string | null | undefined;
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
214
|
status: "open" | "pending" | "closed";
|
|
215
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
216
|
-
subject: string;
|
|
217
215
|
conversationId: string;
|
|
218
216
|
userId: string | null;
|
|
219
217
|
teamId: string | null;
|
|
220
218
|
userDisplayName: string | null;
|
|
221
219
|
userPrimaryEmail: string | null;
|
|
222
220
|
userProfileImageUrl: string | null;
|
|
221
|
+
subject: string;
|
|
222
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
223
223
|
source: "email" | "manual" | "chat" | "api";
|
|
224
224
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
225
225
|
preview: string | null;
|
|
226
226
|
lastActivityAt: string;
|
|
227
227
|
metadata: {
|
|
228
|
-
tags: string[];
|
|
229
228
|
assignedToUserId: string | null;
|
|
230
229
|
assignedToDisplayName: string | null;
|
|
230
|
+
tags: string[];
|
|
231
231
|
firstResponseDueAt: string | null;
|
|
232
232
|
firstResponseAt: string | null;
|
|
233
233
|
nextResponseDueAt: string | null;
|
|
@@ -238,11 +238,11 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
238
238
|
messages: {
|
|
239
239
|
status: "open" | "pending" | "closed";
|
|
240
240
|
id: string;
|
|
241
|
-
priority: "low" | "normal" | "high" | "urgent";
|
|
242
|
-
subject: string;
|
|
243
241
|
conversationId: string;
|
|
244
242
|
userId: string | null;
|
|
245
243
|
teamId: string | null;
|
|
244
|
+
subject: string;
|
|
245
|
+
priority: "low" | "normal" | "high" | "urgent";
|
|
246
246
|
source: "email" | "manual" | "chat" | "api";
|
|
247
247
|
metadata: {} | null;
|
|
248
248
|
createdAt: string;
|