@chevre/factory 4.313.0-alpha.25 → 4.313.0-alpha.27

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.
@@ -8,7 +8,8 @@ import { IReservation as IEventReservation, IReservationFor as IEventReservation
8
8
  import { ReservationType } from '../reservationType';
9
9
  import { IAttributes as IMoneyTransferActionAttributes } from './transfer/moneyTransfer';
10
10
  export declare type IAgent = ActionFactory.IParticipantAsProject;
11
- export declare type ISubReservation = Omit<IBusReservation, 'reservationFor'> | Omit<IEventReservation, 'reservationFor'>;
11
+ export declare type IOmittedReservationProperty = 'reservationFor' | 'broker' | 'issuedThrough';
12
+ export declare type ISubReservation = Omit<IBusReservation, IOmittedReservationProperty> | Omit<IEventReservation, IOmittedReservationProperty>;
12
13
  export declare type IReservationFor = IBusReservationFor | IEventReservationFor;
13
14
  export interface IReservationPackageAsObject {
14
15
  reservationFor: IReservationFor;
@@ -257,6 +257,13 @@ export interface IObjectSearchConditions {
257
257
  $in?: string[];
258
258
  };
259
259
  };
260
+ reservedTicket?: {
261
+ ticketedSeat?: {
262
+ seatNumber?: {
263
+ $eq?: string;
264
+ };
265
+ };
266
+ };
260
267
  };
261
268
  underName?: {
262
269
  id?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.25",
3
+ "version": "4.313.0-alpha.27",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",