@chevre/factory 4.313.0-alpha.24 → 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,11 +213,13 @@ 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[];
|