@chevre/factory 4.277.0-alpha.0 → 4.277.0-alpha.1

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.
@@ -6,26 +6,28 @@ import { PlaceType } from '../placeType';
6
6
  import { IPriceSpecification as ICategoryCodeChargeSpecification } from '../priceSpecification/categoryCodeChargeSpecification';
7
7
  import { IPriceSpecification as ICompoundPriceSpecification } from '../priceSpecification/compoundPriceSpecification';
8
8
  /**
9
- * 座席に対する価格構成要素インターフェース
9
+ * 座席に対する価格構成要素
10
10
  */
11
11
  export declare type IPriceComponent = ICategoryCodeChargeSpecification;
12
12
  /**
13
13
  * 座席に対する価格仕様
14
+ * 最適化(2022-11-15~)
14
15
  */
15
- export declare type IPriceSpecification = ICompoundPriceSpecification<IPriceComponent>;
16
+ export declare type IPriceSpecification = Pick<ICompoundPriceSpecification<IPriceComponent>, 'typeOf' | 'priceComponent'>;
16
17
  /**
17
- * 座席オファーインターフェース
18
+ * 座席オファー
19
+ * 最適化(2022-11-15~)
18
20
  */
19
- export interface IOffer extends Omit<OfferFactory.IOffer, 'priceSpecification'> {
21
+ export interface IOffer extends Pick<OfferFactory.IOffer, 'typeOf'> {
20
22
  availability: ItemAvailability;
21
23
  priceSpecification?: IPriceSpecification;
22
24
  }
23
25
  /**
24
- * 座席タイプインターフェース
26
+ * 座席タイプ
25
27
  */
26
28
  export declare type ISeatingType = string | string[];
27
29
  /**
28
- * 座席インターフェース
30
+ * 座席
29
31
  */
30
32
  export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' | 'branchCode' | 'containedInPlace' | 'additionalProperty' | 'name'> {
31
33
  typeOf: PlaceType.Seat;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.277.0-alpha.0",
3
+ "version": "4.277.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",