@bash-app/bash-common 6.14.0 → 6.16.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/package.json +1 -1
- package/prisma/schema.prisma +1 -1
- package/src/extendedSchemas.ts +10 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -26,6 +26,16 @@ export const FRONT_END_USER_DATA_TO_SELECT = {
|
|
|
26
26
|
services: true,
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
export const PRIVATE_USER_ACCOUNT_TO_SELECT = {
|
|
30
|
+
...FRONT_END_USER_DATA_TO_SELECT,
|
|
31
|
+
streetAddress: true,
|
|
32
|
+
city: true,
|
|
33
|
+
state: true,
|
|
34
|
+
zipCode: true,
|
|
35
|
+
country: true,
|
|
36
|
+
phone: true,
|
|
37
|
+
}
|
|
38
|
+
|
|
29
39
|
export interface BashEventExt extends BashEvent {
|
|
30
40
|
targetAudience?: TargetAudience;
|
|
31
41
|
amountOfGuests?: AmountOfGuests;
|