@chevre/factory 4.313.0-alpha.40 → 4.313.0-alpha.41

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.
@@ -68,7 +68,7 @@ export declare type IParentOrganization = Pick<ISeller, 'typeOf' | 'id'> & {
68
68
  /**
69
69
  * place interface without screening room
70
70
  */
71
- export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
71
+ export interface IPlaceWithoutScreeningRoom extends Omit<PlaceFactory.IPlace, 'containsPlace'> {
72
72
  typeOf: PlaceType.MovieTheater;
73
73
  id: string;
74
74
  /**
@@ -2,11 +2,18 @@ import { IMultilingualString } from '../multilingualString';
2
2
  import * as PlaceFactory from '../place';
3
3
  import { PlaceType } from '../placeType';
4
4
  import { IPlace as IScreeningRoomSection } from './screeningRoomSection';
5
+ export interface IContainedInPlace {
6
+ id: string;
7
+ typeOf: PlaceType.MovieTheater;
8
+ branchCode: string;
9
+ name: IMultilingualString;
10
+ }
5
11
  /**
6
12
  * ルームインターフェース
7
13
  */
8
- export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' | 'amenityFeature' | 'branchCode' | 'name' | 'address' | 'containedInPlace' | 'containsPlace' | 'additionalProperty' | 'openSeatingAllowed' | 'maximumAttendeeCapacity'> {
14
+ export interface IPlace extends Pick<PlaceFactory.IPlace, 'project' | 'typeOf' | 'amenityFeature' | 'branchCode' | 'name' | 'address' | 'containsPlace' | 'additionalProperty' | 'openSeatingAllowed' | 'maximumAttendeeCapacity'> {
9
15
  typeOf: PlaceType.ScreeningRoom;
16
+ containedInPlace?: IContainedInPlace;
10
17
  /**
11
18
  * セクションリスト
12
19
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.40",
3
+ "version": "4.313.0-alpha.41",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",