@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.
@@ -1,7 +1,7 @@
1
1
  export type EventReport = {
2
2
  passed: number;
3
3
  expected: number;
4
- cardPayments: number;
4
+ masterCard: number;
5
5
  rejected: number;
6
6
  remaining: number;
7
7
  passRate: number;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiliaze/global-vars",
3
- "version": "1.299.0",
3
+ "version": "1.301.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,