@hexclave/shared 1.0.5 → 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.
- 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 +10 -7
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +70 -70
- 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 +10 -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 +70 -70
- package/dist/esm/hooks/use-async-callback.js +1 -1
- package/dist/esm/hooks/use-async-external-store.js +1 -1
- package/dist/esm/hooks/use-strict-memo.js +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +4 -4
- 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 +8 -8
- package/dist/esm/interface/crud/current-user.d.ts +5 -5
- package/dist/esm/interface/crud/email-outbox.d.ts +44 -44
- package/dist/esm/interface/crud/products.d.ts +1 -1
- package/dist/esm/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/esm/interface/crud/projects.d.ts +28 -28
- package/dist/esm/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/esm/interface/crud/users.d.ts +12 -12
- package/dist/esm/interface/webhooks.d.ts +4 -4
- package/dist/esm/known-errors.d.ts +1 -1
- package/dist/esm/known-errors.d.ts.map +1 -1
- package/dist/esm/known-errors.js +5 -1
- package/dist/esm/known-errors.js.map +1 -1
- package/dist/hooks/use-async-callback.js +1 -1
- package/dist/hooks/use-async-external-store.js +1 -1
- package/dist/hooks/use-strict-memo.js +1 -1
- package/dist/interface/admin-metrics.d.ts +4 -4
- package/dist/interface/client-interface.js +1 -1
- package/dist/interface/client-interface.js.map +1 -1
- package/dist/interface/conversations.d.ts +8 -8
- package/dist/interface/crud/current-user.d.ts +5 -5
- package/dist/interface/crud/email-outbox.d.ts +44 -44
- package/dist/interface/crud/products.d.ts +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +2 -2
- package/dist/interface/crud/projects.d.ts +28 -28
- package/dist/interface/crud/team-member-profiles.d.ts +14 -14
- package/dist/interface/crud/users.d.ts +12 -12
- package/dist/interface/webhooks.d.ts +4 -4
- package/dist/known-errors.d.ts +1 -1
- package/dist/known-errors.d.ts.map +1 -1
- package/dist/known-errors.js +5 -1
- package/dist/known-errors.js.map +1 -1
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +10 -7
- package/src/interface/client-interface.ts +2 -2
- package/src/known-errors.tsx +5 -2
|
@@ -139,8 +139,8 @@ declare const conversationMessageSchema: yup$1.ObjectSchema<{
|
|
|
139
139
|
createdAt: string;
|
|
140
140
|
sender: {
|
|
141
141
|
type: "user" | "agent" | "system";
|
|
142
|
-
id: string | null;
|
|
143
142
|
displayName: string | null;
|
|
143
|
+
id: string | null;
|
|
144
144
|
primaryEmail: string | null;
|
|
145
145
|
};
|
|
146
146
|
}, yup$1.AnyObject, {
|
|
@@ -174,14 +174,14 @@ 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;
|
|
177
179
|
conversationId: string;
|
|
178
180
|
userId: string | null;
|
|
179
181
|
teamId: string | null;
|
|
180
182
|
userDisplayName: string | null;
|
|
181
183
|
userPrimaryEmail: string | null;
|
|
182
184
|
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;
|
|
@@ -212,14 +212,14 @@ 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;
|
|
215
217
|
conversationId: string;
|
|
216
218
|
userId: string | null;
|
|
217
219
|
teamId: string | null;
|
|
218
220
|
userDisplayName: string | null;
|
|
219
221
|
userPrimaryEmail: string | null;
|
|
220
222
|
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;
|
|
@@ -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;
|
|
241
243
|
conversationId: string;
|
|
242
244
|
userId: string | null;
|
|
243
245
|
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;
|
|
@@ -251,8 +251,8 @@ declare const conversationDetailResponseSchema: yup$1.ObjectSchema<{
|
|
|
251
251
|
attachments: {}[];
|
|
252
252
|
sender: {
|
|
253
253
|
type: "user" | "agent" | "system";
|
|
254
|
-
id: string | null;
|
|
255
254
|
displayName: string | null;
|
|
255
|
+
id: string | null;
|
|
256
256
|
primaryEmail: string | null;
|
|
257
257
|
};
|
|
258
258
|
}[];
|
|
@@ -13,13 +13,13 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
13
13
|
is_anonymous: boolean;
|
|
14
14
|
is_restricted: boolean;
|
|
15
15
|
requires_totp_mfa: boolean;
|
|
16
|
-
id: string;
|
|
17
16
|
display_name: string | null;
|
|
18
17
|
client_metadata: {} | null;
|
|
19
18
|
client_read_only_metadata: {} | null;
|
|
20
|
-
|
|
19
|
+
id: string;
|
|
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;
|
|
@@ -35,8 +35,8 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
35
35
|
selected_team: {
|
|
36
36
|
client_metadata?: {} | null | undefined;
|
|
37
37
|
client_read_only_metadata?: {} | null | undefined;
|
|
38
|
-
id: string;
|
|
39
38
|
display_name: string;
|
|
39
|
+
id: string;
|
|
40
40
|
profile_image_url: string | null;
|
|
41
41
|
} | null;
|
|
42
42
|
}, yup$1.AnyObject, {
|
|
@@ -91,10 +91,10 @@ declare const currentUserCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
91
91
|
client_metadata?: {} | null | undefined;
|
|
92
92
|
client_read_only_metadata?: {} | null | undefined;
|
|
93
93
|
server_metadata?: {} | null | undefined;
|
|
94
|
-
id: string;
|
|
95
94
|
display_name: string;
|
|
96
|
-
|
|
95
|
+
id: string;
|
|
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;
|
|
@@ -164,8 +164,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
164
164
|
id: string;
|
|
165
165
|
subject: string;
|
|
166
166
|
created_at_millis: number;
|
|
167
|
-
html: string | null;
|
|
168
|
-
text: string | null;
|
|
169
167
|
updated_at_millis: number;
|
|
170
168
|
tsx_source: string;
|
|
171
169
|
theme_id: string | null;
|
|
@@ -202,6 +200,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
202
200
|
has_delivered: boolean;
|
|
203
201
|
started_rendering_at_millis: number;
|
|
204
202
|
rendered_at_millis: number;
|
|
203
|
+
html: string | null;
|
|
204
|
+
text: string | null;
|
|
205
205
|
is_transactional: boolean;
|
|
206
206
|
is_high_priority: boolean;
|
|
207
207
|
notification_category_id: string | null;
|
|
@@ -210,8 +210,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
210
210
|
id: string;
|
|
211
211
|
subject: string;
|
|
212
212
|
created_at_millis: number;
|
|
213
|
-
html: string | null;
|
|
214
|
-
text: string | null;
|
|
215
213
|
updated_at_millis: number;
|
|
216
214
|
tsx_source: string;
|
|
217
215
|
theme_id: string | null;
|
|
@@ -248,6 +246,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
248
246
|
has_delivered: boolean;
|
|
249
247
|
started_rendering_at_millis: number;
|
|
250
248
|
rendered_at_millis: number;
|
|
249
|
+
html: string | null;
|
|
250
|
+
text: string | null;
|
|
251
251
|
is_transactional: boolean;
|
|
252
252
|
is_high_priority: boolean;
|
|
253
253
|
notification_category_id: string | null;
|
|
@@ -256,8 +256,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
256
256
|
id: string;
|
|
257
257
|
subject: string;
|
|
258
258
|
created_at_millis: number;
|
|
259
|
-
html: string | null;
|
|
260
|
-
text: string | null;
|
|
261
259
|
updated_at_millis: number;
|
|
262
260
|
tsx_source: string;
|
|
263
261
|
theme_id: string | null;
|
|
@@ -294,6 +292,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
294
292
|
has_delivered: boolean;
|
|
295
293
|
started_rendering_at_millis: number;
|
|
296
294
|
rendered_at_millis: number;
|
|
295
|
+
html: string | null;
|
|
296
|
+
text: string | null;
|
|
297
297
|
is_transactional: boolean;
|
|
298
298
|
is_high_priority: boolean;
|
|
299
299
|
notification_category_id: string | null;
|
|
@@ -303,8 +303,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
303
303
|
id: string;
|
|
304
304
|
subject: string;
|
|
305
305
|
created_at_millis: number;
|
|
306
|
-
html: string | null;
|
|
307
|
-
text: string | null;
|
|
308
306
|
updated_at_millis: number;
|
|
309
307
|
tsx_source: string;
|
|
310
308
|
theme_id: string | null;
|
|
@@ -341,6 +339,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
341
339
|
has_delivered: boolean;
|
|
342
340
|
started_rendering_at_millis: number;
|
|
343
341
|
rendered_at_millis: number;
|
|
342
|
+
html: string | null;
|
|
343
|
+
text: string | null;
|
|
344
344
|
is_transactional: boolean;
|
|
345
345
|
is_high_priority: boolean;
|
|
346
346
|
notification_category_id: string | null;
|
|
@@ -349,10 +349,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
349
349
|
server_error: string;
|
|
350
350
|
} | {
|
|
351
351
|
subject?: string | undefined;
|
|
352
|
-
html?: string | null | undefined;
|
|
353
|
-
text?: string | null | undefined;
|
|
354
352
|
started_rendering_at_millis?: number | undefined;
|
|
355
353
|
rendered_at_millis?: number | undefined;
|
|
354
|
+
html?: string | null | undefined;
|
|
355
|
+
text?: string | null | undefined;
|
|
356
356
|
is_transactional?: boolean | undefined;
|
|
357
357
|
is_high_priority?: boolean | undefined;
|
|
358
358
|
notification_category_id?: string | null | undefined;
|
|
@@ -402,8 +402,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
402
402
|
id: string;
|
|
403
403
|
subject: string;
|
|
404
404
|
created_at_millis: number;
|
|
405
|
-
html: string | null;
|
|
406
|
-
text: string | null;
|
|
407
405
|
updated_at_millis: number;
|
|
408
406
|
tsx_source: string;
|
|
409
407
|
theme_id: string | null;
|
|
@@ -440,6 +438,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
440
438
|
has_delivered: boolean;
|
|
441
439
|
started_rendering_at_millis: number;
|
|
442
440
|
rendered_at_millis: number;
|
|
441
|
+
html: string | null;
|
|
442
|
+
text: string | null;
|
|
443
443
|
is_transactional: boolean;
|
|
444
444
|
is_high_priority: boolean;
|
|
445
445
|
notification_category_id: string | null;
|
|
@@ -450,8 +450,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
450
450
|
id: string;
|
|
451
451
|
subject: string;
|
|
452
452
|
created_at_millis: number;
|
|
453
|
-
html: string | null;
|
|
454
|
-
text: string | null;
|
|
455
453
|
updated_at_millis: number;
|
|
456
454
|
tsx_source: string;
|
|
457
455
|
theme_id: string | null;
|
|
@@ -488,6 +486,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
488
486
|
has_delivered: boolean;
|
|
489
487
|
started_rendering_at_millis: number;
|
|
490
488
|
rendered_at_millis: number;
|
|
489
|
+
html: string | null;
|
|
490
|
+
text: string | null;
|
|
491
491
|
is_transactional: boolean;
|
|
492
492
|
is_high_priority: boolean;
|
|
493
493
|
notification_category_id: string | null;
|
|
@@ -498,8 +498,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
498
498
|
id: string;
|
|
499
499
|
subject: string;
|
|
500
500
|
created_at_millis: number;
|
|
501
|
-
html: string | null;
|
|
502
|
-
text: string | null;
|
|
503
501
|
updated_at_millis: number;
|
|
504
502
|
tsx_source: string;
|
|
505
503
|
theme_id: string | null;
|
|
@@ -536,6 +534,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
536
534
|
has_delivered: boolean;
|
|
537
535
|
started_rendering_at_millis: number;
|
|
538
536
|
rendered_at_millis: number;
|
|
537
|
+
html: string | null;
|
|
538
|
+
text: string | null;
|
|
539
539
|
is_transactional: boolean;
|
|
540
540
|
is_high_priority: boolean;
|
|
541
541
|
notification_category_id: string | null;
|
|
@@ -547,8 +547,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
547
547
|
id: string;
|
|
548
548
|
subject: string;
|
|
549
549
|
created_at_millis: number;
|
|
550
|
-
html: string | null;
|
|
551
|
-
text: string | null;
|
|
552
550
|
updated_at_millis: number;
|
|
553
551
|
tsx_source: string;
|
|
554
552
|
theme_id: string | null;
|
|
@@ -585,6 +583,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
585
583
|
has_delivered: boolean;
|
|
586
584
|
started_rendering_at_millis: number;
|
|
587
585
|
rendered_at_millis: number;
|
|
586
|
+
html: string | null;
|
|
587
|
+
text: string | null;
|
|
588
588
|
is_transactional: boolean;
|
|
589
589
|
is_high_priority: boolean;
|
|
590
590
|
notification_category_id: string | null;
|
|
@@ -597,8 +597,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
597
597
|
id: string;
|
|
598
598
|
subject: string;
|
|
599
599
|
created_at_millis: number;
|
|
600
|
-
html: string | null;
|
|
601
|
-
text: string | null;
|
|
602
600
|
updated_at_millis: number;
|
|
603
601
|
tsx_source: string;
|
|
604
602
|
theme_id: string | null;
|
|
@@ -635,6 +633,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
635
633
|
has_delivered: boolean;
|
|
636
634
|
started_rendering_at_millis: number;
|
|
637
635
|
rendered_at_millis: number;
|
|
636
|
+
html: string | null;
|
|
637
|
+
text: string | null;
|
|
638
638
|
is_transactional: boolean;
|
|
639
639
|
is_high_priority: boolean;
|
|
640
640
|
notification_category_id: string | null;
|
|
@@ -647,8 +647,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
647
647
|
id: string;
|
|
648
648
|
subject: string;
|
|
649
649
|
created_at_millis: number;
|
|
650
|
-
html: string | null;
|
|
651
|
-
text: string | null;
|
|
652
650
|
updated_at_millis: number;
|
|
653
651
|
tsx_source: string;
|
|
654
652
|
theme_id: string | null;
|
|
@@ -685,6 +683,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
685
683
|
has_delivered: boolean;
|
|
686
684
|
started_rendering_at_millis: number;
|
|
687
685
|
rendered_at_millis: number;
|
|
686
|
+
html: string | null;
|
|
687
|
+
text: string | null;
|
|
688
688
|
is_transactional: boolean;
|
|
689
689
|
is_high_priority: boolean;
|
|
690
690
|
notification_category_id: string | null;
|
|
@@ -884,8 +884,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
884
884
|
id: string;
|
|
885
885
|
subject: string;
|
|
886
886
|
created_at_millis: number;
|
|
887
|
-
html: string | null;
|
|
888
|
-
text: string | null;
|
|
889
887
|
updated_at_millis: number;
|
|
890
888
|
tsx_source: string;
|
|
891
889
|
theme_id: string | null;
|
|
@@ -922,6 +920,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
922
920
|
has_delivered: boolean;
|
|
923
921
|
started_rendering_at_millis: number;
|
|
924
922
|
rendered_at_millis: number;
|
|
923
|
+
html: string | null;
|
|
924
|
+
text: string | null;
|
|
925
925
|
is_transactional: boolean;
|
|
926
926
|
is_high_priority: boolean;
|
|
927
927
|
notification_category_id: string | null;
|
|
@@ -930,8 +930,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
930
930
|
id: string;
|
|
931
931
|
subject: string;
|
|
932
932
|
created_at_millis: number;
|
|
933
|
-
html: string | null;
|
|
934
|
-
text: string | null;
|
|
935
933
|
updated_at_millis: number;
|
|
936
934
|
tsx_source: string;
|
|
937
935
|
theme_id: string | null;
|
|
@@ -968,6 +966,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
968
966
|
has_delivered: boolean;
|
|
969
967
|
started_rendering_at_millis: number;
|
|
970
968
|
rendered_at_millis: number;
|
|
969
|
+
html: string | null;
|
|
970
|
+
text: string | null;
|
|
971
971
|
is_transactional: boolean;
|
|
972
972
|
is_high_priority: boolean;
|
|
973
973
|
notification_category_id: string | null;
|
|
@@ -976,8 +976,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
976
976
|
id: string;
|
|
977
977
|
subject: string;
|
|
978
978
|
created_at_millis: number;
|
|
979
|
-
html: string | null;
|
|
980
|
-
text: string | null;
|
|
981
979
|
updated_at_millis: number;
|
|
982
980
|
tsx_source: string;
|
|
983
981
|
theme_id: string | null;
|
|
@@ -1014,6 +1012,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1014
1012
|
has_delivered: boolean;
|
|
1015
1013
|
started_rendering_at_millis: number;
|
|
1016
1014
|
rendered_at_millis: number;
|
|
1015
|
+
html: string | null;
|
|
1016
|
+
text: string | null;
|
|
1017
1017
|
is_transactional: boolean;
|
|
1018
1018
|
is_high_priority: boolean;
|
|
1019
1019
|
notification_category_id: string | null;
|
|
@@ -1023,8 +1023,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1023
1023
|
id: string;
|
|
1024
1024
|
subject: string;
|
|
1025
1025
|
created_at_millis: number;
|
|
1026
|
-
html: string | null;
|
|
1027
|
-
text: string | null;
|
|
1028
1026
|
updated_at_millis: number;
|
|
1029
1027
|
tsx_source: string;
|
|
1030
1028
|
theme_id: string | null;
|
|
@@ -1061,6 +1059,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1061
1059
|
has_delivered: boolean;
|
|
1062
1060
|
started_rendering_at_millis: number;
|
|
1063
1061
|
rendered_at_millis: number;
|
|
1062
|
+
html: string | null;
|
|
1063
|
+
text: string | null;
|
|
1064
1064
|
is_transactional: boolean;
|
|
1065
1065
|
is_high_priority: boolean;
|
|
1066
1066
|
notification_category_id: string | null;
|
|
@@ -1069,10 +1069,10 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1069
1069
|
server_error: string;
|
|
1070
1070
|
} | {
|
|
1071
1071
|
subject?: string | undefined;
|
|
1072
|
-
html?: string | null | undefined;
|
|
1073
|
-
text?: string | null | undefined;
|
|
1074
1072
|
started_rendering_at_millis?: number | undefined;
|
|
1075
1073
|
rendered_at_millis?: number | undefined;
|
|
1074
|
+
html?: string | null | undefined;
|
|
1075
|
+
text?: string | null | undefined;
|
|
1076
1076
|
is_transactional?: boolean | undefined;
|
|
1077
1077
|
is_high_priority?: boolean | undefined;
|
|
1078
1078
|
notification_category_id?: string | null | undefined;
|
|
@@ -1122,8 +1122,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1122
1122
|
id: string;
|
|
1123
1123
|
subject: string;
|
|
1124
1124
|
created_at_millis: number;
|
|
1125
|
-
html: string | null;
|
|
1126
|
-
text: string | null;
|
|
1127
1125
|
updated_at_millis: number;
|
|
1128
1126
|
tsx_source: string;
|
|
1129
1127
|
theme_id: string | null;
|
|
@@ -1160,6 +1158,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1160
1158
|
has_delivered: boolean;
|
|
1161
1159
|
started_rendering_at_millis: number;
|
|
1162
1160
|
rendered_at_millis: number;
|
|
1161
|
+
html: string | null;
|
|
1162
|
+
text: string | null;
|
|
1163
1163
|
is_transactional: boolean;
|
|
1164
1164
|
is_high_priority: boolean;
|
|
1165
1165
|
notification_category_id: string | null;
|
|
@@ -1170,8 +1170,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1170
1170
|
id: string;
|
|
1171
1171
|
subject: string;
|
|
1172
1172
|
created_at_millis: number;
|
|
1173
|
-
html: string | null;
|
|
1174
|
-
text: string | null;
|
|
1175
1173
|
updated_at_millis: number;
|
|
1176
1174
|
tsx_source: string;
|
|
1177
1175
|
theme_id: string | null;
|
|
@@ -1208,6 +1206,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1208
1206
|
has_delivered: boolean;
|
|
1209
1207
|
started_rendering_at_millis: number;
|
|
1210
1208
|
rendered_at_millis: number;
|
|
1209
|
+
html: string | null;
|
|
1210
|
+
text: string | null;
|
|
1211
1211
|
is_transactional: boolean;
|
|
1212
1212
|
is_high_priority: boolean;
|
|
1213
1213
|
notification_category_id: string | null;
|
|
@@ -1218,8 +1218,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1218
1218
|
id: string;
|
|
1219
1219
|
subject: string;
|
|
1220
1220
|
created_at_millis: number;
|
|
1221
|
-
html: string | null;
|
|
1222
|
-
text: string | null;
|
|
1223
1221
|
updated_at_millis: number;
|
|
1224
1222
|
tsx_source: string;
|
|
1225
1223
|
theme_id: string | null;
|
|
@@ -1256,6 +1254,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1256
1254
|
has_delivered: boolean;
|
|
1257
1255
|
started_rendering_at_millis: number;
|
|
1258
1256
|
rendered_at_millis: number;
|
|
1257
|
+
html: string | null;
|
|
1258
|
+
text: string | null;
|
|
1259
1259
|
is_transactional: boolean;
|
|
1260
1260
|
is_high_priority: boolean;
|
|
1261
1261
|
notification_category_id: string | null;
|
|
@@ -1267,8 +1267,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1267
1267
|
id: string;
|
|
1268
1268
|
subject: string;
|
|
1269
1269
|
created_at_millis: number;
|
|
1270
|
-
html: string | null;
|
|
1271
|
-
text: string | null;
|
|
1272
1270
|
updated_at_millis: number;
|
|
1273
1271
|
tsx_source: string;
|
|
1274
1272
|
theme_id: string | null;
|
|
@@ -1305,6 +1303,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1305
1303
|
has_delivered: boolean;
|
|
1306
1304
|
started_rendering_at_millis: number;
|
|
1307
1305
|
rendered_at_millis: number;
|
|
1306
|
+
html: string | null;
|
|
1307
|
+
text: string | null;
|
|
1308
1308
|
is_transactional: boolean;
|
|
1309
1309
|
is_high_priority: boolean;
|
|
1310
1310
|
notification_category_id: string | null;
|
|
@@ -1317,8 +1317,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1317
1317
|
id: string;
|
|
1318
1318
|
subject: string;
|
|
1319
1319
|
created_at_millis: number;
|
|
1320
|
-
html: string | null;
|
|
1321
|
-
text: string | null;
|
|
1322
1320
|
updated_at_millis: number;
|
|
1323
1321
|
tsx_source: string;
|
|
1324
1322
|
theme_id: string | null;
|
|
@@ -1355,6 +1353,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1355
1353
|
has_delivered: boolean;
|
|
1356
1354
|
started_rendering_at_millis: number;
|
|
1357
1355
|
rendered_at_millis: number;
|
|
1356
|
+
html: string | null;
|
|
1357
|
+
text: string | null;
|
|
1358
1358
|
is_transactional: boolean;
|
|
1359
1359
|
is_high_priority: boolean;
|
|
1360
1360
|
notification_category_id: string | null;
|
|
@@ -1367,8 +1367,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1367
1367
|
id: string;
|
|
1368
1368
|
subject: string;
|
|
1369
1369
|
created_at_millis: number;
|
|
1370
|
-
html: string | null;
|
|
1371
|
-
text: string | null;
|
|
1372
1370
|
updated_at_millis: number;
|
|
1373
1371
|
tsx_source: string;
|
|
1374
1372
|
theme_id: string | null;
|
|
@@ -1405,6 +1403,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1405
1403
|
has_delivered: boolean;
|
|
1406
1404
|
started_rendering_at_millis: number;
|
|
1407
1405
|
rendered_at_millis: number;
|
|
1406
|
+
html: string | null;
|
|
1407
|
+
text: string | null;
|
|
1408
1408
|
is_transactional: boolean;
|
|
1409
1409
|
is_high_priority: boolean;
|
|
1410
1410
|
notification_category_id: string | null;
|
|
@@ -131,7 +131,6 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
131
131
|
};
|
|
132
132
|
}[] | undefined;
|
|
133
133
|
quantity: number;
|
|
134
|
-
id: string | null;
|
|
135
134
|
product: {
|
|
136
135
|
free_trial?: ______utils_dates0.DayInterval | undefined;
|
|
137
136
|
client_metadata?: {} | null | undefined;
|
|
@@ -158,6 +157,7 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
158
157
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
159
158
|
}>;
|
|
160
159
|
};
|
|
160
|
+
id: string | null;
|
|
161
161
|
}[];
|
|
162
162
|
is_paginated: boolean;
|
|
163
163
|
pagination: {
|
|
@@ -81,8 +81,8 @@ declare const userApiKeysCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
81
81
|
}, "">, userApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
82
82
|
user_id: string;
|
|
83
83
|
type: "user";
|
|
84
|
-
id: string;
|
|
85
84
|
description: string;
|
|
85
|
+
id: string;
|
|
86
86
|
created_at_millis: number;
|
|
87
87
|
expires_at_millis: number | undefined;
|
|
88
88
|
manually_revoked_at_millis: number | undefined;
|
|
@@ -179,8 +179,8 @@ declare const teamApiKeysCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
179
179
|
}, "">, teamApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
180
180
|
type: "team";
|
|
181
181
|
team_id: string;
|
|
182
|
-
id: string;
|
|
183
182
|
description: string;
|
|
183
|
+
id: string;
|
|
184
184
|
created_at_millis: number;
|
|
185
185
|
expires_at_millis: number | undefined;
|
|
186
186
|
manually_revoked_at_millis: number | undefined;
|
|
@@ -57,6 +57,10 @@ declare const projectsCrudAdminReadSchema: yup$1.ObjectSchema<{
|
|
|
57
57
|
selected_payments_country: "US" | "OTHER";
|
|
58
58
|
} | null | undefined;
|
|
59
59
|
config: {
|
|
60
|
+
domains: {
|
|
61
|
+
domain: string;
|
|
62
|
+
handler_path: string;
|
|
63
|
+
}[];
|
|
60
64
|
oauth_providers: {
|
|
61
65
|
client_id?: string | undefined;
|
|
62
66
|
client_secret?: string | undefined;
|
|
@@ -67,10 +71,6 @@ declare const projectsCrudAdminReadSchema: yup$1.ObjectSchema<{
|
|
|
67
71
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
68
72
|
provider_config_id: string;
|
|
69
73
|
}[];
|
|
70
|
-
domains: {
|
|
71
|
-
domain: string;
|
|
72
|
-
handler_path: string;
|
|
73
|
-
}[];
|
|
74
74
|
allow_localhost: boolean;
|
|
75
75
|
sign_up_enabled: boolean;
|
|
76
76
|
credential_enabled: boolean;
|
|
@@ -210,6 +210,10 @@ declare const projectsCrudAdminUpdateSchema: yup$1.ObjectSchema<{
|
|
|
210
210
|
selected_payments_country: "US" | "OTHER";
|
|
211
211
|
} | null | undefined;
|
|
212
212
|
config: {
|
|
213
|
+
domains?: {
|
|
214
|
+
domain: string;
|
|
215
|
+
handler_path: string;
|
|
216
|
+
}[] | undefined;
|
|
213
217
|
oauth_providers?: {
|
|
214
218
|
client_id?: string | undefined;
|
|
215
219
|
client_secret?: string | undefined;
|
|
@@ -219,10 +223,6 @@ declare const projectsCrudAdminUpdateSchema: yup$1.ObjectSchema<{
|
|
|
219
223
|
type: "shared" | "standard";
|
|
220
224
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
221
225
|
}[] | undefined;
|
|
222
|
-
domains?: {
|
|
223
|
-
domain: string;
|
|
224
|
-
handler_path: string;
|
|
225
|
-
}[] | undefined;
|
|
226
226
|
allow_localhost?: boolean | undefined;
|
|
227
227
|
sign_up_enabled?: boolean | undefined;
|
|
228
228
|
credential_enabled?: boolean | undefined;
|
|
@@ -290,6 +290,10 @@ declare const projectsCrudAdminCreateSchema: yup$1.ObjectSchema<{
|
|
|
290
290
|
selected_payments_country: "US" | "OTHER";
|
|
291
291
|
} | null | undefined;
|
|
292
292
|
config: {
|
|
293
|
+
domains?: {
|
|
294
|
+
domain: string;
|
|
295
|
+
handler_path: string;
|
|
296
|
+
}[] | undefined;
|
|
293
297
|
oauth_providers?: {
|
|
294
298
|
client_id?: string | undefined;
|
|
295
299
|
client_secret?: string | undefined;
|
|
@@ -299,10 +303,6 @@ declare const projectsCrudAdminCreateSchema: yup$1.ObjectSchema<{
|
|
|
299
303
|
type: "shared" | "standard";
|
|
300
304
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
301
305
|
}[] | undefined;
|
|
302
|
-
domains?: {
|
|
303
|
-
domain: string;
|
|
304
|
-
handler_path: string;
|
|
305
|
-
}[] | undefined;
|
|
306
306
|
allow_localhost?: boolean | undefined;
|
|
307
307
|
sign_up_enabled?: boolean | undefined;
|
|
308
308
|
credential_enabled?: boolean | undefined;
|
|
@@ -430,6 +430,10 @@ declare const projectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
430
430
|
selected_payments_country: "US" | "OTHER";
|
|
431
431
|
} | null | undefined;
|
|
432
432
|
config: {
|
|
433
|
+
domains: {
|
|
434
|
+
domain: string;
|
|
435
|
+
handler_path: string;
|
|
436
|
+
}[];
|
|
433
437
|
oauth_providers: {
|
|
434
438
|
client_id?: string | undefined;
|
|
435
439
|
client_secret?: string | undefined;
|
|
@@ -440,10 +444,6 @@ declare const projectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
440
444
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
441
445
|
provider_config_id: string;
|
|
442
446
|
}[];
|
|
443
|
-
domains: {
|
|
444
|
-
domain: string;
|
|
445
|
-
handler_path: string;
|
|
446
|
-
}[];
|
|
447
447
|
allow_localhost: boolean;
|
|
448
448
|
sign_up_enabled: boolean;
|
|
449
449
|
credential_enabled: boolean;
|
|
@@ -545,6 +545,10 @@ declare const projectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
545
545
|
selected_payments_country: "US" | "OTHER";
|
|
546
546
|
} | null | undefined;
|
|
547
547
|
config: {
|
|
548
|
+
domains?: {
|
|
549
|
+
domain: string;
|
|
550
|
+
handler_path: string;
|
|
551
|
+
}[] | undefined;
|
|
548
552
|
oauth_providers?: {
|
|
549
553
|
client_id?: string | undefined;
|
|
550
554
|
client_secret?: string | undefined;
|
|
@@ -554,10 +558,6 @@ declare const projectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
554
558
|
type: "shared" | "standard";
|
|
555
559
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
556
560
|
}[] | undefined;
|
|
557
|
-
domains?: {
|
|
558
|
-
domain: string;
|
|
559
|
-
handler_path: string;
|
|
560
|
-
}[] | undefined;
|
|
561
561
|
allow_localhost?: boolean | undefined;
|
|
562
562
|
sign_up_enabled?: boolean | undefined;
|
|
563
563
|
credential_enabled?: boolean | undefined;
|
|
@@ -653,6 +653,10 @@ declare const adminUserProjectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
653
653
|
selected_payments_country: "US" | "OTHER";
|
|
654
654
|
} | null | undefined;
|
|
655
655
|
config: {
|
|
656
|
+
domains: {
|
|
657
|
+
domain: string;
|
|
658
|
+
handler_path: string;
|
|
659
|
+
}[];
|
|
656
660
|
oauth_providers: {
|
|
657
661
|
client_id?: string | undefined;
|
|
658
662
|
client_secret?: string | undefined;
|
|
@@ -663,10 +667,6 @@ declare const adminUserProjectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
663
667
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
664
668
|
provider_config_id: string;
|
|
665
669
|
}[];
|
|
666
|
-
domains: {
|
|
667
|
-
domain: string;
|
|
668
|
-
handler_path: string;
|
|
669
|
-
}[];
|
|
670
670
|
allow_localhost: boolean;
|
|
671
671
|
sign_up_enabled: boolean;
|
|
672
672
|
credential_enabled: boolean;
|
|
@@ -768,6 +768,10 @@ declare const adminUserProjectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
768
768
|
selected_payments_country: "US" | "OTHER";
|
|
769
769
|
} | null | undefined;
|
|
770
770
|
config: {
|
|
771
|
+
domains?: {
|
|
772
|
+
domain: string;
|
|
773
|
+
handler_path: string;
|
|
774
|
+
}[] | undefined;
|
|
771
775
|
oauth_providers?: {
|
|
772
776
|
client_id?: string | undefined;
|
|
773
777
|
client_secret?: string | undefined;
|
|
@@ -777,10 +781,6 @@ declare const adminUserProjectsCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
777
781
|
type: "shared" | "standard";
|
|
778
782
|
id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
|
|
779
783
|
}[] | undefined;
|
|
780
|
-
domains?: {
|
|
781
|
-
domain: string;
|
|
782
|
-
handler_path: string;
|
|
783
|
-
}[] | undefined;
|
|
784
784
|
allow_localhost?: boolean | undefined;
|
|
785
785
|
sign_up_enabled?: boolean | undefined;
|
|
786
786
|
credential_enabled?: boolean | undefined;
|