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

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.
@@ -6,8 +6,8 @@ import { AssetTransactionType } from '../assetTransactionType';
6
6
  import { IExtendId } from '../autoGenerated';
7
7
  import { IPropertyValue } from '../propertyValue';
8
8
  import * as ReservationFactory from '../reservation';
9
- import { IReservationFor as IBusReservationReservationFor } from '../reservation/busReservation';
10
- import { IReservationFor as IEventReservationReservationFor, ISubReservation as ISubReservation4eventReservation } from '../reservation/event';
9
+ import { IIssuedThrough as IBusReservationIssuedThrough, IReservationFor as IBusReservationReservationFor } from '../reservation/busReservation';
10
+ import { IIssuedThrough as IEventReservationIssuedThrough, IReservationFor as IEventReservationReservationFor, ISubReservation as ISubReservation4eventReservation } from '../reservation/event';
11
11
  import { IReservation as IReservationPackage } from '../reservation/reservationPackage';
12
12
  import { ReservationType } from '../reservationType';
13
13
  export import IAgent = AssetTransactionFactory.IAgent;
@@ -213,15 +213,18 @@ export declare type IObjectSubReservationReservedTicket = Pick<ReservationFactor
213
213
  export declare type IMinimizedObjectSubReservation = Pick<ReserveActionFactory.ISubReservation, 'typeOf' | 'id' | 'subReservation'> & {
214
214
  reservedTicket: IObjectSubReservationReservedTicket;
215
215
  };
216
+ export declare type IIssuedThrough = IBusReservationIssuedThrough | IEventReservationIssuedThrough;
216
217
  /**
217
218
  * 取引対象物
218
219
  */
219
220
  export interface IObject extends Pick<IReservationPackage, 'broker' | 'reservationStatus' | 'underName' | 'typeOf'> {
220
221
  acceptedOffer?: IAcceptedOffer4object[];
222
+ issuedThrough?: IIssuedThrough;
221
223
  reservationFor?: IReservationFor;
222
224
  reservationNumber: string;
223
225
  subReservation?: IObjectSubReservation[];
224
226
  disablePendingReservations: boolean;
227
+ useHoldStockByTransactionNumber?: boolean;
225
228
  }
226
229
  export interface IPotentialActions {
227
230
  reserve: ReserveActionFactory.IAttributes[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.23",
3
+ "version": "4.313.0-alpha.25",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",