@hexclave/shared 1.0.6 → 1.0.9
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/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +12 -7
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +155 -155
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.d.ts.map +1 -1
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +12 -7
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +155 -155
- package/dist/esm/interface/admin-metrics.d.ts +2 -2
- package/dist/esm/interface/client-interface.js +1 -1
- package/dist/esm/interface/client-interface.js.map +1 -1
- package/dist/esm/interface/conversations.d.ts +27 -27
- package/dist/esm/interface/crud/current-user.d.ts +7 -7
- package/dist/esm/interface/crud/email-outbox.d.ts +156 -156
- package/dist/esm/interface/crud/team-member-profiles.d.ts +18 -18
- package/dist/esm/interface/crud/users.d.ts +10 -10
- package/dist/esm/interface/webhooks.d.ts +2 -2
- package/dist/interface/admin-metrics.d.ts +12 -12
- package/dist/interface/client-interface.js +1 -1
- package/dist/interface/client-interface.js.map +1 -1
- package/dist/interface/conversations.d.ts +27 -27
- package/dist/interface/crud/current-user.d.ts +7 -7
- package/dist/interface/crud/email-outbox.d.ts +156 -156
- package/dist/interface/crud/team-member-profiles.d.ts +18 -18
- package/dist/interface/crud/users.d.ts +10 -10
- package/dist/interface/webhooks.d.ts +2 -2
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +12 -7
- 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
|
-
|
|
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;
|
|
@@ -9,17 +9,17 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
9
9
|
type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
|
|
10
10
|
} | null;
|
|
11
11
|
primary_email: string | null;
|
|
12
|
-
selected_team_id: string | null;
|
|
13
|
-
is_anonymous: boolean;
|
|
14
|
-
is_restricted: boolean;
|
|
15
|
-
requires_totp_mfa: boolean;
|
|
16
12
|
display_name: string | null;
|
|
17
13
|
client_metadata: {} | null;
|
|
18
14
|
client_read_only_metadata: {} | null;
|
|
19
15
|
id: string;
|
|
20
|
-
|
|
16
|
+
selected_team_id: string | null;
|
|
17
|
+
is_anonymous: boolean;
|
|
18
|
+
is_restricted: boolean;
|
|
19
|
+
requires_totp_mfa: 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;
|
|
@@ -174,9 +174,9 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
174
174
|
}, "">;
|
|
175
175
|
clientUpdateSchema: yup$1.ObjectSchema<{
|
|
176
176
|
primary_email: string | null | undefined;
|
|
177
|
-
selected_team_id: string | null | undefined;
|
|
178
177
|
display_name: string | null | undefined;
|
|
179
178
|
client_metadata: {} | null | undefined;
|
|
179
|
+
selected_team_id: string | null | undefined;
|
|
180
180
|
profile_image_url: string | null | undefined;
|
|
181
181
|
otp_auth_enabled: boolean | undefined;
|
|
182
182
|
passkey_auth_enabled: boolean | undefined;
|