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