@chevre/factory 4.313.0-alpha.19 → 4.313.0-alpha.20
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/reserve.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as ActionFactory from '../action';
|
|
|
2
2
|
import { ActionType } from '../actionType';
|
|
3
3
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
4
4
|
import { OrderType } from '../order';
|
|
5
|
-
import { IAvailableReservationStatusType
|
|
5
|
+
import { IAvailableReservationStatusType } from '../reservation';
|
|
6
6
|
import { IReservation as IBusReservation, IReservationFor as IBusReservationFor } from '../reservation/busReservation';
|
|
7
7
|
import { IReservation as IEventReservation, IReservationFor as IEventReservationFor } from '../reservation/event';
|
|
8
8
|
import { ReservationType } from '../reservationType';
|
|
@@ -14,7 +14,6 @@ export interface IReservationPackageAsObject {
|
|
|
14
14
|
reservationFor: IReservationFor;
|
|
15
15
|
reservationNumber: string;
|
|
16
16
|
reservationStatus: IAvailableReservationStatusType;
|
|
17
|
-
underName?: IUnderName;
|
|
18
17
|
typeOf: ReservationType.ReservationPackage;
|
|
19
18
|
}
|
|
20
19
|
export declare type IObject = IReservationPackageAsObject;
|
|
@@ -216,13 +216,12 @@ export declare type IMinimizedObjectSubReservation = Pick<ReserveActionFactory.I
|
|
|
216
216
|
/**
|
|
217
217
|
* 取引対象物
|
|
218
218
|
*/
|
|
219
|
-
export interface IObject extends Pick<IReservationPackage, 'broker' | 'reservationStatus' | 'typeOf'> {
|
|
219
|
+
export interface IObject extends Pick<IReservationPackage, 'broker' | 'reservationStatus' | 'underName' | 'typeOf'> {
|
|
220
220
|
acceptedOffer?: IAcceptedOffer4object[];
|
|
221
221
|
reservationFor?: IReservationFor;
|
|
222
222
|
reservationNumber: string;
|
|
223
223
|
subReservation?: IObjectSubReservation[];
|
|
224
224
|
disablePendingReservations: boolean;
|
|
225
|
-
underName?: ReservationFactory.IUnderName;
|
|
226
225
|
}
|
|
227
226
|
export interface IPotentialActions {
|
|
228
227
|
reserve: ReserveActionFactory.IAttributes[];
|