@chevre/factory 4.313.0-alpha.22 → 4.313.0-alpha.24

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/lib/action.d.ts CHANGED
@@ -136,6 +136,10 @@ export interface ISearchConditions {
136
136
  $eq?: string;
137
137
  };
138
138
  };
139
+ reservationNumber?: {
140
+ $eq?: string;
141
+ $in?: string[];
142
+ };
139
143
  paymentMethod?: {
140
144
  accountId?: {
141
145
  $eq?: string;
@@ -222,6 +222,7 @@ export interface IObject extends Pick<IReservationPackage, 'broker' | 'reservati
222
222
  reservationNumber: string;
223
223
  subReservation?: IObjectSubReservation[];
224
224
  disablePendingReservations: boolean;
225
+ useHoldStockByTransactionNumber?: boolean;
225
226
  }
226
227
  export interface IPotentialActions {
227
228
  reserve: ReserveActionFactory.IAttributes[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.22",
3
+ "version": "4.313.0-alpha.24",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",