@bash-app/bash-common 30.346.0 → 30.354.0

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 (36) hide show
  1. package/dist/extendedSchemas.d.ts +195 -0
  2. package/dist/extendedSchemas.d.ts.map +1 -1
  3. package/dist/extendedSchemas.js +12 -0
  4. package/dist/extendedSchemas.js.map +1 -1
  5. package/dist/index.d.ts +1 -0
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +1 -0
  8. package/dist/index.js.map +1 -1
  9. package/dist/locationShare.d.ts +16 -0
  10. package/dist/locationShare.d.ts.map +1 -1
  11. package/dist/sms/smsTemplates.d.ts +10 -1
  12. package/dist/sms/smsTemplates.d.ts.map +1 -1
  13. package/dist/sms/smsTemplates.js +1 -0
  14. package/dist/sms/smsTemplates.js.map +1 -1
  15. package/dist/utils/__tests__/moodTrackUtils.test.d.ts +2 -0
  16. package/dist/utils/__tests__/moodTrackUtils.test.d.ts.map +1 -0
  17. package/dist/utils/__tests__/moodTrackUtils.test.js +25 -0
  18. package/dist/utils/__tests__/moodTrackUtils.test.js.map +1 -0
  19. package/dist/utils/blog/blogCommentDbUtils.d.ts +4 -0
  20. package/dist/utils/blog/blogCommentDbUtils.d.ts.map +1 -1
  21. package/dist/utils/index.d.ts +1 -0
  22. package/dist/utils/index.d.ts.map +1 -1
  23. package/dist/utils/index.js +1 -0
  24. package/dist/utils/index.js.map +1 -1
  25. package/dist/utils/moodTrackUtils.d.ts +23 -0
  26. package/dist/utils/moodTrackUtils.d.ts.map +1 -0
  27. package/dist/utils/moodTrackUtils.js +171 -0
  28. package/dist/utils/moodTrackUtils.js.map +1 -0
  29. package/package.json +1 -1
  30. package/prisma/schema.prisma +84 -0
  31. package/src/extendedSchemas.ts +12 -0
  32. package/src/index.ts +1 -0
  33. package/src/sms/smsTemplates.ts +18 -2
  34. package/src/utils/__tests__/moodTrackUtils.test.ts +46 -0
  35. package/src/utils/index.ts +1 -0
  36. package/src/utils/moodTrackUtils.ts +190 -0
@@ -85,6 +85,9 @@ export declare const FRONT_END_USER_DATA_TO_SELECT: {
85
85
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
86
86
  bashPointsBalance: true;
87
87
  bashPointsEarnedLifetime: true;
88
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
89
+ hornClearBestMs: true;
90
+ hornClearBestAt: true;
88
91
  /** Host reputation fields */
89
92
  hostRating: true;
90
93
  totalRatings: true;
@@ -115,6 +118,15 @@ export declare const PUBLIC_TEASER_USER_DATA_TO_SELECT: {
115
118
  imageUpdatedAt: true;
116
119
  uploadedImage: true;
117
120
  uploadedImageUpdatedAt: true;
121
+ /** Public social links for attendee lists / teasers (IG, LinkedIn, etc.). */
122
+ socialMediaProfiles: {
123
+ select: {
124
+ id: true;
125
+ platform: true;
126
+ url: true;
127
+ userId: true;
128
+ };
129
+ };
118
130
  };
119
131
  export type PublicTeaserUser = Prisma.UserGetPayload<{
120
132
  select: typeof PUBLIC_TEASER_USER_DATA_TO_SELECT;
@@ -194,6 +206,9 @@ export declare const PRIVATE_USER_ACCOUNT_TO_SELECT: {
194
206
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
195
207
  bashPointsBalance: true;
196
208
  bashPointsEarnedLifetime: true;
209
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
210
+ hornClearBestMs: true;
211
+ hornClearBestAt: true;
197
212
  /** Host reputation fields */
198
213
  hostRating: true;
199
214
  totalRatings: true;
@@ -596,6 +611,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
596
611
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
597
612
  bashPointsBalance: true;
598
613
  bashPointsEarnedLifetime: true;
614
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
615
+ hornClearBestMs: true;
616
+ hornClearBestAt: true;
599
617
  /** Host reputation fields */
600
618
  hostRating: true;
601
619
  totalRatings: true;
@@ -676,6 +694,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
676
694
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
677
695
  bashPointsBalance: true;
678
696
  bashPointsEarnedLifetime: true;
697
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
698
+ hornClearBestMs: true;
699
+ hornClearBestAt: true;
679
700
  /** Host reputation fields */
680
701
  hostRating: true;
681
702
  totalRatings: true;
@@ -761,6 +782,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
761
782
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
762
783
  bashPointsBalance: true;
763
784
  bashPointsEarnedLifetime: true;
785
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
786
+ hornClearBestMs: true;
787
+ hornClearBestAt: true;
764
788
  /** Host reputation fields */
765
789
  hostRating: true;
766
790
  totalRatings: true;
@@ -826,6 +850,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
826
850
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
827
851
  bashPointsBalance: true;
828
852
  bashPointsEarnedLifetime: true;
853
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
854
+ hornClearBestMs: true;
855
+ hornClearBestAt: true;
829
856
  /** Host reputation fields */
830
857
  hostRating: true;
831
858
  totalRatings: true;
@@ -902,6 +929,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
902
929
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
903
930
  bashPointsBalance: true;
904
931
  bashPointsEarnedLifetime: true;
932
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
933
+ hornClearBestMs: true;
934
+ hornClearBestAt: true;
905
935
  /** Host reputation fields */
906
936
  hostRating: true;
907
937
  totalRatings: true;
@@ -983,6 +1013,9 @@ export declare const STRIPE_ACCOUNT_DATA_TO_INCLUDE: {
983
1013
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
984
1014
  bashPointsBalance: true;
985
1015
  bashPointsEarnedLifetime: true;
1016
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1017
+ hornClearBestMs: true;
1018
+ hornClearBestAt: true;
986
1019
  /** Host reputation fields */
987
1020
  hostRating: true;
988
1021
  totalRatings: true;
@@ -1112,6 +1145,9 @@ export declare const VOLUNTEER_DATA_TO_INCLUDE: {
1112
1145
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1113
1146
  bashPointsBalance: true;
1114
1147
  bashPointsEarnedLifetime: true;
1148
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1149
+ hornClearBestMs: true;
1150
+ hornClearBestAt: true;
1115
1151
  /** Host reputation fields */
1116
1152
  hostRating: true;
1117
1153
  totalRatings: true;
@@ -1275,6 +1311,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1275
1311
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1276
1312
  bashPointsBalance: true;
1277
1313
  bashPointsEarnedLifetime: true;
1314
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1315
+ hornClearBestMs: true;
1316
+ hornClearBestAt: true;
1278
1317
  /** Host reputation fields */
1279
1318
  hostRating: true;
1280
1319
  totalRatings: true;
@@ -1340,6 +1379,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1340
1379
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1341
1380
  bashPointsBalance: true;
1342
1381
  bashPointsEarnedLifetime: true;
1382
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1383
+ hornClearBestMs: true;
1384
+ hornClearBestAt: true;
1343
1385
  /** Host reputation fields */
1344
1386
  hostRating: true;
1345
1387
  totalRatings: true;
@@ -1444,6 +1486,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1444
1486
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1445
1487
  bashPointsBalance: true;
1446
1488
  bashPointsEarnedLifetime: true;
1489
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1490
+ hornClearBestMs: true;
1491
+ hornClearBestAt: true;
1447
1492
  /** Host reputation fields */
1448
1493
  hostRating: true;
1449
1494
  totalRatings: true;
@@ -1524,6 +1569,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1524
1569
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1525
1570
  bashPointsBalance: true;
1526
1571
  bashPointsEarnedLifetime: true;
1572
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1573
+ hornClearBestMs: true;
1574
+ hornClearBestAt: true;
1527
1575
  /** Host reputation fields */
1528
1576
  hostRating: true;
1529
1577
  totalRatings: true;
@@ -1609,6 +1657,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1609
1657
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1610
1658
  bashPointsBalance: true;
1611
1659
  bashPointsEarnedLifetime: true;
1660
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1661
+ hornClearBestMs: true;
1662
+ hornClearBestAt: true;
1612
1663
  /** Host reputation fields */
1613
1664
  hostRating: true;
1614
1665
  totalRatings: true;
@@ -1674,6 +1725,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1674
1725
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1675
1726
  bashPointsBalance: true;
1676
1727
  bashPointsEarnedLifetime: true;
1728
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1729
+ hornClearBestMs: true;
1730
+ hornClearBestAt: true;
1677
1731
  /** Host reputation fields */
1678
1732
  hostRating: true;
1679
1733
  totalRatings: true;
@@ -1750,6 +1804,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
1750
1804
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1751
1805
  bashPointsBalance: true;
1752
1806
  bashPointsEarnedLifetime: true;
1807
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
1808
+ hornClearBestMs: true;
1809
+ hornClearBestAt: true;
1753
1810
  /** Host reputation fields */
1754
1811
  hostRating: true;
1755
1812
  totalRatings: true;
@@ -1950,6 +2007,9 @@ export declare const SERVICE_BOOKING_CHECKOUT_DATA_TO_INCLUDE: {
1950
2007
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
1951
2008
  bashPointsBalance: true;
1952
2009
  bashPointsEarnedLifetime: true;
2010
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2011
+ hornClearBestMs: true;
2012
+ hornClearBestAt: true;
1953
2013
  /** Host reputation fields */
1954
2014
  hostRating: true;
1955
2015
  totalRatings: true;
@@ -2019,6 +2079,9 @@ export declare const FRONT_END_SERVICE_BOOKING_CHECKOUT_DATA_SELECT: {
2019
2079
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2020
2080
  bashPointsBalance: true;
2021
2081
  bashPointsEarnedLifetime: true;
2082
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2083
+ hornClearBestMs: true;
2084
+ hornClearBestAt: true;
2022
2085
  /** Host reputation fields */
2023
2086
  hostRating: true;
2024
2087
  totalRatings: true;
@@ -2114,6 +2177,9 @@ export declare const SERVICE_BOOKING_PUBLIC_DATA_TO_INCLUDE: {
2114
2177
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2115
2178
  bashPointsBalance: true;
2116
2179
  bashPointsEarnedLifetime: true;
2180
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2181
+ hornClearBestMs: true;
2182
+ hornClearBestAt: true;
2117
2183
  /** Host reputation fields */
2118
2184
  hostRating: true;
2119
2185
  totalRatings: true;
@@ -2179,6 +2245,9 @@ export declare const SERVICE_BOOKING_PUBLIC_DATA_TO_INCLUDE: {
2179
2245
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2180
2246
  bashPointsBalance: true;
2181
2247
  bashPointsEarnedLifetime: true;
2248
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2249
+ hornClearBestMs: true;
2250
+ hornClearBestAt: true;
2182
2251
  /** Host reputation fields */
2183
2252
  hostRating: true;
2184
2253
  totalRatings: true;
@@ -2374,6 +2443,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
2374
2443
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2375
2444
  bashPointsBalance: true;
2376
2445
  bashPointsEarnedLifetime: true;
2446
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2447
+ hornClearBestMs: true;
2448
+ hornClearBestAt: true;
2377
2449
  /** Host reputation fields */
2378
2450
  hostRating: true;
2379
2451
  totalRatings: true;
@@ -2446,6 +2518,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
2446
2518
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2447
2519
  bashPointsBalance: true;
2448
2520
  bashPointsEarnedLifetime: true;
2521
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2522
+ hornClearBestMs: true;
2523
+ hornClearBestAt: true;
2449
2524
  /** Host reputation fields */
2450
2525
  hostRating: true;
2451
2526
  totalRatings: true;
@@ -2511,6 +2586,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
2511
2586
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2512
2587
  bashPointsBalance: true;
2513
2588
  bashPointsEarnedLifetime: true;
2589
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2590
+ hornClearBestMs: true;
2591
+ hornClearBestAt: true;
2514
2592
  /** Host reputation fields */
2515
2593
  hostRating: true;
2516
2594
  totalRatings: true;
@@ -2599,6 +2677,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
2599
2677
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2600
2678
  bashPointsBalance: true;
2601
2679
  bashPointsEarnedLifetime: true;
2680
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2681
+ hornClearBestMs: true;
2682
+ hornClearBestAt: true;
2602
2683
  /** Host reputation fields */
2603
2684
  hostRating: true;
2604
2685
  totalRatings: true;
@@ -2664,6 +2745,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
2664
2745
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
2665
2746
  bashPointsBalance: true;
2666
2747
  bashPointsEarnedLifetime: true;
2748
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
2749
+ hornClearBestMs: true;
2750
+ hornClearBestAt: true;
2667
2751
  /** Host reputation fields */
2668
2752
  hostRating: true;
2669
2753
  totalRatings: true;
@@ -3167,6 +3251,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
3167
3251
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3168
3252
  bashPointsBalance: true;
3169
3253
  bashPointsEarnedLifetime: true;
3254
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3255
+ hornClearBestMs: true;
3256
+ hornClearBestAt: true;
3170
3257
  /** Host reputation fields */
3171
3258
  hostRating: true;
3172
3259
  totalRatings: true;
@@ -3232,6 +3319,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
3232
3319
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3233
3320
  bashPointsBalance: true;
3234
3321
  bashPointsEarnedLifetime: true;
3322
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3323
+ hornClearBestMs: true;
3324
+ hornClearBestAt: true;
3235
3325
  /** Host reputation fields */
3236
3326
  hostRating: true;
3237
3327
  totalRatings: true;
@@ -3411,6 +3501,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
3411
3501
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3412
3502
  bashPointsBalance: true;
3413
3503
  bashPointsEarnedLifetime: true;
3504
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3505
+ hornClearBestMs: true;
3506
+ hornClearBestAt: true;
3414
3507
  /** Host reputation fields */
3415
3508
  hostRating: true;
3416
3509
  totalRatings: true;
@@ -3476,6 +3569,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
3476
3569
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3477
3570
  bashPointsBalance: true;
3478
3571
  bashPointsEarnedLifetime: true;
3572
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3573
+ hornClearBestMs: true;
3574
+ hornClearBestAt: true;
3479
3575
  /** Host reputation fields */
3480
3576
  hostRating: true;
3481
3577
  totalRatings: true;
@@ -3666,6 +3762,9 @@ export declare const TASK_COMMENT_DATA_TO_INCLUDE: {
3666
3762
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3667
3763
  bashPointsBalance: true;
3668
3764
  bashPointsEarnedLifetime: true;
3765
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3766
+ hornClearBestMs: true;
3767
+ hornClearBestAt: true;
3669
3768
  /** Host reputation fields */
3670
3769
  hostRating: true;
3671
3770
  totalRatings: true;
@@ -3738,6 +3837,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
3738
3837
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3739
3838
  bashPointsBalance: true;
3740
3839
  bashPointsEarnedLifetime: true;
3840
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3841
+ hornClearBestMs: true;
3842
+ hornClearBestAt: true;
3741
3843
  /** Host reputation fields */
3742
3844
  hostRating: true;
3743
3845
  totalRatings: true;
@@ -3803,6 +3905,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
3803
3905
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3804
3906
  bashPointsBalance: true;
3805
3907
  bashPointsEarnedLifetime: true;
3908
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3909
+ hornClearBestMs: true;
3910
+ hornClearBestAt: true;
3806
3911
  /** Host reputation fields */
3807
3912
  hostRating: true;
3808
3913
  totalRatings: true;
@@ -3870,6 +3975,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
3870
3975
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3871
3976
  bashPointsBalance: true;
3872
3977
  bashPointsEarnedLifetime: true;
3978
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
3979
+ hornClearBestMs: true;
3980
+ hornClearBestAt: true;
3873
3981
  /** Host reputation fields */
3874
3982
  hostRating: true;
3875
3983
  totalRatings: true;
@@ -3948,6 +4056,9 @@ export declare const INVITATION_DATA_TO_INCLUDE: {
3948
4056
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
3949
4057
  bashPointsBalance: true;
3950
4058
  bashPointsEarnedLifetime: true;
4059
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4060
+ hornClearBestMs: true;
4061
+ hornClearBestAt: true;
3951
4062
  /** Host reputation fields */
3952
4063
  hostRating: true;
3953
4064
  totalRatings: true;
@@ -4013,6 +4124,9 @@ export declare const INVITATION_DATA_TO_INCLUDE: {
4013
4124
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4014
4125
  bashPointsBalance: true;
4015
4126
  bashPointsEarnedLifetime: true;
4127
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4128
+ hornClearBestMs: true;
4129
+ hornClearBestAt: true;
4016
4130
  /** Host reputation fields */
4017
4131
  hostRating: true;
4018
4132
  totalRatings: true;
@@ -4103,6 +4217,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4103
4217
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4104
4218
  bashPointsBalance: true;
4105
4219
  bashPointsEarnedLifetime: true;
4220
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4221
+ hornClearBestMs: true;
4222
+ hornClearBestAt: true;
4106
4223
  /** Host reputation fields */
4107
4224
  hostRating: true;
4108
4225
  totalRatings: true;
@@ -4183,6 +4300,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4183
4300
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4184
4301
  bashPointsBalance: true;
4185
4302
  bashPointsEarnedLifetime: true;
4303
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4304
+ hornClearBestMs: true;
4305
+ hornClearBestAt: true;
4186
4306
  /** Host reputation fields */
4187
4307
  hostRating: true;
4188
4308
  totalRatings: true;
@@ -4268,6 +4388,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4268
4388
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4269
4389
  bashPointsBalance: true;
4270
4390
  bashPointsEarnedLifetime: true;
4391
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4392
+ hornClearBestMs: true;
4393
+ hornClearBestAt: true;
4271
4394
  /** Host reputation fields */
4272
4395
  hostRating: true;
4273
4396
  totalRatings: true;
@@ -4333,6 +4456,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4333
4456
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4334
4457
  bashPointsBalance: true;
4335
4458
  bashPointsEarnedLifetime: true;
4459
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4460
+ hornClearBestMs: true;
4461
+ hornClearBestAt: true;
4336
4462
  /** Host reputation fields */
4337
4463
  hostRating: true;
4338
4464
  totalRatings: true;
@@ -4409,6 +4535,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4409
4535
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4410
4536
  bashPointsBalance: true;
4411
4537
  bashPointsEarnedLifetime: true;
4538
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4539
+ hornClearBestMs: true;
4540
+ hornClearBestAt: true;
4412
4541
  /** Host reputation fields */
4413
4542
  hostRating: true;
4414
4543
  totalRatings: true;
@@ -4482,6 +4611,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4482
4611
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4483
4612
  bashPointsBalance: true;
4484
4613
  bashPointsEarnedLifetime: true;
4614
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4615
+ hornClearBestMs: true;
4616
+ hornClearBestAt: true;
4485
4617
  /** Host reputation fields */
4486
4618
  hostRating: true;
4487
4619
  totalRatings: true;
@@ -4547,6 +4679,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
4547
4679
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4548
4680
  bashPointsBalance: true;
4549
4681
  bashPointsEarnedLifetime: true;
4682
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4683
+ hornClearBestMs: true;
4684
+ hornClearBestAt: true;
4550
4685
  /** Host reputation fields */
4551
4686
  hostRating: true;
4552
4687
  totalRatings: true;
@@ -4619,6 +4754,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
4619
4754
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4620
4755
  bashPointsBalance: true;
4621
4756
  bashPointsEarnedLifetime: true;
4757
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4758
+ hornClearBestMs: true;
4759
+ hornClearBestAt: true;
4622
4760
  /** Host reputation fields */
4623
4761
  hostRating: true;
4624
4762
  totalRatings: true;
@@ -4684,6 +4822,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
4684
4822
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4685
4823
  bashPointsBalance: true;
4686
4824
  bashPointsEarnedLifetime: true;
4825
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4826
+ hornClearBestMs: true;
4827
+ hornClearBestAt: true;
4687
4828
  /** Host reputation fields */
4688
4829
  hostRating: true;
4689
4830
  totalRatings: true;
@@ -4788,6 +4929,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
4788
4929
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4789
4930
  bashPointsBalance: true;
4790
4931
  bashPointsEarnedLifetime: true;
4932
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
4933
+ hornClearBestMs: true;
4934
+ hornClearBestAt: true;
4791
4935
  /** Host reputation fields */
4792
4936
  hostRating: true;
4793
4937
  totalRatings: true;
@@ -4868,6 +5012,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
4868
5012
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4869
5013
  bashPointsBalance: true;
4870
5014
  bashPointsEarnedLifetime: true;
5015
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5016
+ hornClearBestMs: true;
5017
+ hornClearBestAt: true;
4871
5018
  /** Host reputation fields */
4872
5019
  hostRating: true;
4873
5020
  totalRatings: true;
@@ -4953,6 +5100,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
4953
5100
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
4954
5101
  bashPointsBalance: true;
4955
5102
  bashPointsEarnedLifetime: true;
5103
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5104
+ hornClearBestMs: true;
5105
+ hornClearBestAt: true;
4956
5106
  /** Host reputation fields */
4957
5107
  hostRating: true;
4958
5108
  totalRatings: true;
@@ -5018,6 +5168,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
5018
5168
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5019
5169
  bashPointsBalance: true;
5020
5170
  bashPointsEarnedLifetime: true;
5171
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5172
+ hornClearBestMs: true;
5173
+ hornClearBestAt: true;
5021
5174
  /** Host reputation fields */
5022
5175
  hostRating: true;
5023
5176
  totalRatings: true;
@@ -5094,6 +5247,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
5094
5247
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5095
5248
  bashPointsBalance: true;
5096
5249
  bashPointsEarnedLifetime: true;
5250
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5251
+ hornClearBestMs: true;
5252
+ hornClearBestAt: true;
5097
5253
  /** Host reputation fields */
5098
5254
  hostRating: true;
5099
5255
  totalRatings: true;
@@ -5239,6 +5395,9 @@ export declare const TICKET_GIFT_GRANT_DATA_TO_INCLUDE: {
5239
5395
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5240
5396
  bashPointsBalance: true;
5241
5397
  bashPointsEarnedLifetime: true;
5398
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5399
+ hornClearBestMs: true;
5400
+ hornClearBestAt: true;
5242
5401
  /** Host reputation fields */
5243
5402
  hostRating: true;
5244
5403
  totalRatings: true;
@@ -5304,6 +5463,9 @@ export declare const TICKET_GIFT_GRANT_DATA_TO_INCLUDE: {
5304
5463
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5305
5464
  bashPointsBalance: true;
5306
5465
  bashPointsEarnedLifetime: true;
5466
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5467
+ hornClearBestMs: true;
5468
+ hornClearBestAt: true;
5307
5469
  /** Host reputation fields */
5308
5470
  hostRating: true;
5309
5471
  totalRatings: true;
@@ -5416,6 +5578,9 @@ export declare const CHECKOUT_DATA_TO_INCLUDE: {
5416
5578
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5417
5579
  bashPointsBalance: true;
5418
5580
  bashPointsEarnedLifetime: true;
5581
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5582
+ hornClearBestMs: true;
5583
+ hornClearBestAt: true;
5419
5584
  /** Host reputation fields */
5420
5585
  hostRating: true;
5421
5586
  totalRatings: true;
@@ -5452,6 +5617,15 @@ export declare const CHECKOUT_DATA_TO_INCLUDE_TEASER_OWNER: {
5452
5617
  imageUpdatedAt: true;
5453
5618
  uploadedImage: true;
5454
5619
  uploadedImageUpdatedAt: true;
5620
+ /** Public social links for attendee lists / teasers (IG, LinkedIn, etc.). */
5621
+ socialMediaProfiles: {
5622
+ select: {
5623
+ id: true;
5624
+ platform: true;
5625
+ url: true;
5626
+ userId: true;
5627
+ };
5628
+ };
5455
5629
  };
5456
5630
  };
5457
5631
  tickets: {
@@ -5511,6 +5685,9 @@ export declare const CONTACT_DATA_TO_INCLUDE: {
5511
5685
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5512
5686
  bashPointsBalance: true;
5513
5687
  bashPointsEarnedLifetime: true;
5688
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5689
+ hornClearBestMs: true;
5690
+ hornClearBestAt: true;
5514
5691
  /** Host reputation fields */
5515
5692
  hostRating: true;
5516
5693
  totalRatings: true;
@@ -5676,6 +5853,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
5676
5853
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5677
5854
  bashPointsBalance: true;
5678
5855
  bashPointsEarnedLifetime: true;
5856
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5857
+ hornClearBestMs: true;
5858
+ hornClearBestAt: true;
5679
5859
  /** Host reputation fields */
5680
5860
  hostRating: true;
5681
5861
  totalRatings: true;
@@ -5745,6 +5925,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
5745
5925
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5746
5926
  bashPointsBalance: true;
5747
5927
  bashPointsEarnedLifetime: true;
5928
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5929
+ hornClearBestMs: true;
5930
+ hornClearBestAt: true;
5748
5931
  /** Host reputation fields */
5749
5932
  hostRating: true;
5750
5933
  totalRatings: true;
@@ -5812,6 +5995,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
5812
5995
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5813
5996
  bashPointsBalance: true;
5814
5997
  bashPointsEarnedLifetime: true;
5998
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
5999
+ hornClearBestMs: true;
6000
+ hornClearBestAt: true;
5815
6001
  /** Host reputation fields */
5816
6002
  hostRating: true;
5817
6003
  totalRatings: true;
@@ -5889,6 +6075,9 @@ export declare const BLOG_POST_PREVIEW_DATA_TO_INCLUDE: {
5889
6075
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
5890
6076
  bashPointsBalance: true;
5891
6077
  bashPointsEarnedLifetime: true;
6078
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
6079
+ hornClearBestMs: true;
6080
+ hornClearBestAt: true;
5892
6081
  /** Host reputation fields */
5893
6082
  hostRating: true;
5894
6083
  totalRatings: true;
@@ -6132,6 +6321,9 @@ export declare const ARTIST_REPRESENTATION_PUBLIC_SELECT: {
6132
6321
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
6133
6322
  bashPointsBalance: true;
6134
6323
  bashPointsEarnedLifetime: true;
6324
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
6325
+ hornClearBestMs: true;
6326
+ hornClearBestAt: true;
6135
6327
  /** Host reputation fields */
6136
6328
  hostRating: true;
6137
6329
  totalRatings: true;
@@ -6211,6 +6403,9 @@ export declare const ARTIST_REPRESENTATION_MANAGE_INCLUDE: {
6211
6403
  /** BashPoints loyalty (API may omit when viewing someone else’s profile). */
6212
6404
  bashPointsBalance: true;
6213
6405
  bashPointsEarnedLifetime: true;
6406
+ /** Home hero “Stuff the horn” best clear (ms; lower is better). */
6407
+ hornClearBestMs: true;
6408
+ hornClearBestAt: true;
6214
6409
  /** Host reputation fields */
6215
6410
  hostRating: true;
6216
6411
  totalRatings: true;