@bash-app/bash-common 29.35.1 → 29.35.2
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/package.json +1 -1
- package/src/extendedSchemas.ts +2 -0
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -36,6 +36,7 @@ import {
|
|
|
36
36
|
ServiceSpecialRates,
|
|
37
37
|
ServiceAddon,
|
|
38
38
|
ServicePackage,
|
|
39
|
+
SocialMediaProfile,
|
|
39
40
|
} from "@prisma/client";
|
|
40
41
|
import { SERVICE_LINK_DATA_TO_INCLUDE, UnionFromArray, VENUE_DATA_TO_INCLUDE } from "./definitions";
|
|
41
42
|
|
|
@@ -510,6 +511,7 @@ export interface UserExt extends User {
|
|
|
510
511
|
ticketsIOwn?: TicketExt[] | null;
|
|
511
512
|
ownedServices?: ServiceExt[];
|
|
512
513
|
createdServices?: ServiceExt[];
|
|
514
|
+
socialMediaProfiles: SocialMediaProfile[];
|
|
513
515
|
}
|
|
514
516
|
|
|
515
517
|
export const USER_DATA_SELECT_REVIEWS_COMMENTS = {
|