@hexclave/shared 1.0.57 → 1.0.58
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/{admin-interface-D6kvAhoP.d.ts → admin-interface-Do9G1zZ8.d.ts} +5 -5
- package/dist/{admin-interface-D6kvAhoP.d.ts.map → admin-interface-Do9G1zZ8.d.ts.map} +1 -1
- package/dist/{admin-metrics-Cs7JjEj4.d.ts → admin-metrics-bsOkw4YQ.d.ts} +4 -4
- package/dist/{admin-metrics-Cs7JjEj4.d.ts.map → admin-metrics-bsOkw4YQ.d.ts.map} +1 -1
- package/dist/{client-interface-CnrY_NEa.d.ts → client-interface-DvkciaL0.d.ts} +3 -3
- package/dist/{client-interface-CnrY_NEa.d.ts.map → client-interface-DvkciaL0.d.ts.map} +1 -1
- package/dist/config/schema.d.ts +1 -1
- package/dist/config-authoring.d.ts +1 -1
- package/dist/{current-user-Dvf8Ttjo.d.ts → current-user-BBoN3hsn.d.ts} +3 -3
- package/dist/{current-user-Dvf8Ttjo.d.ts.map → current-user-BBoN3hsn.d.ts.map} +1 -1
- package/dist/{email-outbox-CJXqsXl0.d.ts → email-outbox-D_wbK759.d.ts} +63 -63
- package/dist/{email-outbox-CJXqsXl0.d.ts.map → email-outbox-D_wbK759.d.ts.map} +1 -1
- package/dist/esm/config/schema.d.ts +155 -155
- package/dist/esm/interface/admin-metrics.d.ts +3 -3
- package/dist/esm/interface/conversations.d.ts +3 -3
- package/dist/esm/interface/crud/current-user.d.ts +2 -2
- package/dist/esm/interface/crud/email-outbox.d.ts +62 -62
- package/dist/esm/interface/crud/team-member-profiles.d.ts +10 -10
- package/dist/esm/interface/crud/users.d.ts +8 -8
- package/dist/esm/interface/webhooks.d.ts +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/interface/admin-interface.d.ts +1 -1
- package/dist/interface/admin-metrics.d.ts +1 -1
- package/dist/interface/client-interface.d.ts +1 -1
- package/dist/interface/conversations.d.ts +3 -3
- package/dist/interface/crud/current-user.d.ts +1 -1
- package/dist/interface/crud/email-outbox.d.ts +1 -1
- package/dist/interface/crud/team-member-profiles.d.ts +1 -1
- package/dist/interface/crud/users.d.ts +1 -1
- package/dist/interface/server-interface.d.ts +1 -1
- package/dist/interface/webhooks.d.ts +1 -1
- package/dist/{schema-CLmaZetm.d.ts → schema-BvjIkl-K.d.ts} +156 -156
- package/dist/{schema-CLmaZetm.d.ts.map → schema-BvjIkl-K.d.ts.map} +1 -1
- package/dist/{server-interface-DipGGXYo.d.ts → server-interface-Ra_vIHP4.d.ts} +5 -5
- package/dist/{server-interface-DipGGXYo.d.ts.map → server-interface-Ra_vIHP4.d.ts.map} +1 -1
- package/dist/{team-member-profiles-uTluO8XI.d.ts → team-member-profiles-BoDEqx-0.d.ts} +11 -11
- package/dist/{team-member-profiles-uTluO8XI.d.ts.map → team-member-profiles-BoDEqx-0.d.ts.map} +1 -1
- package/dist/{users-D9Gnf-Z3.d.ts → users-DHNRwoSz.d.ts} +10 -10
- package/dist/{users-D9Gnf-Z3.d.ts.map → users-DHNRwoSz.d.ts.map} +1 -1
- package/dist/{webhooks-ByXrdSOx.d.ts → webhooks-8Ts1Clcb.d.ts} +3 -3
- package/dist/{webhooks-ByXrdSOx.d.ts.map → webhooks-8Ts1Clcb.d.ts.map} +1 -1
- package/package.json +1 -1
|
@@ -162,6 +162,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
162
162
|
id: string;
|
|
163
163
|
subject: string;
|
|
164
164
|
created_at_millis: number;
|
|
165
|
+
html: string | null;
|
|
166
|
+
text: string | null;
|
|
165
167
|
to: {
|
|
166
168
|
user_id: string;
|
|
167
169
|
type: "user-primary-email";
|
|
@@ -173,8 +175,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
173
175
|
type: "custom-emails";
|
|
174
176
|
emails: string[];
|
|
175
177
|
};
|
|
176
|
-
|
|
177
|
-
text: string | null;
|
|
178
|
+
notification_category_id: string | null;
|
|
178
179
|
updated_at_millis: number;
|
|
179
180
|
tsx_source: string;
|
|
180
181
|
theme_id: string | null;
|
|
@@ -202,12 +203,13 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
202
203
|
rendered_at_millis: number;
|
|
203
204
|
is_transactional: boolean;
|
|
204
205
|
is_high_priority: boolean;
|
|
205
|
-
notification_category_id: string | null;
|
|
206
206
|
} | {
|
|
207
207
|
status: "queued";
|
|
208
208
|
id: string;
|
|
209
209
|
subject: string;
|
|
210
210
|
created_at_millis: number;
|
|
211
|
+
html: string | null;
|
|
212
|
+
text: string | null;
|
|
211
213
|
to: {
|
|
212
214
|
user_id: string;
|
|
213
215
|
type: "user-primary-email";
|
|
@@ -219,8 +221,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
219
221
|
type: "custom-emails";
|
|
220
222
|
emails: string[];
|
|
221
223
|
};
|
|
222
|
-
|
|
223
|
-
text: string | null;
|
|
224
|
+
notification_category_id: string | null;
|
|
224
225
|
updated_at_millis: number;
|
|
225
226
|
tsx_source: string;
|
|
226
227
|
theme_id: string | null;
|
|
@@ -248,12 +249,13 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
248
249
|
rendered_at_millis: number;
|
|
249
250
|
is_transactional: boolean;
|
|
250
251
|
is_high_priority: boolean;
|
|
251
|
-
notification_category_id: string | null;
|
|
252
252
|
} | {
|
|
253
253
|
status: "sending";
|
|
254
254
|
id: string;
|
|
255
255
|
subject: string;
|
|
256
256
|
created_at_millis: number;
|
|
257
|
+
html: string | null;
|
|
258
|
+
text: string | null;
|
|
257
259
|
to: {
|
|
258
260
|
user_id: string;
|
|
259
261
|
type: "user-primary-email";
|
|
@@ -265,8 +267,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
265
267
|
type: "custom-emails";
|
|
266
268
|
emails: string[];
|
|
267
269
|
};
|
|
268
|
-
|
|
269
|
-
text: string | null;
|
|
270
|
+
notification_category_id: string | null;
|
|
270
271
|
updated_at_millis: number;
|
|
271
272
|
tsx_source: string;
|
|
272
273
|
theme_id: string | null;
|
|
@@ -294,13 +295,14 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
294
295
|
rendered_at_millis: number;
|
|
295
296
|
is_transactional: boolean;
|
|
296
297
|
is_high_priority: boolean;
|
|
297
|
-
notification_category_id: string | null;
|
|
298
298
|
started_sending_at_millis: number;
|
|
299
299
|
} | {
|
|
300
300
|
status: "server-error";
|
|
301
301
|
id: string;
|
|
302
302
|
subject: string;
|
|
303
303
|
created_at_millis: number;
|
|
304
|
+
html: string | null;
|
|
305
|
+
text: string | null;
|
|
304
306
|
to: {
|
|
305
307
|
user_id: string;
|
|
306
308
|
type: "user-primary-email";
|
|
@@ -312,8 +314,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
312
314
|
type: "custom-emails";
|
|
313
315
|
emails: string[];
|
|
314
316
|
};
|
|
315
|
-
|
|
316
|
-
text: string | null;
|
|
317
|
+
notification_category_id: string | null;
|
|
317
318
|
updated_at_millis: number;
|
|
318
319
|
tsx_source: string;
|
|
319
320
|
theme_id: string | null;
|
|
@@ -341,7 +342,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
341
342
|
rendered_at_millis: number;
|
|
342
343
|
is_transactional: boolean;
|
|
343
344
|
is_high_priority: boolean;
|
|
344
|
-
notification_category_id: string | null;
|
|
345
345
|
started_sending_at_millis: number;
|
|
346
346
|
error_at_millis: number;
|
|
347
347
|
server_error: string;
|
|
@@ -349,11 +349,11 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
349
349
|
subject?: string | undefined;
|
|
350
350
|
html?: string | null | undefined;
|
|
351
351
|
text?: string | null | undefined;
|
|
352
|
+
notification_category_id?: string | null | undefined;
|
|
352
353
|
started_rendering_at_millis?: number | undefined;
|
|
353
354
|
rendered_at_millis?: number | undefined;
|
|
354
355
|
is_transactional?: boolean | undefined;
|
|
355
356
|
is_high_priority?: boolean | undefined;
|
|
356
|
-
notification_category_id?: string | null | undefined;
|
|
357
357
|
started_sending_at_millis?: number | undefined;
|
|
358
358
|
status: "skipped";
|
|
359
359
|
id: string;
|
|
@@ -400,6 +400,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
400
400
|
id: string;
|
|
401
401
|
subject: string;
|
|
402
402
|
created_at_millis: number;
|
|
403
|
+
html: string | null;
|
|
404
|
+
text: string | null;
|
|
403
405
|
to: {
|
|
404
406
|
user_id: string;
|
|
405
407
|
type: "user-primary-email";
|
|
@@ -411,8 +413,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
411
413
|
type: "custom-emails";
|
|
412
414
|
emails: string[];
|
|
413
415
|
};
|
|
414
|
-
|
|
415
|
-
text: string | null;
|
|
416
|
+
notification_category_id: string | null;
|
|
416
417
|
updated_at_millis: number;
|
|
417
418
|
tsx_source: string;
|
|
418
419
|
theme_id: string | null;
|
|
@@ -440,7 +441,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
440
441
|
rendered_at_millis: number;
|
|
441
442
|
is_transactional: boolean;
|
|
442
443
|
is_high_priority: boolean;
|
|
443
|
-
notification_category_id: string | null;
|
|
444
444
|
started_sending_at_millis: number;
|
|
445
445
|
bounced_at_millis: number;
|
|
446
446
|
} | {
|
|
@@ -448,6 +448,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
448
448
|
id: string;
|
|
449
449
|
subject: string;
|
|
450
450
|
created_at_millis: number;
|
|
451
|
+
html: string | null;
|
|
452
|
+
text: string | null;
|
|
451
453
|
to: {
|
|
452
454
|
user_id: string;
|
|
453
455
|
type: "user-primary-email";
|
|
@@ -459,8 +461,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
459
461
|
type: "custom-emails";
|
|
460
462
|
emails: string[];
|
|
461
463
|
};
|
|
462
|
-
|
|
463
|
-
text: string | null;
|
|
464
|
+
notification_category_id: string | null;
|
|
464
465
|
updated_at_millis: number;
|
|
465
466
|
tsx_source: string;
|
|
466
467
|
theme_id: string | null;
|
|
@@ -488,7 +489,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
488
489
|
rendered_at_millis: number;
|
|
489
490
|
is_transactional: boolean;
|
|
490
491
|
is_high_priority: boolean;
|
|
491
|
-
notification_category_id: string | null;
|
|
492
492
|
started_sending_at_millis: number;
|
|
493
493
|
delivery_delayed_at_millis: number;
|
|
494
494
|
} | {
|
|
@@ -496,6 +496,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
496
496
|
id: string;
|
|
497
497
|
subject: string;
|
|
498
498
|
created_at_millis: number;
|
|
499
|
+
html: string | null;
|
|
500
|
+
text: string | null;
|
|
499
501
|
to: {
|
|
500
502
|
user_id: string;
|
|
501
503
|
type: "user-primary-email";
|
|
@@ -507,8 +509,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
507
509
|
type: "custom-emails";
|
|
508
510
|
emails: string[];
|
|
509
511
|
};
|
|
510
|
-
|
|
511
|
-
text: string | null;
|
|
512
|
+
notification_category_id: string | null;
|
|
512
513
|
updated_at_millis: number;
|
|
513
514
|
tsx_source: string;
|
|
514
515
|
theme_id: string | null;
|
|
@@ -536,7 +537,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
536
537
|
rendered_at_millis: number;
|
|
537
538
|
is_transactional: boolean;
|
|
538
539
|
is_high_priority: boolean;
|
|
539
|
-
notification_category_id: string | null;
|
|
540
540
|
started_sending_at_millis: number;
|
|
541
541
|
delivered_at_millis: number;
|
|
542
542
|
can_have_delivery_info: boolean;
|
|
@@ -545,6 +545,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
545
545
|
id: string;
|
|
546
546
|
subject: string;
|
|
547
547
|
created_at_millis: number;
|
|
548
|
+
html: string | null;
|
|
549
|
+
text: string | null;
|
|
548
550
|
to: {
|
|
549
551
|
user_id: string;
|
|
550
552
|
type: "user-primary-email";
|
|
@@ -556,8 +558,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
556
558
|
type: "custom-emails";
|
|
557
559
|
emails: string[];
|
|
558
560
|
};
|
|
559
|
-
|
|
560
|
-
text: string | null;
|
|
561
|
+
notification_category_id: string | null;
|
|
561
562
|
updated_at_millis: number;
|
|
562
563
|
tsx_source: string;
|
|
563
564
|
theme_id: string | null;
|
|
@@ -585,7 +586,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
585
586
|
rendered_at_millis: number;
|
|
586
587
|
is_transactional: boolean;
|
|
587
588
|
is_high_priority: boolean;
|
|
588
|
-
notification_category_id: string | null;
|
|
589
589
|
started_sending_at_millis: number;
|
|
590
590
|
delivered_at_millis: number;
|
|
591
591
|
can_have_delivery_info: boolean;
|
|
@@ -595,6 +595,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
595
595
|
id: string;
|
|
596
596
|
subject: string;
|
|
597
597
|
created_at_millis: number;
|
|
598
|
+
html: string | null;
|
|
599
|
+
text: string | null;
|
|
598
600
|
to: {
|
|
599
601
|
user_id: string;
|
|
600
602
|
type: "user-primary-email";
|
|
@@ -606,8 +608,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
606
608
|
type: "custom-emails";
|
|
607
609
|
emails: string[];
|
|
608
610
|
};
|
|
609
|
-
|
|
610
|
-
text: string | null;
|
|
611
|
+
notification_category_id: string | null;
|
|
611
612
|
updated_at_millis: number;
|
|
612
613
|
tsx_source: string;
|
|
613
614
|
theme_id: string | null;
|
|
@@ -635,7 +636,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
635
636
|
rendered_at_millis: number;
|
|
636
637
|
is_transactional: boolean;
|
|
637
638
|
is_high_priority: boolean;
|
|
638
|
-
notification_category_id: string | null;
|
|
639
639
|
started_sending_at_millis: number;
|
|
640
640
|
delivered_at_millis: number;
|
|
641
641
|
can_have_delivery_info: boolean;
|
|
@@ -645,6 +645,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
645
645
|
id: string;
|
|
646
646
|
subject: string;
|
|
647
647
|
created_at_millis: number;
|
|
648
|
+
html: string | null;
|
|
649
|
+
text: string | null;
|
|
648
650
|
to: {
|
|
649
651
|
user_id: string;
|
|
650
652
|
type: "user-primary-email";
|
|
@@ -656,8 +658,7 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
656
658
|
type: "custom-emails";
|
|
657
659
|
emails: string[];
|
|
658
660
|
};
|
|
659
|
-
|
|
660
|
-
text: string | null;
|
|
661
|
+
notification_category_id: string | null;
|
|
661
662
|
updated_at_millis: number;
|
|
662
663
|
tsx_source: string;
|
|
663
664
|
theme_id: string | null;
|
|
@@ -685,7 +686,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
|
|
|
685
686
|
rendered_at_millis: number;
|
|
686
687
|
is_transactional: boolean;
|
|
687
688
|
is_high_priority: boolean;
|
|
688
|
-
notification_category_id: string | null;
|
|
689
689
|
started_sending_at_millis: number;
|
|
690
690
|
delivered_at_millis: number;
|
|
691
691
|
can_have_delivery_info: boolean;
|
|
@@ -882,6 +882,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
882
882
|
id: string;
|
|
883
883
|
subject: string;
|
|
884
884
|
created_at_millis: number;
|
|
885
|
+
html: string | null;
|
|
886
|
+
text: string | null;
|
|
885
887
|
to: {
|
|
886
888
|
user_id: string;
|
|
887
889
|
type: "user-primary-email";
|
|
@@ -893,8 +895,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
893
895
|
type: "custom-emails";
|
|
894
896
|
emails: string[];
|
|
895
897
|
};
|
|
896
|
-
|
|
897
|
-
text: string | null;
|
|
898
|
+
notification_category_id: string | null;
|
|
898
899
|
updated_at_millis: number;
|
|
899
900
|
tsx_source: string;
|
|
900
901
|
theme_id: string | null;
|
|
@@ -922,12 +923,13 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
922
923
|
rendered_at_millis: number;
|
|
923
924
|
is_transactional: boolean;
|
|
924
925
|
is_high_priority: boolean;
|
|
925
|
-
notification_category_id: string | null;
|
|
926
926
|
} | {
|
|
927
927
|
status: "queued";
|
|
928
928
|
id: string;
|
|
929
929
|
subject: string;
|
|
930
930
|
created_at_millis: number;
|
|
931
|
+
html: string | null;
|
|
932
|
+
text: string | null;
|
|
931
933
|
to: {
|
|
932
934
|
user_id: string;
|
|
933
935
|
type: "user-primary-email";
|
|
@@ -939,8 +941,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
939
941
|
type: "custom-emails";
|
|
940
942
|
emails: string[];
|
|
941
943
|
};
|
|
942
|
-
|
|
943
|
-
text: string | null;
|
|
944
|
+
notification_category_id: string | null;
|
|
944
945
|
updated_at_millis: number;
|
|
945
946
|
tsx_source: string;
|
|
946
947
|
theme_id: string | null;
|
|
@@ -968,12 +969,13 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
968
969
|
rendered_at_millis: number;
|
|
969
970
|
is_transactional: boolean;
|
|
970
971
|
is_high_priority: boolean;
|
|
971
|
-
notification_category_id: string | null;
|
|
972
972
|
} | {
|
|
973
973
|
status: "sending";
|
|
974
974
|
id: string;
|
|
975
975
|
subject: string;
|
|
976
976
|
created_at_millis: number;
|
|
977
|
+
html: string | null;
|
|
978
|
+
text: string | null;
|
|
977
979
|
to: {
|
|
978
980
|
user_id: string;
|
|
979
981
|
type: "user-primary-email";
|
|
@@ -985,8 +987,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
985
987
|
type: "custom-emails";
|
|
986
988
|
emails: string[];
|
|
987
989
|
};
|
|
988
|
-
|
|
989
|
-
text: string | null;
|
|
990
|
+
notification_category_id: string | null;
|
|
990
991
|
updated_at_millis: number;
|
|
991
992
|
tsx_source: string;
|
|
992
993
|
theme_id: string | null;
|
|
@@ -1014,13 +1015,14 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1014
1015
|
rendered_at_millis: number;
|
|
1015
1016
|
is_transactional: boolean;
|
|
1016
1017
|
is_high_priority: boolean;
|
|
1017
|
-
notification_category_id: string | null;
|
|
1018
1018
|
started_sending_at_millis: number;
|
|
1019
1019
|
} | {
|
|
1020
1020
|
status: "server-error";
|
|
1021
1021
|
id: string;
|
|
1022
1022
|
subject: string;
|
|
1023
1023
|
created_at_millis: number;
|
|
1024
|
+
html: string | null;
|
|
1025
|
+
text: string | null;
|
|
1024
1026
|
to: {
|
|
1025
1027
|
user_id: string;
|
|
1026
1028
|
type: "user-primary-email";
|
|
@@ -1032,8 +1034,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1032
1034
|
type: "custom-emails";
|
|
1033
1035
|
emails: string[];
|
|
1034
1036
|
};
|
|
1035
|
-
|
|
1036
|
-
text: string | null;
|
|
1037
|
+
notification_category_id: string | null;
|
|
1037
1038
|
updated_at_millis: number;
|
|
1038
1039
|
tsx_source: string;
|
|
1039
1040
|
theme_id: string | null;
|
|
@@ -1061,7 +1062,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1061
1062
|
rendered_at_millis: number;
|
|
1062
1063
|
is_transactional: boolean;
|
|
1063
1064
|
is_high_priority: boolean;
|
|
1064
|
-
notification_category_id: string | null;
|
|
1065
1065
|
started_sending_at_millis: number;
|
|
1066
1066
|
error_at_millis: number;
|
|
1067
1067
|
server_error: string;
|
|
@@ -1069,11 +1069,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1069
1069
|
subject?: string | undefined;
|
|
1070
1070
|
html?: string | null | undefined;
|
|
1071
1071
|
text?: string | null | undefined;
|
|
1072
|
+
notification_category_id?: string | null | undefined;
|
|
1072
1073
|
started_rendering_at_millis?: number | undefined;
|
|
1073
1074
|
rendered_at_millis?: number | undefined;
|
|
1074
1075
|
is_transactional?: boolean | undefined;
|
|
1075
1076
|
is_high_priority?: boolean | undefined;
|
|
1076
|
-
notification_category_id?: string | null | undefined;
|
|
1077
1077
|
started_sending_at_millis?: number | undefined;
|
|
1078
1078
|
status: "skipped";
|
|
1079
1079
|
id: string;
|
|
@@ -1120,6 +1120,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1120
1120
|
id: string;
|
|
1121
1121
|
subject: string;
|
|
1122
1122
|
created_at_millis: number;
|
|
1123
|
+
html: string | null;
|
|
1124
|
+
text: string | null;
|
|
1123
1125
|
to: {
|
|
1124
1126
|
user_id: string;
|
|
1125
1127
|
type: "user-primary-email";
|
|
@@ -1131,8 +1133,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1131
1133
|
type: "custom-emails";
|
|
1132
1134
|
emails: string[];
|
|
1133
1135
|
};
|
|
1134
|
-
|
|
1135
|
-
text: string | null;
|
|
1136
|
+
notification_category_id: string | null;
|
|
1136
1137
|
updated_at_millis: number;
|
|
1137
1138
|
tsx_source: string;
|
|
1138
1139
|
theme_id: string | null;
|
|
@@ -1160,7 +1161,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1160
1161
|
rendered_at_millis: number;
|
|
1161
1162
|
is_transactional: boolean;
|
|
1162
1163
|
is_high_priority: boolean;
|
|
1163
|
-
notification_category_id: string | null;
|
|
1164
1164
|
started_sending_at_millis: number;
|
|
1165
1165
|
bounced_at_millis: number;
|
|
1166
1166
|
} | {
|
|
@@ -1168,6 +1168,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1168
1168
|
id: string;
|
|
1169
1169
|
subject: string;
|
|
1170
1170
|
created_at_millis: number;
|
|
1171
|
+
html: string | null;
|
|
1172
|
+
text: string | null;
|
|
1171
1173
|
to: {
|
|
1172
1174
|
user_id: string;
|
|
1173
1175
|
type: "user-primary-email";
|
|
@@ -1179,8 +1181,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1179
1181
|
type: "custom-emails";
|
|
1180
1182
|
emails: string[];
|
|
1181
1183
|
};
|
|
1182
|
-
|
|
1183
|
-
text: string | null;
|
|
1184
|
+
notification_category_id: string | null;
|
|
1184
1185
|
updated_at_millis: number;
|
|
1185
1186
|
tsx_source: string;
|
|
1186
1187
|
theme_id: string | null;
|
|
@@ -1208,7 +1209,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1208
1209
|
rendered_at_millis: number;
|
|
1209
1210
|
is_transactional: boolean;
|
|
1210
1211
|
is_high_priority: boolean;
|
|
1211
|
-
notification_category_id: string | null;
|
|
1212
1212
|
started_sending_at_millis: number;
|
|
1213
1213
|
delivery_delayed_at_millis: number;
|
|
1214
1214
|
} | {
|
|
@@ -1216,6 +1216,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1216
1216
|
id: string;
|
|
1217
1217
|
subject: string;
|
|
1218
1218
|
created_at_millis: number;
|
|
1219
|
+
html: string | null;
|
|
1220
|
+
text: string | null;
|
|
1219
1221
|
to: {
|
|
1220
1222
|
user_id: string;
|
|
1221
1223
|
type: "user-primary-email";
|
|
@@ -1227,8 +1229,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1227
1229
|
type: "custom-emails";
|
|
1228
1230
|
emails: string[];
|
|
1229
1231
|
};
|
|
1230
|
-
|
|
1231
|
-
text: string | null;
|
|
1232
|
+
notification_category_id: string | null;
|
|
1232
1233
|
updated_at_millis: number;
|
|
1233
1234
|
tsx_source: string;
|
|
1234
1235
|
theme_id: string | null;
|
|
@@ -1256,7 +1257,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1256
1257
|
rendered_at_millis: number;
|
|
1257
1258
|
is_transactional: boolean;
|
|
1258
1259
|
is_high_priority: boolean;
|
|
1259
|
-
notification_category_id: string | null;
|
|
1260
1260
|
started_sending_at_millis: number;
|
|
1261
1261
|
delivered_at_millis: number;
|
|
1262
1262
|
can_have_delivery_info: boolean;
|
|
@@ -1265,6 +1265,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1265
1265
|
id: string;
|
|
1266
1266
|
subject: string;
|
|
1267
1267
|
created_at_millis: number;
|
|
1268
|
+
html: string | null;
|
|
1269
|
+
text: string | null;
|
|
1268
1270
|
to: {
|
|
1269
1271
|
user_id: string;
|
|
1270
1272
|
type: "user-primary-email";
|
|
@@ -1276,8 +1278,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1276
1278
|
type: "custom-emails";
|
|
1277
1279
|
emails: string[];
|
|
1278
1280
|
};
|
|
1279
|
-
|
|
1280
|
-
text: string | null;
|
|
1281
|
+
notification_category_id: string | null;
|
|
1281
1282
|
updated_at_millis: number;
|
|
1282
1283
|
tsx_source: string;
|
|
1283
1284
|
theme_id: string | null;
|
|
@@ -1305,7 +1306,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1305
1306
|
rendered_at_millis: number;
|
|
1306
1307
|
is_transactional: boolean;
|
|
1307
1308
|
is_high_priority: boolean;
|
|
1308
|
-
notification_category_id: string | null;
|
|
1309
1309
|
started_sending_at_millis: number;
|
|
1310
1310
|
delivered_at_millis: number;
|
|
1311
1311
|
can_have_delivery_info: boolean;
|
|
@@ -1315,6 +1315,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1315
1315
|
id: string;
|
|
1316
1316
|
subject: string;
|
|
1317
1317
|
created_at_millis: number;
|
|
1318
|
+
html: string | null;
|
|
1319
|
+
text: string | null;
|
|
1318
1320
|
to: {
|
|
1319
1321
|
user_id: string;
|
|
1320
1322
|
type: "user-primary-email";
|
|
@@ -1326,8 +1328,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1326
1328
|
type: "custom-emails";
|
|
1327
1329
|
emails: string[];
|
|
1328
1330
|
};
|
|
1329
|
-
|
|
1330
|
-
text: string | null;
|
|
1331
|
+
notification_category_id: string | null;
|
|
1331
1332
|
updated_at_millis: number;
|
|
1332
1333
|
tsx_source: string;
|
|
1333
1334
|
theme_id: string | null;
|
|
@@ -1355,7 +1356,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1355
1356
|
rendered_at_millis: number;
|
|
1356
1357
|
is_transactional: boolean;
|
|
1357
1358
|
is_high_priority: boolean;
|
|
1358
|
-
notification_category_id: string | null;
|
|
1359
1359
|
started_sending_at_millis: number;
|
|
1360
1360
|
delivered_at_millis: number;
|
|
1361
1361
|
can_have_delivery_info: boolean;
|
|
@@ -1365,6 +1365,8 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1365
1365
|
id: string;
|
|
1366
1366
|
subject: string;
|
|
1367
1367
|
created_at_millis: number;
|
|
1368
|
+
html: string | null;
|
|
1369
|
+
text: string | null;
|
|
1368
1370
|
to: {
|
|
1369
1371
|
user_id: string;
|
|
1370
1372
|
type: "user-primary-email";
|
|
@@ -1376,8 +1378,7 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1376
1378
|
type: "custom-emails";
|
|
1377
1379
|
emails: string[];
|
|
1378
1380
|
};
|
|
1379
|
-
|
|
1380
|
-
text: string | null;
|
|
1381
|
+
notification_category_id: string | null;
|
|
1381
1382
|
updated_at_millis: number;
|
|
1382
1383
|
tsx_source: string;
|
|
1383
1384
|
theme_id: string | null;
|
|
@@ -1405,7 +1406,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
1405
1406
|
rendered_at_millis: number;
|
|
1406
1407
|
is_transactional: boolean;
|
|
1407
1408
|
is_high_priority: boolean;
|
|
1408
|
-
notification_category_id: string | null;
|
|
1409
1409
|
started_sending_at_millis: number;
|
|
1410
1410
|
delivered_at_millis: number;
|
|
1411
1411
|
can_have_delivery_info: boolean;
|
|
@@ -32,27 +32,27 @@ declare const teamMemberProfilesCrudServerReadSchema: import("yup").ObjectSchema
|
|
|
32
32
|
is_anonymous: boolean;
|
|
33
33
|
is_restricted: boolean;
|
|
34
34
|
requires_totp_mfa: boolean;
|
|
35
|
+
country_code: string | null;
|
|
36
|
+
profile_image_url: string | null;
|
|
37
|
+
signed_up_at_millis: number;
|
|
38
|
+
last_active_at_millis: number;
|
|
35
39
|
primary_email_verified: boolean;
|
|
36
40
|
primary_email_auth_enabled: boolean;
|
|
37
|
-
profile_image_url: string | null;
|
|
38
41
|
selected_team: {
|
|
39
42
|
client_metadata?: {} | null | undefined;
|
|
40
43
|
client_read_only_metadata?: {} | null | undefined;
|
|
41
44
|
server_metadata?: {} | null | undefined;
|
|
42
45
|
display_name: string;
|
|
43
46
|
id: string;
|
|
44
|
-
profile_image_url: string | null;
|
|
45
47
|
created_at_millis: number;
|
|
48
|
+
profile_image_url: string | null;
|
|
46
49
|
} | null;
|
|
47
|
-
signed_up_at_millis: number;
|
|
48
50
|
has_password: boolean;
|
|
49
51
|
otp_auth_enabled: boolean;
|
|
50
52
|
passkey_auth_enabled: boolean;
|
|
51
|
-
last_active_at_millis: number;
|
|
52
53
|
restricted_by_admin: boolean;
|
|
53
54
|
restricted_by_admin_reason: string | null;
|
|
54
55
|
restricted_by_admin_private_details: string | null;
|
|
55
|
-
country_code: string | null;
|
|
56
56
|
risk_scores: {
|
|
57
57
|
sign_up: {
|
|
58
58
|
bot: number;
|
|
@@ -155,27 +155,27 @@ declare const teamMemberProfilesCrud: import("../../crud").CrudSchemaFromOptions
|
|
|
155
155
|
is_anonymous: boolean;
|
|
156
156
|
is_restricted: boolean;
|
|
157
157
|
requires_totp_mfa: boolean;
|
|
158
|
+
country_code: string | null;
|
|
159
|
+
profile_image_url: string | null;
|
|
160
|
+
signed_up_at_millis: number;
|
|
161
|
+
last_active_at_millis: number;
|
|
158
162
|
primary_email_verified: boolean;
|
|
159
163
|
primary_email_auth_enabled: boolean;
|
|
160
|
-
profile_image_url: string | null;
|
|
161
164
|
selected_team: {
|
|
162
165
|
client_metadata?: {} | null | undefined;
|
|
163
166
|
client_read_only_metadata?: {} | null | undefined;
|
|
164
167
|
server_metadata?: {} | null | undefined;
|
|
165
168
|
display_name: string;
|
|
166
169
|
id: string;
|
|
167
|
-
profile_image_url: string | null;
|
|
168
170
|
created_at_millis: number;
|
|
171
|
+
profile_image_url: string | null;
|
|
169
172
|
} | null;
|
|
170
|
-
signed_up_at_millis: number;
|
|
171
173
|
has_password: boolean;
|
|
172
174
|
otp_auth_enabled: boolean;
|
|
173
175
|
passkey_auth_enabled: boolean;
|
|
174
|
-
last_active_at_millis: number;
|
|
175
176
|
restricted_by_admin: boolean;
|
|
176
177
|
restricted_by_admin_reason: string | null;
|
|
177
178
|
restricted_by_admin_private_details: string | null;
|
|
178
|
-
country_code: string | null;
|
|
179
179
|
risk_scores: {
|
|
180
180
|
sign_up: {
|
|
181
181
|
bot: number;
|
|
@@ -82,8 +82,8 @@ declare const usersCrudServerReadSchema: yup$1.ObjectSchema<{
|
|
|
82
82
|
server_metadata?: {} | null | undefined;
|
|
83
83
|
display_name: string;
|
|
84
84
|
id: string;
|
|
85
|
-
profile_image_url: string | null;
|
|
86
85
|
created_at_millis: number;
|
|
86
|
+
profile_image_url: string | null;
|
|
87
87
|
} | null;
|
|
88
88
|
selected_team_id: string | null;
|
|
89
89
|
profile_image_url: string | null;
|
|
@@ -169,15 +169,15 @@ declare const usersCrudServerCreateSchema: yup$1.ObjectSchema<{
|
|
|
169
169
|
server_metadata: {} | null | undefined;
|
|
170
170
|
is_anonymous: boolean | undefined;
|
|
171
171
|
password: string | null | undefined;
|
|
172
|
+
country_code: string | null | undefined;
|
|
173
|
+
profile_image_url: string | null | undefined;
|
|
172
174
|
primary_email_verified: boolean | undefined;
|
|
173
175
|
primary_email_auth_enabled: boolean | undefined;
|
|
174
|
-
profile_image_url: string | null | undefined;
|
|
175
176
|
otp_auth_enabled: boolean | undefined;
|
|
176
177
|
passkey_auth_enabled: boolean | undefined;
|
|
177
178
|
restricted_by_admin: boolean | undefined;
|
|
178
179
|
restricted_by_admin_reason: string | null | undefined;
|
|
179
180
|
restricted_by_admin_private_details: string | null | undefined;
|
|
180
|
-
country_code: string | null | undefined;
|
|
181
181
|
risk_scores: {
|
|
182
182
|
sign_up: {
|
|
183
183
|
bot: number;
|
|
@@ -235,8 +235,8 @@ declare const usersCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
235
235
|
server_metadata?: {} | null | undefined;
|
|
236
236
|
display_name: string;
|
|
237
237
|
id: string;
|
|
238
|
-
profile_image_url: string | null;
|
|
239
238
|
created_at_millis: number;
|
|
239
|
+
profile_image_url: string | null;
|
|
240
240
|
} | null;
|
|
241
241
|
selected_team_id: string | null;
|
|
242
242
|
profile_image_url: string | null;
|
|
@@ -375,15 +375,15 @@ declare const usersCrud: import("../../crud").CrudSchemaFromOptions<{
|
|
|
375
375
|
server_metadata: {} | null | undefined;
|
|
376
376
|
is_anonymous: boolean | undefined;
|
|
377
377
|
password: string | null | undefined;
|
|
378
|
+
country_code: string | null | undefined;
|
|
379
|
+
profile_image_url: string | null | undefined;
|
|
378
380
|
primary_email_verified: boolean | undefined;
|
|
379
381
|
primary_email_auth_enabled: boolean | undefined;
|
|
380
|
-
profile_image_url: string | null | undefined;
|
|
381
382
|
otp_auth_enabled: boolean | undefined;
|
|
382
383
|
passkey_auth_enabled: boolean | undefined;
|
|
383
384
|
restricted_by_admin: boolean | undefined;
|
|
384
385
|
restricted_by_admin_reason: string | null | undefined;
|
|
385
386
|
restricted_by_admin_private_details: string | null | undefined;
|
|
386
|
-
country_code: string | null | undefined;
|
|
387
387
|
risk_scores: {
|
|
388
388
|
sign_up: {
|
|
389
389
|
bot: number;
|
|
@@ -469,8 +469,8 @@ declare const userCreatedWebhookEvent: WebhookEvent<yup$1.ObjectSchema<{
|
|
|
469
469
|
server_metadata?: {} | null | undefined;
|
|
470
470
|
display_name: string;
|
|
471
471
|
id: string;
|
|
472
|
-
profile_image_url: string | null;
|
|
473
472
|
created_at_millis: number;
|
|
473
|
+
profile_image_url: string | null;
|
|
474
474
|
} | null;
|
|
475
475
|
selected_team_id: string | null;
|
|
476
476
|
profile_image_url: string | null;
|
|
@@ -560,8 +560,8 @@ declare const userUpdatedWebhookEvent: WebhookEvent<yup$1.ObjectSchema<{
|
|
|
560
560
|
server_metadata?: {} | null | undefined;
|
|
561
561
|
display_name: string;
|
|
562
562
|
id: string;
|
|
563
|
-
profile_image_url: string | null;
|
|
564
563
|
created_at_millis: number;
|
|
564
|
+
profile_image_url: string | null;
|
|
565
565
|
} | null;
|
|
566
566
|
selected_team_id: string | null;
|
|
567
567
|
profile_image_url: string | null;
|
|
@@ -22,8 +22,8 @@ declare const webhookEvents: readonly [WebhookEvent<yup$1.ObjectSchema<{
|
|
|
22
22
|
server_metadata?: {} | null | undefined;
|
|
23
23
|
display_name: string;
|
|
24
24
|
id: string;
|
|
25
|
-
profile_image_url: string | null;
|
|
26
25
|
created_at_millis: number;
|
|
26
|
+
profile_image_url: string | null;
|
|
27
27
|
} | null;
|
|
28
28
|
selected_team_id: string | null;
|
|
29
29
|
profile_image_url: string | null;
|
|
@@ -112,8 +112,8 @@ declare const webhookEvents: readonly [WebhookEvent<yup$1.ObjectSchema<{
|
|
|
112
112
|
server_metadata?: {} | null | undefined;
|
|
113
113
|
display_name: string;
|
|
114
114
|
id: string;
|
|
115
|
-
profile_image_url: string | null;
|
|
116
115
|
created_at_millis: number;
|
|
116
|
+
profile_image_url: string | null;
|
|
117
117
|
} | null;
|
|
118
118
|
selected_team_id: string | null;
|
|
119
119
|
profile_image_url: string | null;
|