@chevre/factory 4.264.0 → 4.265.0
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.
|
@@ -9,8 +9,7 @@ export declare type IAgent = ActionFactory.IParticipantAsProject;
|
|
|
9
9
|
/**
|
|
10
10
|
* 予約取消対象
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
13
|
-
export interface IObject4future {
|
|
12
|
+
export interface IObject {
|
|
14
13
|
typeOf: ReservationType.EventReservation;
|
|
15
14
|
id: string;
|
|
16
15
|
issuedThrough?: {
|
package/lib/order.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { IPerson, IProfile } from './person';
|
|
|
16
16
|
import { PersonType } from './personType';
|
|
17
17
|
import { PlaceType } from './placeType';
|
|
18
18
|
import { PriceCurrency } from './priceCurrency';
|
|
19
|
-
import { IProduct,
|
|
19
|
+
import { IProduct, ProductType } from './product';
|
|
20
20
|
import { IPropertyValue } from './propertyValue';
|
|
21
21
|
import { IProgramMembershipUsedSearchConditions, ITicket, ITicketType } from './reservation';
|
|
22
22
|
import * as EventReservationFactory from './reservation/event';
|
|
@@ -236,7 +236,7 @@ export interface IEventServiceAsOrderedItem {
|
|
|
236
236
|
typeOf: ReservationType.EventReservation | ReservationType.ReservationPackage;
|
|
237
237
|
reservationFor: IReservationFor4OrderedItem;
|
|
238
238
|
};
|
|
239
|
-
serviceType?:
|
|
239
|
+
serviceType?: EventReservationFactory.IServiceTypeOfIssuedThrough;
|
|
240
240
|
}
|
|
241
241
|
export declare type IProductAsOrderedItem = Pick<IProduct, 'id' | 'serviceType' | 'typeOf'>;
|
|
242
242
|
/**
|
|
@@ -45,12 +45,14 @@ export interface ISubReservation {
|
|
|
45
45
|
ticketedSeat: ReservationFactory.ISeat;
|
|
46
46
|
};
|
|
47
47
|
}
|
|
48
|
+
export import IServiceTypeOfIssuedThrough = ReservationFactory.IServiceTypeOfIssuedThrough;
|
|
49
|
+
export import IIssuedThrough = ReservationFactory.IIssuedThrough;
|
|
48
50
|
/**
|
|
49
51
|
* イベント予約
|
|
50
52
|
*/
|
|
51
53
|
export interface IReservation extends ReservationFactory.IReservation<IPriceSpecification> {
|
|
52
54
|
id: string;
|
|
53
|
-
issuedThrough:
|
|
55
|
+
issuedThrough: IIssuedThrough;
|
|
54
56
|
reservationFor: IReservationFor;
|
|
55
57
|
reservationNumber: string;
|
|
56
58
|
reservationStatus: ReservationStatusType;
|
package/lib/reservation.d.ts
CHANGED
|
@@ -166,9 +166,11 @@ export interface IBroker {
|
|
|
166
166
|
name?: string;
|
|
167
167
|
}
|
|
168
168
|
export declare type IProgramMembershipUsed = IPermit;
|
|
169
|
+
export declare type IServiceTypeOfIssuedThrough = Pick<IServiceType, 'codeValue' | 'inCodeSet' | 'typeOf'>;
|
|
169
170
|
export interface IIssuedThrough {
|
|
170
171
|
typeOf: ProductType.EventService;
|
|
171
|
-
serviceType?:
|
|
172
|
+
serviceType?: IServiceTypeOfIssuedThrough;
|
|
173
|
+
id?: string;
|
|
172
174
|
}
|
|
173
175
|
/**
|
|
174
176
|
* 予約
|