@bash-app/bash-common 30.304.0 → 30.306.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/src/home.ts ADDED
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Lightweight entry for homepage / event card surfaces — avoids pulling the full
3
+ * bash-common barrel (and its Prisma enum surface) into the mobile critical path.
4
+ *
5
+ * Re-exports only from canonical modules (definitions, extendedSchemas, geo utils),
6
+ * not from @prisma/client directly.
7
+ */
8
+ export type {
9
+ BashEventExt,
10
+ CustomBashEventType,
11
+ PublicUser,
12
+ } from "./extendedSchemas.js";
13
+
14
+ export type { FilterFields } from "./definitions.js";
15
+
16
+ export type { ViewerGeoScope } from "./utils/featuredDiscoveryGeo.js";
17
+
18
+ export {
19
+ BashEventType,
20
+ createEmptyFilterFields,
21
+ eventMatchesAgeFilter,
22
+ } from "./definitions.js";
23
+
24
+ export {
25
+ DEFAULT_FEATURED_RADIUS_MILES,
26
+ sortPublicEventsForFeaturedDiscovery,
27
+ } from "./utils/featuredDiscoveryGeo.js";
package/src/index.ts CHANGED
@@ -307,6 +307,7 @@ export type {
307
307
  PartnerBrand,
308
308
  PartnerProduct,
309
309
  Recurrence,
310
+ Review,
310
311
  Service,
311
312
  ServiceAddon,
312
313
  ServiceBooking,