@hexclave/shared 1.0.47 → 1.0.48

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 (57) hide show
  1. package/dist/{admin-interface-DH4uLcZ3.d.ts → admin-interface-blbgnrRn.d.ts} +6 -6
  2. package/dist/{admin-interface-DH4uLcZ3.d.ts.map → admin-interface-blbgnrRn.d.ts.map} +1 -1
  3. package/dist/{admin-metrics-pphx-0AE.d.ts → admin-metrics-bsOkw4YQ.d.ts} +7 -7
  4. package/dist/{admin-metrics-pphx-0AE.d.ts.map → admin-metrics-bsOkw4YQ.d.ts.map} +1 -1
  5. package/dist/{client-interface-BmHWUJhv.d.ts → client-interface-BQz4jNAC.d.ts} +5 -5
  6. package/dist/{client-interface-BmHWUJhv.d.ts.map → client-interface-BQz4jNAC.d.ts.map} +1 -1
  7. package/dist/config/schema.d.ts +1 -1
  8. package/dist/config-authoring.d.ts +1 -1
  9. package/dist/{current-user-Dvf8Ttjo.d.ts → current-user-BBoN3hsn.d.ts} +3 -3
  10. package/dist/{current-user-Dvf8Ttjo.d.ts.map → current-user-BBoN3hsn.d.ts.map} +1 -1
  11. package/dist/{email-outbox-DoxRUJop.d.ts → email-outbox-B1wmVPRG.d.ts} +43 -43
  12. package/dist/{email-outbox-DoxRUJop.d.ts.map → email-outbox-B1wmVPRG.d.ts.map} +1 -1
  13. package/dist/esm/config/schema.d.ts +44 -44
  14. package/dist/esm/interface/admin-interface.js +1 -1
  15. package/dist/esm/interface/admin-metrics.d.ts +6 -6
  16. package/dist/esm/interface/client-interface.js +1 -1
  17. package/dist/esm/interface/conversations.d.ts +34 -34
  18. package/dist/esm/interface/crud/current-user.d.ts +2 -2
  19. package/dist/esm/interface/crud/email-outbox.d.ts +42 -42
  20. package/dist/esm/interface/crud/invoices.d.ts +2 -2
  21. package/dist/esm/interface/crud/projects.d.ts +43 -43
  22. package/dist/esm/interface/crud/team-member-profiles.d.ts +10 -10
  23. package/dist/esm/interface/crud/users.d.ts +10 -10
  24. package/dist/esm/interface/server-interface.js +1 -1
  25. package/dist/esm/interface/webhooks.d.ts +2 -2
  26. package/dist/helpers/production-mode.d.ts +1 -1
  27. package/dist/index.d.ts +3 -3
  28. package/dist/interface/admin-interface.d.ts +1 -1
  29. package/dist/interface/admin-interface.js +1 -1
  30. package/dist/interface/admin-metrics.d.ts +1 -1
  31. package/dist/interface/client-interface.d.ts +1 -1
  32. package/dist/interface/client-interface.js +1 -1
  33. package/dist/interface/conversations.d.ts +34 -34
  34. package/dist/interface/crud/current-user.d.ts +1 -1
  35. package/dist/interface/crud/email-outbox.d.ts +1 -1
  36. package/dist/interface/crud/invoices.d.ts +1 -1
  37. package/dist/interface/crud/projects.d.ts +1 -1
  38. package/dist/interface/crud/team-member-profiles.d.ts +1 -1
  39. package/dist/interface/crud/users.d.ts +1 -1
  40. package/dist/interface/server-interface.d.ts +1 -1
  41. package/dist/interface/server-interface.js +1 -1
  42. package/dist/interface/webhooks.d.ts +1 -1
  43. package/dist/{invoices-U65KzAZX.d.ts → invoices-CHo9YKbI.d.ts} +3 -3
  44. package/dist/{invoices-U65KzAZX.d.ts.map → invoices-CHo9YKbI.d.ts.map} +1 -1
  45. package/dist/{projects-dH9I0bcX.d.ts → projects-CFTNXRfG.d.ts} +44 -44
  46. package/dist/{projects-dH9I0bcX.d.ts.map → projects-CFTNXRfG.d.ts.map} +1 -1
  47. package/dist/{schema-BSb4tzx3.d.ts → schema-Daq0b_sf.d.ts} +45 -45
  48. package/dist/{schema-BSb4tzx3.d.ts.map → schema-Daq0b_sf.d.ts.map} +1 -1
  49. package/dist/{server-interface-CxorzgTW.d.ts → server-interface-BjY-eS4Q.d.ts} +5 -5
  50. package/dist/{server-interface-CxorzgTW.d.ts.map → server-interface-BjY-eS4Q.d.ts.map} +1 -1
  51. package/dist/{team-member-profiles-uTluO8XI.d.ts → team-member-profiles-BoDEqx-0.d.ts} +11 -11
  52. package/dist/{team-member-profiles-uTluO8XI.d.ts.map → team-member-profiles-BoDEqx-0.d.ts.map} +1 -1
  53. package/dist/{users-CmBBuF00.d.ts → users-DHNRwoSz.d.ts} +12 -12
  54. package/dist/{users-CmBBuF00.d.ts.map → users-DHNRwoSz.d.ts.map} +1 -1
  55. package/dist/{webhooks-ByXrdSOx.d.ts → webhooks-8Ts1Clcb.d.ts} +3 -3
  56. package/dist/{webhooks-ByXrdSOx.d.ts.map → webhooks-8Ts1Clcb.d.ts.map} +1 -1
  57. package/package.json +1 -1
@@ -160,9 +160,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
160
160
  } | {
161
161
  status: "scheduled";
162
162
  id: string;
163
+ subject: string;
164
+ created_at_millis: number;
163
165
  html: string | null;
164
166
  text: string | null;
165
- created_at_millis: number;
166
167
  updated_at_millis: number;
167
168
  tsx_source: string;
168
169
  theme_id: string | null;
@@ -199,16 +200,16 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
199
200
  has_delivered: boolean;
200
201
  started_rendering_at_millis: number;
201
202
  rendered_at_millis: number;
202
- subject: string;
203
203
  is_transactional: boolean;
204
204
  is_high_priority: boolean;
205
205
  notification_category_id: string | null;
206
206
  } | {
207
207
  status: "queued";
208
208
  id: string;
209
+ subject: string;
210
+ created_at_millis: number;
209
211
  html: string | null;
210
212
  text: string | null;
211
- created_at_millis: number;
212
213
  updated_at_millis: number;
213
214
  tsx_source: string;
214
215
  theme_id: string | null;
@@ -245,16 +246,16 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
245
246
  has_delivered: boolean;
246
247
  started_rendering_at_millis: number;
247
248
  rendered_at_millis: number;
248
- subject: string;
249
249
  is_transactional: boolean;
250
250
  is_high_priority: boolean;
251
251
  notification_category_id: string | null;
252
252
  } | {
253
253
  status: "sending";
254
254
  id: string;
255
+ subject: string;
256
+ created_at_millis: number;
255
257
  html: string | null;
256
258
  text: string | null;
257
- created_at_millis: number;
258
259
  updated_at_millis: number;
259
260
  tsx_source: string;
260
261
  theme_id: string | null;
@@ -291,7 +292,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
291
292
  has_delivered: boolean;
292
293
  started_rendering_at_millis: number;
293
294
  rendered_at_millis: number;
294
- subject: string;
295
295
  is_transactional: boolean;
296
296
  is_high_priority: boolean;
297
297
  notification_category_id: string | null;
@@ -299,9 +299,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
299
299
  } | {
300
300
  status: "server-error";
301
301
  id: string;
302
+ subject: string;
303
+ created_at_millis: number;
302
304
  html: string | null;
303
305
  text: string | null;
304
- created_at_millis: number;
305
306
  updated_at_millis: number;
306
307
  tsx_source: string;
307
308
  theme_id: string | null;
@@ -338,7 +339,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
338
339
  has_delivered: boolean;
339
340
  started_rendering_at_millis: number;
340
341
  rendered_at_millis: number;
341
- subject: string;
342
342
  is_transactional: boolean;
343
343
  is_high_priority: boolean;
344
344
  notification_category_id: string | null;
@@ -346,11 +346,11 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
346
346
  error_at_millis: number;
347
347
  server_error: string;
348
348
  } | {
349
+ subject?: string | undefined;
349
350
  html?: string | null | undefined;
350
351
  text?: string | null | undefined;
351
352
  started_rendering_at_millis?: number | undefined;
352
353
  rendered_at_millis?: number | undefined;
353
- subject?: string | undefined;
354
354
  is_transactional?: boolean | undefined;
355
355
  is_high_priority?: boolean | undefined;
356
356
  notification_category_id?: string | null | undefined;
@@ -398,9 +398,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
398
398
  } | {
399
399
  status: "bounced";
400
400
  id: string;
401
+ subject: string;
402
+ created_at_millis: number;
401
403
  html: string | null;
402
404
  text: string | null;
403
- created_at_millis: number;
404
405
  updated_at_millis: number;
405
406
  tsx_source: string;
406
407
  theme_id: string | null;
@@ -437,7 +438,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
437
438
  has_delivered: boolean;
438
439
  started_rendering_at_millis: number;
439
440
  rendered_at_millis: number;
440
- subject: string;
441
441
  is_transactional: boolean;
442
442
  is_high_priority: boolean;
443
443
  notification_category_id: string | null;
@@ -446,9 +446,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
446
446
  } | {
447
447
  status: "delivery-delayed";
448
448
  id: string;
449
+ subject: string;
450
+ created_at_millis: number;
449
451
  html: string | null;
450
452
  text: string | null;
451
- created_at_millis: number;
452
453
  updated_at_millis: number;
453
454
  tsx_source: string;
454
455
  theme_id: string | null;
@@ -485,7 +486,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
485
486
  has_delivered: boolean;
486
487
  started_rendering_at_millis: number;
487
488
  rendered_at_millis: number;
488
- subject: string;
489
489
  is_transactional: boolean;
490
490
  is_high_priority: boolean;
491
491
  notification_category_id: string | null;
@@ -494,9 +494,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
494
494
  } | {
495
495
  status: "sent";
496
496
  id: string;
497
+ subject: string;
498
+ created_at_millis: number;
497
499
  html: string | null;
498
500
  text: string | null;
499
- created_at_millis: number;
500
501
  updated_at_millis: number;
501
502
  tsx_source: string;
502
503
  theme_id: string | null;
@@ -533,7 +534,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
533
534
  has_delivered: boolean;
534
535
  started_rendering_at_millis: number;
535
536
  rendered_at_millis: number;
536
- subject: string;
537
537
  is_transactional: boolean;
538
538
  is_high_priority: boolean;
539
539
  notification_category_id: string | null;
@@ -543,9 +543,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
543
543
  } | {
544
544
  status: "opened";
545
545
  id: string;
546
+ subject: string;
547
+ created_at_millis: number;
546
548
  html: string | null;
547
549
  text: string | null;
548
- created_at_millis: number;
549
550
  updated_at_millis: number;
550
551
  tsx_source: string;
551
552
  theme_id: string | null;
@@ -582,7 +583,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
582
583
  has_delivered: boolean;
583
584
  started_rendering_at_millis: number;
584
585
  rendered_at_millis: number;
585
- subject: string;
586
586
  is_transactional: boolean;
587
587
  is_high_priority: boolean;
588
588
  notification_category_id: string | null;
@@ -593,9 +593,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
593
593
  } | {
594
594
  status: "clicked";
595
595
  id: string;
596
+ subject: string;
597
+ created_at_millis: number;
596
598
  html: string | null;
597
599
  text: string | null;
598
- created_at_millis: number;
599
600
  updated_at_millis: number;
600
601
  tsx_source: string;
601
602
  theme_id: string | null;
@@ -632,7 +633,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
632
633
  has_delivered: boolean;
633
634
  started_rendering_at_millis: number;
634
635
  rendered_at_millis: number;
635
- subject: string;
636
636
  is_transactional: boolean;
637
637
  is_high_priority: boolean;
638
638
  notification_category_id: string | null;
@@ -643,9 +643,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
643
643
  } | {
644
644
  status: "marked-as-spam";
645
645
  id: string;
646
+ subject: string;
647
+ created_at_millis: number;
646
648
  html: string | null;
647
649
  text: string | null;
648
- created_at_millis: number;
649
650
  updated_at_millis: number;
650
651
  tsx_source: string;
651
652
  theme_id: string | null;
@@ -682,7 +683,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
682
683
  has_delivered: boolean;
683
684
  started_rendering_at_millis: number;
684
685
  rendered_at_millis: number;
685
- subject: string;
686
686
  is_transactional: boolean;
687
687
  is_high_priority: boolean;
688
688
  notification_category_id: string | null;
@@ -880,9 +880,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
880
880
  } | {
881
881
  status: "scheduled";
882
882
  id: string;
883
+ subject: string;
884
+ created_at_millis: number;
883
885
  html: string | null;
884
886
  text: string | null;
885
- created_at_millis: number;
886
887
  updated_at_millis: number;
887
888
  tsx_source: string;
888
889
  theme_id: string | null;
@@ -919,16 +920,16 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
919
920
  has_delivered: boolean;
920
921
  started_rendering_at_millis: number;
921
922
  rendered_at_millis: number;
922
- subject: string;
923
923
  is_transactional: boolean;
924
924
  is_high_priority: boolean;
925
925
  notification_category_id: string | null;
926
926
  } | {
927
927
  status: "queued";
928
928
  id: string;
929
+ subject: string;
930
+ created_at_millis: number;
929
931
  html: string | null;
930
932
  text: string | null;
931
- created_at_millis: number;
932
933
  updated_at_millis: number;
933
934
  tsx_source: string;
934
935
  theme_id: string | null;
@@ -965,16 +966,16 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
965
966
  has_delivered: boolean;
966
967
  started_rendering_at_millis: number;
967
968
  rendered_at_millis: number;
968
- subject: string;
969
969
  is_transactional: boolean;
970
970
  is_high_priority: boolean;
971
971
  notification_category_id: string | null;
972
972
  } | {
973
973
  status: "sending";
974
974
  id: string;
975
+ subject: string;
976
+ created_at_millis: number;
975
977
  html: string | null;
976
978
  text: string | null;
977
- created_at_millis: number;
978
979
  updated_at_millis: number;
979
980
  tsx_source: string;
980
981
  theme_id: string | null;
@@ -1011,7 +1012,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1011
1012
  has_delivered: boolean;
1012
1013
  started_rendering_at_millis: number;
1013
1014
  rendered_at_millis: number;
1014
- subject: string;
1015
1015
  is_transactional: boolean;
1016
1016
  is_high_priority: boolean;
1017
1017
  notification_category_id: string | null;
@@ -1019,9 +1019,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1019
1019
  } | {
1020
1020
  status: "server-error";
1021
1021
  id: string;
1022
+ subject: string;
1023
+ created_at_millis: number;
1022
1024
  html: string | null;
1023
1025
  text: string | null;
1024
- created_at_millis: number;
1025
1026
  updated_at_millis: number;
1026
1027
  tsx_source: string;
1027
1028
  theme_id: string | null;
@@ -1058,7 +1059,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1058
1059
  has_delivered: boolean;
1059
1060
  started_rendering_at_millis: number;
1060
1061
  rendered_at_millis: number;
1061
- subject: string;
1062
1062
  is_transactional: boolean;
1063
1063
  is_high_priority: boolean;
1064
1064
  notification_category_id: string | null;
@@ -1066,11 +1066,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1066
1066
  error_at_millis: number;
1067
1067
  server_error: string;
1068
1068
  } | {
1069
+ subject?: string | undefined;
1069
1070
  html?: string | null | undefined;
1070
1071
  text?: string | null | undefined;
1071
1072
  started_rendering_at_millis?: number | undefined;
1072
1073
  rendered_at_millis?: number | undefined;
1073
- subject?: string | undefined;
1074
1074
  is_transactional?: boolean | undefined;
1075
1075
  is_high_priority?: boolean | undefined;
1076
1076
  notification_category_id?: string | null | undefined;
@@ -1118,9 +1118,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1118
1118
  } | {
1119
1119
  status: "bounced";
1120
1120
  id: string;
1121
+ subject: string;
1122
+ created_at_millis: number;
1121
1123
  html: string | null;
1122
1124
  text: string | null;
1123
- created_at_millis: number;
1124
1125
  updated_at_millis: number;
1125
1126
  tsx_source: string;
1126
1127
  theme_id: string | null;
@@ -1157,7 +1158,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1157
1158
  has_delivered: boolean;
1158
1159
  started_rendering_at_millis: number;
1159
1160
  rendered_at_millis: number;
1160
- subject: string;
1161
1161
  is_transactional: boolean;
1162
1162
  is_high_priority: boolean;
1163
1163
  notification_category_id: string | null;
@@ -1166,9 +1166,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1166
1166
  } | {
1167
1167
  status: "delivery-delayed";
1168
1168
  id: string;
1169
+ subject: string;
1170
+ created_at_millis: number;
1169
1171
  html: string | null;
1170
1172
  text: string | null;
1171
- created_at_millis: number;
1172
1173
  updated_at_millis: number;
1173
1174
  tsx_source: string;
1174
1175
  theme_id: string | null;
@@ -1205,7 +1206,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1205
1206
  has_delivered: boolean;
1206
1207
  started_rendering_at_millis: number;
1207
1208
  rendered_at_millis: number;
1208
- subject: string;
1209
1209
  is_transactional: boolean;
1210
1210
  is_high_priority: boolean;
1211
1211
  notification_category_id: string | null;
@@ -1214,9 +1214,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1214
1214
  } | {
1215
1215
  status: "sent";
1216
1216
  id: string;
1217
+ subject: string;
1218
+ created_at_millis: number;
1217
1219
  html: string | null;
1218
1220
  text: string | null;
1219
- created_at_millis: number;
1220
1221
  updated_at_millis: number;
1221
1222
  tsx_source: string;
1222
1223
  theme_id: string | null;
@@ -1253,7 +1254,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1253
1254
  has_delivered: boolean;
1254
1255
  started_rendering_at_millis: number;
1255
1256
  rendered_at_millis: number;
1256
- subject: string;
1257
1257
  is_transactional: boolean;
1258
1258
  is_high_priority: boolean;
1259
1259
  notification_category_id: string | null;
@@ -1263,9 +1263,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1263
1263
  } | {
1264
1264
  status: "opened";
1265
1265
  id: string;
1266
+ subject: string;
1267
+ created_at_millis: number;
1266
1268
  html: string | null;
1267
1269
  text: string | null;
1268
- created_at_millis: number;
1269
1270
  updated_at_millis: number;
1270
1271
  tsx_source: string;
1271
1272
  theme_id: string | null;
@@ -1302,7 +1303,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1302
1303
  has_delivered: boolean;
1303
1304
  started_rendering_at_millis: number;
1304
1305
  rendered_at_millis: number;
1305
- subject: string;
1306
1306
  is_transactional: boolean;
1307
1307
  is_high_priority: boolean;
1308
1308
  notification_category_id: string | null;
@@ -1313,9 +1313,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1313
1313
  } | {
1314
1314
  status: "clicked";
1315
1315
  id: string;
1316
+ subject: string;
1317
+ created_at_millis: number;
1316
1318
  html: string | null;
1317
1319
  text: string | null;
1318
- created_at_millis: number;
1319
1320
  updated_at_millis: number;
1320
1321
  tsx_source: string;
1321
1322
  theme_id: string | null;
@@ -1352,7 +1353,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1352
1353
  has_delivered: boolean;
1353
1354
  started_rendering_at_millis: number;
1354
1355
  rendered_at_millis: number;
1355
- subject: string;
1356
1356
  is_transactional: boolean;
1357
1357
  is_high_priority: boolean;
1358
1358
  notification_category_id: string | null;
@@ -1363,9 +1363,10 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1363
1363
  } | {
1364
1364
  status: "marked-as-spam";
1365
1365
  id: string;
1366
+ subject: string;
1367
+ created_at_millis: number;
1366
1368
  html: string | null;
1367
1369
  text: string | null;
1368
- created_at_millis: number;
1369
1370
  updated_at_millis: number;
1370
1371
  tsx_source: string;
1371
1372
  theme_id: string | null;
@@ -1402,7 +1403,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1402
1403
  has_delivered: boolean;
1403
1404
  started_rendering_at_millis: number;
1404
1405
  rendered_at_millis: number;
1405
- subject: string;
1406
1406
  is_transactional: boolean;
1407
1407
  is_high_priority: boolean;
1408
1408
  notification_category_id: string | null;
@@ -3,7 +3,7 @@ import * as yup$1 from "yup";
3
3
  //#region src/interface/crud/invoices.d.ts
4
4
  declare const customerInvoiceReadSchema: yup$1.ObjectSchema<{
5
5
  created_at_millis: number;
6
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
6
+ status: "open" | "draft" | "paid" | "uncollectible" | "void" | null;
7
7
  amount_total: number;
8
8
  hosted_invoice_url: string | null;
9
9
  }, yup$1.AnyObject, {
@@ -15,7 +15,7 @@ declare const customerInvoiceReadSchema: yup$1.ObjectSchema<{
15
15
  type CustomerInvoiceRead = yup$1.InferType<typeof customerInvoiceReadSchema>;
16
16
  declare const customerInvoicesListResponseSchema: yup$1.ObjectSchema<{
17
17
  items: {
18
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
18
+ status: "open" | "draft" | "paid" | "uncollectible" | "void" | null;
19
19
  created_at_millis: number;
20
20
  amount_total: number;
21
21
  hosted_invoice_url: string | null;
@@ -50,7 +50,7 @@ declare const projectsCrudAdminReadSchema: import("yup").ObjectSchema<{
50
50
  onboarding_state: {
51
51
  selected_config_choice: "create-new" | "link-existing";
52
52
  selected_apps: string[];
53
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
53
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
54
54
  selected_email_theme_id: string | null;
55
55
  selected_payments_country: "US" | "OTHER";
56
56
  } | null | undefined;
@@ -61,6 +61,10 @@ declare const projectsCrudAdminReadSchema: import("yup").ObjectSchema<{
61
61
  message: string;
62
62
  }[];
63
63
  config: {
64
+ domains: {
65
+ domain: string;
66
+ handler_path: string;
67
+ }[];
64
68
  oauth_providers: {
65
69
  client_id?: string | undefined;
66
70
  client_secret?: string | undefined;
@@ -83,10 +87,6 @@ declare const projectsCrudAdminReadSchema: import("yup").ObjectSchema<{
83
87
  enabled_oauth_providers: {
84
88
  id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
85
89
  }[];
86
- domains: {
87
- domain: string;
88
- handler_path: string;
89
- }[];
90
90
  email_config: {
91
91
  password?: string | undefined;
92
92
  host?: string | undefined;
@@ -173,6 +173,10 @@ declare const projectsCrudClientReadSchema: import("yup").ObjectSchema<{
173
173
  message: string;
174
174
  }[];
175
175
  config: {
176
+ domains: {
177
+ domain: string;
178
+ handler_path: string;
179
+ }[];
176
180
  allow_localhost: boolean;
177
181
  sign_up_enabled: boolean;
178
182
  credential_enabled: boolean;
@@ -185,10 +189,6 @@ declare const projectsCrudClientReadSchema: import("yup").ObjectSchema<{
185
189
  enabled_oauth_providers: {
186
190
  id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
187
191
  }[];
188
- domains: {
189
- domain: string;
190
- handler_path: string;
191
- }[];
192
192
  };
193
193
  }, import("yup").AnyObject, {
194
194
  id: undefined;
@@ -223,11 +223,15 @@ declare const projectsCrudAdminUpdateSchema: import("yup").ObjectSchema<{
223
223
  onboarding_state: {
224
224
  selected_config_choice: "create-new" | "link-existing";
225
225
  selected_apps: string[];
226
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
226
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
227
227
  selected_email_theme_id: string | null;
228
228
  selected_payments_country: "US" | "OTHER";
229
229
  } | null | undefined;
230
230
  config: {
231
+ domains?: {
232
+ domain: string;
233
+ handler_path: string;
234
+ }[] | undefined;
231
235
  oauth_providers?: {
232
236
  client_id?: string | undefined;
233
237
  client_secret?: string | undefined;
@@ -246,10 +250,6 @@ declare const projectsCrudAdminUpdateSchema: import("yup").ObjectSchema<{
246
250
  client_user_deletion_enabled?: boolean | undefined;
247
251
  allow_user_api_keys?: boolean | undefined;
248
252
  allow_team_api_keys?: boolean | undefined;
249
- domains?: {
250
- domain: string;
251
- handler_path: string;
252
- }[] | undefined;
253
253
  email_config?: {
254
254
  password?: string | undefined;
255
255
  host?: string | undefined;
@@ -303,11 +303,15 @@ declare const projectsCrudAdminCreateSchema: import("yup").ObjectSchema<{
303
303
  onboarding_state: {
304
304
  selected_config_choice: "create-new" | "link-existing";
305
305
  selected_apps: string[];
306
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
306
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
307
307
  selected_email_theme_id: string | null;
308
308
  selected_payments_country: "US" | "OTHER";
309
309
  } | null | undefined;
310
310
  config: {
311
+ domains?: {
312
+ domain: string;
313
+ handler_path: string;
314
+ }[] | undefined;
311
315
  oauth_providers?: {
312
316
  client_id?: string | undefined;
313
317
  client_secret?: string | undefined;
@@ -326,10 +330,6 @@ declare const projectsCrudAdminCreateSchema: import("yup").ObjectSchema<{
326
330
  client_user_deletion_enabled?: boolean | undefined;
327
331
  allow_user_api_keys?: boolean | undefined;
328
332
  allow_team_api_keys?: boolean | undefined;
329
- domains?: {
330
- domain: string;
331
- handler_path: string;
332
- }[] | undefined;
333
333
  email_config?: {
334
334
  password?: string | undefined;
335
335
  host?: string | undefined;
@@ -389,6 +389,10 @@ declare const clientProjectsCrud: import("../../crud").CrudSchemaFromOptions<{
389
389
  message: string;
390
390
  }[];
391
391
  config: {
392
+ domains: {
393
+ domain: string;
394
+ handler_path: string;
395
+ }[];
392
396
  allow_localhost: boolean;
393
397
  sign_up_enabled: boolean;
394
398
  credential_enabled: boolean;
@@ -401,10 +405,6 @@ declare const clientProjectsCrud: import("../../crud").CrudSchemaFromOptions<{
401
405
  enabled_oauth_providers: {
402
406
  id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
403
407
  }[];
404
- domains: {
405
- domain: string;
406
- handler_path: string;
407
- }[];
408
408
  };
409
409
  }, import("yup").AnyObject, {
410
410
  id: undefined;
@@ -453,7 +453,7 @@ declare const projectsCrud: import("../../crud").CrudSchemaFromOptions<{
453
453
  onboarding_state: {
454
454
  selected_config_choice: "create-new" | "link-existing";
455
455
  selected_apps: string[];
456
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
456
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
457
457
  selected_email_theme_id: string | null;
458
458
  selected_payments_country: "US" | "OTHER";
459
459
  } | null | undefined;
@@ -464,6 +464,10 @@ declare const projectsCrud: import("../../crud").CrudSchemaFromOptions<{
464
464
  message: string;
465
465
  }[];
466
466
  config: {
467
+ domains: {
468
+ domain: string;
469
+ handler_path: string;
470
+ }[];
467
471
  oauth_providers: {
468
472
  client_id?: string | undefined;
469
473
  client_secret?: string | undefined;
@@ -486,10 +490,6 @@ declare const projectsCrud: import("../../crud").CrudSchemaFromOptions<{
486
490
  enabled_oauth_providers: {
487
491
  id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
488
492
  }[];
489
- domains: {
490
- domain: string;
491
- handler_path: string;
492
- }[];
493
493
  email_config: {
494
494
  password?: string | undefined;
495
495
  host?: string | undefined;
@@ -578,11 +578,15 @@ declare const projectsCrud: import("../../crud").CrudSchemaFromOptions<{
578
578
  onboarding_state: {
579
579
  selected_config_choice: "create-new" | "link-existing";
580
580
  selected_apps: string[];
581
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
581
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
582
582
  selected_email_theme_id: string | null;
583
583
  selected_payments_country: "US" | "OTHER";
584
584
  } | null | undefined;
585
585
  config: {
586
+ domains?: {
587
+ domain: string;
588
+ handler_path: string;
589
+ }[] | undefined;
586
590
  oauth_providers?: {
587
591
  client_id?: string | undefined;
588
592
  client_secret?: string | undefined;
@@ -601,10 +605,6 @@ declare const projectsCrud: import("../../crud").CrudSchemaFromOptions<{
601
605
  client_user_deletion_enabled?: boolean | undefined;
602
606
  allow_user_api_keys?: boolean | undefined;
603
607
  allow_team_api_keys?: boolean | undefined;
604
- domains?: {
605
- domain: string;
606
- handler_path: string;
607
- }[] | undefined;
608
608
  email_config?: {
609
609
  password?: string | undefined;
610
610
  host?: string | undefined;
@@ -686,7 +686,7 @@ declare const adminUserProjectsCrud: import("../../crud").CrudSchemaFromOptions<
686
686
  onboarding_state: {
687
687
  selected_config_choice: "create-new" | "link-existing";
688
688
  selected_apps: string[];
689
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
689
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
690
690
  selected_email_theme_id: string | null;
691
691
  selected_payments_country: "US" | "OTHER";
692
692
  } | null | undefined;
@@ -697,6 +697,10 @@ declare const adminUserProjectsCrud: import("../../crud").CrudSchemaFromOptions<
697
697
  message: string;
698
698
  }[];
699
699
  config: {
700
+ domains: {
701
+ domain: string;
702
+ handler_path: string;
703
+ }[];
700
704
  oauth_providers: {
701
705
  client_id?: string | undefined;
702
706
  client_secret?: string | undefined;
@@ -719,10 +723,6 @@ declare const adminUserProjectsCrud: import("../../crud").CrudSchemaFromOptions<
719
723
  enabled_oauth_providers: {
720
724
  id: "google" | "github" | "microsoft" | "spotify" | "facebook" | "discord" | "gitlab" | "bitbucket" | "linkedin" | "apple" | "x" | "twitch";
721
725
  }[];
722
- domains: {
723
- domain: string;
724
- handler_path: string;
725
- }[];
726
726
  email_config: {
727
727
  password?: string | undefined;
728
728
  host?: string | undefined;
@@ -811,11 +811,15 @@ declare const adminUserProjectsCrud: import("../../crud").CrudSchemaFromOptions<
811
811
  onboarding_state: {
812
812
  selected_config_choice: "create-new" | "link-existing";
813
813
  selected_apps: string[];
814
- selected_sign_in_methods: ("google" | "github" | "microsoft" | "credential" | "magicLink" | "passkey")[];
814
+ selected_sign_in_methods: ("google" | "github" | "microsoft" | "passkey" | "credential" | "magicLink")[];
815
815
  selected_email_theme_id: string | null;
816
816
  selected_payments_country: "US" | "OTHER";
817
817
  } | null | undefined;
818
818
  config: {
819
+ domains?: {
820
+ domain: string;
821
+ handler_path: string;
822
+ }[] | undefined;
819
823
  oauth_providers?: {
820
824
  client_id?: string | undefined;
821
825
  client_secret?: string | undefined;
@@ -834,10 +838,6 @@ declare const adminUserProjectsCrud: import("../../crud").CrudSchemaFromOptions<
834
838
  client_user_deletion_enabled?: boolean | undefined;
835
839
  allow_user_api_keys?: boolean | undefined;
836
840
  allow_team_api_keys?: boolean | undefined;
837
- domains?: {
838
- domain: string;
839
- handler_path: string;
840
- }[] | undefined;
841
841
  email_config?: {
842
842
  password?: string | undefined;
843
843
  host?: string | undefined;