@bash-app/bash-common 18.3.4 → 18.3.5

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": "18.3.4",
3
+ "version": "18.3.5",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -21,7 +21,6 @@ import {
21
21
  Sponsor,
22
22
  Organization,
23
23
  } from "@prisma/client";
24
- import { AttendeeOfBashEvent } from "./definitions";
25
24
 
26
25
  export const FRONT_END_USER_DATA_TO_SELECT = {
27
26
  id: true,
@@ -136,7 +135,6 @@ export interface EventServiceExt extends EventService {
136
135
  links: ServiceLinkExt[];
137
136
  crowdSize?: AmountOfGuests;
138
137
  media?: Media[];
139
- status: ServiceStatus;
140
138
  }
141
139
 
142
140
  export interface EntertainmentServiceExt extends EntertainmentService {
@@ -146,7 +144,6 @@ export interface EntertainmentServiceExt extends EntertainmentService {
146
144
  links: ServiceLinkExt[];
147
145
  crowdSize?: AmountOfGuests;
148
146
  media?: Media[];
149
- status: ServiceStatus;
150
147
  }
151
148
 
152
149
  export interface ExhibitorExt extends Exhibitor {
@@ -156,7 +153,6 @@ export interface ExhibitorExt extends Exhibitor {
156
153
  links: ServiceLinkExt[];
157
154
  crowdSize?: AmountOfGuests;
158
155
  media?: Media[];
159
- status: ServiceStatus;
160
156
  }
161
157
 
162
158
  export interface SponsorExt extends Sponsor {
@@ -166,7 +162,6 @@ export interface SponsorExt extends Sponsor {
166
162
  links: ServiceLinkExt[];
167
163
  crowdSize?: AmountOfGuests;
168
164
  media?: Media[];
169
- status: ServiceStatus;
170
165
  }
171
166
 
172
167
  export interface VendorExt extends Vendor {
@@ -176,7 +171,6 @@ export interface VendorExt extends Vendor {
176
171
  links: ServiceLinkExt[];
177
172
  crowdSize?: AmountOfGuests;
178
173
  media?: Media[];
179
- status: ServiceStatus;
180
174
  }
181
175
 
182
176
  export interface VenueExt extends Venue {
@@ -186,7 +180,6 @@ export interface VenueExt extends Venue {
186
180
  links: ServiceLinkExt[];
187
181
  capacity?: AmountOfGuests;
188
182
  media?: Media[];
189
- status: ServiceStatus;
190
183
  }
191
184
 
192
185
  export interface OrganizationExt extends Organization {