@chevre/factory 4.278.0-alpha.3 → 4.278.0-alpha.4
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/invoice.d.ts +1 -1
- package/lib/place/movieTheater.d.ts +14 -6
- package/lib/project.d.ts +1 -0
- package/package.json +1 -1
package/lib/invoice.d.ts
CHANGED
|
@@ -26,8 +26,8 @@ export declare type IReservationPriceSpecification = Pick<IPriceSpecification, '
|
|
|
26
26
|
export interface IReservation {
|
|
27
27
|
/**
|
|
28
28
|
* 予約価格
|
|
29
|
+
* priceSpecificationへ完全移行(2022-11-23~)
|
|
29
30
|
*/
|
|
30
|
-
price?: number;
|
|
31
31
|
priceSpecification?: IReservationPriceSpecification;
|
|
32
32
|
}
|
|
33
33
|
export interface IMovieTicketAsPaymentServiceOutput {
|
|
@@ -7,6 +7,14 @@ import { ISeller } from '../seller';
|
|
|
7
7
|
import { SortType } from '../sortType';
|
|
8
8
|
import { UnitCode } from '../unitCode';
|
|
9
9
|
import { IPlace as IScreeningRoom } from './screeningRoom';
|
|
10
|
+
export interface IAvailabilityStartsGraceTime extends Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'> {
|
|
11
|
+
unitCode: UnitCode.Day;
|
|
12
|
+
value: number;
|
|
13
|
+
}
|
|
14
|
+
export interface IAvailabilityEndsGraceTime extends Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'value' | 'unitCode'> {
|
|
15
|
+
unitCode: UnitCode.Sec;
|
|
16
|
+
value: number;
|
|
17
|
+
}
|
|
10
18
|
/**
|
|
11
19
|
* 施設に対するオファー
|
|
12
20
|
*/
|
|
@@ -14,19 +22,19 @@ export interface IOffer extends Pick<OfferFactory.IOffer, 'priceCurrency' | 'pro
|
|
|
14
22
|
/**
|
|
15
23
|
* イベント開始前の販売猶予期間
|
|
16
24
|
*/
|
|
17
|
-
availabilityStartsGraceTime
|
|
25
|
+
availabilityStartsGraceTime: IAvailabilityStartsGraceTime;
|
|
18
26
|
/**
|
|
19
27
|
* イベント開始後の販売猶予期間
|
|
20
28
|
*/
|
|
21
|
-
availabilityEndsGraceTime
|
|
29
|
+
availabilityEndsGraceTime: IAvailabilityEndsGraceTime;
|
|
22
30
|
/**
|
|
23
31
|
* イベント開始前の販売猶予期間(POS)
|
|
24
32
|
*/
|
|
25
|
-
availabilityStartsGraceTimeOnPOS:
|
|
33
|
+
availabilityStartsGraceTimeOnPOS: IAvailabilityStartsGraceTime;
|
|
26
34
|
/**
|
|
27
35
|
* イベント開始後の販売猶予期間(POS)
|
|
28
36
|
*/
|
|
29
|
-
availabilityEndsGraceTimeOnPOS:
|
|
37
|
+
availabilityEndsGraceTimeOnPOS: IAvailabilityEndsGraceTime;
|
|
30
38
|
}
|
|
31
39
|
export declare type POSType = 'POS';
|
|
32
40
|
/**
|
|
@@ -101,7 +109,7 @@ export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
|
|
|
101
109
|
parentOrganization?: IParentOrganization;
|
|
102
110
|
}
|
|
103
111
|
/**
|
|
104
|
-
*
|
|
112
|
+
* 施設
|
|
105
113
|
*/
|
|
106
114
|
export declare type IPlace = IPlaceWithoutScreeningRoom & {
|
|
107
115
|
/**
|
|
@@ -110,7 +118,7 @@ export declare type IPlace = IPlaceWithoutScreeningRoom & {
|
|
|
110
118
|
containsPlace: IScreeningRoom[];
|
|
111
119
|
};
|
|
112
120
|
/**
|
|
113
|
-
*
|
|
121
|
+
* 施設ソート条件
|
|
114
122
|
*/
|
|
115
123
|
export interface ISortOrder {
|
|
116
124
|
branchCode?: SortType;
|
package/lib/project.d.ts
CHANGED