@chevre/factory 4.278.0-alpha.2 → 4.278.0-alpha.3
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/place/movieTheater.d.ts +12 -4
- package/package.json +1 -1
|
@@ -8,21 +8,29 @@ import { SortType } from '../sortType';
|
|
|
8
8
|
import { UnitCode } from '../unitCode';
|
|
9
9
|
import { IPlace as IScreeningRoom } from './screeningRoom';
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 施設に対するオファー
|
|
12
12
|
*/
|
|
13
13
|
export interface IOffer extends Pick<OfferFactory.IOffer, 'priceCurrency' | 'project' | 'typeOf' | 'eligibleQuantity'> {
|
|
14
14
|
/**
|
|
15
15
|
* イベント開始前の販売猶予期間
|
|
16
16
|
*/
|
|
17
|
-
availabilityStartsGraceTime?: IQuantitativeValue<UnitCode.Day>;
|
|
17
|
+
availabilityStartsGraceTime?: Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'>;
|
|
18
18
|
/**
|
|
19
19
|
* イベント開始後の販売猶予期間
|
|
20
20
|
*/
|
|
21
|
-
availabilityEndsGraceTime?: IQuantitativeValue<UnitCode.Sec>;
|
|
21
|
+
availabilityEndsGraceTime?: Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'value' | 'unitCode'>;
|
|
22
|
+
/**
|
|
23
|
+
* イベント開始前の販売猶予期間(POS)
|
|
24
|
+
*/
|
|
25
|
+
availabilityStartsGraceTimeOnPOS: Pick<IQuantitativeValue<UnitCode.Day>, 'typeOf' | 'value' | 'unitCode'>;
|
|
26
|
+
/**
|
|
27
|
+
* イベント開始後の販売猶予期間(POS)
|
|
28
|
+
*/
|
|
29
|
+
availabilityEndsGraceTimeOnPOS: Pick<IQuantitativeValue<UnitCode.Sec>, 'typeOf' | 'value' | 'unitCode'>;
|
|
22
30
|
}
|
|
23
31
|
export declare type POSType = 'POS';
|
|
24
32
|
/**
|
|
25
|
-
* POS
|
|
33
|
+
* POS
|
|
26
34
|
* 管理者が識別しやすいようPOSの属性を指定します
|
|
27
35
|
*/
|
|
28
36
|
export interface IPOS {
|