@hexclave/shared 1.0.6 → 1.0.8

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.
Files changed (27) hide show
  1. package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
  2. package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +10 -7
  3. package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
  4. package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
  5. package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +10 -7
  6. package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
  7. package/dist/esm/interface/admin-metrics.d.ts +2 -2
  8. package/dist/esm/interface/client-interface.js +1 -1
  9. package/dist/esm/interface/client-interface.js.map +1 -1
  10. package/dist/esm/interface/conversations.d.ts +27 -27
  11. package/dist/esm/interface/crud/current-user.d.ts +2 -2
  12. package/dist/esm/interface/crud/email-outbox.d.ts +156 -156
  13. package/dist/esm/interface/crud/team-member-profiles.d.ts +10 -10
  14. package/dist/esm/interface/crud/users.d.ts +8 -8
  15. package/dist/esm/interface/webhooks.d.ts +2 -2
  16. package/dist/interface/admin-metrics.d.ts +12 -12
  17. package/dist/interface/client-interface.js +1 -1
  18. package/dist/interface/client-interface.js.map +1 -1
  19. package/dist/interface/conversations.d.ts +27 -27
  20. package/dist/interface/crud/current-user.d.ts +2 -2
  21. package/dist/interface/crud/email-outbox.d.ts +156 -156
  22. package/dist/interface/crud/team-member-profiles.d.ts +10 -10
  23. package/dist/interface/crud/users.d.ts +8 -8
  24. package/dist/interface/webhooks.d.ts +2 -2
  25. package/package.json +1 -1
  26. package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +10 -7
  27. package/src/interface/client-interface.ts +2 -2
@@ -174,7 +174,18 @@ 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
+ conversationId: string;
180
+ userId: string | null;
181
+ teamId: string | null;
182
+ userDisplayName: string | null;
183
+ userPrimaryEmail: string | null;
184
+ userProfileImageUrl: string | null;
177
185
  source: "email" | "manual" | "chat" | "api";
186
+ lastMessageType: "message" | "internal-note" | "status-change";
187
+ preview: string | null;
188
+ lastActivityAt: string;
178
189
  metadata: {
179
190
  assignedToUserId: string | null;
180
191
  assignedToDisplayName: string | null;
@@ -185,17 +196,6 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
185
196
  lastCustomerReplyAt: string | null;
186
197
  lastAgentReplyAt: string | null;
187
198
  };
188
- priority: "low" | "normal" | "high" | "urgent";
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, {
@@ -212,7 +212,18 @@ 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
+ conversationId: string;
218
+ userId: string | null;
219
+ teamId: string | null;
220
+ userDisplayName: string | null;
221
+ userPrimaryEmail: string | null;
222
+ userProfileImageUrl: string | null;
215
223
  source: "email" | "manual" | "chat" | "api";
224
+ lastMessageType: "message" | "internal-note" | "status-change";
225
+ preview: string | null;
226
+ lastActivityAt: string;
216
227
  metadata: {
217
228
  assignedToUserId: string | null;
218
229
  assignedToDisplayName: string | null;
@@ -223,31 +234,20 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
223
234
  lastCustomerReplyAt: string | null;
224
235
  lastAgentReplyAt: string | null;
225
236
  };
226
- priority: "low" | "normal" | "high" | "urgent";
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
- body: string | null;
241
- source: "email" | "manual" | "chat" | "api";
242
- metadata: {} | null;
243
240
  id: string;
244
241
  priority: "low" | "normal" | "high" | "urgent";
242
+ subject: string;
245
243
  conversationId: string;
246
244
  userId: string | null;
247
245
  teamId: string | null;
248
- subject: string;
246
+ source: "email" | "manual" | "chat" | "api";
247
+ metadata: {} | null;
249
248
  createdAt: string;
250
249
  messageType: "message" | "internal-note" | "status-change";
250
+ body: string | null;
251
251
  attachments: {}[];
252
252
  sender: {
253
253
  type: "user" | "agent" | "system";
@@ -257,8 +257,8 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
257
257
  };
258
258
  }[];
259
259
  entryPoints: {
260
- metadata: {} | null;
261
260
  id: string;
261
+ metadata: {} | null;
262
262
  createdAt: string;
263
263
  updatedAt: string;
264
264
  channelType: string;
@@ -17,9 +17,9 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
17
17
  client_metadata: {} | null;
18
18
  client_read_only_metadata: {} | null;
19
19
  id: string;
20
- primary_email_verified: boolean;
21
20
  profile_image_url: string | null;
22
21
  signed_up_at_millis: number;
22
+ primary_email_verified: boolean;
23
23
  has_password: boolean;
24
24
  otp_auth_enabled: boolean;
25
25
  passkey_auth_enabled: boolean;
@@ -93,8 +93,8 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
93
93
  server_metadata?: {} | null | undefined;
94
94
  display_name: string;
95
95
  id: string;
96
- profile_image_url: string | null;
97
96
  created_at_millis: number;
97
+ profile_image_url: string | null;
98
98
  } | null;
99
99
  selected_team_id: string | null;
100
100
  profile_image_url: string | null;