@hexclave/shared 1.0.30 → 1.0.32
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 +11 -37
- package/dist/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/config/schema.d.ts +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 +11 -37
- package/dist/esm/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.js.map +1 -1
- package/dist/esm/config/schema.d.ts +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +3 -3
- package/dist/esm/interface/conversations.d.ts +31 -31
- package/dist/esm/interface/crud/current-user.d.ts +6 -6
- package/dist/esm/interface/crud/email-outbox.d.ts +86 -86
- package/dist/esm/interface/crud/products.d.ts +4 -4
- package/dist/esm/interface/crud/project-api-keys.d.ts +4 -4
- package/dist/esm/interface/crud/team-member-profiles.d.ts +16 -16
- package/dist/esm/interface/crud/transactions.d.ts +2 -2
- package/dist/esm/interface/crud/users.d.ts +6 -6
- package/dist/esm/interface/server-interface.d.ts +1 -0
- package/dist/esm/interface/server-interface.d.ts.map +1 -1
- package/dist/esm/interface/server-interface.js +1 -0
- package/dist/esm/interface/server-interface.js.map +1 -1
- package/dist/esm/schema-fields.d.ts +1 -1
- package/dist/esm/sessions.d.ts +1 -1
- package/dist/interface/admin-metrics.d.ts +3 -3
- package/dist/interface/conversations.d.ts +31 -31
- package/dist/interface/crud/current-user.d.ts +6 -6
- package/dist/interface/crud/email-outbox.d.ts +86 -86
- package/dist/interface/crud/products.d.ts +4 -4
- package/dist/interface/crud/project-api-keys.d.ts +4 -4
- package/dist/interface/crud/team-member-profiles.d.ts +16 -16
- package/dist/interface/crud/transactions.d.ts +2 -2
- package/dist/interface/crud/users.d.ts +6 -6
- package/dist/interface/server-interface.d.ts +1 -0
- package/dist/interface/server-interface.d.ts.map +1 -1
- package/dist/interface/server-interface.js +1 -0
- package/dist/interface/server-interface.js.map +1 -1
- package/dist/schema-fields.d.ts +1 -1
- package/dist/sessions.d.ts +1 -1
- package/package.json +1 -1
- package/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts +11 -37
- package/src/interface/server-interface.ts +4 -0
|
@@ -161,10 +161,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
161
161
|
} | {
|
|
162
162
|
status: "scheduled";
|
|
163
163
|
id: string;
|
|
164
|
-
html: string | null;
|
|
165
|
-
text: string | null;
|
|
166
|
-
created_at_millis: number;
|
|
167
164
|
subject: string;
|
|
165
|
+
created_at_millis: number;
|
|
166
|
+
notification_category_id: string | null;
|
|
168
167
|
to: {
|
|
169
168
|
user_id: string;
|
|
170
169
|
type: "user-primary-email";
|
|
@@ -201,16 +200,16 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
201
200
|
has_delivered: boolean;
|
|
202
201
|
started_rendering_at_millis: number;
|
|
203
202
|
rendered_at_millis: number;
|
|
203
|
+
html: string | null;
|
|
204
|
+
text: string | null;
|
|
204
205
|
is_transactional: boolean;
|
|
205
206
|
is_high_priority: boolean;
|
|
206
|
-
notification_category_id: string | null;
|
|
207
207
|
} | {
|
|
208
208
|
status: "queued";
|
|
209
209
|
id: string;
|
|
210
|
-
html: string | null;
|
|
211
|
-
text: string | null;
|
|
212
|
-
created_at_millis: number;
|
|
213
210
|
subject: string;
|
|
211
|
+
created_at_millis: number;
|
|
212
|
+
notification_category_id: string | null;
|
|
214
213
|
to: {
|
|
215
214
|
user_id: string;
|
|
216
215
|
type: "user-primary-email";
|
|
@@ -247,16 +246,16 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
247
246
|
has_delivered: boolean;
|
|
248
247
|
started_rendering_at_millis: number;
|
|
249
248
|
rendered_at_millis: number;
|
|
249
|
+
html: string | null;
|
|
250
|
+
text: string | null;
|
|
250
251
|
is_transactional: boolean;
|
|
251
252
|
is_high_priority: boolean;
|
|
252
|
-
notification_category_id: string | null;
|
|
253
253
|
} | {
|
|
254
254
|
status: "sending";
|
|
255
255
|
id: string;
|
|
256
|
-
html: string | null;
|
|
257
|
-
text: string | null;
|
|
258
|
-
created_at_millis: number;
|
|
259
256
|
subject: string;
|
|
257
|
+
created_at_millis: number;
|
|
258
|
+
notification_category_id: string | null;
|
|
260
259
|
to: {
|
|
261
260
|
user_id: string;
|
|
262
261
|
type: "user-primary-email";
|
|
@@ -293,17 +292,17 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
293
292
|
has_delivered: boolean;
|
|
294
293
|
started_rendering_at_millis: number;
|
|
295
294
|
rendered_at_millis: number;
|
|
295
|
+
html: string | null;
|
|
296
|
+
text: string | null;
|
|
296
297
|
is_transactional: boolean;
|
|
297
298
|
is_high_priority: boolean;
|
|
298
|
-
notification_category_id: string | null;
|
|
299
299
|
started_sending_at_millis: number;
|
|
300
300
|
} | {
|
|
301
301
|
status: "server-error";
|
|
302
302
|
id: string;
|
|
303
|
-
html: string | null;
|
|
304
|
-
text: string | null;
|
|
305
|
-
created_at_millis: number;
|
|
306
303
|
subject: string;
|
|
304
|
+
created_at_millis: number;
|
|
305
|
+
notification_category_id: string | null;
|
|
307
306
|
to: {
|
|
308
307
|
user_id: string;
|
|
309
308
|
type: "user-primary-email";
|
|
@@ -340,21 +339,22 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
340
339
|
has_delivered: boolean;
|
|
341
340
|
started_rendering_at_millis: number;
|
|
342
341
|
rendered_at_millis: number;
|
|
342
|
+
html: string | null;
|
|
343
|
+
text: string | null;
|
|
343
344
|
is_transactional: boolean;
|
|
344
345
|
is_high_priority: boolean;
|
|
345
|
-
notification_category_id: string | null;
|
|
346
346
|
started_sending_at_millis: number;
|
|
347
347
|
error_at_millis: number;
|
|
348
348
|
server_error: string;
|
|
349
349
|
} | {
|
|
350
|
-
html?: string | null | undefined;
|
|
351
|
-
text?: string | null | undefined;
|
|
352
350
|
subject?: string | undefined;
|
|
351
|
+
notification_category_id?: string | null | undefined;
|
|
353
352
|
started_rendering_at_millis?: number | undefined;
|
|
354
353
|
rendered_at_millis?: number | undefined;
|
|
354
|
+
html?: string | null | undefined;
|
|
355
|
+
text?: string | null | undefined;
|
|
355
356
|
is_transactional?: boolean | undefined;
|
|
356
357
|
is_high_priority?: boolean | undefined;
|
|
357
|
-
notification_category_id?: string | null | undefined;
|
|
358
358
|
started_sending_at_millis?: number | undefined;
|
|
359
359
|
status: "skipped";
|
|
360
360
|
id: string;
|
|
@@ -399,10 +399,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
399
399
|
} | {
|
|
400
400
|
status: "bounced";
|
|
401
401
|
id: string;
|
|
402
|
-
html: string | null;
|
|
403
|
-
text: string | null;
|
|
404
|
-
created_at_millis: number;
|
|
405
402
|
subject: string;
|
|
403
|
+
created_at_millis: number;
|
|
404
|
+
notification_category_id: string | null;
|
|
406
405
|
to: {
|
|
407
406
|
user_id: string;
|
|
408
407
|
type: "user-primary-email";
|
|
@@ -439,18 +438,18 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
439
438
|
has_delivered: boolean;
|
|
440
439
|
started_rendering_at_millis: number;
|
|
441
440
|
rendered_at_millis: number;
|
|
441
|
+
html: string | null;
|
|
442
|
+
text: string | null;
|
|
442
443
|
is_transactional: boolean;
|
|
443
444
|
is_high_priority: boolean;
|
|
444
|
-
notification_category_id: string | null;
|
|
445
445
|
started_sending_at_millis: number;
|
|
446
446
|
bounced_at_millis: number;
|
|
447
447
|
} | {
|
|
448
448
|
status: "delivery-delayed";
|
|
449
449
|
id: string;
|
|
450
|
-
html: string | null;
|
|
451
|
-
text: string | null;
|
|
452
|
-
created_at_millis: number;
|
|
453
450
|
subject: string;
|
|
451
|
+
created_at_millis: number;
|
|
452
|
+
notification_category_id: string | null;
|
|
454
453
|
to: {
|
|
455
454
|
user_id: string;
|
|
456
455
|
type: "user-primary-email";
|
|
@@ -487,18 +486,18 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
487
486
|
has_delivered: boolean;
|
|
488
487
|
started_rendering_at_millis: number;
|
|
489
488
|
rendered_at_millis: number;
|
|
489
|
+
html: string | null;
|
|
490
|
+
text: string | null;
|
|
490
491
|
is_transactional: boolean;
|
|
491
492
|
is_high_priority: boolean;
|
|
492
|
-
notification_category_id: string | null;
|
|
493
493
|
started_sending_at_millis: number;
|
|
494
494
|
delivery_delayed_at_millis: number;
|
|
495
495
|
} | {
|
|
496
496
|
status: "sent";
|
|
497
497
|
id: string;
|
|
498
|
-
html: string | null;
|
|
499
|
-
text: string | null;
|
|
500
|
-
created_at_millis: number;
|
|
501
498
|
subject: string;
|
|
499
|
+
created_at_millis: number;
|
|
500
|
+
notification_category_id: string | null;
|
|
502
501
|
to: {
|
|
503
502
|
user_id: string;
|
|
504
503
|
type: "user-primary-email";
|
|
@@ -535,19 +534,19 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
535
534
|
has_delivered: boolean;
|
|
536
535
|
started_rendering_at_millis: number;
|
|
537
536
|
rendered_at_millis: number;
|
|
537
|
+
html: string | null;
|
|
538
|
+
text: string | null;
|
|
538
539
|
is_transactional: boolean;
|
|
539
540
|
is_high_priority: boolean;
|
|
540
|
-
notification_category_id: string | null;
|
|
541
541
|
started_sending_at_millis: number;
|
|
542
542
|
delivered_at_millis: number;
|
|
543
543
|
can_have_delivery_info: boolean;
|
|
544
544
|
} | {
|
|
545
545
|
status: "opened";
|
|
546
546
|
id: string;
|
|
547
|
-
html: string | null;
|
|
548
|
-
text: string | null;
|
|
549
|
-
created_at_millis: number;
|
|
550
547
|
subject: string;
|
|
548
|
+
created_at_millis: number;
|
|
549
|
+
notification_category_id: string | null;
|
|
551
550
|
to: {
|
|
552
551
|
user_id: string;
|
|
553
552
|
type: "user-primary-email";
|
|
@@ -584,9 +583,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
584
583
|
has_delivered: boolean;
|
|
585
584
|
started_rendering_at_millis: number;
|
|
586
585
|
rendered_at_millis: number;
|
|
586
|
+
html: string | null;
|
|
587
|
+
text: string | null;
|
|
587
588
|
is_transactional: boolean;
|
|
588
589
|
is_high_priority: boolean;
|
|
589
|
-
notification_category_id: string | null;
|
|
590
590
|
started_sending_at_millis: number;
|
|
591
591
|
delivered_at_millis: number;
|
|
592
592
|
can_have_delivery_info: boolean;
|
|
@@ -594,10 +594,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
594
594
|
} | {
|
|
595
595
|
status: "clicked";
|
|
596
596
|
id: string;
|
|
597
|
-
html: string | null;
|
|
598
|
-
text: string | null;
|
|
599
|
-
created_at_millis: number;
|
|
600
597
|
subject: string;
|
|
598
|
+
created_at_millis: number;
|
|
599
|
+
notification_category_id: string | null;
|
|
601
600
|
to: {
|
|
602
601
|
user_id: string;
|
|
603
602
|
type: "user-primary-email";
|
|
@@ -634,9 +633,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
634
633
|
has_delivered: boolean;
|
|
635
634
|
started_rendering_at_millis: number;
|
|
636
635
|
rendered_at_millis: number;
|
|
636
|
+
html: string | null;
|
|
637
|
+
text: string | null;
|
|
637
638
|
is_transactional: boolean;
|
|
638
639
|
is_high_priority: boolean;
|
|
639
|
-
notification_category_id: string | null;
|
|
640
640
|
started_sending_at_millis: number;
|
|
641
641
|
delivered_at_millis: number;
|
|
642
642
|
can_have_delivery_info: boolean;
|
|
@@ -644,10 +644,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
644
644
|
} | {
|
|
645
645
|
status: "marked-as-spam";
|
|
646
646
|
id: string;
|
|
647
|
-
html: string | null;
|
|
648
|
-
text: string | null;
|
|
649
|
-
created_at_millis: number;
|
|
650
647
|
subject: string;
|
|
648
|
+
created_at_millis: number;
|
|
649
|
+
notification_category_id: string | null;
|
|
651
650
|
to: {
|
|
652
651
|
user_id: string;
|
|
653
652
|
type: "user-primary-email";
|
|
@@ -684,9 +683,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
684
683
|
has_delivered: boolean;
|
|
685
684
|
started_rendering_at_millis: number;
|
|
686
685
|
rendered_at_millis: number;
|
|
686
|
+
html: string | null;
|
|
687
|
+
text: string | null;
|
|
687
688
|
is_transactional: boolean;
|
|
688
689
|
is_high_priority: boolean;
|
|
689
|
-
notification_category_id: string | null;
|
|
690
690
|
started_sending_at_millis: number;
|
|
691
691
|
delivered_at_millis: number;
|
|
692
692
|
can_have_delivery_info: boolean;
|
|
@@ -881,10 +881,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
881
881
|
} | {
|
|
882
882
|
status: "scheduled";
|
|
883
883
|
id: string;
|
|
884
|
-
html: string | null;
|
|
885
|
-
text: string | null;
|
|
886
|
-
created_at_millis: number;
|
|
887
884
|
subject: string;
|
|
885
|
+
created_at_millis: number;
|
|
886
|
+
notification_category_id: string | null;
|
|
888
887
|
to: {
|
|
889
888
|
user_id: string;
|
|
890
889
|
type: "user-primary-email";
|
|
@@ -921,16 +920,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
921
920
|
has_delivered: boolean;
|
|
922
921
|
started_rendering_at_millis: number;
|
|
923
922
|
rendered_at_millis: number;
|
|
923
|
+
html: string | null;
|
|
924
|
+
text: string | null;
|
|
924
925
|
is_transactional: boolean;
|
|
925
926
|
is_high_priority: boolean;
|
|
926
|
-
notification_category_id: string | null;
|
|
927
927
|
} | {
|
|
928
928
|
status: "queued";
|
|
929
929
|
id: string;
|
|
930
|
-
html: string | null;
|
|
931
|
-
text: string | null;
|
|
932
|
-
created_at_millis: number;
|
|
933
930
|
subject: string;
|
|
931
|
+
created_at_millis: number;
|
|
932
|
+
notification_category_id: string | null;
|
|
934
933
|
to: {
|
|
935
934
|
user_id: string;
|
|
936
935
|
type: "user-primary-email";
|
|
@@ -967,16 +966,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
967
966
|
has_delivered: boolean;
|
|
968
967
|
started_rendering_at_millis: number;
|
|
969
968
|
rendered_at_millis: number;
|
|
969
|
+
html: string | null;
|
|
970
|
+
text: string | null;
|
|
970
971
|
is_transactional: boolean;
|
|
971
972
|
is_high_priority: boolean;
|
|
972
|
-
notification_category_id: string | null;
|
|
973
973
|
} | {
|
|
974
974
|
status: "sending";
|
|
975
975
|
id: string;
|
|
976
|
-
html: string | null;
|
|
977
|
-
text: string | null;
|
|
978
|
-
created_at_millis: number;
|
|
979
976
|
subject: string;
|
|
977
|
+
created_at_millis: number;
|
|
978
|
+
notification_category_id: string | null;
|
|
980
979
|
to: {
|
|
981
980
|
user_id: string;
|
|
982
981
|
type: "user-primary-email";
|
|
@@ -1013,17 +1012,17 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1013
1012
|
has_delivered: boolean;
|
|
1014
1013
|
started_rendering_at_millis: number;
|
|
1015
1014
|
rendered_at_millis: number;
|
|
1015
|
+
html: string | null;
|
|
1016
|
+
text: string | null;
|
|
1016
1017
|
is_transactional: boolean;
|
|
1017
1018
|
is_high_priority: boolean;
|
|
1018
|
-
notification_category_id: string | null;
|
|
1019
1019
|
started_sending_at_millis: number;
|
|
1020
1020
|
} | {
|
|
1021
1021
|
status: "server-error";
|
|
1022
1022
|
id: string;
|
|
1023
|
-
html: string | null;
|
|
1024
|
-
text: string | null;
|
|
1025
|
-
created_at_millis: number;
|
|
1026
1023
|
subject: string;
|
|
1024
|
+
created_at_millis: number;
|
|
1025
|
+
notification_category_id: string | null;
|
|
1027
1026
|
to: {
|
|
1028
1027
|
user_id: string;
|
|
1029
1028
|
type: "user-primary-email";
|
|
@@ -1060,21 +1059,22 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1060
1059
|
has_delivered: boolean;
|
|
1061
1060
|
started_rendering_at_millis: number;
|
|
1062
1061
|
rendered_at_millis: number;
|
|
1062
|
+
html: string | null;
|
|
1063
|
+
text: string | null;
|
|
1063
1064
|
is_transactional: boolean;
|
|
1064
1065
|
is_high_priority: boolean;
|
|
1065
|
-
notification_category_id: string | null;
|
|
1066
1066
|
started_sending_at_millis: number;
|
|
1067
1067
|
error_at_millis: number;
|
|
1068
1068
|
server_error: string;
|
|
1069
1069
|
} | {
|
|
1070
|
-
html?: string | null | undefined;
|
|
1071
|
-
text?: string | null | undefined;
|
|
1072
1070
|
subject?: string | undefined;
|
|
1071
|
+
notification_category_id?: string | null | undefined;
|
|
1073
1072
|
started_rendering_at_millis?: number | undefined;
|
|
1074
1073
|
rendered_at_millis?: number | undefined;
|
|
1074
|
+
html?: string | null | undefined;
|
|
1075
|
+
text?: string | null | undefined;
|
|
1075
1076
|
is_transactional?: boolean | undefined;
|
|
1076
1077
|
is_high_priority?: boolean | undefined;
|
|
1077
|
-
notification_category_id?: string | null | undefined;
|
|
1078
1078
|
started_sending_at_millis?: number | undefined;
|
|
1079
1079
|
status: "skipped";
|
|
1080
1080
|
id: string;
|
|
@@ -1119,10 +1119,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1119
1119
|
} | {
|
|
1120
1120
|
status: "bounced";
|
|
1121
1121
|
id: string;
|
|
1122
|
-
html: string | null;
|
|
1123
|
-
text: string | null;
|
|
1124
|
-
created_at_millis: number;
|
|
1125
1122
|
subject: string;
|
|
1123
|
+
created_at_millis: number;
|
|
1124
|
+
notification_category_id: string | null;
|
|
1126
1125
|
to: {
|
|
1127
1126
|
user_id: string;
|
|
1128
1127
|
type: "user-primary-email";
|
|
@@ -1159,18 +1158,18 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1159
1158
|
has_delivered: boolean;
|
|
1160
1159
|
started_rendering_at_millis: number;
|
|
1161
1160
|
rendered_at_millis: number;
|
|
1161
|
+
html: string | null;
|
|
1162
|
+
text: string | null;
|
|
1162
1163
|
is_transactional: boolean;
|
|
1163
1164
|
is_high_priority: boolean;
|
|
1164
|
-
notification_category_id: string | null;
|
|
1165
1165
|
started_sending_at_millis: number;
|
|
1166
1166
|
bounced_at_millis: number;
|
|
1167
1167
|
} | {
|
|
1168
1168
|
status: "delivery-delayed";
|
|
1169
1169
|
id: string;
|
|
1170
|
-
html: string | null;
|
|
1171
|
-
text: string | null;
|
|
1172
|
-
created_at_millis: number;
|
|
1173
1170
|
subject: string;
|
|
1171
|
+
created_at_millis: number;
|
|
1172
|
+
notification_category_id: string | null;
|
|
1174
1173
|
to: {
|
|
1175
1174
|
user_id: string;
|
|
1176
1175
|
type: "user-primary-email";
|
|
@@ -1207,18 +1206,18 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1207
1206
|
has_delivered: boolean;
|
|
1208
1207
|
started_rendering_at_millis: number;
|
|
1209
1208
|
rendered_at_millis: number;
|
|
1209
|
+
html: string | null;
|
|
1210
|
+
text: string | null;
|
|
1210
1211
|
is_transactional: boolean;
|
|
1211
1212
|
is_high_priority: boolean;
|
|
1212
|
-
notification_category_id: string | null;
|
|
1213
1213
|
started_sending_at_millis: number;
|
|
1214
1214
|
delivery_delayed_at_millis: number;
|
|
1215
1215
|
} | {
|
|
1216
1216
|
status: "sent";
|
|
1217
1217
|
id: string;
|
|
1218
|
-
html: string | null;
|
|
1219
|
-
text: string | null;
|
|
1220
|
-
created_at_millis: number;
|
|
1221
1218
|
subject: string;
|
|
1219
|
+
created_at_millis: number;
|
|
1220
|
+
notification_category_id: string | null;
|
|
1222
1221
|
to: {
|
|
1223
1222
|
user_id: string;
|
|
1224
1223
|
type: "user-primary-email";
|
|
@@ -1255,19 +1254,19 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1255
1254
|
has_delivered: boolean;
|
|
1256
1255
|
started_rendering_at_millis: number;
|
|
1257
1256
|
rendered_at_millis: number;
|
|
1257
|
+
html: string | null;
|
|
1258
|
+
text: string | null;
|
|
1258
1259
|
is_transactional: boolean;
|
|
1259
1260
|
is_high_priority: boolean;
|
|
1260
|
-
notification_category_id: string | null;
|
|
1261
1261
|
started_sending_at_millis: number;
|
|
1262
1262
|
delivered_at_millis: number;
|
|
1263
1263
|
can_have_delivery_info: boolean;
|
|
1264
1264
|
} | {
|
|
1265
1265
|
status: "opened";
|
|
1266
1266
|
id: string;
|
|
1267
|
-
html: string | null;
|
|
1268
|
-
text: string | null;
|
|
1269
|
-
created_at_millis: number;
|
|
1270
1267
|
subject: string;
|
|
1268
|
+
created_at_millis: number;
|
|
1269
|
+
notification_category_id: string | null;
|
|
1271
1270
|
to: {
|
|
1272
1271
|
user_id: string;
|
|
1273
1272
|
type: "user-primary-email";
|
|
@@ -1304,9 +1303,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1304
1303
|
has_delivered: boolean;
|
|
1305
1304
|
started_rendering_at_millis: number;
|
|
1306
1305
|
rendered_at_millis: number;
|
|
1306
|
+
html: string | null;
|
|
1307
|
+
text: string | null;
|
|
1307
1308
|
is_transactional: boolean;
|
|
1308
1309
|
is_high_priority: boolean;
|
|
1309
|
-
notification_category_id: string | null;
|
|
1310
1310
|
started_sending_at_millis: number;
|
|
1311
1311
|
delivered_at_millis: number;
|
|
1312
1312
|
can_have_delivery_info: boolean;
|
|
@@ -1314,10 +1314,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1314
1314
|
} | {
|
|
1315
1315
|
status: "clicked";
|
|
1316
1316
|
id: string;
|
|
1317
|
-
html: string | null;
|
|
1318
|
-
text: string | null;
|
|
1319
|
-
created_at_millis: number;
|
|
1320
1317
|
subject: string;
|
|
1318
|
+
created_at_millis: number;
|
|
1319
|
+
notification_category_id: string | null;
|
|
1321
1320
|
to: {
|
|
1322
1321
|
user_id: string;
|
|
1323
1322
|
type: "user-primary-email";
|
|
@@ -1354,9 +1353,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1354
1353
|
has_delivered: boolean;
|
|
1355
1354
|
started_rendering_at_millis: number;
|
|
1356
1355
|
rendered_at_millis: number;
|
|
1356
|
+
html: string | null;
|
|
1357
|
+
text: string | null;
|
|
1357
1358
|
is_transactional: boolean;
|
|
1358
1359
|
is_high_priority: boolean;
|
|
1359
|
-
notification_category_id: string | null;
|
|
1360
1360
|
started_sending_at_millis: number;
|
|
1361
1361
|
delivered_at_millis: number;
|
|
1362
1362
|
can_have_delivery_info: boolean;
|
|
@@ -1364,10 +1364,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1364
1364
|
} | {
|
|
1365
1365
|
status: "marked-as-spam";
|
|
1366
1366
|
id: string;
|
|
1367
|
-
html: string | null;
|
|
1368
|
-
text: string | null;
|
|
1369
|
-
created_at_millis: number;
|
|
1370
1367
|
subject: string;
|
|
1368
|
+
created_at_millis: number;
|
|
1369
|
+
notification_category_id: string | null;
|
|
1371
1370
|
to: {
|
|
1372
1371
|
user_id: string;
|
|
1373
1372
|
type: "user-primary-email";
|
|
@@ -1404,9 +1403,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1404
1403
|
has_delivered: boolean;
|
|
1405
1404
|
started_rendering_at_millis: number;
|
|
1406
1405
|
rendered_at_millis: number;
|
|
1406
|
+
html: string | null;
|
|
1407
|
+
text: string | null;
|
|
1407
1408
|
is_transactional: boolean;
|
|
1408
1409
|
is_high_priority: boolean;
|
|
1409
|
-
notification_category_id: string | null;
|
|
1410
1410
|
started_sending_at_millis: number;
|
|
1411
1411
|
delivered_at_millis: number;
|
|
1412
1412
|
can_have_delivery_info: boolean;
|
|
@@ -26,8 +26,8 @@ declare const customerProductReadSchema: yup$1.ObjectSchema<{
|
|
|
26
26
|
}>;
|
|
27
27
|
display_name: string;
|
|
28
28
|
included_items: Record<string, {
|
|
29
|
-
repeat?: "never" | DayInterval | undefined;
|
|
30
29
|
quantity?: number | undefined;
|
|
30
|
+
repeat?: "never" | DayInterval | undefined;
|
|
31
31
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
32
32
|
}>;
|
|
33
33
|
};
|
|
@@ -61,8 +61,8 @@ declare const customerProductReadSchema: yup$1.ObjectSchema<{
|
|
|
61
61
|
}>;
|
|
62
62
|
display_name: string;
|
|
63
63
|
included_items: Record<string, {
|
|
64
|
-
repeat?: "never" | DayInterval | undefined;
|
|
65
64
|
quantity?: number | undefined;
|
|
65
|
+
repeat?: "never" | DayInterval | undefined;
|
|
66
66
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
67
67
|
}>;
|
|
68
68
|
};
|
|
@@ -124,8 +124,8 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
124
124
|
}>;
|
|
125
125
|
display_name: string;
|
|
126
126
|
included_items: Record<string, {
|
|
127
|
-
repeat?: "never" | DayInterval | undefined;
|
|
128
127
|
quantity?: number | undefined;
|
|
128
|
+
repeat?: "never" | DayInterval | undefined;
|
|
129
129
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
130
130
|
}>;
|
|
131
131
|
};
|
|
@@ -152,8 +152,8 @@ declare const customerProductsListResponseSchema: yup$1.ObjectSchema<{
|
|
|
152
152
|
}>;
|
|
153
153
|
display_name: string;
|
|
154
154
|
included_items: Record<string, {
|
|
155
|
-
repeat?: "never" | DayInterval | undefined;
|
|
156
155
|
quantity?: number | undefined;
|
|
156
|
+
repeat?: "never" | DayInterval | undefined;
|
|
157
157
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
158
158
|
}>;
|
|
159
159
|
};
|
|
@@ -78,13 +78,13 @@ declare const userApiKeysCrud: CrudSchemaFromOptions<{
|
|
|
78
78
|
is_public: undefined;
|
|
79
79
|
user_id: undefined;
|
|
80
80
|
}, "">, userApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
81
|
-
description: string;
|
|
82
81
|
user_id: string;
|
|
83
82
|
type: "user";
|
|
83
|
+
description: string;
|
|
84
84
|
id: string;
|
|
85
|
+
created_at_millis: number;
|
|
85
86
|
expires_at_millis: number | undefined;
|
|
86
87
|
manually_revoked_at_millis: number | undefined;
|
|
87
|
-
created_at_millis: number;
|
|
88
88
|
is_public: boolean;
|
|
89
89
|
} & {
|
|
90
90
|
value: string;
|
|
@@ -176,13 +176,13 @@ declare const teamApiKeysCrud: CrudSchemaFromOptions<{
|
|
|
176
176
|
is_public: undefined;
|
|
177
177
|
team_id: undefined;
|
|
178
178
|
}, "">, teamApiKeysCreateOutputSchema: yup$1.ObjectSchema<{
|
|
179
|
-
description: string;
|
|
180
179
|
type: "team";
|
|
181
180
|
team_id: string;
|
|
181
|
+
description: string;
|
|
182
182
|
id: string;
|
|
183
|
+
created_at_millis: number;
|
|
183
184
|
expires_at_millis: number | undefined;
|
|
184
185
|
manually_revoked_at_millis: number | undefined;
|
|
185
|
-
created_at_millis: number;
|
|
186
186
|
is_public: boolean;
|
|
187
187
|
} & {
|
|
188
188
|
value: string;
|
|
@@ -24,18 +24,21 @@ declare const teamMemberProfilesCrudServerReadSchema: yup$1.ObjectSchema<{
|
|
|
24
24
|
type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
|
|
25
25
|
} | null;
|
|
26
26
|
primary_email: string | null;
|
|
27
|
-
selected_team_id: string | null;
|
|
28
|
-
is_anonymous: boolean;
|
|
29
|
-
is_restricted: boolean;
|
|
30
|
-
requires_totp_mfa: boolean;
|
|
31
27
|
display_name: string | null;
|
|
32
28
|
client_metadata: {} | null;
|
|
33
29
|
client_read_only_metadata: {} | null;
|
|
34
30
|
server_metadata: {} | null;
|
|
35
31
|
id: string;
|
|
32
|
+
selected_team_id: string | null;
|
|
33
|
+
is_anonymous: boolean;
|
|
34
|
+
is_restricted: boolean;
|
|
35
|
+
requires_totp_mfa: boolean;
|
|
36
|
+
country_code: string | null;
|
|
37
|
+
profile_image_url: string | null;
|
|
38
|
+
signed_up_at_millis: number;
|
|
39
|
+
last_active_at_millis: number;
|
|
36
40
|
primary_email_verified: boolean;
|
|
37
41
|
primary_email_auth_enabled: boolean;
|
|
38
|
-
profile_image_url: string | null;
|
|
39
42
|
selected_team: {
|
|
40
43
|
client_metadata?: {} | null | undefined;
|
|
41
44
|
client_read_only_metadata?: {} | null | undefined;
|
|
@@ -45,15 +48,12 @@ declare const teamMemberProfilesCrudServerReadSchema: yup$1.ObjectSchema<{
|
|
|
45
48
|
created_at_millis: number;
|
|
46
49
|
profile_image_url: string | null;
|
|
47
50
|
} | null;
|
|
48
|
-
signed_up_at_millis: number;
|
|
49
51
|
has_password: boolean;
|
|
50
52
|
otp_auth_enabled: boolean;
|
|
51
53
|
passkey_auth_enabled: boolean;
|
|
52
|
-
last_active_at_millis: number;
|
|
53
54
|
restricted_by_admin: boolean;
|
|
54
55
|
restricted_by_admin_reason: string | null;
|
|
55
56
|
restricted_by_admin_private_details: string | null;
|
|
56
|
-
country_code: string | null;
|
|
57
57
|
risk_scores: {
|
|
58
58
|
sign_up: {
|
|
59
59
|
bot: number;
|
|
@@ -147,18 +147,21 @@ declare const teamMemberProfilesCrud: CrudSchemaFromOptions<{
|
|
|
147
147
|
type: "anonymous" | "email_not_verified" | "restricted_by_administrator";
|
|
148
148
|
} | null;
|
|
149
149
|
primary_email: string | null;
|
|
150
|
-
selected_team_id: string | null;
|
|
151
|
-
is_anonymous: boolean;
|
|
152
|
-
is_restricted: boolean;
|
|
153
|
-
requires_totp_mfa: boolean;
|
|
154
150
|
display_name: string | null;
|
|
155
151
|
client_metadata: {} | null;
|
|
156
152
|
client_read_only_metadata: {} | null;
|
|
157
153
|
server_metadata: {} | null;
|
|
158
154
|
id: string;
|
|
155
|
+
selected_team_id: string | null;
|
|
156
|
+
is_anonymous: boolean;
|
|
157
|
+
is_restricted: boolean;
|
|
158
|
+
requires_totp_mfa: boolean;
|
|
159
|
+
country_code: string | null;
|
|
160
|
+
profile_image_url: string | null;
|
|
161
|
+
signed_up_at_millis: number;
|
|
162
|
+
last_active_at_millis: number;
|
|
159
163
|
primary_email_verified: boolean;
|
|
160
164
|
primary_email_auth_enabled: boolean;
|
|
161
|
-
profile_image_url: string | null;
|
|
162
165
|
selected_team: {
|
|
163
166
|
client_metadata?: {} | null | undefined;
|
|
164
167
|
client_read_only_metadata?: {} | null | undefined;
|
|
@@ -168,15 +171,12 @@ declare const teamMemberProfilesCrud: CrudSchemaFromOptions<{
|
|
|
168
171
|
created_at_millis: number;
|
|
169
172
|
profile_image_url: string | null;
|
|
170
173
|
} | null;
|
|
171
|
-
signed_up_at_millis: number;
|
|
172
174
|
has_password: boolean;
|
|
173
175
|
otp_auth_enabled: boolean;
|
|
174
176
|
passkey_auth_enabled: boolean;
|
|
175
|
-
last_active_at_millis: number;
|
|
176
177
|
restricted_by_admin: boolean;
|
|
177
178
|
restricted_by_admin_reason: string | null;
|
|
178
179
|
restricted_by_admin_private_details: string | null;
|
|
179
|
-
country_code: string | null;
|
|
180
180
|
risk_scores: {
|
|
181
181
|
sign_up: {
|
|
182
182
|
bot: number;
|
|
@@ -58,8 +58,8 @@ declare const transactionEntrySchema: yup$1.MixedSchema<{
|
|
|
58
58
|
}>;
|
|
59
59
|
display_name: string;
|
|
60
60
|
included_items: Record<string, {
|
|
61
|
-
repeat?: "never" | DayInterval | undefined;
|
|
62
61
|
quantity?: number | undefined;
|
|
62
|
+
repeat?: "never" | DayInterval | undefined;
|
|
63
63
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
64
64
|
}>;
|
|
65
65
|
};
|
|
@@ -142,8 +142,8 @@ declare const transactionSchema: yup$1.ObjectSchema<{
|
|
|
142
142
|
}>;
|
|
143
143
|
display_name: string;
|
|
144
144
|
included_items: Record<string, {
|
|
145
|
-
repeat?: "never" | DayInterval | undefined;
|
|
146
145
|
quantity?: number | undefined;
|
|
146
|
+
repeat?: "never" | DayInterval | undefined;
|
|
147
147
|
expires?: "never" | "when-purchase-expires" | "when-repeated" | undefined;
|
|
148
148
|
}>;
|
|
149
149
|
};
|