@ibiliaze/global-vars 1.299.0 → 1.301.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.
|
@@ -345,10 +345,11 @@ export interface ScanBase<Id, TDate> {
|
|
|
345
345
|
createdAt?: TDate;
|
|
346
346
|
updatedAt?: TDate;
|
|
347
347
|
}
|
|
348
|
-
export type PopulatedScanBase<Id, TDate> = Omit<ScanBase<Id, TDate>, 'eventId' | 'readerId'> & {
|
|
348
|
+
export type PopulatedScanBase<Id, TDate> = Omit<ScanBase<Id, TDate>, 'eventId' | 'readerId' | 'ticketId' | 'masterId'> & {
|
|
349
349
|
eventId: EventBase<Id, TDate>;
|
|
350
350
|
readerId?: ReaderBase<Id, TDate>;
|
|
351
351
|
ticketId?: TicketBase<Id, TDate>;
|
|
352
|
+
masterId?: TicketBase<Id, TDate>;
|
|
352
353
|
};
|
|
353
354
|
export interface NotificationBase<Id, TDate> {
|
|
354
355
|
_id?: Id;
|