@bash-app/bash-common 11.0.5 → 12.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "11.0.5",
3
+ "version": "12.1.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -714,8 +714,6 @@ model User {
714
714
  stripeCustomerId String? @unique
715
715
  stripeAccountId String? @unique
716
716
  googleCalendarAccess String?
717
- username String?
718
- fullName String?
719
717
  givenName String?
720
718
  familyName String?
721
719
  hash String?
@@ -97,6 +97,12 @@ export type FilterFields = {
97
97
  included: string[];
98
98
  };
99
99
 
100
+ export interface DeletedAndHiddenTiers {
101
+ deletedTiers: TicketTier[];
102
+ hiddenTiers: TicketTier[];
103
+ errorType?: ApiErrorType;
104
+ }
105
+
100
106
  export interface AttendeeOfBashEvent {
101
107
  user: User;
102
108
  tickets: Ticket[];
@@ -21,8 +21,6 @@ export const FRONT_END_USER_DATA_TO_SELECT = {
21
21
  email: true,
22
22
  givenName: true,
23
23
  familyName: true,
24
- fullName: true,
25
- username: true,
26
24
  image: true,
27
25
  uploadedImage: true,
28
26
  services: true,