@chevre/factory 4.339.0 → 4.340.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 +1 -1
- package/package.json +1 -1
package/lib/place/seat.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { IPriceSpecification as ICompoundPriceSpecification } from '../priceSpec
|
|
|
8
8
|
/**
|
|
9
9
|
* 座席に対する価格構成要素
|
|
10
10
|
*/
|
|
11
|
-
export type IPriceComponent = ICategoryCodeChargeSpecification
|
|
11
|
+
export type IPriceComponent = Pick<ICategoryCodeChargeSpecification, 'appliesToCategoryCode' | 'name' | 'price' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
12
12
|
/**
|
|
13
13
|
* 座席に対する価格仕様
|
|
14
14
|
*/
|