@chevre/factory 4.338.0 → 4.339.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.
- package/lib/place/seat.d.ts +6 -5
- package/package.json +1 -1
package/lib/place/seat.d.ts
CHANGED
|
@@ -11,15 +11,16 @@ import { IPriceSpecification as ICompoundPriceSpecification } from '../priceSpec
|
|
|
11
11
|
export type IPriceComponent = ICategoryCodeChargeSpecification;
|
|
12
12
|
/**
|
|
13
13
|
* 座席に対する価格仕様
|
|
14
|
-
* 最適化(2022-11-15~)
|
|
15
14
|
*/
|
|
16
15
|
export type IPriceSpecification = Pick<ICompoundPriceSpecification<IPriceComponent>, 'typeOf' | 'priceComponent'>;
|
|
17
16
|
/**
|
|
18
|
-
*
|
|
19
|
-
* 最適化(2022-11-15~)
|
|
17
|
+
* 座席に対するオファー
|
|
20
18
|
*/
|
|
21
|
-
export interface IOffer extends Pick<OfferFactory.IOffer, '
|
|
19
|
+
export interface IOffer extends Pick<OfferFactory.IOffer, 'availability'> {
|
|
22
20
|
availability: ItemAvailability;
|
|
21
|
+
/**
|
|
22
|
+
* 座席区分加算料金の存在する場合、価格仕様が含まれる
|
|
23
|
+
*/
|
|
23
24
|
priceSpecification?: IPriceSpecification;
|
|
24
25
|
}
|
|
25
26
|
/**
|
|
@@ -47,7 +48,7 @@ export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' |
|
|
|
47
48
|
export interface IPlaceWithOffer extends IPlace {
|
|
48
49
|
offers?: IOffer[];
|
|
49
50
|
}
|
|
50
|
-
export type IKeyOfProjection = 'typeOf' | 'branchCode' | 'name' | 'seatingType' | 'additionalProperty' | 'containedInPlace.containedInPlace';
|
|
51
|
+
export type IKeyOfProjection = 'typeOf' | 'branchCode' | 'name' | 'seatingType' | 'additionalProperty' | 'containedInPlace.containedInPlace' | 'containedInPlace.typeOf' | 'containedInPlace.branchCode' | 'containedInPlace.name';
|
|
51
52
|
export type IProjection = {
|
|
52
53
|
[key in IKeyOfProjection]?: 0;
|
|
53
54
|
};
|