@hexclave/shared 1.0.11 → 1.0.13
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-parts/ai-setup-prompt.d.ts.map +1 -1
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js +1 -2
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +165 -165
- package/dist/esm/ai/unified-prompts/reminders.js +1 -1
- 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 +1 -2
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +165 -165
- package/dist/esm/interface/admin-metrics.d.ts +2 -2
- package/dist/esm/interface/conversations.d.ts +8 -8
- package/dist/esm/interface/crud/current-user.d.ts +7 -7
- package/dist/esm/interface/crud/email-outbox.d.ts +246 -246
- package/dist/esm/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/esm/interface/crud/projects.d.ts +99 -99
- package/dist/esm/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/esm/interface/crud/users.d.ts +6 -6
- package/dist/esm/interface/webhooks.d.ts +2 -2
- package/dist/interface/admin-metrics.d.ts +2 -2
- package/dist/interface/conversations.d.ts +8 -8
- package/dist/interface/crud/current-user.d.ts +7 -7
- package/dist/interface/crud/email-outbox.d.ts +246 -246
- package/dist/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/interface/crud/projects.d.ts +99 -99
- package/dist/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/interface/crud/users.d.ts +6 -6
- 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 +1 -2
|
@@ -159,8 +159,8 @@ declare const MetricsEmailOverviewSchema: yup.ObjectSchema<{
|
|
|
159
159
|
recent_emails: {
|
|
160
160
|
status: string;
|
|
161
161
|
id: string;
|
|
162
|
-
subject: string;
|
|
163
162
|
created_at_millis: number;
|
|
163
|
+
subject: string;
|
|
164
164
|
}[];
|
|
165
165
|
deliverability_status: {
|
|
166
166
|
error: number;
|
|
@@ -498,8 +498,8 @@ declare const MetricsResponseBodySchema: yup.ObjectSchema<{
|
|
|
498
498
|
recent_emails: {
|
|
499
499
|
status: string;
|
|
500
500
|
id: string;
|
|
501
|
-
subject: string;
|
|
502
501
|
created_at_millis: number;
|
|
502
|
+
subject: string;
|
|
503
503
|
}[];
|
|
504
504
|
deliverability_status: {
|
|
505
505
|
error: number;
|
|
@@ -49,7 +49,7 @@ declare const conversationSummarySchema: yup$1.ObjectSchema<{
|
|
|
49
49
|
userPrimaryEmail: string | null;
|
|
50
50
|
userProfileImageUrl: string | null;
|
|
51
51
|
subject: string;
|
|
52
|
-
status: "
|
|
52
|
+
status: "pending" | "open" | "closed";
|
|
53
53
|
priority: "low" | "normal" | "high" | "urgent";
|
|
54
54
|
source: "email" | "manual" | "chat" | "api";
|
|
55
55
|
lastMessageType: "message" | "internal-note" | "status-change";
|
|
@@ -129,7 +129,7 @@ declare const conversationMessageSchema: yup$1.ObjectSchema<{
|
|
|
129
129
|
userId: string | null;
|
|
130
130
|
teamId: string | null;
|
|
131
131
|
subject: string;
|
|
132
|
-
status: "
|
|
132
|
+
status: "pending" | "open" | "closed";
|
|
133
133
|
priority: "low" | "normal" | "high" | "urgent";
|
|
134
134
|
source: "email" | "manual" | "chat" | "api";
|
|
135
135
|
messageType: "message" | "internal-note" | "status-change";
|
|
@@ -173,8 +173,7 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
173
173
|
lastOutboundAt?: string | null | undefined;
|
|
174
174
|
closedAt?: string | null | undefined;
|
|
175
175
|
recordMetadata?: {} | null | undefined;
|
|
176
|
-
status: "
|
|
177
|
-
subject: string;
|
|
176
|
+
status: "pending" | "open" | "closed";
|
|
178
177
|
source: "email" | "manual" | "chat" | "api";
|
|
179
178
|
metadata: {
|
|
180
179
|
tags: string[];
|
|
@@ -187,6 +186,7 @@ declare const conversationListResponseSchema: yup$1.ObjectSchema<{
|
|
|
187
186
|
lastAgentReplyAt: string | null;
|
|
188
187
|
};
|
|
189
188
|
priority: "low" | "normal" | "high" | "urgent";
|
|
189
|
+
subject: string;
|
|
190
190
|
conversationId: string;
|
|
191
191
|
userId: string | null;
|
|
192
192
|
teamId: string | null;
|
|
@@ -211,8 +211,7 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
211
211
|
lastOutboundAt?: string | null | undefined;
|
|
212
212
|
closedAt?: string | null | undefined;
|
|
213
213
|
recordMetadata?: {} | null | undefined;
|
|
214
|
-
status: "
|
|
215
|
-
subject: string;
|
|
214
|
+
status: "pending" | "open" | "closed";
|
|
216
215
|
source: "email" | "manual" | "chat" | "api";
|
|
217
216
|
metadata: {
|
|
218
217
|
tags: string[];
|
|
@@ -225,6 +224,7 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
225
224
|
lastAgentReplyAt: string | null;
|
|
226
225
|
};
|
|
227
226
|
priority: "low" | "normal" | "high" | "urgent";
|
|
227
|
+
subject: string;
|
|
228
228
|
conversationId: string;
|
|
229
229
|
userId: string | null;
|
|
230
230
|
teamId: string | null;
|
|
@@ -236,13 +236,13 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
236
236
|
lastActivityAt: string;
|
|
237
237
|
};
|
|
238
238
|
messages: {
|
|
239
|
-
status: "
|
|
239
|
+
status: "pending" | "open" | "closed";
|
|
240
240
|
id: string;
|
|
241
|
-
subject: string;
|
|
242
241
|
body: string | null;
|
|
243
242
|
source: "email" | "manual" | "chat" | "api";
|
|
244
243
|
metadata: {} | null;
|
|
245
244
|
priority: "low" | "normal" | "high" | "urgent";
|
|
245
|
+
subject: string;
|
|
246
246
|
conversationId: string;
|
|
247
247
|
userId: string | null;
|
|
248
248
|
teamId: string | null;
|
|
@@ -17,19 +17,19 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
17
17
|
is_anonymous: boolean;
|
|
18
18
|
is_restricted: boolean;
|
|
19
19
|
requires_totp_mfa: boolean;
|
|
20
|
-
profile_image_url: string | null;
|
|
21
|
-
oauth_providers: {
|
|
22
|
-
email?: string | null | undefined;
|
|
23
|
-
id: string;
|
|
24
|
-
account_id: string;
|
|
25
|
-
}[];
|
|
26
20
|
primary_email_verified: boolean;
|
|
21
|
+
profile_image_url: string | null;
|
|
27
22
|
signed_up_at_millis: number;
|
|
28
23
|
has_password: boolean;
|
|
29
24
|
otp_auth_enabled: boolean;
|
|
30
25
|
passkey_auth_enabled: boolean;
|
|
31
26
|
restricted_by_admin: boolean;
|
|
32
27
|
restricted_by_admin_reason: string | null;
|
|
28
|
+
oauth_providers: {
|
|
29
|
+
email?: string | null | undefined;
|
|
30
|
+
id: string;
|
|
31
|
+
account_id: string;
|
|
32
|
+
}[];
|
|
33
33
|
auth_with_email: boolean;
|
|
34
34
|
} & {
|
|
35
35
|
selected_team: {
|
|
@@ -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
|
-
created_at_millis: number;
|
|
97
96
|
profile_image_url: string | null;
|
|
97
|
+
created_at_millis: number;
|
|
98
98
|
} | null;
|
|
99
99
|
selected_team_id: string | null;
|
|
100
100
|
profile_image_url: string | null;
|