@bash-app/bash-common 30.347.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.
- package/dist/extendedSchemas.d.ts +177 -0
- package/dist/extendedSchemas.d.ts.map +1 -1
- package/dist/extendedSchemas.js +3 -0
- package/dist/extendedSchemas.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/utils/__tests__/moodTrackUtils.test.d.ts +2 -0
- package/dist/utils/__tests__/moodTrackUtils.test.d.ts.map +1 -0
- package/dist/utils/__tests__/moodTrackUtils.test.js +25 -0
- package/dist/utils/__tests__/moodTrackUtils.test.js.map +1 -0
- package/dist/utils/blog/blogCommentDbUtils.d.ts +4 -0
- package/dist/utils/blog/blogCommentDbUtils.d.ts.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/moodTrackUtils.d.ts +23 -0
- package/dist/utils/moodTrackUtils.d.ts.map +1 -0
- package/dist/utils/moodTrackUtils.js +171 -0
- package/dist/utils/moodTrackUtils.js.map +1 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +26 -0
- package/src/extendedSchemas.ts +3 -0
- package/src/index.ts +1 -0
- package/src/utils/__tests__/moodTrackUtils.test.ts +46 -0
- package/src/utils/index.ts +1 -0
- 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;
|
|
@@ -203,6 +206,9 @@ export declare const PRIVATE_USER_ACCOUNT_TO_SELECT: {
|
|
|
203
206
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
204
207
|
bashPointsBalance: true;
|
|
205
208
|
bashPointsEarnedLifetime: true;
|
|
209
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
210
|
+
hornClearBestMs: true;
|
|
211
|
+
hornClearBestAt: true;
|
|
206
212
|
/** Host reputation fields */
|
|
207
213
|
hostRating: true;
|
|
208
214
|
totalRatings: true;
|
|
@@ -605,6 +611,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
|
|
|
605
611
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
606
612
|
bashPointsBalance: true;
|
|
607
613
|
bashPointsEarnedLifetime: true;
|
|
614
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
615
|
+
hornClearBestMs: true;
|
|
616
|
+
hornClearBestAt: true;
|
|
608
617
|
/** Host reputation fields */
|
|
609
618
|
hostRating: true;
|
|
610
619
|
totalRatings: true;
|
|
@@ -685,6 +694,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
|
|
|
685
694
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
686
695
|
bashPointsBalance: true;
|
|
687
696
|
bashPointsEarnedLifetime: true;
|
|
697
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
698
|
+
hornClearBestMs: true;
|
|
699
|
+
hornClearBestAt: true;
|
|
688
700
|
/** Host reputation fields */
|
|
689
701
|
hostRating: true;
|
|
690
702
|
totalRatings: true;
|
|
@@ -770,6 +782,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
|
|
|
770
782
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
771
783
|
bashPointsBalance: true;
|
|
772
784
|
bashPointsEarnedLifetime: true;
|
|
785
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
786
|
+
hornClearBestMs: true;
|
|
787
|
+
hornClearBestAt: true;
|
|
773
788
|
/** Host reputation fields */
|
|
774
789
|
hostRating: true;
|
|
775
790
|
totalRatings: true;
|
|
@@ -835,6 +850,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
|
|
|
835
850
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
836
851
|
bashPointsBalance: true;
|
|
837
852
|
bashPointsEarnedLifetime: true;
|
|
853
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
854
|
+
hornClearBestMs: true;
|
|
855
|
+
hornClearBestAt: true;
|
|
838
856
|
/** Host reputation fields */
|
|
839
857
|
hostRating: true;
|
|
840
858
|
totalRatings: true;
|
|
@@ -911,6 +929,9 @@ export declare const BASH_EVENT_DATA_TO_INCLUDE: {
|
|
|
911
929
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
912
930
|
bashPointsBalance: true;
|
|
913
931
|
bashPointsEarnedLifetime: true;
|
|
932
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
933
|
+
hornClearBestMs: true;
|
|
934
|
+
hornClearBestAt: true;
|
|
914
935
|
/** Host reputation fields */
|
|
915
936
|
hostRating: true;
|
|
916
937
|
totalRatings: true;
|
|
@@ -992,6 +1013,9 @@ export declare const STRIPE_ACCOUNT_DATA_TO_INCLUDE: {
|
|
|
992
1013
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
993
1014
|
bashPointsBalance: true;
|
|
994
1015
|
bashPointsEarnedLifetime: true;
|
|
1016
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1017
|
+
hornClearBestMs: true;
|
|
1018
|
+
hornClearBestAt: true;
|
|
995
1019
|
/** Host reputation fields */
|
|
996
1020
|
hostRating: true;
|
|
997
1021
|
totalRatings: true;
|
|
@@ -1121,6 +1145,9 @@ export declare const VOLUNTEER_DATA_TO_INCLUDE: {
|
|
|
1121
1145
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1122
1146
|
bashPointsBalance: true;
|
|
1123
1147
|
bashPointsEarnedLifetime: true;
|
|
1148
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1149
|
+
hornClearBestMs: true;
|
|
1150
|
+
hornClearBestAt: true;
|
|
1124
1151
|
/** Host reputation fields */
|
|
1125
1152
|
hostRating: true;
|
|
1126
1153
|
totalRatings: true;
|
|
@@ -1284,6 +1311,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1284
1311
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1285
1312
|
bashPointsBalance: true;
|
|
1286
1313
|
bashPointsEarnedLifetime: true;
|
|
1314
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1315
|
+
hornClearBestMs: true;
|
|
1316
|
+
hornClearBestAt: true;
|
|
1287
1317
|
/** Host reputation fields */
|
|
1288
1318
|
hostRating: true;
|
|
1289
1319
|
totalRatings: true;
|
|
@@ -1349,6 +1379,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1349
1379
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1350
1380
|
bashPointsBalance: true;
|
|
1351
1381
|
bashPointsEarnedLifetime: true;
|
|
1382
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1383
|
+
hornClearBestMs: true;
|
|
1384
|
+
hornClearBestAt: true;
|
|
1352
1385
|
/** Host reputation fields */
|
|
1353
1386
|
hostRating: true;
|
|
1354
1387
|
totalRatings: true;
|
|
@@ -1453,6 +1486,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1453
1486
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1454
1487
|
bashPointsBalance: true;
|
|
1455
1488
|
bashPointsEarnedLifetime: true;
|
|
1489
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1490
|
+
hornClearBestMs: true;
|
|
1491
|
+
hornClearBestAt: true;
|
|
1456
1492
|
/** Host reputation fields */
|
|
1457
1493
|
hostRating: true;
|
|
1458
1494
|
totalRatings: true;
|
|
@@ -1533,6 +1569,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1533
1569
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1534
1570
|
bashPointsBalance: true;
|
|
1535
1571
|
bashPointsEarnedLifetime: true;
|
|
1572
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1573
|
+
hornClearBestMs: true;
|
|
1574
|
+
hornClearBestAt: true;
|
|
1536
1575
|
/** Host reputation fields */
|
|
1537
1576
|
hostRating: true;
|
|
1538
1577
|
totalRatings: true;
|
|
@@ -1618,6 +1657,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1618
1657
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1619
1658
|
bashPointsBalance: true;
|
|
1620
1659
|
bashPointsEarnedLifetime: true;
|
|
1660
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1661
|
+
hornClearBestMs: true;
|
|
1662
|
+
hornClearBestAt: true;
|
|
1621
1663
|
/** Host reputation fields */
|
|
1622
1664
|
hostRating: true;
|
|
1623
1665
|
totalRatings: true;
|
|
@@ -1683,6 +1725,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1683
1725
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1684
1726
|
bashPointsBalance: true;
|
|
1685
1727
|
bashPointsEarnedLifetime: true;
|
|
1728
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1729
|
+
hornClearBestMs: true;
|
|
1730
|
+
hornClearBestAt: true;
|
|
1686
1731
|
/** Host reputation fields */
|
|
1687
1732
|
hostRating: true;
|
|
1688
1733
|
totalRatings: true;
|
|
@@ -1759,6 +1804,9 @@ export declare const SERVICE_DATA_TO_INCLUDE: {
|
|
|
1759
1804
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1760
1805
|
bashPointsBalance: true;
|
|
1761
1806
|
bashPointsEarnedLifetime: true;
|
|
1807
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
1808
|
+
hornClearBestMs: true;
|
|
1809
|
+
hornClearBestAt: true;
|
|
1762
1810
|
/** Host reputation fields */
|
|
1763
1811
|
hostRating: true;
|
|
1764
1812
|
totalRatings: true;
|
|
@@ -1959,6 +2007,9 @@ export declare const SERVICE_BOOKING_CHECKOUT_DATA_TO_INCLUDE: {
|
|
|
1959
2007
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
1960
2008
|
bashPointsBalance: true;
|
|
1961
2009
|
bashPointsEarnedLifetime: true;
|
|
2010
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2011
|
+
hornClearBestMs: true;
|
|
2012
|
+
hornClearBestAt: true;
|
|
1962
2013
|
/** Host reputation fields */
|
|
1963
2014
|
hostRating: true;
|
|
1964
2015
|
totalRatings: true;
|
|
@@ -2028,6 +2079,9 @@ export declare const FRONT_END_SERVICE_BOOKING_CHECKOUT_DATA_SELECT: {
|
|
|
2028
2079
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2029
2080
|
bashPointsBalance: true;
|
|
2030
2081
|
bashPointsEarnedLifetime: true;
|
|
2082
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2083
|
+
hornClearBestMs: true;
|
|
2084
|
+
hornClearBestAt: true;
|
|
2031
2085
|
/** Host reputation fields */
|
|
2032
2086
|
hostRating: true;
|
|
2033
2087
|
totalRatings: true;
|
|
@@ -2123,6 +2177,9 @@ export declare const SERVICE_BOOKING_PUBLIC_DATA_TO_INCLUDE: {
|
|
|
2123
2177
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2124
2178
|
bashPointsBalance: true;
|
|
2125
2179
|
bashPointsEarnedLifetime: true;
|
|
2180
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2181
|
+
hornClearBestMs: true;
|
|
2182
|
+
hornClearBestAt: true;
|
|
2126
2183
|
/** Host reputation fields */
|
|
2127
2184
|
hostRating: true;
|
|
2128
2185
|
totalRatings: true;
|
|
@@ -2188,6 +2245,9 @@ export declare const SERVICE_BOOKING_PUBLIC_DATA_TO_INCLUDE: {
|
|
|
2188
2245
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2189
2246
|
bashPointsBalance: true;
|
|
2190
2247
|
bashPointsEarnedLifetime: true;
|
|
2248
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2249
|
+
hornClearBestMs: true;
|
|
2250
|
+
hornClearBestAt: true;
|
|
2191
2251
|
/** Host reputation fields */
|
|
2192
2252
|
hostRating: true;
|
|
2193
2253
|
totalRatings: true;
|
|
@@ -2383,6 +2443,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
|
|
|
2383
2443
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2384
2444
|
bashPointsBalance: true;
|
|
2385
2445
|
bashPointsEarnedLifetime: true;
|
|
2446
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2447
|
+
hornClearBestMs: true;
|
|
2448
|
+
hornClearBestAt: true;
|
|
2386
2449
|
/** Host reputation fields */
|
|
2387
2450
|
hostRating: true;
|
|
2388
2451
|
totalRatings: true;
|
|
@@ -2455,6 +2518,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
|
|
|
2455
2518
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2456
2519
|
bashPointsBalance: true;
|
|
2457
2520
|
bashPointsEarnedLifetime: true;
|
|
2521
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2522
|
+
hornClearBestMs: true;
|
|
2523
|
+
hornClearBestAt: true;
|
|
2458
2524
|
/** Host reputation fields */
|
|
2459
2525
|
hostRating: true;
|
|
2460
2526
|
totalRatings: true;
|
|
@@ -2520,6 +2586,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
|
|
|
2520
2586
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2521
2587
|
bashPointsBalance: true;
|
|
2522
2588
|
bashPointsEarnedLifetime: true;
|
|
2589
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2590
|
+
hornClearBestMs: true;
|
|
2591
|
+
hornClearBestAt: true;
|
|
2523
2592
|
/** Host reputation fields */
|
|
2524
2593
|
hostRating: true;
|
|
2525
2594
|
totalRatings: true;
|
|
@@ -2608,6 +2677,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
|
|
|
2608
2677
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2609
2678
|
bashPointsBalance: true;
|
|
2610
2679
|
bashPointsEarnedLifetime: true;
|
|
2680
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2681
|
+
hornClearBestMs: true;
|
|
2682
|
+
hornClearBestAt: true;
|
|
2611
2683
|
/** Host reputation fields */
|
|
2612
2684
|
hostRating: true;
|
|
2613
2685
|
totalRatings: true;
|
|
@@ -2673,6 +2745,9 @@ export declare const SERVICE_BOOKING_PRIVATE_DATA_TO_INCLUDE: {
|
|
|
2673
2745
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
2674
2746
|
bashPointsBalance: true;
|
|
2675
2747
|
bashPointsEarnedLifetime: true;
|
|
2748
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
2749
|
+
hornClearBestMs: true;
|
|
2750
|
+
hornClearBestAt: true;
|
|
2676
2751
|
/** Host reputation fields */
|
|
2677
2752
|
hostRating: true;
|
|
2678
2753
|
totalRatings: true;
|
|
@@ -3176,6 +3251,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
|
|
|
3176
3251
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3177
3252
|
bashPointsBalance: true;
|
|
3178
3253
|
bashPointsEarnedLifetime: true;
|
|
3254
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3255
|
+
hornClearBestMs: true;
|
|
3256
|
+
hornClearBestAt: true;
|
|
3179
3257
|
/** Host reputation fields */
|
|
3180
3258
|
hostRating: true;
|
|
3181
3259
|
totalRatings: true;
|
|
@@ -3241,6 +3319,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
|
|
|
3241
3319
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3242
3320
|
bashPointsBalance: true;
|
|
3243
3321
|
bashPointsEarnedLifetime: true;
|
|
3322
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3323
|
+
hornClearBestMs: true;
|
|
3324
|
+
hornClearBestAt: true;
|
|
3244
3325
|
/** Host reputation fields */
|
|
3245
3326
|
hostRating: true;
|
|
3246
3327
|
totalRatings: true;
|
|
@@ -3420,6 +3501,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
|
|
|
3420
3501
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3421
3502
|
bashPointsBalance: true;
|
|
3422
3503
|
bashPointsEarnedLifetime: true;
|
|
3504
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3505
|
+
hornClearBestMs: true;
|
|
3506
|
+
hornClearBestAt: true;
|
|
3423
3507
|
/** Host reputation fields */
|
|
3424
3508
|
hostRating: true;
|
|
3425
3509
|
totalRatings: true;
|
|
@@ -3485,6 +3569,9 @@ export declare const BASH_NOTIFICATION_DATA_TO_INCLUDE: {
|
|
|
3485
3569
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3486
3570
|
bashPointsBalance: true;
|
|
3487
3571
|
bashPointsEarnedLifetime: true;
|
|
3572
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3573
|
+
hornClearBestMs: true;
|
|
3574
|
+
hornClearBestAt: true;
|
|
3488
3575
|
/** Host reputation fields */
|
|
3489
3576
|
hostRating: true;
|
|
3490
3577
|
totalRatings: true;
|
|
@@ -3675,6 +3762,9 @@ export declare const TASK_COMMENT_DATA_TO_INCLUDE: {
|
|
|
3675
3762
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3676
3763
|
bashPointsBalance: true;
|
|
3677
3764
|
bashPointsEarnedLifetime: true;
|
|
3765
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3766
|
+
hornClearBestMs: true;
|
|
3767
|
+
hornClearBestAt: true;
|
|
3678
3768
|
/** Host reputation fields */
|
|
3679
3769
|
hostRating: true;
|
|
3680
3770
|
totalRatings: true;
|
|
@@ -3747,6 +3837,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
|
|
|
3747
3837
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3748
3838
|
bashPointsBalance: true;
|
|
3749
3839
|
bashPointsEarnedLifetime: true;
|
|
3840
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3841
|
+
hornClearBestMs: true;
|
|
3842
|
+
hornClearBestAt: true;
|
|
3750
3843
|
/** Host reputation fields */
|
|
3751
3844
|
hostRating: true;
|
|
3752
3845
|
totalRatings: true;
|
|
@@ -3812,6 +3905,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
|
|
|
3812
3905
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3813
3906
|
bashPointsBalance: true;
|
|
3814
3907
|
bashPointsEarnedLifetime: true;
|
|
3908
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3909
|
+
hornClearBestMs: true;
|
|
3910
|
+
hornClearBestAt: true;
|
|
3815
3911
|
/** Host reputation fields */
|
|
3816
3912
|
hostRating: true;
|
|
3817
3913
|
totalRatings: true;
|
|
@@ -3879,6 +3975,9 @@ export declare const EVENT_TASK_DATA_TO_INCLUDE: {
|
|
|
3879
3975
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3880
3976
|
bashPointsBalance: true;
|
|
3881
3977
|
bashPointsEarnedLifetime: true;
|
|
3978
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
3979
|
+
hornClearBestMs: true;
|
|
3980
|
+
hornClearBestAt: true;
|
|
3882
3981
|
/** Host reputation fields */
|
|
3883
3982
|
hostRating: true;
|
|
3884
3983
|
totalRatings: true;
|
|
@@ -3957,6 +4056,9 @@ export declare const INVITATION_DATA_TO_INCLUDE: {
|
|
|
3957
4056
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
3958
4057
|
bashPointsBalance: true;
|
|
3959
4058
|
bashPointsEarnedLifetime: true;
|
|
4059
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4060
|
+
hornClearBestMs: true;
|
|
4061
|
+
hornClearBestAt: true;
|
|
3960
4062
|
/** Host reputation fields */
|
|
3961
4063
|
hostRating: true;
|
|
3962
4064
|
totalRatings: true;
|
|
@@ -4022,6 +4124,9 @@ export declare const INVITATION_DATA_TO_INCLUDE: {
|
|
|
4022
4124
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4023
4125
|
bashPointsBalance: true;
|
|
4024
4126
|
bashPointsEarnedLifetime: true;
|
|
4127
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4128
|
+
hornClearBestMs: true;
|
|
4129
|
+
hornClearBestAt: true;
|
|
4025
4130
|
/** Host reputation fields */
|
|
4026
4131
|
hostRating: true;
|
|
4027
4132
|
totalRatings: true;
|
|
@@ -4112,6 +4217,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4112
4217
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4113
4218
|
bashPointsBalance: true;
|
|
4114
4219
|
bashPointsEarnedLifetime: true;
|
|
4220
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4221
|
+
hornClearBestMs: true;
|
|
4222
|
+
hornClearBestAt: true;
|
|
4115
4223
|
/** Host reputation fields */
|
|
4116
4224
|
hostRating: true;
|
|
4117
4225
|
totalRatings: true;
|
|
@@ -4192,6 +4300,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4192
4300
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4193
4301
|
bashPointsBalance: true;
|
|
4194
4302
|
bashPointsEarnedLifetime: true;
|
|
4303
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4304
|
+
hornClearBestMs: true;
|
|
4305
|
+
hornClearBestAt: true;
|
|
4195
4306
|
/** Host reputation fields */
|
|
4196
4307
|
hostRating: true;
|
|
4197
4308
|
totalRatings: true;
|
|
@@ -4277,6 +4388,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4277
4388
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4278
4389
|
bashPointsBalance: true;
|
|
4279
4390
|
bashPointsEarnedLifetime: true;
|
|
4391
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4392
|
+
hornClearBestMs: true;
|
|
4393
|
+
hornClearBestAt: true;
|
|
4280
4394
|
/** Host reputation fields */
|
|
4281
4395
|
hostRating: true;
|
|
4282
4396
|
totalRatings: true;
|
|
@@ -4342,6 +4456,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4342
4456
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4343
4457
|
bashPointsBalance: true;
|
|
4344
4458
|
bashPointsEarnedLifetime: true;
|
|
4459
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4460
|
+
hornClearBestMs: true;
|
|
4461
|
+
hornClearBestAt: true;
|
|
4345
4462
|
/** Host reputation fields */
|
|
4346
4463
|
hostRating: true;
|
|
4347
4464
|
totalRatings: true;
|
|
@@ -4418,6 +4535,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4418
4535
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4419
4536
|
bashPointsBalance: true;
|
|
4420
4537
|
bashPointsEarnedLifetime: true;
|
|
4538
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4539
|
+
hornClearBestMs: true;
|
|
4540
|
+
hornClearBestAt: true;
|
|
4421
4541
|
/** Host reputation fields */
|
|
4422
4542
|
hostRating: true;
|
|
4423
4543
|
totalRatings: true;
|
|
@@ -4491,6 +4611,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4491
4611
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4492
4612
|
bashPointsBalance: true;
|
|
4493
4613
|
bashPointsEarnedLifetime: true;
|
|
4614
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4615
|
+
hornClearBestMs: true;
|
|
4616
|
+
hornClearBestAt: true;
|
|
4494
4617
|
/** Host reputation fields */
|
|
4495
4618
|
hostRating: true;
|
|
4496
4619
|
totalRatings: true;
|
|
@@ -4556,6 +4679,9 @@ export declare const ASSOCIATED_BASH_DATA_TO_INCLUDE: {
|
|
|
4556
4679
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4557
4680
|
bashPointsBalance: true;
|
|
4558
4681
|
bashPointsEarnedLifetime: true;
|
|
4682
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4683
|
+
hornClearBestMs: true;
|
|
4684
|
+
hornClearBestAt: true;
|
|
4559
4685
|
/** Host reputation fields */
|
|
4560
4686
|
hostRating: true;
|
|
4561
4687
|
totalRatings: true;
|
|
@@ -4628,6 +4754,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
4628
4754
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4629
4755
|
bashPointsBalance: true;
|
|
4630
4756
|
bashPointsEarnedLifetime: true;
|
|
4757
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4758
|
+
hornClearBestMs: true;
|
|
4759
|
+
hornClearBestAt: true;
|
|
4631
4760
|
/** Host reputation fields */
|
|
4632
4761
|
hostRating: true;
|
|
4633
4762
|
totalRatings: true;
|
|
@@ -4693,6 +4822,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
4693
4822
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4694
4823
|
bashPointsBalance: true;
|
|
4695
4824
|
bashPointsEarnedLifetime: true;
|
|
4825
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4826
|
+
hornClearBestMs: true;
|
|
4827
|
+
hornClearBestAt: true;
|
|
4696
4828
|
/** Host reputation fields */
|
|
4697
4829
|
hostRating: true;
|
|
4698
4830
|
totalRatings: true;
|
|
@@ -4797,6 +4929,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
4797
4929
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4798
4930
|
bashPointsBalance: true;
|
|
4799
4931
|
bashPointsEarnedLifetime: true;
|
|
4932
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
4933
|
+
hornClearBestMs: true;
|
|
4934
|
+
hornClearBestAt: true;
|
|
4800
4935
|
/** Host reputation fields */
|
|
4801
4936
|
hostRating: true;
|
|
4802
4937
|
totalRatings: true;
|
|
@@ -4877,6 +5012,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
4877
5012
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4878
5013
|
bashPointsBalance: true;
|
|
4879
5014
|
bashPointsEarnedLifetime: true;
|
|
5015
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5016
|
+
hornClearBestMs: true;
|
|
5017
|
+
hornClearBestAt: true;
|
|
4880
5018
|
/** Host reputation fields */
|
|
4881
5019
|
hostRating: true;
|
|
4882
5020
|
totalRatings: true;
|
|
@@ -4962,6 +5100,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
4962
5100
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
4963
5101
|
bashPointsBalance: true;
|
|
4964
5102
|
bashPointsEarnedLifetime: true;
|
|
5103
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5104
|
+
hornClearBestMs: true;
|
|
5105
|
+
hornClearBestAt: true;
|
|
4965
5106
|
/** Host reputation fields */
|
|
4966
5107
|
hostRating: true;
|
|
4967
5108
|
totalRatings: true;
|
|
@@ -5027,6 +5168,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
5027
5168
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5028
5169
|
bashPointsBalance: true;
|
|
5029
5170
|
bashPointsEarnedLifetime: true;
|
|
5171
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5172
|
+
hornClearBestMs: true;
|
|
5173
|
+
hornClearBestAt: true;
|
|
5030
5174
|
/** Host reputation fields */
|
|
5031
5175
|
hostRating: true;
|
|
5032
5176
|
totalRatings: true;
|
|
@@ -5103,6 +5247,9 @@ export declare const ASSOCIATED_SERVICE_DATA_TO_INCLUDE: {
|
|
|
5103
5247
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5104
5248
|
bashPointsBalance: true;
|
|
5105
5249
|
bashPointsEarnedLifetime: true;
|
|
5250
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5251
|
+
hornClearBestMs: true;
|
|
5252
|
+
hornClearBestAt: true;
|
|
5106
5253
|
/** Host reputation fields */
|
|
5107
5254
|
hostRating: true;
|
|
5108
5255
|
totalRatings: true;
|
|
@@ -5248,6 +5395,9 @@ export declare const TICKET_GIFT_GRANT_DATA_TO_INCLUDE: {
|
|
|
5248
5395
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5249
5396
|
bashPointsBalance: true;
|
|
5250
5397
|
bashPointsEarnedLifetime: true;
|
|
5398
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5399
|
+
hornClearBestMs: true;
|
|
5400
|
+
hornClearBestAt: true;
|
|
5251
5401
|
/** Host reputation fields */
|
|
5252
5402
|
hostRating: true;
|
|
5253
5403
|
totalRatings: true;
|
|
@@ -5313,6 +5463,9 @@ export declare const TICKET_GIFT_GRANT_DATA_TO_INCLUDE: {
|
|
|
5313
5463
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5314
5464
|
bashPointsBalance: true;
|
|
5315
5465
|
bashPointsEarnedLifetime: true;
|
|
5466
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5467
|
+
hornClearBestMs: true;
|
|
5468
|
+
hornClearBestAt: true;
|
|
5316
5469
|
/** Host reputation fields */
|
|
5317
5470
|
hostRating: true;
|
|
5318
5471
|
totalRatings: true;
|
|
@@ -5425,6 +5578,9 @@ export declare const CHECKOUT_DATA_TO_INCLUDE: {
|
|
|
5425
5578
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5426
5579
|
bashPointsBalance: true;
|
|
5427
5580
|
bashPointsEarnedLifetime: true;
|
|
5581
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5582
|
+
hornClearBestMs: true;
|
|
5583
|
+
hornClearBestAt: true;
|
|
5428
5584
|
/** Host reputation fields */
|
|
5429
5585
|
hostRating: true;
|
|
5430
5586
|
totalRatings: true;
|
|
@@ -5529,6 +5685,9 @@ export declare const CONTACT_DATA_TO_INCLUDE: {
|
|
|
5529
5685
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5530
5686
|
bashPointsBalance: true;
|
|
5531
5687
|
bashPointsEarnedLifetime: true;
|
|
5688
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5689
|
+
hornClearBestMs: true;
|
|
5690
|
+
hornClearBestAt: true;
|
|
5532
5691
|
/** Host reputation fields */
|
|
5533
5692
|
hostRating: true;
|
|
5534
5693
|
totalRatings: true;
|
|
@@ -5694,6 +5853,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
|
|
|
5694
5853
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5695
5854
|
bashPointsBalance: true;
|
|
5696
5855
|
bashPointsEarnedLifetime: true;
|
|
5856
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5857
|
+
hornClearBestMs: true;
|
|
5858
|
+
hornClearBestAt: true;
|
|
5697
5859
|
/** Host reputation fields */
|
|
5698
5860
|
hostRating: true;
|
|
5699
5861
|
totalRatings: true;
|
|
@@ -5763,6 +5925,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
|
|
|
5763
5925
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5764
5926
|
bashPointsBalance: true;
|
|
5765
5927
|
bashPointsEarnedLifetime: true;
|
|
5928
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5929
|
+
hornClearBestMs: true;
|
|
5930
|
+
hornClearBestAt: true;
|
|
5766
5931
|
/** Host reputation fields */
|
|
5767
5932
|
hostRating: true;
|
|
5768
5933
|
totalRatings: true;
|
|
@@ -5830,6 +5995,9 @@ export declare const BLOG_POST_DATA_TO_INCLUDE: {
|
|
|
5830
5995
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5831
5996
|
bashPointsBalance: true;
|
|
5832
5997
|
bashPointsEarnedLifetime: true;
|
|
5998
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
5999
|
+
hornClearBestMs: true;
|
|
6000
|
+
hornClearBestAt: true;
|
|
5833
6001
|
/** Host reputation fields */
|
|
5834
6002
|
hostRating: true;
|
|
5835
6003
|
totalRatings: true;
|
|
@@ -5907,6 +6075,9 @@ export declare const BLOG_POST_PREVIEW_DATA_TO_INCLUDE: {
|
|
|
5907
6075
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
5908
6076
|
bashPointsBalance: true;
|
|
5909
6077
|
bashPointsEarnedLifetime: true;
|
|
6078
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
6079
|
+
hornClearBestMs: true;
|
|
6080
|
+
hornClearBestAt: true;
|
|
5910
6081
|
/** Host reputation fields */
|
|
5911
6082
|
hostRating: true;
|
|
5912
6083
|
totalRatings: true;
|
|
@@ -6150,6 +6321,9 @@ export declare const ARTIST_REPRESENTATION_PUBLIC_SELECT: {
|
|
|
6150
6321
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
6151
6322
|
bashPointsBalance: true;
|
|
6152
6323
|
bashPointsEarnedLifetime: true;
|
|
6324
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
6325
|
+
hornClearBestMs: true;
|
|
6326
|
+
hornClearBestAt: true;
|
|
6153
6327
|
/** Host reputation fields */
|
|
6154
6328
|
hostRating: true;
|
|
6155
6329
|
totalRatings: true;
|
|
@@ -6229,6 +6403,9 @@ export declare const ARTIST_REPRESENTATION_MANAGE_INCLUDE: {
|
|
|
6229
6403
|
/** BashPoints loyalty (API may omit when viewing someone else’s profile). */
|
|
6230
6404
|
bashPointsBalance: true;
|
|
6231
6405
|
bashPointsEarnedLifetime: true;
|
|
6406
|
+
/** Home hero “Stuff the horn” best clear (ms; lower is better). */
|
|
6407
|
+
hornClearBestMs: true;
|
|
6408
|
+
hornClearBestAt: true;
|
|
6232
6409
|
/** Host reputation fields */
|
|
6233
6410
|
hostRating: true;
|
|
6234
6411
|
totalRatings: true;
|