@chevre/factory 4.313.0-alpha.26 → 4.313.0-alpha.28

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;
package/lib/action.d.ts CHANGED
@@ -123,6 +123,18 @@ export interface ISearchConditions {
123
123
  $eq?: string;
124
124
  $in?: string[];
125
125
  };
126
+ movieTickets?: {
127
+ identifier?: {
128
+ $eq?: string;
129
+ };
130
+ serviceOutput?: {
131
+ reservationFor?: {
132
+ id?: {
133
+ $eq?: string;
134
+ };
135
+ };
136
+ };
137
+ };
126
138
  object?: {
127
139
  paymentMethodId?: {
128
140
  $eq?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.26",
3
+ "version": "4.313.0-alpha.28",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",